机器学习 - PyTorch里的aggregation

在PyTorch里,可以在tensor里找到min, max, mean, sum 等aggregation值。

直接上代码

import torch x = torch.arange(0, 100, 10)
print(x)
print(f"Minimum: {x.min()}")
print(f"Minimum: {torch.min(x)}")
print(f"Maximum: {x.max()}")
print(f"Maximum: {torch.max(x)}")
print(f"Mean: {x.type(torch.float32).mean()}")
print(f"Mean: {torch.mean(x.type(torch.float32))}")
print(f"Sum: {x.sum()}")
print(f"Sum: {torch.sum(x)}")# 结果如下
tensor([ 0, 10, 20, 30, 40, 50, 60, 70, 80, 90])
Minimum: 0
Minimum: 0
Maximum: 90
Maximum: 90
Mean: 45.0
Mean: 45.0
Sum: 450
Sum: 450

可以在tensor里找到最大值和最小值的位置,用到 torch.argmax()torch.argmin()

print(f"Index where max value occurs: {x.argmax()}")
print(f"Index where min value occurs: {x.argmin()}")# 结果如下
Index where max value occurs: 9
Index where min value occurs: 0

在深度学习中,会经常出现的问题是tensor的数据类型不对。如果一个tensor的数据类型是 torch.float64 ,而另一个tensor的数据类型是 torch.float32,运行起来就出错了。
要改变tensor的数据类型,可以使用 torch.Tensor.type(dtype=None) 其中的 dtype 参数是你想用的数据类型。

代码如下:

tensor = torch.arange(10., 100., 10.)
print(tensor.dtype)
tensor_float16 = tensor.type(torch.float16)
print(tensor_float16)
tensor_int8 = tensor.type(torch.int8)
print(tensor_int8)# 输出
torch.float32
tensor([10., 20., 30., 40., 50., 60., 70., 80., 90.], dtype=torch.float16)
tensor([10, 20, 30, 40, 50, 60, 70, 80, 90], dtype=torch.int8)

偶尔我们要将tensor的维度进行reshape, stack, squeeze, and unsqueeze。

MethodOne-line description
torch.reshape(input, shape)Reshapes input to shape (if compatible), can also use torch.Tensor.reshape()
Tensor.view(shape)Returns a view of the original tensor in a different shape but shares the same data as the original tensor
torch.stack(tensors, dim=0)Concatenates a sequence of tensors along a new dimension (dim), all tensors must be same size
torch.squeeze(input)Squeezes input to remove all the dimensions with value 1
torch.unsqueeze(input, dim)Returns input with a dimension value of 1 added at dim
torch.permute(input, dims)Returns a view of the original input with its dimensions permuted (rearranged) to dims

代码例子

x = torch.arange(1., 8.)
print(f"x: {x}")
print(f"x.shape: {x.shape}")x_reshaped = x.reshape(1, 7)
print(f"x_reshaped: {x_reshaped}")
print(f"x_reshaped.shape: {x_reshaped.shape}")z = x.view(1, 7)
print(f"z: {z}")
print(f"z.shape: {z.shape}")# changing z changes x
z[:, 1] = 5
print(f"z: {z}")
print(f"x: {x}")# Stack tensors on top of each other
x_stacked = torch.stack([x, x, x, x], dim=0)
print(f"x_stack: {x_stacked}")# Remove extra dimension from x_reshaped
x_squeezed = x_reshaped.squeeze()
print(f"New tensor: {x_squeezed}")
print(f"New shape: {x_squeezed.shape}")# Add an extra dimension with unsqueeze
x_unsqueezed = x_squeezed.unsqueeze(dim=0)
print(f"\nNew tensor unsqueezed: {x_unsqueezed}")
print(f"New shape unsqueezed: {x_unsqueezed.shape}")x_original = torch.rand(size=(224, 224, 3)) # index[0] = 224, index[1] = 224, index[2] = 3
x_permuted = x_original.permute(2, 0, 1)  # 2 对应 3,0 对应 224, 1 对应 224
print(f"x_permuted: {x_permuted}")
print(f"Previous shape: {x_original.shape}")
print(f"New shape: {x_permuted.shape}")

结果如下:

