Cheaminh commited on
Commit
3309c6a
·
verified ·
1 Parent(s): 7d3b837

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -8
README.md CHANGED
@@ -1,8 +1,46 @@
1
- ---
2
- task_categories:
3
- - token-classification
4
- language:
5
- - km
6
- tags:
7
- - medical
8
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # KHEED Dataset Card
2
+
3
+ ## Summary
4
+
5
+ The Khmer Health Event Extraction Dataset (KHEED) is designed for named entity recognition in the Khmer language, specially in the health domain. The data was crawled from Khmer news websites. This dataset includes eight entity types:
6
+
7
+ - **Disease (DIS)**
8
+ - **Location (LOC)**
9
+ - **Organization (ORG)**
10
+ - **HumanCount (HUM)**
11
+ - **Pathogen (PAT)**
12
+ - **Date (DAT)**
13
+ - **Symptom (SYM)**
14
+ - **Medication (MED)**
15
+
16
+ Please note that the dataset should be used with caution, as it may contain mislabeled data due to human error. Additionally, the classes could be expanded or further refined, and some boundaries may be inaccurate due to non-linguistic expertise.
17
+
18
+ ## Dataset Structure
19
+
20
+ All splits of the dataset share the same data fields:
21
+
22
+ - **tokens**: A list of string features.
23
+ - **ner_tags**: A list of classification labels (integers).
24
+
25
+ The full tagset with indices is as follows:
26
+
27
+ ```json
28
+ {
29
+ "O": 0,
30
+ "B-DAT": 1,
31
+ "I-DAT": 2,
32
+ "B-DIS": 3,
33
+ "I-DIS": 4,
34
+ "B-HUM": 5,
35
+ "I-HUM": 6,
36
+ "B-LOC": 7,
37
+ "I-LOC": 8,
38
+ "B-MED": 9,
39
+ "I-MED": 10,
40
+ "B-ORG": 11,
41
+ "I-ORG": 12,
42
+ "B-PAT": 13,
43
+ "I-PAT": 14,
44
+ "B-SYM": 15,
45
+ "I-SYM": 16
46
+ }