-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbayes-stack.cabal
52 lines (47 loc) · 1.89 KB
/
bayes-stack.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
Name: bayes-stack
Version: 0.2.0.1
Synopsis: Framework for inferring generative probabilistic models
with Gibbs sampling
Description: bayes-stack is a framework for inference on generative
probabilistic models. The framework uses Gibbs sampling,
although is suitable for other iterative update methods.
homepage: https://github.com/bgamari/bayes-stack
License: BSD3
License-file: LICENSE
Author: Ben Gamari
Maintainer: [email protected]
copyright: Copyright (c) 2012 Ben Gamari
Category: Math
Build-type: Simple
Cabal-version: >=1.6
source-repository head
type: git
location: https://github.com/bgamari/bayes-stack.git
Library
Exposed-modules: BayesStack.Types,
BayesStack.Gibbs, BayesStack.Gibbs.Concurrent,
BayesStack.Gibbs.Simple,
BayesStack.DirMulti, BayesStack.Dirichlet,
BayesStack.UniqueKey,
BayesStack.TupleEnum,
Data.Binary.EnumMap,
Data.Random.Sequence, Data.Sequence.Chunk
Build-depends: base >=4 && <5,
stm,
transformers,
mtl,
deepseq,
random-source,
random-fu,
rvar,
containers,
enummapset,
ghc-prim,
vector,
mwc-random,
pretty,
binary >= 0.7 && < 0.8,
log-domain >= 0.6,
digamma,
gamma,
statistics