Skip to content

Commit

Permalink
fix GRU, add LSTM
Browse files Browse the repository at this point in the history
  • Loading branch information
tjluyao committed Jun 7, 2017
1 parent 59262f4 commit c04744d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/network.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ char *get_layer_string(LAYER_TYPE a)
return "rnn";
case GRU:
return "gru";
case LSTM:
return "lstm";
case LSTM:
return "lstm";
case CRNN:
return "crnn";
case MAXPOOL:
Expand Down

0 comments on commit c04744d

Please sign in to comment.