我该如何修复AttributeError:模块'tensorflow'没有属性'ConfigProto'

时间:2019-11-06 09:00:28

标签: python tensorflow deep-learning style-transfer

我是深度学习的新手,当我尝试运行我正在学习的教程中给出的图像样式转换命令 时,出现以下错误。

@NgModule({...})
export class AppModule implements DoBootstrap {
   ngDoBootstrap(appRef: ApplicationRef) {
       ...
   }
}

我已安装scipy 1.1.0。 (降级以解决问题AttributeError:模块'tensorflow'没有属性'imread')

我已安装Tensorflow。我已经安装了枕头。

请注意,我不具备编辑任何文件的知识,我只是复制命令以查看其执行方式。

A screenshot of the error message

1 个答案:

答案 0 :(得分:1)

这可能是因为您使用的是tensorflow 2.0(默认情况下安装tensorflow时会立即安装2.0)。似乎您的evaluvate.py文件适合使用tensorflow 1. *执行,因为它搜索2.0中不存在的configproto,因此

降级tensorflow
pip install tensorflow==1.14