AttributeError: module 'tensorflow' has no attribute 'sub'
Posted qw-lzm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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:UserslzmDesktop en-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.]
以上是关于AttributeError: module 'tensorflow' has no attribute 'sub'的主要内容,如果未能解决你的问题,请参考以下文章
类 InstagramSpider(scrapy.Spider): AttributeError: 'module' 对象没有属性 'Spider'
api = twitter.Api() AttributeError: 'module' 对象没有属性 'Api
AttributeError:'module'对象在python中没有属性'windll'
如何修复python2.7中的“AttributeError:'module'对象没有属性'storage'”错误
成功解决AttributeError: module ‘numpy‘ has no attribute ‘polyld‘
hydra安装——AttributeError: module ‘hydra‘ has no attribute ‘main‘