我在this article之后使用转移学习方法重新调整了2018-02-18 23:09:31.440+0000 ERROR The ResourceConfig instance does not contain any root resource classes.
2018-02-18 23:09:31.440+0000 WARN unavailable The ResourceConfig instance does not contain any root resource classes.
网络。
为此,我删除了最终的网络层,并将数百张脸部图像送入网络。
随后成功生成了一个新模型:Inception V3
现在我想加载此模型并使用其固定权重将我的脸部作为“主题”应用于输入图像,例如inceptionv3-ft.model
。
为此我使用google-dream
程序,它加载如下模型:
keras
此处的完整代码:https://github.com/keras-team/keras/blob/master/examples/deep_dream.py
那么,我如何加载和传递未预先训练过的我的RE训练模型权重?
答案 0 :(得分:0)
简单地:
from keras.models import load_model
model = load_model('inceptionv3-ft.model')
dream = model.input