Top "Recurrent-neural-network" questions

A recurrent neural network (RNN) is a class of artificial neural network where connections between units form a directed cycle.

Keras : How should I prepare input data for RNN?

I'm having trouble with preparing input data for RNN on Keras. Currently, my training data dimension is: (6752, 600, 13) 6752: number of training …

tensorflow keras deep-learning lstm recurrent-neural-network
AttributeError: 'tuple' object has no attribute 'size'

UPDATE: after looking back on this question, most of the code was unnecessary. To make a long story short, the …

python deep-learning pytorch recurrent-neural-network gated-recurrent-unit
How can I improve the classification accuracy of LSTM,GRU recurrent neural networks

Binary Classification Problem in Tensorflow: I have gone through the online tutorials and trying to apply it on a real-time …

tensorflow deep-learning lstm recurrent-neural-network gated-recurrent-unit
What is a dynamic RNN in TensorFlow?

I am confused about what dynamic RNN (i.e. dynamic_rnn) is. It returns an output and a state in …

tensorflow recurrent-neural-network
Get the last output of a dynamic_rnn in TensorFlow

I have a 3-D tensor of shape [batch, None, dim] where the second dimension, i.e. the timesteps, is unknown. …

python tensorflow neural-network deep-learning recurrent-neural-network
RNN for binary classification of sequence

I wondering if someone can suggest a good library or reference (tutorial or article) to implement a Recurrent Neural Network (…

deep-learning regular-language text-classification recurrent-neural-network
LSTM RNN Backpropagation

Could someone give a clear explanation of backpropagation for LSTM RNNs? This is the type structure I am working with. …

machine-learning neural-network lstm recurrent-neural-network backpropagation
Default activation function in Keras

Does anyone know the default activation function used in the recurrent layers in Keras? https://keras.io/layers/recurrent/ It …

neural-network deep-learning keras recurrent-neural-network keras-layer
Padding time-series subsequences for LSTM-RNN training

I have a dataset of time series that I use as input to an LSTM-RNN for action anticipation. The time …

machine-learning deep-learning padding lstm recurrent-neural-network
Torchtext AttributeError: 'Example' object has no attribute 'text_content'

I'm working with RNN and using Pytorch & Torchtext. I've got a problem with building vocab in my RNN. My …

neural-network nlp pytorch recurrent-neural-network torchtext