红联Linux门户
Linux帮助

ubuntu中利用h5py保存训练好的keras神经网络模型

发布时间:2016-08-02 15:16:25来源:linmingan作者:DCD_Lin
利用h5py保存的模型所占的空间非常小。在利用h5py保存keras训练好的模型之前需要先安装h5py,具体的安装过程可参考关于h5py安装的文章,地址:http://www.linuxdiyf.com/linux/22937.html
 
利用h5py保存和读取keras模型的代码如下:
import h5py from keras.models import model_from_json  
json_string = model.to_json()  
open('my_model_architecture.json','w').write(json_string)  
model.save_weights('my_model_weights.h5')  
#读取model  
model = model_from_json(open('my_model_architecture.json').read())  
model.load_weights('my_model_weights.h5')  
 
本文永久更新地址:http://www.linuxdiyf.com/linux/22940.html