Views
No views yet
google/medgemma-27b-text-it, produced with
llm-compressor using 512 medical-domain
calibration samples (PubMedQA abstracts + Q&A, 2048-token sequences) — not generic web text —
so weight rounding is optimized for clinical language.| Metric | BF16 baseline | INT4 GPTQ | Change |
|---|---|---|---|
| Disk size | 54.1 GB | 16.1 GB | -70.3% |
| Wikitext word PPL | 11.416 | 11.696 | +2.5% |
| Throughput, batch 32 (tok/s) | 111 | 296 | +165.8% |
| Single stream (tok/s) | 4.3 | 12.9 | +200.0% |
| Task | BF16 | INT4 GPTQ | Change |
|---|---|---|---|
| PubMedQA | 0.7460 | 0.7420 | -0.5% |
| MMLU Clinical Knowledge | 0.8377 | 0.8189 | -2.3% |
| MMLU Professional Medicine | 0.8493 | 0.8566 | +0.9% |
| MMLU College Medicine | 0.7803 | 0.7688 | -1.5% |
| MMLU Medical Genetics | 0.8800 | 0.8800 | +0.0% |
| MMLU Anatomy | 0.7556 | 0.7111 | -5.9% |
| Average (medical) | 0.8082 | 0.7962 | -1.5% |
compressed-tensors format), suitable as the hard-text-reasoning tier behind
clinical document pipelines.1from vllm import LLM, SamplingParams
2
3llm = LLM(model="sarathi-balakrishnan/medgemma-27b-text-it-GPTQ-INT4", max_model_len=8192)
4out = llm.generate(["Summarize the key contraindications of metformin."],
5 SamplingParams(temperature=0.2, max_tokens=512))
6print(out[0].outputs[0].text)