File size: 2,132 Bytes
9dd2b0b ad2402f 9dd2b0b 589743e 9dd2b0b 589743e 76f5d6f 589743e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# coding=utf-8
'''DiscEvalMT: DiscEvalMT: Contrastive test sets for the evaluation of discourse in machine translation (v2)'''
import json
import datasets
logger = datasets.logging.get_logger(__name__)
_CITATION = '''\
@inproceedings{bawden-etal-2018-evaluating,
title = "Evaluating Discourse Phenomena in Neural Machine Translation",
author = "Bawden, Rachel and Sennrich, Rico and Birch, Alexandra and Haddow, Barry",
booktitle = {{Proceedings of the 2018 Conference of the North {A}merican Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long Papers)}},
month = jun,
year = "2018",
address = "New Orleans, Louisiana",
publisher = "Association for Computational Linguistics",
url = "https://www.aclweb.org/anthology/N18-1118",
doi = "10.18653/v1/N18-1118",
pages = "1304--1313"
}
'''
_DESCRIPTION = '''\
English-French hand-crafted contrastive test set to test anaphora and lexical choice
'''
_URLS = {
'test-lexical_choice': 'eval/lexical_choice.json',
'test-anaphora': 'eval/anaphora.json'
}
class DiscEvalMTConfig(datasets.BuilderConfig):
'''BuilderConfig for DiscEvalMT.'''
def __init__(self, **kwargs):
"""BuilderConfig for DiscEvalMT.
Args:
**kwargs: keyword arguments forwarded to super.
"""
super(DiscEvalMT, self).__init__(**kwargs)
class DiscEvalMT(datasets.GeneratorBasedBuilder):
'''DiscEvalMT: English-French contrastive test set for 2 discourse phenomena (anaphora and lexical cohesion)'''
BUILDER_CONFIGS = [
DiscEvalMTConfig(
name='plain_text',
version=datasets.Version('2.0.0', ''),
description='Plain text',
),
]
def _split_generators(self, dl_manager):
downloaded_files = dl_manager.download_and_extract(_URLS)
return [datasets.SplitGenerator(name="test-anaphora", gen_kwargs={'filepath': downloaded_files['test-anaphora']}),
name="test-lexical_choice", gen_kwargs={'filepath': downloaded_files['test-lexical_choice']}),
]
|