Defined properties for datasets¶
DatasetPropertyMixIn
¶
Mixin class for BaseDataset class to add properties that are common to all datasets.
Source code in openqdc/datasets/properties.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
average_n_atoms: int
property
¶
Average number of atoms in a molecule in the dataset.
Returns:
Type | Description |
---|---|
int
|
Average number of atoms in a molecule in the dataset. |
charges: np.ndarray
property
¶
Unique charges in the dataset
Returns:
Type | Description |
---|---|
ndarray
|
Array of the unique charges in the dataset |
chemical_species: np.ndarray
property
¶
Chemical symbols in the dataset
Returns:
Type | Description |
---|---|
ndarray
|
Array of the chemical symbols in the dataset |
min_max_charges: Tuple[int, int]
property
¶
Minimum and maximum charges in the dataset
Returns:
Type | Description |
---|---|
Tuple[int, int]
|
(min_charge, max_charge) |
numbers: np.ndarray
property
¶
Unique atomic numbers in the dataset
Returns:
Type | Description |
---|---|
ndarray
|
Array of the unique atomic numbers in the dataset |