While using U-Net in tensorflow, using the command:
net = unet.Unet(nx=128, ny=128, layers=3, features_root=64, channels=1, n_class=2)
gives attribute error AttributeError: 'module' object has no attribute 'reset_default_graph'
. There is no tensorflow.py file which is being imported by default as in few similar issues I came across.
How can I fix this?