Skip to content

Commit 17f2243

Browse files
committed
patch: Apply patch to fix config and SPM retrieval
1 parent c05d2a2 commit 17f2243

25 files changed

+448
-447
lines changed

convert-hf-to-gguf-update.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ def download_file_with_auth(url, token, save_path):
109109
# set dir paths
110110
model_name_or_path = f"models/tokenizers/{name}"
111111
model_tokenizer_path = f"{model_name_or_path}/tokenizer.json"
112-
model_config_path = f"{model_name_or_path}/config.json"
113112

114113
# check dir path
115114
if os.path.exists(model_name_or_path): # Still TOCTOU?
@@ -148,7 +147,7 @@ def download_file_with_auth(url, token, save_path):
148147
download_file_with_auth(
149148
url=f"{url_main}/config.json",
150149
token=token,
151-
save_path=model_config_path
150+
save_path=f"{model_name_or_path}/config.json"
152151
)
153152

154153
# if downloaded file is less than 1KB, we likely need to download an LFS instead
@@ -166,7 +165,7 @@ def download_file_with_auth(url, token, save_path):
166165
download_file_with_auth(
167166
url=f"{url_resolve}/tokenizer.model",
168167
token=token,
169-
save_path=model_tokenizer_path
168+
save_path=f"{model_name_or_path}/tokenizer.model"
170169
)
171170

172171
# Get the tokenizer config
@@ -187,7 +186,7 @@ def download_file_with_auth(url, token, save_path):
187186
if tokt == TOKENIZER_TYPE.SPM:
188187
continue
189188

190-
tokenizer = AutoTokenizer.from_pretrained(f"models/tokenizers/{name}", trust_remote_code=True)
189+
tokenizer = AutoTokenizer.from_pretrained(f"models/tokenizers/{name}")
191190

192191
chktok = tokenizer.encode(chktxt)
193192
chkhsh = sha256(str(chktok).encode()).hexdigest()

convert-hf-to-gguf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,6 @@ def get_vocab_base_pre(self, tokenizer) -> str:
323323
if chkhsh == "32d85c31273f8019248f2559fed492d929ea28b17e51d81d3bb36fff23ca72b3":
324324
# ref: https://huggingface.co/stabilityai/stablelm-2-zephyr-1_6b
325325
res = "stablelm"
326-
if chkhsh == "e636dc30a262dcc0d8c323492e32ae2b70728f4df7dfe9737d9f920a282b8aea":
327-
# ref: https://huggingface.co/Qwen/Qwen-tokenizer
328-
res = "qwen"
329326
if chkhsh == "e750a9b14dfed9b73287639bd1ecda50c38fa6011138f2f609804c6dab9ed5c2":
330327
# ref: https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.2
331328
res = "mistral-bpe"
@@ -338,6 +335,9 @@ def get_vocab_base_pre(self, tokenizer) -> str:
338335
if chkhsh == "9c2227e4dd922002fb81bde4fc02b0483ca4f12911410dee2255e4987644e3f8":
339336
# ref: https://huggingface.co/CohereForAI/c4ai-command-r-v01
340337
res = "command-r"
338+
if chkhsh == "e636dc30a262dcc0d8c323492e32ae2b70728f4df7dfe9737d9f920a282b8aea":
339+
# ref: https://huggingface.co/Qwen/Qwen-7B
340+
res = "qwen"
341341
if chkhsh == "e636dc30a262dcc0d8c323492e32ae2b70728f4df7dfe9737d9f920a282b8aea":
342342
# ref: https://huggingface.co/Qwen/Qwen1.5-7B
343343
res = "qwen2"

generate-vocab.sh

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
#!/usr/bin/env bash
22

