I have been working on voice deepfake, but every program i used (for example mekatron, tacotron etc) needed tensorflow v1.x which is now unsupported on google colab, is there any way to use it? I am a begginer.
I tried use automatic update program but it always cause many errors when I try to use my program. Is there any trick or something to run program on google colab with tensorflow v2.x.
Yes,
Tensorflow 1.xis no longer supported. Hence this code%tensorflow_version 1.xof changing runtime intoTF 1.xis not working anymore.However, You can explicitly install
tensorflow 1.xin Google Colab to use TF 1.x functionality as below:pip install tensorflow==1.15and restart the runtime.Or
Please check this migration guide to convert your code from
TF 1.xtoTF 2.x.