We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c599541 commit 137f336Copy full SHA for 137f336
pytorch_optimizer/base/optimizer.py
@@ -154,7 +154,7 @@ def debias(beta: float, step: int) -> float:
154
r"""Adam-style debias correction. Returns `1.0 - beta ** step`.
155
156
:param beta: float. beta.
157
- :param step. int. number of step.
+ :param step: int. number of step.
158
"""
159
return 1.0 - math.pow(beta, step) # fmt: skip
160
0 commit comments