torch的函数contiguous(),view(),permute()

view只是读数组的方式不同

https://blog.csdn.net/york1996/article/details/81949843 介绍view()
view只能用在contiguous的variable上。如果在view之前用了transpose,permute等,需要用contiguous()来返回一个contiguous copy。

what is contiguous

https://blog.csdn.net/appleml/article/details/80143212?utm_source=blogxgwz0

解释view与permute的区别

permute相当于reshape,改变数组的形状

你可能感兴趣的:(pytorch,pytorch)