Search papers, labs, and topics across Lattice.
ArguLens is an open-source automated essay scoring (AES) system that separates the scoring process into three distinct components: a discourse-move classifier, a grade-independent scorer, and a label-aware feedback generator. The system achieves notable performance metrics, including an 82.6% accuracy and a mean quadratic weighted kappa (QWK) of 0.813, demonstrating its effectiveness in providing interpretable feedback and scoring. By allowing local deployment and offering detailed essay breakdowns, ArguLens addresses critical issues of data privacy and cost associated with existing AES solutions.
ArguLens achieves 82.6% accuracy in essay classification while providing interpretable feedback, challenging the status quo of opaque scoring systems.
Most automated essay scoring (AES) systems output a single holistic score without interpretable evidence and rely on closed APIs that introduce data privacy and cost barriers. We present ArguLens, an opensource, locally deployable system that decomposes AES into three decoupled components: a discourse-move classifier (Qwen2.5-7B-Instruct fine-tuned with LoRA on PERSUADE 2.0), a grade-independent LightGBM scorer over 31 linguistic and discourse features, and a label-aware feedback generator served through vLLM with a Qwen2.5-14BInstruct backbone. A Gradio web UI exposes pluggable inference backends and supports single-essay and batch scoring with downloadable per-essay breakdowns. On an essaydisjoint PERSUADE 2.0 test split, the logitprobe classifier achieves 82.6% accuracy and 0.727 macro-F1; under prompt-grouped 5-fold cross-validation the scorer reaches a mean QWK of 0.813 under an oracle discoursefeature protocol, and an ablation shows that adding gold discourse annotations yields an increment of +0.055 QWK over the lexical+syntactic configuration (paired t-test, p = 0.010). This is a component-level diagnostic rather than an end-to-end classifier-to-scorer result. The feedback generator ships with a structured evaluation protocol; its human-rater study is left to future work. The system is released under Apache 2.0 at https://github.com/wwrwbs/AI_AWE.