intfloat / e5-mistral-7b-instruct

huggingface.co
Total runs: 154.8K
24-hour runs: 0
7-day runs: 13.2K
30-day runs: -30.5K
Model's Last Updated: April 23 2024
feature-extraction

Introduction of e5-mistral-7b-instruct

Model Details of e5-mistral-7b-instruct

E5-mistral-7b-instruct

Improving Text Embeddings with Large Language Models . Liang Wang, Nan Yang, Xiaolong Huang, Linjun Yang, Rangan Majumder, Furu Wei, arXiv 2024

This model has 32 layers and the embedding size is 4096.

Usage

Below is an example to encode queries and passages from the MS-MARCO passage ranking dataset.

Sentence Transformers
from sentence_transformers import SentenceTransformer

model = SentenceTransformer("intfloat/e5-mistral-7b-instruct")
# In case you want to reduce the maximum sequence length:
model.max_seq_length = 4096

queries = [
    "how much protein should a female eat",
    "summit define",
]
documents = [
    "As a general guideline, the CDC's average requirement of protein for women ages 19 to 70 is 46 grams per day. But, as you can see from this chart, you'll need to increase that if you're expecting or training for a marathon. Check out the chart below to see how much protein you should be eating each day.",
    "Definition of summit for English Language Learners. : 1  the highest point of a mountain : the top of a mountain. : 2  the highest level. : 3  a meeting or series of meetings between the leaders of two or more governments."
]

query_embeddings = model.encode(queries, prompt_name="web_search_query")
document_embeddings = model.encode(documents)

scores = (query_embeddings @ document_embeddings.T) * 100
print(scores.tolist())

Have a look at config_sentence_transformers.json for the prompts that are pre-configured, such as web_search_query , sts_query , and summarization_query . Additionally, check out unilm/e5/utils.py for prompts we used for evaluation. You can use these via e.g. model.encode(queries, prompt="Instruct: Given a claim, find documents that refute the claim\nQuery: ") .

Transformers
import torch
import torch.nn.functional as F

from torch import Tensor
from transformers import AutoTokenizer, AutoModel


def last_token_pool(last_hidden_states: Tensor,
                 attention_mask: Tensor) -> Tensor:
    left_padding = (attention_mask[:, -1].sum() == attention_mask.shape[0])
    if left_padding:
        return last_hidden_states[:, -1]
    else:
        sequence_lengths = attention_mask.sum(dim=1) - 1
        batch_size = last_hidden_states.shape[0]
        return last_hidden_states[torch.arange(batch_size, device=last_hidden_states.device), sequence_lengths]


def get_detailed_instruct(task_description: str, query: str) -> str:
    return f'Instruct: {task_description}\nQuery: {query}'


# Each query must come with a one-sentence instruction that describes the task
task = 'Given a web search query, retrieve relevant passages that answer the query'
queries = [
    get_detailed_instruct(task, 'how much protein should a female eat'),
    get_detailed_instruct(task, 'summit define')
]
# No need to add instruction for retrieval documents
documents = [
    "As a general guideline, the CDC's average requirement of protein for women ages 19 to 70 is 46 grams per day. But, as you can see from this chart, you'll need to increase that if you're expecting or training for a marathon. Check out the chart below to see how much protein you should be eating each day.",
    "Definition of summit for English Language Learners. : 1  the highest point of a mountain : the top of a mountain. : 2  the highest level. : 3  a meeting or series of meetings between the leaders of two or more governments."
]
input_texts = queries + documents

tokenizer = AutoTokenizer.from_pretrained('intfloat/e5-mistral-7b-instruct')
model = AutoModel.from_pretrained('intfloat/e5-mistral-7b-instruct')

max_length = 4096
# Tokenize the input texts
batch_dict = tokenizer(input_texts, max_length=max_length, padding=True, truncation=True, return_tensors='pt')

outputs = model(**batch_dict)
embeddings = last_token_pool(outputs.last_hidden_state, batch_dict['attention_mask'])

# normalize embeddings
embeddings = F.normalize(embeddings, p=2, dim=1)
scores = (embeddings[:2] @ embeddings[2:].T) * 100
print(scores.tolist())
Supported Languages

This model is initialized from Mistral-7B-v0.1 and fine-tuned on a mixture of multilingual datasets. As a result, it has some multilingual capability. However, since Mistral-7B-v0.1 is mainly trained on English data, we recommend using this model for English only. For multilingual use cases, please refer to multilingual-e5-large .

MTEB Benchmark Evaluation

