91aaa在线国内观看,亚洲AV午夜福利精品一区二区,久久偷拍人视频,久久播这里有免费视播

<strong id="fvuar"></strong>

  • <sub id="fvuar"><dl id="fvuar"><em id="fvuar"></em></dl></sub>

    1. 千鋒教育-做有情懷、有良心、有品質(zhì)的職業(yè)教育機構(gòu)

      手機站
      千鋒教育

      千鋒學習站 | 隨時隨地免費學

      千鋒教育

      掃一掃進入千鋒手機站

      領(lǐng)取全套視頻
      千鋒教育

      關(guān)注千鋒學習站小程序
      隨時隨地免費學習課程

      當前位置:首頁  >  技術(shù)干貨  > torch.norm函數(shù)詳解

      torch.norm函數(shù)詳解

      來源:千鋒教育
      發(fā)布人:xqq
      時間: 2023-11-23 15:06:51 1700723211

      一、torch.norm函數(shù)

      torch.norm函數(shù)是PyTorch庫中的一個標量計算函數(shù),用于在給定維度上計算輸入張量的范數(shù)(also known as vector length or magnitude)。

      常用的張量范數(shù)有L1范數(shù)和L2范數(shù),torch.norm默認使用L2范數(shù),可以通過norm_type參數(shù)指定L1范數(shù)。

      
      import torch
      
      # 1D Tensor
      a = torch.tensor([1, 2, 3, 4, 5])
      print(torch.norm(a))       # output: tensor(7.4162)
      print(torch.norm(a, 1))    # output: tensor(15.)
      print(torch.norm(a, float('inf'))) # output: tensor(5.)
      
      # 2D Tensor
      b = torch.tensor([[1, 2, 3], [4, 5, 6]])
      print(torch.norm(b))       # output: tensor(9.5394)
      print(torch.norm(b, 1))    # output: tensor(15.)
      print(torch.norm(b, float('inf'))) # output: tensor(15.)
      

      二、torch.normal什么意思

      在PyTorch中,torch.normal函數(shù)用于從給定的均值和標準差中生成指定大小的正態(tài)分布(Gaussian distribution)樣本值的Tensor。

      對于一個mxn的Tensor,輸出的Tensor尺寸為mxn的且每個元素(i,j)都是從N(mean(i,j), std(i,j))中隨機取樣的值。

      
      import torch
      
      # generate 1D tensor with normal distribution
      torch.manual_seed(0)
      mean = torch.zeros(3)
      std = torch.ones(3)
      normal_samples = torch.normal(mean, std)
      print(normal_samples)    # output: tensor([ 1.5410, -0.2934, -2.1788])
      
      # generate 2D tensor with normal distribution
      torch.manual_seed(0)
      mean = torch.zeros(3, 2)
      std = torch.ones(3, 2)
      normal_samples = torch.normal(mean, std)
      print(normal_samples)    # output: tensor([[ 1.5410, -0.2934],
                                              [-2.8200,  0.5285],
                                              [ 0.5802,  0.5422]])
      

      三、torch.normal函數(shù)

      torch.normal函數(shù)的參數(shù)包括:均值mean和標準差std,以及生成隨機數(shù)的張量size。

      
      import torch
      
      mean = torch.arange(1., 5.)
      std = torch.arange(1, 2)
      size = (2, 2)
      
      normal_samples = torch.normal(mean, std, size)
      print(normal_samples)    # output: tensor([[ 1.4611,  1.9118],
                                              [ 2.0693,  4.1555]])
      

      四、torch.norm 兩個張量

      除了norm_type和dim參數(shù),torch.norm還可以針對兩個張量進行計算。

      
      import torch
      
      a = torch.tensor([1, 2, 3])
      b = torch.tensor([4, 5, 6])
      
      # calculate L2 norm of two tensors
      print(torch.norm(a-b, p=2))    # output: tensor(5.1962)
      
      # calculate Frobenius norm of two matrices
      c = torch.tensor([[1, 2], [3, 4]])
      d = torch.tensor([[5, 6], [7, 8]])
      print(torch.norm(c-d))    # output: tensor(8.0000)
      

      五、小結(jié)

      在本文中,我們學習了如何使用torch.norm函數(shù)來計算張量的范數(shù)并了解了其常用的參數(shù)norm_type和dim。此外,我們還介紹了torch.normal函數(shù)用于從正態(tài)分布中生成隨機數(shù)據(jù)的方法。

      tags: torch.normal
      聲明:本站稿件版權(quán)均屬千鋒教育所有,未經(jīng)許可不得擅自轉(zhuǎn)載。
      10年以上業(yè)內(nèi)強師集結(jié),手把手帶你蛻變精英
      請您保持通訊暢通,專屬學習老師24小時內(nèi)將與您1V1溝通
      免費領(lǐng)取
      今日已有369人領(lǐng)取成功
      劉同學 138****2860 剛剛成功領(lǐng)取
      王同學 131****2015 剛剛成功領(lǐng)取
      張同學 133****4652 剛剛成功領(lǐng)取
      李同學 135****8607 剛剛成功領(lǐng)取
      楊同學 132****5667 剛剛成功領(lǐng)取
      岳同學 134****6652 剛剛成功領(lǐng)取
      梁同學 157****2950 剛剛成功領(lǐng)取
      劉同學 189****1015 剛剛成功領(lǐng)取
      張同學 155****4678 剛剛成功領(lǐng)取
      鄒同學 139****2907 剛剛成功領(lǐng)取
      董同學 138****2867 剛剛成功領(lǐng)取
      周同學 136****3602 剛剛成功領(lǐng)取
      相關(guān)推薦HOT