AI & ML interests
None defined yet.
Recent Activity
Aurigene AI
We are the AI and computational discovery group at Aurigene Pharmaceutical Services Limited. This organization is our public home for open models, benchmark datasets and browser-based tools that support AI-driven drug discovery β from picking a target, through generating and triaging chemical matter, to planning the synthesis and reading the literature that justifies all of it.
Everything here is open, permissively licensed, and mirrored from the original authors with full attribution.
π§ Start here β three tools that run in your browser
No GPU, no login, no install. These are static Spaces, so they never sleep and load instantly.
![]() |
![]() |
![]() |
π§ͺ Molecule Explorer β
Paste a SMILES string or a compound name. Get the 2D structure, physicochemical descriptors, Lipinski / Veber / Ghose / Egan / Muegge rules, an approximate QED, highlighted structural alerts, nearest approved drugs by Tanimoto similarity, and batch profiling with CSV export. RDKit runs as WebAssembly, so nothing is uploaded.
𧬠Protein Target Explorer β
Enter a UniProt accession, a human gene symbol or a PDB ID. Get the target's annotation, its AlphaFold model coloured by per-residue confidence, every experimental structure with bound ligands, DrugBank drugs that hit it, and full sequence physicochemistry.
πΊοΈ Drug Discovery Model Hub β
A live dashboard of this whole catalogue, mapped onto the five stages of discovery, with copy-paste transformers snippets and adoption statistics pulled from the Hub API.
π¬ Models by discovery stage
Stage 01 β Target identification
Understand the protein before you try to drug it.
- ESM-2 650M β Meta's protein language model. Per-residue embeddings that transfer to binding-site prediction, variant-effect scoring and structure-aware featurisation.
- ESMFold v1 β end-to-end structure prediction from a single sequence, no MSA step. Folds orphan sequences and designed constructs in seconds.
- MAMMAL biomed multi-alignment 458M β IBM's multimodal model trained on over 2 billion biological samples; handles drugβtarget interaction and binding-affinity prediction.
Stage 02 β Hit generation
Generate and screen chemical matter.
- MoLFormer-XL β IBM's linear-attention SMILES encoder pretrained on 1.1 billion molecules from ZINC and PubChem. The workhorse for embedding a library.
- ChemFM-1B β a 1 B-parameter chemistry foundation model trained on UniChem, for generation, property prediction and reaction tasks.
- GPT-2 ZINC 87M β small autoregressive SMILES generator trained on ~480 M ZINC molecules; samples de novo structures on a laptop CPU.
Stage 03 β Lead optimization
Predict properties, refine the series.
- ChemBERTa-2 77M MTR β DeepChem's chemical language model pretrained with multitask regression over 200 RDKit descriptors. A strong, cheap ADMET baseline.
- MMELON multi-view 84M β fuses SMILES, 2D graph and rendered image views of a molecule into one embedding for property prediction and virtual screening.
Stage 04 β Synthesis planning
Can we actually make it?
- ReactionT5 v2 β forward β predicts products from reactants and reagents, trained on the Open Reaction Database.
- ReactionT5 v2 β retrosynthesis β single-step retrosynthesis. Chain it with the forward model to score a proposed route.
Stage 05 β Evidence & literature
Mine the papers that justify the programme.
- BiomedBERT (PubMedBERT) β Microsoft's encoder pretrained from scratch on PubMed abstracts plus PMC full text.
- BioGPT β generative biomedical LM for relation extraction and question answering over 15 M PubMed abstracts.
- BioMistral-7B β Mistral-7B further pretrained on PubMed Central Open Access; chat-capable across ten languages.
- Biomedical NER (107 entities) β DistilBERT token classifier covering diseases, drugs, dosages, signs and lab values.
- MolT5-large SMILES β text β writes a natural-language description of a molecule from its SMILES.
π Benchmark datasets
Standard evaluation sets, mirrored so every model above has data to train and benchmark against. Row counts on each card are computed from the files themselves.
Lead optimization β MoleculeNet ADMET & toxicity
| Dataset | Task | Rows |
|---|---|---|
| MoleculeNet_BBBP | Blood-brain barrier penetration | 2,039 |
| MoleculeNet_BACE | BACE-1 inhibition, an Alzheimer's target | 1,513 |
| MoleculeNet_ClinTox | Clinical toxicity & FDA approval | 1,477 |
| MoleculeNet_Tox21 | 12 toxicity assays | 7,831 |
| MoleculeNet_SIDER | Marketed-drug side effects | 1,427 |
| MoleculeNet_ESOL | Aqueous solubility | 1,128 |
| MoleculeNet_FreeSolv | Hydration free energy | 642 |
| MoleculeNet_Lipophilicity | logD at pH 7.4 | 4,200 |
Hit generation β virtual screening
| Dataset | Task | Rows |
|---|---|---|
| MoleculeNet_HIV | HIV replication inhibition | 41,127 |
Evidence & literature β medical QA
| Dataset | Task | Rows |
|---|---|---|
| MedQA-USMLE-4-options | US licensing exam, 4-option MCQ | 11,451 |
| MedMCQA | Medical entrance exam questions | 193,155 |
All eleven are in the Benchmark Datasets collection.
β‘ Quick start
from transformers import AutoModel, AutoTokenizer
model_id = "Aurigene-AI/MoLFormer-XL-both-10pct"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModel.from_pretrained(model_id, trust_remote_code=True, deterministic_eval=True)
smiles = ["CC(=O)Oc1ccccc1C(=O)O", "CC(C)Cc1ccc(cc1)C(C)C(=O)O"]
embeddings = model(**tokenizer(smiles, padding=True, return_tensors="pt")).pooler_output
print(embeddings.shape) # torch.Size([2, 768])
π Collections
Browse the catalogue as curated collections: molecular representation & property prediction, generative chemistry & synthesis planning, protein & target modeling, biomedical language models, interactive tools, benchmark datasets.
π Attribution & licensing
Every model here is a mirror of an open upstream release. The original authors β IBM Research, Meta AI, Microsoft Research, DeepChem, ChemFM, BioMistral and others β retain all credit, and each repository keeps the upstream model card and licence intact. Please cite the original work.
Models and tools are provided for research use. Rule-based filters and predictions are triage heuristics, not statements about safety or efficacy, and nothing here is a medical device or clinical advice.
π aurigeneservices.com
spaces 4
Drug Discovery Model Hub
Every Aurigene AI model, mapped onto the discovery pipeline
Protein Target Explorer
UniProt/PDB target β AlphaFold 3D, ligands, drugs & stats
Molecule Explorer
SMILES β 2D structure, ADMET rules & alerts, in-browser