3-
python3 convert-hf-to-gguf.py models/tokenizers/llama-spm/ --outfile models/ggml-vocab-llama-spm.gguf --vocab-only
4-
python3 convert-hf-to-gguf.py models/tokenizers/llama-bpe/ --outfile models/ggml-vocab-llama-bpe.gguf --vocab-only
5-
python3 convert-hf-to-gguf.py models/tokenizers/phi-3/ --outfile models/ggml-vocab-phi-3.gguf --vocab-only
6-
python3 convert-hf-to-gguf.py models/tokenizers/deepseek-llm/ --outfile models/ggml-vocab-deepseek-llm.gguf --vocab-only
7-
python3 convert-hf-to-gguf.py models/tokenizers/deepseek-coder/ --outfile models/ggml-vocab-deepseek-coder.gguf --vocab-only
8-
python3 convert-hf-to-gguf.py models/tokenizers/falcon/ --outfile models/ggml-vocab-falcon.gguf --vocab-only
9-
python3 convert-hf-to-gguf.py models/tokenizers/bert-bge/ --outfile models/ggml-vocab-bert-bge.gguf --vocab-only
10-
python3 convert-hf-to-gguf.py models/tokenizers/mpt/ --outfile models/ggml-vocab-mpt.gguf --vocab-only
11-
python3 convert-hf-to-gguf.py models/tokenizers/starcoder/ --outfile models/ggml-vocab-starcoder.gguf --vocab-only
12-
python3 convert-hf-to-gguf.py models/tokenizers/gpt-2/ --outfile models/ggml-vocab-gpt-2.gguf --vocab-only
13-
python3 convert-hf-to-gguf.py models/tokenizers/phi/ --outfile models/ggml-vocab-phi.gguf --vocab-only
14-
python3 convert-hf-to-gguf.py models/tokenizers/stablelm/ --outfile models/ggml-vocab-stablelm.gguf --vocab-only
15-
python3 convert-hf-to-gguf.py models/tokenizers/qwen/ --outfile models/ggml-vocab-qwen.gguf --vocab-only
16-
python3 convert-hf-to-gguf.py models/tokenizers/mistral-bpe/ --outfile models/ggml-vocab-mistral-bpe.gguf --vocab-only
17-
python3 convert-hf-to-gguf.py models/tokenizers/mistral-spm/ --outfile models/ggml-vocab-mistral-spm.gguf --vocab-only
18-
python3 convert-hf-to-gguf.py models/tokenizers/mixtral-bpe/ --outfile models/ggml-vocab-mixtral-bpe.gguf --vocab-only
19-
python3 convert-hf-to-gguf.py models/tokenizers/mixtral-spm/ --outfile models/ggml-vocab-mixtral-spm.gguf --vocab-only
20-
python3 convert-hf-to-gguf.py models/tokenizers/refact/ --outfile models/ggml-vocab-refact.gguf --vocab-only
21-
python3 convert-hf-to-gguf.py models/tokenizers/command-r/ --outfile models/ggml-vocab-command-r.gguf --vocab-only
3+
python3 convert-hf-to-gguf.py models/tokenizers/llama-spm --outfile models/ggml-vocab-llama-spm.gguf --vocab-only
4+
python3 convert-hf-to-gguf.py models/tokenizers/llama-bpe --outfile models/ggml-vocab-llama-bpe.gguf --vocab-only
5+
python3 convert-hf-to-gguf.py models/tokenizers/phi-3 --outfile models/ggml-vocab-phi-3.gguf --vocab-only
6+
python3 convert-hf-to-gguf.py models/tokenizers/deepseek-llm --outfile models/ggml-vocab-deepseek-llm.gguf --vocab-only
7+
python3 convert-hf-to-gguf.py models/tokenizers/deepseek-coder --outfile models/ggml-vocab-deepseek-coder.gguf --vocab-only
8+
python3 convert-hf-to-gguf.py models/tokenizers/falcon --outfile models/ggml-vocab-falcon.gguf --vocab-only
9+
python3 convert-hf-to-gguf.py models/tokenizers/bert-bge --outfile models/ggml-vocab-bert-bge.gguf --vocab-only
10+
python3 convert-hf-to-gguf.py models/tokenizers/mpt --outfile models/ggml-vocab-mpt.gguf --vocab-only
11+
python3 convert-hf-to-gguf.py models/tokenizers/starcoder --outfile models/ggml-vocab-starcoder.gguf --vocab-only
12+
python3 convert-hf-to-gguf.py models/tokenizers/gpt-2 --outfile models/ggml-vocab-gpt-2.gguf --vocab-only
13+
python3 convert-hf-to-gguf.py models/tokenizers/phi --outfile models/ggml-vocab-phi.gguf --vocab-only
14+
python3 convert-hf-to-gguf.py models/tokenizers/stablelm --outfile models/ggml-vocab-stablelm.gguf --vocab-only
15+
python3 convert-hf-to-gguf.py models/tokenizers/mistral-bpe --outfile models/ggml-vocab-mistral-bpe.gguf --vocab-only
16+
python3 convert-hf-to-gguf.py models/tokenizers/mistral-spm --outfile models/ggml-vocab-mistral-spm.gguf --vocab-only
17+
python3 convert-hf-to-gguf.py models/tokenizers/mixtral-bpe --outfile models/ggml-vocab-mixtral-bpe.gguf --vocab-only
18+
python3 convert-hf-to-gguf.py models/tokenizers/mixtral-spm --outfile models/ggml-vocab-mixtral-spm.gguf --vocab-only
19+
python3 convert-hf-to-gguf.py models/tokenizers/refact --outfile models/ggml-vocab-refact.gguf --vocab-only
20+
python3 convert-hf-to-gguf.py models/tokenizers/command-r --outfile models/ggml-vocab-command-r.gguf --vocab-only
21+
python3 convert-hf-to-gguf.py models/tokenizers/qwen --outfile models/ggml-vocab-qwen.gguf --vocab-only
22+
python3 convert-hf-to-gguf.py models/tokenizers/qwen2 --outfile models/ggml-vocab-qwen2.gguf --vocab-only
23+
python3 convert-hf-to-gguf.py models/tokenizers/olmo --outfile models/ggml-vocab-olmo.gguf --vocab-only

