#
bayesian
Here are 637 public repositories matching this topic...
Python for《Deep Learning》,该书为《深度学习》(花书) 数学推导、原理剖析与源码级别代码实现
-
Updated
Jun 23, 2020 - Python
Open
var_context builder
bob-carpenter
commented
May 23, 2020
Summary:
It'd be nice to have a builder pattern for var contexts to make them easy to construct for testing. Something that could be used like this:
MatrixXd m(3, 2);
...
var_context vc
= var_context::builder()
.matrix("a", m)
.real("f", 2.3)
.build();
Current Version:
v2.23.0
serenabooth
commented
Oct 30, 2019
Ankit Shah and I are trying to use Gen to support a project and would love the addition of a dirichlet distribution
Seminars DeepBayes Summer School 2018
-
Updated
Aug 24, 2019 - Jupyter Notebook
Bayesian Data Analysis demos for Python
-
Updated
Sep 14, 2021 - Jupyter Notebook
A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.
python
time-series
orbit
regression
forecast
forecasting
probabilistic-programming
bayesian
stan
arima
probabilistic
pyro
changepoint
pystan
exponential-smoothing
-
Updated
Nov 9, 2021 - Python
How to do Bayesian statistical modelling using numpy and PyMC3
-
Updated
Aug 2, 2021 - Jupyter Notebook
GemPy is an open-source, Python-based 3-D structural geological modeling software, which allows the implicit (i.e. automatic) creation of complex geological models from interface and orientation data. It also offers support for stochastic modeling to adress parameter and model uncertainties.
python
theano
interpolation
modeling
geoscience
bayesian
monte-carlo-simulation
implicit
uq
geology
uncertainties
uncertainty-analysis
complex-geological-models
geological
-
Updated
Oct 29, 2021 - Python
A collection of Bayesian data analysis recipes using PyMC3
notebook
bayesian-methods
neural-networks
bayesian
bayesian-inference
bayesian-data-analysis
bayesian-statistics
bayesian-analysis
treatment-groups
-
Updated
Jul 19, 2021 - Jupyter Notebook
Bayesian Data Analysis demos for R
-
Updated
Oct 21, 2021 - R
r
apa
reporting
models
automatic
reports
report
rstats
scientific
bayesian
manuscript
hacktoberfest
statsmodels
describe
automated-report-generation
easystats
anovas
-
Updated
Nov 10, 2021 - R
Python package for Bayesian Machine Learning with scikit-learn API
-
Updated
Sep 22, 2021 - Jupyter Notebook
map
r
rstats
bayesian
hacktoberfest
rope
bayes-factors
posterior-distributions
hdi
bayesfactor
easystats
credible-interval
bayesian-framework
-
Updated
Nov 7, 2021 - R
A python library for Bayesian time series modeling
-
Updated
Feb 24, 2021 - Python
High-performance Bayesian Data Analysis on the GPU in Clojure
machine-learning
clojure
statistics
gpu
opencl
cuda
clojure-library
high-performance-computing
gpu-acceleration
bayesian
gpu-computing
bayesian-inference
mcmc
bayesian-data-analysis
markov-chain-monte-carlo
-
Updated
Sep 10, 2020 - Clojure
bayesplot R package for plotting Bayesian models
-
Updated
Oct 18, 2021 - R
rstanarm R package for Bayesian applied regression modeling
r
bayesian-methods
rstan
bayesian
multilevel-models
bayesian-inference
stan
r-package
rstanarm
bayesian-data-analysis
bayesian-statistics
statistical-modeling
-
Updated
Nov 2, 2021 - R
Bayesian Deep Learning: A Survey
machine-learning
deep-learning
survey
neural-networks
bayesian
arxiv
bayesian-deep-learning
variational-autoencoders
bdl
-
Updated
Nov 2, 2021
r
correlation
matrix
regression
outliers
robust
bayesian
gamma
hacktoberfest
partial
gaussian-graphical-models
cor
correlations
correlation-analysis
spearman
partial-correlations
easystats
bayesian-correlations
multilevel-correlations
biserial
-
Updated
Nov 7, 2021 - R
Collection of probabilistic models and inference algorithms
python
machine-learning
bayesian
bayesian-inference
mcmc
variational-inference
gibbs-sampling
dirichlet-process
probabilistic-models
-
Updated
Apr 3, 2020 - Python
ELFI - Engine for Likelihood-Free Inference
python
statistics
simulator
anaconda
engine
gitter-chat
inference
bayesian
bayesian-inference
notebooks
likelihood-free
-
Updated
Oct 13, 2021 - Python
A Python library for the state-of-the-art Bayesian optimization algorithms, with the core implemented in C++.
machine-learning
optimization
hyperparameter-optimization
bayesian
gaussian-processes
bayesian-optimization
-
Updated
Feb 4, 2020 - C++
Implementation of robust dynamic Hamiltonian Monte Carlo methods (NUTS) in Julia.
julia
julia-language
bayesian-methods
bayesian
bayesian-inference
hamiltonian-monte-carlo
bayesian-statistics
hybrid-monte-carlo
-
Updated
Oct 7, 2021 - Julia
shinystan R package and ShinyStan GUI
r
bayesian-methods
bayesian
bayesian-inference
stan
r-package
shiny-apps
statistical-graphics
mcmc
bayesian-data-analysis
bayesian-statistics
-
Updated
Apr 13, 2021 - R
yet another general purpose naive bayesian classifier.
-
Updated
Sep 1, 2019 - Python
Code that might be useful to others for learning/demonstration purposes, specifically along the lines of modeling and various algorithms. Now almost entirely superseded by the models-by-example repo.
python
r
julia
zip
matlab
irt
pca
survival-analysis
bayesian
stan
em
mixture-model
factor-analysis
gaussian-processes
jags
mixed-models
additive-models
lasso-regression
ordinal-regression
probit
-
Updated
Nov 25, 2020 - R
Bayesian multi-object tracking
optimization
bayesian
object-tracking
kalman-filter
multi-object-tracking
cell-tracking
tracking-algorithm
btrack
-
Updated
Aug 25, 2021 - C++
Improve this page
Add a description, image, and links to the bayesian topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the bayesian topic, visit your repo's landing page and select "manage topics."


Pyro's HMC and NUTS implementations are feature-complete and well-tested, but they are quite slow in models like the one in our Bayesian regression tutorial that operate on small tensors for reasons that are largely beyond our control (mostly having to do with the design and implementation of
torch.autograd), which is unfortunate because these