mirror of
https://github.com/huggingface/transformers.git
synced 2025-08-01 18:51:14 +06:00
schedule fix
This commit is contained in:
parent
23bd2eebf5
commit
5fed5bb3d6
@ -38,7 +38,7 @@ class LRSchedule(object):
|
|||||||
:param kw:
|
:param kw:
|
||||||
"""
|
"""
|
||||||
super(LRSchedule, self).__init__(**kw)
|
super(LRSchedule, self).__init__(**kw)
|
||||||
if t_total <= 0:
|
if t_total < 0:
|
||||||
logger.warning("t_total value of {} results in schedule not being applied".format(t_total))
|
logger.warning("t_total value of {} results in schedule not being applied".format(t_total))
|
||||||
if not 0.0 <= warmup < 1.0 and not warmup == -1:
|
if not 0.0 <= warmup < 1.0 and not warmup == -1:
|
||||||
raise ValueError("Invalid warmup: {} - should be in [0.0, 1.0[ or -1".format(warmup))
|
raise ValueError("Invalid warmup: {} - should be in [0.0, 1.0[ or -1".format(warmup))
|
||||||
|
Loading…
Reference in New Issue
Block a user