Skip to main content

MATCHA Logo

MATCHA - Modelling and AI Toolkit for Chemistry in Healthcare Applications

Python Release Unit tests Docs License ChemRxiv

⚠️ Work in progress. MATCHA is under active development and no stable release is available yet. Public APIs, CLI commands, and packaging may change without notice. Pin exact versions if you depend on it, and expect breaking changes between releases.

MATCHA is a general toolkit for molecular property prediction with deep learning models.

Its core design philosophy is to wrap a wide variety of algorithms (e.g. descriptor/fingerprints, SMILES-based, graph-based, conformer-based) into a consistent Python APIs and CLI. Additionally, the package aims to be as agent-friendly as possible, with extensive docs to help LLMs use it and contribute to it.

MATCHA can help solve many typical issues found when developing QSAR models, such as:

  • ⚖️ Quickly comparing many different algorithms to check for statistically meaningful differences
  • 🎯 Pretraining and finetuning models, both supervised and self-supervised
  • 🧩 Multitask learning
  • 🔍 Explainability
  • 📊 Uncertainty estimation

Making models, whether single predictors, ensembles or finetuned foundation models, can be done with two lines of code, starting from RDKIT molecules and numpy arrays:

# training and predicting with a generic model
from matcha.sklearn.graph import ChempropRegressor

model = ChempropRegressor()
model.fit(mols, y)
predictions = model.predict(mols)

# training an ensemble
from matcha.sklearn import Ensemble
from matcha.sklearn.clm import CNNRegressor

ensemble = Ensemble(
  model=CNNRegressor(),
  n_models=10
)
ensemble.fit(mols, y)

# Finetuning a foundation model
from matcha.sklearn.finetuning import FinetuningRegressor

finetuner = FinetuningRegressor(
  path_to_pretrained = "path/to/your/matcha/foundation/model"
)
finetuner.fit(mols, y)

Head over to the documentation to get started!

🛠️ How to contribute

Please check out the contribution guide. We strongly recommend using the amazing Mach10 coding workflows to help contributing to the codebase with agents.

👨🏻‍🔧 Contacts

  • Davide Boldini, (Merck KGaA, Darmstadt, Germany), Contact
  • Lukas Friedrich (Merck KGaA, Darmstadt, Germany), Contact
  • Jakub Gunera (Merck KGaA, Darmstadt, Germany), Contact
  • Christina Schindler (Merck KGaA, Darmstadt, Germany), Contact
  • Daniel Kuhn (Merck KGaA, Darmstadt, Germany), Contact

📖 Citation

If you use MATCHA, please consider citing our preprint:

@article{matcha_2026,
  author = "Boldini, Davide and Friedrich, Lukas and
            Gunera, Jakub and Schindler, Christina and Kuhn, Daniel",
  title  = "{MATCHA}: a toolkit for streamlining molecular property prediction
            for drug discovery applications",
  journal = "ChemRxiv",
  year = "2026",
  doi = "10.26434/chemrxiv.15006766/v1",
  url = "https://chemrxiv.org/doi/abs/10.26434/chemrxiv.15006766/v1",
}

📄 License

Copyright 2026 Merck KGaA, Darmstadt, Germany and/or its affiliates. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

emd_matcha-0.0.19.tar.gz (851.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

emd_matcha-0.0.19-py3-none-any.whl (446.1 kB view details)

Uploaded Python 3

File details

Details for the file emd_matcha-0.0.19.tar.gz.

File metadata

  • Download URL: emd_matcha-0.0.19.tar.gz
  • Upload date:
  • Size: 851.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for emd_matcha-0.0.19.tar.gz
Algorithm Hash digest
SHA256 4838c60b6950e9218c106dab081a3f53a750d48dd5f769f41ef6b53b0e5e5fba
MD5 cec55a8b331e7f316cf31c4556611fa4
BLAKE2b-256 ff37bf67ca6a34324ed056db29b20adeb35fb6cb4a42f0073430c14270356030

See more details on using hashes here.

Provenance

The following attestation bundles were made for emd_matcha-0.0.19.tar.gz:

Publisher: release.yml on emdgroup/matcha

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file emd_matcha-0.0.19-py3-none-any.whl.

File metadata

  • Download URL: emd_matcha-0.0.19-py3-none-any.whl
  • Upload date:
  • Size: 446.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for emd_matcha-0.0.19-py3-none-any.whl
Algorithm Hash digest
SHA256 0c0e3fd324318bd1f45b27d94d5c28bc361b5e253d18df98c41edbde20fa75e4
MD5 600c3225ca2aa01ff8eea042930a2f86
BLAKE2b-256 9a987395a4fe642cdae4524dacc6ef9d3a1902016f51336e5f7a9dce7a379a66

See more details on using hashes here.

Provenance

The following attestation bundles were made for emd_matcha-0.0.19-py3-none-any.whl:

Publisher: release.yml on emdgroup/matcha

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.0.27

2 files

0.0.26

2 files

0.0.25

2 files

0.0.24

2 files

0.0.23

2 files

0.0.22

2 files

0.0.21

2 files

0.0.20

2 files

This release

0.0.19 This release

2 files

0.0.18

2 files

0.0.17

2 files

0.0.16

2 files

0.0.15

2 files

0.0.14

2 files

0.0.13

2 files

0.0.12

2 files

0.0.11

2 files

0.0.10

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page