Views
No views yet
google/gemma-3-4b-it that makes a small model produce calibrated,
common-first, structured differentials — trained with Adaption Labs' AutoScientist for the
AutoScientist Challenge (Healthcare).This model card is a study in honest measurement. The scored result is real; the external benchmark below is reported transparently, including a tradeoff most fine-tunes never check for.
| Metric | What it measures | Base gemma-3-4b-it | PsiDDx (ours) |
|---|---|---|---|
| AutoScientist win rate (in-house healthcare eval) | Preference — is the adapted answer preferred over base? | 26% | 74% |
| NEJM-CPC Top-1 (n=150, external, rare-forward) | Rare-case accuracy | 14.7% | 11.3% |
| NEJM-CPC Top-5 | Rare-case accuracy | 48.7% | 36.7% |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3base = "google/gemma-3-4b-it"
4tok = AutoTokenizer.from_pretrained(base)
5model = AutoModelForCausalLM.from_pretrained(base, device_map="auto")
6model = PeftModel.from_pretrained(model, "shariqazeem/psiddx-clinical-ddx-gemma-3-4b")Note: this adapter targets the language-model layers. On the multimodalgemma-3-4b-it, ensure the adapter attaches tolanguage_model.*modules (verify base≠adapted output before trusting results).
@misc{psiddx2026, title={PsiDDx: Honest Measurement of a Calibrated Clinical DDx Fine-tune}, year={2026}}