ResNet-50 training problem
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ChiaWei Lee
le 10 Déc 2021
Réponse apportée : Abolfazl Chaman Motlagh
le 12 Déc 2021
Why does the validation accuracy in the red circle in the figure suddenly rise?
0 commentaires
Réponse acceptée
Abolfazl Chaman Motlagh
le 12 Déc 2021
this note is from official MATLAB documentation for trainingOptions , i think it's exactly what you're looking for.
"When training finishes, view the Results showing the final validation accuracy and the reason that training finished. The final validation metrics are labeled Final in the plots. If your network contains batch normalization layers, then the final validation metrics can different to the validation metrics evaluated during training. This is because the mean and variance statistics used for batch normalization can be different after training completes. For example, if the 'BatchNormalizationStatisics' training option is 'population', then after training, the software finalizes the batch normalization statistics by passing through the training data once more and uses the resulting mean and variance. If the 'BatchNormalizationStatisics' training option is 'moving', then the software approximates the statistics during training using a running estimate and uses the latest values of the statistics. "
So it seems in your case network has better performance on validation data when batch normalization parameters is finilized after training finished.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with Statistics and Machine Learning Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!