Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

Deep CV

[PyTorch] .permute() 차원 순서 바꾸기 본문

딥러닝/PyTorch

[PyTorch] .permute() 차원 순서 바꾸기

Present_Kim 2021. 10. 29. 17:15
x = torch.rand(64, 32, 3)
y = x.permute(2, 0, 1)
y.size()
--->[3, 64, 32]