All Projects → AustinRochford → webmc3

AustinRochford / webmc3

Licence: Apache-2.0 license
A web interface for exploring PyMC3 traces

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to webmc3

Pymc3
Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Aesara
Stars: ✭ 6,214 (+13408.7%)
Mutual labels:  statistical-analysis, bayesian-inference, mcmc
Gpstuff
GPstuff - Gaussian process models for Bayesian analysis
Stars: ✭ 106 (+130.43%)
Mutual labels:  bayesian-inference, mcmc
Nimble
The base NIMBLE package for R
Stars: ✭ 95 (+106.52%)
Mutual labels:  bayesian-inference, mcmc
Shinystan
shinystan R package and ShinyStan GUI
Stars: ✭ 172 (+273.91%)
Mutual labels:  bayesian-inference, mcmc
Turing.jl
Bayesian inference with probabilistic programming.
Stars: ✭ 1,150 (+2400%)
Mutual labels:  bayesian-inference, mcmc
Bat.jl
A Bayesian Analysis Toolkit in Julia
Stars: ✭ 82 (+78.26%)
Mutual labels:  bayesian-inference, mcmc
Beast2
Bayesian Evolutionary Analysis by Sampling Trees
Stars: ✭ 156 (+239.13%)
Mutual labels:  bayesian-inference, mcmc
Rstan
RStan, the R interface to Stan
Stars: ✭ 760 (+1552.17%)
Mutual labels:  bayesian-inference, mcmc
Mcmc
Collection of Monte Carlo (MC) and Markov Chain Monte Carlo (MCMC) algorithms applied on simple examples.
Stars: ✭ 218 (+373.91%)
Mutual labels:  bayesian-inference, mcmc
mitre
The Microbiome Interpretable Temporal Rule Engine
Stars: ✭ 37 (-19.57%)
Mutual labels:  statistical-analysis, bayesian-inference
Dblink
Distributed Bayesian Entity Resolution in Apache Spark
Stars: ✭ 38 (-17.39%)
Mutual labels:  bayesian-inference, mcmc
SCICoNE
Single-cell copy number calling and event history reconstruction.
Stars: ✭ 20 (-56.52%)
Mutual labels:  bayesian-inference, mcmc
Bayesian Neural Networks
Pytorch implementations of Bayes By Backprop, MC Dropout, SGLD, the Local Reparametrization Trick, KF-Laplace, SG-HMC and more
Stars: ✭ 900 (+1856.52%)
Mutual labels:  bayesian-inference, mcmc
Paramonte
ParaMonte: Plain Powerful Parallel Monte Carlo and MCMC Library for Python, MATLAB, Fortran, C++, C.
Stars: ✭ 88 (+91.3%)
Mutual labels:  bayesian-inference, mcmc
Bda py demos
Bayesian Data Analysis demos for Python
Stars: ✭ 781 (+1597.83%)
Mutual labels:  bayesian-inference, mcmc
Exoplanet
Fast & scalable MCMC for all your exoplanet needs!
Stars: ✭ 122 (+165.22%)
Mutual labels:  bayesian-inference, mcmc
Bda r demos
Bayesian Data Analysis demos for R
Stars: ✭ 409 (+789.13%)
Mutual labels:  bayesian-inference, mcmc
Dbda Python
Doing Bayesian Data Analysis, 2nd Edition (Kruschke, 2015): Python/PyMC3 code
Stars: ✭ 502 (+991.3%)
Mutual labels:  bayesian-inference, mcmc
Probabilistic Models
Collection of probabilistic models and inference algorithms
Stars: ✭ 217 (+371.74%)
Mutual labels:  bayesian-inference, mcmc
pysgmcmc
Bayesian Deep Learning with Stochastic Gradient MCMC Methods
Stars: ✭ 31 (-32.61%)
Mutual labels:  bayesian-inference, mcmc

webmc3

A web interface for exploring PyMC3 traces, inspired by ShinyStan and built with Dash.

webmc3 demo

Consult the quickstart notebook to start using webmc3.

Development

The simplest way to develop webmc3 is to use the Dockerfile.

First, pull the image from Docker Hub with

docker pull austinrochford/webmc3

or build the image with

docker build -t webmc3 .

Next launch a container using the image.

docker run -d \
    -p $JUPYTER_PORT:8888 \
    -p $DASH_PORT:8050 \
    -v `pwd`:/home/jovyan/webmc3 \
    --name webmc3 webmc3 \
    start-notebook.sh --NotebookApp.token=''

There will not be a Jupyter notebook server available at http://localhost:$JUPYTER_PORT/tree and, once running, the webmc3 app will be available at http://localhost:$DASH_PORT. Most importantly, your fork of webmc3 is on the PYTHONPATH in the container.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].