TensorFlow¶
TensorFlow is an open-source software library for machine intelligence. For searching available modules type:
$ ml av Tensorflow
TensorFlow Application Example¶
After loading one of the available TensorFlow modules, you can check the functionality by running the following Python script.
import tensorflow as tf
c = tf.constant('Hello World!')
sess = tf.Session()
print(sess.run(c))