This model has 12 layers and the embedding size is 768.
Usage
Below is an example to encode queries and passages from the MS-MARCO passage ranking dataset.
python
1import torch
2import torch.nn.functional as F
34from torch import Tensor
5from transformers import AutoTokenizer, AutoModel
678defaverage_pool(last_hidden_states: Tensor,9 attention_mask: Tensor)-> Tensor:10 last_hidden = last_hidden_states.masked_fill(~attention_mask[...,None].bool(),0.0)11return last_hidden.sum(dim=1)/ attention_mask.sum(dim=1)[...,None]1213defget_position_ids(input_ids: Tensor, max_original_positions:int=512, encode_max_length:int=4096)-> Tensor:1415 position_ids =list(range(input_ids.size(1)))16 factor =max(encode_max_length // max_original_positions,1)17if input_ids.size(1)<= max_original_positions:18 position_ids =[(pid * factor)for pid in position_ids]1920 position_ids = torch.tensor(position_ids, dtype=torch.long)21 position_ids = position_ids.unsqueeze(0).expand_as(input_ids)2223return position_ids
2425# Each input text should start with "query: " or "passage: ".26# For tasks other than retrieval, you can simply use the "query: " prefix.27input_texts =['query: how much protein should a female eat',28'query: summit define',29"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.",30"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."]3132tokenizer = AutoTokenizer.from_pretrained('dwzhu/e5-base-4k')33model = AutoModel.from_pretrained('dwzhu/e5-base-4k')3435# Tokenize the input texts36batch_dict = tokenizer(input_texts, max_length=4096, padding=True, truncation=True, return_tensors='pt')37batch_dict['position_ids']= get_position_ids(batch_dict['input_ids'], max_original_positions=512, encode_max_length=4096)3839outputs = model(**batch_dict)40embeddings = average_pool(outputs.last_hidden_state, batch_dict['attention_mask'])4142# normalize embeddings43embeddings = F.normalize(embeddings, p=2, dim=1)44scores =(embeddings[:2] @ embeddings[2:].T)*10045print(scores.tolist())
Training Details
Please refer to our paper at https://arxiv.org/abs/2404.12096.pdf. Note that E5-Base-4k simply expands the position embedding matrix to allow for 4,096 position ids. The embedding vectors for the original pids {0,1,2,...,511} is mapped to represent {0,8,16,...,4088}. Embedding vectors for other pids are trained. So for inputs not exceeding 512 tokens, please multiply the position ids by 8 to maintain the original behavior, as shown in the code above.
If you find our paper or models helpful, please consider cite as follows:
@article{zhu2024longembed,
title={LongEmbed: Extending Embedding Models for Long Context Retrieval},
author={Zhu, Dawei and Wang, Liang and Yang, Nan and Song, Yifan and Wu, Wenhao and Wei, Furu and Li, Sujian},
journal={arXiv preprint arXiv:2404.12096},
year={2024}
}