BabyGAN
BabyGAN copied to clipboard
Tensorflow 1 is no longer supported in google colab
ValueError Traceback (most recent call last)
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.
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.