Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stan-dev/stan
Stan development repository. The master branch contains the current release. The develop branch contains the latest stable development. See the Developer Process Wiki for details.
https://github.com/stan-dev/stan
bayesian bayesian-data-analysis bayesian-inference bayesian-methods bayesian-statistics stan
Last synced: 27 days ago
JSON representation
Stan development repository. The master branch contains the current release. The develop branch contains the latest stable development. See the Developer Process Wiki for details.
- Host: GitHub
- URL: https://github.com/stan-dev/stan
- Owner: stan-dev
- License: bsd-3-clause
- Created: 2013-02-06T03:25:04.000Z (almost 12 years ago)
- Default Branch: develop
- Last Pushed: 2024-04-13T16:38:46.000Z (7 months ago)
- Last Synced: 2024-04-14T01:46:29.473Z (7 months ago)
- Topics: bayesian, bayesian-data-analysis, bayesian-inference, bayesian-methods, bayesian-statistics, stan
- Language: C++
- Homepage: https://mc-stan.org
- Size: 277 MB
- Stars: 2,515
- Watchers: 120
- Forks: 366
- Open Issues: 153
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
- awesome-topic-models - Stan - Platform for statistical modeling and high-performance statistical computation, e.g., [LDA](https://mc-stan.org/docs/2_26/stan-users-guide/latent-dirichlet-allocation.html) [:page_facing_up:](https://files.eric.ed.gov/fulltext/ED590311.pdf) (Probabilistic Programming Languages (PPL) (a.k.a. Build your own Topic Model) / Embedding based Topic Models)
README
Stan is a C++ package providing
* full Bayesian inference using the No-U-Turn sampler (NUTS), a variant of Hamiltonian Monte Carlo (HMC),
* approximate Bayesian inference using automatic differentiation variational inference (ADVI), and
* penalized maximum likelihood estimation (MLE) using L-BFGS optimization.It is built on top of the [Stan Math library](https://github.com/stan-dev/math), which provides
* a full first- and higher-order automatic differentiation library based on C++ template overloads, and
* a supporting fully-templated matrix, linear algebra, and probability special function library.There are interfaces available in R, Python, MATLAB, Julia, Stata, Mathematica, and for the command line.
[![DOI](https://zenodo.org/badge/19868/stan-dev/stan.svg)](https://zenodo.org/badge/latestdoi/19868/stan-dev/stan)
Home Page
---------
Stan's home page, with links to everything you'll need to use Stan is:[http://mc-stan.org/](http://mc-stan.org/)
Interfaces
----------
There are separate repositories in the stan-dev GitHub organization for the interfaces, higher-level libraries and lower-level libraries.Source Repository
-----------------
Stan's source-code repository is hosted here on GitHub.Licensing
---------
The Stan math library, core Stan code, and CmdStan are licensed under new BSD. RStan and PyStan are licensed under GPLv3, with other interfaces having other open-source licenses.Note that the Stan math library depends on the Intel TBB library which is licensed under the Apache 2.0 license. This dependency implies an additional restriction as compared to the new BSD lincense alone. The Apache 2.0 license is incompatible with GPL-2 licensed code if distributed as a unitary binary. You may refer to the Licensing page on the [Stan wiki](https://github.com/stan-dev/stan/wiki/Stan-Licensing).