本篇内容主要讲解“Python torch.Tensor.fill_(value)使用的方法是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Python torch.Tensor.fill_(value)使用的方法是什么”吧!
代码实验展示:
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 0x000001FB002DD330>>>> a = torch.randn(3,4)>>> b = a>>> a 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]])>>> b 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]])>>> a.fill_(20200910.0)tensor([[20200910., 20200910., 20200910., 20200910.],[20200910., 20200910., 20200910., 20200910.],[20200910., 20200910., 20200910., 20200910.]])>>> a tensor([[20200910., 20200910., 20200910., 20200910.],[20200910., 20200910., 20200910., 20200910.],[20200910., 20200910., 20200910., 20200910.]])>>> b tensor([[20200910., 20200910., 20200910., 20200910.],[20200910., 20200910., 20200910., 20200910.],[20200910., 20200910., 20200910., 20200910.]])>>>>>>>>>
到此,相信大家对“Python torch.Tensor.fill_(value)使用的方法是什么”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。