File size: 908 Bytes
4d35f0c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
library_name: tokenizers
language:
- fin
tags:
- LangMAP
- unsupervised
- tokenizer
---

# Base + Language-Specific LangMAP — mistral-7b-v03 × fin_Latn

Unsupervised tokenization specialised for **fin_Latn**, derived from the
**mistral-7b-v03** base BPE tokenizer using the LangMAP framework.

This repository bundles:
- `base_tokenizer.json` — joint LAS Unigram base
- `langspec_fin_Latn.json` — language-specific overlay (re-EM on fin_Latn corpus)
- `tokenizer.json` — alias for the overlay (default load target)

Inference uses base + language-specific scores together (the LangMAP variant);
do not use the bare overlay or base on its own.

Trained from job `smokeM4.fin.mistral-7b-v03.v32768` (vocab=32768, langs=[fin_Latn], iters=5,
em_mode=soft, byte_fallback=True, seed-fix applied).

## Loading

```python
from tokenizers import Tokenizer
tok = Tokenizer.from_file("tokenizer.json")
```