x: tensor([1., 2., 3., 4., 5., 6., 7.])
x.shape: torch.Size([7])
x_reshaped: tensor([[1., 2., 3., 4., 5., 6., 7.]])
x_reshaped.shape: torch.Size([1, 7])
z: tensor([[1., 2., 3., 4., 5., 6., 7.]])
z.shape: torch.Size([1, 7])
z: tensor([[1., 5., 3., 4., 5., 6., 7.]])
x: tensor([1., 5., 3., 4., 5., 6., 7.])
x_stack: tensor([[1., 5., 3., 4., 5., 6., 7.],[1., 5., 3., 4., 5., 6., 7.],[1., 5., 3., 4., 5., 6., 7.],[1., 5., 3., 4., 5., 6., 7.]])
New tensor: tensor([1., 5., 3., 4., 5., 6., 7.])
New shape: torch.Size([7])New tensor unsqueezed: tensor([[1., 5., 3., 4., 5., 6., 7.]])
New shape unsqueezed: torch.Size([1, 7])
x_permuted: tensor([[[0.3225, 0.8588, 0.1680,  ..., 0.0337, 0.5035, 0.5198],[0.8601, 0.8189, 0.3540,  ..., 0.1257, 0.7823, 0.3571],[0.6149, 0.8713, 0.3548,  ..., 0.2796, 0.6624, 0.9844],...,[0.6460, 0.5896, 0.6126,  ..., 0.6501, 0.2514, 0.2283],[0.7159, 0.3523, 0.6296,  ..., 0.4082, 0.5447, 0.5778],[0.2686, 0.9415, 0.7950,  ..., 0.0317, 0.6215, 0.4071]],[[0.9712, 0.8914, 0.0946,  ..., 0.7424, 0.7330, 0.5440],[0.1387, 0.5177, 0.2111,  ..., 0.4829, 0.2734, 0.2656],[0.2806, 0.8434, 0.4510,  ..., 0.2843, 0.2676, 0.0669],...,[0.8408, 0.8022, 0.8112,  ..., 0.7236, 0.3939, 0.8946],[0.9174, 0.6701, 0.5786,  ..., 0.1829, 0.7117, 0.5937],[0.3836, 0.1485, 0.7292,  ..., 0.2435, 0.5428, 0.8280]],[[0.9295, 0.9307, 0.9878,  ..., 0.1073, 0.8325, 0.4217],[0.0976, 0.2211, 0.1686,  ..., 0.6174, 0.0807, 0.1583],[0.7492, 0.9756, 0.6296,  ..., 0.0263, 0.0264, 0.7566],...,[0.6900, 0.5780, 0.3770,  ..., 0.6371, 0.4390, 0.3228],[0.8862, 0.4170, 0.3777,  ..., 0.0735, 0.0238, 0.2450],[0.8991, 0.6936, 0.9514,  ..., 0.7649, 0.4279, 0.3810]]])
Previous shape: torch.Size([224, 224, 3])
New shape: torch.Size([3, 224, 224])

看到这里了,给个赞呗~

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/757552.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Spring Boot:筑基

Spring Boot 前言概述使用 Intellij idea 快速创建 Spring Boot 项目注意事项 前言 在学习 Spring 、SpringMVC 、MyBatis 和 JPA 框架的过程中,了解到 SSM 框架为 Java Web 开发提供了强大的后端支持,JPA 框架则简化了数据库的操作。然而,S…

安卓面试题多线程36-40

36. 请问什么是锁消除和锁粗化?(1)锁消除 所消除就是虚拟机根据一个对象是否真正存在同步情况,若不存在同步情况,则对该对象的访问无需经过加锁解锁的操作。 比如StringBuffer的append方法,因为append方法需要判断对象是否被占用,而如果代码不存在锁竞争,那么这部分的性…

Cesium:按行列绘制3DTiles的等分线

作者:CSDN @ _乐多_ 本文将介绍如何使用 Cesium 引擎根据模型的中心坐标,半轴信息,绘制 3DTiles 对象的外包盒等分线。 外包盒是一个定向包围盒(Oriented Bounding Box),它由一个中心点(center)和一个包含半轴(halfAxes)组成。半轴由一个3x3的矩阵表示,这个矩阵是…

算法第三十一天-区域和检索【数组不可变】

区域和检索-数组不可变 题目要求 解题思路 为方便描述,把 n u m s nums nums 记作 a a a。 对于数组 a a a,定义它的前缀和 s [ 0 ] 0 s [ 1 ] a [ 0 ] s [ 2 ] a [ 0 ] a [ 1 ] ⋮ s [ i ] a [ 0 ] a [ 1 ] ⋯ a [ i − 1 ] ∑ j 0 i −…

matplotlib使用总结1

matplotlib 是一个用于创建静态、动态和交云图的 Python 绘图库。它可以用于 Python 脚本、Python 和 IPython shell、Jupyter 笔记本、web 应用服务器以及四个图形用户界面工具包中。matplotlib 尝试让简单的事情更简单,让困难的事情成为可能。你可以生成线图、柱状…

借记卡年费和小额账户管理费,以及换卡面不换号

文章目录 年费和小额账户管理费减免政策:每家银行均可有一张借记卡享受双免政策减免政策:代发工资、低保、社保、医保、失业保险、养老金、退休金、住房公积金等账户减免政策:二、三类电子账户一类卡、二类卡和三类卡二、三类电子账户不收取年…

Rust字符串深入理解

