torch.full_like

J·2021년 6월 14일
0

pytorch

목록 보기
12/23

torch.full_like

공식설명은 아래와 같다.

Returns a tensor with the same size as input filled with fill_value. torch.full_like(input, fill_value) is equivalent to torch.full(input.size(), fill_value, dtype=input.dtype, layout=input.layout, device=input.device).

input과 같은 size, fill_value와 같은 값으로 채워진 tensor를 반환한다. 이것은 torch.full(input.size(), fill_value, dtype=input.dtype, layout=input.layout, device=input.device) 와 동일하다.

Reference

  1. https://pytorch.org/docs/stable/generated/torch.full_like.html
profile
I'm interested in processing video&images with deeplearning and solving problem in our lives.

0개의 댓글