Model reference · open weights
jina-embeddings-en is an open-weight embedding model from arkohut. 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 | arkohut |
|---|---|
| Type | Embedding models |
| Task | Embeddings |
| Parameters (lead) | 137M |
| Context | 8k tokens |
| Runs with | sentence-transformers |
| Released | 2024-11-19 |
| Popularity | 45k downloads / month |
| Licence | Open weights |
About
The easiest way to starting using jina-embeddings-v2-base-en is to use Jina AI's Embedding API.
jina-embeddings-v2-base-en is an English, monolingual embedding model supporting 8192 sequence length.
It is based on a BERT architecture (JinaBERT) that supports the symmetric bidirectional variant of ALiBi to allow longer sequence length.
The backbone jina-bert-v2-base-en is pretrained on the C4 dataset.
The model is further trained on Jina AI's collection of more than 400 millions of sentence pairs and hard negatives.
These pairs were obtained from various domains and were carefully selected through a thorough cleaning process.
The embedding model was trained using 512 sequence length, but extrapolates to 8k sequence length (or even longer) thanks to ALiBi. This makes our model useful for a range of use cases, especially when processing long documents is needed, including long document retrieval, semantic textual similarity, text reranking, recommendation, RAG and LLM-based generative search, etc.
With a standard size of 137 million parameters, the model enables fast inference while delivering better performance than our small model. It is recommended to use a single GPU for inference. Additionally, we provide the following embedding models:
jina-embeddings-v2-small-en: 33 million parameters.jina-embeddings-v2-base-en: 137 million parameters (you are here).jina-embeddings-v2-base-zh: Chinese-English Bilingual embeddings.jina-embeddings-v2-base-de: German-English Bilingual embeddings.jina-embeddings-v2-base-es: Spanish-English Bilingual embeddings.Jina Embeddings V2 technical report
Please apply mean pooling when integrating the model.
mean poooling takes all token embeddings from model output and averaging them at sentence/paragraph level.
It has been proved to be the most effective way to produce high-quality sentence embeddings.
We offer an encode function to deal with this.
However, if you would like to do it without using the default encode function:
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 = ['How is the weather today?', 'What is the current weather like today?']
tokenizer = AutoTokenizer.from_pretrained('jinaai/jina-embeddings-v2-small-en')
model = AutoModel.from_pretrained('jinaai/jina-embeddings-v2-small-en', trust_remote_code=True)
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)
You can use Jina Embedding models directly from transformers package.
!pip install transformers
from transformers import AutoModel
from numpy.linalg import norm
cos_sim = lambda a,b: (a @ b.T) / (norm(a)*norm(b))
model = AutoModel.from_pretrained('jinaai/jina-embeddings-v2-base-en', trust_remote_code=True) # trust_remote_code is needed to use the encode method
embeddings = model.encode(['How is the weather today?', 'What is the current weather like today?'])
print(cos_sim(embeddings[0], embeddings[1]))
If you only want to handle shorter sequence, such as 2k, pass the max_length parameter to the encode function:
embeddings = model.encode(
['Very long ... document'],
max_length=2048
)
Using the its latest release (v2.3.0) sentence-transformers also supports Jina embeddings (Please make sure that you are logged into huggingface as well):
!pip install -U sentence-transformers
from sentence_transformers import SentenceTransformer
from sentence_transformers.util import cos_sim
model = SentenceTransformer(
"jinaai/jina-embeddings-v2-base-en", # switch to en/zh for English or Chinese
trust_remote_code=True
)
# control your input sequence length up to 8192
model.max_seq_length = 1024
embeddings = model.encode([
'How is the weather today?',
'What is the current weather like today?'
])
print(cos_sim(embeddings[0], embeddings[1]))
According to the latest blog post from LLamaIndex,
In summary, to achieve the peak performance in both hit rate and MRR, the combination of OpenAI or JinaAI-Base embeddings with the CohereRerank/bge-reranker-large reranker stands out.
Loading of Model Code failed
If you forgot to pass the `trust_rem
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 | 74.731 |
| Classification | MTEB AmazonCounterfactualClassification (en) | ap | 37.765 |
| Classification | MTEB AmazonCounterfactualClassification (en) | f1 | 68.794 |
| Classification | MTEB AmazonPolarityClassification | accuracy | 88.544 |
| Classification | MTEB AmazonPolarityClassification | ap | 84.613 |
| Classification | MTEB AmazonPolarityClassification | f1 | 88.519 |
| Classification | MTEB AmazonReviewsClassification (en) | accuracy | 45.264 |
| Classification | MTEB AmazonReviewsClassification (en) | f1 | 43.779 |
| Retrieval | MTEB ArguAna | map_at_1 | 21.693 |
| Retrieval | MTEB ArguAna | map_at_10 | 35.487 |
| Retrieval | MTEB ArguAna | map_at_100 | 36.862 |
| Retrieval | MTEB ArguAna | map_at_1000 | 36.872 |
| Retrieval | MTEB ArguAna | map_at_3 | 30.050 |
| Retrieval | MTEB ArguAna | map_at_5 | 32.966 |
| Retrieval | MTEB ArguAna | mrr_at_1 | 21.977 |
| Retrieval | MTEB ArguAna | mrr_at_10 | 35.566 |
| Retrieval | MTEB ArguAna | mrr_at_100 | 36.948 |
| Retrieval | MTEB ArguAna | mrr_at_1000 | 36.958 |
| Retrieval | MTEB ArguAna | mrr_at_3 | 30.121 |
| Retrieval | MTEB ArguAna | mrr_at_5 | 33.051 |
| Retrieval | MTEB ArguAna | ndcg_at_1 | 21.693 |
| Retrieval | MTEB ArguAna | ndcg_at_10 | 44.181 |
| Retrieval | MTEB ArguAna | ndcg_at_100 | 49.982 |
| Retrieval | MTEB ArguAna | ndcg_at_1000 | 50.233 |
Using it via the API
Once AxForge deploys arkohut-jina-embeddings-en for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (arkohut-jina-embeddings-en 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":"arkohut-jina-embeddings-en","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.