SELGMar 4

LoRA-MME: Multi-Model Ensemble of LoRA-Tuned Encoders for Code Comment Classification

arXiv:2603.03959v2h-index: 2
Originality Incremental advance
AI Analysis

This addresses automated software documentation and analysis for developers, but it is incremental as it combines existing models with a standard ensemble approach.

The paper tackled code comment classification for Java, Python, and Pharo by developing LoRA-MME, a multi-model ensemble of LoRA-tuned encoders, achieving an F1 Weighted score of 0.7906 and a Macro F1 of 0.6867 on the test set.

Code comment classification is a critical task for automated software documentation and analysis. In the context of the NLBSE'26 Tool Competition, we present LoRA-MME, a Multi-Model Ensemble architecture utilizing Parameter-Efficient Fine-Tuning (PEFT). Our approach addresses the multi-label classification challenge across Java, Python, and Pharo by combining the strengths of four distinct transformer encoders: UniXcoder, CodeBERT, GraphCodeBERT, and CodeBERTa. By independently fine-tuning these models using Low-Rank Adaptation(LoRA) and aggregating their predictions via a learned weighted ensemble strategy, we maximize classification performance without the memory overhead of full model fine-tuning. Our tool achieved an F1 Weighted score of 0.7906 and a Macro F1 of 0.6867 on the test set. However, the computational cost of the ensemble resulted in a final submission score of 41.20%, highlighting the trade-off between semantic accuracy and inference efficiency.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes