Research Papers 论文研究 3d ago Updated 2d ago 更新于 2天前 43

ArguLens: An Open-Source System for Automated Essay Scoring and Label-Aware Feedback Generation ArguLens:一个用于自动作文评分和标签感知反馈生成的开源系统

ArguLens is an open-source, locally deployable automated essay scoring (AES) system released under Apache 2.0 that decomposes scoring into three decoupled components for interpretability and privacy The system combines a discourse-move classifier (Qwen2.5-7B-Instruct fine-tuned with LoRA on PERSUADE 2.0), a grade-independent LightGBM scorer using 31 linguistic and discourse features, and a label-aware feedback generator (Qwen2.5-14B-Instruct via vLLM) The logitprobe classifier achieves 82.6% acc ArguLens是一个开源、可本地部署的自动作文评分系统,解决现有AES系统缺乏可解释性和依赖封闭API的问题 系统采用三组件解耦架构:话语移动分类器(Qwen2.5-7B+LoRA)、LightGBM评分器(31个特征)、标签感知反馈生成器(Qwen2.5-14B) 分类器在PERSUADE 2.0测试集上达到82.6%准确率和0.727 macro-F1;评分器在oracle话语特征下QWK达0.813 添加金标准话语标注使评分器QWK提升+0.055(p=0.010),验证了话语特征对评分质量的重要性 系统提供Gradio Web UI,支持单篇/批量评分及详细分解下载,以Apache

55
Hot 热度
70
Quality 质量
60
Impact 影响力

Analysis 深度分析

TL;DR

  • ArguLens is an open-source, locally deployable automated essay scoring (AES) system released under Apache 2.0 that decomposes scoring into three decoupled components for interpretability and privacy
  • The system combines a discourse-move classifier (Qwen2.5-7B-Instruct fine-tuned with LoRA on PERSUADE 2.0), a grade-independent LightGBM scorer using 31 linguistic and discourse features, and a label-aware feedback generator (Qwen2.5-14B-Instruct via vLLM)
  • The logitprobe classifier achieves 82.6% accuracy and 0.727 macro-F1 on an essay-disjoint PERSUADE 2.0 test split
  • The LightGBM scorer reaches a mean QWK of 0.813 under oracle discourse-feature protocol, with gold discourse annotations yielding a statistically significant +0.055 QWK improvement over lexical+syntactic features alone (paired t-test, p = 0.010)
  • A Gradio web UI supports pluggable inference backends, single-essay and batch scoring, and downloadable per-essay breakdowns; human-rater evaluation of the feedback generator is left for future work

Why It Matters

ArguLens addresses two critical pain points in the AES landscape: the opacity of holistic scoring outputs and the data privacy/cost barriers imposed by closed-API systems. By offering a fully open-source, locally deployable architecture with interpretable component-level diagnostics, it provides a practical blueprint for educators and researchers who need transparent, auditable essay evaluation without sacrificing model performance.

Technical Details

  • Architecture: Three decoupled components — (1) discourse-move classifier using Qwen2.5-7B-Instruct fine-tuned with LoRA on PERSUADE 2.0, (2) grade-independent LightGBM scorer operating over 31 engineered linguistic and discourse features, and (3) label-aware feedback generator served via vLLM with a Qwen2.5-14B-Instruct backbone
  • Benchmarks: Evaluated on PERSUADE 2.0 with an essay-disjoint test split; classifier reports 82.6% accuracy and 0.727 macro-F1 via logit probing; scorer achieves mean QWK of 0.813 under prompt-grouped 5-fold cross-validation with oracle discourse features
  • Ablation Study: Adding gold discourse annotations to a lexical+syntactic feature set produces a +0.055 QWK improvement, statistically significant at p = 0.010 (paired t-test), confirming discourse structure as a meaningful signal beyond surface-level features
  • Deployment: Gradio-based web UI with pluggable inference backends, supporting both single-essay and batch scoring with downloadable per-essay breakdowns; licensed under Apache 2.0
  • Limitation: The reported scorer results are component-level diagnostics rather than end-to-end classifier-to-scorer pipeline results; human-rater validation of the feedback generator is deferred to future work

Industry Insight

  • The modular, decoupled design of ArguLens demonstrates that high-quality AES can be achieved without monolithic end-to-end models, offering a replicable pattern for building interpretable educational AI systems where auditability is paramount
  • The statistically significant gain from discourse features (+0.055 QWK) suggests that investing in structured discourse analysis — rather than relying solely on lexical and syntactic signals — is a high-leverage direction for next-generation scoring systems
  • The open-source, locally deployable approach directly counters the growing concern around proprietary AES APIs and data privacy, making it particularly relevant for institutional adopters in K-12 and higher education who must comply with student data protection regulations

TL;DR

  • ArguLens是一个开源、可本地部署的自动作文评分系统,解决现有AES系统缺乏可解释性和依赖封闭API的问题
  • 系统采用三组件解耦架构:话语移动分类器(Qwen2.5-7B+LoRA)、LightGBM评分器(31个特征)、标签感知反馈生成器(Qwen2.5-14B)
  • 分类器在PERSUADE 2.0测试集上达到82.6%准确率和0.727 macro-F1;评分器在oracle话语特征下QWK达0.813
  • 添加金标准话语标注使评分器QWK提升+0.055(p=0.010),验证了话语特征对评分质量的重要性
  • 系统提供Gradio Web UI,支持单篇/批量评分及详细分解下载,以Apache 2.0许可证开源

为什么值得看

ArguLens为教育AI领域提供了一个可解释、可本地部署的开源AES解决方案,对关注数据隐私和教育公平的研究者具有重要参考价值。其组件解耦设计为后续研究和定制化部署提供了灵活框架。

技术解析

  • 三组件解耦架构:系统核心创新在于将AES任务分解为话语移动分类、特征评分和反馈生成三个独立模块,各模块可单独优化和替换
  • 分类器实现:使用Qwen2.5-7B-Instruct通过LoRA在PERSUADE 2.0数据集上微调,采用logitprobe方法进行评估
  • 评分器设计:基于31个语言和话语特征构建等级无关的LightGBM模型,在oracle话语特征协议下达到0.813 QWK
  • 反馈生成器:通过vLLM部署Qwen2.5-14B-Instruct,提供结构化评估协议和标签感知的反馈生成
  • 消融实验:对比词汇+句法配置与添加金标准话语标注的配置,后者QWK提升0.055且统计显著(p=0.010)

行业启示

  • 教育AI产品应重视数据隐私和本地部署能力,ArguLens的开源模式为机构提供了替代商业API的可行方案
  • 可解释性在AES系统中至关重要,话语特征分析能显著提升评分透明度和可信度
  • 组件解耦架构设计值得借鉴,允许各模块独立迭代优化,降低系统维护和技术升级成本

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Open Source 开源 LLM 大模型 Fine-tuning 微调 Education AI 教育AI Research 科学研究