RuntimeError: Integer division of tensors using div or / is no longer supported, and in a future release div will perform true division as in Python 3. Use true_divide or floor_divide (// in Python) instead.

对于tensor A和整数n之间的除法:

result = A / n # not supported in torch 1.6.0
solution
result = torch.true_divide(A, n)