Stateful Recurrent Neural Network
Table of contents We can remove the hardcoded part by replacing it with a loop Improving our RNN First thing first, let’s solve the resetting of hidden state Creating Multilayer RNN Exploding and disappearing Activations If we have data like: (from the example of previous blog) X – Y 'one', '.', 'two' – '.' '.', 'three', '.' – 'four' Where 3 words are used as input to predict 1 word from a vocabulary as an output, we can create a neural network architecture that takes three words as input and returns a prediction of the probability for each possible next word in the vocabulary. ...