Joseph Redmon
2016-05-13 881d6ee9b6625ee502cb4f27d9b017a3da78caa7
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;