-
Notifications
You must be signed in to change notification settings - Fork 8
/
rbm.cabal
86 lines (74 loc) · 2.74 KB
/
rbm.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
Name: rbm
Version: 0.1
Description: restricted boltzman machine
Author: anatoly yakovenko
Build-Type: Simple
Cabal-Version: >=1.2
Library
exposed-modules: Data.RBM,
Data.DNN.Trainer,
Data.MLP,
Data.Matrix,
Data.ImageUtils,
Examples.Mnist
Build-Depends: base,
random,
split,
mtl,
repa,
repa-algorithms,
transformers,
monad-loops,
JuicyPixels,
JuicyPixels-repa,
vector,
deepseq
Test-Suite test-RBM
type: exitcode-stdio-1.0
main-is: Test/RBM.hs
ghc-options: -Werror -Wall -threaded -O3 -main-is Test.RBM.test
Build-Depends: QuickCheck,
monad-loops,
criterion
Test-Suite perf-RBM
type: exitcode-stdio-1.0
main-is: Test/RBM.hs
ghc-options: -Werror -Wall -threaded -O3 -main-is Test.RBM.perf
Build-Depends: QuickCheck,
monad-loops,
criterion
Test-Suite test-Matrix
type: exitcode-stdio-1.0
main-is: Test/Matrix.hs
ghc-options: -Werror -Wall -threaded -O3 -main-is Test.Matrix.test
Build-Depends: QuickCheck
Test-Suite test-MLP
type: exitcode-stdio-1.0
main-is: Test/MLP.hs
ghc-options: -Werror -Wall -threaded -O3 -main-is Test.MLP.test
Build-Depends: QuickCheck
Test-Suite test-ImageUtils
type: exitcode-stdio-1.0
main-is: Test/ImageUtils.hs
ghc-options: -Werror -Wall -threaded -O3 -main-is Test.ImageUtils.test
Build-Depends: QuickCheck
Executable mnist
main-is: Examples/Mnist.hs
ghc-options: -Werror -Wall -threaded -O3 -main-is Examples.Mnist.mnist
Build-Depends: bytestring,
repa-io,
repa-algorithms,
zlib,
transformers,
statistics-linreg,
binary
--mnist data generation
Executable generatetrainlabels
main-is: Examples/Mnist.hs
ghc-options: -Werror -Wall -threaded -O3 -main-is Examples.Mnist.generateTrainLabels
Executable trainbatches
main-is: Examples/Mnist.hs
ghc-options: -Werror -Wall -threaded -O3 -main-is Examples.Mnist.generateTrainBatches
Executable testbatches
main-is: Examples/Mnist.hs
ghc-options: -Werror -Wall -threaded -O3 -main-is Examples.Mnist.generateTestBatches