Skip to content

Commit

Permalink
Update core.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-S-Rosen authored Jan 22, 2024
1 parent 440b854 commit 7e19a51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/quacc/recipes/newtonnet/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ def _add_stdev_and_hess(summary: dict[str, Any]) -> dict[str, Any]:
atoms.calc = ml_calculator
results = run_calc(atoms).calc.results
summary["trajectory_results"][i]["hessian"] = results["hessian"]
conf["trajectory_results"][i]["energy_std"] = results["energy_disagreement"]
conf["trajectory_results"][i]["forces_std"] = results["forces_disagreement"]
conf["trajectory_results"][i]["hessian_std"] = results["hessian_disagreement"]
summary["trajectory_results"][i]["energy_std"] = results["energy_disagreement"]
summary["trajectory_results"][i]["forces_std"] = results["forces_disagreement"]
summary["trajectory_results"][i]["hessian_std"] = results["hessian_disagreement"]

return summary

0 comments on commit 7e19a51

Please sign in to comment.