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

溫馨提示×

溫馨提示×

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

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

pytorch模型之train模式與eval模式的示例分析

發布時間:2021-08-23 10:13:54 來源:億速云 閱讀:243 作者:小新 欄目:開發技術

這篇文章主要介紹pytorch模型之train模式與eval模式的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

原因

對于一些含有batch normalization或者是Dropout層的模型來說,訓練時的froward和驗證時的forward有計算上是不同的,因此在前向傳遞過程中需要指定模型是在訓練還是在驗證。

源代碼

[docs] def train(self, mode=True):
  r"""Sets the module in training mode.

  This has any effect only on certain modules. See documentations of
  particular modules for details of their behaviors in training/evaluation
  mode, if they are affected, e.g. :class:`Dropout`, :class:`BatchNorm`,
  etc.

  Returns:
   Module: self
  """
  self.training = mode
  for module in self.children():
   module.train(mode)
  return self

[docs] def eval(self):
  r"""Sets the module in evaluation mode.

  This has any effect only on certain modules. See documentations of
  particular modules for details of their behaviors in training/evaluation
  mode, if they are affected, e.g. :class:`Dropout`, :class:`BatchNorm`,
  etc.
  """
  #該方法調用了nn.train()方法,把參數默認值改為false. 增加聚合性
  return self.train(False)

在使用含有BN層,dropout層的神經網路來說,必須要區分訓練驗證

以上是“pytorch模型之train模式與eval模式的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

盐池县| 曲阜市| 蒙自县| 太仓市| 建瓯市| 含山县| 运城市| 昌图县| 平谷区| 荔波县| 老河口市| 勃利县| 出国| 枝江市| 琼结县| 佛学| 会宁县| 化州市| 景东| 睢宁县| 龙口市| 云阳县| 彭山县| 巴塘县| 墨脱县| 盈江县| 吉木萨尔县| 太谷县| 长海县| 顺义区| 左贡县| 五华县| 宁化县| 南康市| 新源县| 古蔺县| 台东县| 海南省| 沧州市| 宁明县| 麻阳|