英文

"wmt15" 数据集卡片

数据集概要

警告:Common Crawl语料库数据存在问题( training-parallel-commoncrawl.tgz ):

  • 非英语文件包含许多英语句子。
  • 它们的英语“对应”句子没有对齐:与其对应的句子没有相关性。

我们已经联系了WMT组织者。

基于statmt.org的数据的翻译数据集。

存在不同年份的版本,使用了多种数据源的组合。基本的wmt允许您通过选择自己的数据/语言对来创建自定义数据集。操作如下:

from datasets import inspect_dataset, load_dataset_builder

inspect_dataset("wmt15", "path/to/scripts")
builder = load_dataset_builder(
    "path/to/scripts/wmt_utils.py",
    language_pair=("fr", "de"),
    subsets={
        datasets.Split.TRAIN: ["commoncrawl_frde"],
        datasets.Split.VALIDATION: ["euelections_dev2019"],
    },
)

# Standard version
builder.download_and_prepare()
ds = builder.as_dataset()

# Streamable version
ds = builder.as_streaming_dataset()

支持的任务和排行榜

More Information Needed

语言

More Information Needed

数据集结构

数据实例

cs-en
  • 下载的数据集文件大小:1.74 GB
  • 生成的数据集大小:284.34 MB
  • 总磁盘使用量:2.02 GB

“验证”示例如下。

数据字段

所有拆分中的数据字段是相同的。

cs-en
  • translation: 多语言字符串变量,可能的语言包括cs,en。

数据拆分

name train validation test
cs-en 959768 3003 2656

数据集创建

策划原理

More Information Needed

源数据

初始数据收集和标准化

More Information Needed

源语言制作者是谁?

More Information Needed

注释

注释过程

More Information Needed

注释人员是谁?

More Information Needed

个人和敏感信息

More Information Needed

使用数据的注意事项

数据的社会影响

More Information Needed

偏见讨论

More Information Needed

其他已知限制

More Information Needed

附加信息

数据集策划者

More Information Needed

许可信息

More Information Needed

引用信息

@InProceedings{bojar-EtAl:2015:WMT,
  author    = {Bojar, Ond
{r}ej  and  Chatterjee, Rajen  and  Federmann, Christian  and  Haddow, Barry  and  Huck, Matthias  and  Hokamp, Chris  and  Koehn, Philipp  and  Logacheva, Varvara  and  Monz, Christof  and  Negri, Matteo  and  Post, Matt  and  Scarton, Carolina  and  Specia, Lucia  and  Turchi, Marco},
  title     = {Findings of the 2015 Workshop on Statistical Machine Translation},
  booktitle = {Proceedings of the Tenth Workshop on Statistical Machine Translation},
  month     = {September},
  year      = {2015},
  address   = {Lisbon, Portugal},
  publisher = {Association for Computational Linguistics},
  pages     = {1--46},
  url       = {http://aclweb.org/anthology/W15-3001}
}

贡献者

感谢 @thomwolf @patrickvonplaten 添加此数据集。