1
0
mirror of https://github.com/tensorflow/haskell.git synced 2024-06-30 16:38:34 +02:00
tensorflow-haskell/tensorflow-test/tensorflow-test.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

25 lines
724 B
Plaintext

name: tensorflow-test
version: 0.1.0.0
synopsis: Some common functions for test suites.
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.Test
build-depends: base >= 4.7 && < 5
, HUnit
, vector
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/tensorflow/haskell