Views
No views yet
Qwen3ForCausalLM Intern-S1-mini language backbone
(jiosephlee/Intern-S1-mini-lm) for binary assay-transfer prediction on
small molecules. Given a molecule (SMILES) and a paired-choice prompt, the model
answers with (A) or (B).trust_remote_code=True.jiosephlee/Intern-S1-mini-lm (Qwen3ForCausalLM, vocab 153216)jiosephlee/assay-transfer-intern (158,429 train rows)paged_adamw_8bit(A) / (B)| Metric | Value |
|---|---|
| Binary macro-F1 | 0.6612 |
| Binary accuracy | 0.7046 |
| Parse rate | 1.00 |
| assay_concept group-avg macro-F1 | 0.6321 |
| tanimoto_bucket group-avg macro-F1 | 0.6316 |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tok = AutoTokenizer.from_pretrained("jiosephlee/assay-transfer-tool", trust_remote_code=True)
4model = AutoModelForCausalLM.from_pretrained("jiosephlee/assay-transfer-tool", torch_dtype="bfloat16")