craciuncg commited on
Commit
ab20bae
1 Parent(s): fcd7b9e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -1
README.md CHANGED
@@ -9,4 +9,32 @@ tags:
9
  - biology
10
  size_categories:
11
  - 1K<n<10K
12
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  - biology
10
  size_categories:
11
  - 1K<n<10K
12
+ ---
13
+
14
+ # Description
15
+ This is RoMedQA, a dataset that amounts to 4,127 single-choice questions regarding the medical field in the Romanian language.
16
+ The dataset consists of advanced biology questions used in entrance examinations in medical schools in Romania.
17
+ Each question has five possible answer choices, numbered from 1 to 5, with only one correct answer.
18
+
19
+ # Loading
20
+
21
+ For loading the dataset, you can simply proceed as follows:
22
+
23
+ ```python
24
+ from datasets import load_dataset
25
+
26
+ dataset = load_dataset("craciuncg/RoMedQA_v1")
27
+ ```
28
+
29
+ The format of any sample question from the dataset should be the following:
30
+
31
+ ```json
32
+ {
33
+ 'question': 'Care afirmații sunt adevărate în legătură cu glanda hipofiză?\r\n1. prolactina este un hormon trop secretat de adenohipofiză\r\n2. secreția adenohipofizei este controlată de hipotalamus\r\n3. GnRH și FSH sunt secretați de adenohipofiză\r\n4. hormonul de creștere este secretat de neurohipofiză\r\n5. niciun răspuns corect',
34
+ 'answer': 2
35
+ }
36
+ ```
37
+
38
+ # Citation
39
+
40
+ TODO