BabyGAN icon indicating copy to clipboard operation
BabyGAN copied to clipboard

Tensorflow 1 is no longer supported in google colab

Open athulkrishna2015 opened this issue 1 year ago • 1 comments

ValueError Traceback (most recent call last) in <cell line: 2>() 1 #@title Clone Git repository and install all requirements ----> 2 get_ipython().run_line_magic('tensorflow_version', '1.x') 3 4 get_ipython().system("pip install 'h5py<3.0.0'") 5

1 frames /usr/local/lib/python3.10/dist-packages/google/colab/_tensorflow_magics.py in _tensorflow_version(line) 33 34 if line.startswith("1"): ---> 35 raise ValueError( 36 # pylint: disable=line-too-long 37 textwrap.dedent(

ValueError: Tensorflow 1 is unsupported in Colab.

Your notebook should be updated to use Tensorflow 2. See the guide at https://www.tensorflow.org/guide/migrate#migrate-from-tensorflow-1x-to-tensorflow-2.

athulkrishna2015 avatar May 22 '23 12:05 athulkrishna2015

I ran into the same issue, and am lightly looking into this as time permits. Currently testing out a very naive approach of converting the Tensorflow 1 imports to Tensorflow 2 (e.g. %tensorflow_version 2.x where %tensorflow_version 1.x is specified), unsure if this will do the trick.

avatarneil avatar Jun 28 '23 23:06 avatarneil