2
如何在尺寸(?,28,28,1)
與tf.pad()
中填充MNIST數據集圖像,並將其設置爲(?,32,32,1)
張量流?用tf.pad填充MNIST數據集()
如何在尺寸(?,28,28,1)
與tf.pad()
中填充MNIST數據集圖像,並將其設置爲(?,32,32,1)
張量流?用tf.pad填充MNIST數據集()
這取決於你打算如何填補它。舉例如下:
# Assuming input is a tensor with shape (?, 28, 28, 1)
output = tf.pad(input, [[0, 0], [2,2], [2,2], [0,0]])
# print(tf.shape(output)) should be (?, 32, 32, 1)
tf文檔的哪個部分對您不清楚? – greeness