ilmariky commited on
Commit
95b550c
1 Parent(s): f2dd229

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -1
README.md CHANGED
@@ -1,3 +1,87 @@
1
  ---
2
- license: gpl-3.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: WikiQA-100-fi
3
+ language:
4
+ - fi
5
+ license:
6
+ - gpl-3.0
7
+ multilinguality:
8
+ - monolingual
9
+ size_categories:
10
+ - 100
11
+ task_categories:
12
+ - question-answering
13
+ - question-generation
14
+ - extractive-qa
15
+ task_ids:
16
+ - extractive-qa
17
+ - config: plain_text
18
+ task: question-answering
19
+ task_id: extractive_question_answering
20
+ splits:
21
+ train_split: train
22
+ eval_split: validation
23
+ col_mapping:
24
+ question: question
25
+ context: context
26
+ answers:
27
+ text: text
28
+ answer_start: answer_start
29
  ---
30
+ # Dataset Card for "WikiQA-100-fi"
31
+ ### Dataset Summary
32
+ QA100-fi dataset contains 100 questions related to Finnish Wikipedia articles. The dataset is in the [SQuAD](https://rajpurkar.github.io/SQuAD-explorer/) format, and there are 10 questions for each category identified by the authors of SQuAD. Unlike SQuAD2.0, WikiQA-100-fi contains only answerable questions. The dataset is tiny compared to actual QA test sets, but it still gives an impression of the models' performance on purely native text data collected by a native speaker. The dataset was originally created as an evaluation set for models that had been mostly fine-tuned with automatically translated QA data. More information about the dataset and models created with it can be found [here](https://helda.helsinki.fi/handle/10138/344973).
33
+ ## Dataset Structure
34
+ ### Data Instances
35
+ Example data:
36
+ ```
37
+ {
38
+ "title": "Folksonomia",
39
+ "paragraphs": [
40
+ {
41
+ "qas": [
42
+ {
43
+ "question": "Minkälaista sisältöä käyttäjät voivat luokitella folksonomian avulla?",
44
+ "id": "6t4ufel624",
45
+ "answers": [
46
+ {
47
+ "text": "www-sivuja, valokuvia ja linkkejä",
48
+ "answer_start": 155
49
+ }
50
+ ],
51
+ "is_impossible": false
52
+ }
53
+ ],
54
+ "context": "Folksonomia (engl. folksonomy) on yhteisöllisesti tuotettu, avoin luokittelujärjestelmä, jonka avulla internet-käyttäjät voivat luokitella sisältöä, kuten www-sivuja, valokuvia ja linkkejä. Etymologisesti folksonomia on peräisin sanojen \"folk\" (suom. väki) ja \"taxonomy\" (suom. taksonomia) leikkimielisestä yhdistelmästä."
55
+ }
56
+ ]
57
+ }
58
+ ```
59
+ ### Data Fields
60
+
61
+ #### plain_text
62
+ - `id`: a `string` feature.
63
+ - `title`: a `string` feature.
64
+ - `context`: a `string` feature.
65
+ - `question`: a `string` feature.
66
+ - `answers`: a dictionary feature containing:
67
+ - `text`: a `string` feature.
68
+ - `answer_start`: a `int32` feature.
69
+ ### Data Splits
70
+ | name | test|
71
+ |----------|----:|
72
+ |plain_text| 200|
73
+
74
+ ### Citation Information
75
+ ```
76
+ @MastersThesis{3241c198b3f147faacbc6d8b64ed9419,
77
+ author = "Kylli{\"a}inen, {Ilmari}",
78
+ title = "Neural Factoid Question Answering and Question Generation for Finnish",
79
+ language = "en",
80
+ address = "Helsinki, Finland",
81
+ school = "University of Helsinki",
82
+ year = "2022",
83
+ month = "jun",
84
+ day = "15",
85
+ url = "https://helda.helsinki.fi/handle/10138/344973"
86
+ }
87
+ ```