How to store neural network weights after training process using neuronDotNet tool to be used later in testing ?
By an anonymous user on Nov. 09, 2008
The training set and neural networks in NeuronDotNet implement 'ISerializable' interface. They can be saved to file using binary formatters.
----------------------------------------------------- Stream stream = File.Open(filename, FileMode.Create); BinaryFormatter formatter = new BinaryFormatter(); formatter.Serialize(stream, network); stream.Close();
-----------------------------------------------------
You can have a look at sample applications provided in the NeuronDotNet website.
"http://neurondotnet.freehostia.com/samples/index.html"
By hanaa hamza on Dec. 04, 2008
thanks alot,
Answers
Add AnswerShare your knowledge