-
Notifications
You must be signed in to change notification settings - Fork 19
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
fitting convergence slow #45
Comments
Hi! BFGS/L-BFGS-B, as a (quasi)second-order optimization methods, has no step size as a parameter. It is determined from the local curvature of loss function. You should check following points:
|
Thanks for the quick reply.
|
|
|
Some tips that you could try:
|
I meant the non-linear part is not non-linear enough (and maybe adding a MLP after the B-basis would help, as suggesting in your PRM fitting paper). I did not know I can include more non-linear terms. This is wonderful news and I will try. Thanks for the discussion. |
is there a paper explain the physics using this [1,1, 1, 0.5, 1, 2, 1, 0.25] ? |
Hello,
I am trying to fit an ACE model to an amorphous covalent material. BFGS is the optimizer used, it works but the convergence is very slow. Is it possible to instruct BFGS / L-BFGS to take a larger step sizes or switch to another optimizer?
On a single GPU (Tesla-V100) 100 steps of BFGS takes around 1 hr. The potential has ~3000 basis functions (2 elements) and the dataset has ~1200 structures, ~140000 atoms.
Thank you for your work
The text was updated successfully, but these errors were encountered: