Raspberry Pi上的Tensorflow错误运行示例

时间:2018-04-03 20:42:44

标签: python tensorflow raspberry-pi3

我从" https://github.com/samjabrahams/tensorflow-on-raspberry-pi"安装了tensorflow v1.1.0。 现在我尝试运行tensorflow网站上给出的示例中的代码。 这是我不断得到的错误:

  

"属性错误:'模块'对象没有属性' feature_column'"。

我将Debian Jessiepython 2.7.9一起使用。

可能是什么问题?

1 个答案:

答案 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的示例都不会运行。