您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍“Python的torch.sort()如何使用”,在日常操作中,相信很多人在Python的torch.sort()如何使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Python的torch.sort()如何使用”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
代码实验展示:
Microsoft Windows [版本 10.0.18363.1256](c) 2019 Microsoft Corporation。保留所有权利。 C:\Users\chenxuqi>conda activate ssd4pytorch2_2_0(ssd4pytorch2_2_0) C:\Users\chenxuqi>python Python 3.7.7 (default, May 6 2020, 11:45:54) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32 Type "help", "copyright", "credits" or "license" for more information.>>> import torch>>> torch.manual_seed(seed=20200910)<torch._C.Generator object at 0x00000144A347D330>>>>>>>>>> x = torch.randn(3, 4)>>> x tensor([[ 0.2824, -0.3715, 0.9088, -1.7601],[-0.1806, 2.0937, 1.0406, -1.7651],[ 1.1216, 0.8440, 0.1783, 0.6859]])>>>>>> sorted, indices = torch.sort(x)>>> sortedtensor([[-1.7601, -0.3715, 0.2824, 0.9088],[-1.7651, -0.1806, 1.0406, 2.0937],[ 0.1783, 0.6859, 0.8440, 1.1216]])>>> indices tensor([[3, 1, 0, 2],[3, 0, 2, 1],[2, 3, 1, 0]])>>>>>>>>>>>>>>> sorted, indices = torch.sort(x, 0)>>> sortedtensor([[-0.1806, -0.3715, 0.1783, -1.7651],[ 0.2824, 0.8440, 0.9088, -1.7601],[ 1.1216, 2.0937, 1.0406, 0.6859]])>>> indices tensor([[1, 0, 2, 1],[0, 2, 0, 0],[2, 1, 1, 2]])>>> x tensor([[ 0.2824, -0.3715, 0.9088, -1.7601],[-0.1806, 2.0937, 1.0406, -1.7651],[ 1.1216, 0.8440, 0.1783, 0.6859]])>>>>>>>>>
到此,关于“Python的torch.sort()如何使用”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。