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
In the README it is said about early stopping that 'This feature can be turned off by passing 0'. This is, however, will not work. self.early_stop will be set to 0 in:
I'll make a PR after doing some test. (or I'll appreciate if you make one)
Sorry for late response on this and other issue(#79) you reported. That's because the version of template I'm currently using for most of my projects is on hydra_DDP branch instead of master branch.
In the README it is said about early stopping that 'This feature can be turned off by passing 0'. This is, however, will not work.
self.early
_stop will be set to 0 in:pytorch-template/base/base_trainer.py
Line 34 in 85c5535
and later during training this condition will be true if current epoch was worse than previous:
pytorch-template/base/base_trainer.py
Line 91 in 85c5535
leading to the output:
Validation performance didn't improve for 0 epochs. Training stops.
The text was updated successfully, but these errors were encountered: