Evaluates the quality of pretrained molecular representation learning models on downstream ADMET prediction tasks. It probes whether modern deep learning architectures (GNNs, transformers) can outperform traditional chemical fingerprints and established baselines like ECFP. Use when the user wants to benchmark on Collection of ADMET endpoint datasets, or asks about evaluating this task. Reports Mean AUROC.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill molecular-embedding-benchmark-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Molecular Embedding Benchmark Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-molecular-embedding-benchmark-eval)More formats (shields.io, HTML) on the badges page.
---
name: molecular-embedding-benchmark-eval
description: Evaluates the quality of pretrained molecular representation learning models on downstream ADMET prediction tasks. It probes whether modern deep learning architectures (GNNs, transformers) can outperform traditional chemical fingerprints and established baselines like ECFP. Use when the user wants to benchmark on Collection of ADMET endpoint datasets, or asks about evaluating this task. Reports Mean AUROC.
metadata:
skill_kind: dataset_eval
source_arxiv: 2508.06199
bibtex_key: praski2025benchmarking
confidence: high
---
# molecular-embedding-benchmark-eval
> Benchmarking Pretrained Molecular Embedding Models For Molecular Representation Learning — Praski et al. (2025) (arXiv:2508.06199, 2025)
## What this evaluates
Evaluates the quality of pretrained molecular representation learning models on downstream ADMET prediction tasks. It probes whether modern deep learning architectures (GNNs, transformers) can outperform traditional chemical fingerprints and established baselines like ECFP.
## Datasets
- **Collection of ADMET endpoint datasets** — total ?; splits: test (-1); repo https://github.com/scikit-fingerprints/benchmarking_molecular_models
## Metrics
- `Mean AUROC` **(primary)** — range: [0, 1]
- Area Under the Receiver Operating Characteristic curve averaged across all datasets. Higher is better.
- `Mean rank` — range: other
- Average rank of a model across all datasets, where rank 1 is the best performing model on that dataset. Lower is better.
- `Bayesian Bradley-Terry (BBT) decision` — range: other
- Probabilistic comparison of models against a baseline (ECFP) using a hierarchical Bayesian model. Categorizes models as better, practically equivalent (within ROPE), worse, or undecidable.
## Input / output format
**Input**: Molecular structures represented as SMILES strings, SELFIES, or molecular graphs.
**Output**: Predicted probabilities for ADMET endpoint classification.
## Scoring recipe
```python
auc_scores = [auroc(y_true, y_pred) for dataset in datasets]
mean_auroc = sum(auc_scores) / len(auc_scores)
ranks = [rankdata(auroc_scores_per_model)[model_idx] for dataset in datasets]
mean_rank = sum(ranks) / len(ranks)
bbt_decisions = bayesian_bradley_terry(y_true, y_pred, baseline='ECFP', rope=(0.25, 0.75), tie_threshold=0.0001)
```
## Common pitfalls
- Mean AUROC is sensitive to outliers on unusually easy or hard datasets.
- Mean rank ignores the magnitude of performance differences between models.
- Prior evaluations often lacked rigorous statistical testing, leading to overclaiming of model superiority.
## Evidence (verbatim from paper)
> The aggregated results of the model, the average rank, and the AUROC, are shown in Table [1]. Aggregated metrics alone, such as mean AUROC and mean rank, are insufficient for a fair comparison of the models (Demšar [2006]; Wainer [2023]). Mean AUROC is sensitive to outliers (e.g., datasets unusually easy for certain models), while mean rank ignores the magnitude of performance differences. To address these limitations, we use the BBT model, designed specifically for robust multi-model comparisons.
## Citation
```bibtex
@misc{praski2025benchmarking,
title={Benchmarking Pretrained Molecular Embedding Models For Molecular Representation Learning},
author={Praski et al. (2025)},
year={2025},
note={arXiv:2508.06199}
}
```
- arXiv: 2508.06199
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!