metuKKhud commited on
Commit
3932d53
·
verified ·
1 Parent(s): 96fdede

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md CHANGED
@@ -18,4 +18,90 @@ configs:
18
  data_files:
19
  - split: train
20
  path: data/train-*
 
 
 
 
 
 
 
 
 
 
 
 
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  data_files:
19
  - split: train
20
  path: data/train-*
21
+
22
+ language: ba
23
+ license: mit
24
+ tags:
25
+ - bashkir
26
+ - low-resource-language
27
+ - topic-classification
28
+ - news
29
+ - task-specific-tuning
30
+ pretty_name: Bashqort Topic Classification
31
+ size_categories:
32
+ - 100<n<1000
33
  ---
34
+
35
+ # Bashqort Topic Classification
36
+
37
+ ## Description
38
+
39
+ A **topic classification** dataset for Bashkir news headlines. This dataset was created because no publicly available topic classification benchmark exists for Bashkir. It is intended for **task‑specific fine‑tuning** and evaluation of LLMs adapted to Bashkir.
40
+
41
+ ## Data Creation
42
+
43
+ - **Source**: Random sampling of headlines from [bash.news](https://bash.news)
44
+ - **Annotation**: Manual labeling by **Ilyas Khatipov** (native speaker of Bashkir)
45
+ - **Cleaning**: Removed categories with fewer than 17 samples to improve class balance
46
+
47
+ ## Class Distribution (after cleaning)
48
+
49
+ | Topic | Count | Proportion |
50
+ |-------|-------|-------------|
51
+ | Culture (Мәҙәниәт) | 58 | 21.7% |
52
+ | Healthcare (Һаулыҡ һаҡлау) | 35 | 13.1% |
53
+ | Education (Мәғариф) | 32 | 12.0% |
54
+ | Social sphere (Социаль өлкә) | 25 | 9.4% |
55
+ | Politics (Сәйәсәт) | 25 | 9.4% |
56
+ | Sports (Спорт) | 21 | 7.9% |
57
+ | Military service (Хәрби хеҙмәт) | 18 | 6.7% |
58
+ | Economy (Иҡтисад) | 18 | 6.7% |
59
+ | Incidents (Ваҡиғалар) | 18 | 6.7% |
60
+ | Security (Хәүефһеҙлек) | 17 | 6.4% |
61
+
62
+ **Total**: 267 headlines (10 classes)
63
+
64
+
65
+ ## Format
66
+
67
+ The dataset is provided in CSV/JSON format with the following columns:
68
+
69
+ - `title`: Bashkir news headline (string)
70
+ - `topic`: topic label (string, one of the 10 classes)
71
+
72
+ ```json
73
+ {
74
+ "title": "Өфөлә мәктәптәрҙә яңы уҡыу йылы башланды",
75
+ "topic": "Education"
76
+ }
77
+ ```
78
+
79
+ ## Splits
80
+
81
+ No fixed train/test split. Users are encouraged to create their own splits (e.g., 80/20) for reproducibility.
82
+ ## Intended Use
83
+
84
+ Task‑specific fine‑tuning of LLMs for topic classification
85
+
86
+ Zero‑shot and few‑shot evaluation of Bashkir language understanding
87
+
88
+ Benchmark for future Bashkir NLP work
89
+
90
+ ## Licensing
91
+
92
+ MIT License
93
+ ## Citation
94
+ ```bibtex
95
+
96
+ @misc{khudiakova2025bashqorttask,
97
+ author = {Khudiakova, Kseniia and Khatipov, Ilyas},
98
+ title = {Bashqort Topic Classification: News Headlines with 10 Topics},
99
+ year = {2025},
100
+ howpublished = {Hugging Face Datasets},
101
+ url = {https://huggingface.co/datasets/metuKKhud/bashqort-task}
102
+ }
103
+ ```
104
+
105
+ ## Acknowledgements
106
+
107
+ Thanks to Ilyas Khatipov for native speaker validation and annotation.