Big changes to detection

This commit is contained in:
Joseph Redmon
2015-03-04 14:56:38 -08:00
parent 5f4a5f59b0
commit fb9e0fe336
17 changed files with 298 additions and 151 deletions

View File

@ -2,12 +2,14 @@
#define COST_LAYER_H
typedef enum{
SSE, DETECTION
SSE
} COST_TYPE;
typedef struct {
int inputs;
int batch;
int coords;
int classes;
float *delta;
float *output;
COST_TYPE type;