stukenov commited on
Commit
38862c1
·
verified ·
1 Parent(s): 67543e6

add dataset card

Browse files
Files changed (1) hide show
  1. README.md +37 -19
README.md CHANGED
@@ -1,32 +1,50 @@
1
  ---
2
- license: mit
3
  language:
4
  - kk
5
  - ru
6
  - en
 
 
7
  tags:
8
- - tokenizer
9
- - morphbpe
10
  - kazakh
11
- - multilingual
 
 
 
 
12
  ---
 
13
  # Til-vocab-morphbpe-96k-kkrumix-v1
14
 
15
- 96K byte-level BPE multilingual tokenizer (kk / ru / en / code / math), **kk-priority**.
16
- Part of the **Til-MVP-1.1B** program (exp056). License MIT. 2026-06-07.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
- ## Fertility (tokens/word, held-out)
19
- | lang | value | gate | |
20
- |------|------:|-----:|--|
21
- | kk | 1.699 | <2.0 | OK |
22
- | ru | 1.619 | <1.6 | aspirational gate; marginally over (kk-priority shared vocab) |
23
- | en | 1.355 | <1.4 | OK |
24
 
25
- ## Training sample (~5.3 GB)
26
- kk 1500 MB + ru 1100 MB from the collected exp053/exp054 corpora (on-disk),
27
- en 700 MB + code 700 MB + math 350 MB streamed (FineWeb-Edu / GitHub-Code / OpenWebMath).
28
- Special ids: pad 0 / bos 1 / eos 2 / unk 3 (must match the exp058 model config).
29
 
30
- ## Related
31
- - Datasets: Til-corpus-raw-kk-multi-v1, Til-corpus-raw-mix-rucodemath-v1 (in progress)
32
- - Model: Til-core-llama-1b1-kkrumix-base-v1 (pretrain off-site)
 
1
  ---
 
2
  language:
3
  - kk
4
  - ru
5
  - en
6
+ license: mit
7
+ library_name: tokenizers
8
  tags:
 
 
9
  - kazakh
10
+ - tokenizer
11
+ - bpe
12
+ - morphology
13
+ - til
14
+ pretty_name: Til MorphoBPE 96K (kk/ru/en/code/math)
15
  ---
16
+
17
  # Til-vocab-morphbpe-96k-kkrumix-v1
18
 
19
+ Byte-level BPE tokenizer (96 000 vocab) for the **Til** Kazakh foundation-model program. Kazakh-priority, with Russian, English, code and math coverage.
20
+
21
+ ## Summary
22
+
23
+ - **Vocab size:** 96 000 (byte-level BPE, `tokenizers`).
24
+ - **Priority:** Kazakh-first; balanced kk/ru shares + en/code/math.
25
+ - **Special tokens:** `<pad>`=0, `<bos>`=1, `<eos>`=2.
26
+ - **Built on:** kaznu, from on-disk collected kk/ru (Til corpus exp053/054) + streamed en/code/math (FineWeb-Edu / code / math) — streaming avoids contention with the collectors.
27
+
28
+ ## Fertility (tokens/word, lower = better)
29
+
30
+ | Lang | Fertility | Note |
31
+ |------|-----------|------|
32
+ | kk | 1.699 | ✅ target < 2.0 |
33
+ | ru | 1.619 | marginal (aspirational < 1.6; +0.019) |
34
+ | en | 1.355 | ✅ |
35
+
36
+ Raising the Russian vocab share dropped ru fertility 1.718 → 1.619 (kk:ru mix tuning).
37
+
38
+ ## Usage
39
+
40
+ ```python
41
+ from tokenizers import Tokenizer
42
+ tok = Tokenizer.from_file("tokenizer.json")
43
+ ids = tok.encode("Сәлеметсіз бе, әлем!").ids
44
+ ```
45
 
46
+ ## Part of the Til program
 
 
 
 
 
47
 
48
+ Companion corpora (same vocab): `Til-corpus-tokenized-multi-morphbpe96k-mvp100b-v1` (kk, 8.4B), `Til-corpus-tokenized-mix-morphbpe96k-v0` (ru/en/code/math, 12B), `Til-corpus-tokenized-kk-extra-v0` (0.83B), `Til-corpus-tokenized-kk-madlad-v0` (0.40B).
 
 
 
49
 
50
+ License: MIT.