weixin_慕工程3272708
2019-04-01 22:27
ValueError: Tried to convert 'filter' to a tensor and failed. Error: None values not supported.
同样的问题 已经解决!感谢
解决了 老师定义的时候少了两个定义:
def conv2d (x, W): return tf.nn.conv2d(x, W, strides=[1, 1, 1, 1], padding='SAME')
def max_pool_2x2 (x): return tf.nn.max_pool(x,ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], padding='SAME')
TensorFlow与Flask结合打造手写体数字识别
20428 学习 · 102 问题
相似问题
回答 2
回答 6