我的问题是如何重塑张量!这是一种语法tf.reshape(tensor, shape, name=None)我不知道,我哪里错了,但我无法重塑我怎样才能做到这一点?谢谢
3 回答
白衣染霜花
TA贡献1796条经验 获得超10个赞
试试下面的代码:
#assuming `img` contains the data which is in the format (256,256,3)
output = tf.reshape(img, [1, 256, 256, 3]) # 1 is batch size
添加回答
举报
0/150
提交
取消