ragerri commited on
Commit
c3c23dc
1 Parent(s): 8a85228

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -20
README.md CHANGED
@@ -91,29 +91,19 @@ Furthermore, the original Spanish data has been translated to create a **paralle
91
  The example above shows a document in CasiMedicos containing the textual content, including Clinical Case (C), Question (Q), Possible Answers (P),
92
  and Explanation (E). Furthermore, for **casimedicos-squad** we annotated the span in the explanation (E) that corresponds to the correct answer (A).
93
 
94
- ## Data Explanation
95
-
96
- The following attributes composed **casimedicos-raw**:
97
-
98
- - **id**: unique doc identifier.
99
- - **year**: year in which the exam was published by the Spanish Ministry of Health.
100
- - **question_id_specific**: id given to the original exam published by the Spanish Ministry of Health.
101
- - **full_question**: Clinical Case (C) and Question (Q) as illustrated in the example document above.
102
- - **full answer**: Full commented explanation (E) as illustrated in the example document above.
103
- - **type**: medical speciality.
104
- - **options**: Possible Answers (P) as illustrated in the example document above.
105
- - **correct option**: solution to the exam question.
106
-
107
- Additionally, the following jsonl attribute was added to create **casimedicos-exp**:
108
-
109
- - **explanations**: for each possible answer above, manual annotation states whether:
110
- 1. the explanation for each possible answer exists in the full comment (E) and
111
- 2. if present, then we provide character and token offsets plus the text corresponding to the explanation for each possible answer.
112
-
113
- The process of manually annotating the corpus consisted of specifying where the explanations of the correct and incorrect answers begin and end.
114
  In order to obtain grammatically complete correct answer explanations, annotating full sentences or subordinate clauses was preferred over
115
  shorter spans.
116
 
 
 
 
 
 
 
 
 
 
117
 
118
  ## Citation
119
 
 
91
  The example above shows a document in CasiMedicos containing the textual content, including Clinical Case (C), Question (Q), Possible Answers (P),
92
  and Explanation (E). Furthermore, for **casimedicos-squad** we annotated the span in the explanation (E) that corresponds to the correct answer (A).
93
 
94
+ The process of manually annotating the corpus consisted of specifying where the explanations of the correct answers begin and end.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  In order to obtain grammatically complete correct answer explanations, annotating full sentences or subordinate clauses was preferred over
96
  shorter spans.
97
 
98
+ ## Data Explanation
99
+
100
+ The dataset is structured as a list of documents ("paragraphs") where each of them include:
101
+
102
+ - **context**: the explanation (E) in the document
103
+ - **qas**: list of possible answers and questions. This element contains:
104
+ - **answers**: a list of answers which corresponds to the explanation of the correct answer (A)
105
+ - **question**: the clinical case (C) and question (Q)
106
+ - **id**: unique identifier for the document
107
 
108
  ## Citation
109