mxnet模型序列化,因为mxnet是动态图,需要前向运行一遍
#mxnet 模型序列化
'''keep the model to json 保存模型和参数'''
net2.hybridize()
output = net2(image.as_in_context(mx.gpu(0)))[1] #image是一张ndarray图
net2.export('net2')
'''load the model and the params 还原模型'''
net3 = gluon.SymbolBlock.imports('net2-symbol.json', ['data'], 'net2-0000.params', ctx=mx.gpu(0)) #return the model
模型序列化之后得到一个.json的模型结构文件和一个.params的模型参数文件,还原成原始模型要使用gluon.SymbolBlock.imports函数