📅  最后修改于: 2022-03-11 14:47:24.584000             🧑  作者: Mango
#Back and forth between torch tensor and numpy
#np --> tensot
torch.from_numpy(your_numpy_array)
#tensor --> np
your_torch_tensor.numpy()