1. #Tensor索引操作
  2. '''''
  3. Tensor支持与numpy.ndarray类似的索引操作,语法上也类似
  4. 如无特殊说明,索引出来的结果与原tensor共享内存,即修改一个,另一个会跟着修改
  5. '''
  6. import torch as t
  7. a = t.randn(3,4)
  8. '''''tensor([[ 0.1986,  0.1809,  1.4662,  0.6693],
  9. [-0.8837, -0.0196, -1.0380,  0.2927],
  10. [-1.1032, -0.2637, -1.4972,  1.8135]])'''
  11. print(a[0])         #第0行
  12. '''''tensor([0.1986, 0.1809, 1.4662, 0.6693])'''
  13. print(a[:,0])       #第0列
  14. '''''tensor([ 0.1986, -0.8837, -1.1032])'''
  15. print(a[0][2])      #第0行第2个元素,等价于a[0,2]
  16. '''''tensor(1.4662)'''
  17. print(a[0][-1])     #第0行最后一个元素
  18. '''''tensor(0.6693)'''
  19. print(a[:2,0:2])    #前两行,第0,1列
  20. '''''tensor([[ 0.1986,  0.1809],
  21. [-0.8837, -0.0196]])'''
  22. print(a[0:1,:2])    #第0行,前两列
  23. '''''tensor([[0.1986, 0.1809]])'''
  24. print(a[0,:2])      #注意两者的区别,形状不同
  25. '''''tensor([0.1986, 0.1809])'''
  26. print(a>1)
  27. '''''tensor([[0, 0, 1, 0],
  28. [0, 0, 0, 0],
  29. [0, 0, 0, 1]], dtype=torch.uint8)'''
  30. print(a[a>1])        #等价于a.masked_select(a>1),选择结果与原tensor不共享内存空间
  31. print(a.masked_select(a>1))
  32. '''''tensor([1.4662, 1.8135])
  33. tensor([1.4662, 1.8135])'''
  34. print(a[t.LongTensor([0,1])])
  35. '''''tensor([[ 0.1986,  0.1809,  1.4662,  0.6693],
  36. [-0.8837, -0.0196, -1.0380,  0.2927]])'''
  37. '''''
  38. 常用的选择函数
  39. index_select(input,dim,index)   在指定维度dim上选取,列如选择某些列、某些行
  40. masked_select(input,mask)       例子如上,a[a>0],使用ByteTensor进行选取
  41. non_zero(input)                 非0元素的下标
  42. gather(input,dim,index)         根据index,在dim维度上选取数据,输出size与index一样
  43. gather是一个比较复杂的操作,对一个二维tensor,输出的每个元素如下:
  44. out[i][j] = input[index[i][j]][j]   #dim = 0
  45. out[i][j] = input[i][index[i][j]]   #dim = 1
  46. '''
  47. b = t.arange(0,16).view(4,4)
  48. '''''tensor([[ 0,  1,  2,  3],
  49. [ 4,  5,  6,  7],
  50. [ 8,  9, 10, 11],
  51. [12, 13, 14, 15]])'''
  52. index = t.LongTensor([[0,1,2,3]])
  53. print(b.gather(0,index))            #取对角线元素
  54. '''''tensor([[ 0,  5, 10, 15]])'''
  55. index = t.LongTensor([[3,2,1,0]]).t()       #取反对角线上的元素
  56. print(b.gather(1,index))
  57. '''''tensor([[ 3],
  58. [ 6],
  59. [ 9],
  60. [12]])'''
  61. index = t.LongTensor([[3,2,1,0]])           #取反对角线的元素,与上面不同
  62. print(b.gather(0,index))
  63. '''''tensor([[12,  9,  6,  3]])'''
  64. index = t.LongTensor([[0,1,2,3],[3,2,1,0]]).t()
  65. print(b.gather(1,index))
  66. '''''tensor([[ 0,  3],
  67. [ 5,  6],
  68. [10,  9],
  69. [15, 12]])'''
  70. '''''
  71. 与gather相对应的逆操作是scatter_,gather把数据从input中按index取出,而
  72. scatter_是把取出的数据再放回去,scatter_函数时inplace操作
  73. out = input.gather(dim,index)
  74. out = Tensor()
  75. out.scatter_(dim,index)
  76. '''
  77. x = t.rand(2, 5)
  78. print(x)
  79. c = t.zeros(3, 5).scatter_(0, t.LongTensor([[0, 1, 2, 0, 0], [2, 0, 0, 1, 2]]), x)
  80. print(c)
  81. 2018-10-23 20:30:30

