Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,14 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
features:
|
4 |
- name: label
|
@@ -20,4 +30,79 @@ configs:
|
|
20 |
data_files:
|
21 |
- split: train
|
22 |
path: data/train-*
|
|
|
|
|
|
|
|
|
23 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- ku
|
4 |
+
- en
|
5 |
+
license: cc-by-4.0
|
6 |
+
size_categories:
|
7 |
+
- 10K<n<100K
|
8 |
+
task_categories:
|
9 |
+
- text-classification
|
10 |
+
- translation
|
11 |
+
pretty_name: Kurdish News Dataset Headlines (KNDH)
|
12 |
dataset_info:
|
13 |
features:
|
14 |
- name: label
|
|
|
30 |
data_files:
|
31 |
- split: train
|
32 |
path: data/train-*
|
33 |
+
tags:
|
34 |
+
- kurdish
|
35 |
+
- translation
|
36 |
+
- news
|
37 |
---
|
38 |
+
# Dataset Card for Kurdish News Dataset Headlines (KNDH)
|
39 |
+
|
40 |
+
## Summary
|
41 |
+
|
42 |
+
Description from the paper: the Kurdish language belongs to the Indo-Iranian family of Indo-European languages. It is well-known to be a close relative to the Persian language. The speakers span the intersections of Iran, Turkey, Iraq, and Syria. The Kurdish language is one of the official languages in Iraq and has regional status in Iran. The language has 40 million speakers [2,11].
|
43 |
+
|
44 |
+
## Usage
|
45 |
+
|
46 |
+
```python
|
47 |
+
from datasets import load_dataset
|
48 |
+
|
49 |
+
ds = load_dataset("nazimali/kurdish-news-headlines-classification", split="train")
|
50 |
+
ds
|
51 |
+
```
|
52 |
+
|
53 |
+
Output:
|
54 |
+
|
55 |
+
```python
|
56 |
+
Dataset({
|
57 |
+
features: ['label', 'text', 'text-english', 'url'],
|
58 |
+
num_rows: 50000
|
59 |
+
})
|
60 |
+
```
|
61 |
+
|
62 |
+
## Data Cleaning
|
63 |
+
|
64 |
+
In the paper they describe the data process in detail. There are 2 versions of the original dataset, list of changes I made:
|
65 |
+
|
66 |
+
- Renamed the original column names so it's easier to read & process
|
67 |
+
- Merged the column `url` from version 1 and columns `label, text, text-english` from version 2
|
68 |
+
- Excluded 2 pre-processed text columns from version 2
|
69 |
+
|
70 |
+
## Dataset Sources
|
71 |
+
|
72 |
+
- **Paper [Kurdish News Dataset Headlines (KNDH) through Multiclass Classification](https://data.mendeley.com/datasets/kb7vvkg2th/2)**
|
73 |
+
|
74 |
+
## Dataset Structure
|
75 |
+
|
76 |
+
- 50,000 rows
|
77 |
+
- 5 unique labels
|
78 |
+
- `sport, health, science & technology, social, economic`
|
79 |
+
- Each label contains 10,000 rows
|
80 |
+
|
81 |
+
| | label | text | text-english | url |
|
82 |
+
|:-------|:--------|:-------------------|:----------------|:------------------------------------------------------------------------|
|
83 |
+
| count | 50000 | 50000 | 50000 | 48832 |
|
84 |
+
| unique | 5 | 41912 | 41008 | 43891 |
|
85 |
+
|
86 |
+
## Citation
|
87 |
+
|
88 |
+
- **Version 1:**
|
89 |
+
|
90 |
+
```
|
91 |
+
Badawi, Soran;
|
92 |
+
Mohammed, ARI (2022),
|
93 |
+
"Kurdish News Dataset Headlines (KNDH) through Multiclass Classification",
|
94 |
+
Mendeley Data,
|
95 |
+
V1,
|
96 |
+
doi: 10.17632/kb7vvkg2th.1
|
97 |
+
```
|
98 |
+
|
99 |
+
- **Version 2:**
|
100 |
+
|
101 |
+
```
|
102 |
+
Badawi, Soran;
|
103 |
+
Mohammed, ARI (2023),
|
104 |
+
"Kurdish News Dataset Headlines (KNDH) through Multiclass Classification",
|
105 |
+
Mendeley Data,
|
106 |
+
V2,
|
107 |
+
doi: 10.17632/kb7vvkg2th.2
|
108 |
+
```
|