ragerri commited on
Commit
333da78
·
verified ·
1 Parent(s): ab389c9

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +130 -0
README.md ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - es
5
+ tags:
6
+ - casimedicos
7
+ - explainability
8
+ - medical exams
9
+ - medical question answering
10
+ - extractive question answering
11
+ - squad
12
+ - multilinguality
13
+ - LLMs
14
+ - LLM
15
+ pretty_name: casimedicos-squad
16
+ configs:
17
+ - config_name: es
18
+ data_files:
19
+ - split: train
20
+ path:
21
+ - data/es/es_train_casimedicos_squad.json
22
+ - split: validation
23
+ path:
24
+ - data/es/es_dev_casimedicos_squad.json
25
+ - split: test
26
+ path:
27
+ - data/es/es_test_casimedicos_squad.json
28
+ task_categories:
29
+ - question-answering
30
+ size_categories:
31
+ - 1K<n<10K
32
+ ---
33
+
34
+ <p align="center">
35
+ <br>
36
+ <img src="http://www.ixa.eus/sites/default/files/anitdote.png" style="height: 200px;">
37
+ <br>
38
+
39
+ # Antidote CasiMedicos in SQuAD Format for Explanatory Argument Extraction
40
+
41
+ We present a new multilingual parallel medical dataset of commented medical exams which includes not only explanatory arguments
42
+ for the correct answer but also arguments to explain why the remaining possible answers are incorrect.
43
+
44
+ This dataset can be used for various NLP tasks including: **Medical Question Answering**, **Explanatory Argument Extraction** or **Explanation Generation**.
45
+
46
+ The data source consists of Resident Medical Intern or Médico Interno Residente (MIR) exams, originally
47
+ created by [CasiMedicos](https://www.casimedicos.com), a Spanish community of medical professionals who collaboratively, voluntarily,
48
+ and free of charge, publishes written explanations about the possible answers included in the MIR exams. The aim is to generate a resource that
49
+ helps future medical doctors to study towards the MIR examinations. The commented MIR exams, including the explanations, are published in the [CasiMedicos
50
+ Project MIR 2.0 website](https://www.casimedicos.com/mir-2-0/).
51
+
52
+ We have extracted, clean, structure and annotated the available data so that each document in **casimedicos-raw** dataset includes the clinical case, the correct answer,
53
+ the multiple-choice questions and the annotated explanations written by native Spanish medical doctors.
54
+
55
+ Furthermore, the original Spanish data has been translated to create a **parallel multilingual dataset** in 4 languages: **English, French, Italian and Spanish**.
56
+
57
+ <table style="width:33%">
58
+ <tr>
59
+ <th>Antidote CasiMedicos splits</th>
60
+ <tr>
61
+ <td>train</td>
62
+ <td>434</td>
63
+ </tr>
64
+ <tr>
65
+ <td>validation</td>
66
+ <td>63</td>
67
+ </tr>
68
+ <tr>
69
+ <td>test</td>
70
+ <td>125</td>
71
+ </tr>
72
+ </table>
73
+
74
+ - 📖 Paper:[Explanatory Argument Extraction of Correct Answers in Resident Medical Exams](https://arxiv.org/abs/2312.00567)
75
+ - 💻 Github Repo (Data and Code): [https://github.com/ixa-ehu/antidote-casimedicos](https://github.com/ixa-ehu/antidote-casimedicos)
76
+ - 🌐 Project Website: [https://univ-cotedazur.eu/antidote](https://univ-cotedazur.eu/antidote)
77
+ - Funding: CHIST-ERA XAI 2019 call. Antidote (PCI2020-120717-2) funded by MCIN/AEI /10.13039/501100011033 and by European Union NextGenerationEU/PRTR
78
+
79
+
80
+ ## Example
81
+
82
+ <p align="center">
83
+ <img src="https://github.com/ixa-ehu/antidote-casimedicos/blob/main/casimedicos-exp.png?raw=true" style="height: 650px;">
84
+ </p>
85
+
86
+ In this repository you can find the following data:
87
+
88
+ - **casimedicos-squad**: The textual content including Clinical Case (C), Question (Q), Possible Answers (P), and Explanation (E) as shown in the example above.
89
+
90
+ ## Data Explanation
91
+
92
+ The following attributes composed **casimedicos-raw**:
93
+
94
+ - **id**: unique doc identifier.
95
+ - **year**: year in which the exam was published by the Spanish Ministry of Health.
96
+ - **question_id_specific**: id given to the original exam published by the Spanish Ministry of Health.
97
+ - **full_question**: Clinical Case (C) and Question (Q) as illustrated in the example document above.
98
+ - **full answer**: Full commented explanation (E) as illustrated in the example document above.
99
+ - **type**: medical speciality.
100
+ - **options**: Possible Answers (P) as illustrated in the example document above.
101
+ - **correct option**: solution to the exam question.
102
+
103
+ Additionally, the following jsonl attribute was added to create **casimedicos-exp**:
104
+
105
+ - **explanations**: for each possible answer above, manual annotation states whether:
106
+ 1. the explanation for each possible answer exists in the full comment (E) and
107
+ 2. if present, then we provide character and token offsets plus the text corresponding to the explanation for each possible answer.
108
+
109
+ The process of manually annotating the corpus consisted of specifying where the explanations of the correct and incorrect answers begin and end.
110
+ In order to obtain grammatically complete correct answer explanations, annotating full sentences or subordinate clauses was preferred over
111
+ shorter spans.
112
+
113
+
114
+ ## Citation
115
+
116
+
117
+ If you use this data please **cite the following paper**:
118
+
119
+ ```bibtex
120
+ @misc{goenaga2023explanatory,
121
+ title={Explanatory Argument Extraction of Correct Answers in Resident Medical Exams},
122
+ author={Iakes Goenaga and Aitziber Atutxa and Koldo Gojenola and Maite Oronoz and Rodrigo Agerri},
123
+ year={2023},
124
+ eprint={2312.00567},
125
+ archivePrefix={arXiv}
126
+ }
127
+ ```
128
+
129
+ **Contact**: [Iakes Goenaga](http://www.hitz.eus/es/node/65) and [Rodrigo Agerri](https://ragerri.github.io/)
130
+ HiTZ Center - Ixa, University of the Basque Country UPV/EHU