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
This only occurred for me when I'm specifying additional keyword arguments in the run call, as it somehow tries to apply bounds as an argument to fit_objective here. This behaviour is perhaps a bit ambiguous -- maybe bounds could be an __init__ attribute?
The text was updated successfully, but these errors were encountered:
Thanks for the bug report! I think I know why. We need to register the signature, as done with hyperparams_prox for ProximalGradient: see this line. We need to do the same thing for bounds.
Thanks for the bug report! I think I know why. We need to register the signature, as done with hyperparams_prox for ProximalGradient: see this line. We need to do the same thing for bounds.
Simple example (jaxopt 0.7, python 3.11.3, in a jupyter notebook)
but if i try to differentiate this wrt x:
I get the following stack trace:
This only occurred for me when I'm specifying additional keyword arguments in the
run
call, as it somehow tries to applybounds
as an argument tofit_objective
here. This behaviour is perhaps a bit ambiguous -- maybebounds
could be an__init__
attribute?The text was updated successfully, but these errors were encountered: