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
/
src
/
js
/
index.js
14 lines
(10 loc)
•
251 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
_tf =
require
(
'./addons'
);
let
tf = {
// version: _tf.TF_VERSION_STRING,
Graph
:
require
(
'./graph'
),
Session
:
require
(
'./session'
),
Test
: _tf.
Test
}
Object
.
assign
(tf, _tf.
Constants
);
Object
.
assign
(tf, _tf.
Types
);
module
.
exports
= tf;