Joseph Redmon
2015-03-08 655f636a42d6e1d4518b712cfac6d973424de693
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;