Learn and Don't Forget: Adding a New Language to ASR Foundation Models
Mengjie Qian, Siyuan Tang, Rao Ma, Kate M. Knill, Mark J. F. Gales
TL;DR
The paper addresses how to add a new language to ASR foundation models without catastrophic forgetting of existing languages. It compares full fine-tuning, LoRA, Soft Language Code Tuning (SLCT), Soft Prompt Tuning (SPT), and Elastic Weight Consolidation (EWC) using Whisper large-v3 on the FLEURS dataset, focusing on Irish, Asturian, and Sorani Kurdish. EWC is formalized with $L(\theta) = L_B(\theta) + \lambda \sum_i F_i (\theta_i - \theta_{A,i}^*)^2$ and task similarity is analyzed via the Fréchet distance $d^2(\hat F_1, \hat F_2) = \tfrac{1}{2} \| \hat F_1^{1/2} - \hat F_2^{1/2} \|_F$, revealing a trade-off: fine-tuning yields the best new-language performance but substantial forgetting, while EWC and parameter-efficient methods better preserve existing languages with varying costs to the new language. The results provide practical guidance for extending language coverage in foundation ASR models and motivate future work on applying these strategies to speech translation. Overall, selecting the right adaptation strategy depends on the degree of Fisher overlap between tasks and the acceptable balance between new-language gains and forgetting risk.
Abstract
Foundation ASR models often support many languages, e.g. 100 languages in Whisper. However, there has been limited work on integrating an additional, typically low-resource, language, while maintaining performance on the original language set. Fine-tuning, while simple, may degrade the accuracy of the original set. We compare three approaches that exploit adaptation parameters: soft language code tuning, train only the language code; soft prompt tuning, train prepended tokens; and LoRA where a small set of additional parameters are optimised. Elastic Weight Consolidation (EWC) offers an alternative compromise with the potential to maintain performance in specific target languages. Results show that direct fine-tuning yields the best performance for the new language but degrades existing language capabilities. EWC can address this issue for specific languages. If only adaptation parameters are used, the language capabilities are maintained but at the cost of performance in the new language.
