tensorflow 0.0.0
tensorflow: ^0.0.0 copied to clipboard
Native bindings for Tensorflow.
import 'package:tensorflow/tensorflow.dart' as tf;
main() {
var hello = tf.constant('Hello, Tensorflow!');
var result = hello.run();
print('Tensorflow version: ${tf.version}');
print('Result: $result');
}
copied to clipboard