我是靠谱客的博主 安静绿茶,最近开发中收集的这篇文章主要介绍【Pytorch】torch.sort()方法使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

官方文档地址:https://pytorch.org/docs/stable/generated/torch.sort.html?highlight=sort#torch.sort

形式:torch.sort(input, dim=- 1, descending=False, stable=False, *, out=None)

作用:沿给定维度按值升序对输入张量的元素进行排序。如果没有给出 dim,则选择输入的最后一个维度。如果descending 为True,则元素按值降序排序。如果 stable 为 True,则排序例程变得稳定,保持等效元素的顺序。返回 (values, indices) 的命名元组,其中值是排序后的值,索引是原始输入张量中元素的索引。

参数:

  • input (Tensor) – the input tensor.

  • dim (int, optional) – the dimension to sort along

  • descending (bool, optional) – controls the sorting order (ascending or descending)

  • stable (bool, optional) – makes the sorting routine stable, which guarantees that the order of equivalent elements is preserved.

返回值:
out (tuple, optional) – the output tuple of (Tensor, LongTensor) that can be optionally given to be used as output buffers

使用案例如下:

x = torch.randn(3, 4)
sorted, indices = torch.sort(x)
sorted, indices = torch.sort(x, 0)
x = torch.tensor([0, 1] * 9)
x.sort()
x.sort(stable=True)
# torch.return_types.sort(
#    values=tensor([0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1]),
#    indices=tensor([ 0,  2,  4,  6,  8, 10, 12, 14, 16,  1,  3,  5,  7,  9, 11, 13, 15, 17]))

最后

以上就是安静绿茶为你收集整理的【Pytorch】torch.sort()方法使用的全部内容,希望文章能够帮你解决【Pytorch】torch.sort()方法使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(74)

评论列表共有 0 条评论

立即
投稿
返回
顶部