Passage icon indicating copy to clipboard operation
Passage copied to clipboard

A little library for text analysis with RNNs.

Results 12 Passage issues
Sort by recently updated
recently updated
newest added

This paper found they got significantly better results on a range of tasks if the forget gate for LSTM is initialized with one. http://www.jmlr.org/proceedings/papers/v37/jozefowicz15.pdf

I've been trying to get a simple text generator similar to the result in this blog post: [http://karpathy.github.io/2015/05/21/rnn-effectiveness/](url). Is there anyone who can come up with an example of doing...

Dear contributors, Thanks a ton for putting this library together. I based my classification model on the sentiment.py example. I find that my (Embedding + GatedRecurrent / LstmRecurrent + Dense)...

This is more of a feature request. I'd love to try to use an LTSM model as as tagging model. I have tagged words for my training data (not POS...

I was able to get better results with SGD on my own dataset with this library, if I use SGD and half the learning rate after each epoch, than using...

Hi, I'm trying to run the "example" on my own data. After fitting the tokenizer, I get a big, long list of error messages from Theano. Background: Windows 8.1. Anaconda...

Here is the thing. I have 3 class labels in my data. The predict function returns an array of shape (N, 3) where N is the size of the train...

While trying out the example provided in the Readme, I noticed that this line executes very slowly: ``` model = RNN(layers=layers, cost='BinaryCrossEntropy') ``` Profiling shows that this line takes around...

There's a slight incompatibility with sklearn in the `RNN.predict` method: this one should return predicted class labels. `predict_proba` is the name of the method that returns probabilities. In Passage's case...

Hello, I just used exactly the same example in Passage/mnist.py The only modification is to change `GatedRecurrent` into `LstmRecurrent`: ``` python import ... ... trX, teX, trY, teY = load_mnist()...