andreaschari
commited on
Upload folder using huggingface_hub
Browse files- 1_Pooling/config.json +3 -10
- README.md +3 -143
- config.json +3 -28
- config_sentence_transformers.json +3 -10
- model copy.safetensors +3 -0
- modules.json +3 -20
- sentence_bert_config.json +3 -4
- sentencepiece.bpe copy.model +3 -0
- special_tokens_map.json +3 -51
- tokenizer_config.json +3 -55
1_Pooling/config.json
CHANGED
@@ -1,10 +1,3 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
"pooling_mode_mean_tokens": false,
|
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 |
-
}
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:13e69897522ee8255104483ed9f219465d1be3936654a54a318758738052789e
|
3 |
+
size 297
|
|
|
|
|
|
|
|
|
|
|
|
|
|
README.md
CHANGED
@@ -1,143 +1,3 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
4 |
-
tags:
|
5 |
-
- sentence-transformers
|
6 |
-
- sentence-similarity
|
7 |
-
- feature-extraction
|
8 |
-
widget: []
|
9 |
-
license: mit
|
10 |
-
base_model:
|
11 |
-
- BAAI/bge-m3
|
12 |
-
---
|
13 |
-
|
14 |
-
# BGE-M3 Lingustic Transfer (Catalan-French)
|
15 |
-
|
16 |
-
This is a [bge-m3](https://huggingface.co/BAAI/bge-m3) model post-trained on translated French to Catalan queries and French documents from MMARCO/v2
|
17 |
-
|
18 |
-
## Model Details
|
19 |
-
|
20 |
-
### Model Description
|
21 |
-
- **Model Type:** Sentence Transformer
|
22 |
-
<!-- - **Base model:** [Unknown](https://huggingface.co/unknown) -->
|
23 |
-
- **Maximum Sequence Length:** 8192 tokens
|
24 |
-
- **Output Dimensionality:** 1024 tokens
|
25 |
-
- **Similarity Function:** Cosine Similarity
|
26 |
-
- **Training Dataset:** MMARCO/v2
|
27 |
-
<!-- - **Language:** Unknown -->
|
28 |
-
<!-- - **License:** Unknown -->
|
29 |
-
|
30 |
-
### Model Sources
|
31 |
-
|
32 |
-
- **Hugging Face:** [Original BGE-M3 on Hugging Face](https://huggingface.co/BAAI/bge-m3)
|
33 |
-
|
34 |
-
### Full Model Architecture
|
35 |
-
|
36 |
-
```
|
37 |
-
SentenceTransformer(
|
38 |
-
(0): Transformer({'max_seq_length': 8192, 'do_lower_case': False}) with Transformer model: XLMRobertaModel
|
39 |
-
(1): Pooling({'word_embedding_dimension': 1024, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
|
40 |
-
(2): Normalize()
|
41 |
-
)
|
42 |
-
```
|
43 |
-
|
44 |
-
## Usage
|
45 |
-
|
46 |
-
### Direct Usage (Sentence Transformers)
|
47 |
-
|
48 |
-
First install the Sentence Transformers library:
|
49 |
-
|
50 |
-
```bash
|
51 |
-
pip install -U sentence-transformers
|
52 |
-
```
|
53 |
-
|
54 |
-
Then you can load this model and run inference.
|
55 |
-
```python
|
56 |
-
from sentence_transformers import SentenceTransformer
|
57 |
-
|
58 |
-
# Download from the 🤗 Hub
|
59 |
-
model = SentenceTransformer("sentence_transformers_model_id")
|
60 |
-
# Run inference
|
61 |
-
sentences = [
|
62 |
-
'The weather is lovely today.',
|
63 |
-
"It's so sunny outside!",
|
64 |
-
'He drove to the stadium.',
|
65 |
-
]
|
66 |
-
embeddings = model.encode(sentences)
|
67 |
-
print(embeddings.shape)
|
68 |
-
# [3, 1024]
|
69 |
-
|
70 |
-
# Get the similarity scores for the embeddings
|
71 |
-
similarities = model.similarity(embeddings, embeddings)
|
72 |
-
print(similarities.shape)
|
73 |
-
# [3, 3]
|
74 |
-
```
|
75 |
-
|
76 |
-
<!--
|
77 |
-
### Direct Usage (Transformers)
|
78 |
-
|
79 |
-
<details><summary>Click to see the direct usage in Transformers</summary>
|
80 |
-
|
81 |
-
</details>
|
82 |
-
-->
|
83 |
-
|
84 |
-
<!--
|
85 |
-
### Downstream Usage (Sentence Transformers)
|
86 |
-
|
87 |
-
You can finetune this model on your own dataset.
|
88 |
-
|
89 |
-
<details><summary>Click to expand</summary>
|
90 |
-
|
91 |
-
</details>
|
92 |
-
-->
|
93 |
-
|
94 |
-
<!--
|
95 |
-
### Out-of-Scope Use
|
96 |
-
|
97 |
-
*List how the model may foreseeably be misused and address what users ought not to do with the model.*
|
98 |
-
-->
|
99 |
-
|
100 |
-
<!--
|
101 |
-
## Bias, Risks and Limitations
|
102 |
-
|
103 |
-
*What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
|
104 |
-
-->
|
105 |
-
|
106 |
-
<!--
|
107 |
-
### Recommendations
|
108 |
-
|
109 |
-
*What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
|
110 |
-
-->
|
111 |
-
|
112 |
-
## Training Details
|
113 |
-
|
114 |
-
### Framework Versions
|
115 |
-
- Python: 3.10.14
|
116 |
-
- Sentence Transformers: 3.0.1
|
117 |
-
- Transformers: 4.41.2
|
118 |
-
- PyTorch: 2.4.0.post301
|
119 |
-
- Accelerate: 0.32.1
|
120 |
-
- Datasets: 2.19.1
|
121 |
-
- Tokenizers: 0.19.1
|
122 |
-
|
123 |
-
## Citation
|
124 |
-
|
125 |
-
### BibTeX
|
126 |
-
|
127 |
-
<!--
|
128 |
-
## Glossary
|
129 |
-
|
130 |
-
*Clearly define terms in order to be accessible across audiences.*
|
131 |
-
-->
|
132 |
-
|
133 |
-
<!--
|
134 |
-
## Model Card Authors
|
135 |
-
|
136 |
-
*Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
|
137 |
-
-->
|
138 |
-
|
139 |
-
<!--
|
140 |
-
## Model Card Contact
|
141 |
-
|
142 |
-
*Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
|
143 |
-
-->
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
config.json
CHANGED
@@ -1,28 +1,3 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
"XLMRobertaModel"
|
5 |
-
],
|
6 |
-
"attention_probs_dropout_prob": 0.1,
|
7 |
-
"bos_token_id": 0,
|
8 |
-
"classifier_dropout": null,
|
9 |
-
"eos_token_id": 2,
|
10 |
-
"hidden_act": "gelu",
|
11 |
-
"hidden_dropout_prob": 0.1,
|
12 |
-
"hidden_size": 1024,
|
13 |
-
"initializer_range": 0.02,
|
14 |
-
"intermediate_size": 4096,
|
15 |
-
"layer_norm_eps": 1e-05,
|
16 |
-
"max_position_embeddings": 8194,
|
17 |
-
"model_type": "xlm-roberta",
|
18 |
-
"num_attention_heads": 16,
|
19 |
-
"num_hidden_layers": 24,
|
20 |
-
"output_past": true,
|
21 |
-
"pad_token_id": 1,
|
22 |
-
"position_embedding_type": "absolute",
|
23 |
-
"torch_dtype": "float32",
|
24 |
-
"transformers_version": "4.41.2",
|
25 |
-
"type_vocab_size": 1,
|
26 |
-
"use_cache": true,
|
27 |
-
"vocab_size": 250002
|
28 |
-
}
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aa8d8764322acc4c0bf348db684cba5d8153de697deadf581ff49e2fc1ba3397
|
3 |
+
size 750
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
config_sentence_transformers.json
CHANGED
@@ -1,10 +1,3 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
"transformers": "4.41.2",
|
5 |
-
"pytorch": "2.4.0.post301"
|
6 |
-
},
|
7 |
-
"prompts": {},
|
8 |
-
"default_prompt_name": null,
|
9 |
-
"similarity_fn_name": null
|
10 |
-
}
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e7691d7564606e502afbd7d54c193c6d3860361c0177b877560c85980bbbd768
|
3 |
+
size 203
|
|
|
|
|
|
|
|
|
|
|
|
|
|
model copy.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9abc622938c9faf55e512e4021f835db706567485559a2f99767211f54c59070
|
3 |
+
size 2271064456
|
modules.json
CHANGED
@@ -1,20 +1,3 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
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 |
-
]
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:84e40c8e006c9b1d6c122e02cba9b02458120b5fb0c87b746c41e0207cf642cf
|
3 |
+
size 349
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sentence_bert_config.json
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
}
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eb9b44b13c0f52a3b3685c3b1cbdea1ba8b04bea123b98f61610048940776eb1
|
3 |
+
size 54
|
|
sentencepiece.bpe copy.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865
|
3 |
+
size 5069051
|
special_tokens_map.json
CHANGED
@@ -1,51 +1,3 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
"lstrip": false,
|
5 |
-
"normalized": false,
|
6 |
-
"rstrip": false,
|
7 |
-
"single_word": false
|
8 |
-
},
|
9 |
-
"cls_token": {
|
10 |
-
"content": "<s>",
|
11 |
-
"lstrip": false,
|
12 |
-
"normalized": false,
|
13 |
-
"rstrip": false,
|
14 |
-
"single_word": false
|
15 |
-
},
|
16 |
-
"eos_token": {
|
17 |
-
"content": "</s>",
|
18 |
-
"lstrip": false,
|
19 |
-
"normalized": false,
|
20 |
-
"rstrip": false,
|
21 |
-
"single_word": false
|
22 |
-
},
|
23 |
-
"mask_token": {
|
24 |
-
"content": "<mask>",
|
25 |
-
"lstrip": true,
|
26 |
-
"normalized": false,
|
27 |
-
"rstrip": false,
|
28 |
-
"single_word": false
|
29 |
-
},
|
30 |
-
"pad_token": {
|
31 |
-
"content": "<pad>",
|
32 |
-
"lstrip": false,
|
33 |
-
"normalized": false,
|
34 |
-
"rstrip": false,
|
35 |
-
"single_word": false
|
36 |
-
},
|
37 |
-
"sep_token": {
|
38 |
-
"content": "</s>",
|
39 |
-
"lstrip": false,
|
40 |
-
"normalized": false,
|
41 |
-
"rstrip": false,
|
42 |
-
"single_word": false
|
43 |
-
},
|
44 |
-
"unk_token": {
|
45 |
-
"content": "<unk>",
|
46 |
-
"lstrip": false,
|
47 |
-
"normalized": false,
|
48 |
-
"rstrip": false,
|
49 |
-
"single_word": false
|
50 |
-
}
|
51 |
-
}
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8c785abebea9ae3257b61681b4e6fd8365ceafde980c21970d001e834cf10835
|
3 |
+
size 964
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tokenizer_config.json
CHANGED
@@ -1,55 +1,3 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
"content": "<s>",
|
5 |
-
"lstrip": false,
|
6 |
-
"normalized": false,
|
7 |
-
"rstrip": false,
|
8 |
-
"single_word": false,
|
9 |
-
"special": true
|
10 |
-
},
|
11 |
-
"1": {
|
12 |
-
"content": "<pad>",
|
13 |
-
"lstrip": false,
|
14 |
-
"normalized": false,
|
15 |
-
"rstrip": false,
|
16 |
-
"single_word": false,
|
17 |
-
"special": true
|
18 |
-
},
|
19 |
-
"2": {
|
20 |
-
"content": "</s>",
|
21 |
-
"lstrip": false,
|
22 |
-
"normalized": false,
|
23 |
-
"rstrip": false,
|
24 |
-
"single_word": false,
|
25 |
-
"special": true
|
26 |
-
},
|
27 |
-
"3": {
|
28 |
-
"content": "<unk>",
|
29 |
-
"lstrip": false,
|
30 |
-
"normalized": false,
|
31 |
-
"rstrip": false,
|
32 |
-
"single_word": false,
|
33 |
-
"special": true
|
34 |
-
},
|
35 |
-
"250001": {
|
36 |
-
"content": "<mask>",
|
37 |
-
"lstrip": true,
|
38 |
-
"normalized": false,
|
39 |
-
"rstrip": false,
|
40 |
-
"single_word": false,
|
41 |
-
"special": true
|
42 |
-
}
|
43 |
-
},
|
44 |
-
"bos_token": "<s>",
|
45 |
-
"clean_up_tokenization_spaces": true,
|
46 |
-
"cls_token": "<s>",
|
47 |
-
"eos_token": "</s>",
|
48 |
-
"mask_token": "<mask>",
|
49 |
-
"model_max_length": 8192,
|
50 |
-
"pad_token": "<pad>",
|
51 |
-
"sep_token": "</s>",
|
52 |
-
"sp_model_kwargs": {},
|
53 |
-
"tokenizer_class": "XLMRobertaTokenizer",
|
54 |
-
"unk_token": "<unk>"
|
55 |
-
}
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7e4c1cc848840aeccdd763458c18dd525eb0f795c992e00ebe9c28554e7db2d4
|
3 |
+
size 1173
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|