You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.
The text was updated successfully, but these errors were encountered: