ibraheemmoosa/mt-ranker-base
Updated • 8 • 2
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
This dataset contains all DA human annotations from previous WMT News Translation shared tasks.
The data is organised into 8 columns:
You can also find the original data for each year in the results section https://www.statmt.org/wmt{YEAR}/results.html e.g: for 2020 data: https://www.statmt.org/wmt20/results.html
from datasets import load_dataset
dataset = load_dataset("RicardoRei/wmt-da-human-evaluation", split="train")
There is no standard train/test split for this dataset but you can easily split it according to year, language pair or domain. E.g. :
# split by year
data = dataset.filter(lambda example: example["year"] == 2022)
# split by LP
data = dataset.filter(lambda example: example["lp"] == "en-de")
# split by domain
data = dataset.filter(lambda example: example["domain"] == "news")
Note that most data is from News domain.
If you use this data please cite the WMT findings from previous years: