我从" https://github.com/samjabrahams/tensorflow-on-raspberry-pi"安装了tensorflow v1.1.0。 现在我尝试运行tensorflow网站上给出的示例中的代码。 这是我不断得到的错误:
"属性错误:'模块'对象没有属性' feature_column'"。
我将Debian Jessie
与python 2.7.9
一起使用。
可能是什么问题?
答案 0 :(得分:0)
"属性错误:'模块'对象没有属性' feature_column'"。
可能是什么问题?
try:
avg_cost1 += c_1 / total_batch
avg_cost2 += c_2 / total_batch
avg_cost3 += c_3 / total_batch
cost_1.append(avg_cost1)
cost_2.append(avg_cost2)
cost_3.append(avg_cost3)
except TypeError:
print('There is nothing here!!')
#do something else with the None value...
print('continuing script...')
是在tf.feature_column
上的Tensorflow v 1.2.0
中引入的。
您有Tensorflow版本June 16, 2017
。任何需要v1.1.0
的示例都不会运行。