Group-Aware Partial Model Merging (GRAPAM)
- The paper introduces GRAPAM, a strategy that clusters acoustic embeddings and performs group-specific partial fine-tuning to enhance pediatric ASR accuracy.
- It selectively updates submodules like FFN or ATTN, reducing updated parameters while achieving up to a 33.7% relative improvement in WER.
- Parameter-level merging integrates global and group-adapted models, effectively leveraging diverse children’s speech characteristics for better recognition.
Group-Aware Partial Model Merging (GRAPAM) is a parameter-efficient strategy designed to adapt large pre-trained Automatic Speech Recognition (ASR) models to children’s speech, addressing the pronounced acoustic variability and scarcity of data typical of pediatric ASR tasks. By combining unsupervised clustering of acoustic embeddings, group-specific partial fine-tuning, and parameter-level model interpolation, GRAPAM yields consistent improvements in recognition accuracy, outperforming conventional full-model fine-tuning while updating significantly fewer parameters (Rolland et al., 28 Nov 2025).
1. Unsupervised Grouping of Children’s Speech
GRAPAM operates on a labeled corpus of speech utterances and transcriptions . Each utterance is embedded into a -dimensional vector to capture salient acoustic characteristics. The framework explores several embedding strategies:
- Speaker embedding: derived from a pre-trained ECAPA-TDNN.
- Low-level speech metrics (LSM): Features such as pitch, pause rate, and spectral centroid, reduced via PCA to .
- Zero-shot WER-based scalar (ZS-WER): , representing a proxy for utterance-level ASR difficulty.
The complete set of embeddings is partitioned by -means clustering to yield groups , optimizing:
Each cluster maps to a data subset , thus forming .
2. Group-Specific Partial Fine-Tuning
Starting from an adult-pretrained Whisper-medium model (, approximately 763.9M parameters), GRAPAM introduces parameter-efficient fine-tuning by selectively adapting only specific submodules:
- : Feed-forward submodules across all Transformer layers.
- : Attention submodules.
Parameters are partitioned into a frozen subset and an adaptable subset , with . For each group (and the entire dataset, denoted “all”), model adaptation solves:
with the loss:
where typically . Only is updated by gradient descent, leveraging AdamW with batch size 16, learning rate , and a single epoch. Fine-tuning is conducted for all combinations: all parameters (SFT), only FFN, and only ATTN.
3. Parameter-Level Model Merging
After group-wise fine-tuning, GRAPAM merges the resulting models using parameter-wise linear interpolation (LERP). Given a set of models indexed by , the merged parameters are:
In reported experiments, uniform weights are used. The merged model, , incorporates both group-global and group-specialized adaptations, exploiting diversity across clusters to improve generalization.
4. Unified Optimization Framework
The entire pipeline can be viewed as a compositional optimization problem:
- Partition the data by clustering acoustic embeddings:
- For each data group , conduct partial fine-tuning:
- Merge the resulting models:
The method’s hyperparameters thus comprise (number of clusters), (layer subset for adaptation), (learning rate), and (merging weights).
5. Empirical Evaluation and Results
Experiments are performed on the MyST (My Science Tutor) children's speech corpus, filtered to 42,790 training utterances (117 hours, 566 speakers), 6,812 validation utterances (18 hours), and 7,257 test utterances (19 hours). The Whisper-medium model is configured with 24 encoder and 24 decoder Transformer layers.
Key settings include clusters (speaker-embeddings, LSM, ZS-WER, and random assignments as a control), and partial fine-tuning on:
- All parameters (SFT, 763.9M params)
- Only FFN (402.9M params)
- Only ATTN (302.4M params)
The primary metric is Word Error Rate (WER). Relative improvement is computed as:
A summary of experimental results:
| Method | WER (%) | Relative WER Improvement (%) |
|---|---|---|
| Baseline (no FT) | 14.05 | — |
| Full-model FT (all θ) | 9.95 | ↓29.2 |
| GRAPAM, full SFT merge | 9.36 | ↓33.4 |
| GRAPAM, PFT FFN merge | 9.31 | ↓33.7 |
| GRAPAM, PFT ATTN merge | 9.38 | ↓33.2 |
Relative to full-model fine-tuning, GRAPAM with PFT FFN (speaker embedding clustering, merging “all”, 1, 2, 3) achieves the best configuration: a further 6% relative reduction in WER, despite updating approximately half the parameter count.
Averaging across cluster/fine-tuning combinations, WER using PFT FFN is approximately 9.47%. This suggests group-aware merging is robust to clustering modality, and consistently beneficial.
6. Implications and Context in Pediatric ASR
GRAPAM’s group-aware adaptation pipeline leverages the diversity of children’s speech by constructing models specialized for acoustically homogeneous subgroups and merging their expertise. Traditional supervised fine-tuning on the global dataset misses such group-level acoustic idiosyncrasies and thus underperforms relative to the merger of group-specialized partial adapters. The observed efficiency—in both parameter savings and performance—positions model merging as a scalable adaptation technique for diverse, data-limited speech domains. A plausible implication is that similar methods could generalize to other settings with high intra-domain variability and limited adaptation data (Rolland et al., 28 Nov 2025).