Fix network resizing for resize_conv_lstm_layer()

This commit is contained in:
AlexeyAB 2019-06-05 15:51:03 +03:00
parent abba310982
commit ff0dbcbb7d
1 changed files with 2 additions and 0 deletions

View File

@ -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){