Drug combination synergy prediction across cancer cell lines, from LLM text embeddings of drugs and cell lines rather than structures or expression.
No providers recorded yet. Browse all providers
The same compound turns up in one drug-synergy screen as MK-8669, in another under a different alias, and in a third only by trade name. Feature pipelines built on molecular fingerprints exclude any drug with no SMILES record; pipelines built on transcriptomes exclude any cell line nobody has profiled. Each synergy dataset has therefore tended to get its own model, trained from scratch on features that do not carry over to the next dataset.
BAITSAO answers this by making the feature space textual. Every drug and every cell line is described by a prompt to GPT-3.5, and that description is turned into a 1536-dimensional vector by the same model's embedding layer. Anything nameable becomes featurizable, so datasets that disagree about identifiers land in one common space. The authors check the representations before relying on them: embeddings of LLM-written drug descriptions reach cosine similarity 0.87 to 0.90 against embeddings of the matching DrugBank indication, summary and background text, with Pearson correlations of at least 0.76 between the two drug-similarity matrices. Substituting these embeddings for RDKit structural features inside CPA also improves out-of-distribution gene-expression prediction under unseen perturbations.
Tianyu Liu, Tinyi Chu and Hongyu Zhao at Yale University, with Xiao Luo in the Department of Computer Science at UCLA, posted the work to bioRxiv in April 2024 and published it in Nature Communications in May 2025. The first preprint version was titled "BAITSAO: Building A Foundation Model for Drug Synergy Analysis Powered by Language Models"; later preprint revisions and the journal version call BAITSAO a unified model, with the pretraining-then-transfer design unchanged.
Each sample concatenates the mean of the constituent drug embeddings, the cell-line embedding and a 16-dimensional learned drug-count embedding. A per-task linear projection feeds a shared two-layer trunk of width 10,240 then 4,096 with batch normalization and ReLU, followed by a linear head per task. Pretraining uses DrugComb v1.5 — 739,652 combinations spanning 4,268 drugs and 288 cell lines — on Loewe synergy regression, relative inhibition for one drug of the pair, and synergy classification thresholded on the Loewe score; separate models cover the ZIP, HSA and Bliss scores. Training runs Adam at a 1e-4 learning rate with 0.2 dropout, and both pretraining and fine-tuning fit on a single GPU.
Against DeepSynergy, MARSY, TreeComb, SVM/SVC, TabNet, BERT, Lasso and DeepDDs under five-fold cross-validation on three datasets, BAITSAO ranks best on three of four metrics and is the most stable of the deep-learning entrants. Widening the shared layer raises both regression PCC and classification ROCAUC along a predictable curve, and a 4,096-wide variant remains usable where 10,240 will not fit. Monte Carlo dropout over 100 inference passes supplies prediction intervals, and SHAP over 1,000 highly variable genes surfaces the genes associated with a given combination's effect — VIM topped the ranking for dexamethasone-dinaciclib, and the selected genes overlapped differentially expressed genes significantly (Fisher's exact test, p = 0.0062).
The model is aimed at prioritizing which drug combinations reach a combinatorial screen. Given only names, a cancer pharmacology group can score thousands of candidate pairs in a panel of cell lines, rank the pairs whose synergy extends across the most lines, and put prediction intervals on triples that no assay has measured. The SHAP pathway turns a prediction into a testable hypothesis about which genes mediate the interaction, and the embedding similarities suggest functional analogues for compounds with no clinical annotation.
BAITSAO shows that general-purpose text embeddings carry enough pharmacological signal to beat structure- and expression-based features on a task where those features were assumed necessary, and that the alias problem which fragments this literature dissolves once identifiers are replaced by descriptions. The authors state the code is MIT-licensed, though the repository ships no LICENSE file and the Zenodo archive of the same release records CC BY-4.0, and the pretrained checkpoints are published on Hugging Face under an MIT tag. Two limits are worth stating: the input representation depends on a commercial embedding API, so reproducing features means paying a third party, and the authors note the model works poorly for early-stage drugs that lack a clear functional or chemical description — precisely the compounds a discovery program most wants scored.
Much of this page is generated or calculated automatically. Flag anything that looks off and we will re-run it.