Joseph Redmon
2015-03-21 4af116e996fe04b739bf6eee211be36660c212f4
src/parser.c
@@ -165,7 +165,8 @@
    int coords = option_find_int(options, "coords", 1);
    int classes = option_find_int(options, "classes", 1);
    int rescore = option_find_int(options, "rescore", 1);
    detection_layer *layer = make_detection_layer(params.batch, params.inputs, classes, coords, rescore);
    int background = option_find_int(options, "background", 1);
    detection_layer *layer = make_detection_layer(params.batch, params.inputs, classes, coords, rescore, background);
    option_unused(options);
    return layer;
}