반응형
UserWarning: __floordiv__ is deprecated, and its behavior will change in a future version of pytorch. It currently rounds toward 0 (like the 'trunc' function NOT 'floor'). This results in incorrect rounding for negative values. To keep the current behavior, use torch.div(a, b, rounding_mode='trunc'), or for actual floor division, use torch.div(a, b, rounding_mode='floor').
텐서사이의 나눗셈을 할 때, 다음과 같은 코드에서 나는 오류
coords = coords // tensor_stride
예를들어 이런 코드에서 다음과 같이 바꿔주면 된다.
coords = torch.div(coords, tensor_stride, rounding_mode='floor')
반응형
댓글