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
Are you training each model from scratch for each cycle?
As for each cycle, a new model is being initialized in line 131. And I don't see any checkpoints being loaded after that.
The text was updated successfully, but these errors were encountered:
Ab-34
changed the title
Training each round from scratch?
Training each cycle from scratch?
May 27, 2024
Yes, you can debug deeply. It involves calls the function mmcv.utils.registry.build_from_cfg, which loads the parameters in cfg.model and builds the model from it. The path of the pretrained model is set in cfg.model (torchvision://resnet50), so for each cycle it is trained from scratch.
Thank you very much for your code!
I have a small doubt.
Are you training each model from scratch for each cycle?
As for each cycle, a new model is being initialized in line 131. And I don't see any checkpoints being loaded after that.
The text was updated successfully, but these errors were encountered: