怎么把torch.tensor转成numpy ndarray?
2个回答
torch转np:np_data = torch_data.numpy()
np转torch:torch_data = torch.from_numpy(np_data)
SofaSofa数据科学社区DS面试题库 DS面经怎么把torch.tensor转成numpy ndarray?
torch转np:np_data = torch_data.numpy()
np转torch:torch_data = torch.from_numpy(np_data)
SofaSofa数据科学社区DS面试题库 DS面经