mirror of
https://github.com/HuwCampbell/grenade.git
synced 2024-11-22 06:55:13 +03:00
252 lines
8.7 KiB
Plaintext
252 lines
8.7 KiB
Plaintext
name: grenade
|
|
version: 0.0.1
|
|
license: BSD2
|
|
license-file: LICENSE
|
|
author: Huw Campbell <huw.campbell@gmail.com>
|
|
maintainer: Huw Campbell <huw.campbell@gmail.com>
|
|
copyright: (c) 2015 Huw Campbell.
|
|
synopsis: grenade
|
|
category: System
|
|
cabal-version: >= 1.8
|
|
build-type: Simple
|
|
description: grenade.
|
|
|
|
extra-source-files:
|
|
cbits/im2col.h
|
|
cbits/im2col.c
|
|
cbits/gradient_decent.h
|
|
cbits/gradient_decent.c
|
|
cbits/pad.h
|
|
cbits/pad.c
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/HuwCampbell/grenade.git
|
|
|
|
library
|
|
build-depends:
|
|
base >= 4.8 && < 5
|
|
, bytestring == 0.10.*
|
|
, containers
|
|
, deepseq
|
|
, either == 4.4.*
|
|
, cereal
|
|
, exceptions == 0.8.*
|
|
, hmatrix == 0.18.*
|
|
, MonadRandom
|
|
, mtl >= 2.2.1 && < 2.3
|
|
, primitive
|
|
, text == 1.2.*
|
|
, transformers
|
|
, singletons >= 2.1 && < 2.3
|
|
, vector == 0.11.*
|
|
|
|
ghc-options:
|
|
-Wall
|
|
hs-source-dirs:
|
|
src
|
|
|
|
|
|
exposed-modules:
|
|
Grenade
|
|
Grenade.Core
|
|
Grenade.Core.Layer
|
|
Grenade.Core.LearningParameters
|
|
Grenade.Core.Network
|
|
Grenade.Core.Runner
|
|
Grenade.Core.Shape
|
|
Grenade.Layers.Crop
|
|
Grenade.Layers.Concat
|
|
Grenade.Layers.Convolution
|
|
Grenade.Layers.Dropout
|
|
Grenade.Layers.FullyConnected
|
|
Grenade.Layers.Reshape
|
|
Grenade.Layers.Logit
|
|
Grenade.Layers.Merge
|
|
Grenade.Layers.Relu
|
|
Grenade.Layers.Elu
|
|
Grenade.Layers.Tanh
|
|
Grenade.Layers.Pad
|
|
Grenade.Layers.Pooling
|
|
|
|
Grenade.Layers.Internal.Convolution
|
|
Grenade.Layers.Internal.Pad
|
|
Grenade.Layers.Internal.Pooling
|
|
Grenade.Layers.Internal.Update
|
|
|
|
Grenade.Recurrent
|
|
|
|
Grenade.Recurrent.Core
|
|
Grenade.Recurrent.Core.Layer
|
|
Grenade.Recurrent.Core.Network
|
|
Grenade.Recurrent.Core.Runner
|
|
|
|
Grenade.Recurrent.Layers.BasicRecurrent
|
|
Grenade.Recurrent.Layers.LSTM
|
|
|
|
Grenade.Utils.OneHot
|
|
|
|
includes: cbits/im2col.h
|
|
cbits/gradient_decent.h
|
|
cbits/pad.h
|
|
c-sources: cbits/im2col.c
|
|
cbits/gradient_decent.c
|
|
cbits/pad.c
|
|
|
|
cc-options: -std=c99 -O3 -msse4.2 -Wall -Werror -DCABAL=1
|
|
|
|
executable feedforward
|
|
ghc-options: -Wall -threaded -O2
|
|
main-is: main/feedforward.hs
|
|
build-depends: base
|
|
, grenade
|
|
, attoparsec
|
|
, bytestring
|
|
, cereal
|
|
, either
|
|
, optparse-applicative == 0.13.*
|
|
, text == 1.2.*
|
|
, mtl >= 2.2.1 && < 2.3
|
|
, hmatrix
|
|
, transformers
|
|
, singletons
|
|
, semigroups
|
|
, MonadRandom
|
|
|
|
executable mnist
|
|
ghc-options: -Wall -threaded -O2
|
|
main-is: main/mnist.hs
|
|
build-depends: base
|
|
, grenade
|
|
, attoparsec
|
|
, either
|
|
, optparse-applicative == 0.13.*
|
|
, text == 1.2.*
|
|
, mtl >= 2.2.1 && < 2.3
|
|
, hmatrix >= 0.18 && < 0.19
|
|
, transformers
|
|
, semigroups
|
|
, singletons
|
|
, MonadRandom
|
|
, vector
|
|
|
|
executable gan-mnist
|
|
ghc-options: -Wall -threaded -O2
|
|
main-is: main/gan-mnist.hs
|
|
build-depends: base
|
|
, grenade
|
|
, attoparsec
|
|
, bytestring
|
|
, cereal
|
|
, either
|
|
, optparse-applicative == 0.13.*
|
|
, text == 1.2.*
|
|
, mtl >= 2.2.1 && < 2.3
|
|
, hmatrix >= 0.18 && < 0.19
|
|
, transformers
|
|
, semigroups
|
|
, singletons
|
|
, MonadRandom
|
|
, vector
|
|
|
|
executable recurrent
|
|
ghc-options: -Wall -threaded -O2
|
|
main-is: main/recurrent.hs
|
|
build-depends: base
|
|
, grenade
|
|
, attoparsec
|
|
, either
|
|
, optparse-applicative == 0.13.*
|
|
, text == 1.2.*
|
|
, mtl >= 2.2.1 && < 2.3
|
|
, hmatrix >= 0.18 && < 0.19
|
|
, transformers
|
|
, semigroups
|
|
, singletons
|
|
, MonadRandom
|
|
|
|
|
|
executable shakespeare
|
|
ghc-options: -Wall -threaded -O2
|
|
main-is: main/shakespeare.hs
|
|
build-depends: base
|
|
, grenade
|
|
, attoparsec
|
|
, bytestring
|
|
, cereal
|
|
, either
|
|
, optparse-applicative == 0.13.*
|
|
, text == 1.2.*
|
|
, mtl >= 2.2.1 && < 2.3
|
|
, hmatrix >= 0.18 && < 0.19
|
|
, transformers
|
|
, semigroups
|
|
, singletons
|
|
, vector
|
|
, MonadRandom
|
|
, containers
|
|
|
|
|
|
test-suite test
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: test.hs
|
|
|
|
ghc-options: -Wall -threaded -O2
|
|
|
|
hs-source-dirs:
|
|
test
|
|
|
|
build-depends:
|
|
base >= 4.8 && < 5
|
|
, grenade
|
|
, ambiata-disorder-core
|
|
, ambiata-disorder-jack
|
|
, hmatrix
|
|
, mtl
|
|
, singletons
|
|
, text == 1.2.*
|
|
, typelits-witnesses
|
|
, constraints
|
|
, QuickCheck >= 2.7 && < 2.9
|
|
, quickcheck-instances == 0.3.*
|
|
, MonadRandom
|
|
, random
|
|
, ad
|
|
, reflection
|
|
|
|
|
|
benchmark bench
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: bench.hs
|
|
|
|
ghc-options: -Wall -threaded -O2
|
|
|
|
hs-source-dirs:
|
|
bench
|
|
|
|
build-depends:
|
|
base >= 3 && < 5
|
|
, bytestring == 0.10.*
|
|
, criterion == 1.1.*
|
|
, grenade
|
|
, hmatrix
|
|
|
|
benchmark bench-lstm
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: bench-lstm.hs
|
|
|
|
ghc-options: -Wall -threaded -O2
|
|
|
|
hs-source-dirs:
|
|
bench
|
|
|
|
build-depends:
|
|
base >= 3 && < 5
|
|
, bytestring == 0.10.*
|
|
, criterion == 1.1.*
|
|
, grenade
|
|
, hmatrix
|