This dataset is a synthetic parallel dataset for 10 low-resource languages, created by applying the TopXGen pipeline with recent multilingual LLMs. It is designed for machine translation (MT) fine-tuning and few-shot experiments (as a selection pool).
The pipeline works as follows:
Models trained on this TopXGen dataset achieve translation performance close to that of the generator and back-translator. For more details, see our paper.
from datasets import load_dataset
dataset = load_dataset("almanach/topxgen-gemma-3-27b-and-nllb-3.3b", split="Basque")
print(dataset)
Output
Dataset({
features: ['source', 'target', 'source_language', 'target_language'],
num_rows: 120031
})
This dataset is derived from outputs of Google’s Gemma-3 and Meta’s NLLB. Users must comply with the licenses and usage guidelines of both models.
6 commits
This dataset is a synthetic parallel dataset for 10 low-resource languages, created by applying the TopXGen pipeline with recent multilingual LLMs. It is designed for machine translation (MT) fine-tuning and few-shot experiments (as a selection pool).
The pipeline works as follows:
Models trained on this TopXGen dataset achieve translation performance close to that of the generator and back-translator. For more details, see our paper.
from datasets import load_dataset
dataset = load_dataset("almanach/topxgen-gemma-3-27b-and-nllb-3.3b", split="Basque")
print(dataset)
Output
Dataset({
features: ['source', 'target', 'source_language', 'target_language'],
num_rows: 120031
})
This dataset is derived from outputs of Google’s Gemma-3 and Meta’s NLLB. Users must comply with the licenses and usage guidelines of both models.
6 commits