fix GRU, add LSTM

This commit is contained in:
Yao Lu 2017-06-06 17:22:23 -07:00
parent 59262f4c77
commit c04744d15e

View File

@ -125,8 +125,8 @@ char *get_layer_string(LAYER_TYPE a)
return "rnn"; return "rnn";
case GRU: case GRU:
return "gru"; return "gru";
case LSTM: case LSTM:
return "lstm"; return "lstm";
case CRNN: case CRNN:
return "crnn"; return "crnn";
case MAXPOOL: case MAXPOOL: