mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Added Gaussian YOLOv3 layer [Gaussian_yolo]
This commit is contained in:
@ -149,6 +149,7 @@ typedef enum {
|
||||
XNOR,
|
||||
REGION,
|
||||
YOLO,
|
||||
GAUSSIAN_YOLO,
|
||||
ISEG,
|
||||
REORG,
|
||||
REORG_OLD,
|
||||
@ -728,6 +729,7 @@ typedef struct detection{
|
||||
float *mask;
|
||||
float objectness;
|
||||
int sort_class;
|
||||
float *uc; // Gaussian_YOLOv3 - tx,ty,tw,th uncertainty
|
||||
} detection;
|
||||
|
||||
// matrix.h
|
||||
|
Reference in New Issue
Block a user