Model reference · open weights
nomic-embed-text is an open-weight embedding model from corto-ai. 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 | corto-ai |
|---|---|
| Type | Embedding models |
| Task | Embeddings |
| Parameters (lead) | 137M |
| Context | 8k tokens |
| Runs with | sentence-transformers |
| Released | 2024-05-06 |
| Popularity | 3k downloads / month |
| Licence | Open weights |
About
nomic-embed-text-v1 is 8192 context length text encoder that surpasses OpenAI text-embedding-ada-002 and text-embedding-3-small performance on short and long context tasks.
| Name | SeqLen | MTEB | LoCo | Jina Long Context | Open Weights | Open Training Code | Open Data |
|---|---|---|---|---|---|---|---|
| nomic-embed-text-v1 | 8192 | 62.39 | 85.53 | 54.16 | ✅ | ✅ | ✅ |
| jina-embeddings-v2-base-en | 8192 | 60.39 | 85.45 | 51.90 | ✅ | ❌ | ❌ |
| text-embedding-3-small | 8191 | 62.26 | 82.40 | 58.20 | ❌ | ❌ | ❌ |
| text-embedding-ada-002 | 8191 | 60.99 | 52.7 | 55.25 | ❌ | ❌ | ❌ |
The easiest way to get started with Nomic Embed is through the Nomic Embedding API.
Generating embeddings with the nomic Python client is as easy as
from nomic import embed
output = embed.text(
texts=['Nomic Embedding API', '#keepAIOpen'],
model='nomic-embed-text-v1',
task_type='search_document'
)
print(output)
For more information, see the API reference
Click the Nomic Atlas map below to visualize a 5M sample of our contrastive pretraining data!
We train our embedder using a multi-stage training pipeline. Starting from a long-context BERT model, the first unsupervised contrastive stage trains on a dataset generated from weakly related text pairs, such as question-answer pairs from forums like StackExchange and Quora, title-body pairs from Amazon reviews, and summarizations from news articles.
In the second finetuning stage, higher quality labeled datasets such as search queries and answers from web searches are leveraged. Data curation and hard-example mining is crucial in this stage.
For more details, see the Nomic Embed Technical Report and corresponding blog post.
Training data to train the models is released in its entirety. For more details, see the contrastors repository
Note nomic-embed-text requires prefixes! We support the prefixes [search_query, search_document, classification, clustering].
For retrieval applications, you should prepend search_document for all your documents and search_query for your queries.
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("nomic-ai/nomic-embed-text-v1", trust_remote_code=True)
sentences = ['search_query: What is TSNE?', 'search_query: Who is Laurens van der Maaten?']
embeddings = model.encode(sentences)
print(embeddings)
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)
sentences = ['search_query: What is TSNE?', 'search_query: Who is Laurens van der Maaten?']
tokenizer = AutoTokenizer.from_pretrained('bert-base-uncased')
model = AutoModel.from_pretrained('nomic-ai/nomic-embed-text-v1', trust_remote_code=True)
model.eval()
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.normalize(embeddings, p=2, dim=1)
print(embeddings)
The model natively supports scaling of the sequence length past 2048 tokens. To do so,
- tokenizer = AutoTokenizer.from_pretrained('bert-base-uncased')
+ tokenizer = AutoTokenizer.from_pretrained('bert-base-uncased', model_max_length=8192)
- model = AutoModel.from_pretrained('nomic-ai/nomic-embed-text-v1', trust_remote_code=True)
+ model = AutoModel.from_pretrained('nomic-ai/nomic-embed-text-v1', trust_remote_code=True, rotary_scaling_factor=2)
import { pipeline } from '@xenova/transformers';
// Create a feature extraction pipeline
const extractor = await pipeline('feature-extraction', 'nomic-ai/nomic-embed-text-v1', {
quantized: false, // Comment out this line to use the quantized version
});
// Compute sentence embeddings
const texts = ['search_query: What is TSNE?', 'search_query: Who is Laurens van der Maaten?'];
const embeddings = await extractor(texts, { pooling: 'mean', normalize: true });
console.log(embeddings);
If you find the model, dataset, or training code useful, please cite our work
@misc{nussbaum2024nomic,
title={Nomic Embed: Training a Reproducible Long Context Text Embedder},
author={Zach Nussbaum and John X. Morris and Brandon Duderstadt and Andriy Mulyar},
year={2024},
eprint={2402.01613},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
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 |
|---|---|---|---|
| Classification | MTEB AmazonCounterfactualClassification (en) | accuracy | 76.851 |
| Classification | MTEB AmazonCounterfactualClassification (en) | ap | 40.592 |
| Classification | MTEB AmazonCounterfactualClassification (en) | f1 | 71.016 |
| Classification | MTEB AmazonPolarityClassification | accuracy | 91.519 |
| Classification | MTEB AmazonPolarityClassification | ap | 88.503 |
| Classification | MTEB AmazonPolarityClassification | f1 | 91.503 |
| Classification | MTEB AmazonReviewsClassification (en) | accuracy | 47.364 |
| Classification | MTEB AmazonReviewsClassification (en) | f1 | 46.727 |
| Retrieval | MTEB ArguAna | map_at_1 | 25.178 |
| Retrieval | MTEB ArguAna | map_at_10 | 40.244 |
| Retrieval | MTEB ArguAna | map_at_100 | 41.322 |
| Retrieval | MTEB ArguAna | map_at_1000 | 41.331 |
| Retrieval | MTEB ArguAna | map_at_3 | 35.017 |
| Retrieval | MTEB ArguAna | map_at_5 | 37.990 |
| Retrieval | MTEB ArguAna | mrr_at_1 | 25.605 |
| Retrieval | MTEB ArguAna | mrr_at_10 | 40.422 |
| Retrieval | MTEB ArguAna | mrr_at_100 | 41.507 |
| Retrieval | MTEB ArguAna | mrr_at_1000 | 41.516 |
| Retrieval | MTEB ArguAna | mrr_at_3 | 35.230 |
| Retrieval | MTEB ArguAna | mrr_at_5 | 38.150 |
| Retrieval | MTEB ArguAna | ndcg_at_1 | 25.178 |
| Retrieval | MTEB ArguAna | ndcg_at_10 | 49.258 |
| Retrieval | MTEB ArguAna | ndcg_at_100 | 53.776 |
| Retrieval | MTEB ArguAna | ndcg_at_1000 | 53.995 |
Using it via the API
Once AxForge deploys corto-ai-nomic-embed-text for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (corto-ai-nomic-embed-text 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":"corto-ai-nomic-embed-text","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.