trainer_params | R Documentation |
These parameters are part of the gluonts.mx.trainer.Trainer()
function.
lookback_length(range = c(dials::unknown(), dials::unknown()), trans = NULL)
num_batches_per_epoch(range = c(2, 100), trans = NULL)
learn_rate_decay_factor(range = c(0, 1), trans = NULL)
scale_values(values = c(TRUE, FALSE))
range |
A two-element vector holding the defaults for the smallest and largest possible values, respectively. If a transformation is specified, these values should be in the transformed units. |
trans |
A |
values |
A character string of possible values. |
The main parameters for GluonTS Model Training are:
epochs
: The number of iterations of training. See dials::epochs()
.
num_batches_per_epoch
: Number of batches at each epoch.
learn_rate
: The rate at which learning is changed. See dials::learn_rate()
.
learn_rate_decay_factor
: Factor by which to decrease the learning rate.
penalty
: The weight decay (or L2 regularization) coefficient. See dials::penalty()
.
Additional useful parameters that have been added to Modeltime are:
lookback_length
: Number of time units that condition the predictions.
scale_values
: Scales numeric data by ‘id’ group using mean = 0, standard deviation = 1 transformation.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.