1

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

python evaluate.py --checkpoint ./rain-princess.ckpt --in-path <path_to_input_file> --out-path ./output_image.jpg

我安装了 scipy 1.1.0。(降级以修复问题 AttributeError: module 'tensorflow' has no attribute 'imread')

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

请注意,我没有编辑任何文件的知识,我只是复制命令以查看它是如何执行的。

错误消息的屏幕截图

4

1 回答 1

4

这可能是因为您使用的是 tensorflow 2.0(默认安装 tensorflow 时,它现在安装 2.0)。似乎您的 evaluvate.py 文件适合使用 tensorflow 1.* 执行,因为它搜索 2.0 中不存在的 configproto 所以将 tensorflow 降级为

pip install tensorflow==1.14
于 2019-11-06T09:06:54.317 回答