在PyTorch中Tensor的查找和筛选例子


Posted in Python onAugust 18, 2019

本文源码基于版本1.0,交互界面基于0.4.1

import torch

按照指定轴上的坐标进行过滤

index_select()

沿着某tensor的一个轴dim筛选若干个坐标

>>> x = torch.randn(3, 4) # 目标矩阵
>>> x
tensor([[ 0.1427, 0.0231, -0.5414, -1.0009],
    [-0.4664, 0.2647, -0.1228, -1.1068],
    [-1.1734, -0.6571, 0.7230, -0.6004]])
>>> indices = torch.tensor([0, 2]) # 在轴上筛选坐标
>>> torch.index_select(x, dim=0, indices) # 指定筛选对象、轴、筛选坐标
tensor([[ 0.1427, 0.0231, -0.5414, -1.0009],
    [-1.1734, -0.6571, 0.7230, -0.6004]])
>>> torch.index_select(x, dim=1, indices)
tensor([[ 0.1427, -0.5414],
    [-0.4664, -0.1228],
    [-1.1734, 0.7230]])

where()

用于将两个broadcastable的tensor组合成新的tensor,类似于c++中的三元操作符“?:”

>>> x = torch.randn(3, 2)
>>> y = torch.ones(3, 2)
>>> torch.where(x > 0, x, y)
tensor([[1.4013, 1.0000],
    [1.0000, 0.9267],
    [1.0000, 0.4302]])
>>> x
tensor([[ 1.4013, -0.9960],
    [-0.3715, 0.9267],
    [-0.7163, 0.4302]])

指定条件返回01-tensor

>>> x = torch.arange(5)  
>>> x
tensor([0, 1, 2, 3, 4])
>>> torch.gt(x,1) # 大于
tensor([0, 0, 1, 1, 1], dtype=torch.uint8)
>>> x>1   # 大于
tensor([0, 0, 1, 1, 1], dtype=torch.uint8)
>>> torch.ne(x,1) # 不等于
tensor([1, 0, 1, 1, 1], dtype=torch.uint8)
>>> x!=1  # 不等于
tensor([1, 0, 1, 1, 1], dtype=torch.uint8)
>>> torch.lt(x,3) # 小于
tensor([1, 1, 1, 0, 0], dtype=torch.uint8)
>>> x<3   # 小于
tensor([1, 1, 1, 0, 0], dtype=torch.uint8)
>>> torch.eq(x,3) # 等于
tensor([0, 0, 0, 1, 0], dtype=torch.uint8)
>>> x==3  # 等于
tensor([0, 0, 0, 1, 0], dtype=torch.uint8)

返回索引

>>> x = torch.arange(5)
>>> x  # 1维
tensor([0, 1, 2, 3, 4])
>>> torch.nonzero(x)
tensor([[1],
    [2],
    [3],
    [4]])
>>> x = torch.Tensor([[0.6, 0.0, 0.0, 0.0],[0.0, 0.4, 0.0, 0.0],[0.0, 0.0, 1.2, 0.0],[0.0, 0.0, 0.0,-0.4]])
>>> x  # 2维
tensor([[ 0.6000, 0.0000, 0.0000, 0.0000],
    [ 0.0000, 0.4000, 0.0000, 0.0000],
    [ 0.0000, 0.0000, 1.2000, 0.0000],
    [ 0.0000, 0.0000, 0.0000, -0.4000]])
>>> torch.nonzero(x)
tensor([[0, 0],
    [1, 1],
    [2, 2],
    [3, 3]])