Check out unilm/e5 to reproduce evaluation results on the BEIR and MTEB benchmark .

FAQ

1. Do I need to add instructions to the query?

Yes, this is how the model is trained, otherwise you will see a performance degradation. The task definition should be a one-sentence instruction that describes the task. This is a way to customize text embeddings for different scenarios through natural language instructions.

Please check out unilm/e5/utils.py for instructions we used for evaluation.

On the other hand, there is no need to add instructions to the document side.

2. Why are my reproduced results slightly different from reported in the model card?

Different versions of transformers and pytorch could cause negligible but non-zero performance differences.

3. Where are the LoRA-only weights?

You can find the LoRA-only weights at https://huggingface.co/intfloat/e5-mistral-7b-instruct/tree/main/lora .

Citation

If you find our paper or models helpful, please consider cite as follows:

@article{wang2023improving,
  title={Improving Text Embeddings with Large Language Models},
  author={Wang, Liang and Yang, Nan and Huang, Xiaolong and Yang, Linjun and Majumder, Rangan and Wei, Furu},
  journal={arXiv preprint arXiv:2401.00368},
  year={2023}
}

@article{wang2022text,
  title={Text Embeddings by Weakly-Supervised Contrastive Pre-training},
  author={Wang, Liang and Yang, Nan and Huang, Xiaolong and Jiao, Binxing and Yang, Linjun and Jiang, Daxin and Majumder, Rangan and Wei, Furu},
  journal={arXiv preprint arXiv:2212.03533},
  year={2022}
}
Limitations

Using this model for inputs longer than 4096 tokens is not recommended.

This model's multilingual capability is still inferior to multilingual-e5-large for some cases.

Runs of intfloat e5-mistral-7b-instruct on huggingface.co

154.8K
Total runs
0
24-hour runs
5.0K
3-day runs
13.2K
7-day runs
-30.5K
30-day runs

More Information About e5-mistral-7b-instruct huggingface.co Model

More e5-mistral-7b-instruct license Visit here:

https://choosealicense.com/licenses/mit

e5-mistral-7b-instruct huggingface.co

e5-mistral-7b-instruct huggingface.co is an AI model on huggingface.co that provides e5-mistral-7b-instruct's model effect (), which can be used instantly with this intfloat e5-mistral-7b-instruct model. huggingface.co supports a free trial of the e5-mistral-7b-instruct model, and also provides paid use of the e5-mistral-7b-instruct. Support call e5-mistral-7b-instruct model through api, including Node.js, Python, http.

e5-mistral-7b-instruct huggingface.co Url

https://huggingface.co/intfloat/e5-mistral-7b-instruct

intfloat e5-mistral-7b-instruct online free

e5-mistral-7b-instruct huggingface.co is an online trial and call api platform, which integrates e5-mistral-7b-instruct's modeling effects, including api services, and provides a free online trial of e5-mistral-7b-instruct, you can try e5-mistral-7b-instruct online for free by clicking the link below.

intfloat e5-mistral-7b-instruct online free url in huggingface.co:

https://huggingface.co/intfloat/e5-mistral-7b-instruct

e5-mistral-7b-instruct install

e5-mistral-7b-instruct is an open source model from GitHub that offers a free installation service, and any user can find e5-mistral-7b-instruct on GitHub to install. At the same time, huggingface.co provides the effect of e5-mistral-7b-instruct install, users can directly use e5-mistral-7b-instruct installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

e5-mistral-7b-instruct install url in huggingface.co:

https://huggingface.co/intfloat/e5-mistral-7b-instruct

Url of e5-mistral-7b-instruct

e5-mistral-7b-instruct huggingface.co Url

Provider of e5-mistral-7b-instruct huggingface.co

intfloat
ORGANIZATIONS

Other API from intfloat

huggingface.co

Total runs: 899.2K
Run Growth: -90.5K
Growth Rate: -10.06%
Updated: August 07 2023
huggingface.co

Total runs: 383.3K
Run Growth: -7.6K
Growth Rate: -1.98%
Updated: September 27 2023
huggingface.co

Total runs: 312.1K
Run Growth: 231.0K
Growth Rate: 74.00%
Updated: August 07 2023
huggingface.co

Total runs: 101.8K
Run Growth: -12.4K
Growth Rate: -12.19%
Updated: August 16 2023
huggingface.co

Total runs: 59.6K
Run Growth: 48.9K
Growth Rate: 82.12%
Updated: August 07 2023
huggingface.co

Total runs: 27.2K
Run Growth: 12.1K
Growth Rate: 44.57%
Updated: August 07 2023