Views
No views yet
| Task | Accuracy | Status | Notes |
|---|---|---|---|
| Bluebook Citation | 80.0% (16/20) | ✅ PASS | Legal citation formatting |
| Holding Selection | 60.0% (12/20) | ❌ FAIL | Multiple choice questions |
| IRAC Summarization | 90.0% (18/20) | ✅ PASS | Case summarization |
| Case Retrieval | N/A | ⚠️ NO DATA | Missing evaluation samples |
| Entailment | 75.0% (15/20) | ❌ FAIL | Case relationship classification |
1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3tokenizer = AutoTokenizer.from_pretrained("kylebrussell/cap-sft-qwen3-lora-75k")
4model = AutoModelForCausalLM.from_pretrained("kylebrussell/cap-sft-qwen3-lora-75k")
5
6# Generate legal text
7prompt = "Complete this citation: Brown v. Board of Education, "
8inputs = tokenizer(prompt, return_tensors="pt")
9outputs = model.generate(**inputs, max_new_tokens=50)
10response = tokenizer.decode(outputs[0], skip_special_tokens=True)kylebrussell/cap-rlvr-sft - a multi-task legal reasoning dataset derived from the Caselaw Access Project.1@model{cap-sft-qwen3-lora-75k,
2 title={CAP-SFT-Qwen3-LoRA-75K: Legal Reasoning with Supervised Fine-Tuning},
3 author={CAP RLVR Project},
4 year={2025},
5 url={https://huggingface.co/kylebrussell/cap-sft-qwen3-lora-75k}
6}kylebrussell/cap-sft-qwen3-lora-30k for better legal reasoning performance.