-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Different results between jaxopt.LBFGS and jaxopt.ScipyMinimize(method - 'l-bfgs-b') #275
Comments
Could you try also with
|
I also did try with the zoom line search and did not get the correct results. You're right the problem is nonconvex. |
Nevertheless, I found that I could use list(map(func, *args)) instead of vmap with jaxopt.scipy.minimize and it temporarily solves my problem |
The issue in opened recently (#620) seems related to this. Was there a fix? |
@jithendaraa yes see #323 |
I am trying to run a complex nonlinear optimization on a multi-dimensional data using vmap on the solver.run. Since I could not use the l-bfgs-b method in the ScipyMinimize wrapper, I resorted to the jaxopt.LBFGS. However I realized that the result from the latter was not correct. I would like to know why and what I could do. My minimal working example is shown below. Thanks
The text was updated successfully, but these errors were encountered: