rhine-bayes: monad-bayes backend for Rhine

[ bsd3, frp, library, program ] [ Propose Tags ]

This package provides a backend to the monad-bayes library, enabling you to write stochastic processes as signal functions, and performing online machine learning on them.


[Skip to Readme]

Modules

[Last Documentation]

  • FRP
    • Rhine
      • FRP.Rhine.Bayes

Flags

Manual Flags

NameDescriptionDefault
dev

Enable warnings as errors. Active on ci.

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.8.1.1, 0.9, 1.0, 1.1, 1.2
Change log ChangeLog.md
Dependencies base (>=4.11 && <4.18), dunai (>=0.11 && <0.12), log-domain (>=0.12), mmorph, monad-bayes (>=1.2 && <1.3), rhine (==1.2), rhine-bayes, rhine-gloss (==1.2), time, transformers (>=0.5) [details]
License BSD-3-Clause
Author Manuel Bärenz
Maintainer programming@manuelbaerenz.de
Category FRP
Source repo head: git clone git@github.com:turion/rhine.git
this: git clone git@github.com:turion/rhine.git(tag v1.1)
Uploaded by turion at 2024-01-07T11:17:05Z
Distributions
Executables rhine-bayes-gloss
Downloads 132 total (14 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2024-01-07 [all 2 reports]

Readme for rhine-bayes-1.2

[back to package description]

README

This package connects rhine to the monad-bayes library for probabilistic programming and inference. It provides:

  • Some standard stochastic processes such as Brownian Motion and LevĂ˝ processes
  • A particle filter inference method called Sequential Monte Carlo

This allows you to do interactive probabilistic (i.e. involving randomness) programs, and at the same time perform online inference, or realtime machine learning. An example for this is given in rhine-bayes/app/Main.hs, where inference is performed both on simulated values as well as external input given by the user.