NAVER LABS System Re-implementation for the IWSLT 2026 Instruction-Following Task
Summary
NAVER LABS has re-implemented its IWSLT 2025 instruction-following pipeline for the IWSLT 2026 Shared Task, adapting it to mandated components: SeamlessM4T-v2-large as the speech encoder and Qwen3-4B-Instruct as the LLM backbone. This open-source re-implementation preserves the original three-stage approach, involving projector alignment, text-only LoRA pre-training, and multimodal merging. The team also generated 100k synthetic instruction-following examples across ten speech-centric task types, suitable for Stage 3 fine-tuning. Their primary Stage 3 model achieved a COMET score of 0.781 on EN–ZH speech translation and a BERTScore-F1 of 0.346 on English SQA on the MCIF benchmark. This system demonstrates consistent improvements over projector-only baselines, with code, training scripts, and the synthetic dataset publicly available.
Key takeaway
For Machine Learning Engineers developing multimodal speech LLMs for instruction-following tasks, you should consider adopting a staged training approach. This re-implementation demonstrates that combining projector alignment, text-only LoRA pre-training, and multimodal merging with specific components like SeamlessM4T-v2-large and Qwen3-4B-Instruct yields competitive results. Leveraging the released 100k synthetic dataset can significantly enhance your model's performance on diverse speech-centric tasks, particularly for IWSLT 2026 participants.
Key insights
A three-stage pipeline with specific encoder/LLM and synthetic data achieves strong multimodal instruction-following performance.
Principles
- Multimodal LLMs benefit from staged training.
- Synthetic data enhances instruction-following.
- LoRA rank impacts task-specific performance.
Method
The system uses a three-stage pipeline: projector alignment, text-only LoRA pre-training, and joint multimodal fine-tuning of projector and LoRA adapters.
In practice
- Use SeamlessM4T-v2-large with Qwen3-4B-Instruct.
- Generate 100k synthetic speech-centric examples.
- Fine-tune LoRA with rank 8 for SQA tasks.
Topics
- Multimodal LLMs
- Instruction Following
- Speech Translation
- Spoken Question Answering
- LoRA Fine-tuning
- Synthetic Data
Best for: Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by cs.CL updates on arXiv.org.