您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了keras怎么實(shí)現(xiàn)權(quán)重保存和權(quán)重載入,內(nèi)容簡而易懂,希望大家可以學(xué)習(xí)一下,學(xué)習(xí)完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。
如果需要全部權(quán)重載入,直接使用權(quán)重載入方式
model.save_weights('./weigths.h6')
model2.load_weights('./weigths.h6')
但是有時候你只需要載入部分權(quán)重
所以你可以這樣操作
首先,為所有層命名,在層中直接加入方法 name='layer1'
第二,使用,將你不需要載入權(quán)重的值更改名字。
最后,載入權(quán)重。
x=BatchNormalization(axis=channel_axis,name='layer2')(x) model2.layers[-1].name='pred' model2.load_weights('./weigths.h6',by_name=True)
上面的代碼是對應(yīng)的操作,這里我除了最后一層,其他層我都加載了權(quán)重,記住,by_name 必須賦值為True 這樣才能夠按照名稱對應(yīng)賦值權(quán)重。
注意:兩個模型結(jié)構(gòu)必須一樣,不然可能出問題
補(bǔ)充知識:Keras中保存和加載權(quán)重及模型結(jié)構(gòu)
1. 保存和加載模型結(jié)構(gòu)
(1)保存為JSON字串
json_string = model.to_json()
(2)從JSON字串重構(gòu)模型
from keras.models import model_from_json
model = model_from_json(json_string)
(3)保存為YAML字串
yaml_string = model.to_yaml()
(4)從YAML字串重構(gòu)模型
model = model_from_yaml(yaml_string)
2. 保存和加載模型權(quán)重(參數(shù))
from keras.models import load_model # 創(chuàng)建HDF5文件'my_model.h6',保存模型參數(shù) model.save('my_model.h6') # 加載模型參數(shù) load_model('my_model.h6')
2.1 處理已保存模型中的自定義層(或其他自定義對象)
如果要加載的模型包含自定義層或其他自定義類或函數(shù),則可以通過 custom_objects 參數(shù)將它們傳遞給加載機(jī)制:
from keras.models import load_model # 假設(shè)你的模型包含一個 AttentionLayer 類的實(shí)例 model = load_model('my_model.h6', custom_objects={'AttentionLayer': AttentionLayer})
或者,你可以使用 自定義對象作用域:
from keras.utils import CustomObjectScope with CustomObjectScope({'AttentionLayer': AttentionLayer}): model = load_model('my_model.h6')
自定義對象的處理與 load_model, model_from_json, model_from_yaml 的工作方式相同:
from keras.models import model_from_json
model = model_from_json(json_string, custom_objects={'AttentionLayer': AttentionLayer})
2019年6月1號更新:
更詳細(xì)的使用方法:
如何保存Keras模型?
(1)一個HDF5文件即保存模型的結(jié)構(gòu)又保存模型的權(quán)重
我們不推薦使用pickle或cPickle來保存Keras模型。
你可以使用model.save(filepath)將Keras模型和權(quán)重保存在一個HDF5文件中,該文件將包含:
模型的結(jié)構(gòu),以便重構(gòu)該模型
模型的權(quán)重
訓(xùn)練配置(損失函數(shù),優(yōu)化器等)
優(yōu)化器的狀態(tài),以便于從上次訓(xùn)練中斷的地方開始
使用keras.models.load_model(filepath)來重新實(shí)例化你的模型,如果文件中存儲了訓(xùn)練配置的話,該函數(shù)還會同時完成模型的編譯。
例子:
from keras.models import load_model model.save('my_model.h6') # creates a HDF5 file 'my_model.h6' del model # deletes the existing model # returns a compiled model # identical to the previous one model = load_model('my_model.h6')
(2)只保存模型的結(jié)構(gòu)
如果你只是希望保存模型的結(jié)構(gòu),而不包含其權(quán)重或配置信息,可以使用:
# save as JSON json_string = model.to_json() # save as YAML yaml_string = model.to_yaml()
這項(xiàng)操作將把模型序列化為json或yaml文件,這些文件對人而言也是友好的,如果需要的話你甚至可以手動打開這些文件并進(jìn)行編輯。
當(dāng)然,你也可以從保存好的json文件或yaml文件中載入模型:
# model reconstruction from JSON: from keras.models import model_from_json model = model_from_json(json_string) # model reconstruction from YAML model = model_from_yaml(yaml_string)
(3)只保存模型的權(quán)重
如果需要保存模型的權(quán)重,可通過下面的代碼利用HDF5進(jìn)行保存。注意,在使用前需要確保你已安裝了HDF5和其Python庫h6py。
model.save_weights('my_model_weights.h6')
如果你需要在代碼中初始化一個完全相同的模型,請使用:
model.load_weights('my_model_weights.h6')
如果你需要加載權(quán)重到不同的網(wǎng)絡(luò)結(jié)構(gòu)(有些層一樣)中,例如fine-tune或transfer-learning,你可以通過層名字來加載模型:
model.load_weights('my_model_weights.h6', by_name=True)
例如:
""" 假如原模型為: model = Sequential() model.add(Dense(2, input_dim=3, name="dense_1")) model.add(Dense(3, name="dense_2")) ... model.save_weights(fname) """ # new model model = Sequential() model.add(Dense(2, input_dim=3, name="dense_1")) # will be loaded model.add(Dense(10, name="new_dense")) # will not be loaded # load weights from first model; will only affect the first layer, dense_1. model.load_weights(fname, by_name=True)
以上就是關(guān)于keras怎么實(shí)現(xiàn)權(quán)重保存和權(quán)重載入的內(nèi)容,如果你們有學(xué)習(xí)到知識或者技能,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。