Convertir la torche en Numpy
your_tensor.numpy()
Magnificent Moth
your_tensor.numpy()
>>> a = numpy.array([1, 2, 3])
>>> t = torch.from_numpy(a)
>>> t
tensor([ 1, 2, 3])
>>> t[0] = -1
>>> a
array([-1, 2, 3])