forked from tweag/monad-bayes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
monad-bayes.cabal
205 lines (199 loc) · 7.81 KB
/
monad-bayes.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
name: monad-bayes
version: 0.1.0.0
synopsis: A library for probabilistic programming in Haskell.
description: Please see README.md
homepage: http://github.com/adscib/monad-bayes#readme
license: MIT
license-file: LICENSE
author: Adam Scibior
maintainer: adscib@gmail.com
copyright: 2015 Adam Scibior
category: Statistics
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Numeric.LogDomain,
Numeric.CustomReal,
Numeric.Optimization.SGD,
Statistics.Distribution.Polymorphic,
Statistics.Distribution.Polymorphic.Class,
Statistics.Distribution.Polymorphic.Normal,
Statistics.Distribution.Polymorphic.Gamma,
Statistics.Distribution.Polymorphic.Beta,
Statistics.Distribution.Polymorphic.Uniform,
Statistics.Distribution.Polymorphic.Discrete,
Statistics.Distribution.Polymorphic.MVNormal,
Statistics.Distribution.Polymorphic.Unconstrained,
Control.Monad.Bayes.Class,
Control.Monad.Bayes.Enumerator,
Control.Monad.Bayes.Sampler,
Control.Monad.Bayes.Prior,
Control.Monad.Bayes.Rejection,
Control.Monad.Bayes.Weighted,
Control.Monad.Bayes.Deterministic,
Control.Monad.Bayes.Population,
Control.Monad.Bayes.Sequential,
Control.Monad.Bayes.Inference,
Control.Monad.Bayes.Trace,
Control.Monad.Bayes.Conditional,
Control.Monad.Bayes.Augmented,
Control.Monad.Bayes.Traced,
Control.Monad.Bayes.Simple,
Control.Monad.Bayes.Reparametrized,
Control.Monad.Bayes.Parametric,
Control.Monad.Bayes.Constraint,
Control.Monad.Bayes.MeanField,
Control.Monad.Bayes.Inference.Proposal,
Control.Monad.Bayes.Inference.Variational
Control.Monad.Bayes.Inference.MCMC
build-depends: base >= 4.7 && < 5
, containers
, mtl
, transformers
, math-functions
, monad-coroutine
, mwc-random
, safe
, vector
, ad
, reflection
, hmatrix
, ieee754
ghc-options: -Wall -fno-warn-redundant-constraints
default-language: Haskell2010
default-extensions: RankNTypes
, GeneralizedNewtypeDeriving
, StandaloneDeriving
, TypeFamilies
, FlexibleContexts
, FlexibleInstances
, TupleSections
, MultiParamTypeClasses
, GADTs
other-extensions: ScopedTypeVariables
, DeriveFunctor
test-suite monad-bayes-test
type: exitcode-stdio-1.0
hs-source-dirs: test, models
main-is: Spec.hs
build-depends: base
, monad-bayes
, hspec
, QuickCheck
, ieee754
, mtl
, math-functions
, transformers
, ad
, reflection
, hmatrix
ghc-options: -Wall -threaded -rtsopts "-with-rtsopts=-N -M1g -K1g"
default-language: Haskell2010
main-is: Spec.hs
other-modules: Sprinkler,
TestEnumerator,
TestPopulation,
TestInference,
TestSequential,
TestWeighted,
TestSMCObservations,
TestTrace,
TestGradient,
TestConditional,
TestDistribution,
TestProposal,
TestOptimization,
StrictlySmallerSupport
-- benchmark monad-bayes-bench
-- type: exitcode-stdio-1.0
-- hs-source-dirs: models
-- build-depends: base
-- , monad-bayes
-- , mtl
-- , transformers
-- , math-functions
-- , hmatrix
-- , statistics
-- , vector
-- , Chart
-- , Chart-cairo
-- , optparse-applicative
-- , directory
-- default-language: Haskell2010
-- -- Main benchmark file should import all the modules to be
-- -- maintained. Those modules should also be listed in
-- -- `other-modules`.
-- main-is: BenchAll.hs
-- -- List all models we want to watch for changes.
-- -- DO NOT list modules that don't compile.
-- -- They make it impossible to run `stack ghci`.
-- other-modules: Sprinkler,
-- BetaBin,
-- Dice,
-- Gamma,
-- HMM,
-- DPmixture,
-- StrictlySmallerSupport,
-- Plotting
benchmark lgss-benchmark
type: exitcode-stdio-1.0
hs-source-dirs: models
build-depends: base
, monad-bayes
, transformers
, mtl
, statistics
, vector
, Chart
, Chart-cairo
, optparse-applicative
, directory
default-language: Haskell2010
-- Main benchmark file should import all the modules to be
-- maintained. Those modules should also be listed in
-- `other-modules`.
main-is: LGSS.hs
-- List all models we want to watch for changes.
-- DO NOT list modules that don't compile.
-- They make it impossible to run `stack ghci`.
other-modules: Plotting
benchmark performance
type: exitcode-stdio-1.0
hs-source-dirs: models
build-depends: base
, monad-bayes
, transformers
, mtl
, vector
, criterion
, ad
, mwc-random
, statistics
, Chart
, Chart-cairo
, directory
, optparse-applicative
, abstract-par
, containers
, hmatrix
default-language: Haskell2010
-- Main benchmark file should import all the modules to be
-- maintained. Those modules should also be listed in
-- `other-modules`.
main-is: Benchmarks.hs
-- List all models we want to watch for changes.
-- DO NOT list modules that don't compile.
-- They make it impossible to run `stack ghci`.
other-modules: Plotting,
NonlinearSSM,
HMM,
LogReg,
LDA
default-extensions: RankNTypes
, TypeFamilies
, AllowAmbiguousTypes
source-repository head
type: git
location: https://github.com/adscib/monad-bayes