小编典典

Keras +张量流给出错误“无属性'control_flow_ops'”

python

我正在尝试第一次运行keras。我用以下命令安装了模块:

pip install keras --user
pip install tensorflow --user

然后尝试运行https://github.com/fchollet/keras/blob/master/examples/mnist_cnn.py

但是它给了我:

AttributeError: 'module' object has no attribute 'control_flow_ops'

这些是我正在使用的版本。

print tensorflow.__version__
0.11.0rc0
print keras.__version__
1.1.0

我该怎么办才能使keras与tensorflow一起运行?


阅读 218

收藏
2020-12-20

共1个答案

小编典典

Keras和TF之间存在问题,可能tf.python.control_flow_ops不存在或不再可见。使用下面的导入语句,您可以解决此问题

import tensorflow as tf
tf.python.control_flow_ops = tf

有关详细信息,请检查:https :
//github.com/fchollet/keras/issues/3857

2020-12-20