sistemas-upta commited on
Commit
ae7a7e7
·
verified ·
1 Parent(s): 2a3dc45

Add new SentenceTransformer model.

Browse files
1_Pooling/config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "word_embedding_dimension": 384,
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 ADDED
@@ -0,0 +1,349 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - sentence-transformers
4
+ - sentence-similarity
5
+ - feature-extraction
6
+ - generated_from_trainer
7
+ - dataset_size:3711
8
+ - loss:MultipleNegativesRankingLoss
9
+ base_model: sentence-transformers/all-MiniLM-L6-v2
10
+ widget:
11
+ - source_sentence: how i can speak english fluently?
12
+ sentences:
13
+ - why do people use quora when we already have google?
14
+ - how can i learn to speak english fluently?
15
+ - if i start preparing for ias exam 2016 now, how can i achieve it?
16
+ - source_sentence: how should i prepare for gate?
17
+ sentences:
18
+ - what are some tips to prepare for the gate?
19
+ - what are the best websites to visit everyday?
20
+ - why we use precision rectifier?
21
+ - source_sentence: what is the best gift you ever received?
22
+ sentences:
23
+ - which is the best gift that you have ever received?
24
+ - should i ask a coworker out for drinks?
25
+ - why do i lose interest in people so quickly?
26
+ - source_sentence: what's the best poem you've written?
27
+ sentences:
28
+ - why does quora keep telling me my question needs improvement?
29
+ - what is some of the best poetry you have written?
30
+ - what is the wonderful thing that a complete stranger has ever done for you?
31
+ - source_sentence: who was the man that killed the most people in human history?
32
+ sentences:
33
+ - what are the three main parts of the circulatory system, and what function does
34
+ each serve?
35
+ - how can i lose weight in a month without doing exercise?
36
+ - which individual in all of history killed the most people?
37
+ pipeline_tag: sentence-similarity
38
+ library_name: sentence-transformers
39
+ ---
40
+
41
+ # SentenceTransformer based on sentence-transformers/all-MiniLM-L6-v2
42
+
43
+ This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2). It maps sentences & paragraphs to a 384-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
44
+
45
+ ## Model Details
46
+
47
+ ### Model Description
48
+ - **Model Type:** Sentence Transformer
49
+ - **Base model:** [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2) <!-- at revision c9745ed1d9f207416be6d2e6f8de32d1f16199bf -->
50
+ - **Maximum Sequence Length:** 256 tokens
51
+ - **Output Dimensionality:** 384 dimensions
52
+ - **Similarity Function:** Cosine Similarity
53
+ <!-- - **Training Dataset:** Unknown -->
54
+ <!-- - **Language:** Unknown -->
55
+ <!-- - **License:** Unknown -->
56
+
57
+ ### Model Sources
58
+
59
+ - **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
60
+ - **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
61
+ - **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
62
+
63
+ ### Full Model Architecture
64
+
65
+ ```
66
+ SentenceTransformer(
67
+ (0): Transformer({'max_seq_length': 256, 'do_lower_case': False}) with Transformer model: BertModel
68
+ (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
69
+ (2): Normalize()
70
+ )
71
+ ```
72
+
73
+ ## Usage
74
+
75
+ ### Direct Usage (Sentence Transformers)
76
+
77
+ First install the Sentence Transformers library:
78
+
79
+ ```bash
80
+ pip install -U sentence-transformers
81
+ ```
82
+
83
+ Then you can load this model and run inference.
84
+ ```python
85
+ from sentence_transformers import SentenceTransformer
86
+
87
+ # Download from the 🤗 Hub
88
+ model = SentenceTransformer("sistemas-upta/fine-tuned-sbert")
89
+ # Run inference
90
+ sentences = [
91
+ 'who was the man that killed the most people in human history?',
92
+ 'which individual in all of history killed the most people?',
93
+ 'what are the three main parts of the circulatory system, and what function does each serve?',
94
+ ]
95
+ embeddings = model.encode(sentences)
96
+ print(embeddings.shape)
97
+ # [3, 384]
98
+
99
+ # Get the similarity scores for the embeddings
100
+ similarities = model.similarity(embeddings, embeddings)
101
+ print(similarities.shape)
102
+ # [3, 3]
103
+ ```
104
+
105
+ <!--
106
+ ### Direct Usage (Transformers)
107
+
108
+ <details><summary>Click to see the direct usage in Transformers</summary>
109
+
110
+ </details>
111
+ -->
112
+
113
+ <!--
114
+ ### Downstream Usage (Sentence Transformers)
115
+
116
+ You can finetune this model on your own dataset.
117
+
118
+ <details><summary>Click to expand</summary>
119
+
120
+ </details>
121
+ -->
122
+
123
+ <!--
124
+ ### Out-of-Scope Use
125
+
126
+ *List how the model may foreseeably be misused and address what users ought not to do with the model.*
127
+ -->
128
+
129
+ <!--
130
+ ## Bias, Risks and Limitations
131
+
132
+ *What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
133
+ -->
134
+
135
+ <!--
136
+ ### Recommendations
137
+
138
+ *What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
139
+ -->
140
+
141
+ ## Training Details
142
+
143
+ ### Training Dataset
144
+
145
+ #### Unnamed Dataset
146
+
147
+ * Size: 3,711 training samples
148
+ * Columns: <code>sentence_0</code>, <code>sentence_1</code>, and <code>label</code>
149
+ * Approximate statistics based on the first 1000 samples:
150
+ | | sentence_0 | sentence_1 | label |
151
+ |:--------|:----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:--------------------------------------------------------------|
152
+ | type | string | string | float |
153
+ | details | <ul><li>min: 6 tokens</li><li>mean: 13.82 tokens</li><li>max: 40 tokens</li></ul> | <ul><li>min: 6 tokens</li><li>mean: 13.82 tokens</li><li>max: 48 tokens</li></ul> | <ul><li>min: 1.0</li><li>mean: 1.0</li><li>max: 1.0</li></ul> |
154
+ * Samples:
155
+ | sentence_0 | sentence_1 | label |
156
+ |:--------------------------------------------------------------------------------|:---------------------------------------------------------|:-----------------|
157
+ | <code>what is depth of field?</code> | <code>whats is depth of field?</code> | <code>1.0</code> |
158
+ | <code>how can i get out from addiction?</code> | <code>how does anyone get rid from any addiction?</code> | <code>1.0</code> |
159
+ | <code>can excessive amounts of vitamin c cause me to have a miscarriage?</code> | <code>how can vitamin c cause a miscarriage?</code> | <code>1.0</code> |
160
+ * Loss: [<code>MultipleNegativesRankingLoss</code>](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#multiplenegativesrankingloss) with these parameters:
161
+ ```json
162
+ {
163
+ "scale": 20.0,
164
+ "similarity_fct": "cos_sim"
165
+ }
166
+ ```
167
+
168
+ ### Training Hyperparameters
169
+ #### Non-Default Hyperparameters
170
+
171
+ - `per_device_train_batch_size`: 16
172
+ - `per_device_eval_batch_size`: 16
173
+ - `num_train_epochs`: 1
174
+ - `multi_dataset_batch_sampler`: round_robin
175
+
176
+ #### All Hyperparameters
177
+ <details><summary>Click to expand</summary>
178
+
179
+ - `overwrite_output_dir`: False
180
+ - `do_predict`: False
181
+ - `eval_strategy`: no
182
+ - `prediction_loss_only`: True
183
+ - `per_device_train_batch_size`: 16
184
+ - `per_device_eval_batch_size`: 16
185
+ - `per_gpu_train_batch_size`: None
186
+ - `per_gpu_eval_batch_size`: None
187
+ - `gradient_accumulation_steps`: 1
188
+ - `eval_accumulation_steps`: None
189
+ - `torch_empty_cache_steps`: None
190
+ - `learning_rate`: 5e-05
191
+ - `weight_decay`: 0.0
192
+ - `adam_beta1`: 0.9
193
+ - `adam_beta2`: 0.999
194
+ - `adam_epsilon`: 1e-08
195
+ - `max_grad_norm`: 1
196
+ - `num_train_epochs`: 1
197
+ - `max_steps`: -1
198
+ - `lr_scheduler_type`: linear
199
+ - `lr_scheduler_kwargs`: {}
200
+ - `warmup_ratio`: 0.0
201
+ - `warmup_steps`: 0
202
+ - `log_level`: passive
203
+ - `log_level_replica`: warning
204
+ - `log_on_each_node`: True
205
+ - `logging_nan_inf_filter`: True
206
+ - `save_safetensors`: True
207
+ - `save_on_each_node`: False
208
+ - `save_only_model`: False
209
+ - `restore_callback_states_from_checkpoint`: False
210
+ - `no_cuda`: False
211
+ - `use_cpu`: False
212
+ - `use_mps_device`: False
213
+ - `seed`: 42
214
+ - `data_seed`: None
215
+ - `jit_mode_eval`: False
216
+ - `use_ipex`: False
217
+ - `bf16`: False
218
+ - `fp16`: False
219
+ - `fp16_opt_level`: O1
220
+ - `half_precision_backend`: auto
221
+ - `bf16_full_eval`: False
222
+ - `fp16_full_eval`: False
223
+ - `tf32`: None
224
+ - `local_rank`: 0
225
+ - `ddp_backend`: None
226
+ - `tpu_num_cores`: None
227
+ - `tpu_metrics_debug`: False
228
+ - `debug`: []
229
+ - `dataloader_drop_last`: False
230
+ - `dataloader_num_workers`: 0
231
+ - `dataloader_prefetch_factor`: None
232
+ - `past_index`: -1
233
+ - `disable_tqdm`: False
234
+ - `remove_unused_columns`: True
235
+ - `label_names`: None
236
+ - `load_best_model_at_end`: False
237
+ - `ignore_data_skip`: False
238
+ - `fsdp`: []
239
+ - `fsdp_min_num_params`: 0
240
+ - `fsdp_config`: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
241
+ - `fsdp_transformer_layer_cls_to_wrap`: None
242
+ - `accelerator_config`: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
243
+ - `deepspeed`: None
244
+ - `label_smoothing_factor`: 0.0
245
+ - `optim`: adamw_torch
246
+ - `optim_args`: None
247
+ - `adafactor`: False
248
+ - `group_by_length`: False
249
+ - `length_column_name`: length
250
+ - `ddp_find_unused_parameters`: None
251
+ - `ddp_bucket_cap_mb`: None
252
+ - `ddp_broadcast_buffers`: False
253
+ - `dataloader_pin_memory`: True
254
+ - `dataloader_persistent_workers`: False
255
+ - `skip_memory_metrics`: True
256
+ - `use_legacy_prediction_loop`: False
257
+ - `push_to_hub`: False
258
+ - `resume_from_checkpoint`: None
259
+ - `hub_model_id`: None
260
+ - `hub_strategy`: every_save
261
+ - `hub_private_repo`: None
262
+ - `hub_always_push`: False
263
+ - `gradient_checkpointing`: False
264
+ - `gradient_checkpointing_kwargs`: None
265
+ - `include_inputs_for_metrics`: False
266
+ - `include_for_metrics`: []
267
+ - `eval_do_concat_batches`: True
268
+ - `fp16_backend`: auto
269
+ - `push_to_hub_model_id`: None
270
+ - `push_to_hub_organization`: None
271
+ - `mp_parameters`:
272
+ - `auto_find_batch_size`: False
273
+ - `full_determinism`: False
274
+ - `torchdynamo`: None
275
+ - `ray_scope`: last
276
+ - `ddp_timeout`: 1800
277
+ - `torch_compile`: False
278
+ - `torch_compile_backend`: None
279
+ - `torch_compile_mode`: None
280
+ - `include_tokens_per_second`: False
281
+ - `include_num_input_tokens_seen`: False
282
+ - `neftune_noise_alpha`: None
283
+ - `optim_target_modules`: None
284
+ - `batch_eval_metrics`: False
285
+ - `eval_on_start`: False
286
+ - `use_liger_kernel`: False
287
+ - `eval_use_gather_object`: False
288
+ - `average_tokens_across_devices`: False
289
+ - `prompts`: None
290
+ - `batch_sampler`: batch_sampler
291
+ - `multi_dataset_batch_sampler`: round_robin
292
+
293
+ </details>
294
+
295
+ ### Framework Versions
296
+ - Python: 3.11.12
297
+ - Sentence Transformers: 4.1.0
298
+ - Transformers: 4.52.3
299
+ - PyTorch: 2.6.0+cu124
300
+ - Accelerate: 1.7.0
301
+ - Datasets: 3.6.0
302
+ - Tokenizers: 0.21.1
303
+
304
+ ## Citation
305
+
306
+ ### BibTeX
307
+
308
+ #### Sentence Transformers
309
+ ```bibtex
310
+ @inproceedings{reimers-2019-sentence-bert,
311
+ title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
312
+ author = "Reimers, Nils and Gurevych, Iryna",
313
+ booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
314
+ month = "11",
315
+ year = "2019",
316
+ publisher = "Association for Computational Linguistics",
317
+ url = "https://arxiv.org/abs/1908.10084",
318
+ }
319
+ ```
320
+
321
+ #### MultipleNegativesRankingLoss
322
+ ```bibtex
323
+ @misc{henderson2017efficient,
324
+ title={Efficient Natural Language Response Suggestion for Smart Reply},
325
+ author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
326
+ year={2017},
327
+ eprint={1705.00652},
328
+ archivePrefix={arXiv},
329
+ primaryClass={cs.CL}
330
+ }
331
+ ```
332
+
333
+ <!--
334
+ ## Glossary
335
+
336
+ *Clearly define terms in order to be accessible across audiences.*
337
+ -->
338
+
339
+ <!--
340
+ ## Model Card Authors
341
+
342
+ *Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
343
+ -->
344
+
345
+ <!--
346
+ ## Model Card Contact
347
+
348
+ *Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
349
+ -->
config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertModel"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "classifier_dropout": null,
7
+ "gradient_checkpointing": false,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 384,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 1536,
13
+ "layer_norm_eps": 1e-12,
14
+ "max_position_embeddings": 512,
15
+ "model_type": "bert",
16
+ "num_attention_heads": 12,
17
+ "num_hidden_layers": 6,
18
+ "pad_token_id": 0,
19
+ "position_embedding_type": "absolute",
20
+ "torch_dtype": "float32",
21
+ "transformers_version": "4.52.3",
22
+ "type_vocab_size": 2,
23
+ "use_cache": true,
24
+ "vocab_size": 30522
25
+ }
config_sentence_transformers.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "4.1.0",
4
+ "transformers": "4.52.3",
5
+ "pytorch": "2.6.0+cu124"
6
+ },
7
+ "prompts": {},
8
+ "default_prompt_name": null,
9
+ "similarity_fn_name": "cosine"
10
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5eef365cb65443fc30567d03c41953e5454a68bd88ab820dc273cabd703ed470
3
+ size 90864192
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": 256,
3
+ "do_lower_case": false
4
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": {
3
+ "content": "[CLS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "mask_token": {
10
+ "content": "[MASK]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "[PAD]",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "sep_token": {
24
+ "content": "[SEP]",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "unk_token": {
31
+ "content": "[UNK]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ }
37
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": false,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": true,
48
+ "extra_special_tokens": {},
49
+ "mask_token": "[MASK]",
50
+ "max_length": 128,
51
+ "model_max_length": 256,
52
+ "never_split": null,
53
+ "pad_to_multiple_of": null,
54
+ "pad_token": "[PAD]",
55
+ "pad_token_type_id": 0,
56
+ "padding_side": "right",
57
+ "sep_token": "[SEP]",
58
+ "stride": 0,
59
+ "strip_accents": null,
60
+ "tokenize_chinese_chars": true,
61
+ "tokenizer_class": "BertTokenizer",
62
+ "truncation_side": "right",
63
+ "truncation_strategy": "longest_first",
64
+ "unk_token": "[UNK]"
65
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff