Results found:
How to save trained Neural Network (Number recognitio from image)
https://stackoverflow.com/questions/8047259
Full question
- java - neural-network |
- |
Question
I have written a neural network program to train for recognition digits from image using back propagation and feed-forward. Its working quite good. I just wanted to know that how do i save this trained neural network since i don't know what to save. My objective is to train my neural network just once because it takes very long time to train (1000 iteration, and many training sets) and then i want to save it and load it for later use. I hope u understand my problem. I cannot reveal all my neural codes. But this is how execution code looks like
NeuralNetwork nn = new NeuralNetwork(numberOfInputs, nuberOfHiddenNodes, numberOfOuputNodes);
pattern less than patternsList.length:
nn.train(pattern);
OTHER TIPS
After your network is trained you can store (and later load) the in-memory contents of NeuralNetwork
and its children using Java Serialization.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow