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
`lr_lambda` argument can't be passed to `optim.lr_scheduler.LambdaLR`
`lr_lambda` argument is a lambda function and in case of this configuration file:
"lr_scheduler": "LambdaLR",
"lr_scheduler_parameters": {
"lr_lambda": "lambda x: x"
}
lr_lambda is treated like python string
How can we solve it?:
run eval(lr_lambda) when passing lambda function as argument
Are there other issues that block this solution?:
NA
The text was updated successfully, but these errors were encountered:
Want to contribute to DeepPavlov? Please read the contributing guideline first.
What problem are we trying to solve?:
lr_lambda
is treated like python stringHow can we solve it?:
Are there other issues that block this solution?:
The text was updated successfully, but these errors were encountered: