张量从 (256, 256, 3) 重塑到 (1,256, 256, 3)

我的问题是如何重塑张量!

这是一种语法tf.reshape(tensor, shape, name=None)

我不知道,我哪里错了,但我无法重塑

我怎样才能做到这一点?

谢谢


红糖糍粑
浏览 113回答 3
3回答

慕妹3242003

axis=0# image is your tensortf.expand_dims(your_image, axis)

白衣染霜花

试试下面的代码:#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

DIEA

您可以使用tf.expand_dims:output = tf.expand_dims(input, 0)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python