summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano <55825613+luevano@users.noreply.github.com>2019-12-12 03:32:27 -0700
committerDavid Luevano <55825613+luevano@users.noreply.github.com>2019-12-12 03:32:27 -0700
commit46cd12e1e5c4fb1879e39ae4968a82a9c95fcf92 (patch)
treee6c21bb10c491e0f0f0d5aaf7b6661944a5871e7
parentec9f69ad7521c189b5d6808c05031cf9d40723de (diff)
Reflect added features
-rw-r--r--main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index a7e608644..679bb4eea 100644
--- a/main.py
+++ b/main.py
@@ -92,9 +92,9 @@ printc('\tL-J matrices calculation took {:.4f} seconds.'.format(toc-tic),
Fore.GREEN)
# Coulomb Matrix ML
-do_ml(cm_data, 'CM', energy_pbe0, 1000, 100, 1000.0)
+do_ml(cm_data, energy_pbe0, 1000, 100, sigma=1000.0, desc_type='CM')
# Lennard-Jones Matrix ML
-do_ml(ljm_data, 'L-JM', energy_pbe0, 1000, 100, 1000.0)
+do_ml(ljm_data, energy_pbe0, 1000, 100, sigma=1000.0, desc_type='L-JM')
# End of program
end_time = time.perf_counter()