Joseph Redmon
2015-03-06 26cddc6f93d54668813bfe729775b617cf77de01
src/cost_layer.h
@@ -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;