IMISLab commited on
Commit
27a58e0
1 Parent(s): 2ea2d57

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -3
README.md CHANGED
@@ -1,3 +1,92 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - el
5
+ pipeline_tag: summarization
6
+ task_categories:
7
+ - summarization
8
+ - text-generation
9
+ - text2text-generation
10
+ task_ids:
11
+ - summarization
12
+ - text-generation
13
+ - title-generation
14
+ tags:
15
+ - GreekNLP
16
+ - Text Summarization
17
+ - Text Generation
18
+ - Title Generation
19
+ - Greek
20
+ - Wikipedia
21
+ pretty_name: Greek Wikipedia
22
+ size_categories:
23
+ - 10K<n<100K
24
+ ---
25
+
26
+ # GreekWikipedia
27
+
28
+ A Greek abstractive summarization dataset collected from the Greek part of [Wikipedia](https://el.wikipedia.org/), which contains 93,433 articles, their titles and summaries.
29
+ This dataset has been used to train our best-performing model [GreekT5-umt5-base-greekwikipedia](https://huggingface.co/IMISLab/GreekT5-umt5-base-greekwikipedia/) as part of our research article:
30
+ [Giarelis, N., Mastrokostas, C., & Karacapilidis, N. (2024) Greek Wikipedia: A Study on Abstractive Summarization]()
31
+ For information about dataset creation, limitations etc. see the original article.
32
+
33
+ <img src="Greek Wiki icon.svg" width="200"/>
34
+
35
+ ### Supported Tasks and Leaderboards
36
+
37
+ This dataset supports:
38
+
39
+ **Text summarization:** Given the text of an article, a text generation model learns to generate an abstractive summary.
40
+ **Title Generation:** Given the text of an article, a text generation model learns to generate a post title.
41
+
42
+ ### Languages
43
+
44
+ All articles are written in Greek.
45
+
46
+ ## Dataset Structure
47
+
48
+ ### Data Instances
49
+
50
+ The dataset is structured as a `.csv` file, while three dataset splits are provided (train, validation and test).
51
+
52
+ ### Data Fields
53
+
54
+ The following data fields are provided for each split:
55
+
56
+ `title`: (**str**) A short title.
57
+ `article`: (**str**) The full text of the article.
58
+ `summary`: (**str**): The abstractive summary of the article.
59
+ `url`: (**str**) The URL which links to the original unprocessed article.
60
+
61
+ ### Data Splits
62
+
63
+ |Split|No of Documents|
64
+ |-------------------|------------------------------------|
65
+ |Train|83,433|
66
+ |Validation|5000|
67
+ |Test|5000|
68
+
69
+ ### Example code
70
+ ```python
71
+ from datasets import load_dataset
72
+
73
+ # Load the training, validation and test dataset splits.
74
+ train_split = load_dataset('IMISLab/GreekWikipedia', split = 'train')
75
+ validation_split = load_dataset('IMISLab/GreekWikipedia', split = 'validation')
76
+ test_split = load_dataset('IMISLab/GreekWikipedia', split = 'test')
77
+
78
+ print(test_split[0])
79
+ ```
80
+ ## Contact
81
+
82
+ If you have any questions/feedback about the dataset please e-mail one of the following authors:
83
+ ```
84
85
86
87
+ ```
88
+ ## Citation
89
+
90
+ ```
91
+ TBA
92
+ ```