name: backprop version: 0.0.1.0 x-revision: 4 synopsis: Heterogeneous, type-safe automatic backpropagation in Haskell description: See . . At the moment this project is in _pre-alpha_ (/v0.0.1.0/), and is published\/put up on Hackage as a call for comments and thoughts. It has 100% documentation coverage at the moment. Performance was not yet a priority before this, but will be from now on. (Previously, highest priority was API\/usability). See the section in the README for more information on what's missing, and how one would be able homepage: https://github.com/mstksg/backprop license: BSD3 license-file: LICENSE author: Justin Le maintainer: justin@jle.im copyright: (c) Justin Le 2017 category: Web build-type: Simple extra-source-files: README.md CHANGELOG.md Build.hs renders/MNIST.md renders/MNIST.pdf renders/NeuralTest.md renders/NeuralTest.pdf cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: Numeric.Backprop Numeric.Backprop.Implicit Numeric.Backprop.Iso Numeric.Backprop.Mono Numeric.Backprop.Mono.Implicit Numeric.Backprop.Op Numeric.Backprop.Op.Mono other-modules: Numeric.Backprop.Internal Numeric.Backprop.Internal.Helper Data.Type.Util build-depends: base >= 4.7 && < 5 , ad , generics-sop , microlens , microlens-mtl , microlens-th , mtl , profunctors , reflection , tagged , transformers-base , type-combinators default-language: Haskell2010 ghc-options: -Wall executable backprop-monotest hs-source-dirs: samples main-is: MonoTest.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -O2 build-depends: base , backprop default-language: Haskell2010 executable backprop-neuraltest hs-source-dirs: samples main-is: NeuralTest.lhs ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -O2 build-depends: base , ad , backprop , generics-sop , hmatrix >= 0.18 , mwc-random , primitive , singletons , type-combinators default-language: Haskell2010 executable backprop-mnist hs-source-dirs: samples main-is: MNIST.lhs ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -O2 build-depends: base , backprop , bifunctors , deepseq , finite-typelits , generics-sop , hmatrix >= 0.18 , mnist-idx , mwc-random , split , time , transformers , vector default-language: Haskell2010 -- test-suite backprop-test -- type: exitcode-stdio-1.0 -- hs-source-dirs: test -- main-is: Spec.hs -- build-depends: base -- , backprop -- ghc-options: -threaded -rtsopts -with-rtsopts=-N -- default-language: Haskell2010 source-repository head type: git location: https://github.com/mstksg/backprop