Views
No views yet
answerdotai/ModernBERT-base on PolyAI/banking77
(77 fine-grained banking intents). Part of Sift, a query-triage project
showing a small fine-tuned model beats a zero-shot open 7B instruct LLM
(Mistral-7B-Instruct, run locally and 4-bit quantised) on cost, latency, and
privacy for narrow, high-volume classification.| Metric | Score |
|---|---|
| Accuracy | 0.9353 |
| Macro-F1 | 0.9353 |
| Median single-query latency | 22.47 ms (Tesla T4) |
1from transformers import pipeline
2clf = pipeline("text-classification", model="DarioFrK/sift-banking77-modernbert", top_k=5)
3clf("My card was swallowed by the ATM")answerdotai/ModernBERT-basePolyAI/banking77