forked from lrjconan/LanczosNetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
710 additions
and
387 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
--- | ||
exp_name: qm8_gpnn | ||
exp_dir: exp/qm8_gpnn | ||
runner: QM8Runner | ||
use_gpu: true | ||
gpus: [0] | ||
# seed: 1234 | ||
# seed: 5678 | ||
seed: 9012 | ||
dataset: | ||
loader_name: QM8Data | ||
name: chemistry | ||
data_path: data/QM8/preprocess | ||
meta_data_path: data/QM8/QM8_meta.p | ||
num_atom: 70 | ||
num_bond_type: 6 | ||
model: | ||
name: GPNN | ||
num_partition: 3 | ||
num_prop: 10 | ||
num_prop_cluster: 1 | ||
num_prop_cut: 1 | ||
input_dim: 64 | ||
hidden_dim: 128 | ||
update_func: GRU | ||
output_dim: 16 | ||
msg_func: MLP | ||
aggregate_type: avg | ||
num_layer: 1 | ||
loss: MSE | ||
train: | ||
optimizer: Adam | ||
lr_decay: 0.1 | ||
lr_decay_steps: [10000] | ||
num_workers: 8 | ||
max_epoch: 200 | ||
batch_size: 64 | ||
display_iter: 100 | ||
snapshot_epoch: 10000 | ||
valid_epoch: 1 | ||
lr: 1.0e-4 | ||
wd: 0.0e-4 | ||
momentum: 0.9 | ||
shuffle: true | ||
is_resume: false | ||
resume_model: None | ||
test: | ||
batch_size: 64 | ||
num_workers: 0 | ||
# test_model: exp/qm8_gpnn/GPNN_chemistry_2019-Jan-02-20-37-00_18321/model_snapshot_best.pth | ||
# test_model: exp/qm8_gpnn/GPNN_chemistry_2019-Jan-02-23-18-03_18654/model_snapshot_best.pth | ||
test_model: exp/qm8_gpnn/GPNN_chemistry_2019-Jan-02-23-18-20_19110/model_snapshot_best.pth |
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,12 @@ | ||
QM8 Dataset | ||
Abstract | ||
Due to its favorable computational efficiency, time-dependent (TD) density functional theory(DFT) enables the prediction of electronic spectra in a high-throughput manner across chemical space. Its predictions, however, can be quite inaccurate. We resolve this issue with machine learning models trained on deviations of reference second-order approximate coupled-cluster (CC2) singles and doubles spectra from TDDFT counterparts, or even from DFT gap. We applied this approach to low-lying singlet-singlet vertical electronic spectra of over 20 000 synthetically feasible small organic molecules with up to eight CONF atoms. The prediction errors decay monotonously as a function of training set size. For a training set of 10 000 molecules, CC2 excitation energies can be reproduced to within ±0.1 eV for the remaining molecules. Analysis of our spectral database via chromophore counting suggests that even higher accuracies can be achieved. Based on the evidence collected, we discuss open challenges associated with data-driven modeling of high-lying spectra and transition intensities. | ||
|
||
Download | ||
ftp://ftp.aip.org/epaps/journ_chem_phys/E-JCPSA6-143-043532/gdb8_22k_elec_spec.txt | ||
|
||
How to cite | ||
When using this dataset, please make sure to cite the following two papers: | ||
|
||
L. Ruddigkeit, R. van Deursen, L. C. Blum, J.-L. Reymond, Enumeration of 166 billion organic small molecules in the chemical universe database GDB-17, J. Chem. Inf. Model. 52, 2864–2875, 2012. | ||
R. Ramakrishnan, M. Hartmann, E. Tapavicza, O. A. von Lilienfeld, Electronic Spectra from TDDFT and Machine Learning in Chemical Space, J. Chem. Phys. 143 084111, 2015. |
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
Oops, something went wrong.