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-llama-4-scout-and-llama-4-scout", split="Basque")
print(dataset)
Output
Dataset({
features: ['source', 'target', 'source_language', 'target_language'],
num_rows: 135259
})
This dataset is derived from outputs of Llama-4-Scout-17B-16E-Instruct. Users must comply with the licenses and usage guidelines of the model.
5 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-llama-4-scout-and-llama-4-scout", split="Basque")
print(dataset)
Output
Dataset({
features: ['source', 'target', 'source_language', 'target_language'],
num_rows: 135259
})
This dataset is derived from outputs of Llama-4-Scout-17B-16E-Instruct. Users must comply with the licenses and usage guidelines of the model.
5 commits