--- 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 ---

bekko

# 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.

HAKARI-Bench overall vs active parameters

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.

HAKARI-Bench overall vs active parameters

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.
MMTEB Multilingual v2 comparison (131 tasks) 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 |
Full MMTEB Retrieval: all 18 tasks and representative models 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.
The following retrieval scores use multilingual *Nano* benchmarks measured with [HAKARI-Bench](https://huggingface.co/spaces/hakari-bench/leaderboard). Higher is better.
HAKARI-Bench and multilingual Nano benchmark details 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 |
NanoMMTEB-v2: all 18 tasks and representative models 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.
## 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.
Measured throughput and benchmark setup 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.
## 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.
NVIDIA GPU 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"}`.
Mac (Apple Silicon) ```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) ```
OpenVINO CPU — recommended for CPU ```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.
ONNX Runtime and browser 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.
Smaller embeddings with Matryoshka (truncate_dim) 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]) ```
llama.cpp / Ollama / GGUF 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.
## Other inference methods Beyond the Sentence Transformers backends above, you can also serve or run the model with:
Text Embeddings Inference (production API) 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 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: \ --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) ```
Transformers library 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)) ```
## 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.
Truncation and output-vector quantization results | 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 |
## 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
Evaluation scope and deployment considerations - 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.
## 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)