mirror of https://github.com/AlexeyAB/darknet.git
Fix network resizing for resize_conv_lstm_layer()
This commit is contained in:
parent
abba310982
commit
ff0dbcbb7d
|
@ -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){
|
||||
|
|
Loading…
Reference in New Issue