Views
No views yet
predict_admet, get_molecule_profile, and batch_profile when you self-host the addie-models compute service.| Group | Heads | Format |
|---|---|---|
| Base ADMET | 31 (production/) — 4 cardiotoxicity time-windows, 5 CYP450 inhibition, 7 nuclear-receptor, 5 stress-response, 9 toxicity, binding affinity | CatBoost model.tar.gz |
| TDC SOTA overlay | 22 (models/) — CYP (Veith), CYP substrate, clearance, DILI, hERG, Ames, Caco-2, HIA, bioavailability, lipophilicity, solubility, BBB, PPBR, VDss, half-life, LD50, P-gp substrate | CatBoost .cbm (5-seed ensembles for winners), Chemprop .ckpt, TorchScript .pt |
| Calibrators | per-endpoint calibrator.json, DICTrank + DILI de-flatten calibration | JSON |
cyp2d6_veith, cyp3a4_veith, cyp3a4_substrate_carbonmangels, clearance_hepatocyte_az, dili) are 5-seed ensembles that meet or beat the published TDC leaderboard on held-out test splits.1docker run -e STORAGE_BACKEND=HF -p 8025:8025 ghcr.io/novomcp/addie-models:latest
2# on first boot the service pulls this repo, then serves /addie/process1export STORAGE_BACKEND=HF
2export HF_MODEL_REPO=NovoMCP/addie-models
3python3 main.pyhuggingface_hub:1from huggingface_hub import snapshot_download
2local_dir = snapshot_download("NovoMCP/addie-models")
3# base heads under local_dir/production/, TDC overlay under local_dir/models/ppbr_az, clearance_hepatocyte_az, clearance_microsome_az, lipophilicity_astrazeneca. Source data licensed CC-BY-SA 3.0; credited here per that license.solubility_aqsoldb. Source data CC-BY 4.0; credited here per that license.NOTICE for the full citation list.1@software{novomcp_addie_models,
2 title = {NovoMCP addie-models: ADMET prediction weights},
3 author = {Harrison, Ari and contributors},
4 url = {https://github.com/NovoMCP/addie-models},
5 year = {2026}
6}