You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dadapt_adamw.<locals>.update_fn() got an unexpected keyword argument 'value'
prodigy.<locals>.update_fn() got an unexpected keyword argument 'value'
This is inconvenient because it makes the interface non-uniform and requires one to call update in different ways according to the optimizer, which makes code more complex.
Feature request: Allow allupdate methods to receive a value argument. It can be None by default.
I can submit a PR editing dadapt_adamw and prodigy accordingly.
The text was updated successfully, but these errors were encountered:
All
update
methods can receive aparams
argument. It isNone
by default.Most
update
methods can receive avalue
argument, but not all:This is inconvenient because it makes the interface non-uniform and requires one to call
update
in different ways according to the optimizer, which makes code more complex.Feature request: Allow all
update
methods to receive avalue
argument. It can beNone
by default.I can submit a PR editing
dadapt_adamw
andprodigy
accordingly.The text was updated successfully, but these errors were encountered: