Update README.md
Browse files
README.md
CHANGED
|
@@ -7,9 +7,9 @@ license_link: LICENSE
|
|
| 7 |
# 💎 gemma Robotics & Routing Tokenizer
|
| 8 |
- Gemma Pro Tokenizer . Fully compatible with gemma4 models.
|
| 9 |
- Size {
|
| 10 |
-
Vocab size:
|
| 11 |
-
pad_token_id:
|
| 12 |
-
eos_token_id:
|
| 13 |
}
|
| 14 |
- Compatible with gemma 4 • Optimized for Code . Use resize function without adaptation, see examples below
|
| 15 |
- It needs 100k example to fully adapt routing features for RAG Routing model . So check gemma modification tokenizer rules
|
|
@@ -197,12 +197,12 @@ Designed for Banking and Fintech Institutions
|
|
| 197 |
- # Tesr Tokenizer size !
|
| 198 |
(venv_ji) root@jirack2:# python -c '
|
| 199 |
from transformers import AutoTokenizer
|
| 200 |
-
tok = AutoTokenizer.from_pretrained("./
|
| 201 |
print("Vocab size:", len(tok))
|
| 202 |
print("pad_token_id:", tok.pad_token_id)
|
| 203 |
print("eos_token_id:", tok.eos_token_id)
|
| 204 |
'
|
| 205 |
|
| 206 |
-
Vocab size:
|
| 207 |
-
pad_token_id:
|
| 208 |
-
eos_token_id:
|
|
|
|
| 7 |
# 💎 gemma Robotics & Routing Tokenizer
|
| 8 |
- Gemma Pro Tokenizer . Fully compatible with gemma4 models.
|
| 9 |
- Size {
|
| 10 |
+
Vocab size: 262251
|
| 11 |
+
pad_token_id: 0
|
| 12 |
+
eos_token_id: 1
|
| 13 |
}
|
| 14 |
- Compatible with gemma 4 • Optimized for Code . Use resize function without adaptation, see examples below
|
| 15 |
- It needs 100k example to fully adapt routing features for RAG Routing model . So check gemma modification tokenizer rules
|
|
|
|
| 197 |
- # Tesr Tokenizer size !
|
| 198 |
(venv_ji) root@jirack2:# python -c '
|
| 199 |
from transformers import AutoTokenizer
|
| 200 |
+
tok = AutoTokenizer.from_pretrained("./GemmaRoboticsTokenizer")
|
| 201 |
print("Vocab size:", len(tok))
|
| 202 |
print("pad_token_id:", tok.pad_token_id)
|
| 203 |
print("eos_token_id:", tok.eos_token_id)
|
| 204 |
'
|
| 205 |
|
| 206 |
+
Vocab size: 262251
|
| 207 |
+
pad_token_id: 0
|
| 208 |
+
eos_token_id: 1
|