Question Details

Browse

ANN weights

By hanaa hamza - Oct. 27, 2008

How to store neural network weights after training process using neuronDotNet tool to be used later in testing ?


Answers

Add Answer
  1. 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"


    0 Votes
  2. By hanaa hamza on Dec. 04, 2008

    thanks alot,


    0 Votes
Share your knowledge

Related Questions

Browse Get answers and share your expertise.