Answers for "how to check tensorflow version in colab"

3

check tensorflow version

import tensorflow as tf
tf.__version__
Posted by: Guest on May-08-2020
3

tf 1 compatible colab

Specifying the TensorFlow version
Running 

import tensorflow 

will import the default version (currently 2.x). You can use 1.x 
by running a cell with the 

%tensorflow_version 1.x

magic before you run import tensorflow.
Posted by: Guest on April-26-2020

Code answers related to "how to check tensorflow version in colab"

Python Answers by Framework

Browse Popular Code Answers by Language