首页 > 其他分享 >np.pad的解释

np.pad的解释

时间:2022-12-24 13:34:33浏览次数:39  
标签:11 解释 12 constant 10 pad np

np.pad就是把x的上下左右都补上维。 import numpy as np x=np.arange(12).reshape((3,4)) x=np.pad(x, [(2, 2), (2, 2)], mode='constant') print(x)

[[ 0 0 0 0 0 0 0 0]
[ 0 0 0 0 0 0 0 0]
[ 0 0 0 1 2 3 0 0]
[ 0 0 4 5 6 7 0 0]
[ 0 0 8 9 10 11 0 0]
[ 0 0 0 0 0 0 0 0]
[ 0 0 0 0 0 0 0 0]]

标签:11,解释,12,constant,10,pad,np
From: https://www.cnblogs.com/hahaah/p/17002794.html

相关文章