Answers for "google colab change tensorflow version"

1

colab tensorflow version change

%tensorflow_version 1.x

import tensorflow
print(tensorflow.__version__)
Posted by: Guest on November-18-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 "google colab change tensorflow version"

Python Answers by Framework

Browse Popular Code Answers by Language