UNPKG
tensorflow-node
Version:
latest (0.1.1)
0.1.1
0.1.0
Tensorflow for node.js
github.com/kmalakoff/tensorflow-node
kmalakoff/tensorflow-node
tensorflow-node
/
test
/
js
/
types.js
11 lines
(8 loc)
•
229 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
assert =
require
(
'chai'
).
assert
;
const
tf =
require
(
'../../index'
);
describe
(
"Tensorflow Types"
,
function
(
) {
it
(
"has expected types"
,
function
(
) { assert.
equal
(tf.
float32
,
1
);
//
TODO:
add more types
}); });