一、概述 Rust是一种系统级语言,进行操作系统等底层应用开发,同时又具合理的抽象处理能力。在进行Rust编程时,字符串处理是程序员经常碰到的工作。本文深入解析Rust语言中字符串的使用,包括 static string,String与&a…

LeetCode 2578.最小和分割

给你一个正整数 num ,请你将它分割成两个非负整数 num1 和 num2 ,满足: num1 和 num2 直接连起来,得到 num 各数位的一个排列。 换句话说,num1 和 num2 中所有数字出现的次数之和等于 num 中所有数字出现的次数。 num…

x86 32 64 Arm这些听过但不懂,都是什么?是架构还是系统?一文梳理

x86 听过吗?64位操作系统知道吧 和x86什么关系32和64都是什么东西?曾经的我也一头雾水,今天我才来整理一下,惭愧惭愧!今天带着沉重的心情来梳理一下学习内容吧 如果你很熟悉很了解计算机的话,应该知道&…

深度分析:社科赛斯——穿越市场周期二十二年的考研机构

近日,一份由有关部门发布的统计数据引发了广泛关注:在中国,中小企业的平均寿命仅有3.7年,而小微企业更是不到3年。这一数字凸显了中小企业所面临的挑战与困境。然而,在这个充满风险与变化的商业环境中,社科…

pytorch 鲜见操作

对两个 tensor 做逻辑运算,比如 & (与) import torch# 定义两个张量 tensor_a torch.tensor([1, 0, 1, 0], dtypetorch.bool) tensor_b torch.tensor([1, 1, 0, 0], dtypetorch.bool)# 执行逻辑与操作 result tensor_a & tensor_bprint(result)结果输出…

U-Net代码复现–train.py

本文记录自己的学习过程,内容包括: 代码解读:Pytorch-UNet 深度学习编程基础:Pytorch-深度学习(新手友好) UNet论文解读:医学图像分割:U_Net 论文阅读 数据:https://hack…

中霖教育:二级建造师证书好考吗?

在建筑行业,二级建造师资格认证相较于一级建造师资格,难度会低一些。考试科目共有三科,考生需要在连续两个年度内通过所有科目的考试才为通过。 对于具备建筑相关基础和实践经验的考生来说,二级建造师的考试难度会低一些。根据往…

云扩展要求(云租户)

层面控制点四级三级二级安全 区域 边界访问控制应在虚拟化网络边界部署访问控制机制,并设置访问控制规则;应在虚拟化网络边界部署访问控制机制,并设置访问控制规则;应在虚拟化网络边界部署访问控制机制,并设置访问控制…

30天拿下Rust之错误处理

概述 在软件开发领域,对错误的妥善处理是保证程序稳定性和健壮性的重要环节。Rust作为一种系统级编程语言,以其对内存安全和所有权的独特设计而著称,其错误处理机制同样体现了Rust的严谨与实用。在Rust中,错误处理通常分为两大类&…

KUKA机器人自动回原点程序

一、创建全局变量点 创建两个全局变量分别用于储存机器人的笛卡尔姿态与关节角姿态。 打开System文件夹中的config文件创建全局变量的点位。 在USER GROBALS用户自定义变量Userdefined variables下创建一个E6POS类型的点位,一个E6AXIS类型的点位。 二、创建回原点…

webRtc麦克风摄像头检测

最近在做webRtc相关音视频项目&#xff0c;碰到了很多用户不知道自己设备是否被支持发起webRtc&#xff0c;所以特意总结相关实用方法&#xff1b; HTML /*id方便一会把媒体流赋值过去, autoPlay: 自动播放 */ <audio id"devDetectionMicroRef" autoPlay><…

基于SpringBoot+Vue交通管理在线服务系统的开发(源码+部署说明+演示视频+源码介绍)

您好&#xff0c;我是码农飞哥&#xff08;wei158556&#xff09;&#xff0c;感谢您阅读本文&#xff0c;欢迎一键三连哦。&#x1f4aa;&#x1f3fb; 1. Python基础专栏&#xff0c;基础知识一网打尽&#xff0c;9.9元买不了吃亏&#xff0c;买不了上当。 Python从入门到精通…

经典面试智力题总结

常见面试智力题总结 本部分主要是笔者在练习常见面试智力题所做的笔记&#xff0c;如果出现错误&#xff0c;希望大家指出&#xff01; 常见智力题 时针与分针夹角度数问题&#xff1f; 分析&#xff1a; 当时间为 m 点 n 分时&#xff0c;其时针与分针夹角的度数为多少&…

React状态管理Mobx

1 https://zh.mobx.js.org/README.html 2 https://juejin.cn/post/7046710251382374413 3 https://cn.mobx.js.org/refguide/observable.html ​​mobx入门基础教程-慕课网​​ ​​Mobx学习 - 掘金​​ 十分钟入门 MobX & React ​​十分钟入门 MobX & React​​…