AlexeyAB
2018-04-13 16cfff811f8a5898899cdd0b7139d216466371d2
Fixed resize_shortcut_layer() for resnet50_yolo.cfg on Linux
1 files modified
4 ■■■■ changed files
src/shortcut_layer.c 4 ●●●● patch | view | raw | blame | history
src/shortcut_layer.c
@@ -38,8 +38,8 @@
void resize_shortcut_layer(layer *l, int w, int h)
{
    assert(l->w == l->out_w);
    assert(l->h == l->out_h);
    //assert(l->w == l->out_w);
    //assert(l->h == l->out_h);
    l->w = l->out_w = w;
    l->h = l->out_h = h;
    l->outputs = w*h*l->out_c;