import torch a = torch.randn(3, 3) b = a.sort(0, True)[0] c = a.sort(0, True)[1] print(a) print(b) print(c)
时间: 2023-04-10 15:04:28 浏览: 104
浅谈pytorch中torch.max和F.softmax函数的维度解释
5星 · 资源好评率100%
这段代码使用了 PyTorch 库,首先创建了一个 3x3 的张量 a,然后使用 sort 函数对 a 进行排序,sort 函数的第一个参数表示按哪个维度排序,第二个参数表示是否降序排列。sort 函数返回两个张量,第一个张量是排序后的结果,第二个张量是排序后每个元素在原张量中的下标。最后打印出 a、b、c 三个张量的值。
阅读全文