【发布时间】:2017-11-22 15:56:13
【问题描述】:
我正在用 python 编写一个脚本来使用 tensorflow 检测,但是我遇到了这行代码的问题
images_placeholder = tf.placeholder(tf.float32, shape=[905, 1053])
结果是
ValueError: Dimensions must be equal, but are 1053 and 905 for 'MatMul' (op: 'MatMul') with input shapes: [905,1053], [905,1053].
这是否意味着高度和宽度应该相同?还是别的什么? 谢谢
【问题讨论】:
标签: tensorflow ocr