mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-09 23:12:02 +00:00
fix deprecation warning
This commit is contained in:
parent
e643006887
commit
6f8e244155
|
@ -1,5 +1,5 @@
|
|||
from enum import Enum
|
||||
from logging import warn
|
||||
from logging import warning
|
||||
from pathlib import Path
|
||||
from typing import Annotated, Any, Callable, Iterable, Literal, Type, TypeVar
|
||||
|
||||
|
@ -132,7 +132,7 @@ class OptimizerConfig(BaseModel):
|
|||
)
|
||||
case Optimizers.Prodigy:
|
||||
if self.learning_rate != 1.0:
|
||||
warn("Prodigy learning rate is not 1.0, this might cause instability.")
|
||||
warning("Prodigy learning rate is not 1.0, this might cause instability.")
|
||||
return Prodigy(
|
||||
lr=self.learning_rate,
|
||||
params=params,
|
||||
|
|
Loading…
Reference in a new issue