CNLeonardoCordoba commited on
Commit
de62c91
1 Parent(s): 5071ee1

json to jsonl, script and reame

Browse files
Files changed (5) hide show
  1. README.md +168 -0
  2. eval.jsonl +3 -0
  3. sample.jsonl +3 -0
  4. test.jsonl +3 -0
  5. train.jsonl +3 -0
README.md ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - found
6
+ languages:
7
+ - es
8
+ licenses:
9
+ - mit
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 100K<n<1M
14
+ source_datasets:
15
+ - cc-news
16
+ task_categories:
17
+ - conditional-text-generation
18
+ task_ids:
19
+ - summarization
20
+ ---
21
+
22
+ # Dataset Card for CC-NEWS-ES-titles
23
+
24
+ ## Table of Contents
25
+ - [Dataset Description](#dataset-description)
26
+ - [Dataset Summary](#dataset-summary)
27
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
28
+ - [Languages](#languages)
29
+ - [Dataset Structure](#dataset-structure)
30
+ - [Data Instances](#data-instances)
31
+ - [Data Fields](#data-fields)
32
+ - [Data Splits](#data-splits)
33
+ - [Dataset Creation](#dataset-creation)
34
+ - [Curation Rationale](#curation-rationale)
35
+ - [Source Data](#source-data)
36
+ - [Annotations](#annotations)
37
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
38
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
39
+ - [Social Impact of Dataset](#social-impact-of-dataset)
40
+ - [Discussion of Biases](#discussion-of-biases)
41
+ - [Other Known Limitations](#other-known-limitations)
42
+ - [Additional Information](#additional-information)
43
+ - [Dataset Curators](#dataset-curators)
44
+ - [Licensing Information](#licensing-information)
45
+ - [Citation Information](#citation-information)
46
+ - [Contributions](#contributions)
47
+
48
+ ## Dataset Description
49
+
50
+ - **Homepage:**
51
+ - **Repository:** [CC-NEWS-ES-titles dataset repository](https://huggingface.co/datasets/LeoCordoba/CC-NEWS-ES-titles)
52
+ - **Paper:**
53
+ - **Leaderboard:**
54
+ - **Point of Contact:** [Leonardo Ignacio Córdoba](https://www.linkedin.com/in/leonardo-ignacio-c%C3%B3rdoba/)
55
+
56
+ ### Dataset Summary
57
+
58
+ CC-NEWS-ES-titles is a Spanish-language dataset for news titles generation. The text and titles comes from 2019 and 2020 CC-NEWS data (which is part of Common Crawl).
59
+
60
+ It contains 402.310 pairs of news title and body, splitted in :
61
+
62
+ Train: 370.125
63
+ Eval: 16.092
64
+ Test: 16.092
65
+
66
+ ### Supported Tasks and Leaderboards
67
+
68
+ - `text-classification`, `sentiment-classification`: The dataset can be used to train a model for news title generation which can be considered a subset of abstractive summarization.
69
+
70
+
71
+ ### Languages
72
+
73
+ The text is in Spanish. The BCP-47 code for Spanish is es.
74
+
75
+ ## Dataset Structure
76
+
77
+ ### Data Instances
78
+
79
+ Each data instance contains the following features: _text_ and _output_text_.
80
+
81
+ - _text_ is the body of the news.
82
+ - _output_text_ is the title of the news.
83
+
84
+
85
+ An example from the Allociné train set looks like the following:
86
+ ```
87
+ {'text': 'Hoy en el Boletín Oficial también se publicó la disposición para universidades, institutos universitarios y de educación superior de todas las jurisdicciones, a las que recomienda que "adecúen las condiciones en que se desarrolla la actividad académica presencial en el marco de la emergencia conforme con las recomendaciones del Ministerio de Salud", según lo publicado por la agencia\t',
88
+ 'output_text': 'Coronavirus: "Seguimos educando", la plataforma online para que los chicos estudien en cuarentena'}
89
+
90
+ ```
91
+
92
+ ### Data Fields
93
+
94
+ - 'text': a string containing the body of the news.
95
+ - 'output_text': a string containing the title of the news.
96
+
97
+ ### Data Splits
98
+
99
+ The Allociné dataset has 3 splits: _train_, _validation_, and _test_. The splits contain disjoint sets of movies. The following table contains the number of reviews in each split and the percentage of positive and negative reviews.
100
+
101
+ | Dataset Split | Number of Instances in Split |
102
+ | ------------- | ---------------------------- |
103
+ | Train | 370.125 |
104
+ | Eval | 16.092 |
105
+ | Test | 16.092 |
106
+
107
+ ## Dataset Creation
108
+
109
+ ### Curation Rationale
110
+
111
+ [N/A]
112
+
113
+ ### Source Data
114
+
115
+ #### Initial Data Collection and Normalization
116
+
117
+ TODO
118
+
119
+ #### Who are the source language producers?
120
+
121
+ Common Crawl: https://commoncrawl.org/
122
+
123
+ ### Annotations
124
+
125
+ The dataset does not contain any additional annotations.
126
+
127
+ #### Annotation process
128
+
129
+ [N/A]
130
+
131
+ #### Who are the annotators?
132
+
133
+ [N/A]
134
+
135
+ ### Personal and Sensitive Information
136
+
137
+ [N/A]
138
+
139
+ ## Considerations for Using the Data
140
+
141
+ ### Social Impact of Dataset
142
+
143
+ Abstractive summarization is a complex task and Spanish is a underrepresented language in the NLP domain. As a consequence, adding a Spanish resource may help others to improve their research and educational activities.
144
+
145
+ ### Discussion of Biases
146
+
147
+ [N/A]
148
+
149
+ ### Other Known Limitations
150
+
151
+ [N/A]
152
+
153
+ ## Additional Information
154
+
155
+ ### Dataset Curators
156
+
157
+ [N/A]
158
+
159
+ ### Licensing Information
160
+
161
+ [N/A]
162
+
163
+ ### Citation Information
164
+
165
+ TODO
166
+ ### Contributions
167
+
168
+ [N/A]
eval.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2e986d4a36a8194915e8e4e35e5723324f3df9494f223ee5a7f341cc4e98f36
3
+ size 26167193
sample.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17cf1031cc688e9e93848523882cc7c745fe5a812b802f7dca5f462822bc5ff6
3
+ size 7594
test.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e46ea032c13a268fd2346e728ea1b1f919b6f8af50712b5c38c9fda83c26f3d9
3
+ size 26285538
train.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8fb35cda6132005a9862bd658093bdd5f2100e1cf729ac38fce31fa23d9774f
3
+ size 602204733