ValueError: Cannot feed value of shape (2,) for Tensor u'Placeholder_2:0', which has shape &
Posted bluesl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ValueError: Cannot feed value of shape (2,) for Tensor u'Placeholder_2:0', which has shape &相关的知识,希望对你有一定的参考价值。
在tensorflow中你在做数据喂养的时候你输入的是一个一维数组如:[22,33],他的shape 为(2,)
在tensorflow中一维数组是不能与同样的一维数组进行运算的,必须通过reshape成为(1,2)而
另一个一维数组必须是(2,1)才能相乘,但是在numpy中两个一维数组相乘是不会报错的,
这个原因是在tensorflow中向量是不能和矩阵进行运算的,你需要把他改成二维的矩阵才能运算;
另外给大家补充一下reshape 和shape的知识:
shape:链接:https://blog.csdn.net/weixin_38859557/article/details/80778820
reshape:链接:https://www.cnblogs.com/bluesl/p/9215766.html
以上是关于ValueError: Cannot feed value of shape (2,) for Tensor u'Placeholder_2:0', which has shape &的主要内容,如果未能解决你的问题,请参考以下文章
Pycharm ValueError: source code string cannot contain null bytes
typeError:The value of a feed cannot be a tf.Tensor object.Acceptable feed values include Python sca
[Trouble Shooting - Python] ValueError: source code string cannot contain null bytes
ValueError: Object arrays cannot be loaded when allow_pickle=False
完美解决:ValueError: Object arrays cannot be loaded when allow_pickle=False
解决pandas:ValueError: Cannot convert non-finite values (NA or inf) to integer