Merge pull request #2282 from davidssmith/master

add LSTM layer
This commit is contained in:
Alexey
2019-01-24 20:19:57 +03:00
committed by GitHub
6 changed files with 762 additions and 2 deletions

View File

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