Joseph Redmon
2016-06-23 d7fd2acf0582020de87f49d8863d39d1744a858c
src/maxpool_layer.c
@@ -51,6 +51,7 @@
    int stride = l->stride;
    l->h = h;
    l->w = w;
    l->inputs = h*w*l->c;
    l->out_w = (w-1)/stride + 1;
    l->out_h = (h-1)/stride + 1;