Model reference · open weights
No-small-Embedding is an open-weight embedding model from avsolatorio. 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 | avsolatorio |
|---|---|
| Type | Embedding models |
| Task | Embeddings |
| Parameters (lead) | 33M |
| Context | 512 tokens |
| Runs with | sentence-transformers |
| Released | 2024-05-01 |
| Popularity | 1k downloads / month |
| Licence | Open weights |
About
NoInstruct Embedding: Asymmetric Pooling is All You Need
This model has improved retrieval performance compared to the avsolatorio/GIST-small-Embedding-v0 model.
One of the things that the GIST family of models fell short on is the performance on retrieval tasks. We propose a method that produces improved retrieval performance while maintaining independence on crafting arbitrary instructions, a trending paradigm in embedding models for retrieval tasks, when encoding a query.
Technical details of the model will be published shortly.
from typing import Union
import torch
import torch.nn.functional as F
from transformers import AutoModel, AutoTokenizer
model = AutoModel.from_pretrained("avsolatorio/NoInstruct-small-Embedding-v0")
tokenizer = AutoTokenizer.from_pretrained("avsolatorio/NoInstruct-small-Embedding-v0")
def get_embedding(text: Union[str, list[str]], mode: str = "sentence"):
model.eval()
assert mode in ("query", "sentence"), f"mode={mode} was passed but only `query` and `sentence` are the supported modes."
if isinstance(text, str):
text = [text]
inp = tokenizer(text, return_tensors="pt", padding=True, truncation=True)
with torch.no_grad():
output = model(**inp)
# The model is optimized to use the mean pooling for queries,
# while the sentence / document embedding uses the [CLS] representation.
if mode == "query":
vectors = output.last_hidden_state * inp["attention_mask"].unsqueeze(2)
vectors = vectors.sum(dim=1) / inp["attention_mask"].sum(dim=-1).view(-1, 1)
else:
vectors = output.last_hidden_state[:, 0, :]
return vectors
texts = [
"Illustration of the REaLTabFormer model. The left block shows the non-relational tabular data model using GPT-2 with a causal LM head. In contrast, the right block shows how a relational dataset's child table is modeled using a sequence-to-sequence (Seq2Seq) model. The Seq2Seq model uses the observations in the parent table to condition the generation of the observations in the child table. The trained GPT-2 model on the parent table, with weights frozen, is also used as the encoder in the Seq2Seq model.",
"Predicting human mobility holds significant practical value, with applications ranging from enhancing disaster risk planning to simulating epidemic spread. In this paper, we present the GeoFormer, a decoder-only transformer model adapted from the GPT architecture to forecast human mobility.",
"As the economies of Southeast Asia continue adopting digital technologies, policy makers increasingly ask how to prepare the workforce for emerging labor demands. However, little is known about the skills that workers need to adapt to these changes"
]
# Compute embeddings
embeddings = get_embedding(texts, mode="sentence")
# Compute cosine-similarity for each pair of sentences
scores = F.cosine_similarity(embeddings.unsqueeze(1), embeddings.unsqueeze(0), dim=-1)
print(scores.cpu().numpy())
# Test the retrieval performance.
query = get_embedding("Which sentence talks about concept on jobs?", mode="query")
scores = F.cosine_similarity(query, embeddings, dim=-1)
print(scores.cpu().numpy())
Support for the Sentence Transformers library will follow soon.
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 | 75.761 |
| Classification | MTEB AmazonCounterfactualClassification (en) | ap | 39.036 |
| Classification | MTEB AmazonCounterfactualClassification (en) | f1 | 69.859 |
| Classification | MTEB AmazonPolarityClassification | accuracy | 93.299 |
| Classification | MTEB AmazonPolarityClassification | ap | 90.035 |
| Classification | MTEB AmazonPolarityClassification | f1 | 93.286 |
| Classification | MTEB AmazonReviewsClassification (en) | accuracy | 49.988 |
| Classification | MTEB AmazonReviewsClassification (en) | f1 | 49.462 |
| Retrieval | MTEB ArguAna | map_at_1 | 31.935 |
| Retrieval | MTEB ArguAna | map_at_10 | 48.791 |
| Retrieval | MTEB ArguAna | map_at_100 | 49.619 |
| Retrieval | MTEB ArguAna | map_at_1000 | 49.623 |
| Retrieval | MTEB ArguAna | map_at_3 | 44.334 |
| Retrieval | MTEB ArguAna | map_at_5 | 46.908 |
| Retrieval | MTEB ArguAna | mrr_at_1 | 32.930 |
| Retrieval | MTEB ArguAna | mrr_at_10 | 49.158 |
| Retrieval | MTEB ArguAna | mrr_at_100 | 50.006 |
| Retrieval | MTEB ArguAna | mrr_at_1000 | 50.010 |
| Retrieval | MTEB ArguAna | mrr_at_3 | 44.618 |
| Retrieval | MTEB ArguAna | mrr_at_5 | 47.325 |
| Retrieval | MTEB ArguAna | ndcg_at_1 | 31.935 |
| Retrieval | MTEB ArguAna | ndcg_at_10 | 57.593 |
| Retrieval | MTEB ArguAna | ndcg_at_100 | 60.841 |
| Retrieval | MTEB ArguAna | ndcg_at_1000 | 60.924 |
Using it via the API
Once AxForge deploys no-small-embedding for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (no-small-embedding 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":"no-small-embedding","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.