Tensorflow:占位符的InvalidArgumentError

时间:2016-12-09 19:56:55

标签: tensorflow

我尝试在Jupyter Notebook中运行以下代码,但我得到了InvalidArgumentError的{​​{1}}。

但是当我编写一个Python脚本并在命令窗口中运行它时,它起作用了。我想知道如何成功地在Notebook中运行我的代码,谢谢。

  • 操作系统:Ubuntu 16.04 LTS
  • Tensorflow版本:0.12rc(从源代码安装)

程序和输出:

enter image description here

enter image description here

命令窗口:

enter image description here

Actural code:

placeholder

1 个答案:

答案 0 :(得分:1)

你的raw_data是float64(默认的numpy浮点类型),而你的占位符是float32(默认的tensorflow浮点类型)。您应该明确地将数据转换为float32