muzaffercky commited on
Commit
e82376c
·
verified ·
1 Parent(s): 9645429

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +111 -0
README.md CHANGED
@@ -85,4 +85,115 @@ configs:
85
  data_files:
86
  - split: 2026_06_27_part
87
  path: kmr_Latn/2026_06_27_part-*
 
 
 
 
 
 
 
 
 
 
 
 
88
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  data_files:
86
  - split: 2026_06_27_part
87
  path: kmr_Latn/2026_06_27_part-*
88
+ language:
89
+ - ku
90
+ - kmr
91
+ - ckb
92
+ - diq
93
+ license: cc-by-4.0
94
+ pretty_name: Kurdish Web Corpus
95
+ size_categories:
96
+ - 100K<n<1M
97
+ task_categories:
98
+ - text-generation
99
+ - fill-mask
100
  ---
101
+
102
+ # Dataset Card for Kurdish Web Corpus (Deduplicated)
103
+
104
+ ## Dataset Summary
105
+
106
+ A multilingual corpus of web text in three Kurdish/Zaza varieties — Kurmanji Kurdish
107
+ (`kmr_Latn`), Sorani Kurdish (`ckb_Arab`), and Zazaki (`diq_Latn`) — scraped from Kurdish-language
108
+ websites, language-identified with [GlotLID](https://github.com/cisnlp/GlotLID), and
109
+ deduplicated (exact + MinHash near-duplicate removal). See the "Dataset Creation" section below
110
+ for the full pipeline.
111
+
112
+ Rows, by language config:
113
+
114
+ | config | language | script | rows | publishers |
115
+ |-------------|-------------------|--------|---------|------------|
116
+ | `kmr_Latn` | Kurmanji Kurdish | Latin | 517,335 | 51 |
117
+ | `ckb_Arab` | Sorani Kurdish | Arabic | 158,266 | 15 |
118
+ | `diq_Latn` | Zazaki | Latin | 319 | 12 |
119
+
120
+ ## Supported Tasks
121
+
122
+ Intended as pretraining/fine-tuning text for causal or masked language modeling in
123
+ under-resourced Kurdish and Zaza varieties. No task-specific labels are provided.
124
+
125
+ ## Languages
126
+
127
+ - `kmr` — Kurmanji (Northern Kurdish), Latin script
128
+ - `ckb` — Sorani (Central Kurdish), Arabic script
129
+ - `diq` — Zazaki (Dimli), Latin script
130
+
131
+ Language and `lang_score` were assigned by GlotLID at scrape time (see
132
+ [kurdish_scrapy](https://github.com/cikay/kurdish_scrapy)) and are carried through unchanged;
133
+ they are not re-verified by the dedup pipeline.
134
+
135
+ ## Dataset Structure
136
+
137
+ ### Data Instances
138
+
139
+ ```json
140
+ {
141
+ "url": "https://example.com/page-slug",
142
+ "text": "Full page text ...",
143
+ "lang": "kmr_Latn",
144
+ "lang_score": 0.98,
145
+ "publish_date": "2024-01-01",
146
+ "publisher": "example.com",
147
+ "title": "Page title",
148
+ "word_count": 342
149
+ }
150
+ ```
151
+
152
+ ### Data Fields
153
+
154
+ - `url` (`string`): the page's source URL; doubles as a unique document ID.
155
+ - `text` (`string`): full page text, NFC-normalized.
156
+ - `lang` (`string`): GlotLID language/script code, one of `kmr_Latn`, `ckb_Arab`, `diq_Latn`.
157
+ - `lang_score` (`float32`): GlotLID confidence score for `lang`.
158
+ - `publish_date` (`string`, nullable): publication/posting date as recorded by the source site.
159
+ - `publisher` (`string`): source site's domain.
160
+ - `title` (`string`): page title.
161
+ - `word_count` (`int32`): whitespace-split word count of `text`, computed from the final
162
+ deduplicated text (not carried over from the source).
163
+
164
+ ### Data Splits
165
+
166
+ There is no train/dev/test split. Instead, the split name is a crawl snapshot date: it states
167
+ that all data was collected up to and including that date. For example, a split named
168
+ `2026_6_27` means the crawl covers everything gathered through June 27, 2026.
169
+
170
+ A `_part` suffix (e.g. `2026_6_27_part`) means the crawl was interrupted before it finished —
171
+ it did **not** manage to collect all data through that date, so treat it as a partial/incomplete
172
+ snapshot rather than a clean cutoff. Later, complete uploads may supersede an earlier `_part`
173
+ snapshot for the same or a later date.
174
+
175
+ Row counts for the current snapshot:
176
+
177
+ | config | rows |
178
+ |-------------|---------|
179
+ | `kmr_Latn` | 517,335 |
180
+ | `ckb_Arab` | 158,266 |
181
+ | `diq_Latn` | 319 |
182
+
183
+ ## Dataset Creation
184
+
185
+ ### Source Data
186
+
187
+ Pages were scraped from Kurdish-language websites with
188
+ [kurdish_scrapy](https://github.com/cikay/kurdish_scrapy), with page text extracted via
189
+ [trafilatura](https://github.com/adbar/trafilatura) and language-identified with GlotLID at
190
+ scrape time. Exact- and near-duplicate removal was then run with
191
+ [dedup](https://github.com/cikay/dedup) (this repo).
192
+
193
+ ## Considerations for Using the Data
194
+
195
+ - Publisher representation is highly uneven, especially for `kmr_Latn` and `ckb_Arab`, where a
196
+ single site (`anf-news.com`, `kurdistan24.net`) accounts for a large share of rows — expect
197
+ the corresponding editorial style/bias to dominate.
198
+ - `diq_Latn` is extremely small (319 rows) relative to the other two varieties.
199
+ - `lang`/`lang_score` reflect automatic language ID and were not manually verified.