pytorch tensor张量维度转换

# view()    转换维度
# reshape() 转换维度
# permute() 坐标系变换
# squeeze()/unsqueeze() 降维/升维
# expand()   扩张张量
# narraw()   缩小张量
# resize_()  重设尺寸
# repeat(), unfold() 重复张量
# cat(), stack()     拼接张量

具体见原文:https://blog.csdn.net/x_yan033/article/details/104965077

你可能感兴趣的:(PyTorch)