使用tf.pad()填充MNIST数据集

时间:2017-10-19 21:33:33

标签: python-3.x tensorflow tensorflow-datasets

如何使用(?,28,28,1)填充大小为tf.pad()的MNIST数据集图像,并在张量流中将其设为(?,32,32,1)

1 个答案:

答案 0 :(得分:0)

这取决于你打算如何填充它。例如:

# 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)