name: mnist-idx-conduit version: 0.2.0.0 synopsis: conduit utilities for MNIST IDX files description: Conduit decoders for MNIST IDX data files, as described in http://yann.lecun.com/exdb/mnist/ . The IDX format is a low-level binary representation for storing general vector, image or tensor data. Here the parsers are specialized to the MNIST dataset, which stores scans of handwritten digits and is a classic benchmark for text classification. homepage: https://github.com/ocramz/mnist-idx-conduit license: BSD3 license-file: LICENSE author: Marco Zocca maintainer: ocramz copyright: 2021 Marco Zocca category: Data, Data Science, Machine Learning, Data Mining build-type: Simple extra-source-files: README.md cabal-version: >=1.10 tested-with: GHC == 8.10.4 library default-language: Haskell2010 ghc-options: -Wall hs-source-dirs: src exposed-modules: Data.IDX.Conduit build-depends: base >= 4.7 && < 5 , binary , bytestring , conduit , containers , exceptions , resourcet , vector -- executable mnist-idx-conduit -- default-language: Haskell2010 -- ghc-options: -threaded -rtsopts -with-rtsopts=-N -- hs-source-dirs: app -- main-is: Main.hs -- build-depends: base -- , conduit -- , mnist-idx-conduit -- test-suite spec -- default-language: Haskell2010 -- ghc-options: -Wall -- type: exitcode-stdio-1.0 -- hs-source-dirs: test -- main-is: Spec.hs -- build-depends: base -- , mnist-idx-conduit -- , hspec -- , QuickCheck source-repository head type: git location: https://github.com/ocramz/mnist-idx-conduit