91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

浮梁县| 库车县| 武安市| 万安县| 建水县| 阳春市| 绥化市| 石泉县| 汾西县| 绥阳县| 隆尧县| 金乡县| 界首市| 北流市| 开江县| 轮台县| 西城区| 乾安县| 兰西县| 江门市| 古丈县| 汕尾市| 宾阳县| 岱山县| 合肥市| 应用必备| 高淳县| 东光县| 巨鹿县| 安康市| 浦县| 庆安县| 泾阳县| 武隆县| 吴江市| 泾源县| 青岛市| 吉木萨尔县| 大渡口区| 洪洞县| 乌兰浩特市|