Tensor索引操作的更多相关文章

  1. Pytorch Tensor 常用操作

    https://pytorch.org/docs/stable/tensors.html dtype: tessor的数据类型,总共有8种数据类型,其中默认的类型是torch.FloatTensor, ...

  2. pytorch(03)tensor的操作

    张量操作 一.张量的拼接 torch.cat() 功能:将张量按维度dim进行拼接,且[不会扩张张量的维度] tensors:张量序列 dim:要拼接的维度 torch.cat(tensors, di ...

  3. Mongodb学习笔记三(Mongodb索引操作及性能测试)

    第三章 索引操作及性能测试 索引在大数据下的重要性就不多说了 下面测试中用到了mongodb的一个客户端工具Robomongo,大家可以在网上选择下载.官网下载地址:http://www.robomo ...

  4. Elasticsearch-PHP 索引操作(转)

    索引操作 本节通过客户端来介绍一下索引API的各种操作.索引操作包含任何管理索引本身(例如,创建索引,删除索引,更改映射等等). 我们通过一些常见的操作的代码片段来介绍,然后在表格中列出剩下的方法.R ...

  5. ElasticSearch+Kibana 索引操作

    ElasticSearch+Kibana 索引操作 一 前言 ElasticiSearch 简介 ElasticSearch是一个基于Lucene的搜索服务器.它提供了一个分布式多用户能力的全文搜索引 ...

  6. Mysql之表的操作与索引操作

    表的操作: 1.表的创建: create table if not exists table_name(字段定义); 例子: create table if not exists user(id in ...

  7. 3.Lucene3.x API分析,Director 索引操作目录,Document,分词器

     1  Lucene卡发包结构分析 包名 功能 org.apache.lucene.analysis Analysis提供自带的各种Analyzer org.apache.lucene.colla ...

  8. SQL Server死锁诊断--同一行数据在不同索引操作下引起的死锁

    死锁概述 对于数据库中出现的死锁,通俗地解释就是:不同Session(会话)持有一部分资源,并且同时相互排他性地申请对方持有的资源,然后双方都得不到自己想要的资源,从而造成的一种僵持的现象.当然,在任 ...

  9. 获取列表的索引操作:enumerate

    通过循环获取列表的索引操作: 主要使用:enumerate product_list = [['Iphone7',5800], ['Coffee',30], ['疙瘩汤',10], ['Python ...

随机推荐

  1. L1-Day12

    1.凡是杀不死你的都会让你变得更强.(什么关系?主语是什么?)[我的翻译]There is no killing you makes you stronger.[标准答案]What doesn’t k ...

  2. 2019年最受欢迎IMX6系列开发板,资料全开源,助力产品研发不在话下

    迅为IMX6开发板: Android4.4系统  Linux + Qt5.7系统  Ubuntu12.04系统 部分真实案例:HMI:3D打印机:医疗设备:工控机:触控一体机:车载终端 板载:4G全网 ...

  3. 防盗链之URL参数签名

    一.概述 传统的 IP 禁用.referer 防盗链.User-Agent 防盗链.地区访问控制等防盗链措施已经无法完全满足用户要求,所以开发出URL参数签名方式来防盗链 二.实现 Token防盗链是 ...

  4. sql 常见错误总结

    1.根据一张表更新另一张表的数据. . 写法轻松,更新效率高: update table1 set field1=table2.field1, field2=table2.field2 from ta ...

  5. linux系统下完全卸载Jenkins

    1.关闭tomcat:./shutdown.sh 2.删除/webapps/jenkins下所有文件:rm -rf jenkins 3.删除配置文件:rm -rf /root/.jenkins/

  6. Grunt 实战

    专题截图:(注:这个截图没啥意义) 项目截图: 目录讲解: app/        //开发目录; c/     //开发编译完成css文件夹; i/     //开发img文件夹; j/     / ...

  7. Jmeter JDBC Connection Configuration 链接失败,提示Error preloading the connection pool

    修改数据配置的连接数即可:修改为小一点 下面是oracle 配置连接的方式

  8. 有关js获取屏幕宽度问题

    offsetWidth是指包括滚动条的部分,而document.documentElement.clientWidth是去除滚动条的部分,所以这两个值是不一样的.

  9. linux安装lamp环境(linux+apache+mysql+php)

    源码安装 本次使用 Centos7.2 MySQL5.7.22 Apache2.4.37 PHP5.6.38 安装Apache 安装httpd和所需依赖:gcc, apr, apr-util,apr- ...

  10. Python判断输入字符类型

    """从键盘上输入 一个字符,判断其字符类型.""" while True: char = input("请输入需要判断的字符:& ...