how to reduce RMS force error #823
Unanswered
changxiaoju
asked this question in
Q&A
Replies: 1 comment 3 replies
-
From 1 to 2, this will definitely cause the large decrease of energy fitting accuracy, since the factor of forces is always 10000 and far larger than the factor of energies. Then energy information is nearly not involved. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
To reduce the force error of my model, I made the following change in the input.json

for model1:
"loss": { "start_pref_e": 0.02, "limit_pref_e": 1, "start_pref_f": 1000, "limit_pref_f": 1, "start_pref_v": 0.02, "limit_pref_v": 1 },
for model2:
"loss" : { "start_pref_e": 1, "limit_pref_e": 1, "start_pref_f": 10000, "limit_pref_f": 10000, "start_pref_v": 1, "limit_pref_v": 1 },
that i increase the training weight of force,but it results in a minor derease of force error and the increase of energy error:
Beta Was this translation helpful? Give feedback.
All reactions