models/ggml-vocab-bert-bge.gguf

-9.77 MB
Binary file not shown.

models/ggml-vocab-bert-bge.gguf.out

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
1-
2536 228 27 228 22957 6983
2-
45 193433
3-
4-
228
5-
1667
6-
1742
7-
205
8-
206
9-
2126
10-
11516
11-
34777
12-
28339 3845
13-
46609 3845
14-
28339 3930
15-
46609 3930
16-
46609 3930 8
17-
28339 19 3845 8
18-
46609 19 3845 8
19-
2075 1801 11254 107 255 21 19317
20-
94 23 27 31 228 30 21213 20752 39267 6405 9980
21-
4929 40071 2196 3236 8750 1764 37097 41168
22-
38111 230 174833 38111 249 86325 241 38111 245 86325 232 38111 252 38111 123 38111 261 165 24629 38111 261 38111 103 174833 38111 235 38111 231 38111 257 38111 235 165 24629 38111 239
23-
2226 256 230 1737 18258 16 80503 122 35927 2226 242 112 57462 1737 54457 223165 106230 2096 16 48389 1737 10203 109160 1875 2222 2517 3342 12523 16
24-
28339
25-
46609
26-
228 46609
27-
1667 46609
28-
1742 46609
29-
1742 46609 1856 46609
30-
1737
31-
206 1857
32-
14 4515
33-
28339 19 1770 14 1954 8 4070 1955 1933 80503 231 5691 12081 13336 2648 29325 14315 24 26 24 27 24 28 24 5123 18372
34-
26
35-
26 26
36-
26 26 26
37-
26 26 26 26
38-
26 26 26 26 26
39-
26 26 26 26 26 26
40-
26 26 26 26 26 26 26
41-
26 26 26 26 26 26 26 26
42-
26 26 26 26 26 26 26 26 26
43-
127731 51628 205 57788 18494 97469 126134 206 2226 256 230 1737 18258 16 80503 122 35927 2226 242 112 57462 1737 54457 223165 106230 2096 16 48389 11254 107 255 2226 107 255 228 26 228 26 26 228 26 26 26 228 26 26 26 26 228 26 26 26 26 26 228 26 26 26 26 26 26 228 26 26 26 26 26 26 26 228 26 26 26 26 26 26 26 26 228 26 21 26 228 26 2271 26 228 26 3834 26 182018 230 174833 38111 249 86325 241 38111 245 86325 232 38111 252 38111 123 38111 261 165 24629 38111 261 38111 103 174833 38111 235 188568 231 5691 12081 13336 2648 29325 14315 24 26 24 27 24 28 24 5123 18372 8391 158343 3512 40071 2196 3236 8750 1764 37097 41168 29721 32797 25646 3802 4975 4975 116167 57178 10251 154048 27292 1767 5125 2632 2155 91 2378 1919 1914 2782 19 2155 3354 1933 5470 38 2155 52 2068 5470 1767 4961 3059 1894 19 2155 43 1933 3026 2725 23186 38 2930 14 20676 1671 14 83 51
1+
29464 2094 1018 1092 2706
2+
11865 17875
3+
4+
5+
6+
7+
8+
9+
10+
11+
12+
7592 2088
13+
7592 2088
14+
7592 2088
15+
7592 2088
16+
7592 2088 999
17+
7592 1010 2088 999
18+
7592 1010 2088 999
19+
2023 2003 100 1012 18133 2361
20+
1059 2692 18139 1021 8525 28418 2243 16233 20952 6979
21+
1192 15290 29754 14150 1192 10260 1181 29755 29436 29741 10260 16856 29747 23925 10325
22+
100
23+
100 1006 3671 1007 100 1006 3674 7861 29147 2483 9530 16280 23854 1007 100 1006 2069 7861 29147 2072 2008 2038 2049 2219 19204 1007
24+
7592
25+
7592
26+
7592
27+
7592
28+
7592
29+
7592 7592
30+
1006
31+
1027
32+
1005 3690
33+
7592 1010 1061 1005 2035 999 2129 2024 2017 100 1029 1855 100 100 6207 100 100 14677 23632 22203 1811 1995
34+
1017
35+
3943
36+
21211
37+
21211 2509
38+
21211 22394
39+
21211 22394 2509
40+
21211 22394 22394
41+
21211 22394 22394 2509
42+
21211 22394 22394 22394
43+
100 1006 3671 1007 100 1006 3674 7861 29147 2483 9530 16280 23854 1007 100 100 1017 3943 21211 21211 2509 21211 22394 21211 22394 2509 21211 22394 22394 21211 22394 22394 2509 1017 1012 1017 1017 1012 1012 1017 1017 1012 1012 1012 1017 100 1029 1855 100 100 6207 100 100 14677 23632 22203 1811 1995 1011 1011 1011 1011 1011 1011 1027 1027 1027 1027 1027 1027 1027 1192 15290 29754 14150 1192 10260 1181 29755 29436 29741 10260 16856 29747 23925 10325 1005 1005 1005 1005 1005 1005 1036 1036 1036 1036 1036 1036 1036 1000 1000 1000 1000 1012 1012 1012 1012 1012 1012 999 999 999 999 999 999 1029 1029 1029 1029 1029 1029 1045 1005 2310 2042 1005 2409 2002 1005 1055 2045 1010 1005 2128 2017 2469 1029 1005 1049 2025 2469 1045 1005 2222 2191 2009 1010 1005 1040 2017 2066 2070 5572 1029 2057 1005 2310 1037 1005 2222

