scalation.modeling.forecasting.neuralforecasting.LSTM
See theLSTM companion object
The LSTM
class implements Long Short-Term Memeory (LSTM) 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)
- x
-
the input sequence/time series
- y
-
the output sequence/time series
Attributes
- Companion
- object
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
Members list
In this article