Keras的模型是用hdf5存储的,如果想要查看模型,keras提供了get_weights的函数可以查看:
for layer in model.layers: weights = layer.get_weights() # list of numpy array
而通过hdf5模块也可以读取:hdf5的数据结构主要是File – Group – Dataset三级,具体操作API可以看官方文档。weights的tensor保存在Dataset的value中,而每一集都会有attrs保存各网络层的属性:
import h5py
def print_keras_wegiths(weigh
1