Datasets:
silviapasuarez
commited on
Commit
•
1ff0a6a
1
Parent(s):
a232890
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-4.0
|
3 |
+
task_categories:
|
4 |
+
- summarization
|
5 |
+
language:
|
6 |
+
- gl
|
7 |
+
---
|
8 |
+
# Dataset Card for summarization_gl
|
9 |
+
|
10 |
+
<!-- Provide a quick summary of the dataset. -->
|
11 |
+
|
12 |
+
summarization_gl is a dataset in Galician language that contains automatically extracted summaries from different Galician news websites.
|
13 |
+
|
14 |
+
## Dataset Details
|
15 |
+
|
16 |
+
### Dataset Description
|
17 |
+
|
18 |
+
<!-- Provide a longer summary of what this dataset is. -->
|
19 |
+
|
20 |
+
summarization_gl is a dataset in Galician language that contains automatically extracted summaries from three different Galician news websites.
|
21 |
+
|
22 |
+
- **Curated by:** [Proxecto Nós](https://doagalego.nos.gal/)
|
23 |
+
- **Language(s) (NLP):** Galician
|
24 |
+
- **License:** CC BY 4.0
|
25 |
+
|
26 |
+
## Uses
|
27 |
+
|
28 |
+
<!-- Address questions around how the dataset is intended to be used. -->
|
29 |
+
|
30 |
+
This dataset can be used for fine-tunning, instruction and evaluation of the summarization task in text models.
|
31 |
+
|
32 |
+
## Dataset Structure
|
33 |
+
|
34 |
+
<!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
|
35 |
+
|
36 |
+
The dataset is comprised of three JSONL files, one for each split (train/test/validation).
|
37 |
+
|
38 |
+
Train: 56.600 items
|
39 |
+
Test: 16.200 items
|
40 |
+
Validation: 8.080 items
|
41 |
+
|
42 |
+
### Data Fields
|
43 |
+
|
44 |
+
summary: str
|
45 |
+
text: str
|
46 |
+
|
47 |
+
Example:
|
48 |
+
|
49 |
+
```python
|
50 |
+
{ 'summary': ' Fontes da área sanitaria A Coruña-Cee confirman que non existe ningún brote de coronavirus na Costa da Morte. ',
|
51 |
+
'text': ' Un novo positivo na zona fixo proliferar novamente os bulos aos que estamos acostumados. Fontes do Concello de Fisterra confirman que se trata dun só caso positivo nunha familia catalana que veu a pasar as vacacións ao pobo, xa que teñen familiares na zona. Unha persoa da unidade familiar, por motivos persoais, tivo que facer unha viaxe a Cataluña e, ao volver, fixéronlle a proba porque tivo contacto con outro familiar que dera positivo posteriormente á visita. Este dou tamén positivo sendo asintomático, polo que quedou illado na súa casa á espera de realizar a corentena de 15 días. Ao resto da familia tamén se lle realizou a proba, mais estes deron todos negativo. De todos xeitos, tamén están a gardar corentena noutra casa diferente ao que dou positivo. Ademais, fontes do Sergas da área sanitaria A Coruña-Cee desminten que haxa ningún tipo de brote de Coronavirus na Costa da Morte.'}
|
52 |
+
```
|