https://github.com/nixtla logo
m

marah othman

05/24/2023, 12:11 PM
is there way to plot the loss function in neuralforcast ?
c

Cristian (Nixtla)

05/24/2023, 12:44 PM
Hi @marah othman. Do you mean the evolution of the loss during training?
m

marah othman

05/24/2023, 12:56 PM
yes
c

Cristian (Nixtla)

05/24/2023, 1:04 PM
For creating plots manually, models store the train (and validation loss) for each step in the
train_trajectories
object. You can access it after training and plot the evolution (easiest and recommended). Alternatively, you can use PyTorch Lightning automatic logs and integration with TensorBoard.
amazing 1
m

marah othman

05/24/2023, 1:38 PM
okay thanks i will see
2 Views