您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關torch中如何使用new()方法,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
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 0x0000028DEB88D330>>>>>>> a = torch.zeros(3,4)>>> a tensor([[0., 0., 0., 0.],[0., 0., 0., 0.],[0., 0., 0., 0.]])>>> a = torch.randn(3,4)>>> 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]])>>> torch.manual_seed(seed=20200910)<torch._C.Generator object at 0x0000028DEB88D330>>>> a = torch.randn(3,4)>>> 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]])>>>>>> a.new(4)tensor([0., 0., 0., 0.])>>>>>> a.new()tensor([])>>>>>> a.new(5,6)tensor([[ 1.8370e+25, 1.4603e-19, 0.0000e+00, 0.0000e+00, 2.1019e-44, 0.0000e+00],[-3.0652e-36, 4.5916e-41, 0.0000e+00, 0.0000e+00, 0.0000e+00, 0.0000e+00],[ 0.0000e+00, 0.0000e+00, 0.0000e+00, 0.0000e+00, 0.0000e+00, 0.0000e+00],[ 0.0000e+00, 0.0000e+00, 0.0000e+00, 0.0000e+00, 5.2751e-11, 0.0000e+00],[ 2.8026e-45, 1.1625e+33, -5.1397e-05, 4.5916e-41, 0.0000e+00, 0.0000e+00]])>>>KeyboardInterrupt>>>KeyboardInterrupt>>>>>>>>> a.new(5,2)tensor([[1.7743e+28, 1.3458e-14],[1.2689e+31, 3.2745e-12],[7.5555e+31, 1.2705e+31],[3.2611e-12, 7.5555e+31],[1.2705e+31, 1.7225e+22]])>>> a.new(3)tensor([0., 0., 0.])>>>>>>
關于torch中如何使用new()方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。