中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

甘肃省| 白沙| 保定市| 高州市| 西宁市| 湛江市| 博罗县| 五峰| 文成县| 龙南县| 江北区| 隆尧县| 石景山区| 贵溪市| 博客| 通化市| 商丘市| 改则县| 吴堡县| 银川市| 固始县| 焦作市| 阿坝县| 托里县| 白玉县| 开封县| 富阳市| 鄯善县| 津市市| 新民市| 湟源县| 来凤县| 贺兰县| 烟台市| 镇安县| 普兰店市| 米泉市| 靖江市| 南充市| 门头沟区| 利津县|