Datasets:
GEM
/

Multilinguality:
unknown
Size Categories:
unknown
Language Creators:
unknown
Annotations Creators:
automatically-created
Source Datasets:
original
Tags:
data-to-text
License:
rooa commited on
Commit
46ea3cf
1 Parent(s): 13dd2b1

Add scripts and dataset card

Browse files
README.md ADDED
File without changes
RotoWire_English-German.py ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ """Dataloader for RotoWire English-German dataset."""
16
+
17
+ import json
18
+ import os
19
+
20
+ import datasets
21
+
22
+
23
+ # Find for instance the citation on arxiv or on the dataset repo/website
24
+ _CITATION = """\
25
+ @article{hayashi2019findings,
26
+ title={Findings of the Third Workshop on Neural Generation and Translation},
27
+ author={Hayashi, Hiroaki and Oda, Yusuke and Birch, Alexandra and Konstas, Ioannis and Finch, Andrew and Luong, Minh-Thang and Neubig, Graham and Sudoh, Katsuhito},
28
+ journal={EMNLP-IJCNLP 2019},
29
+ pages={1},
30
+ year={2019}
31
+ }
32
+ """
33
+
34
+ # You can copy an official description
35
+ _DESCRIPTION = """\
36
+ Dataset for the WNGT 2019 DGT shared task on "Document-Level Generation and Translation”.
37
+ """
38
+
39
+ _HOMEPAGE = "https://sites.google.com/view/wngt19/dgt-task"
40
+
41
+ _LICENSE = "CC-BY 4.0"
42
+
43
+ # The HuggingFace dataset library don't host the datasets but only point to the original files
44
+ # This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
45
+ _URLs = {
46
+ "train": "train.json",
47
+ "validation": "validation.json",
48
+ "test": "test.json"
49
+ }
50
+
51
+
52
+ class RotowireEnglishGerman(datasets.GeneratorBasedBuilder):
53
+ """Dataset for WNGT2019 shared task on Document-level Generation and Translation."""
54
+
55
+ VERSION = datasets.Version("1.1.0")
56
+
57
+ # This is an example of a dataset with multiple configurations.
58
+ # If you don't want/need to define several sub-sets in your dataset,
59
+ # just remove the BUILDER_CONFIG_CLASS and the BUILDER_CONFIGS attributes.
60
+
61
+ # If you need to make complex sub-parts in the datasets with configurable options
62
+ # You can create your own builder configuration class to store attribute, inheriting from datasets.BuilderConfig
63
+ # BUILDER_CONFIG_CLASS = MyBuilderConfig
64
+
65
+ # You will be able to load one or the other configurations in the following list with
66
+ # data = datasets.load_dataset('my_dataset', 'first_domain')
67
+ # data = datasets.load_dataset('my_dataset', 'second_domain')
68
+ # BUILDER_CONFIGS = [
69
+ # datasets.BuilderConfig(name="nlg_en", version=VERSION, description="NLG: Data-to-English text."),
70
+ # datasets.BuilderConfig(name="nlg_de", version=VERSION, description="NLG: Data-to-German text."),
71
+ # datasets.BuilderConfig(name="mt_en-de", version=VERSION, description="MT: English-to-German text."),
72
+ # datasets.BuilderConfig(name="mt_de-en", version=VERSION, description="MT: German-to-English text."),
73
+ # datasets.BuilderConfig(name="nlg+mt_en-de", version=VERSION, description="NLG+MT: Data+English-to-German text."),
74
+ # datasets.BuilderConfig(name="nlg+mt_de-en", version=VERSION, description="NLG+MT: Data+German-to-English text."),
75
+ # ]
76
+
77
+ def _info(self):
78
+ # max 26 entries in each box_score field.
79
+ box_score_entry = {str(i): datasets.Value("string") for i in range(26)}
80
+ box_score_features = {
81
+ "FIRST_NAME": box_score_entry,
82
+ "MIN": box_score_entry,
83
+ "FGM": box_score_entry,
84
+ "REB": box_score_entry,
85
+ "FG3A": box_score_entry,
86
+ "PLAYER_NAME": box_score_entry,
87
+ "AST": box_score_entry,
88
+ "FG3M": box_score_entry,
89
+ "OREB": box_score_entry,
90
+ "TO": box_score_entry,
91
+ "START_POSITION": box_score_entry,
92
+ "PF": box_score_entry,
93
+ "PTS": box_score_entry,
94
+ "FGA": box_score_entry,
95
+ "STL": box_score_entry,
96
+ "FTA": box_score_entry,
97
+ "BLK": box_score_entry,
98
+ "DREB": box_score_entry,
99
+ "FTM": box_score_entry,
100
+ "FT_PCT": box_score_entry,
101
+ "FG_PCT": box_score_entry,
102
+ "FG3_PCT": box_score_entry,
103
+ "SECOND_NAME": box_score_entry,
104
+ "TEAM_CITY": box_score_entry,
105
+ }
106
+ line_features = {
107
+ "TEAM-PTS_QTR2": datasets.Value("string"),
108
+ "TEAM-FT_PCT": datasets.Value("string"),
109
+ "TEAM-PTS_QTR1": datasets.Value("string"),
110
+ "TEAM-PTS_QTR4": datasets.Value("string"),
111
+ "TEAM-PTS_QTR3": datasets.Value("string"),
112
+ "TEAM-CITY": datasets.Value("string"),
113
+ "TEAM-PTS": datasets.Value("string"),
114
+ "TEAM-AST": datasets.Value("string"),
115
+ "TEAM-LOSSES": datasets.Value("string"),
116
+ "TEAM-NAME": datasets.Value("string"),
117
+ "TEAM-WINS": datasets.Value("string"),
118
+ "TEAM-REB": datasets.Value("string"),
119
+ "TEAM-TOV": datasets.Value("string"),
120
+ "TEAM-FG3_PCT": datasets.Value("string"),
121
+ "TEAM-FG_PCT": datasets.Value("string")
122
+ }
123
+ features = datasets.Features(
124
+ {
125
+ "id":datasets.Value("string"),
126
+ "gem_id":datasets.Value("string"),
127
+ "home_name": datasets.Value("string"),
128
+ "box_score": box_score_features,
129
+ "vis_name": datasets.Value("string"),
130
+ "summary": datasets.Sequence(datasets.Value("string")),
131
+ "home_line": line_features,
132
+ "home_city": datasets.Value("string"),
133
+ "vis_line": line_features,
134
+ "vis_city": datasets.Value("string"),
135
+ "day": datasets.Value("string"),
136
+ "detok_summary_org": datasets.Value("string"),
137
+ "detok_summary": datasets.Value("string"),
138
+ "summary_en": datasets.Sequence(datasets.Value("string")),
139
+ "sentence_end_index_en": datasets.Sequence(datasets.Value("int32")),
140
+ "summary_de": datasets.Sequence(datasets.Value("string")),
141
+ "sentence_end_index_de": datasets.Sequence(datasets.Value("int32"))
142
+ }
143
+ )
144
+ return datasets.DatasetInfo(
145
+ # This is the description that will appear on the datasets page.
146
+ description=_DESCRIPTION,
147
+ # This defines the different columns of the dataset and their types
148
+ features=features, # Here we define them above because they are different between the two configurations
149
+ # If there's a common (input, target) tuple from the features,
150
+ # specify them here. They'll be used if as_supervised=True in
151
+ # builder.as_dataset.
152
+ supervised_keys=None,
153
+ # Homepage of the dataset for documentation
154
+ homepage=_HOMEPAGE,
155
+ # License for the dataset if available
156
+ license=_LICENSE,
157
+ # Citation for the dataset
158
+ citation=_CITATION,
159
+ )
160
+
161
+ def _split_generators(self, dl_manager):
162
+ """Returns SplitGenerators."""
163
+ # TODO: This method is tasked with downloading/extracting the data and defining the splits depending on the configuration
164
+ # If several configurations are possible (listed in BUILDER_CONFIGS), the configuration selected by the user is in self.config.name
165
+
166
+ # dl_manager is a datasets.download.DownloadManager that can be used to download and extract URLs
167
+ # It can accept any type or nested list/dict and will give back the same structure with the url replaced with path to local files.
168
+ # By default the archives will be extracted and a path to a cached folder where they are extracted is returned instead of the archive
169
+ data_dir = dl_manager.download_and_extract(_URLs)
170
+ return [
171
+ datasets.SplitGenerator(
172
+ name=datasets.Split.TRAIN,
173
+ # These kwargs will be passed to _generate_examples
174
+ gen_kwargs={
175
+ "filepath": data_dir["train"],
176
+ "split": "train",
177
+ },
178
+ ),
179
+ datasets.SplitGenerator(
180
+ name=datasets.Split.TEST,
181
+ # These kwargs will be passed to _generate_examples
182
+ gen_kwargs={
183
+ "filepath": data_dir["test"],
184
+ "split": "test"
185
+ },
186
+ ),
187
+ datasets.SplitGenerator(
188
+ name=datasets.Split.VALIDATION,
189
+ # These kwargs will be passed to _generate_examples
190
+ gen_kwargs={
191
+ "filepath": data_dir["validation"],
192
+ "split": "validation",
193
+ },
194
+ ),
195
+ ]
196
+
197
+ def _generate_examples(
198
+ self, filepath, split # method parameters are unpacked from `gen_kwargs` as given in `_split_generators`
199
+ ):
200
+ """ Yields examples as (key, example) tuples. """
201
+ # This method handles input defined in _split_generators to yield (key, example) tuples from the dataset.
202
+ # The `key` is here for legacy reason (tfds) and is not important in itself.
203
+
204
+ with open(filepath, encoding="utf-8") as f:
205
+ all_data = json.load(f)
206
+ for id_, data in enumerate(all_data):
207
+ yield id_, data
rotowire_english_german-11_22_2021_19_36_35.json ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "overview": {
3
+ "where": {
4
+ "has-leaderboard": "no",
5
+ "leaderboard-url": "N/A",
6
+ "leaderboard-description": "N/A",
7
+ "website": "https://sites.google.com/view/wngt19/dgt-task",
8
+ "data-url": "https://github.com/neulab/dgt",
9
+ "paper-url": "https://www.aclweb.org/anthology/D19-5601/",
10
+ "paper-bibtext": "@inproceedings{hayashi-etal-2019-findings,\n title = \"Findings of the Third Workshop on Neural Generation and Translation\",\n author = \"Hayashi, Hiroaki and\n Oda, Yusuke and\n Birch, Alexandra and\n Konstas, Ioannis and\n Finch, Andrew and\n Luong, Minh-Thang and\n Neubig, Graham and\n Sudoh, Katsuhito\",\n booktitle = \"Proceedings of the 3rd Workshop on Neural Generation and Translation\",\n month = nov,\n year = \"2019\",\n address = \"Hong Kong\",\n publisher = \"Association for Computational Linguistics\",\n url = \"https://aclanthology.org/D19-5601\",\n doi = \"10.18653/v1/D19-5601\",\n pages = \"1--14\",\n abstract = \"This document describes the findings of the Third Workshop on Neural Generation and Translation, held in concert with the annual conference of the Empirical Methods in Natural Language Processing (EMNLP 2019). First, we summarize the research trends of papers presented in the proceedings. Second, we describe the results of the two shared tasks 1) efficient neural machine translation (NMT) where participants were tasked with creating NMT systems that are both accurate and efficient, and 2) document generation and translation (DGT) where participants were tasked with developing systems that generate summaries from structured data, potentially with assistance from text in another language.\",\n}",
11
+ "contact-name": "Hiroaki Hayashi",
12
+ "contact-email": "hiroakih@andrew.cmu.edu"
13
+ },
14
+ "languages": {
15
+ "is-multilingual": "yes",
16
+ "license": "cc-by-4.0: Creative Commons Attribution 4.0 International",
17
+ "task-other": "N/A",
18
+ "language-names": [
19
+ "English",
20
+ "German"
21
+ ],
22
+ "intended-use": "Foster the research on document-level generation technology and contrast the methods for different types of inputs.",
23
+ "license-other": "N/A",
24
+ "task": "Data-to-Text",
25
+ "communicative": "Describe a basketball game given its box score table (and possibly a summary in a foreign language)."
26
+ },
27
+ "credit": {
28
+ "organization-type": [
29
+ "academic"
30
+ ],
31
+ "organization-names": "Carnegie Mellon University",
32
+ "creators": "Graham Neubig (Carnegie Mellon University), Hiroaki Hayashi (Carnegie Mellon University)",
33
+ "funding": "Graham Neubig",
34
+ "gem-added-by": "Hiroaki Hayashi (Carnegie Mellon University)"
35
+ },
36
+ "structure": {
37
+ "data-fields": "- `id` (`string`): The identifier from the original dataset.\n- `gem_id` (`string`): The identifier from GEMv2.\n- `day` (`string`): Date of the game (Format: `MM_DD_YY`)\n- `home_name` (`string`): Home team name.\n- `home_city` (`string`): Home team city name.\n- `vis_name` (`string`): Visiting (Away) team name.\n- `vis_city` (`string`): Visiting team (Away) city name.\n- `home_line` (`Dict[str, str]`): Home team statistics (e.g., team free throw percentage).\n- `vis_line` (`Dict[str, str]`): Visiting team statistics (e.g., team free throw percentage).\n- `box_score` (`Dict[str, Dict[str, str]]`): Box score table. (Stat_name to [player ID to stat_value].)\n- `summary_en` (`List[string]`): Tokenized target summary in English.\n- `sentence_end_index_en` (`List[int]`): Sentence end indices for `summary_en`.\n- `summary_de` (`List[string]`): Tokenized target summary in German.\n- `sentence_end_index_de` (`List[int]`): ): Sentence end indices for `summary_de`.\n- (Unused) `detok_summary_org` (`string`): Original summary provided by RotoWire dataset.\n- (Unused) `summary` (`List[string]`): Tokenized summary of `detok_summary_org`.\n- (Unused) `detok_summary` (`string`): Detokenized (with organizer's detokenizer) summary of `summary`.\n",
38
+ "structure-description": "- Structured data are directly imported from the original RotoWire dataset.\n- Textual data (English, German) are associated to each sample.",
39
+ "structure-labels": "N/A",
40
+ "structure-splits": "- Train\n- Validation\n- Test",
41
+ "structure-example": "{\n 'id': '11_02_16-Jazz-Mavericks-TheUtahJazzdefeatedthe',\n 'gem_id': 'GEM-RotoWire_English-German-train-0'\n 'day': '11_02_16',\n 'home_city': 'Utah',\n 'home_name': 'Jazz',\n 'vis_city': 'Dallas',\n 'vis_name': 'Mavericks',\n 'home_line': {\n 'TEAM-FT_PCT': '58', ...\n },\n 'vis_line': {\n 'TEAM-FT_PCT': '80', ...\n },\n 'box_score': {\n 'PLAYER_NAME': {\n '0': 'Harrison Barnes', ...\n }, ...\n 'summary_en': ['The', 'Utah', 'Jazz', 'defeated', 'the', 'Dallas', 'Mavericks', ...],\n 'sentence_end_index_en': [16, 52, 100, 137, 177, 215, 241, 256, 288],\n 'summary_de': ['Die', 'Utah', 'Jazz', 'besiegten', 'am', 'Mittwoch', 'in', 'der', ...],\n 'sentence_end_index_de': [19, 57, 107, 134, 170, 203, 229, 239, 266],\n 'detok_summary_org': \"The Utah Jazz defeated the Dallas Mavericks 97 - 81 ...\",\n 'detok_summary': \"The Utah Jazz defeated the Dallas Mavericks 97-81 ...\",\n 'summary': ['The', 'Utah', 'Jazz', 'defeated', 'the', 'Dallas', 'Mavericks', ...],\n}",
42
+ "structure-splits-criteria": "- English summaries are provided sentence-by-sentence to professional German translators with basketball knowledge to obtain sentence-level German translations.\n- Split criteria follows the original RotoWire dataset.",
43
+ "structure-outlier": "- The (English) summary length in the training set varies from 145 to 650 words, with an average of 323 words."
44
+ }
45
+ },
46
+ "curation": {
47
+ "original": {
48
+ "is-aggregated": "yes",
49
+ "aggregated-sources": "RotoWire",
50
+ "rationale": "A random subset of RotoWire dataset was chosen for German translation annotation.",
51
+ "communicative": "Foster the research on document-level generation technology and contrast the methods for different types of inputs."
52
+ },
53
+ "language": {
54
+ "found": [],
55
+ "crowdsourced": [],
56
+ "created": "Professional German language translators were hired to translate basketball summaries from a subset of RotoWire dataset.",
57
+ "machine-generated": "N/A",
58
+ "validated": "validated by data curator",
59
+ "is-filtered": "not filtered",
60
+ "filtered-criteria": "N/A",
61
+ "obtained": [
62
+ "Created for the dataset"
63
+ ],
64
+ "producers-description": "Translators are familiar with basketball terminology.",
65
+ "topics": "Basketball (NBA) game summaries.",
66
+ "pre-processed": "Sentence-level translations were aligned back to the original English summary sentences."
67
+ },
68
+ "annotations": {
69
+ "origin": "automatically created",
70
+ "rater-number": "N/A",
71
+ "rater-qualifications": "N/A",
72
+ "rater-training-num": "N/A",
73
+ "rater-test-num": "N/A",
74
+ "rater-annotation-service-bool": "no",
75
+ "rater-annotation-service": [],
76
+ "values": "Sentence-end indices for the tokenized summaries. Sentence boundaries can help users accurately identify aligned sentences in both languages, as well as allowing an accurate evaluation that involves sentence boundaries (ROUGE-L).",
77
+ "quality-control": "validated through automated script",
78
+ "quality-control-details": "Token and number overlaps between pairs of aligned sentences are measured."
79
+ },
80
+ "consent": {
81
+ "has-consent": "no",
82
+ "consent-policy": "N/A",
83
+ "consent-other": "N/A",
84
+ "no-consent-justification": "Reusing by citing the original papers:\n- Sam Wiseman, Stuart M. Shieber, Alexander M. Rush:\nChallenges in Data-to-Document Generation. EMNLP 2017.\n- Hiroaki Hayashi, Yusuke Oda, Alexandra Birch, Ioannis Konstas, Andrew Finch, Minh-Thang Luong, Graham Neubig, Katsuhito Sudoh. Findings of the Third Workshop on Neural Generation and Translation. WNGT 2019."
85
+ },
86
+ "pii": {
87
+ "has-pii": "unlikely",
88
+ "no-pii-justification": "N/A",
89
+ "is-pii-identified": "no identification",
90
+ "pii-identified-method": "N/A",
91
+ "is-pii-replaced": "N/A",
92
+ "pii-replaced-method": "N/A",
93
+ "pii-categories": [
94
+ "generic PII"
95
+ ]
96
+ },
97
+ "maintenance": {
98
+ "has-maintenance": "no",
99
+ "description": "N/A",
100
+ "contact": "N/A",
101
+ "contestation-mechanism": "N/A",
102
+ "contestation-link": "N/A",
103
+ "contestation-description": "N/A"
104
+ }
105
+ },
106
+ "gem": {
107
+ "rationale": {
108
+ "sole-task-dataset": "yes",
109
+ "distinction-description": "The potential use of two modalities (data, foreign text) as input.",
110
+ "sole-language-task-dataset": "yes",
111
+ "contribution": "The use of two modalities (data, foreign text) to generate a document-level text summary.",
112
+ "model-ability": "- Translation\n- Data-to-text verbalization\n- Aggregation of the two above."
113
+ },
114
+ "curation": {
115
+ "has-additional-curation": "yes",
116
+ "modification-types": [
117
+ "other"
118
+ ],
119
+ "modification-description": "- Added GEM ID in each sample.\n- Normalize the number of players in each sample with \"N/A\" for consistent data loading.",
120
+ "has-additional-splits": "no",
121
+ "additional-splits-description": "N/A",
122
+ "additional-splits-capacicites": "N/A"
123
+ },
124
+ "starting": {
125
+ "technical-terms": "- Data-to-text\n- Neural machine translation (NMT)\n- Document-level generation and translation (DGT) ",
126
+ "research-pointers": "- https://aclanthology.org/D17-1239\n- https://ojs.aaai.org//index.php/AAAI/article/view/4668\n- https://aclanthology.org/D19-5601"
127
+ }
128
+ },
129
+ "results": {
130
+ "results": {
131
+ "other-metrics-definitions": "Model-based measures proposed by (Wiseman et al., 2017):\n- Relation Generation\n- Content Selection\n- Content Ordering",
132
+ "has-previous-results": "yes",
133
+ "current-evaluation": "N/A.",
134
+ "previous-results": "See Table 2 to 7 of (https://aclanthology.org/D19-5601) for previous results for this dataset.",
135
+ "metrics": [
136
+ "BLEU",
137
+ "ROUGE",
138
+ "Other: Other Metrics"
139
+ ],
140
+ "original-evaluation": "To evaluate the fidelity of the generated content to the input data.",
141
+ "model-abilities": "- Textual accuracy towards the gold-standard summary.\n- Content faithfulness to the input structured data."
142
+ }
143
+ },
144
+ "considerations": {
145
+ "pii": {
146
+ "risks-description": "- Structured data contain real National Basketball Association player and organization names."
147
+ },
148
+ "licenses": {
149
+ "dataset-restrictions-other": "N/A",
150
+ "data-copyright-other": "N/A",
151
+ "dataset-restrictions": [
152
+ "open license - commercial use allowed"
153
+ ],
154
+ "data-copyright": [
155
+ "open license - commercial use allowed"
156
+ ]
157
+ },
158
+ "limitations": {
159
+ "data-technical-limitations": "Potential overlap of box score tables between splits. This was extensively studied and pointed out by [1].\n\n[1]: Thomson, Craig, Ehud Reiter, and Somayajulu Sripada. \"SportSett: Basketball-A robust and maintainable data-set for Natural Language Generation.\" Proceedings of the Workshop on Intelligent Information Processing and Natural Language Generation. 2020.",
160
+ "data-unsuited-applications": "Users may interact with a trained model to learn about a NBA game in a textual manner. On generated texts, they may observe factual errors that contradicts the actual data that the model conditions on.\nFactual errors include wrong statistics of a player (e.g., 3PT), non-existent injury information.",
161
+ "data-discouraged-use": "Publishing the generated text as is. Even if the model achieves high scores on the evaluation metrics, there is a risk of factual errors mentioned above."
162
+ }
163
+ },
164
+ "context": {
165
+ "previous": {
166
+ "is-deployed": "no",
167
+ "described-risks": "N/A",
168
+ "changes-from-observation": "N/A"
169
+ },
170
+ "underserved": {
171
+ "helps-underserved": "no",
172
+ "underserved-description": "N/A"
173
+ },
174
+ "biases": {
175
+ "has-biases": "no",
176
+ "bias-analyses": "N/A",
177
+ "speaker-distibution": "- English text in this dataset is from Rotowire, originally written by writers at Rotowire.com that are likely US-based.\n- German text is produced by professional translators proficient in both English and German."
178
+ }
179
+ }
180
+ }