Views
No views yet
text-classification -- Multi-class prediction (granted/denied/partial/deferred) with confidencenlpaueb/legal-bert-base-uncased -- Legal domain pre-training for understanding judicial reasoning patterns| Source | Records | Description |
|---|---|---|
| CourtListener Judge Profiles | ~35K judges | Judge biographical and appointment data |
| Docket Entry Rulings | ~5M | Motion outcomes by judge, type, and issue |
| Published Opinions | ~2M | Full-text opinions showing reasoning patterns |
| Oral Argument Transcripts | ~100K | Judicial questioning patterns |
| Sentencing Data | ~500K | Sentencing patterns (for criminal cross-reference) |
1{
2 "judge": "Judge Smith",
3 "motion_type": "Motion to Dismiss (12(b)(6))",
4 "prediction": "DENIED",
5 "confidence": 0.73,
6 "judge_historical_rate": "Grants 35% of 12(b)(6) motions",
7 "key_factors": ["judge favors liberal pleading standard", "similar issue denied in Case X"],
8 "comparable_rulings": ["Case A (denied)", "Case B (denied)", "Case C (granted)"]
9}| Metric | Target | Description |
|---|---|---|
| Prediction Accuracy | >= 72% | Overall outcome prediction (judicial behavior is inherently uncertain) |
| High-Confidence Accuracy | >= 88% | Accuracy when confidence > 0.8 |
| MTD Prediction | >= 75% | Motion to dismiss outcome prediction |
| MSJ Prediction | >= 70% | Summary judgment outcome prediction |
| Calibration Error | <= 0.05 | Predicted confidence matches actual accuracy |
STAGE 1 (Classify) --> identify assigned judge
STAGE 3 (WDC #1) --> judicial-predictor informs strategy (which motions to file)
STAGE 5 (WDC #2) --> predictor validates the filing strategy against judge tendencies| Version | Date | Notes |
|---|---|---|
| v0.1 | 2026-04-10 | Initial model card, repo created |