Saving a trained nnet

Hi, I’m new to mxnet, I was wondering if someone could tell me how to save (on a file) a trained neural network for future use. In the tutorials there is an example of loading a saved nnet, but not how to save one.

Thanks

Use

net.save('xxx.params')

That’s it.