Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,60 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
## Overview
|
| 6 |
+
|
| 7 |
+
- 3.4M 3D small molecule structures and thier associated HOMO-LUMO energy gap and SMILES string.
|
| 8 |
+
- Molecules range from 2 to 53 atoms (including hydrogens)
|
| 9 |
+
- 22 different elements appear in throughout this dataset
|
| 10 |
+
|
| 11 |
+
Practical Relevance: Density Functional Theory (DFT) is a powerful and widely-used quantum physics calculation that can accurately predict various molecular properties such as the shape of molecules, reactivity, responses by electromagnetic fields. However, DFT is time-consuming and takes up to several hours per small molecule. Using fast and accurate ML models to approximate DFT enables diverse downstream applications, such as property prediction for organic photovaltaic devices and structure-based virtual screening for drug discovery.
|
| 12 |
+
|
| 13 |
+
Overview: PCQM4Mv2 is a quantum chemistry dataset originally curated under the PubChemQC project. Based on the PubChemQC, we define a meaningful ML task of predicting DFT-calculated HOMO-LUMO energy gap of molecules given their 2D molecular graphs. The HOMO-LUMO gap is one of the most practically-relevant quantum chemical properties of molecules since it is related to reactivity, photoexcitation, and charge transport. Moreover, predicting the quantum chemical property only from 2D molecular graphs without their 3D equilibrium structures is also practically favorable. This is because obtaining 3D equilibrium structures requires DFT-based geometry optimization, which is expensive on its own.
|
| 14 |
+
|
| 15 |
+
Prediction task and evaluation metric: The task is graph regression: predicting the HOMO-LUMO energy gap in electronvolt (eV) given 2D molecular graphs. Mean Absolute Error (MAE) is used as evaluation metric.
|
| 16 |
+
|
| 17 |
+
more details on this dataset and benchmarking can be found here
|
| 18 |
+
https://ogb.stanford.edu/docs/lsc/pcqm4mv2/
|
| 19 |
+
|
| 20 |
+
### Preprocessing
|
| 21 |
+
56 structures in the original training set have been removed after rdkit failed to load and parse them. The original indicies of these structures are listed in 'invalid_structures.csv'
|
| 22 |
+
|
| 23 |
+
in both the test-dev and test-challange splits 3 SMILES strings were removed after rdkit failed to parse them. The original indicies are listed in 'invalid_test-dev.csv' and 'invalid_test-challenge.csv'.
|
| 24 |
+
|
| 25 |
+
### Data Splits
|
| 26 |
+
Original datasplit: 90/2/4/4
|
| 27 |
+
|
| 28 |
+
- 'train' : 3378550 molecules, 3D structures, SMILES and labels
|
| 29 |
+
- 'valid' : 73545 molecules, SMILES and labels only
|
| 30 |
+
- 'test-dev' : 147037 molecules, labels only
|
| 31 |
+
- 'test-challange' : 147432 molecules, labels only
|
| 32 |
+
|
| 33 |
+
### Node Labels
|
| 34 |
+
None
|
| 35 |
+
|
| 36 |
+
### Molecule Labels
|
| 37 |
+
- 'SMILES' : SMILES string
|
| 38 |
+
|
| 39 |
+
- 'gap' : the HOMO-LUMO energy gap in electronvolt (eV)
|
| 40 |
+
|
| 41 |
+
### Structure Distribution
|
| 42 |
+
number of points (atoms including hydrogens)
|
| 43 |
+
|
| 44 |
+
SEE GITHUB PAGE FOR FIGURES
|
| 45 |
+
|
| 46 |
+

|
| 47 |
+
|
| 48 |
+

|
| 49 |
+
|
| 50 |
+

|
| 51 |
+
|
| 52 |
+

|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
## Sources
|
| 56 |
+
Data origin:
|
| 57 |
+
https://ogb.stanford.edu/docs/lsc/pcqm4mv2/
|
| 58 |
+
|
| 59 |
+
Original publication
|
| 60 |
+
https://pubs.acs.org/doi/full/10.1021/acs.jcim.7b00083
|