Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Torch
- nerf
- Depth estimation
- CV
- cs
- Python
- FineGrained
- SSL
- REACT
- Front
- clean code
- ML
- web
- math
- GAN
- algorithm
- Meta Learning
- FGVC
- 머신러닝
- dl
- 3d
- Vision
- nlp
- classification
- pytorch
- 알고리즘
- 딥러닝
- 자료구조
- PRML
- computervision
- Today
- Total
목록Gather (1)
KalelPark's LAB
[Pytorch] torch.gather 코드로 간략하게 이해하기
매번 까먹어서, 다시 다듬어보고자 한다. torch.gather란? 공식문서에 따르면 차원에 해 정해진 축에 따라 값을 모읍니다. import torch t = torch.tensor([[1, 2], [3, 4]]) torch.gather(t, 1, torch.tensor([[0, 0], [1, 0]])) 즉, 차원에 따라 값을 재배치한다고 이해하면 됩니다. * 코드로 한번 더 이해해보도록 하겠습니다. out[i][j][k] = input[index[i][j][k]][j][k] out[i][j][k] = input[i][index[j][k]][k] out[i][j][k] = input[i][j][index[k]] // 위의 값처럼 indexing이 처리되는 것을 알 수 있습니다. Example> imp..
Python/Pytorch
2023. 3. 16. 17:46