Instalando TensorFlow y Jupiter
# Instalar TensorFlow $ sudo su - $ apt install python3-dev python3-pip $ pip3 install jupyter $ pip3 install tensorflow # Comprobar instalación $ python3 >> import tensorflow as tf >> print("Versión: ",tf.__version__)
¿Cómo usar Jupyter? Abrimos una terminal y teclemaos:
$ mkdir ejemplos && cd ejemplos $ jupyter notebook # Abrimos el navegador en http://localhost:8888/tree
Otra forma:
$ pip install notebook # Ejecutar $ jupyter notebook
Ejemplo. El clásico Hola, mundo en TensorFlow:
holamundo.py
#!/bin/python import tensorflow as tf hola_mundo = tf.constant("Hola, mundo en TensorFlow!") session = tf.Session() session.run(hola_mundo) # Hola, mundo en TensorFlow!
Ejecutando:
$ python3 holamundo.py
En próximos post hablaremos más de esta herramienta.
Enlaces:
https://www.tensorflow.org
Comentarios
Publicar un comentario