mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Fix network resizing for resize_conv_lstm_layer()
This commit is contained in:
@ -508,6 +508,8 @@ int resize_network(network *net, int w, int h)
|
||||
}
|
||||
else if (l.type == CRNN) {
|
||||
resize_crnn_layer(&l, w, h);
|
||||
}else if (l.type == CONV_LSTM) {
|
||||
resize_conv_lstm_layer(&l, w, h);
|
||||
}else if(l.type == CROP){
|
||||
resize_crop_layer(&l, w, h);
|
||||
}else if(l.type == MAXPOOL){
|
||||
|
Reference in New Issue
Block a user