shortcut_layer resize for random=1

This commit is contained in:
AlexeyAB
2018-03-16 01:49:01 +03:00
parent df076653e0
commit 371f21171a
5 changed files with 32 additions and 5 deletions

View File

@ -375,6 +375,8 @@ int resize_network(network *net, int w, int h)
resize_region_layer(&l, w, h);
}else if(l.type == ROUTE){
resize_route_layer(&l, net);
}else if (l.type == SHORTCUT) {
resize_shortcut_layer(&l, w, h);
}else if(l.type == REORG){
resize_reorg_layer(&l, w, h);
}else if(l.type == AVGPOOL){