Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 1.74 KB

README.md

File metadata and controls

65 lines (44 loc) · 1.74 KB

LnQM dataset

Python code style: black

This is the offical repository of the LnQM dataset developed by the Grimme group in Bonn.

LnQM Dataset

Data

The data is available under: https://zenodo.org/records/10406124

Setup

We provide a dataset class and a sample representation based on pytorch. For this purpose please install the package requirements:

conda env create --file requirements.yml

Basic usage of the dataset:

from lnqm import LnQM_Dataset

# load LnQM from disk
dataset = LnQM_Dataset(path_to_hdf5="/path/to/lnqm.h5")

# loop over each sample in the dataset
for data in dataset:
    # ...
    # do sth. with each sample
    # ...

    # e.g. access properties
    print(data.uid)

For a more detailed description of the features included see the datamodel in LnQM_Sample. If required, a Data object can be converted via:

from lnqm import LnQM_Sample
sample = LnQM_Sample(**data)

Citations

When using or referencing to the LnQM please cite:

License

CC BY NC 4.0

This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.