当我使用“import as”时
import tensorflow.python.ops.control_flow_ops as ass
我得到“AttributeError:module' tensorflow'没有属性'python'”
但下面的代码如
import tensorflow.python.ops.control_flow_ops
工作正常
env:python 3.6.3 + tensorflow 1.3.0
答案 0 :(得分:0)
这是TensorFlow界面密封的不幸组合(例如,从tf.python
删除import tensorflow as tf
符号可见性)和Python import semantics。 import tensorflow... as
语法仅访问公共TensorFlow符号,而from tensorflow... import ... as
也可以访问没有API stability guarantees的私有符号。