Evaluates the performance of heterogeneous federated fine-tuning methods across multiple NLP domains (instruction following, NLU, finance) under both IID and non-IID data partitioning settings. It probes the ability of LoRA-based federated learning algorithms to maintain model accuracy while accommodating resource-constrained clients with varying rank allocations. Use when the user wants to benchmark on Natural Instructions, GLUE benchmark, FPB, FIQA, TFNS, or asks about evaluating this task....
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill fed-plora-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Fed Plora Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-fed-plora-eval)More formats (shields.io, HTML) on the badges page.
---
name: fed-plora-eval
description: Evaluates the performance of heterogeneous federated fine-tuning methods across multiple NLP domains (instruction following, NLU, finance) under both IID and non-IID data partitioning settings. It probes the ability of LoRA-based federated learning algorithms to maintain model accuracy while accommodating resource-constrained clients with varying rank allocations. Use when the user wants to benchmark on Natural Instructions, GLUE benchmark, FPB, FIQA, TFNS, or asks about evaluating this task. Reports Rouge-L, Accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2602.16936
bibtex_key: zhang2026heterogeneous
confidence: high
---
# fed-plora-eval
> Heterogeneous Federated Fine-Tuning with Parallel One-Rank Adaptation — Zhang et al. (2026) (arXiv:2602.16936, 2026)
## What this evaluates
Evaluates the performance of heterogeneous federated fine-tuning methods across multiple NLP domains (instruction following, NLU, finance) under both IID and non-IID data partitioning settings. It probes the ability of LoRA-based federated learning algorithms to maintain model accuracy while accommodating resource-constrained clients with varying rank allocations.
## Datasets
- **Natural Instructions** — total ?; splits: train (-1), test (-1)
- **GLUE benchmark** — total ?; splits: train (-1), test (-1)
- **FPB** — total ?; splits: train (-1), test (-1)
- **FIQA** — total ?; splits: train (-1), test (-1)
- **TFNS** — total ?; splits: train (-1), test (-1)
## Metrics
- `Rouge-L` **(primary)** — range: [0, 1]
- Standard Rouge-L score measuring the longest common subsequence between generated text and reference, normalized by reference length.
- `Accuracy` **(primary)** — range: [0, 1]
- Proportion of correctly predicted class labels out of total instances. For GLUE, task-specific accuracy or macro-F1 is averaged across all sub-tasks.
## Input / output format
**Input**: Instruction-response pairs or classification prompts, partitioned across clients using IID splits or pathological/Dirichlet non-IID distributions.
**Output**: Fine-tuned model predictions (text generations or class labels) aggregated into a global model for evaluation.
## Scoring recipe
```python
def evaluate(predictions, golds, metric='accuracy'):
if metric == 'rouge-l':
return rouge_l_score(predictions, golds)
elif metric == 'accuracy':
correct = sum(1 for p, g in zip(predictions, golds) if p == g)
return correct / len(golds)
# For multi-task benchmarks like GLUE, compute per-task metric then average
return sum(task_scores) / len(task_scores)
```
## Common pitfalls
- Non-IID settings use pathological or Dirichlet data partitioning, not random splits.
- Heterogeneous baselines use uneven rank allocations (e.g., ranks 1, r_m, R) rather than uniform ranks.
- Results are averaged over three independent runs, with standard deviations reported as upper/lower bounds.
## Evidence (verbatim from paper)
> Table 1 reports averaged Rouge-L scores of the fine-tuned global model under both IID and non-IID settings... As shown in Table [2], our method, Fed-PLoRA, demonstrates substantial improvements over these baselines on IID GLUE benchmark... The main experimental results are reported as the average with upper and lower deviations over three repeat experiments.
## Citation
```bibtex
@misc{zhang2026heterogeneous,
title={Heterogeneous Federated Fine-Tuning with Parallel One-Rank Adaptation},
author={Zhang et al. (2026)},
year={2026},
note={arXiv:2602.16936}
}
```
- arXiv: 2602.16936
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!