Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
task_categories:
|
3 |
+
- token-classification
|
4 |
+
language:
|
5 |
+
- km
|
6 |
+
---
|
7 |
+
# KHEED Dataset Card
|
8 |
+
|
9 |
+
## Task Categories
|
10 |
+
- **Token Classification**
|
11 |
+
|
12 |
+
## Language
|
13 |
+
- **Khmer (km)**
|
14 |
+
|
15 |
+
## Overview
|
16 |
+
The Khmer Health Event Extraction Dataset (KHEED) is a specialized resource for named entity recognition (NER) in the Khmer language, focusing on the health domain. Sourced from Khmer news websites, the dataset includes eight entity types:
|
17 |
+
|
18 |
+
1. **Disease (DIS)**: Health conditions or illnesses.
|
19 |
+
2. **Location (LOC)**: Geographical places.
|
20 |
+
3. **Organization (ORG)**: Institutions or groups.
|
21 |
+
4. **HumanCount (HUM)**: Numerical references to people.
|
22 |
+
5. **Pathogen (PAT)**: Disease-causing agents.
|
23 |
+
6. **Date (DAT)**: Temporal references.
|
24 |
+
7. **Symptom (SYM)**: Clinical manifestations of diseases.
|
25 |
+
8. **Medication (MED)**: Drugs or treatments.
|
26 |
+
|
27 |
+
**Note**: The dataset may contain mislabeled data due to human error. Entity boundaries may also be imprecise due to limited linguistic expertise, and the tagset could benefit from further refinement or expansion.
|
28 |
+
|
29 |
+
## Dataset Structure
|
30 |
+
All dataset splits include the following fields:
|
31 |
+
|
32 |
+
- **tokens**: A list of string tokens.
|
33 |
+
- **ner_tags**: A list of integer classification labels corresponding to entity tags.
|
34 |
+
|
35 |
+
### Complete Tagset
|
36 |
+
The complete tagset with indices is as follows:
|
37 |
+
|
38 |
+
```json
|
39 |
+
{
|
40 |
+
"O": 0,
|
41 |
+
"B-DAT": 1,
|
42 |
+
"I-DAT": 2,
|
43 |
+
"B-DIS": 3,
|
44 |
+
"I-DIS": 4,
|
45 |
+
"B-HUM": 5,
|
46 |
+
"I-HUM": 6,
|
47 |
+
"B-LOC": 7,
|
48 |
+
"I-LOC": 8,
|
49 |
+
"B-MED": 9,
|
50 |
+
"I-MED": 10,
|
51 |
+
"B-ORG": 11,
|
52 |
+
"I-ORG": 12,
|
53 |
+
"B-PAT": 13,
|
54 |
+
"I-PAT": 14,
|
55 |
+
"B-SYM": 15,
|
56 |
+
"I-SYM": 16
|
57 |
+
}
|