Starts a new training from last model with changing training parameters. #205
-
Hello! I'm enjoying using NequIP these days. As I know, there is an option for the early stop of training, namely, early_stopping_lower_bounds. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
hi @ssrokyz , the easiest way to go about this is to do two trainings: one with For the second training, you want to duplicate the config of your first one but to change:
model_builders:
- SimpleIrrepsConfig
- EnergyModel
- PerSpeciesRescale
- ForceOutput
- RescaleEnergyEtc
- initialize_from_state
initial_model_state: /my/previous/early-stopped/training/run/last_model.pth The Let me know if this works for you! |
Beta Was this translation helpful? Give feedback.
hi @ssrokyz ,
the easiest way to go about this is to do two trainings: one with
early_stopping_lower_bounds
, and then a second with a fixed learning rate that starts from the state of the first.For the second training, you want to duplicate the config of your first one but to change:
The
model_builders
given are the default model builders, with the addition ofi…