mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Added Mixup data augmentation if is used mixup=1
This commit is contained in:
@ -595,6 +595,7 @@ typedef struct network {
|
||||
int center;
|
||||
int flip; // horizontal flip 50% probability augmentaiont for classifier training (default = 1)
|
||||
int blur;
|
||||
int mixup;
|
||||
float angle;
|
||||
float aspect;
|
||||
float exposure;
|
||||
@ -759,6 +760,7 @@ typedef struct load_args {
|
||||
float jitter;
|
||||
int flip;
|
||||
int blur;
|
||||
int mixup;
|
||||
float angle;
|
||||
float aspect;
|
||||
float saturation;
|
||||
|
Reference in New Issue
Block a user