Bugfix for batch multiplier initialization in training.py
The batch multiplier is implemented via a `count`, which is reset to `self.batch_multiplier-1` every time an update occurs. It is initialized with `0`, however, rather than `self.batch_multiplier-1`. This commit fixes the issue and initializes `count` with `self.batch_multiplier-1`.
Loading
Please register or sign in to comment