We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
verbose=False
NonlinearCG
def loss(U: UType): return -model.log_prob_likelihood(U, allow_nan=False) solver = NonlinearCG( fun=loss, jit=True, unroll=False, verbose=False ) results = solver.run(init_params=init_U_point)
It still prints out linesearch debug lines like:
WARNING: jaxopt.ZoomLineSearch: Returning stepsize with sufficient decrease but curvature condition not satisfied. INFO: jaxopt.ZoomLineSearch: Iter: 9 Minimum Decrease & Curvature Errors (stop. crit.): 3.3350500139306405e-09 Stepsize:0.00016820144082885236 Decrease Error:0.0 Curvature Error:3.3350500139306405e-09
The text was updated successfully, but these errors were encountered:
Thanks for bringing this up. #573 should fix the issue, but I need to investigate the failing tests.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
It still prints out linesearch debug lines like:
The text was updated successfully, but these errors were encountered: