当前位置:   article > 正文

keras中的模型加载_from keras.models import k

from keras.models import k

keras中的模型加载

from keras import backend as K
from keras.models import load_model
from PIL import Image
import numpy as np

source='/path/'

def get_layer_output(model, x, index=-1):
    layer = K.function([model.input], [model.layers[index].output])
    return layer([x])[0]

#加载模型
model = load_model(source + 'h5/文件名.h5')

#循环输出网络各层的参数
for i in range(len(model.layers)):
    print("i,model.layers[index].output:",i,model.layers[i].output)

names = [weight.name for layer in model.layers for weight in layer.weights]
#获取权重
weights = model.get_weights()
#输出各层权重值的尺寸
for name, weight in zip(names, weights):
    print(name, weight.shape)
#得到指定层的权重和偏置值
weight_dense_1,bias_dense_1 = model.get_layer('dense_1').get_weights()
#输出权重和偏置值
print(weight_dense_1)
print(bias_dense_1)
#存储权重值到本地
np.save(source+"result/weight_dense_1.npy", weight_dense_1)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/103950
推荐阅读
相关标签
  

闽ICP备14008679号