Skip to content

Commit f82adca

Browse files
authored
Merge pull request #70 from lxr2/master
fix: ContinualModel.meta_begin_epoch
2 parents 87382d8 + 8509fd3 commit f82adca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/utils/continual_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ def meta_begin_epoch(self, epoch: int, dataset: 'ContinualDataset') -> None:
340340
Takes care of dropping updating some counters.
341341
"""
342342
self._epoch_iteration = 0
343-
self.end_epoch(epoch, dataset)
343+
self.begin_epoch(epoch, dataset)
344344

345345
def meta_end_epoch(self, epoch: int, dataset: 'ContinualDataset') -> None:
346346
"""

0 commit comments

Comments
 (0)