【pytorch学习笔记2021.10.20】numpy与torch相互转换

numpy->torch

torch_data = torch.from_numpy(np_data)

torch->numpy

np_data = torch_data.numpy()

实例: 

import torch
import numpy as np

np_data = np.arange(6).reshape((2, 3))
torch_data = torch.from_numpy(np_data)
np_data_2 = torch_data.numpy()

print("np_data:\n", np_data)
print("torch_data:\n", torch_data)
print("np_data_2:\n", np_data_2)

 运行结果:

np_data:
 [[0 1 2]
 [3 4 5]]
torch_data:
 tensor([[0, 1, 2],
        [3, 4, 5]], dtype=torch.int32)
np_data_2:
 [[0 1 2]
 [3 4 5]]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值