I'm rather new to lightning, and I try to do the very simple thing: each 1000 steps (not epoch) evaluate the train and validation loss and log that.
I don't seem to be able to that with the Trainer
class since
val_check_interval
is based on epochs and log_every_n_steps
is based on steps.
Am I missing something? I would assume that log_every_n_steps
would do exactly that but it doesn't seem like