IMISLab commited on
Commit
85e6464
·
verified ·
1 Parent(s): 66481ea

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -3
README.md CHANGED
@@ -1,3 +1,78 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - question-answering
5
+ language:
6
+ - el
7
+ tags:
8
+ - question
9
+ - answering
10
+ - greek
11
+ - nlp
12
+ - social
13
+ - media
14
+ - evaluation
15
+ - LLMs
16
+ - Reddit
17
+ pretty_name: DemosQA
18
+ size_categories:
19
+ - n<1K
20
+ ---
21
+
22
+ # DemosQA
23
+
24
+ We introduce DemosQA, a novel Greek QA dataset, which is constructed using social media user questions and community-reviewed answers to better capture the Greek social and cultural zeitgeist.
25
+ It comprises questions extracted from the “r/greece” subreddit, each accompanied by four candidate answers, the selected best answer and its index, the date of posting, and the corresponding Reddit post ID.
26
+ Candidate answers are ranked based on community voting, with the highest-upvoted response designated as the reference answer.
27
+ This community-driven ranking mechanism not only ensures that the dataset captures genuine user preferences but also establishes a meaningful benchmark for assessing how closely large language models align with human judgments of response quality.
28
+ For information about dataset creation, limitations etc. see the cited preprint below.
29
+
30
+ <img src="DemosQA.svg" width="200"/>
31
+
32
+ ### Supported Tasks and Leaderboards
33
+
34
+ This dataset supports:
35
+
36
+ **Question Answering:** A text generation model can be evaluated for QA.
37
+
38
+ ### Languages
39
+
40
+ All dataset samples are written in Greek.
41
+
42
+ ## Dataset Structure
43
+
44
+ ### Data Instances
45
+
46
+ The dataset is structured as a `.csv` file of 600 rows.
47
+
48
+ ### Data Fields
49
+
50
+ The following data fields are provided for each split:
51
+
52
+ `id`: (**str**) The post id.
53
+ `question`: (**str**) The post question and its context.
54
+ `answers`: (**str**): The string containing the four candidate answers.
55
+ `best_answer`: (**str**) The best answer text selected by the community.
56
+ `best_answer_index`: (**str**) The letter index of the best answer.
57
+
58
+ ### Example code
59
+ ```python
60
+ from datasets import load_dataset
61
+
62
+ # Load the dataset.
63
+ test_split = load_dataset('IMISLab/DemosQA', split = 'all')
64
+ print(test_split[0])
65
+ ```
66
+ ## Contact
67
+
68
+ If you have any questions/feedback about the dataset please e-mail one of the following authors:
69
+ ```
70
+ giarelis@ceid.upatras.gr
71
+ cmastrokostas@ac.upatras.gr
72
+ karacap@upatras.gr
73
+ ```
74
+ ## Citation
75
+
76
+ ```
77
+ TBA
78
+ ```