Ejemplo 1: comprobar la versión de tensorflow
python3
import tensorflow as tf
tf.__version__
Ejemplo 2: cómo saber la versión de tensorflow en la línea de comandos de linux
python -c 'import tensorflow as tf; print(tf.__version__)' # for Python 2 on linux
python3 -c 'import tensorflow as tf; print(tf.__version__)' # for Python 3 on linux
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)