Ejemplo de como correr interactivamente la libreria TensorFlow en IPython

In [1]:
import tensorflow as tf

De esta manera lanzar una sesion interactiva, util cuando queremos probar metodos

In [2]:
sess = tf.InteractiveSession()
In [19]:
x = tf.Variable([[2.0, 3.0],[4.0, 12.0]])

Probamos la funcion que nos reduce un tensor por medio de medias

In [20]:
x.initializer.run()
tf.reduce_mean(x).eval()
Out[20]:
5.25
In [21]:
tf.reduce_mean(x,1).eval()
Out[21]:
array([ 2.5,  8. ], dtype=float32)
In [22]:
tf.reduce_mean(x,0).eval()
Out[22]:
array([ 3. ,  7.5], dtype=float32)

Cerramos la session para liberar recursos

In [24]:
sess.close()