is there way to plot the loss function in neuralfo...
# general
m
is there way to plot the loss function in neuralforcast ?
c
Hi @marah othman. Do you mean the evolution of the loss during training?
m
yes
c
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
okay thanks i will see