Tensor中的索引和筛选
索引:根据下标选出元素,Tensor类型为int
筛选:根据True/False筛选元素,Tensor类型为Bool
索引保持原维度不变,筛选可能会使维度变小
筛选
1 | import torch |
1 | tensor([[ 1.2588, 0.1620, -0.3095, 2.0669, -0.3158], |
可以看出这是在shape[1]上进行了筛选,False的元素会原地删除
索引
1 | import torch |
1 | tensor([[-1.0592, 0.9445, -0.6265, 0.2607, -0.2166], |
可以看出这是在shape[1]上进行了索引,原维度不变,根据下标取出对应的元素