senguptaumd / Background-Matting

Background Matting: The World is Your Green Screen
https://grail.cs.washington.edu/projects/background-matting/
4.78k stars 662 forks source link

Colab notebook is no longer works #96

Open amrzv opened 1 year ago

amrzv commented 1 year ago

Tensorflow<2 is no longer supported in google colaboratory, as a result, colab notebook is no longer works (because installation tf fails): image

aakash-chakraborty1995 commented 1 year ago

It works. Add these lines in test_segmentation_deeplab.py : import tensorflow.compat.v1 as tf tf.disable_v2_behavior()

and use tf.io.gfile.makedirs() instead of tf.gfile.MakeDirs()