gsaltintas's picture
Upload folder using huggingface_hub
021d495 verified
---
license: mit
language:
- und # ISO 639-3 code or "und" if not identifiable
tags:
- tokenizer
- bpe
- flexitok
- fineweb2
---
# Byte-Level BPE Tokenizer: numeric (100K)
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 | 100,007 |
| Final Vocab Size | 100,007 |
| Pre-tokenizer | byte_level |
| Number handling | ltr_5digit |
| 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` | `12350, 01, 19, , mod, , 67` | `2420, 108, 25, 6, 4, 6, 53` |