Integrate Sentence Transformers, prevent manual tokenizer EOS (#1)
Browse files- Integrate Sentence Transformers, prevent manual tokenizer EOS (0f44be08f7fa85a5414d3151bcecf01e92774384)
- 1_Pooling/config.json +10 -0
- README.md +58 -3
- config_sentence_transformers.json +12 -0
- modeling_drama.py +8 -18
- modules.json +20 -0
- sentence_bert_config.json +4 -0
- special_tokens_map.json +7 -0
- tokenizer.json +2 -2
1_Pooling/config.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"word_embedding_dimension": 1024,
|
| 3 |
+
"pooling_mode_cls_token": false,
|
| 4 |
+
"pooling_mode_mean_tokens": true,
|
| 5 |
+
"pooling_mode_max_tokens": false,
|
| 6 |
+
"pooling_mode_mean_sqrt_len_tokens": false,
|
| 7 |
+
"pooling_mode_weightedmean_tokens": false,
|
| 8 |
+
"pooling_mode_lasttoken": false,
|
| 9 |
+
"include_prompt": true
|
| 10 |
+
}
|
README.md
CHANGED
|
@@ -23,6 +23,8 @@ language:
|
|
| 23 |
- yo
|
| 24 |
pipeline_tag: sentence-similarity
|
| 25 |
library_name: transformers
|
|
|
|
|
|
|
| 26 |
---
|
| 27 |
|
| 28 |
# DRAMA-large (0.3B): Diverse Augmentation from Large Language Models to Smaller Dense Retrievers
|
|
@@ -36,7 +38,10 @@ Please check our [paper](https://arxiv.org/abs/2502.18460) for the detials.
|
|
| 36 |
|
| 37 |
## Usage
|
| 38 |
|
| 39 |
-
Below is an example using `drama-
|
|
|
|
|
|
|
|
|
|
| 40 |
```python
|
| 41 |
import torch
|
| 42 |
from transformers import AutoTokenizer, AutoModel
|
|
@@ -62,10 +67,8 @@ doc_embs = model.encode_documents(tokenizer, documents)
|
|
| 62 |
scores = query_embs @ doc_embs.T
|
| 63 |
print(scores.tolist())
|
| 64 |
# Expected output: [[0.5429, 0.1109], [0.1317, 0.6074]]
|
| 65 |
-
|
| 66 |
```
|
| 67 |
|
| 68 |
-
|
| 69 |
> The `trust_remote_code` will use our customized `drama_modeling.py` with two details:
|
| 70 |
>- We use bi-directional attention instead of uni-directional attention
|
| 71 |
>- We add `"Query: "` as prefix for query text. (No prefix added to document)
|
|
@@ -81,6 +84,58 @@ print(scores.tolist())
|
|
| 81 |
# Expected output: [[0.6239, 0.2294], [0.2604, 0.6942]]
|
| 82 |
```
|
| 83 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
## Evaluation
|
| 85 |
|
| 86 |
The model has been evaluated on multiple retrieval benchmarks, including [BEIR](https://github.com/beir-cellar/beir), [MIRACL](https://github.com/project-miracl/miracl), [MLDR](https://huggingface.co/datasets/Shitao/MLDR), and several multilingual retrieval tasks in [MTEB](https://github.com/embeddings-benchmark/mteb).
|
|
|
|
| 23 |
- yo
|
| 24 |
pipeline_tag: sentence-similarity
|
| 25 |
library_name: transformers
|
| 26 |
+
tags:
|
| 27 |
+
- sentence-transformers
|
| 28 |
---
|
| 29 |
|
| 30 |
# DRAMA-large (0.3B): Diverse Augmentation from Large Language Models to Smaller Dense Retrievers
|
|
|
|
| 38 |
|
| 39 |
## Usage
|
| 40 |
|
| 41 |
+
Below is an example using `drama-base` to encode query and document examples from the MIRACL dataset, using either Transformers or Sentence Transformers:
|
| 42 |
+
|
| 43 |
+
### Transformers
|
| 44 |
+
|
| 45 |
```python
|
| 46 |
import torch
|
| 47 |
from transformers import AutoTokenizer, AutoModel
|
|
|
|
| 67 |
scores = query_embs @ doc_embs.T
|
| 68 |
print(scores.tolist())
|
| 69 |
# Expected output: [[0.5429, 0.1109], [0.1317, 0.6074]]
|
|
|
|
| 70 |
```
|
| 71 |
|
|
|
|
| 72 |
> The `trust_remote_code` will use our customized `drama_modeling.py` with two details:
|
| 73 |
>- We use bi-directional attention instead of uni-directional attention
|
| 74 |
>- We add `"Query: "` as prefix for query text. (No prefix added to document)
|
|
|
|
| 84 |
# Expected output: [[0.6239, 0.2294], [0.2604, 0.6942]]
|
| 85 |
```
|
| 86 |
|
| 87 |
+
### Sentence Transformers
|
| 88 |
+
|
| 89 |
+
```python
|
| 90 |
+
from sentence_transformers import SentenceTransformer
|
| 91 |
+
|
| 92 |
+
queries = [
|
| 93 |
+
'What percentage of the Earth\'s atmosphere is oxygen?',
|
| 94 |
+
'意大利首都是哪里?',
|
| 95 |
+
]
|
| 96 |
+
documents = [
|
| 97 |
+
"The amount of oxygen in the atmosphere has fluctuated over the last 600 million years, reaching a peak of 35% during the Carboniferous period, significantly higher than today's 21%.",
|
| 98 |
+
"羅馬是欧洲国家意大利首都和罗马首都广域市的首府及意大利全国的政治、经济、文化和交通中心,位于意大利半島中部的台伯河下游平原地,建城初期在七座小山丘上,故又名“七丘之城”。按城市范围内的人口计算,罗马是意大利人口最多的城市,也是欧盟人口第三多的城市。",
|
| 99 |
+
]
|
| 100 |
+
|
| 101 |
+
model = SentenceTransformer("facebook/drama-large", trust_remote_code=True)
|
| 102 |
+
|
| 103 |
+
query_embs = model.encode(queries, prompt_name="query")
|
| 104 |
+
doc_embs = model.encode(documents)
|
| 105 |
+
|
| 106 |
+
scores = model.similarity(query_embs, doc_embs)
|
| 107 |
+
print(scores.tolist())
|
| 108 |
+
# Expected output: [[0.5429, 0.1109], [0.1317, 0.6074]]
|
| 109 |
+
```
|
| 110 |
+
|
| 111 |
+
>- The `trust_remote_code` will use our customized `drama_modeling.py` which uses bi-directional attention instead of uni-directional attention.
|
| 112 |
+
>- For queries, you have to use `prompt_name="query"` to select the [prompt called "query"](config_sentence_transformers.json), or `prompt="Query: "` to specify the prompt string manually.
|
| 113 |
+
|
| 114 |
+
DRAMA models are trained using Matryoshka Representation Learning ([MRL](https://github.com/RAIVNLab/MRL)) to support flexible dimensionality. Both queries and documents can be encoded into smaller dimensions, such as 256, using the following:
|
| 115 |
+
|
| 116 |
+
```python
|
| 117 |
+
from sentence_transformers import SentenceTransformer
|
| 118 |
+
|
| 119 |
+
queries = [
|
| 120 |
+
'What percentage of the Earth\'s atmosphere is oxygen?',
|
| 121 |
+
'意大利首都是哪里?',
|
| 122 |
+
]
|
| 123 |
+
documents = [
|
| 124 |
+
"The amount of oxygen in the atmosphere has fluctuated over the last 600 million years, reaching a peak of 35% during the Carboniferous period, significantly higher than today's 21%.",
|
| 125 |
+
"羅馬是欧洲国家意大利首都和罗马首都广域市的首府及意大利全国的政治、经济、文化和交通中心,位于意大利半島中部的台伯河下游平原地,建城初期在七座小山丘上,故又名“七丘之城”。按城市范围内的人口计算,罗马是意大利人口最多的城市,也是欧盟人口第三多的城市。",
|
| 126 |
+
]
|
| 127 |
+
|
| 128 |
+
model = SentenceTransformer("facebook/drama-large", truncate_dim=256, trust_remote_code=True)
|
| 129 |
+
|
| 130 |
+
query_embs = model.encode(queries, prompt_name="query")
|
| 131 |
+
doc_embs = model.encode(documents)
|
| 132 |
+
|
| 133 |
+
scores = model.similarity(query_embs, doc_embs)
|
| 134 |
+
print(scores.tolist())
|
| 135 |
+
# Expected output: [[0.6239, 0.2294], [0.2604, 0.6942]]
|
| 136 |
+
```
|
| 137 |
+
|
| 138 |
+
|
| 139 |
## Evaluation
|
| 140 |
|
| 141 |
The model has been evaluated on multiple retrieval benchmarks, including [BEIR](https://github.com/beir-cellar/beir), [MIRACL](https://github.com/project-miracl/miracl), [MLDR](https://huggingface.co/datasets/Shitao/MLDR), and several multilingual retrieval tasks in [MTEB](https://github.com/embeddings-benchmark/mteb).
|
config_sentence_transformers.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"__version__": {
|
| 3 |
+
"sentence_transformers": "3.4.0",
|
| 4 |
+
"transformers": "4.48.3",
|
| 5 |
+
"pytorch": "2.5.0+cu121"
|
| 6 |
+
},
|
| 7 |
+
"prompts": {
|
| 8 |
+
"query": "Query: "
|
| 9 |
+
},
|
| 10 |
+
"default_prompt_name": null,
|
| 11 |
+
"similarity_fn_name": "cosine"
|
| 12 |
+
}
|
modeling_drama.py
CHANGED
|
@@ -72,27 +72,16 @@ class DramaModel(LlamaModel):
|
|
| 72 |
max_seq_len = self.max_seq_len
|
| 73 |
tokenized = tokenizer(
|
| 74 |
texts,
|
| 75 |
-
padding=
|
| 76 |
truncation=True,
|
| 77 |
-
max_length=max_seq_len
|
| 78 |
-
return_attention_mask=False,
|
| 79 |
-
return_token_type_ids=False,
|
| 80 |
-
add_special_tokens=True
|
| 81 |
-
)
|
| 82 |
-
tokenized['input_ids'] = [
|
| 83 |
-
t + [tokenizer.eos_token_id] for t in tokenized['input_ids']
|
| 84 |
-
]
|
| 85 |
-
tokenized = tokenizer.pad(
|
| 86 |
-
tokenized,
|
| 87 |
-
padding=True,
|
| 88 |
-
return_attention_mask=True,
|
| 89 |
return_tensors='pt',
|
| 90 |
).to(self.device)
|
| 91 |
return tokenized
|
| 92 |
|
| 93 |
-
def
|
| 94 |
"""
|
| 95 |
-
|
| 96 |
|
| 97 |
Args:
|
| 98 |
input_ids (torch.Tensor): Input token IDs.
|
|
@@ -102,7 +91,7 @@ class DramaModel(LlamaModel):
|
|
| 102 |
Returns:
|
| 103 |
torch.Tensor: Normalized output embeddings.
|
| 104 |
"""
|
| 105 |
-
outputs =
|
| 106 |
input_ids, attention_mask, *args, **kwargs
|
| 107 |
)
|
| 108 |
embeddings = self._average_pool(
|
|
@@ -141,7 +130,7 @@ class DramaModel(LlamaModel):
|
|
| 141 |
raise ValueError(f"dim must be in range [1, {self.hidden_size}].")
|
| 142 |
queries = [self.query_prefix + query for query in queries]
|
| 143 |
tokenized_queries = self._tokenize(tokenizer, queries, max_seq_len)
|
| 144 |
-
embeddings = self(**tokenized_queries, dim=dim)
|
| 145 |
return embeddings
|
| 146 |
|
| 147 |
def encode_documents(
|
|
@@ -172,5 +161,6 @@ class DramaModel(LlamaModel):
|
|
| 172 |
if dim is not None and (dim < 1 or dim > self.hidden_size):
|
| 173 |
raise ValueError(f"dim must be in range [1, {self.hidden_size}].")
|
| 174 |
tokenized_documents = self._tokenize(tokenizer, documents, max_seq_len)
|
| 175 |
-
embeddings = self(**tokenized_documents, dim=dim)
|
| 176 |
return embeddings
|
|
|
|
|
|
| 72 |
max_seq_len = self.max_seq_len
|
| 73 |
tokenized = tokenizer(
|
| 74 |
texts,
|
| 75 |
+
padding=True,
|
| 76 |
truncation=True,
|
| 77 |
+
max_length=max_seq_len,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 78 |
return_tensors='pt',
|
| 79 |
).to(self.device)
|
| 80 |
return tokenized
|
| 81 |
|
| 82 |
+
def encode(self, input_ids, attention_mask, dim, *args, **kwargs):
|
| 83 |
"""
|
| 84 |
+
Pass through the model and compute normalized embeddings.
|
| 85 |
|
| 86 |
Args:
|
| 87 |
input_ids (torch.Tensor): Input token IDs.
|
|
|
|
| 91 |
Returns:
|
| 92 |
torch.Tensor: Normalized output embeddings.
|
| 93 |
"""
|
| 94 |
+
outputs = self.forward(
|
| 95 |
input_ids, attention_mask, *args, **kwargs
|
| 96 |
)
|
| 97 |
embeddings = self._average_pool(
|
|
|
|
| 130 |
raise ValueError(f"dim must be in range [1, {self.hidden_size}].")
|
| 131 |
queries = [self.query_prefix + query for query in queries]
|
| 132 |
tokenized_queries = self._tokenize(tokenizer, queries, max_seq_len)
|
| 133 |
+
embeddings = self.encode(**tokenized_queries, dim=dim)
|
| 134 |
return embeddings
|
| 135 |
|
| 136 |
def encode_documents(
|
|
|
|
| 161 |
if dim is not None and (dim < 1 or dim > self.hidden_size):
|
| 162 |
raise ValueError(f"dim must be in range [1, {self.hidden_size}].")
|
| 163 |
tokenized_documents = self._tokenize(tokenizer, documents, max_seq_len)
|
| 164 |
+
embeddings = self.encode(**tokenized_documents, dim=dim)
|
| 165 |
return embeddings
|
| 166 |
+
|
modules.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"idx": 0,
|
| 4 |
+
"name": "0",
|
| 5 |
+
"path": "",
|
| 6 |
+
"type": "sentence_transformers.models.Transformer"
|
| 7 |
+
},
|
| 8 |
+
{
|
| 9 |
+
"idx": 1,
|
| 10 |
+
"name": "1",
|
| 11 |
+
"path": "1_Pooling",
|
| 12 |
+
"type": "sentence_transformers.models.Pooling"
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
"idx": 2,
|
| 16 |
+
"name": "2",
|
| 17 |
+
"path": "2_Normalize",
|
| 18 |
+
"type": "sentence_transformers.models.Normalize"
|
| 19 |
+
}
|
| 20 |
+
]
|
sentence_bert_config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"max_seq_length": 8192,
|
| 3 |
+
"do_lower_case": false
|
| 4 |
+
}
|
special_tokens_map.json
CHANGED
|
@@ -12,5 +12,12 @@
|
|
| 12 |
"normalized": false,
|
| 13 |
"rstrip": false,
|
| 14 |
"single_word": false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
}
|
| 16 |
}
|
|
|
|
| 12 |
"normalized": false,
|
| 13 |
"rstrip": false,
|
| 14 |
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<|end_of_text|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
}
|
| 23 |
}
|
tokenizer.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c18e1797510535655f962df0669fcb7d10b325b5d0eb4b51be36789dcf5fcaf
|
| 3 |
+
size 17210533
|