UNPKG

@waynew/boa

Version:

Use Python modules seamlessly in Node.js

11 lines (7 loc) 236 B
'use strict'; const boa = require('../../'); const tf = boa.import('tensorflow'); const n1 = tf.add(1, 2).numpy(); console.log(n1); // 3 const n2 = tf.constant('Hello, TensorFlow!').numpy(); console.log(n2); // b'Hello, TensorFlow!'