LCMD db logoLCMD[db]

Getting started

Browse, load, or contribute molecular datasets in the LCMD DB

The LCMD DB is a curated collection of computational chemistry datasets — molecules, reactions, and combinatorial fragment libraries — produced by the Laboratory for Computational Molecular Design at EPFL. Each dataset comes with structures, computed properties, and provenance, accessible via a web UI, a Python client, or a REST API.

Pick your path

Quick taste

from lcmd_db import load_dataset

data = load_dataset("oscar_nhc")
molecules = data.as_dataset("molecules")

mol = molecules[0]
mol.properties["smiles"]
mol.properties["homo"]

See Loading data for filtering, train/test splits, reactions, fragments, and exports.

Reference

The pages on this site cover the platform — what's in it, how to load it, how to contribute. For the canonical client and API references, follow the cards below.

Stuck?

The FAQ covers common questions. For platform issues, file an issue on GitHub.

On this page