世界那么好,机会那么多

这里除了干货,什么都没有

AttributeError: module 'tensorflow' has no attribute 'sub'

 

官方的例子:运行之后出现以下错误

# 进入一个交互式 TensorFlow 会话.
import tensorflow as tf
sess = tf.InteractiveSession()

x = tf.Variable([1.0, 2.0])
a = tf.constant([3.0, 3.0])

# 使用初始化器 initializer op 的 run() 方法初始化 'x' 
x.initializer.run()

# 增加一个减法 sub op, 从 'x' 减去 'a'. 运行减法 op, 输出结果 
sub = tf.sub(x, a)
print sub.eval()
# ==> [-2. -1.]

 

Traceback (most recent call last):
  File "C:\Users\lzm\Desktop\ten-1.py", line 10, in <module>
    sub = tf.sub(x, a)
AttributeError: module 'tensorflow' has no attribute 'sub'

 

出现这个问题是因为sub函数换名字了,换成了subtract 

# 进入一个交互式 TensorFlow 会话.
import tensorflow as tf
sess = tf.InteractiveSession()

x = tf.Variable([1.0, 2.0])
a = tf.constant([3.0, 3.0])

# 使用初始化器 initializer op 的 run() 方法初始化 'x' 
x.initializer.run()

# 增加一个减法 sub op, 从 'x' 减去 'a'. 运行减法 op, 输出结果 
sub = tf.subtract(x, a)
print sub.eval()
# ==> [-2. -1.]

 

posted @ 2019-03-09 01:02  面向对象爱好者社区  阅读(3536)  评论(0编辑  收藏  举报