mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Added label_smooth_eps=0.1 for [net] layer for Label Smoothing for Classifier
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user