Model reference · open weights
orange-nomic-1536 is an open-weight embedding model from Orange. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | Orange |
|---|---|
| Type | Embedding models |
| Task | Embeddings |
| Parameters (lead) | 137M |
| Context | 8k tokens |
| Runs with | sentence-transformers |
| Released | 2026-02-18 |
| Popularity | 3k downloads / month |
| Licence | Open weights |
About
A high-performance embedding model from the Orange organization, built by extending nomic-ai/nomic-embed-text-v1.5 to 1536 dimensions using a learnable linear projection.
This model is a modified version of Nomic Embed v1.5, which itself is an improvement over the original Nomic Embed model. The key enhancement is that this model has been projected from the native 768-dimensional space to a 1536-dimensional space while preserving semantic similarity.
The Orange/nomic-embed-text-v1.5 model uses a three-stage pipeline:
Transformer (768-dim) → Pooling → Dense Projection (1536-dim)
sqrt(2) * I (scales original dimensions by sqrt(2))The model requires a task instruction prefix in the input text. This tells the model which task you're performing.
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("Orange/orange-nomic-v1.5-1536", trust_remote_code=True)
# Embed documents
documents = ['search_document: The quick brown fox jumps over the lazy dog']
doc_embeddings = model.encode(documents)
# Embed queries
queries = ['search_query: What animal is in the sentence?']
query_embeddings = model.encode(queries)
| Prefix | Purpose |
|---|---|
search_document | Embed texts as documents for indexing (e.g., RAG) |
search_query | Embed texts as queries to find relevant documents |
clustering | Embed texts for grouping into clusters |
classification | Embed texts as features for classification |
from sentence_transformers import SentenceTransformer
import torch.nn.functional as F
model = SentenceTransformer("Orange/orange-nomic-v1.5-1536", trust_remote_code=True)
# Encode sentences
sentences = ['search_query: What is TSNE?', 'search_query: Who is Laurens van der Maaten?']
embeddings = model.encode(sentences, convert_to_tensor=True)
# Optional: Apply layer normalization and truncate for Matryoshka
matryoshka_dim = 768 # Can use any dimension <= 1536
embeddings = F.layer_norm(embeddings, normalized_shape=(embeddings.shape[1],))
embeddings = embeddings[:, :matryoshka_dim]
embeddings = F.normalize(embeddings, p=2, dim=1)
print(embeddings.shape) # torch.Size([2, 768])
import torch
import torch.nn.functional as F
from transformers import AutoTokenizer, AutoModel
def mean_pooling(model_output, attention_mask):
token_embeddings = model_output[0]
input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float()
return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9)
model_name = "Orange/orange-nomic-v1.5-1536"
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
model = AutoModel.from_pretrained(model_name, trust_remote_code=True)
model.eval()
sentences = ['search_query: What is TSNE?', 'search_query: Who is Laurens van der Maaten?']
encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')
with torch.no_grad():
model_output = model(**encoded_input)
embeddings = mean_pooling(model_output, encoded_input['attention_mask'])
embeddings = F.layer_norm(embeddings, normalized_shape=(embeddings.shape[1],))
embeddings = embeddings[:, :1536] # Use full 1536-dim
embeddings = F.normalize(embeddings, p=2, dim=1)
print(embeddings.shape) # torch.Size([2, 1536])
This model supports Matryoshka Representation Learning - you can use smaller embedding dimensions:
| Dimension | Use Case |
|---|---|
| 1536 | Full precision (default) |
| 768 | Half precision, ~same quality |
| 512 | Good quality, 3x compression |
| 256 | High compression, minimal quality loss |
| 128 | Maximum compression |
Example with 512 dimensions:
embeddings = embeddings[:, :512] # Truncate to 512 dimensions
| Task | Dataset | Metric | Score |
|---|---|---|---|
| Retrieval | ArguANA | MAP@100 | 40.081 |
| STS | BIOSSES | Cosine Spearman | 84.25 |
| Classification | Banking77 | Accuracy | 84.25 |
| Classification | IMDB | Accuracy | 85.31 |
| Retrieval | MSMARCO | MAP@100 | 36.88 |
| Retrieval | Quora | MAP@100 | 84.80 |
See the model card on HuggingFace for the complete MTEB leaderboard results.
| Property | nomic-embed-text-v1.5 | Orange/nomic-embed-text-v1.5 |
|---|---|---|
| Dimension | 768 | 1536 |
| Cosine Similarity | Native | Preserved via projection |
| Matryoshka | Supported | Supported |
| Use Case | General embedding | Higher-dim applications |
This 1536-dimensional model is particularly useful for:
From the published model card. Full card on the HuggingFace links in the sidebar.
Benchmarks
As published on the model card — the maker's own numbers, not measured by AxForge.
| Task | Dataset | Metric | Score |
|---|---|---|---|
| Retrieval | MTEB ArguAna | map_at_1 | 24.253 |
| Retrieval | MTEB ArguAna | map_at_10 | 38.962 |
| Retrieval | MTEB ArguAna | map_at_100 | 40.081 |
| STS | MTEB BIOSSES | cos_sim_pearson | 86.740 |
| STS | MTEB BIOSSES | cos_sim_spearman | 84.246 |
| Classification | MTEB Banking77Classification | accuracy | 84.253 |
| Classification | MTEB Banking77Classification | f1 | 84.179 |
| Classification | MTEB ImdbClassification | accuracy | 85.312 |
| Classification | MTEB ImdbClassification | ap | 80.363 |
| Classification | MTEB ImdbClassification | f1 | 85.266 |
| Retrieval | MTEB MSMARCO | map_at_1 | 23.364 |
| Retrieval | MTEB MSMARCO | map_at_10 | 35.712 |
| Retrieval | MTEB MSMARCO | map_at_100 | 36.877 |
| Retrieval | MTEB QuoraRetrieval | map_at_1 | 70.402 |
| Retrieval | MTEB QuoraRetrieval | map_at_10 | 84.181 |
| Retrieval | MTEB QuoraRetrieval | map_at_100 | 84.796 |
Using it via the API
Once AxForge deploys orange-nomic-1536 for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (orange-nomic-1536 below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/embeddings \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"orange-nomic-1536","input":"text to embed"}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.