1-to-N Translation Loading
In this example, we will setup a data pipeline that takes English as the source and prepares it for translation into Luganda and Acholi.Configuration
The configuration is defined in YAML format. We specify the Hugging Face dataset path, the source language (eng), and a list of target languages ([lug, ach]).
Expected Output
The data loader prefixes the source text with the target language token (e.g.,>>lug<< or >>ach<<), which is a common technique for multilingual translation models.

