Effacer les filtres
Effacer les filtres

taraining error when neural network training is done .each time training isd one the results are different

2 vues (au cours des 30 derniers jours)
i am doing neural network ,training the netwrk eah time gives different results.

Réponse acceptée

Greg Heath
Greg Heath le 3 Déc 2012
Training performance varies because the default train/val/test data division AND initial weights are pseudorandom.
One of many solutions for sufficiently large data sets.
1. Initialize the RNG so that the same stream of pseudorandom numbers can be repeated.
rng(0)
2. Design 10 or more nets
3. Choose the net with the smallest validation (NOT TRAINING) set error.
4. Estimate the performance on unseen data with the test set error.
5. If performance is unsatisfactory, try increasing the number of hidden nodes.
How large are X and T?
Hope this helps.
Thank you for formally accepting my answer
Greg
  3 commentaires
Greg Heath
Greg Heath le 7 Déc 2012
The pseudo random number generation is done automatically. However if you want to duplicate your run(s). You must intialize the geneator.
help rng
doc rng
Greg
mayuresh
mayuresh le 7 Déc 2012
can u suggest some book/papers on designing of number of layers and neurons in the layers.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by