mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
shortcut_layer resize for random=1
This commit is contained in:
@ -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){
|
||||
|
Reference in New Issue
Block a user