Views
No views yet
MatMul and Gather (This version quantizes the embedding table as well, reducing the total size significantly).quantize_octen_int8_full.py (included in the repo).model.int8_full.onnx: The main quantized ONNX graph.model.int8_full.onnx.data: External quantized weights (approx. 570 MB).quantize_octen_int8_full.py: The script used for quantization.tokenizer.json, config.json, etc.: Standard configuration and tokenizer files.| Model Type | Model | Size | Max Tokens | Embedding Dimensions | HuggingFace Link |
|---|---|---|---|---|---|
| Text Embedding | Octen-Embedding-0.6B | 0.6B | 32,768 | 1024 | ✅ Available |
| Text Embedding | Octen-Embedding-4B | 4.0B | 32,768 | 2560 | ✅ Available |
| Text Embedding | Octen-Embedding-8B | 7.6B | 32,768 | 4096 | ✅ Available |
| Model | Embedding Dim | Max Tokens | Mean (Public) | Mean (Private) | Mean (Task) |
|---|---|---|---|---|---|
| Octen-Embedding-8B | 4096 | 32768 | 0.7953 | 0.8157 | 0.8045 |
| voyage-3-large | 1024 | 32000 | 0.7434 | 0.8277 | 0.7812 |
| gemini-embedding-001 | 3072 | 2048 | 0.7218 | 0.8075 | 0.7602 |
| Octen-Embedding-4B | 2560 | 32768 | 0.7747 | 0.7942 | 0.7834 |
| MoD-Embedding | 2560 | 32768 | 0.7642 | 0.7900 | 0.7758 |
| Qwen3-Embedding-8B | 4096 | 32768 | 0.7310 | 0.7838 | 0.7547 |
| Octen-Embedding-0.6B | 1024 | 32768 | 0.7241 | - | - |
| voyage-3.5 | 1024 | 32000 | 0.7139 | 0.8102 | 0.7571 |
| Cohere-embed-v4.0 | 1536 | 128000 | 0.6534 | 0.7943 | 0.7166 |
| jina-embeddings-v4 | 2048 | 32768 | 0.6652 | 0.7664 | 0.7105 |
| GritLM-7B | 4096 | 32768 | 0.6187 | 0.7385 | 0.6724 |
| text-embedding-3-large | 3072 | 8191 | 0.6110 | 0.7130 | 0.6567 |
| e5-mistral-7b-instruct | 4096 | 32768 | 0.5090 | 0.7091 | 0.5987 |
| NV-Embed-v2 | 4096 | 32768 | 0.5805 | 0.6691 | 0.6203 |
| snowflake-arctic-embed-l-v2.0 | 1024 | 8192 | 0.5395 | 0.7079 | 0.6150 |
| multilingual-e5-large-instruct | 1024 | 514 | 0.5478 | 0.6859 | 0.6097 |
| gte-multilingual-base | 768 | 8192 | 0.5291 | 0.6697 | 0.5921 |
| text-embedding-3-small | 1536 | 8191 | 0.5260 | 0.6630 | 0.5874 |
| bge-m3 | 1024 | 8194 | 0.5216 | 0.6726 | 0.5893 |
| Qwen3-Embedding-4B | 2560 | 32768 | - | 0.7711 | - |
| Qwen3-Embedding-0.6B | 1024 | 32768 | - | 0.7117 | - |
1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("Octen/Octen-Embedding-0.6B")
4
5# Encode sentences
6sentences = [
7 "This is an example sentence",
8 "Each sentence is converted to a vector"
9]
10
11embeddings = model.encode(sentences)
12print(embeddings.shape)
13# Output: (2, 1024)1@misc{octen2025rteb,
2 title={Octen Series: Optimizing Embedding Models to #1 on RTEB Leaderboard},
3 author={Octen Team},
4 year={2025},
5 url={https://octen-team.github.io/octen_blog/posts/octen-rteb-first-place/}
6}Octen.apache-2.0. This repository redistributes under the same terms; it grants no rights the upstream licence does not.