ruanchaves commited on
Commit
9ff8ae6
1 Parent(s): 80a2ede

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +94 -0
README.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: FaQuAD-NLI
3
+ annotations_creators:
4
+ - expert-generated
5
+ language_creators:
6
+ - found
7
+ language:
8
+ - pt
9
+ license:
10
+ - cc-by-4.0
11
+ multilinguality:
12
+ - monolingual
13
+ size_categories:
14
+ - n<1K
15
+ source_datasets:
16
+ - extended|wikipedia
17
+ task_categories:
18
+ - question-answering
19
+ task_ids:
20
+ - extractive-qa
21
+ # paperswithcode_id: faquad
22
+ train-eval-index:
23
+ - config: plain_text
24
+ task: question-answering
25
+ task_id: extractive_question_answering
26
+ splits:
27
+ train_split: train
28
+ eval_split: validation
29
+ col_mapping:
30
+ question: question
31
+ context: context
32
+ answers:
33
+ text: text
34
+ answer_start: answer_start
35
+ metrics:
36
+ - type: squad
37
+ name: SQuAD
38
+ ---
39
+
40
+ # Dataset Card for FaQuAD-NLI
41
+
42
+ ## Dataset Description
43
+
44
+ - **Homepage:** https://github.com/liafacom/faquad
45
+ - **Repository:** https://github.com/liafacom/faquad
46
+ - **Paper:** https://ieeexplore.ieee.org/document/8923668/
47
+ <!-- - **Leaderboard:** -->
48
+ - **Point of Contact:** Eraldo R. Fernandes <eraldoluis@gmail.com>
49
+
50
+ ### Dataset Summary
51
+
52
+ FaQuAD is a Portuguese reading comprehension dataset that follows the format of the Stanford Question Answering Dataset (SQuAD). It is a pioneer Portuguese reading comprehension dataset using the challenging format of SQuAD. The dataset aims to address the problem of abundant questions sent by academics whose answers are found in available institutional documents in the Brazilian higher education system. It consists of 900 questions about 249 reading passages taken from 18 official documents of a computer science college from a Brazilian federal university and 21 Wikipedia articles related to the Brazilian higher education system.
53
+
54
+ FaQuAD-NLI is a modified version of the [FaQuAD dataset](https://huggingface.co/datasets/eraldoluis/faquad) that repurposes the question answering task as a textual entailment task, where question and answer sentence pairs must be classified as either suitable or unsuitable as an answer.
55
+
56
+ ### Supported Tasks and Leaderboards
57
+
58
+ - `question_answering`: The dataset can be used to train a model for question-answering tasks in the domain of Brazilian higher education institutions.
59
+ - `textual_entailment`: FaQuAD-NLI can be used to train a model for textual entailment tasks, where question and answer sentence pairs are classified as either suitable or unsuitable as an answer.
60
+
61
+ ### Languages
62
+
63
+ This dataset is in Brazilian Portuguese.
64
+
65
+ ## Dataset Structure
66
+
67
+ ### Data Fields
68
+
69
+ - `document_index`: an integer representing the index of the document.
70
+ - `document_title`: a string containing the title of the document.
71
+ - `paragraph_index`: an integer representing the index of the paragraph within the document.
72
+ - `question`: a string containing the question related to the paragraph.
73
+ - `answer`: a string containing the answer related to the question.
74
+ - `label`: an integer (0 or 1) representing if the answer is suitable (1) or unsuitable (0) for the question.
75
+
76
+ ### Data Splits
77
+
78
+ The dataset is split into three subsets: train, validation, and test. The splits were made carefully to avoid question and answer pairs belonging to the same document appearing in more than one split.
79
+
80
+ - Train: 3128 instances
81
+ - Validation: 731 instances
82
+ - Test: 650 instances
83
+
84
+ ### Licensing Information
85
+
86
+ [More Information Needed]
87
+
88
+ ### Citation Information
89
+
90
+ [More Information Needed]
91
+
92
+ ### Contributions
93
+
94
+ [More Information Needed]