You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
We had a question about the config file.
How should I modify the initial epoch batch learnrate and other parameters during training.
which file
Thanks!
The text was updated successfully, but these errors were encountered:
Hi @GarryJAY502 ,
If the config.yaml you can find :
defaults:
- _self_
- train: retinaunet_hnm_v002
The configuration works by inheriting configuration from retinaunet_hnm_v002.yaml in the train folder. The same way, you can find the configurations retinaunet_hnm_v002.yaml is inheriting from other config files. The trainer-specific configuration is in the trainer_cfg folder, where you can update the learning rate, number of epochs etc.
You can also update the parameters through the command line itself. For example, to update the warm_iterations to 5000 and initial_lr to 0.001, you have to pass -o trainer_cfg.warm_iterations=5000 trainer_cfg.initial_lr=0.001. This way you can update other parameters as well.
❓ Question
Hi,
We had a question about the config file.
How should I modify the initial epoch batch learnrate and other parameters during training.
which file
Thanks!
The text was updated successfully, but these errors were encountered: