Views
No views yet
1import torch.nn.functional as F
2
3from torch import Tensor
4from transformers import AutoTokenizer, AutoModel
5
6
7def average_pool(last_hidden_states: Tensor,
8 attention_mask: Tensor) -> Tensor:
9 last_hidden = last_hidden_states.masked_fill(~attention_mask[..., None].bool(), 0.0)
10 return last_hidden.sum(dim=1) / attention_mask.sum(dim=1)[..., None]
11
12
13# Each input text should start with "query: " or "passage: ".
14# For tasks other than retrieval, you can simply use the "query: " prefix.
15input_texts = ['query: how much protein should a female eat',
16 'query: summit define',
17 "passage: 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.",
18 "passage: 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."]
19
20tokenizer = AutoTokenizer.from_pretrained('intfloat/e5-base-unsupervised')
21model = AutoModel.from_pretrained('intfloat/e5-base-unsupervised')
22
23# Tokenize the input texts
24batch_dict = tokenizer(input_texts, max_length=512, padding=True, truncation=True, return_tensors='pt')
25
26outputs = model(**batch_dict)
27embeddings = average_pool(outputs.last_hidden_state, batch_dict['attention_mask'])
28
29# normalize embeddings
30embeddings = F.normalize(embeddings, p=2, dim=1)
31scores = (embeddings[:2] @ embeddings[2:].T) * 100
32print(scores.tolist())1from sentence_transformers import SentenceTransformer
2model = SentenceTransformer('intfloat/e5-base-unsupervised')
3input_texts = [
4 'query: how much protein should a female eat',
5 'query: summit define',
6 "passage: 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.",
7 "passage: 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."
8]
9embeddings = model.encode(input_texts, normalize_embeddings=True)pip install sentence_transformers~=2.2.2transformers and pytorch could cause negligible but non-zero performance differences.@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}
}