gluonts.torch.model.deepar.lightning_module module#
- class gluonts.torch.model.deepar.lightning_module.DeepARLightningModule(model_kwargs: dict, lr: float = 0.001, weight_decay: float = 1e-08, patience: int = 10)[source]#
Bases:
LightningModule
A
pl.LightningModule
class that can be used to train aDeepARModel
with PyTorch Lightning.This is a thin layer around a (wrapped)
DeepARModel
object, that exposes the methods to evaluate training and validation loss.- Parameters
model_kwargs – Keyword arguments to construct the
DeepARModel
to be trained.loss – Loss function to be used for training.
lr – Learning rate.
weight_decay – Weight decay regularization parameter.
patience – Patience parameter for learning rate scheduler.