You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# We should of course also look at test errors, which can be done as follows. Depending on the choice of solver, and solver parameters, the test errors might be very poor. Exploring different parameters in different applications can lead to significantly improved predictions.
# If we want to save the fitted potentials to disk to later use we can simply save the hyperparameters and the parameters. At the moment this must be done manually but a more complete and convenient interface for this will be provided, also adding various sanity checks.
Copy file name to clipboardExpand all lines: docs/src_outdated/TiAl_basis.jl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -76,10 +76,10 @@ test = [ACEpotentials.AtomsData(t; weights=weights, v_ref=Vref, datakeys...) for
76
76
77
77
@info("Test Error Tables")
78
78
@info("First Potential: ")
79
-
ACEpotentials.linear_errors(test, pot_1);
79
+
ACEpotentials.compute_errors(test, pot_1);
80
80
81
81
@info("Second Potential: ")
82
-
ACEpotentials.linear_errors(test, pot_2);
82
+
ACEpotentials.compute_errors(test, pot_2);
83
83
84
84
# If we want to save the fitted potentials to disk to later use we can use one of the following commands: the first saves the potential as an `ACE1.jl` compatible potential, while the second line exports it to a format that can be ready by the `pacemaker` code to be used within LAMMPS. This functionality is currently disabled.
0 commit comments