Skip to content

Commit

Permalink
Fix network resizing for resize_conv_lstm_layer()
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyAB committed Jun 5, 2019
1 parent 9df4ea2 commit 2745163
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/network.c
Original file line number Diff line number Diff line change
Expand Up @@ -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){
Expand Down

0 comments on commit 2745163

Please sign in to comment.