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

溫馨提示×

溫馨提示×

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

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

pytorch如何加載自定義網絡權重

發布時間:2021-05-28 10:55:12 來源:億速云 閱讀:229 作者:小新 欄目:開發技術

這篇文章主要介紹pytorch如何加載自定義網絡權重,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

在將自定義的網絡權重加載到網絡中時,報錯:

AttributeError: 'dict' object has no attribute 'seek'. You can only torch.load from a file that is seekable. Please pre-load the data into a buffer like io.BytesIO and try to load from it instead.

我們一步一步分析。

模型網絡權重保存額代碼是:torch.save(net.state_dict(),'net.pkl')

(1)查看獲取模型權重的源碼:

pytorch源碼:net.state_dict()

def state_dict(self, destination=None, prefix='', keep_vars=False):
  r"""Returns a dictionary containing a whole state of the module.

  Both parameters and persistent buffers (e.g. running averages) are
  included. Keys are corresponding parameter and buffer names.

  Returns:
    dict:
      a dictionary containing a whole state of the module

  Example::

    >>> module.state_dict().keys()
    ['bias', 'weight']

  """

將網絡中所有的狀態保存到一個字典中了,我自己構建的就是一個字典,沒問題!

(2)查看保存模型權重的源碼:

pytorch源碼:torch.save()

def save(obj, f, pickle_module=pickle, pickle_protocol=DEFAULT_PROTOCOL):
  """Saves an object to a disk file.

  See also: :ref:`recommend-saving-models`

  Args:
    obj: saved object
    f: a file-like object (has to implement write and flush) or a string
      containing a file name
    pickle_module: module used for pickling metadata and objects
    pickle_protocol: can be specified to override the default protocol

  .. warning::
    If you are using Python 2, torch.save does NOT support StringIO.StringIO
    as a valid file-like object. This is because the write method should return
    the number of bytes written; StringIO.write() does not do this.

    Please use something like io.BytesIO instead.

函數功能是將字典保存為磁盤文件(二進制數據),那么我們在torch.load()時,就是在內存中加載二進制數據,這就是報錯點。

解決方案:將字典保存為BytesIO文件之后,模型再net.load_state_dict()

#b為自定義的字典
torch.save(b,'new.pkl')
net.load_state_dict(torch.load(b))

解決方法很簡單,主要記錄解決思路。

以上是“pytorch如何加載自定義網絡權重”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

西华县| 门头沟区| 曲麻莱县| 常德市| 蕲春县| 汝城县| 黄冈市| 东海县| 南木林县| 成武县| 屏东县| 休宁县| 抚宁县| 汤阴县| 阿瓦提县| 高邮市| 始兴县| 晴隆县| 双流县| 赫章县| 巴中市| 武陟县| 玉山县| 德安县| 鄂尔多斯市| 岳阳市| 鄂伦春自治旗| 丹东市| 南木林县| 祁阳县| 成安县| 定结县| 瑞昌市| 洛浦县| 安徽省| 山阳县| 缙云县| 武城县| 拜城县| 民和| 长宁县|