Datasets:
File size: 3,814 Bytes
7d4be0c b2631a5 7d4be0c b2631a5 7d4be0c b2631a5 7d4be0c b2631a5 7d4be0c b2631a5 7d4be0c b2631a5 7d4be0c b2631a5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | ---
license: cc-by-4.0
language:
- ba
pretty_name: Bashkir Frequency Index (83M tokens, RU-filtered press corpus)
task_categories:
- text-classification
configs:
- config_name: public
data_files:
- split: train
path: frequency_public.parquet
- config_name: full
data_files:
- split: train
path: frequency_full.parquet
tags:
- bashkir
- frequency
- wordlist
- lexicon
- low-resource
- cyrillic
- corpus-statistics
---
# Bashkir Frequency Index v6.1
Word-frequency index for the Bashkir language, built from **83.27 million
tokens** of cleaned monolingual text (newspapers, magazines, encyclopedia,
Wikipedia, literature, speech transcripts; Russian-language admixture removed
by sentence-level filtering).
## Configurations
| config | rows | cutoff | use case |
|---|---:|---|---|
| **`public`** (recommended) | 521,415 | count ≥ 3 | applications, spellcheckers, T9, research |
| `full` | 1,290,098 | count ≥ 1 | morphology studies, OCR noise analysis |
Additionally: [`top_coverage_50.json`](top_coverage_50.json) — the minimal
set of **1,634 word forms covering 50% of all tokens** (with cumulative
coverage), handy as a "learn these first" vocabulary list.
## Schema
| column | type | description |
|---|---|---|
| `rank` | int64 | position by descending count |
| `word` | string | word form, lowercase |
| `count` | int64 | absolute frequency (tokens) |
| `ipm` | float | instances per million tokens |
| `doc_freq` | int32 | number of sentences containing the form |
## Sample
| rank | word | count | ipm | doc_freq |
|---:|---|---:|---:|---:|
| 1 | һәм | 1,086,463 | 13,046.8 | 775,593 |
| 23 | башҡорт | 160,963 | 1,932.9 | 114,353 |
| 126 | йылға | 59,878 | 719.0 | 55,988 |
| 390 | тел | 23,031 | 276.6 | 19,225 |
| 439 | һуғыш | 20,963 | 251.7 | 17,315 |
## Coverage
| tokens covered | forms needed |
|---:|---:|
| 25% | 188 |
| 50% | 1,634 |
| 80% | 17,559 |
| 90% | 53,852 |
| 95% | 131,559 |
## Method
- Tokenization: regex lowercase extraction over the Cyrillic alphabet incl.
the 9 Bashkir-specific letters (`Ә Ғ Ҙ Ҡ Ң Ө Ҫ Ү Һ`).
- Corpus base: monolingual master v2 — 5,481,554 sentences; Russian
sentences (~11.6% of tokens in the previous version) removed with a
function-word filter (`ru_filter_v1`).
- Cleanups vs v5.0: glued-word forms >24 chars dropped (490), 1-char forms
dropped except `ә / у / а`, 34,922 rare forms merged into their
Damerau-Levenshtein-1 neighbours (conservative: ratio ≥ 50, length ≥ 5).
## v6.1 changelog
- Removed 65 Russian function-word forms that leak inside Bashkir sentences
(quotes, names): на, не, по, из, это... — 648,304 tokens. The list is
homograph-checked against Bashkir (kept: был = "this", ни = "what",
ти/тип = quotative, да/ла/лә/ҙа = "also" particle, без = "we").
- Removed single-letter forms а, у (Russian-dominant usage); kept ә
(the Bashkir conjunction "and").
- Baseline cleanups identical to v6.0 (glued forms, typo merge).
## Known caveats
- The index is **wordform-level** (not lemmatized): agglutination produces
many forms of one lemma.
- The long tail (count < 3) contains OCR/source typos and glued artifacts.
- Proper names, especially Russian patronymics, appear in the tail.
## Loading
```python
from datasets import load_dataset
freq = load_dataset("failed09/bashkir-frequency-index", "public")["train"]
# top-20 verbs starting with "бар"
[f for f in freq.filter(lambda r: r["word"].startswith("бар"))][:20]
```
## Citation
```bibtex
@dataset{failed09_bashkir_frequency_index_2026,
title = {Bashkir Frequency Index v6.1},
author = {failed09},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/failed09/bashkir-frequency-index}
}
```
|