File size: 1,114 Bytes
c91e831
 
 
a7672fa
c91e831
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23c9c8f
 
 
 
a7672fa
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
---
license: mit
language:
- und  # ISO 639-3 code or "und" if not identifiable
tags:
- tokenizer
- bpe
- flexitok
- fineweb2
---

# Byte-Level BPE Tokenizer: numeric (0K)

A **Byte-Level BPE** tokenizer trained on **numeric** data from Fineweb-2-HQ.

## Training Details

| Parameter | Value |
|-----------|-------|
| Algorithm | Byte-Level BPE |
| Language | `numeric` |
| Target Vocab Size | 17 |
| Final Vocab Size | 17 |
| Pre-tokenizer | byte_level |
| Number handling | individual |
| Contraction handling | False |
| Normalizer | NONE |
| Special Tokens | `<s>`, `</s>`, `<pad>`, `<unk>` |
| Training Shards | 1 |

## Usage

```python
from transformers import AutoTokenizer

tokenizer = AutoTokenizer.from_pretrained("None")
tokens = tokenizer.encode("Hello, world!")
```

## Files

- `tokenizer.json` — Full HuggingFace tokenizer
- `vocab.json` — Vocabulary mapping
- `merges.txt` — BPE merge rules

## Sample Encoding
| Text | Tokens | Token IDs |
|------|--------|-----------|
| `123500119 mod 67` | `1, 2, 3, 5, 0, 0, 1, 1, 9,  , mod,  , 6, 7` | `8, 9, 10, 12, 7, 7, 8, 8, 16, 6, 4, 6, 13, 14` |