ResearchPod Summary
This study investigates how to best provide accurate statutory citations for the Ontario Residential Tenancies Act (RTA) and its associated regulations. The authors address a practical challenge: self-represented tenants and landlords often need to identify the specific legal provision governing their situation, rather than receiving fluent but potentially inaccurate legal prose. The researchers conducted a four-arm head-to-head comparison using the Qwen2.5-7B-Instruct model, testing four configurations: a zero-shot base model, a LoRA fine-tuned (SFT) model, a RAG-only model, and an SFT+RAG hybrid.
The study establishes that fine-tuning alone is insufficient for accurate citation, as the SFT-only model frequently mis-recalls specific sections. Retrieval is identified as the critical component for success, effectively reducing hallucinated citations to zero by construction. The SFT+RAG hybrid achieved the highest exact-match score of 0.481. The authors hypothesize that the hybrid approach succeeds because fine-tuning makes the model more robust at selecting the correct provision from the larger, noisier candidate sets provided by the retriever. Notably, the study found that using a lightweight retriever (bge-small) performed as well as or better than more complex pipelines involving larger embedders and cross-encoder rerankers, suggesting that specialized, heavy retrieval models are not necessary for this specific legal corpus.
For developers building legal decision-support tools, this paper provides a clear, empirical baseline for balancing model training and retrieval. It demonstrates that while retrieval is mandatory for grounding, the "best" system does not necessarily require the most computationally expensive components. However, the authors emphasize that their system did not reach the aspirational 0.70 exact-match target, highlighting that retrieval-recall ceilings and difficulty in distinguishing specific subsections remain significant hurdles for automated legal citation.
AI-generated third-party summary by ResearchPod. Not official content or an endorsement by the paper authors or affiliated organizations.