亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

pytorch中Parameter函數怎么使用

發布時間:2022-02-07 15:20:42 來源:億速云 閱讀:293 作者:iii 欄目:開發技術

這篇文章主要介紹了pytorch中Parameter函數怎么使用的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇pytorch中Parameter函數怎么使用文章都會有所收獲,下面我們一起來看看吧。

用法介紹

pytorch中的Parameter函數可以對某個張量進行參數化。它可以將不可訓練的張量轉化為可訓練的參數類型,同時將轉化后的張量綁定到模型可訓練參數的列表中,當更新模型的參數時一并將其更新。

torch.nn.parameter.Parameter

  • data (Tensor):表示需要參數化的張量

  • requires_grad (bool, optional):表示是否該張量是否需要梯度,默認值為True

代碼介紹

 pytorch中的Parameter函數具體的代碼示例如下所示

import torch
import torch.nn as nn
class NeuralNetwork(nn.Module):
	def __init__(self, input_dim, output_dim):
		super(NeuralNetwork, self).__init__()
		self.linear = nn.Linear(input_dim, output_dim)
		self.linear.weight = torch.nn.Parameter(torch.zeros(input_dim, output_dim))
		self.linear.bias = torch.nn.Parameter(torch.ones(output_dim))
	def forward(self, input_array):
		output = self.linear(input_array)
		return output
if __name__ == '__main__':
	net = NeuralNetwork(4, 6)
	for param in net.parameters():
		print(param)

代碼的結果如下所示:

pytorch中Parameter函數怎么使用

當神經網絡的參數不是用Parameter函數參數化直接賦值給權重參數時,則會報錯,具體的程序

import torch
import torch.nn as nn
class NeuralNetwork(nn.Module):
	def __init__(self, input_dim, output_dim):
		super(NeuralNetwork, self).__init__()
		self.linear = nn.Linear(input_dim, output_dim)
		self.linear.weight = torch.zeros(input_dim, output_dim)
		self.linear.bias = torch.ones(output_dim)
	def forward(self, input_array):
		output = self.linear(input_array)
		return output
if __name__ == '__main__':
	net = NeuralNetwork(4, 6)
	for param in net.parameters():
		print(param)

代碼運行報錯結果如下所示:

pytorch中Parameter函數怎么使用

關于“pytorch中Parameter函數怎么使用”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“pytorch中Parameter函數怎么使用”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

苍梧县| 巴南区| 化德县| 柳州市| 文安县| 舒兰市| 河北省| 耿马| 垫江县| 拉孜县| 会理县| 铜山县| 新晃| 平湖市| 北辰区| 明光市| 离岛区| 寻乌县| 永川市| 叶城县| 无锡市| 武隆县| 酒泉市| 手机| 壶关县| 宁国市| 山东省| 鹰潭市| 金寨县| 行唐县| 天镇县| 化隆| 金乡县| 德令哈市| 同仁县| 昌吉市| 武胜县| 瑞昌市| 英吉沙县| 天柱县| 泰顺县|