标签: python tensorflow
在tensorflow中使用U-Net时,使用以下命令: net = unet.Unet(nx=128, ny=128, layers=3, features_root=64, channels=1, n_class=2)提供了属性错误AttributeError: 'module' object has no attribute 'reset_default_graph'。默认情况下没有tensorflow.py文件导入,因为我遇到的问题很少。
net = unet.Unet(nx=128, ny=128, layers=3, features_root=64, channels=1, n_class=2)
AttributeError: 'module' object has no attribute 'reset_default_graph'
我该如何解决这个问题?