Joseph Redmon
2015-11-26 0305fb4d99cf1efc7d4aa4d2ee2d65d54500d437
src/layer.h
@@ -15,8 +15,8 @@
    ROUTE,
    COST,
    NORMALIZATION,
    REGION,
    AVGPOOL
    AVGPOOL,
    LOCAL
} LAYER_TYPE;
typedef enum{
@@ -30,9 +30,6 @@
    int batch_normalize;
    int batch;
    int forced;
    int object_logistic;
    int class_logistic;
    int coord_logistic;
    int inputs;
    int outputs;
    int truths;
@@ -133,11 +130,12 @@
    float * x_gpu;
    float * x_norm_gpu;
    float * weights_gpu;
    float * biases_gpu;
    float * scales_gpu;
    float * weight_updates_gpu;
    float * biases_gpu;
    float * bias_updates_gpu;
    float * scales_gpu;
    float * scale_updates_gpu;
    float * output_gpu;