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
- 알고리즘
- 3d
- REACT
- SSL
- algorithm
- GAN
- nlp
- nerf
- computervision
- Torch
- 자료구조
- Front
- CV
- ML
- Depth estimation
- PRML
- Vision
- math
- cs
- dl
- classification
- 머신러닝
- clean code
- Meta Learning
- 딥러닝
- pytorch
- Python
- FGVC
- web
- FineGrained
- Today
- Total
KalelPark's LAB
[ Pytorch ] meshgrid, cumsum란? 본문
meshgrid
- 각각의 원소가 scalar 또는 1 dimensional vector인 N개의 tensor를 받아, N개의 N dimensional grid를 만듭니다.
i번째 grid는 i번째 input을 다른 input으로 정의된 차원만큼 확장한 것이다.
import torch
x = torch.tensor([1, 2, 3])
y = torch.tensor([4, 5, 6])
grid_x, grid_y = torch.meshgrid(x, y, indexing = "xy")
print(grid_x)
print(grid_y)
>> tensor([[1, 2, 3],
[1, 2, 3],
[1, 2, 3]])
>> tensor([[4, 4, 4],
[5, 5, 5],
[6, 6, 6]])
grid_x, grid_y = torch.meshgrid(x, y, indexing = "ij")
print(grid_x)
print(grid_y)
>> tensor([[1, 1, 1],
[2, 2, 2],
[3, 3, 3]])
>> tensor([[4, 5, 6],
[4, 5, 6],
[4, 5, 6]])
cumsum
- 배열에서 주어진 축에 따라 누적되는 원소들의 누적 합을 계산하는 함수
참고
https://pytorch.org/docs/stable/generated/torch.cumsum.html
https://pytorch.org/docs/stable/generated/torch.meshgrid.html
'Python > Pytorch' 카테고리의 다른 글
[ Pytorch ] Tensor를 나누는 방법들, Split, Chunk란? (0) | 2023.01.25 |
---|---|
[ Pytorch ] Data Sampler & Sequence Bucketing? (0) | 2023.01.24 |
[ Pytorch ] Logsumexp 활용하기 (0) | 2023.01.05 |
[ Pytorch ] Chunk 활용하기 (0) | 2023.01.03 |
[ Pytorch ] register_buffer, register_parameter란? (0) | 2022.12.29 |
Comments