models/ggml-vocab-command-r.gguf

0 Bytes
Binary file not shown.

models/ggml-vocab-deepseek-coder.gguf

-9.27 MB
Binary file not shown.
Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
1-
2536 228 27 228 22957 6983
2-
45 193433
1+
1050 207 19 207 19192 4217
2+
37 32009 71 6247
33

4-
228
5-
1667
6-
1742
7-
205
8-
206
9-
2126
10-
11516
11-
34777
12-
28339 3845
13-
46609 3845
14-
28339 3930
15-
46609 3930
16-
46609 3930 8
17-
28339 19 3845 8
18-
46609 19 3845 8
19-
2075 1801 11254 107 255 21 19317
20-
94 23 27 31 228 30 21213 20752 39267 6405 9980
21-
4929 40071 2196 3236 8750 1764 37097 41168
22-
38111 230 174833 38111 249 86325 241 38111 245 86325 232 38111 252 38111 123 38111 261 165 24629 38111 261 38111 103 174833 38111 235 38111 231 38111 257 38111 235 165 24629 38111 239
23-
2226 256 230 1737 18258 16 80503 122 35927 2226 242 112 57462 1737 54457 223165 106230 2096 16 48389 1737 10203 109160 1875 2222 2517 3342 12523 16
24-
28339
25-
46609
26-
228 46609
27-
1667 46609
28-
1742 46609
29-
1742 46609 1856 46609
30-
1737
31-
206 1857
32-
14 4515
33-
28339 19 1770 14 1954 8 4070 1955 1933 80503 231 5691 12081 13336 2648 29325 14315 24 26 24 27 24 28 24 5123 18372
34-
26
35-
26 26
36-
26 26 26
37-
26 26 26 26
38-
26 26 26 26 26
39-
26 26 26 26 26 26
40-
26 26 26 26 26 26 26
41-
26 26 26 26 26 26 26 26
42-
26 26 26 26 26 26 26 26 26
43-
127731 51628 205 57788 18494 97469 126134 206 2226 256 230 1737 18258 16 80503 122 35927 2226 242 112 57462 1737 54457 223165 106230 2096 16 48389 11254 107 255 2226 107 255 228 26 228 26 26 228 26 26 26 228 26 26 26 26 228 26 26 26 26 26 228 26 26 26 26 26 26 228 26 26 26 26 26 26 26 228 26 26 26 26 26 26 26 26 228 26 21 26 228 26 2271 26 228 26 3834 26 182018 230 174833 38111 249 86325 241 38111 245 86325 232 38111 252 38111 123 38111 261 165 24629 38111 261 38111 103 174833 38111 235 188568 231 5691 12081 13336 2648 29325 14315 24 26 24 27 24 28 24 5123 18372 8391 158343 3512 40071 2196 3236 8750 1764 37097 41168 29721 32797 25646 3802 4975 4975 116167 57178 10251 154048 27292 1767 5125 2632 2155 91 2378 1919 1914 2782 19 2155 3354 1933 5470 38 2155 52 2068 5470 1767 4961 3059 1894 19 2155 43 1933 3026 2725 23186 38 2930 14 20676 1671 14 83 51
4+
207
5+
243
6+
315
7+
184
8+
185
9+
185 185
10+
185 185 185
11+
184 185
12+
17535 1835
13+
414 9489 1835
14+
17535 5414
15+
414 9489 5414
16+
414 9489 5414 0
17+
17535 11 1835 0
18+
414 9489 11 1835 0
19+
437 317 12394 99 234 13 14789
20+
86 15 19 23 207 22 83 3963 27659 26078 3934 14072
21+
1593 6478 616 2251 14994
22+
155 239 209 155 239 114 155 239 228 155 240 220 155 239 224 155 240 211 155 239 231 155 239 115 155 239 240 155 240 210 155 239 240 155 239 95 155 239 114 155 239 214 155 239 210 155 239 236 155 239 214 155 240 210 155 239 218
23+
10047 235 209 334 8760 8 12394 233 114 350 222 10047 221 104 169 116 224 334 4684 3909 992 24330 262 29651 612 8 207 156 237 214 334 5950 992 78 12896 344 638 891 1372 10736 8
24+
17535
25+
414 9489
26+
207 414 9489
27+
243 414 9489
28+
315 414 9489
29+
315 414 9489 185 315 414 9489
30+
334
31+
185 405
32+
6 2895
33+
17535 11 320 6 435 0 1717 417 340 12394 233 210 3015 19100 608 9413 2668 16 18 16 19 16 20 16 1393 169 121 239
34+
18
35+
18 18
36+
18 18 18
37+
18 18 18 18
38+
18 18 18 18 18
39+
18 18 18 18 18 18
40+
18 18 18 18 18 18 18
41+
18 18 18 18 18 18 18 18
42+
18 18 18 18 18 18 18 18 18
43+
185 207 185 185 207 185 185 185 207 12405 459 22758 185 243 185 315 185 251 185 730 185 10047 235 209 334 8760 8 12394 233 114 350 222 10047 221 104 169 116 224 334 4684 3909 992 24330 262 29651 612 8 207 156 237 214 12394 99 234 10047 99 234 207 18 207 18 18 207 18 18 18 207 18 18 18 18 207 18 18 18 18 18 207 18 18 18 18 18 18 207 18 18 18 18 18 18 18 207 18 18 18 18 18 18 18 18 207 18 13 18 207 18 524 18 207 18 1202 18 207 155 239 209 155 239 114 155 239 228 155 240 220 155 239 224 155 240 211 155 239 231 155 239 115 155 239 240 155 240 210 155 239 240 155 239 95 155 239 114 155 239 214 10047 233 210 3015 19100 608 9413 2668 16 18 16 19 16 20 16 1393 169 121 239 18155 374 17194 28 2861 6478 616 2251 14994 31269 4191 6 4686 4686 10252 3358 3358 3409 524 15330 3023 15031 5668 303 6 312 798 651 83 839 362 6 82 741 11 651 1369 340 2037 30 651 44 441 2037 303 6 642 1098 359 11 651 35 340 833 738 10860 30 998 6 10709 245 6 75 43

