Views
No views yet
answerdotai/ModernBERT-base (149M params, full fine-tune, fresh classifier head)determined-ai/consumer_complaints_medium
with the canonical course merge map + MIN_CLASS_COUNT=5 filter (79,278 examples, 113 classes)| Metric | Value |
|---|---|
| Macro F1 | 0.2638 |
| Accuracy | 0.6106 |
| NLL | 1.5416 |
| ECE | 0.1300 |
| Head F1 (top-20 classes, n=5155) | 0.6105 |
| Mid F1 (rank 20–60, n=1065) | 0.3797 |
| Tail F1 (rank 60–113, n=210) | 0.1249 |
model.safetensors + config.json — model weightstokenizer*.json, special_tokens_map.json — tokenizerval_predictions.npz — raw fp16 val logits + per-example predictions + tier
assignments. Useful for re-doing per-tier analysis without re-running inference.1from transformers import AutoModelForSequenceClassification, AutoTokenizer
2model = AutoModelForSequenceClassification.from_pretrained("earino/ecbs5200-week6-vanilla-baseline")
3tokenizer = AutoTokenizer.from_pretrained("earino/ecbs5200-week6-vanilla-baseline")