HTTP-based interface to Stan, a package for Bayesian inference.
Project description
HTTP-based interface to Stan, a package for Bayesian inference.
An HTTP 1.1 interface to the Stan C++ package, httpstan is a shim that allows users to interact with the Stan C++ library using an HTTP API. The package is intended for use as a universal backend for frontends which know how to make HTTP requests. The primary audience for this package is developers.
In addition to providing all the functionality of the command-line interface to Stan (CmdStan) over HTTP 1.1, httpstan provides:
Automatic caching of compiled Stan models
Automatic caching of samples from Stan models
Parallel sampling
Documentation lives at https://httpstan.readthedocs.org.
Experimental software!
httpstan is experimental software. This software is not yet intended for general use.
httpstan currently requires Python version 3.6 or higher.
httpstan only works on Linux and macOS. Windows support is planned.
Background
httpstan is a shim allowing clients speaking HTTP to call functions in the Stan C++ package’s stan::services namespace. httpstan was originally developed as a “backend” for a Python interface to Stan, PyStan.
Install
$ python3 -m pip install httpstan
Install from Source
A working copy of protoc is needed to build from source. One way to get this is to install grpcio-tools from PyPI with python3 -m pip install grpcio-tools.
$ make # generate required C++ code $ python3 setup.py install
Usage
After installing httpstan, running the module will begin listening on localhost, port 8080:
python3 -m httpstan
In a different terminal, make a POST request to http://localhost:8080/v1/models with Stan program code to compile the program:
curl -X POST -H "Content-Type: application/json" \ -d '{"program_code":"parameters {real y;} model {y ~ normal(0,1);}"}' \ http://localhost:8080/v1/models
This request will return a model name along with all the compiler output:
{"name": "models/89c4e75a2c", "compiler_output": "..."}
(The model name depends on the platform and the version of Stan.)
To draw samples from this model using default settings, we first make the following request:
curl -X POST -H "Content-Type: application/json" \ -d '{"function":"stan::services::sample::hmc_nuts_diag_e_adapt"}' \ http://localhost:8080/v1/models/e1ca9f7ac7/fits
This request instructs httpstan to draw samples from the normal distribution. The function name picks out a specific function in the Stan C++ library (see the Stan C++ documentation for details). This request will return immediately with a reference to the long-running fit operation:
{"done": false, "name": "operations/9f9d701294", "metadata": {"fit": {"name": "models/e1ca9f7ac7/fits/9f9d701294"}}}
Once the operation is completed, the “fit” can be retrieved. The name of the fit, models/e1ca9f7ac7/fits/9f9d701294, is included in the metadata field above. The fit is saved as sequence of Protocol Buffer messages. These messages are strung together using length-prefix encoding. To retrieve these messages, saving them in the file myfit.bin, make the following request:
curl http://localhost:8080/v1/models/e1ca9f7ac7/fits/9f9d701294 > myfit.bin
To read the messages you will need a library for reading the encoding that Protocol Buffer messages use. In this example we will read the first message in the stream using the Protocol Buffer compiler tool protoc. (On Debian-based Linux you can find this tool in the protobuf-compiler package.) The following command skips the message length (one byte) and then decodes the message (which is 48 bytes in length):
dd bs=1 skip=1 if=myfit.bin 2>/dev/null | head -c 48 | \ protoc --decode stan.WriterMessage protos/callbacks_writer.proto
Running the command above decodes the first message in the stream. The decoded message should resemble the following:
topic: LOGGER feature { string_list { value: "Gradient evaluation took 1.3e-05 seconds" } }
Contribute
Contribution guidelines are described in CONTRIBUTE.rst.
License
ISC License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Hashes for httpstan-0.8.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5676c6d5d55cc15d78fcf65aae6acc97e528969a43d933e24074070b23af4ff |
|
MD5 | ac88449e0e177f81ece05f63abaac4c7 |
|
BLAKE2b-256 | b3cd2dc70d4504f4ea29f8cca70bfcd1dda1993e352cd196cffeba2322abec9d |
Hashes for httpstan-0.8.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 460fa5f11df381744d38cf3a7f05c7adf17062ad31c0ffcc2e5945ec1205b793 |
|
MD5 | e93e39fd2c1acf9298941f5eb879e065 |
|
BLAKE2b-256 | 910a2bde7a81dda39bf56c745f0fbf13fbb1dd87d42165b9da09f26e4de04466 |
Hashes for httpstan-0.8.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d29c82b3fe062e4ae779bf534f99c2aa33798c1501d722b8165e54f82a03105d |
|
MD5 | 6c5cd3e75489c8bb153d16adcb6a768c |
|
BLAKE2b-256 | 85c6ebf58dde2685cb12e5a84ad47887f5e4088257a804995daa0e63ef36fd40 |
Hashes for httpstan-0.8.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a068eaea9139606c532a91529de8093649137cda8552eee4d87e977b2d0c5e8e |
|
MD5 | e0ca89d191c052f746e5aa853191fce9 |
|
BLAKE2b-256 | de99881144f40612d99cab528feae014a605de4729d20f09fabf1c6f56095031 |