공식설명은 아래와 같다.
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) 와 동일하다.