models/ggml-vocab-deepseek-llm.gguf

-6.58 MB
Binary file not shown.
Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
1-
2536 228 27 228 22957 6983
2-
45 193433
1+
1052 207 19 207 19109 4223
2+
37 100014 71 6245
33

4-
228
5-
1667
6-
1742
7-
205
8-
206
9-
2126
10-
11516
11-
34777
12-
28339 3845
13-
46609 3845
14-
28339 3930
15-
46609 3930
16-
46609 3930 8
17-
28339 19 3845 8
18-
46609 19 3845 8
19-
2075 1801 11254 107 255 21 19317
20-
94 23 27 31 228 30 21213 20752 39267 6405 9980
21-
4929 40071 2196 3236 8750 1764 37097 41168
22-
38111 230 174833 38111 249 86325 241 38111 245 86325 232 38111 252 38111 123 38111 261 165 24629 38111 261 38111 103 174833 38111 235 38111 231 38111 257 38111 235 165 24629 38111 239
23-
2226 256 230 1737 18258 16 80503 122 35927 2226 242 112 57462 1737 54457 223165 106230 2096 16 48389 1737 10203 109160 1875 2222 2517 3342 12523 16
24-
28339
25-
46609
26-
228 46609
27-
1667 46609
28-
1742 46609
29-
1742 46609 1856 46609
30-
1737
31-
206 1857
32-
14 4515
33-
28339 19 1770 14 1954 8 4070 1955 1933 80503 231 5691 12081 13336 2648 29325 14315 24 26 24 27 24 28 24 5123 18372
34-
26
35-
26 26
36-
26 26 26
37-
26 26 26 26
38-
26 26 26 26 26
39-
26 26 26 26 26 26
40-
26 26 26 26 26 26 26
41-
26 26 26 26 26 26 26 26
42-
26 26 26 26 26 26 26 26 26
43-
127731 51628 205 57788 18494 97469 126134 206 2226 256 230 1737 18258 16 80503 122 35927 2226 242 112 57462 1737 54457 223165 106230 2096 16 48389 11254 107 255 2226 107 255 228 26 228 26 26 228 26 26 26 228 26 26 26 26 228 26 26 26 26 26 228 26 26 26 26 26 26 228 26 26 26 26 26 26 26 228 26 26 26 26 26 26 26 26 228 26 21 26 228 26 2271 26 228 26 3834 26 182018 230 174833 38111 249 86325 241 38111 245 86325 232 38111 252 38111 123 38111 261 165 24629 38111 261 38111 103 174833 38111 235 188568 231 5691 12081 13336 2648 29325 14315 24 26 24 27 24 28 24 5123 18372 8391 158343 3512 40071 2196 3236 8750 1764 37097 41168 29721 32797 25646 3802 4975 4975 116167 57178 10251 154048 27292 1767 5125 2632 2155 91 2378 1919 1914 2782 19 2155 3354 1933 5470 38 2155 52 2068 5470 1767 4961 3059 1894 19 2155 43 1933 3026 2725 23186 38 2930 14 20676 1671 14 83 51
4+
207
5+
243
6+
300
7+
184
8+
185
9+
185 185
10+
185 185 185
11+
184 185
12+
17464 1843
13+
37727 1843
14+
17464 5427
15+
37727 5427
16+
37727 5427 0
17+
17464 11 1843 0
18+
37727 11 1843 0
19+
437 317 12356 99 234 13 14743
20+
86 15 19 23 207 22 83 3970 27519 26016 3944 14025
21+
1603 6476 620 91754
22+
71374 209 71374 114 71374 228 155 240 220 71374 224 155 240 211 71374 231 71374 115 71374 240 155 240 210 71374 240 71374 95 71374 114 71374 214 71374 210 71374 236 71374 214 155 240 210 71374 218
23+
10044 95300 334 8754 8 33701 114 350 222 10044 221 104 46713 334 34732 996 24250 262 80923 8 207 37103 214 334 5956 89213 344 643 895 1377 10728 8
24+
17464
25+
37727
26+
207 37727
27+
243 37727
28+
300 37727
29+
300 37727 185 300 37727
30+
334
31+
185 403
32+
6 2906
33+
17464 11 320 6 436 0 1724 418 340 33701 210 3025 19017 612 9407 2681 16 18 16 19 16 20 16 1398 68940 239
34+
18
35+
18 18
36+
18 18 18
37+
18 18 18 18
38+
18 18 18 18 18
39+
18 18 18 18 18 18
40+
18 18 18 18 18 18 18
41+
18 18 18 18 18 18 18 18
42+
18 18 18 18 18 18 18 18 18
43+
185 207 185 185 207 185 185 185 207 11969 486 22504 185 243 185 300 185 251 185 663 185 10044 95300 334 8754 8 33701 114 350 222 10044 221 104 46713 334 34732 996 24250 262 80923 8 207 37103 214 12356 99 234 10044 99 234 207 18 207 18 18 207 18 18 18 207 18 18 18 18 207 18 18 18 18 18 207 18 18 18 18 18 18 207 18 18 18 18 18 18 18 207 18 18 18 18 18 18 18 18 207 18 13 18 207 18 526 18 207 18 1204 18 207 71374 209 71374 114 71374 228 155 240 220 71374 224 155 240 211 71374 231 71374 115 71374 240 155 240 210 71374 240 71374 95 71374 114 71374 214 71899 210 3025 19017 612 9407 2681 16 18 16 19 16 20 16 1398 68940 239 78827 55170 76659 620 91754 31116 36804 4885 4885 10897 4390 4390 41047 15278 3033 14986 5675 304 6 313 803 655 33326 362 6 82 745 11 655 1374 340 2049 30 655 44 441 2049 304 6 647 1099 359 11 655 35 340 837 742 10842 30 1003 6 10699 245 6 75 43

models/ggml-vocab-falcon.gguf

-8.19 MB
Binary file not shown.

0 commit comments

Comments
 (0)