Support/Features for step-based models #827
Labels
bug
Something isn't working
feature
Is an improvement or enhancement
help wanted
Open to be worked on
🐛 Bug+Feature
For models like transformer, we utilize step-based learning rates and evaluation.
It would be nice to have several features along this line.
Support for step-based schedulers. Right now we use cannot give the scheduler to lightning, because it calls
scheduler.step(epochs=epoch)
internally which resets the scheduler.Fix docs for step based evaluation and checkpointing. It seems like it exists but it is hard to tell which is epochs / steps.
Add a
max_steps
option for stopping training.Helper functions for converting between steps and epochs. For instance, from the number of epochs and parallelism, get the steps for
configure_optimizers
The text was updated successfully, but these errors were encountered: