Numpy与Pytorch 矩阵操作方式
作者:坩埚上校 时间:2021-11-19 01:10:07
Numpy
随机矩阵: np.random.randn(d0, d1, d2, ...)
矩阵大小与形状: np.ndarray.size 与 np.dnarray.shape
Pytorch
随机矩阵: torch.randn(d0, d1, d2, ...)
添加维度: tensor.unsqueeze(0)
压缩维度: tensor.squeeze(0)
按维度拼接tensor: torch.cat(inputs, dim=0, ...)
维度堆叠: torch.stack(inputs, dim=0)
张量排序索引: tensor.sort(descending=True) 返回一个tensor为排序后的tensor, 一个为index_tensor
矩阵元素夹逼: tensor.clamp()
矩阵切割: torch.chunk(tensor, chunks, dim)
矩阵复制: torch.repeat(*size)
生成零矩阵: torch.torch.zeros(5, 3, dtype=torch.long)
生产同形状的随机矩阵:x = torch.randn_like(x, dtype=torch.float)
矩阵中函数名以'_'结尾的,如:y.add_(x),运算结束后会改变y本身
来源:https://blog.csdn.net/u014134138/article/details/81275139
标签:Numpy,Pytorch,矩阵
0
投稿
猜你喜欢
解决python pandas读取excel中多个不同sheet表格存在的问题
2022-03-12 06:59:33
Pytes正确的配置使用日志功能
2023-07-18 05:51:17
Python 自动化修改word的案例
2021-11-08 21:18:16
Keras 加载已经训练好的模型进行预测操作
2021-07-04 15:15:10
oracle & mysql 多实例启动区别
2011-02-23 12:28:00
关于SQL Server数据库备份和恢复特性介绍
2009-02-19 16:57:00
图文详解Python中模块或py文件导入(超详细!)
2023-01-13 01:41:13
python 通过 pybind11 使用Eigen加速代码的步骤
2021-03-07 06:09:30
Access下如何使用通用对话框
2008-11-20 16:41:00
go格式“占位符”输入输出 类似python的input
2021-04-23 21:32:18
Django使用channels + websocket打造在线聊天室
2022-01-05 11:16:26
Python爬虫谷歌Chrome F12抓包过程原理解析
2022-01-01 15:33:15
在pytorch中计算准确率,召回率和F1值的操作
2022-02-13 18:06:40
Python标准库之sqlite3使用实例
2023-08-12 18:44:05
Windows下MySQL详细安装过程及基本使用
2024-01-27 10:31:16
Qt6.5 grpc组件使用 + golang grpc server示例详解
2024-02-07 21:25:12
pyCharm 设置调试输出窗口中文显示方式(字符码转换)
2022-04-22 00:23:52
ACCESS中Field对象的标题属性
2008-11-20 17:44:00
微信小程序上传图片功能(附后端代码)
2023-07-24 04:21:40
PHP实现数组根据某个字段进行水平合并,横向合并案例分析
2023-10-04 04:55:53