pytorch_forecasting.models.rnn.
RecurrentNetwork
Bases: pytorch_forecasting.models.base_model.AutoRegressiveBaseModelWithCovariates
pytorch_forecasting.models.base_model.AutoRegressiveBaseModelWithCovariates
Recurrent Network.
Simple LSTM or GRU layer followed by output layer
cell_type (str, optional) – Recurrent cell type [“LSTM”, “GRU”]. Defaults to “LSTM”.
hidden_size (int, optional) – hidden recurrent size - the most important hyperparameter along with rnn_layers. Defaults to 10.
rnn_layers
rnn_layers (int, optional) – Number of RNN layers - important hyperparameter. Defaults to 2.
dropout (float, optional) – Dropout in RNN layers. Defaults to 0.1.
static_categoricals – integer of positions of static categorical variables
static_reals – integer of positions of static continuous variables
time_varying_categoricals_encoder – integer of positions of categorical variables for encoder
time_varying_categoricals_decoder – integer of positions of categorical variables for decoder
time_varying_reals_encoder – integer of positions of continuous variables for encoder
time_varying_reals_decoder – integer of positions of continuous variables for decoder
categorical_groups – dictionary where values are list of categorical variables that are forming together a new categorical variable which is the key in the dictionary
x_reals – order of continuous variables in tensor passed to forward function
x_categoricals – order of categorical variables in tensor passed to forward function
embedding_sizes – dictionary mapping (string) indices to tuple of number of categorical classes and embedding size
embedding_paddings – list of indices for embeddings which transform the zero’s embedding to a zero vector
embedding_labels – dictionary mapping (string) indices to list of categorical labels
output_size (Union[int, List[int]], optional) – number of outputs (e.g. number of quantiles for QuantileLoss and one target or list of output sizes).
target (str, optional) – Target variable or list of target variables. Defaults to None.
target_lags (Dict[str, Dict[str, int]]) – dictionary of target names mapped to list of time steps by which the variable should be lagged. Lags can be useful to indicate seasonality to the models. If you know the seasonalit(ies) of your data, add at least the target variables with the corresponding lags to improve performance. Defaults to no lags, i.e. an empty dictionary.
loss (MultiHorizonMetric, optional) – loss: loss function taking prediction and targets.
logging_metrics (nn.ModuleList, optional) – Metrics to log during training. Defaults to nn.ModuleList([SMAPE(), MAE(), RMSE(), MAPE(), MASE()]).
Methods
construct_input_vector(x_cat, x_cont[, …])
construct_input_vector
Create input vector into RNN network
decode(input_vector, target_scale, …[, …])
decode
Decode hidden state of RNN into prediction.
decode_all(x, hidden_state[, lengths])
decode_all
encode(x)
encode
Encode sequence into hidden state
forward(x[, n_samples])
forward
Forward network
from_dataset(dataset[, …])
from_dataset
Create model from dataset.
one_off_target – tensor to insert into first position of target. If None (default), remove first time step.
Decode hidden state of RNN into prediction. If n_smaples is given, decode not by using actual values but rather by sampling new targets from past predictions iteratively
dataset – timeseries dataset
allowed_encoder_known_variable_names – List of known variables that are allowed in encoder, defaults to all
**kwargs – additional arguments such as hyperparameters for model (see __init__())
__init__()
Recurrent network