1
0
mirror of https://github.com/tensorflow/haskell.git synced 2024-06-02 19:13:34 +02:00
tensorflow-haskell/tensorflow-nn/tensorflow-nn.cabal
Noon van der Silk 69fdbf677f test case to show can't calculate grad for embedding (and associated fix) (#23)
* Fix for embedding gradient calculation

- Passes vectors instead of scalars to slice
- converts the numRows to a scalar
- add `toScalar` utility function
- minor change to test case so that it actually works

* added lib for testing helper functions

* add flatSlice function
2016-11-17 13:54:36 -08:00

46 lines
1.3 KiB
Plaintext

name: tensorflow-nn
version: 0.1.0.0
synopsis: Friendly layer around TensorFlow bindings.
description: Please see README.md
homepage: https://github.com/tensorflow/haskell#readme
license: Apache
author: TensorFlow authors
maintainer: tensorflow-haskell@googlegroups.com
copyright: Google Inc.
category: Machine Learning
build-type: Simple
cabal-version: >=1.22
library
hs-source-dirs: src
exposed-modules: TensorFlow.NN
build-depends: base >= 4.7 && < 5
, tensorflow-core-ops == 0.1.*
, tensorflow == 0.1.*
, tensorflow-ops == 0.1.*
default-language: Haskell2010
Test-Suite NNTest
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: NNTest.hs
hs-source-dirs: tests
build-depends: HUnit
, QuickCheck
, base
, tensorflow
, tensorflow-test
, tensorflow-ops
, tensorflow-nn
, google-shim
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
, vector
source-repository head
type: git
location: https://github.com/tensorflow/haskell