bidirectional_RNN
bidirectional_RNN copied to clipboard
bidirectional lstm
As mentioned, it can be used to develop model for deep speech. What can be done to input the training data?
Hi, Latest version of keras has no support for theano utils, is there any alternative for this: Traceback (most recent call last): File "cnn_blstm.py", line 28, in from birnn import...
I am trying to implement language model kind of thing using bidirectional LSTM In unidirectional LSTM, when we prepare data, if sentence is: "A recurrent neural network is a class...
I get the following error when I run the IMDB example: Traceback (most recent call last): File "imdb_birnn.py", line 77, in model.add(BatchNormalization((24 \* maxseqlen,))) File "/home/dxquang/anaconda/lib/python2.7/site-packages/keras/layers/containers.py", line 40, in add...
When I run imdb_birnn.py first time, I got the error as below. Isn't Transform() working? ``` $ python imdb_birnn.py Using gpu device 0: GeForce GTX 770 Loading data... 20000 train...
Nice work, this looks very promising. I was thinking of modifying it for something I'm doing since it doesn't seem to implement return_sequences so that you can return a whole...