mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Fix issue #674: parameter "flip" is added to [net] parameters for classifier and detector
flip=0 switches flip augmentation off. Default is flip=1 which is consistent with a previous behaviour.
This commit is contained in:
@ -52,6 +52,7 @@ typedef struct network{
|
||||
int h, w, c;
|
||||
int max_crop;
|
||||
int min_crop;
|
||||
int flip; // horizontal flip 50% probability augmentaiont for classifier training (default = 1)
|
||||
float angle;
|
||||
float aspect;
|
||||
float exposure;
|
||||
|
Reference in New Issue
Block a user