Joseph Redmon
2015-11-26 064d4462d3890fd5dda5c7845119e1a3854d477b
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;