Joseph Redmon
2015-09-01 8bcdee86585f496afe1a8a38d608ea0504a11243
src/layer.h
@@ -14,7 +14,9 @@
    CROP,
    ROUTE,
    COST,
    NORMALIZATION
    NORMALIZATION,
    REGION,
    AVGPOOL
} LAYER_TYPE;
typedef enum{
@@ -33,6 +35,7 @@
    int n;
    int groups;
    int size;
    int side;
    int stride;
    int pad;
    int crop_width;
@@ -48,6 +51,7 @@
    int objectness;
    int does_cost;
    int joint;
    int noadjust;
    float alpha;
    float beta;
@@ -57,6 +61,7 @@
    float probability;
    float scale;
    int *indexes;
    float *rand;
    float *cost;
@@ -98,4 +103,6 @@
    #endif
} layer;
void free_layer(layer);
#endif