1.2 pytorch的入门使用

Pytorch的入门使用
目标
知道张量和Pytorch中的张量知道pytorch中如何创建张量知道pytorch中tensor的常见方法知道pytorch中tensor的数据类型知道pytorch中如何实现tensor在cpu和cuda中转化
1. 张量Tensor
张量是一个统称,其中包含很多类型:
0阶张量:标量、常数,0-D Tensor1阶张量:向量,1-D Tensor2阶张量:矩阵,2-D Tensor3阶张量…N阶张量
2. Pytorch中创建张量
使用python中的列表或者序列创建tensor torch.tensor([[1., -1.], [1., -1.]])
tensor([[ 1.0000, -1.0000],
[ 1.0000, -1.0000]])
使用numpy中的数组创建tensor torch.tensor(np.array([[1,

1.2 pytorch的入门使用最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/28697.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>