diff options
author | David Luevano Alvarado <55825613+luevano@users.noreply.github.com> | 2020-02-25 21:06:10 -0700 |
---|---|---|
committer | David Luevano Alvarado <55825613+luevano@users.noreply.github.com> | 2020-02-25 21:06:10 -0700 |
commit | 3c8a53f42a4a90d3cc235fc4e4132556b9cd74fa (patch) | |
tree | 259e08f4075b45cbb5dab225e182ba96852e3ebb | |
parent | 339954ffc95c29327d33e3e2697fea1cf8e9427d (diff) |
Rename function
-rw-r--r-- | ml_exp/qm7db.py (renamed from ml_exp/read_qm7_data.py) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ml_exp/read_qm7_data.py b/ml_exp/qm7db.py index 3017ac429..e584bc123 100644 --- a/ml_exp/read_qm7_data.py +++ b/ml_exp/qm7db.py @@ -27,10 +27,10 @@ import random # 'hof_qm7.txt.txt' retrieved from # https://github.com/qmlcode/tutorial -def read_db_data(zi_data, - data_path, - r_seed=111, - return_atoms=False): +def qm7db(zi_data, + data_path, + r_seed=111, + return_atoms=False): """ Reads molecule database and extracts its contents as usable variables. |