借助nonzero()我们可以返回符合某一条件的index(https://stackoverflow.com/questions/47863001/how-pytorch-tensor-get-the-index-of-specific-value)

>>> x=torch.arange(12).view(3,4)
>>> x
tensor([[ 0, 1, 2, 3],
    [ 4, 5, 6, 7],
    [ 8, 9, 10, 11]])
>>> (x>4).nonzero()
tensor([[1, 1],
    [1, 2],
    [1, 3],
    [2, 0],
    [2, 1],
    [2, 2],
    [2, 3]])

以上这篇在PyTorch中Tensor的查找和筛选例子就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
在python中的socket模块使用代理实例
May 29 Python
Python中time模块与datetime模块在使用中的不同之处
Nov 24 Python
python 实现对数据集的归一化的方法(0-1之间)
Jul 17 Python
Django中使用第三方登录的示例代码
Aug 20 Python
django session完成状态保持的方法
Nov 27 Python
Python 利用pydub库操作音频文件的方法
Jan 09 Python
Python数据报表之Excel操作模块用法分析
Mar 11 Python
如何利用Anaconda配置简单的Python环境
Jun 24 Python
Tensorflow 实现将图像与标签数据转化为tfRecord文件
Feb 17 Python
如何把外网python虚拟环境迁移到内网
May 18 Python
python进度条显示之tqmd模块
Aug 22 Python
用Python自动清理电脑内重复文件,只要10行代码(自动脚本)
Jan 09 Python
对Pytorch神经网络初始化kaiming分布详解
Aug 18 #Python
pytorch中的embedding词向量的使用方法
Aug 18 #Python
Pytorch加载部分预训练模型的参数实例
Aug 18 #Python
在pytorch中查看可训练参数的例子
Aug 18 #Python
浅析PyTorch中nn.Module的使用
Aug 18 #Python
关于PyTorch 自动求导机制详解
Aug 18 #Python
pytorch神经网络之卷积层与全连接层参数的设置方法
Aug 18 #Python
You might like
Zend Guard一些常见问题解答
2008/09/11 PHP
基于PHP创建Cookie数组的详解
2013/07/03 PHP
Linux下快速搭建php开发环境
2017/03/13 PHP
PHP实现一个按钮点击上传多个图片操作示例
2020/01/23 PHP
js客户端快捷键管理类的较完整实现和应用
2010/06/08 Javascript
JavaScript学习笔记之数组求和方法
2016/03/23 Javascript
JS实现鼠标框选效果完整实例
2016/06/20 Javascript
又一款js时钟!transform实现时钟效果
2016/08/15 Javascript
jquery插件锦集【推荐】
2016/12/16 Javascript
js 博客内容进度插件详解
2017/02/19 Javascript
JavaScript实现无穷滚动加载数据
2017/05/06 Javascript
Javascript中的async awai的用法
2017/05/17 Javascript
VUE 实现动态给对象增加属性,并触发视图更新操作示例
2019/11/29 Javascript
Python3.x和Python2.x的区别介绍
2013/02/12 Python
python基于mysql实现的简单队列以及跨进程锁实例详解
2014/07/07 Python
python查看FTP是否能连接成功的方法
2015/07/30 Python
Python实现多并发访问网站功能示例
2017/06/19 Python
python flask 多对多表查询功能
2017/06/25 Python
Python中的heapq模块源码详析
2019/01/08 Python
Python 按字典dict的键排序,并取出相应的键值放于list中的实例
2019/02/12 Python
django框架自定义模板标签(template tag)操作示例
2019/06/24 Python
python 整数越界问题详解
2019/06/27 Python
python实现淘宝购物系统
2019/10/25 Python
详解使用postMessage解决iframe跨域通信问题
2019/11/01 HTML / CSS
HTML5中在title标题标签里设置小图标的方法
2020/06/23 HTML / CSS
机械工程师的岗位职责
2013/11/17 职场文书
信息技术专业个人自我评价
2013/12/11 职场文书
学校安全防火方案
2014/06/07 职场文书
班级心理活动总结
2014/07/04 职场文书
励志演讲稿600字
2014/08/21 职场文书
中职三好学生事迹材料
2014/08/24 职场文书
八项规定整改方案
2014/10/01 职场文书
应届毕业生求职信范文
2015/03/19 职场文书
股东出资协议书
2016/03/21 职场文书
如何使用PostgreSQL进行中文全文检索
2021/05/27 PostgreSQL
SQL实现LeetCode(180.连续的数字)
2021/08/04 MySQL