-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.yaml
134 lines (125 loc) · 2.55 KB
/
package.yaml
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
name: backprop-learn
version: 0.1.0.0
github: mstksg/backprop-learn
license: BSD3
author: Justin Le
maintainer: justin@jle.im
copyright: (c) Justin Le 2018
tested-with: GHC >= 8.2
extra-source-files:
- README.md
# Metadata used when publishing your package
synopsis: Combinators and useful tools for ANNs using the backprop library
category: Math
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: See README.md
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wredundant-constraints
# - -O0
dependencies:
- base >=4.7 && <5
- ghc-typelits-extra
- ghc-typelits-knownnat
- ghc-typelits-natnormalise
- hmatrix
- hmatrix-backprop >= 0.1.3
- mwc-random
- opto
library:
source-dirs: src
dependencies:
- backprop >= 0.2.6.3
- binary
- bytestring
- conduit
- containers
- deepseq
- finite-typelits
- foldl >= 1.4
- functor-products
- hmatrix-vector-sized >= 0.1.2
- list-witnesses >= 0.1.2
- microlens
- microlens-th
- one-liner
- one-liner-instances
- primitive
- profunctors
- singletons
- statistics
- transformers
- typelits-witnesses
- vector >= 0.12.0.2
- vector-sized
- vinyl
_exec: &exec
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
executables:
backprop-learn-mnist:
<<: *exec
main: mnist.hs
dependencies:
- backprop-learn
- data-default
- filepath
- mnist-idx
- transformers
- vector >= 0.12.0.2
backprop-learn-series:
<<: *exec
main: series.hs
dependencies:
- backprop >= 0.2.6.3
- backprop-learn
- conduit
- data-default
- deepseq
- hmatrix-backprop >= 0.1.3
- optparse-applicative
- primitive
- singletons
- singletons
- statistics
- time
- transformers
- typelits-witnesses
- vector-sized
backprop-learn-char-rnn:
<<: *exec
main: char-rnn.hs
dependencies:
- backprop-learn
- conduit
- containers
- data-default
- deepseq
- hmatrix-vector-sized
- text
- time
- transformers
- vector-sized
backprop-learn-word2vec:
<<: *exec
main: word2vec.hs
dependencies:
- backprop-learn
- conduit
- containers
- data-default
- deepseq
- hmatrix
- text
- time
- transformers
- vector >= 0.12.0.2
- vector-sized