2016-10-24 21:26:42 +02:00
|
|
|
name: tensorflow-mnist-input-data
|
|
|
|
version: 0.1.0.0
|
|
|
|
synopsis: Downloader of input data for training MNIST.
|
|
|
|
description: Please see README.md
|
|
|
|
homepage: https://github.com/tensorflow/haskell#readme
|
|
|
|
license: Apache
|
2017-05-10 20:37:00 +02:00
|
|
|
license-file: LICENSE
|
2016-10-24 21:26:42 +02:00
|
|
|
author: TensorFlow authors
|
|
|
|
maintainer: tensorflow-haskell@googlegroups.com
|
|
|
|
copyright: Google Inc.
|
|
|
|
category: Machine Learning
|
|
|
|
build-type: Custom
|
2017-05-10 05:49:51 +02:00
|
|
|
cabal-version: >=1.24
|
2016-10-24 21:26:42 +02:00
|
|
|
-- These files are downloaded automatically by Setup.hs. If the
|
|
|
|
-- automatic download fails, follow the instructions in error messages
|
|
|
|
-- displayed by Setup.hs.
|
|
|
|
data-dir: data
|
|
|
|
data-files: *.gz
|
|
|
|
|
|
|
|
library
|
|
|
|
hs-source-dirs: src
|
|
|
|
exposed-modules: TensorFlow.Examples.MNIST.InputData
|
|
|
|
other-modules: Paths_tensorflow_mnist_input_data
|
2017-05-10 05:49:51 +02:00
|
|
|
build-depends: base >= 4.7 && < 5
|
2016-10-24 21:26:42 +02:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
2017-05-10 05:49:51 +02:00
|
|
|
custom-setup
|
|
|
|
setup-depends: Cabal
|
|
|
|
, HTTP
|
|
|
|
, base >= 4.7 && < 5
|
|
|
|
, bytestring
|
|
|
|
, cryptonite
|
|
|
|
, directory
|
|
|
|
, filepath
|
|
|
|
, network-uri
|
|
|
|
|
2016-10-24 21:26:42 +02:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/tensorflow/haskell
|