Joseph Redmon
2015-03-06 2313a8eb54d703323279c0fb9b2c9c52d26f0cf9
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;