Sentence Similarity
sentence-transformers
ONNX
Safetensors
OpenVINO
multilingual
modernbert
embeddings
feature-extraction
matryoshka
retrieval
text-embeddings-inference
Instructions to use hotchpotch/bekko-embedding-v1-a25m with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use hotchpotch/bekko-embedding-v1-a25m with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("hotchpotch/bekko-embedding-v1-a25m") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Inference
- Notebooks
- Google Colab
- Kaggle
File size: 33,488 Bytes
db1a72a 5ba8f4f db1a72a 678bf6e db1a72a aede922 eb5b356 bc0735d eb5b356 db1a72a 25aaa4d db1a72a 43249b1 db1a72a aede922 eb5b356 db1a72a 25aaa4d cf27c90 25aaa4d cf27c90 25aaa4d db1a72a eb5b356 db1a72a f6f614d db1a72a 9357199 f6f614d 8fa81ca db1a72a f6f614d 3e30c02 f6f614d db1a72a 8573fd4 db1a72a eb5b356 db1a72a 25aaa4d 8573fd4 25aaa4d eb5b356 db1a72a f6f614d db1a72a 5ba8f4f db1a72a f6f614d bc0735d f6f614d db1a72a eb5b356 db1a72a 8573fd4 db1a72a 09e41e8 db1a72a 8573fd4 db1a72a 09e41e8 db1a72a 8573fd4 db1a72a eb5b356 db1a72a eb5b356 db1a72a f6f614d db1a72a 8573fd4 db1a72a 09e41e8 db1a72a f6f614d db1a72a f6f614d 5ba8f4f f6f614d db1a72a eb5b356 db1a72a 09e41e8 db1a72a eb5b356 db1a72a 09e41e8 db1a72a 8573fd4 db1a72a 8573fd4 db1a72a 462d17d e0f3136 462d17d e0f3136 db1a72a eb5b356 db1a72a f6f614d db1a72a f6f614d db1a72a 8573fd4 db1a72a f6f614d db1a72a f6f614d db1a72a 8573fd4 db1a72a becad48 db1a72a 09e41e8 db1a72a becad48 db1a72a becad48 db1a72a becad48 db1a72a 25aaa4d 8573fd4 db1a72a eb5b356 db1a72a f6f614d db1a72a 8573fd4 db1a72a 6e370ec 44f0b8a 6e370ec 44f0b8a 6e370ec 44f0b8a 6e370ec 44f0b8a 6e370ec 44f0b8a 6e370ec 44f0b8a 6e370ec db1a72a eb5b356 db1a72a 8573fd4 db1a72a 8573fd4 db1a72a 09e41e8 db1a72a 25aaa4d 8573fd4 25aaa4d 8573fd4 25aaa4d db1a72a 8573fd4 db1a72a 09e41e8 db1a72a eb5b356 db1a72a 43249b1 db1a72a 784c502 db1a72a eb5b356 db1a72a | 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 | ---
language:
- multilingual
license: mit
base_model:
- hotchpotch/bekko-embedding-v1-a25m-pt
base_model_relation: finetune
library_name: sentence-transformers
pipeline_tag: sentence-similarity
tags:
- sentence-transformers
- embeddings
- feature-extraction
- modernbert
- matryoshka
- multilingual
- retrieval
- onnx
- openvino
---
<p align="center">
<img src="https://storage.googleapis.com/secons-site-images/other/huggingface/bekko/bekko-logo.webp" alt="bekko">
</p>
# bekko-embedding-v1-a25m
bekko-embedding-v1-a25m is an ultra-compact multilingual text embedding model. It has just 25M active parameters β light enough to run comfortably on modest CPUs β yet its retrieval quality is comparable to models with 3β10x more active parameters.
<p align="center">
<img src="https://storage.googleapis.com/secons-site-images/other/huggingface/bekko/hakari_score_vs_active_params.png" alt="HAKARI-Bench overall vs active parameters">
</p>
For a smaller, faster model, see [bekko-embedding-v1-a8m](https://huggingface.co/hotchpotch/bekko-embedding-v1-a8m) (8M active parameters).
You can also try bekko right in your browser: the [bekko-embedding-web](https://huggingface.co/spaces/hotchpotch/bekko-embedding-web) demo runs the model fully client-side with Transformers.js β no server involved.
> [!NOTE]
> For a guided overview of the models, training recipe, and results, read [Bekko Embedding: how small can a multilingual retrieval model be?](https://huggingface.co/blog/hotchpotch/bekko-embedding).
## Highlights
- Ultra-compact: just 25M active parameters, with retrieval quality on par with models 3β10x its active-parameter count
- 100+ languages, context up to 8k tokens
- 384-dim embeddings that truncate cleanly to 256 / 128 / 64 (Matryoshka)
- Runs well on CPU β even a Raspberry Pi 5 β with ONNX and OpenVINO artifacts included
- Fast on GPU too, with SDPA or Flash Attention 2
- MIT license
## a8m or a25m?
| | [a8m](https://huggingface.co/hotchpotch/bekko-embedding-v1-a8m) | a25m (this model) |
| --- | ---: | ---: |
| Active parameters | **7.7M** | 24.9M |
| HAKARI-Bench overall | 0.545 | **0.570** |
| MMTEB Retrieval | 56.2 | **57.5** |
| CPU docs/s (Ryzen 9 7950X, OpenVINO) | **364** | 134 |
| CPU docs/s (Raspberry Pi 5, OpenVINO) | **33** | 10.5 |
| GPU docs/s (RTX 5090, Flash Attention 2) | **5,561** | 4,006 |
Rule of thumb: a25m is the quality pick. Switch to a8m when CPU budget or latency is tight β it keeps most of the quality and gains about 2.7x CPU throughput.
## Quickstart
We recommend Sentence Transformers 5.0+ and Transformers 5.12+:
```bash
pip install -U "sentence-transformers>=5.0" "transformers>=5.12"
```
Queries and documents go through the same `encode()` call β no prefixes or task instructions needed. Pass `normalize_embeddings=True` when you plan to search with cosine similarity or dot product.
On GPU, SDPA works out of the box with PyTorch and CUDA. Flash Attention 2 requires `pip install flash-attn --no-build-isolation`; on our RTX 5090 it was about 24% faster, and can be enabled by replacing `"sdpa"` below with `"flash_attention_2"`. Sentence Transformers selects CUDA automatically, so `device` is normally unnecessary; to force it, use `device="cuda"`, not `"gpu"`.
```python
from sentence_transformers import SentenceTransformer, util
model = SentenceTransformer(
"hotchpotch/bekko-embedding-v1-a25m",
# model_kwargs={"attn_implementation": "sdpa"}, # Optional on GPU
)
query = "What are the characteristics of sushi?"
docs = [
"A warm noodle soup served in broth with sliced toppings.",
"倩γ·γγ―ιγιθγ«θ‘£γγ€γγ¦ζγγζηγ§γγ", # "Tempura is battered, deep-fried fish and vegetables."
"Une fine crepe garnie de sucre, de beurre ou de fruits.",
"A Japanese dish made with vinegared rice, often shaped with seafood, vegetables, or egg.",
]
query_emb = model.encode(query, normalize_embeddings=True)
doc_emb = model.encode(docs, normalize_embeddings=True)
scores = util.cos_sim(query_emb, doc_emb)[0]
print(scores)
print("best doc:", docs[int(scores.argmax())])
```
Output (exact scores vary slightly by backend):
```text
tensor([0.2953, 0.2785, 0.3209, 0.4378])
best doc: A Japanese dish made with vinegared rice, often shaped with seafood, vegetables, or egg.
```
Queries and documents don't need to share a language. Continuing with the same `model`, a Japanese query finds the right English document in a mixed English / Spanish corpus:
```python
corpus = [
"Sushi is a Japanese dish of vinegared rice topped with seafood.",
"The Eiffel Tower is a wrought-iron lattice tower in Paris, France.",
"Mount Fuji is the highest mountain in Japan, at 3,776 meters.",
"Python is a programming language known for its readability.",
"La Sagrada FamΓlia es una basΓlica de Barcelona diseΓ±ada por Antoni GaudΓ.",
]
corpus_emb = model.encode(corpus, normalize_embeddings=True)
for query in [
"ζ₯ζ¬γ§δΈηͺι«γε±±γ―οΌ", # "What is the highest mountain in Japan?"
"Who designed the famous basilica in Barcelona?",
]:
query_emb = model.encode(query, normalize_embeddings=True)
hits = util.semantic_search(query_emb, corpus_emb, top_k=2)[0]
print(query)
for hit in hits:
print(f" {hit['score']:.3f} {corpus[hit['corpus_id']]}")
```
```text
ζ₯ζ¬γ§δΈηͺι«γε±±γ―οΌ
0.457 Mount Fuji is the highest mountain in Japan, at 3,776 meters.
0.142 Sushi is a Japanese dish of vinegared rice topped with seafood.
Who designed the famous basilica in Barcelona?
0.563 La Sagrada FamΓlia es una basΓlica de Barcelona diseΓ±ada por Antoni GaudΓ.
0.126 The Eiffel Tower is a wrought-iron lattice tower in Paris, France.
```
That's everything you need for basic use. For more speed β OpenVINO on CPU, Flash Attention on GPU, browser inference, smaller embeddings β see [Optimized Inference](#optimized-inference) below.
## Benchmark results
In the chart above, up and to the left is better: more retrieval quality from fewer active parameters. The step line shows the best observed score within each active-parameter budget, and outlined markers identify Pareto-efficient models. Both bekko models sit in that upper-left region, scoring at or above many models several times their size β which is the whole point of the project.
<p align="center">
<img src="https://storage.googleapis.com/secons-site-images/other/huggingface/bekko/hakari_score_vs_active_params.png" alt="HAKARI-Bench overall vs active parameters">
</p>
On the 131-task MMTEB Multilingual v2 suite, a25m scores 57.5 Retrieval and 58.3 Mean(Task) with 24.9M active parameters. That edges out gte-multilingual-base on Retrieval and ties it on Mean with ~4.5x fewer active parameters, and beats multilingual-e5-large and BGE-M3 on Retrieval with ~12x fewer.
<details>
<summary>MMTEB Multilingual v2 comparison (131 tasks)</summary>
Scores are Γ100. Retrieval is task-macro nDCG@10, and Mean is the mean across all 131 tasks. Competitor values use the official 2026-06-28 snapshot. Bekko was evaluated over the same task set and aggregation rules.
| Model | Active Params | Dims | Mean | Retrieval | Reranking | BitextMining | STS |
| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
| **bekko-embedding-v1-a8m** | **7.7M** | 384 | **56.7** | **56.2** | 60.6 | 73.1 | 71.6 |
| multilingual-e5-small | 21.6M | 384 | 56.4 | 50.9 | 60.4 | 69.4 | 71.7 |
| **bekko-embedding-v1-a25m** | **24.9M** | 384 | **58.3** | **57.5** | 61.6 | 75.4 | 73.4 |
| granite-embedding-97m-multilingual-r2 | 28.3M | 384 | 51.9 | 60.3 | 59.4 | 44.2 | 65.6 |
| harrier-oss-v1-270m | 100.3M | 640 | 66.6 | 66.4 | 61.9 | 81.5 | 75.4 |
| embeddinggemma-300m | 106.3M | 768 | 61.2 | 62.5 | 63.3 | 64.4 | 74.7 |
| granite-embedding-311m-multilingual-r2 | 110.3M | 768 | 56.0 | 65.2 | 62.0 | 57.9 | 69.0 |
| gte-multilingual-base | 113.3M | 768 | 58.3 | 57.2 | 60.7 | 71.8 | 72.9 |
| multilingual-e5-large | 303.9M | 1024 | 58.6 | 53.7 | 62.9 | 73.8 | 73.3 |
| snowflake-arctic-embed-l-v2.0 | 311.8M | 1024 | 57.0 | 58.4 | 63.7 | 64.1 | 70.1 |
| BGE-M3 | 311.8M | 1024 | 59.6 | 54.6 | 62.8 | 79.1 | 74.1 |
<details>
<summary>Full MMTEB Retrieval: all 18 tasks and representative models</summary>
Scores are Γ100. a25m is stronger than a8m on 13 of 18 tasks and on the mean. Its main regression is WinoGrande.
| Task | a8m | a25m | mE5-s | G97 | GTE | BGE-M3 |
| --- | ---: | ---: | ---: | ---: | ---: | ---: |
| **Mean** | **56.23** | **57.45** | **50.91** | **60.32** | **57.16** | **54.59** |
| StackOverflowQA | 74.94 | 77.35 | 81.94 | 81.99 | 87.08 | 80.60 |
| TwitterHjerne | 56.56 | 63.59 | 58.18 | 56.71 | 68.92 | 37.82 |
| AILAStatutes | 34.13 | 36.23 | 19.01 | 28.95 | 33.57 | 29.04 |
| ArguAna | 55.57 | 57.69 | 39.09 | 53.09 | 58.28 | 54.04 |
| Hagrid | 98.69 | 98.62 | 98.55 | 98.69 | 98.55 | 98.77 |
| LegalBench Lobbying | 92.01 | 91.40 | 89.47 | 91.36 | 90.55 | 90.34 |
| LEMBPasskey | 85.00 | 85.00 | 38.25 | 82.75 | 55.50 | 59.00 |
| SCIDOCS | 19.43 | 20.11 | 13.90 | 20.36 | 18.26 | 16.31 |
| SpartQA | 11.95 | 9.18 | 5.43 | 67.34 | 5.29 | 7.49 |
| TempReason L1 | 1.06 | 1.40 | 0.80 | 5.15 | 1.08 | 0.99 |
| TRECCOVID | 53.19 | 56.46 | 72.29 | 66.27 | 57.67 | 54.72 |
| WinoGrande | 59.24 | 44.21 | 37.46 | 56.61 | 42.21 | 41.72 |
| Belebele | 69.72 | 74.56 | 66.29 | 52.86 | 89.20 | 78.16 |
| MLQA | 67.50 | 71.06 | 63.85 | 60.54 | 72.19 | 74.81 |
| StatCan Dialogue | 21.73 | 25.96 | 10.33 | 53.65 | 21.74 | 21.86 |
| Wikipedia Multi. | 86.01 | 87.89 | 88.66 | 83.24 | 84.00 | 89.87 |
| COVID | 72.01 | 73.69 | 72.82 | 70.10 | 80.61 | 77.51 |
| MIRACL HN | 53.50 | 59.77 | 60.09 | 56.09 | 64.17 | 69.59 |
Abbreviations: mE5-s = multilingual-e5-small, G97 = Granite Embedding 97M Multilingual R2, GTE = gte-multilingual-base, MIRACL HN = MIRACL Retrieval Hard Negatives.
</details>
</details>
The following retrieval scores use multilingual *Nano* benchmarks measured with [HAKARI-Bench](https://huggingface.co/spaces/hakari-bench/leaderboard). Higher is better.
<details>
<summary>HAKARI-Bench and multilingual Nano benchmark details</summary>
What each column means:
- Overall β HAKARI-Bench Overall, the micro-average across all the sets below
- MNanoBEIR β multilingual NanoBEIR, general-purpose retrieval
- NanoMMTEB-v2 β Nano subset of MMTEB v2 (massive multilingual retrieval)
- NanoRTEB β multilingual retrieval benchmark
- NanoLongEmbed β long-document retrieval
- NanoCoIR β code retrieval
| Model | Active Params | Overall | MNanoBEIR | NanoMMTEB-v2 | NanoRTEB | NanoLongEmbed | NanoCoIR |
| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
| [bekko-embedding-v1-a8m](https://huggingface.co/hotchpotch/bekko-embedding-v1-a8m) | 7.7M | 0.545 | 0.527 | 0.503 | 0.550 | 0.682 | 0.747 |
| [bekko-embedding-v1-a25m](https://huggingface.co/hotchpotch/bekko-embedding-v1-a25m) | 24.9M | 0.570 | 0.549 | 0.494 | 0.594 | 0.706 | 0.786 |
| [multilingual-e5-small](https://huggingface.co/intfloat/multilingual-e5-small) | 21.6M | 0.517 | 0.512 | 0.445 | 0.471 | 0.501 | 0.692 |
| [granite-97m-multilingual-r2](https://huggingface.co/ibm-granite/granite-embedding-97m-multilingual-r2) | 28.3M | 0.525 | 0.505 | 0.531 | 0.567 | 0.659 | 0.780 |
| [harrier-oss-v1-270m](https://huggingface.co/microsoft/harrier-oss-v1-270m) | 100.3M | 0.555 | 0.523 | 0.522 | 0.550 | 0.617 | 0.789 |
| [granite-311m-multilingual-r2](https://huggingface.co/ibm-granite/granite-embedding-311m-multilingual-r2) | 110.3M | 0.569 | 0.543 | 0.577 | 0.606 | 0.695 | 0.814 |
| [gte-multilingual-base](https://huggingface.co/Alibaba-NLP/gte-multilingual-base) | 113.3M | 0.563 | 0.527 | 0.486 | 0.558 | 0.669 | 0.753 |
| [multilingual-e5-large](https://huggingface.co/intfloat/multilingual-e5-large) | 303.9M | 0.565 | 0.560 | 0.484 | 0.556 | 0.505 | 0.747 |
| [bge-m3](https://huggingface.co/BAAI/bge-m3) | 311.8M | 0.577 | 0.557 | 0.485 | 0.536 | 0.653 | 0.692 |
<details>
<summary>NanoMMTEB-v2: all 18 tasks and representative models</summary>
Scores are nDCG@10. a25m scores higher than a8m on 14 of 18 tasks. Its slightly lower simple mean is mainly due to LEMBPasskey.
| Task | a8m | a25m | mE5-s | G97 | GTE | BGE-M3 |
| --- | ---: | ---: | ---: | ---: | ---: | ---: |
| **Mean** | **0.503** | **0.494** | **0.445** | **0.531** | **0.486** | **0.485** |
| AILAStatutes | 0.338 | 0.368 | 0.195 | 0.291 | 0.336 | 0.292 |
| ArguAna | 0.393 | 0.396 | 0.265 | 0.359 | 0.396 | 0.381 |
| Belebele | 0.098 | 0.097 | 0.112 | 0.119 | 0.108 | 0.151 |
| COVID | 0.683 | 0.726 | 0.708 | 0.680 | 0.787 | 0.746 |
| Hagrid | 0.988 | 0.989 | 0.988 | 0.989 | 0.989 | 0.991 |
| LegalBench Lobbying | 0.918 | 0.918 | 0.895 | 0.921 | 0.903 | 0.909 |
| LEMBPasskey | 0.876 | 0.552 | 0.380 | 0.702 | 0.417 | 0.491 |
| MIRACL | 0.743 | 0.785 | 0.791 | 0.779 | 0.820 | 0.836 |
| MLQA | 0.139 | 0.172 | 0.089 | 0.129 | 0.144 | 0.159 |
| SCIDOCS | 0.255 | 0.266 | 0.195 | 0.273 | 0.256 | 0.216 |
| SpartQA | 0.143 | 0.102 | 0.069 | 0.656 | 0.049 | 0.074 |
| StackOverflowQA | 0.823 | 0.839 | 0.880 | 0.891 | 0.919 | 0.871 |
| StatCan Dialogue | 0.112 | 0.149 | 0.074 | 0.187 | 0.122 | 0.137 |
| TempReason L1 | 0.013 | 0.023 | 0.019 | 0.121 | 0.013 | 0.009 |
| TRECCOVID | 0.397 | 0.407 | 0.401 | 0.394 | 0.402 | 0.366 |
| TwitterHjerne | 0.564 | 0.634 | 0.584 | 0.571 | 0.698 | 0.717 |
| Wikipedia Multi. | 0.954 | 0.972 | 0.995 | 0.941 | 0.966 | 0.978 |
| WinoGrande | 0.607 | 0.490 | 0.377 | 0.564 | 0.430 | 0.398 |
Model abbreviations match the Full MMTEB Retrieval table above.
</details>
</details>
## Model Details
| Item | Value |
| --- | --- |
| Model type | Sentence Transformer dense embedding model |
| Architecture | mmBERT (ModernBERT-style) encoder, 13 layers, hidden size 384 |
| Base model | [hotchpotch/bekko-embedding-v1-a25m-pt](https://huggingface.co/hotchpotch/bekko-embedding-v1-a25m-pt) |
| Backbone | [hotchpotch/mmBERT-L13H384-pruned](https://huggingface.co/hotchpotch/mmBERT-L13H384-pruned), pruned from [mmBERT-small](https://huggingface.co/jhu-clsp/mmBERT-small) |
| Active parameters | 24,930,432 |
| Total parameters | 123,234,432 |
| Embedding dimension | 384 |
| Supported truncate dimensions | 256, 128, 64 |
| Max sequence length | 8192 tokens |
| Pooling | Mean pooling |
| Similarity | Cosine similarity |
## Why active parameters?
The "a25m" in the name counts active parameters: the attention and feed-forward weights that run on every token, which is where nearly all of a transformer encoder's inference cost lives. The token embedding table dominates the total parameter count, but at inference it's only a lookup.
That's why a model can be large on disk and still fast. bekko-embedding-v1-a25m totals ~123M parameters, but the bulk of that is the multilingual embedding table β only 25M parameters do real work per token, so latency behaves like a 25M model. The default OpenVINO / ONNX artifacts also store that static table as row-wise `int8`, cutting the main model file from about 470 MiB to 190 MiB.
### Speed vs other models
On a Ryzen 9 7950X with OpenVINO, a25m encodes 134 docs/s β about 6.4x multilingual-e5-large. On an RTX 5090 with Flash Attention 2 it reaches 4,006 docs/s, faster than every model we measured except a8m.
<details>
<summary>Measured throughput and benchmark setup</summary>
Document throughput uses Natural Questions text, batch size 64 and max length 512 for CPU/MPS. CUDA uses NQ 100k, `fp16`, and Flash Attention 2. All throughput values in the table are docs/s.
| Model | AP | x86 | Pi 5 | M4 | RTX |
| --- | ---: | ---: | ---: | ---: | ---: |
| **bekko-a8m** | **7.7M** | **364** | **33** | **592** | **5,561** |
| mE5-small | 21.6M | 226 | 19 | 370 | 3,746 |
| **bekko-a25m** | **24.9M** | **134** | **10.5** | **351** | **4,006** |
| granite-97m-r2 | 28.3M | 125 | 10.0 | 286 | 3,917 |
| EmbGemma-300m | 106.3M | β | β | 97 | 1,678 |
| granite-311m-r2 | 110.3M | 38 | 2.9 | 106 | 2,159 |
| mE5-large | 303.9M | 21 | 1.5 | 67 | 1,318 |
| BGE-M3 | 311.8M | β | β | 78 | 1,324 |
Abbreviations: mE5 = multilingual-e5, granite-97m/311m-r2 = Granite Embedding Multilingual R2, EmbGemma = EmbeddingGemma. x86 = Ryzen 9 7950X + OpenVINO, Pi 5 = Raspberry Pi 5 + OpenVINO, M4 = Apple M4 Max + MPS, RTX = RTX 5090 + CUDA/Flash Attention 2. AP means active parameters.
Throughput depends on input lengths, batch size, runtime, and hardware. OpenVINO is recommended for CPU, MPS for Apple Silicon, and Flash Attention 2 for supported NVIDIA GPUs.
</details>
## Optimized Inference
Choose the backend based on where you run the model:
| Target | Recommended backend | Why |
| --- | --- | --- |
| NVIDIA GPU | SDPA, or Flash Attention 2 for maximum throughput | SDPA works out of the box with PyTorch and CUDA. Flash Attention 2 requires a separate install but was about 24% faster on our RTX 5090. |
| Apple Silicon | MPS | Uses the Mac GPU through PyTorch. |
| Native CPU | OpenVINO; ONNX Runtime is not recommended | OpenVINO was about 6.1x faster than ONNX Runtime on a Ryzen 9 7950X and 1.9x faster on a Raspberry Pi 5. |
| Browser | ONNX with Transformers.js | Runs fully client-side with WebGPU or WASM. |
For native CPU inference, we do not recommend ONNX Runtime; use OpenVINO instead. Keep ONNX for browser deployment or environments that specifically require it. The default OpenVINO and ONNX artifacts both keep the tokenizer and vocabulary untouched and compress only the static token embedding table.
<details>
<summary>NVIDIA GPU</summary>
SDPA works everywhere and is the safe default. If your GPU supports Flash Attention 2, it's worth enabling: on our RTX 5090 it was about 24% faster than SDPA for a25m (18% for a8m).
```python
import torch
from sentence_transformers import SentenceTransformer, util
model = SentenceTransformer(
"hotchpotch/bekko-embedding-v1-a25m",
device="cuda",
model_kwargs={
"attn_implementation": "flash_attention_2",
"dtype": torch.float16,
},
)
query = "What are the characteristics of sushi?"
docs = [
"A warm noodle soup served in broth with sliced toppings.",
"倩γ·γγ―ιγιθγ«θ‘£γγ€γγ¦ζγγζηγ§γγ", # "Tempura is battered, deep-fried fish and vegetables."
"Une fine crepe garnie de sucre, de beurre ou de fruits.",
"A Japanese dish made with vinegared rice, often shaped with seafood, vegetables, or egg.",
]
scores = util.cos_sim(
model.encode(query, normalize_embeddings=True),
model.encode(docs, normalize_embeddings=True),
)[0]
print(scores)
```
If Flash Attention 2 is unavailable, use `model_kwargs={"attn_implementation": "sdpa"}`.
</details>
<details>
<summary>Mac (Apple Silicon)</summary>
```python
from sentence_transformers import SentenceTransformer, util
model = SentenceTransformer(
"hotchpotch/bekko-embedding-v1-a25m",
device="mps",
model_kwargs={"attn_implementation": "sdpa"},
)
query = "What are the characteristics of sushi?"
docs = [
"A warm noodle soup served in broth with sliced toppings.",
"倩γ·γγ―ιγιθγ«θ‘£γγ€γγ¦ζγγζηγ§γγ", # "Tempura is battered, deep-fried fish and vegetables."
"Une fine crepe garnie de sucre, de beurre ou de fruits.",
"A Japanese dish made with vinegared rice, often shaped with seafood, vegetables, or egg.",
]
scores = util.cos_sim(
model.encode(query, normalize_embeddings=True),
model.encode(docs, normalize_embeddings=True),
)[0]
print(scores)
```
</details>
<details>
<summary>OpenVINO CPU β recommended for CPU</summary>
```bash
# As of 2026-07-28, Transformers 4.x must be specified so that pip resolves
# a compatible OpenVINO dependency stack.
pip install -U \
"sentence-transformers[openvino]>=5.0" \
"transformers>=4.57,<5"
```
```python
from sentence_transformers import SentenceTransformer, util
model = SentenceTransformer(
"hotchpotch/bekko-embedding-v1-a25m",
backend="openvino",
device="cpu",
model_kwargs={"file_name": "openvino/openvino_model.xml", "device": "CPU"},
)
query = "What are the characteristics of sushi?"
docs = [
"A warm noodle soup served in broth with sliced toppings.",
"A Japanese dish made with vinegared rice, often shaped with seafood, vegetables, or egg.",
]
scores = util.cos_sim(
model.encode(query, normalize_embeddings=True),
model.encode(docs, normalize_embeddings=True),
)[0]
print(scores)
```
The default IR is `openvino/openvino_model.xml` plus `.bin`, about 190 MiB for the main binary. `fp16` and `fp32` comparison files are also included with explicit `_not_default` / `_not_recommended` names.
</details>
<details>
<summary>ONNX Runtime and browser</summary>
For Python ONNX Runtime:
```bash
pip install -U "sentence-transformers[onnx]>=5.0"
```
```python
from sentence_transformers import SentenceTransformer
model = SentenceTransformer(
"hotchpotch/bekko-embedding-v1-a25m",
backend="onnx",
device="cpu",
model_kwargs={"file_name": "onnx/model.onnx", "provider": "CPUExecutionProvider"},
)
embeddings = model.encode(
["What are the characteristics of sushi?", "Sushi uses vinegared rice."],
normalize_embeddings=True,
)
```
For Transformers.js:
```bash
npm install @huggingface/transformers
```
```js
import { pipeline } from "@huggingface/transformers";
// Browser: use WebGPU when available, otherwise fall back to WASM.
// Node.js: replace this line with `const device = "cpu";`.
const device = navigator.gpu ? "webgpu" : "wasm";
const extractor = await pipeline(
"feature-extraction",
"hotchpotch/bekko-embedding-v1-a25m",
{ device, dtype: "fp32" },
);
const embedding = await extractor("What are the characteristics of sushi?", {
pooling: "mean",
normalize: true,
});
console.log(embedding.dims); // [1, 384]
```
For a complete client-side example, see the [bekko-embedding-web](https://huggingface.co/spaces/hotchpotch/bekko-embedding-web) Space.
`dtype: "fp32"` selects `onnx/model.onnx`. In this repository, that filename is the compact default (static embedding table in `int8`), while Transformer computation remains `fp32`. Additional `fp16`, `fp32`, and ONNX `qint8`/`quint8` comparison files are included under explicit names. The Transformer-weight quantized files are experimental, not default choices.
</details>
<details>
<summary>Smaller embeddings with Matryoshka (truncate_dim)</summary>
These models are trained with Matryoshka representation learning, so you can shrink the 384-dim embeddings to 256, 128, or 64 dimensions by passing `truncate_dim`. Smaller dimensions reduce index size and speed up similarity search, at a small cost in retrieval quality (see [Truncation and Quantization](#truncation-and-quantization)).
```python
from sentence_transformers import SentenceTransformer, util
# Full embedding is 384-dim; 256 / 128 / 64 are supported.
model = SentenceTransformer(
"hotchpotch/bekko-embedding-v1-a25m",
truncate_dim=256,
model_kwargs={"attn_implementation": "sdpa"},
)
query = "What are the characteristics of sushi?"
docs = [
"A warm noodle soup served in broth with sliced toppings.",
"倩γ·γγ―ιγιθγ«θ‘£γγ€γγ¦ζγγζηγ§γγ", # "Tempura is battered, deep-fried fish and vegetables."
"Une fine crepe garnie de sucre, de beurre ou de fruits.",
"A Japanese dish made with vinegared rice, often shaped with seafood, vegetables, or egg.",
]
emb = model.encode(query, normalize_embeddings=True)
print("embedding dim:", emb.shape[-1])
print(util.cos_sim(emb, model.encode(docs, normalize_embeddings=True))[0])
```
</details>
<details>
<summary>llama.cpp / Ollama / GGUF</summary>
For portable inference with llama.cpp or Ollama, use the GGUF release in
[bekko-embedding-v1-a25m-GGUF](https://huggingface.co/hotchpotch/bekko-embedding-v1-a25m-GGUF).
The GGUF model uses the same 8192-token context, mean pooling, and
384-dimensional L2-normalized embeddings as this model.
Use BF16 on GPUs and Apple Silicon. For CPU inference, use Q8_0; it is smaller
and avoids the severe BF16 slowdown on CPUs without native BF16 arithmetic.
With llama.cpp:
```bash
llama-server \
-hf hotchpotch/bekko-embedding-v1-a25m-GGUF:BF16 \
--embedding --pooling mean --embd-normalize 2 --ctx-size 8192
curl http://localhost:8080/v1/embeddings \
-H 'Content-Type: application/json' \
-d '{"model":"bekko","input":"What is the tallest mountain in Japan?"}'
```
With Ollama:
```bash
# Default (BF16): recommended for GPU and Apple Silicon
ollama pull hotchpotch/bekko-embedding-v1-a25m
curl http://localhost:11434/api/embed \
-d '{"model":"hotchpotch/bekko-embedding-v1-a25m","input":"What is the tallest mountain in Japan?"}'
# Q8_0: recommended for CPU inference
ollama pull hotchpotch/bekko-embedding-v1-a25m:q8_0
```
Ollama also provides explicit `:bf16` and `:f16` tags. The Hugging Face GGUF
repository publishes BF16, F16, and Q8_0. Lower-bit variants are not published
because they provided little file-size reduction for this architecture while
reducing embedding fidelity or throughput. See the GGUF model card for the
measurements and conversion details.
</details>
## Other inference methods
Beyond the Sentence Transformers backends above, you can also serve or run the model with:
<details>
<summary>Text Embeddings Inference (production API)</summary>
Text Embeddings Inference (TEI) is Hugging Face's Rust-based serving stack, with official Docker images, dynamic batching, and Prometheus metrics built in.
Before deploying, confirm your TEI version supports this model's encoder architecture, and pick the image tag that matches your target β a CPU image, or a GPU image for your specific architecture. See the [TEI image list](https://github.com/huggingface/text-embeddings-inference#docker-images) for current tags.
```bash
model=hotchpotch/bekko-embedding-v1-a25m
volume=$PWD/tei-data
# Replace <tag> with the current TEI image for your hardware (CPU, or your GPU arch).
# Add `--gpus all` when using a GPU image.
docker run -p 8080:80 -v "$volume:/data" --pull always \
ghcr.io/huggingface/text-embeddings-inference:<tag> \
--model-id "$model"
```
```python
import requests
import numpy as np
query = "What are the characteristics of sushi?"
docs = [
"A warm noodle soup served in broth with sliced toppings.",
"倩γ·γγ―ιγιθγ«θ‘£γγ€γγ¦ζγγζηγ§γγ", # "Tempura is battered, deep-fried fish and vegetables."
"Une fine crepe garnie de sucre, de beurre ou de fruits.",
"A Japanese dish made with vinegared rice, often shaped with seafood, vegetables, or egg.",
]
q = np.array(requests.post("http://127.0.0.1:8080/embed", json={"inputs": [query]}).json()[0])
d = np.array(requests.post("http://127.0.0.1:8080/embed", json={"inputs": docs}).json())
q = q / np.linalg.norm(q)
d = d / np.linalg.norm(d, axis=1, keepdims=True)
print(d @ q)
```
</details>
<details>
<summary>Transformers library</summary>
Apply mean pooling with pure Transformers.
```python
import torch
import torch.nn.functional as F
from transformers import AutoModel, AutoTokenizer
model_id = "hotchpotch/bekko-embedding-v1-a25m"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModel.from_pretrained(model_id, attn_implementation="sdpa").eval()
def embed(texts):
batch = tokenizer(texts, padding=True, truncation=True, return_tensors="pt")
with torch.no_grad():
out = model(**batch).last_hidden_state
mask = batch["attention_mask"].unsqueeze(-1)
pooled = (out * mask).sum(dim=1) / mask.sum(dim=1).clamp(min=1)
return F.normalize(pooled, p=2, dim=1)
query = "What are the characteristics of sushi?"
docs = [
"A warm noodle soup served in broth with sliced toppings.",
"倩γ·γγ―ιγιθγ«θ‘£γγ€γγ¦ζγγζηγ§γγ", # "Tempura is battered, deep-fried fish and vegetables."
"Une fine crepe garnie de sucre, de beurre ou de fruits.",
"A Japanese dish made with vinegared rice, often shaped with seafood, vegetables, or egg.",
]
scores = embed(docs) @ embed([query]).T
print(scores.squeeze(-1))
```
</details>
## Truncation and Quantization
How much quality do you trade for a smaller index? For `bekko-embedding-v1-a25m`: very little at 256 dimensions (-1.4%), progressively more below that. If you quantize the output vectors to `int8` or binary, add a rescoring step β it recovers nearly all of the loss.
<details>
<summary>Truncation and output-vector quantization results</summary>
| Setting | Dim | Encoding | Rescore | HAKARI overall | Delta vs 384-dim float | Recommended use |
| --- | ---: | --- | :---: | ---: | ---: | --- |
| Full quality | 384 | float | No | 0.570 | - | Default choice |
| Smaller index | 256 | float | No | 0.562 | -1.35% | Good size/quality tradeoff |
| Compact index | 128 | float | No | 0.535 | -6.17% | Memory-constrained indexes |
| Very compact index | 64 | float | No | 0.485 | -14.96% | Not for quality-sensitive retrieval |
| INT8 search | 384 | int8 | No | 0.556 | -2.43% | Benchmark before using |
| INT8 search + rescore | 384 | int8 | Yes | 0.570 | -0.03% | Best quantized option |
| Binary search | 384 | binary | No | 0.498 | -12.56% | Not recommended by default |
| Binary search + rescore | 384 | binary | Yes | 0.568 | -0.38% | Strong compression when rescoring is available |
</details>
## FAQ
- *Do I need a prefix like `query: ` or `passage: `?* β No. bekko is trained without prefixes, so you encode raw text for both queries and documents. If you come from the multilingual-e5 family, just drop the prefixes.
- *Which languages are covered?* β 100+ languages, inherited from the mmBERT base model. Coverage is broad but uneven, so evaluate on your own language and domain before deployment (see [Limitations](#limitations)).
- *Which file should I load for my runtime?* β PyTorch: the default safetensors weights. Fastest CPU inference: `openvino/openvino_model.xml`. Browser / ONNX Runtime: `onnx/model.onnx`. Files named `_not_default` / `_not_recommended` are comparison artifacts, not deployment choices.
- *Can I make the embeddings smaller?* β Yes β pass `truncate_dim=256` (or 128 / 64). See [Truncation and Quantization](#truncation-and-quantization) for the quality cost.
- *Can it really run in a browser?* β Yes. Try the [bekko-embedding-web](https://huggingface.co/spaces/hotchpotch/bekko-embedding-web) demo β the model runs fully client-side with Transformers.js.
## Limitations
<details>
<summary>Evaluation scope and deployment considerations</summary>
- Bekko is optimized primarily for multilingual retrieval. Its strongest MMTEB results are Retrieval, Reranking, BitextMining, and STS. It is not intended to be state of the art across every embedding task category.
- Bekko is a bi-encoder embedding model, not a cross-encoder reranker. MMTEB Reranking scores measure bi-encoder similarity scoring. Use a dedicated cross-encoder when maximum reranking accuracy is more important than throughput.
- Support for 100+ languages reflects training-data coverage. Quality varies by language and domain, so evaluate on your target data before deployment.
- HAKARI-Bench is maintained by the model author and should be read alongside the independently maintained MMTEB suite. Bekko's MMTEB results use the same 131-task set and aggregation rules as the referenced snapshot, but await submission through the official leaderboard pipeline.
- Throughput varies with text lengths, batch size, backend, software versions, and hardware. Use the benchmark figures as comparative measurements, not guaranteed production latency.
- Transformer-weight `qint8` artifacts are experimental and can lose retrieval quality or behave differently across CPU architectures. The default ONNX/OpenVINO artifacts only compress the static token embedding table and are the recommended deployment files.
</details>
## The name "bekko"
*bekko* (/Λbek.koΛ/) is a coined name that joins two pieces of Japanese tradition:
- *akabeko* (θ΅€γΉγ) β the red ox that has been cherished in Japan for centuries as a guardian charm, believed to ward off illness and misfortune.
- *bekko-iro* (ιΌη²θ²) β a beautiful traditional Japanese color: a warm, translucent, amber-like hue.
The name pairs the protective spirit of the red ox with the quiet beauty of this classic amber tone.
## Paper
For full technical details, see [Bekko Embedding: Parameter-Efficient Multilingual Retrieval with Ultra-Compact Encoders](https://huggingface.co/papers/2607.25180).
## Citation
If you use bekko-embedding in your work, please cite:
```bibtex
@misc{tateno2026bekkoembedding,
title = {Bekko Embedding: Parameter-Efficient Multilingual Retrieval with Ultra-Compact Encoders},
author = {Yuichi Tateno},
year = {2026},
eprint = {2607.25180},
archivePrefix = {arXiv},
primaryClass = {cs.IR},
url = {https://arxiv.org/abs/2607.25180}
}
```
## Training data
Both datasets built for training bekko-embedding are public:
- [hotchpotch/bekko-embedding-v1-unsupervised](https://huggingface.co/datasets/hotchpotch/bekko-embedding-v1-unsupervised) β unsupervised pretraining data.
- [hotchpotch/bekko-embedding-hard-negatives](https://huggingface.co/datasets/hotchpotch/bekko-embedding-hard-negatives) β hard negatives for contrastive fine-tuning.
## License
MIT License.
## Author
Yuichi Tateno [@hotchpotch](https://github.com/hotchpotch)
|