why is my final validation accuracy much lower than the validation accuracy during training?

조회 수: 11 (최근 30일)
my FINAL validation is: 21%, while most of my validation accuracy measurements is ~70. what could be the reason for that?

답변 (1개)

Raunak Gupta
Raunak Gupta 2020년 8월 29일
Hi,
This can happen due to presence of batchNormalizationlayer in the Layer graph. Since in batch normalization layers the mean and variance of data is calculated for whole training data at the end of the training it can produce different result than that seen in training phase (because there these statistics are calculated for mini batches only). Also, I see there is no increase in the loss in the last iteration which suggest that the model hasn’t changed much (So, this decrease looks only due to the batchNormalizationlayer). This shows that the training data is not shuffled while training and, I think you can train the model for more epochs.
You may set the Shuffle option to ‘every-epoch’ for better distribution of data while training.

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by