name: mnist-idx-conduit version: 0.3.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 Changelog.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 -- debug , hspec -- 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 -Wno-missing-home-modules type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs build-depends: base , bytestring , conduit , mnist-idx-conduit , hspec , vector source-repository head type: git location: https://github.com/ocramz/mnist-idx-conduit