The RNN class implements Recurrent Neural Network (RNN) via Back Propagation Through Time (BPTT). At each time point x_t, there is a vector representing several variables or the encoding of a word. Intended to work for guessing the next work in a sentence or for multi-horizon forecasting. Time series: (x_t: t = 0, 1, ..., n_seq-1) where n_seq is the number of time points/words
Value parameters
fname
the feature/variable names
n_mem
the size for hidden state (h) (dimensionality of memory)
Backward propagate to calculate gradients using chain rules in O(n_seq) time. FIX - add option of using sse loss function and fix affected partial derivatives
Backward propagate to calculate gradients using chain rules in O(n_seq) time. FIX - add option of using sse loss function and fix affected partial derivatives