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
- nlp
- nerf
- Python
- Torch
- pytorch
- dl
- ML
- 자료구조
- math
- Front
- classification
- cs
- FGVC
- SSL
- Vision
- 3d
- FineGrained
- clean code
- web
- CV
- Depth estimation
- 머신러닝
- Meta Learning
- algorithm
- computervision
- 딥러닝
- GAN
- 알고리즘
- REACT
- PRML
- Today
- Total
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>
import torch
t = torch.tensor([[1, 2, 3], [1, 2, 3], [1, 2, 3]])
k = torch.gather(t, 1, torch.tensor([[0, 0, 0], [1, 1, 1], [2, 2, 2]]))
print(k)
tensor([[1, 1, 1],
[2, 2, 2],
[3, 3, 3]])
Reference
https://woongjun-warehouse.tistory.com/48
'Python > Pytorch' 카테고리의 다른 글
[Pytorch] processing time 정확히 측정하기 - torch.cuda.synchronize() (0) | 2023.03.22 |
---|---|
[Pytorch] Multi-GPU 제대로 사용하기 (0) | 2023.03.19 |
[ Pytorch ] Tensor를 나누는 방법들, Split, Chunk란? (0) | 2023.01.25 |
[ Pytorch ] Data Sampler & Sequence Bucketing? (0) | 2023.01.24 |
[ Pytorch ] meshgrid, cumsum란? (0) | 2023.01.23 |
Comments