Cabal revisions of backprop-0.0.1.0
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-name: backprop-version: 0.0.1.0-synopsis: Heterogeneous, type-safe automatic backpropagation in Haskell-description: See <https://github.com/mstksg/backprop#readme README.md>-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+name: backprop +version: 0.0.1.0 +x-revision: 1 +synopsis: Heterogeneous, type-safe automatic backpropagation in Haskell +description: See <https://github.com/mstksg/backprop#readme README.md>. + . + Currently in pre-alpha; released and uploaded as a part of a request + for thoughts comments! See <https://github.com/mstksg/backprop#todo TODO> + section in README for more information on what's missing and how one would + be able to contribute. +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
revision 2
name: backprop version: 0.0.1.0 -x-revision: 1 +x-revision: 2 synopsis: Heterogeneous, type-safe automatic backpropagation in Haskell description: See <https://github.com/mstksg/backprop#readme README.md>. . - Currently in pre-alpha; released and uploaded as a part of a request - for thoughts comments! See <https://github.com/mstksg/backprop#todo TODO> - section in README for more information on what's missing and how one would - be able to contribute. + 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 <https://github.com/mstksg/backprop#todo the todos section> + in the README for more information on what's missing, and how one would be able + to contribute! homepage: https://github.com/mstksg/backprop license: BSD3 license-file: LICENSE
revision 3
name: backprop version: 0.0.1.0 -x-revision: 2 +x-revision: 3 synopsis: Heterogeneous, type-safe automatic backpropagation in Haskell description: See <https://github.com/mstksg/backprop#readme README.md>. . - 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% + 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 <https://github.com/mstksg/backprop#todo the todos section> + API\/usability). See the <https://github.com/mstksg/backprop#todo TODO> section in the README for more information on what's missing, and how one would be able - to contribute! -homepage: https://github.com/mstksg/backprop license: BSD3 license-file: LICENSE author: Justin Le
revision 4
name: backprop version: 0.0.1.0 -x-revision: 3 +x-revision: 4 synopsis: Heterogeneous, type-safe automatic backpropagation in Haskell description: See <https://github.com/mstksg/backprop#readme README.md>. . before this, but will be from now on. (Previously, highest priority was API\/usability). See the <https://github.com/mstksg/backprop#todo TODO> 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