How did you come about the epochs formula for the schedulers? #1170
Unanswered
timothylimyl
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In cycle based schedulers, the length of the epochs was given as:
It makes sense to me if the
cycle_limit
is 1 and thecycle_mul
=1 then it will just return the initial number of epochs set (self.t_initial
). However, the formula:int(math.floor(-self.t_initial * (self.cycle_mul ** cycles - 1) / (1 - self.cycle_mul)))
is not very clear to me. I search through the docs and there are no info regarding this, also there could be an error with the variable name (t_mul
->cycle_mul
) Reference LinkBeta Was this translation helpful? Give feedback.
All reactions