-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from cesmix-mit/opt-ace-example-doc
IAP hyperparameter optimization example + documentation.
- Loading branch information
Showing
13 changed files
with
328 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[deps] | ||
AtomsBase = "a963bdd2-2df7-4f54-a1ee-49d51e6be12a" | ||
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" | ||
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" | ||
DisplayAs = "0b91fe84-8a4c-11e9-3e1d-67c38462b6d6" | ||
Hyperopt = "93e5fe13-2215-51db-baaf-2e9a34fb2712" | ||
InteratomicPotentials = "a9efe35a-c65d-452d-b8a8-82646cd5cb04" | ||
IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" | ||
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" | ||
PotentialLearning = "82b0a93c-c2e3-44bc-a418-f0f89b0ae5c2" | ||
ProgressBars = "49802e3a-d2f1-5c88-81d8-b72133a6f568" | ||
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" | ||
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" | ||
UnitfulAtomic = "a7773ee8-282e-5fa2-be4e-bd808c38a91a" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
# # Optimize ACE hyper-parameters: minimize force time and fitting error. | ||
|
||
# ## a. Load packages, define paths, and create experiment folder. | ||
|
||
# Load packages. | ||
using AtomsBase, InteratomicPotentials, PotentialLearning | ||
using Unitful, UnitfulAtomic | ||
using LinearAlgebra, Random, DisplayAs | ||
using DataFrames, Hyperopt | ||
|
||
# Define paths. | ||
path = joinpath(dirname(pathof(PotentialLearning)), "../examples/Opt-ACE-aHfO2") | ||
ds_path = "$path/../data/a-HfO2/a-HfO2-300K-NVT-6000.extxyz" | ||
res_path = "$path/results/"; | ||
|
||
# Load utility functions. | ||
include("$path/../utils/utils.jl") | ||
|
||
# Create experiment folder. | ||
run(`mkdir -p $res_path`); | ||
|
||
# ## b. Load atomistic dataset and split it into training and test. | ||
|
||
# Load atomistic dataset: atomistic configurations (atom positions, geometry, etc.) + DFT data (energies, forces, etc.) | ||
ds = load_data(ds_path, uparse("eV"), uparse("Å"))[1:1000] | ||
|
||
# Split atomistic dataset into training and test | ||
n_train, n_test = 50, 50 # Only 50 samples per dataset are used in this example. | ||
conf_train, conf_test = split(ds, n_train, n_test) | ||
|
||
|
||
# ## c. Hyper-parameter optimization. | ||
|
||
# Define a custom loss function. Here, we minimize fitting error and force calculation time. | ||
# Possible metrics are `e_mae`, `e_rmse`, `e_rsq`, `f_mae`, `f_rmse`, `f_rsq`, and `time_us`. | ||
function custom_loss( | ||
metrics::OrderedDict | ||
) | ||
e_mae = metrics[:e_mae] | ||
f_mae = metrics[:f_mae] | ||
time_us = metrics[:time_us] | ||
e_mae_max = 0.05 # eV/atom | ||
f_mae_max = 0.05 # eV/Å | ||
w_e = e_mae/e_mae_max | ||
w_f = f_mae/f_mae_max | ||
w_t = 1.0E-3 | ||
loss = w_e * e_mae + w_f * e_mae + w_t * time_us | ||
return loss | ||
end; | ||
|
||
# Define model and hyper-parameter value ranges to be optimized. | ||
model = ACE | ||
pars = OrderedDict( :body_order => [2, 3, 4], | ||
:polynomial_degree => [3, 4, 5], | ||
:rcutoff => [4.5, 5.0, 5.5], | ||
:wL => [0.5, 1.0, 1.5], | ||
:csp => [0.5, 1.0, 1.5], | ||
:r0 => [0.5, 1.0, 1.5]); | ||
|
||
# Use random sampling to find the optimal hyper-parameters. | ||
iap, res = hyperlearn!(model, pars, conf_train; | ||
n_samples = 10, sampler = RandomSampler(), | ||
loss = custom_loss, ws = [1.0, 1.0], int = true); | ||
|
||
# Save and show results. | ||
@save_var res_path iap.β | ||
@save_var res_path iap.β0 | ||
@save_var res_path iap.basis | ||
@save_dataframe res_path res | ||
res | ||
|
||
# Plot error vs time. | ||
err_time = plot_err_time(res) | ||
@save_fig res_path err_time | ||
DisplayAs.PNG(err_time) | ||
|
||
|
||
# Alternatively, use latin hypercube sampling to find the optimal hyper-parameters. | ||
iap, res = hyperlearn!(model, pars, conf_train; | ||
n_samples = 3, sampler = LHSampler(), | ||
loss = custom_loss, ws = [1.0, 1.0], int = true); | ||
|
||
# Save and show results. | ||
@save_var res_path iap.β | ||
@save_var res_path iap.β0 | ||
@save_var res_path iap.basis | ||
@save_dataframe res_path res | ||
res | ||
|
||
# Plot error vs time. | ||
err_time = plot_err_time(res) | ||
@save_fig res_path err_time | ||
DisplayAs.PNG(err_time) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export hyperlearn! | ||
|
||
include("linear-hyperlearn.jl") | ||
include("utils.jl") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
create_ho(x) = Hyperoptimizer(1) | ||
|
||
""" | ||
function hyperloss( | ||
metrics::OrderedDict: | ||
w_e = 1.0, | ||
w_f = 1.0, | ||
w_t = 1.0E-3, | ||
e_mae_max = 0.05, | ||
f_mae_max = 0.05 | ||
) | ||
`metrics`: OrderedDict object with metrics of the fitting process. | ||
- Mean absolute error of energies: e_mae. | ||
- Mean absolute error of forces: f_mae. | ||
- Time per force per atom: time_us. | ||
`w_e`: energy weight. | ||
`w_f`: force weight. | ||
`w_t`: time weight. | ||
`e_mae_max`: maximum mean absolute error for energies. | ||
`f_mae_max`: maximum mean absolute error for forces. | ||
Loss function for hyper-parameter optimization: minimizes fitting error and time. | ||
""" | ||
function hyperloss( | ||
metrics::OrderedDict; | ||
w_e = 1.0, | ||
w_f = 1.0, | ||
w_t = 1.0E-3, | ||
e_mae_max = 0.05, | ||
f_mae_max = 0.05 | ||
) | ||
e_mae = metrics[:e_mae] | ||
f_mae = metrics[:f_mae] | ||
time_us = metrics[:time_us] | ||
w_e = w_e * e_mae/e_mae_max | ||
w_f = w_f * f_mae/f_mae_max | ||
loss = w_e * e_mae + w_f * e_mae + w_t * time_us | ||
return loss | ||
end; | ||
|
||
""" | ||
function hyperlearn!( | ||
model::DataType, | ||
pars::OrderedDict, | ||
conf_train::DataSet; | ||
n_samples = 5, | ||
sampler = RandomSampler(), | ||
loss = loss, | ||
ws = [1.0, 1.0], | ||
int = true | ||
) | ||
Hyper-parameter optimization of linear interatomic potentials. | ||
""" | ||
function hyperlearn!( | ||
model::DataType, | ||
pars::OrderedDict, | ||
conf_train::DataSet; | ||
n_samples = 5, | ||
sampler = RandomSampler(), | ||
loss = loss, | ||
ws = [1.0, 1.0], | ||
int = true | ||
) | ||
s = "create_ho(sampler) = Hyperoptimizer($n_samples, sampler, " * | ||
join("$k = $v, " for (k, v) in pars) * ")" | ||
eval(Meta.parse(s)) | ||
ho = Base.invokelatest(create_ho, sampler) | ||
if (ho.sampler isa LHSampler) || (ho.sampler isa CLHSampler) | ||
Hyperopt.init!(ho.sampler, ho) | ||
end | ||
species = get_species(conf_train) | ||
for (i, state...) in ho | ||
basis = model(; species = species, state...) | ||
iap = LBasisPotential(basis) | ||
## Compute energy and force descriptors | ||
e_descr_new = compute_local_descriptors(conf_train, iap.basis, pbar = false) | ||
f_descr_new = compute_force_descriptors(conf_train, iap.basis, pbar = false) | ||
ds_cur = DataSet(conf_train .+ e_descr_new .+ f_descr_new) | ||
## Learn | ||
learn!(iap, ds_cur, ws, int) | ||
## Get true and predicted values | ||
e, e_pred = get_all_energies(ds_cur), get_all_energies(ds_cur, iap) | ||
f, f_pred = get_all_forces(ds_cur), get_all_forces(ds_cur, iap) | ||
## Compute metrics | ||
e_mae, e_rmse, e_rsq = calc_metrics(e_pred, e) | ||
f_mae, f_rmse, f_rsq = calc_metrics(f_pred, f) | ||
time_us = estimate_time(conf_train, iap) * 10^6 | ||
metrics = OrderedDict( :e_mae => e_mae, | ||
:e_rmse => e_rmse, | ||
:e_rsq => e_rsq, | ||
:f_mae => f_mae, | ||
:f_rmse => f_rmse, | ||
:f_rsq => f_rsq, | ||
:time_us => time_us) | ||
## Compute multi-objetive loss based on error and time | ||
l = hyperloss(metrics) | ||
## Print results | ||
print("E_MAE:$(round(e_mae; digits=3)) eV/atom, ") | ||
print("F_MAE:$(round(f_mae; digits=3)) eV/Å, ") | ||
println("Time per force per atom:$(round(time_us; digits=3)) µs") | ||
flush(stdout) | ||
## Return loss | ||
push!(ho.history, [v for v in state]) | ||
push!(ho.results, (l, metrics, iap)) | ||
end | ||
iap = ho.minimum[3] | ||
res = get_results(ho) | ||
return iap, res | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
# Estimate force calculation time | ||
function estimate_time(confs, iap; batch_size = 50) | ||
if length(confs) < batch_size | ||
batch_size = length(confs) | ||
end | ||
random_selector = RandomSelector(length(confs), batch_size) | ||
inds = PotentialLearning.get_random_subset(random_selector) | ||
time = @elapsed begin | ||
f_descr = compute_force_descriptors(confs[inds], | ||
iap.basis, | ||
pbar = false) | ||
ds = DataSet(confs[inds] .+ f_descr) | ||
f_pred = get_all_forces(ds, iap) | ||
end | ||
n_atoms = sum(length(get_system(c)) for c in confs[inds]) | ||
return time / n_atoms | ||
end | ||
|
||
# Get results from the hyperoptimizer | ||
function get_results(ho) | ||
column_names = string.(vcat(keys(ho.results[1][2])..., ho.params...)) | ||
rows = [[values(r[2])..., p...] for (r, p) in zip(ho.results, ho.history)] | ||
results = DataFrame([Any[] for _ in 1:length(column_names)], column_names) | ||
[push!(results, r) for r in rows] | ||
return sort!(results) | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.