Open DiKorsch opened 3 years ago
It totally true, but then you apply data augmentations that are intended for the training stage during your evaluation. I think for the validation_generator
you need to create it from the val_datagen
. It should not change anything in context of subsets, but should raise your evaluation performance, since you would not apply random augmentation during evaluation.
I can see what you meant. I will note that.
Thank you :)
In lines 79 and 192 of
hp_param_training.py
you use thetrain_datagen
instead ofvalidation_datagen
. Same issue is inhp_param_training-artNets.py
.