Added label_smooth_eps=0.1 for [net] layer for Label Smoothing for Classifier

This commit is contained in:
AlexeyAB
2019-12-08 17:25:01 +03:00
parent 318919e1cb
commit 2a873f3448
5 changed files with 41 additions and 10 deletions

View File

@ -638,6 +638,7 @@ typedef struct network {
int flip; // horizontal flip 50% probability augmentaiont for classifier training (default = 1)
int blur;
int mixup;
float label_smooth_eps;
int letter_box;
float angle;
float aspect;
@ -813,6 +814,7 @@ typedef struct load_args {
int flip;
int blur;
int mixup;
float label_smooth_eps;
float angle;
float aspect;
float saturation;