Sentence Similarity
sentence-transformers
Safetensors
bert
feature-extraction
dense
Generated from Trainer
dataset_size:287
loss:WeightedCosineSimilarityLoss
text-embeddings-inference
Instructions to use WarTitan2077/Checkins-Ranking with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use WarTitan2077/Checkins-Ranking with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("WarTitan2077/Checkins-Ranking") sentences = [ "check-in ai_dev", "Today I fixed some text and text UI for my escape room project, I simplified the explanation of the puzzles as well as changing the look of the dialog boxes", "Delivered new feature set for public release.", "Configured Colab runtime but didn’t run training yet." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Upload folder using huggingface_hub
Browse files- 1_Pooling/config.json +10 -0
- README.md +339 -3
- config.json +25 -0
- config_sentence_transformers.json +14 -0
- model.safetensors +3 -0
- modules.json +20 -0
- sentence_bert_config.json +4 -0
- special_tokens_map.json +37 -0
- tokenizer.json +0 -0
- tokenizer_config.json +65 -0
- vocab.txt +0 -0
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
CHANGED
|
@@ -1,3 +1,339 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
--
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- sentence-transformers
|
| 4 |
+
- sentence-similarity
|
| 5 |
+
- feature-extraction
|
| 6 |
+
- dense
|
| 7 |
+
- generated_from_trainer
|
| 8 |
+
- dataset_size:287
|
| 9 |
+
- loss:WeightedCosineSimilarityLoss
|
| 10 |
+
base_model: sentence-transformers/all-MiniLM-L6-v2
|
| 11 |
+
widget:
|
| 12 |
+
- source_sentence: check-in ai_dev
|
| 13 |
+
sentences:
|
| 14 |
+
- Today I fixed some text and text UI for my escape room project, I simplified the
|
| 15 |
+
explanation of the puzzles as well as changing the look of the dialog boxes
|
| 16 |
+
- Delivered new feature set for public release.
|
| 17 |
+
- Configured Colab runtime but didn’t run training yet.
|
| 18 |
+
- source_sentence: check-in other
|
| 19 |
+
sentences:
|
| 20 |
+
- Ran first evaluation on small validation split.
|
| 21 |
+
- Didn’t finish dataset upload to Hugging Face, ran out of time.
|
| 22 |
+
- Today I'm working on UI changes and how to interact with them for mobile
|
| 23 |
+
- source_sentence: check-in unity
|
| 24 |
+
sentences:
|
| 25 |
+
- Optimized entire Unity project and exported final build.
|
| 26 |
+
- Client work paused today, waiting for feedback.
|
| 27 |
+
- Started refactoring one of the client scripts, halfway done.
|
| 28 |
+
- source_sentence: check-in other
|
| 29 |
+
sentences:
|
| 30 |
+
- Today I'm working on UI changes and how to interact with them for mobile
|
| 31 |
+
- Today I'm working on UI changes and how to interact with them for mobile
|
| 32 |
+
- Today I've finished some example work for summarization and zero shot classification
|
| 33 |
+
pipelines and I'm continuing on using the different pipelines in different examples
|
| 34 |
+
of work like question-answering and sentiment-analysis pipelines
|
| 35 |
+
- source_sentence: check-in client
|
| 36 |
+
sentences:
|
| 37 |
+
- Met all client deliverables ahead of schedule.
|
| 38 |
+
- Cleaned up workspace, nothing project-related.
|
| 39 |
+
- Today I'm working on UI changes and how to interact with them for mobile
|
| 40 |
+
pipeline_tag: sentence-similarity
|
| 41 |
+
library_name: sentence-transformers
|
| 42 |
+
---
|
| 43 |
+
|
| 44 |
+
# SentenceTransformer based on sentence-transformers/all-MiniLM-L6-v2
|
| 45 |
+
|
| 46 |
+
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.
|
| 47 |
+
|
| 48 |
+
## Model Details
|
| 49 |
+
|
| 50 |
+
### Model Description
|
| 51 |
+
- **Model Type:** Sentence Transformer
|
| 52 |
+
- **Base model:** [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2) <!-- at revision c9745ed1d9f207416be6d2e6f8de32d1f16199bf -->
|
| 53 |
+
- **Maximum Sequence Length:** 256 tokens
|
| 54 |
+
- **Output Dimensionality:** 384 dimensions
|
| 55 |
+
- **Similarity Function:** Cosine Similarity
|
| 56 |
+
<!-- - **Training Dataset:** Unknown -->
|
| 57 |
+
<!-- - **Language:** Unknown -->
|
| 58 |
+
<!-- - **License:** Unknown -->
|
| 59 |
+
|
| 60 |
+
### Model Sources
|
| 61 |
+
|
| 62 |
+
- **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
|
| 63 |
+
- **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
|
| 64 |
+
- **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
|
| 65 |
+
|
| 66 |
+
### Full Model Architecture
|
| 67 |
+
|
| 68 |
+
```
|
| 69 |
+
SentenceTransformer(
|
| 70 |
+
(0): Transformer({'max_seq_length': 256, 'do_lower_case': False, 'architecture': 'BertModel'})
|
| 71 |
+
(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})
|
| 72 |
+
(2): Normalize()
|
| 73 |
+
)
|
| 74 |
+
```
|
| 75 |
+
|
| 76 |
+
## Usage
|
| 77 |
+
|
| 78 |
+
### Direct Usage (Sentence Transformers)
|
| 79 |
+
|
| 80 |
+
First install the Sentence Transformers library:
|
| 81 |
+
|
| 82 |
+
```bash
|
| 83 |
+
pip install -U sentence-transformers
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
Then you can load this model and run inference.
|
| 87 |
+
```python
|
| 88 |
+
from sentence_transformers import SentenceTransformer
|
| 89 |
+
|
| 90 |
+
# Download from the 🤗 Hub
|
| 91 |
+
model = SentenceTransformer("sentence_transformers_model_id")
|
| 92 |
+
# Run inference
|
| 93 |
+
sentences = [
|
| 94 |
+
'check-in client',
|
| 95 |
+
'Met all client deliverables ahead of schedule.',
|
| 96 |
+
"Today I'm working on UI changes and how to interact with them for mobile",
|
| 97 |
+
]
|
| 98 |
+
embeddings = model.encode(sentences)
|
| 99 |
+
print(embeddings.shape)
|
| 100 |
+
# [3, 384]
|
| 101 |
+
|
| 102 |
+
# Get the similarity scores for the embeddings
|
| 103 |
+
similarities = model.similarity(embeddings, embeddings)
|
| 104 |
+
print(similarities)
|
| 105 |
+
# tensor([[1.0000, 0.7157, 0.2864],
|
| 106 |
+
# [0.7157, 1.0000, 0.1698],
|
| 107 |
+
# [0.2864, 0.1698, 1.0000]])
|
| 108 |
+
```
|
| 109 |
+
|
| 110 |
+
<!--
|
| 111 |
+
### Direct Usage (Transformers)
|
| 112 |
+
|
| 113 |
+
<details><summary>Click to see the direct usage in Transformers</summary>
|
| 114 |
+
|
| 115 |
+
</details>
|
| 116 |
+
-->
|
| 117 |
+
|
| 118 |
+
<!--
|
| 119 |
+
### Downstream Usage (Sentence Transformers)
|
| 120 |
+
|
| 121 |
+
You can finetune this model on your own dataset.
|
| 122 |
+
|
| 123 |
+
<details><summary>Click to expand</summary>
|
| 124 |
+
|
| 125 |
+
</details>
|
| 126 |
+
-->
|
| 127 |
+
|
| 128 |
+
<!--
|
| 129 |
+
### Out-of-Scope Use
|
| 130 |
+
|
| 131 |
+
*List how the model may foreseeably be misused and address what users ought not to do with the model.*
|
| 132 |
+
-->
|
| 133 |
+
|
| 134 |
+
<!--
|
| 135 |
+
## Bias, Risks and Limitations
|
| 136 |
+
|
| 137 |
+
*What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
|
| 138 |
+
-->
|
| 139 |
+
|
| 140 |
+
<!--
|
| 141 |
+
### Recommendations
|
| 142 |
+
|
| 143 |
+
*What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
|
| 144 |
+
-->
|
| 145 |
+
|
| 146 |
+
## Training Details
|
| 147 |
+
|
| 148 |
+
### Training Dataset
|
| 149 |
+
|
| 150 |
+
#### Unnamed Dataset
|
| 151 |
+
|
| 152 |
+
* Size: 287 training samples
|
| 153 |
+
* Columns: <code>sentence_0</code>, <code>sentence_1</code>, and <code>label</code>
|
| 154 |
+
* Approximate statistics based on the first 287 samples:
|
| 155 |
+
| | sentence_0 | sentence_1 | label |
|
| 156 |
+
|:--------|:--------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:--------------------------------------------------------------|
|
| 157 |
+
| type | string | string | float |
|
| 158 |
+
| details | <ul><li>min: 6 tokens</li><li>mean: 6.32 tokens</li><li>max: 8 tokens</li></ul> | <ul><li>min: 8 tokens</li><li>mean: 20.57 tokens</li><li>max: 79 tokens</li></ul> | <ul><li>min: 0.0</li><li>mean: 0.5</li><li>max: 1.0</li></ul> |
|
| 159 |
+
* Samples:
|
| 160 |
+
| sentence_0 | sentence_1 | label |
|
| 161 |
+
|:-----------------------------|:--------------------------------------------------------------------------------------|:-----------------|
|
| 162 |
+
| <code>check-in other</code> | <code>Today I'm working on UI changes and how to interact with them for mobile</code> | <code>0.2</code> |
|
| 163 |
+
| <code>check-in ai_dev</code> | <code>Documented learnings from recent model deployment.</code> | <code>1.0</code> |
|
| 164 |
+
| <code>check-in other</code> | <code>Setup test folder structure for future experiments.</code> | <code>0.4</code> |
|
| 165 |
+
* Loss: <code>__main__.WeightedCosineSimilarityLoss</code>
|
| 166 |
+
|
| 167 |
+
### Training Hyperparameters
|
| 168 |
+
#### Non-Default Hyperparameters
|
| 169 |
+
|
| 170 |
+
- `num_train_epochs`: 4
|
| 171 |
+
- `multi_dataset_batch_sampler`: round_robin
|
| 172 |
+
|
| 173 |
+
#### All Hyperparameters
|
| 174 |
+
<details><summary>Click to expand</summary>
|
| 175 |
+
|
| 176 |
+
- `overwrite_output_dir`: False
|
| 177 |
+
- `do_predict`: False
|
| 178 |
+
- `eval_strategy`: no
|
| 179 |
+
- `prediction_loss_only`: True
|
| 180 |
+
- `per_device_train_batch_size`: 8
|
| 181 |
+
- `per_device_eval_batch_size`: 8
|
| 182 |
+
- `per_gpu_train_batch_size`: None
|
| 183 |
+
- `per_gpu_eval_batch_size`: None
|
| 184 |
+
- `gradient_accumulation_steps`: 1
|
| 185 |
+
- `eval_accumulation_steps`: None
|
| 186 |
+
- `torch_empty_cache_steps`: None
|
| 187 |
+
- `learning_rate`: 5e-05
|
| 188 |
+
- `weight_decay`: 0.0
|
| 189 |
+
- `adam_beta1`: 0.9
|
| 190 |
+
- `adam_beta2`: 0.999
|
| 191 |
+
- `adam_epsilon`: 1e-08
|
| 192 |
+
- `max_grad_norm`: 1
|
| 193 |
+
- `num_train_epochs`: 4
|
| 194 |
+
- `max_steps`: -1
|
| 195 |
+
- `lr_scheduler_type`: linear
|
| 196 |
+
- `lr_scheduler_kwargs`: {}
|
| 197 |
+
- `warmup_ratio`: 0.0
|
| 198 |
+
- `warmup_steps`: 0
|
| 199 |
+
- `log_level`: passive
|
| 200 |
+
- `log_level_replica`: warning
|
| 201 |
+
- `log_on_each_node`: True
|
| 202 |
+
- `logging_nan_inf_filter`: True
|
| 203 |
+
- `save_safetensors`: True
|
| 204 |
+
- `save_on_each_node`: False
|
| 205 |
+
- `save_only_model`: False
|
| 206 |
+
- `restore_callback_states_from_checkpoint`: False
|
| 207 |
+
- `no_cuda`: False
|
| 208 |
+
- `use_cpu`: False
|
| 209 |
+
- `use_mps_device`: False
|
| 210 |
+
- `seed`: 42
|
| 211 |
+
- `data_seed`: None
|
| 212 |
+
- `jit_mode_eval`: False
|
| 213 |
+
- `use_ipex`: False
|
| 214 |
+
- `bf16`: False
|
| 215 |
+
- `fp16`: False
|
| 216 |
+
- `fp16_opt_level`: O1
|
| 217 |
+
- `half_precision_backend`: auto
|
| 218 |
+
- `bf16_full_eval`: False
|
| 219 |
+
- `fp16_full_eval`: False
|
| 220 |
+
- `tf32`: None
|
| 221 |
+
- `local_rank`: 0
|
| 222 |
+
- `ddp_backend`: None
|
| 223 |
+
- `tpu_num_cores`: None
|
| 224 |
+
- `tpu_metrics_debug`: False
|
| 225 |
+
- `debug`: []
|
| 226 |
+
- `dataloader_drop_last`: False
|
| 227 |
+
- `dataloader_num_workers`: 0
|
| 228 |
+
- `dataloader_prefetch_factor`: None
|
| 229 |
+
- `past_index`: -1
|
| 230 |
+
- `disable_tqdm`: False
|
| 231 |
+
- `remove_unused_columns`: True
|
| 232 |
+
- `label_names`: None
|
| 233 |
+
- `load_best_model_at_end`: False
|
| 234 |
+
- `ignore_data_skip`: False
|
| 235 |
+
- `fsdp`: []
|
| 236 |
+
- `fsdp_min_num_params`: 0
|
| 237 |
+
- `fsdp_config`: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
|
| 238 |
+
- `fsdp_transformer_layer_cls_to_wrap`: None
|
| 239 |
+
- `accelerator_config`: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
|
| 240 |
+
- `parallelism_config`: None
|
| 241 |
+
- `deepspeed`: None
|
| 242 |
+
- `label_smoothing_factor`: 0.0
|
| 243 |
+
- `optim`: adamw_torch_fused
|
| 244 |
+
- `optim_args`: None
|
| 245 |
+
- `adafactor`: False
|
| 246 |
+
- `group_by_length`: False
|
| 247 |
+
- `length_column_name`: length
|
| 248 |
+
- `ddp_find_unused_parameters`: None
|
| 249 |
+
- `ddp_bucket_cap_mb`: None
|
| 250 |
+
- `ddp_broadcast_buffers`: False
|
| 251 |
+
- `dataloader_pin_memory`: True
|
| 252 |
+
- `dataloader_persistent_workers`: False
|
| 253 |
+
- `skip_memory_metrics`: True
|
| 254 |
+
- `use_legacy_prediction_loop`: False
|
| 255 |
+
- `push_to_hub`: False
|
| 256 |
+
- `resume_from_checkpoint`: None
|
| 257 |
+
- `hub_model_id`: None
|
| 258 |
+
- `hub_strategy`: every_save
|
| 259 |
+
- `hub_private_repo`: None
|
| 260 |
+
- `hub_always_push`: False
|
| 261 |
+
- `hub_revision`: None
|
| 262 |
+
- `gradient_checkpointing`: False
|
| 263 |
+
- `gradient_checkpointing_kwargs`: None
|
| 264 |
+
- `include_inputs_for_metrics`: False
|
| 265 |
+
- `include_for_metrics`: []
|
| 266 |
+
- `eval_do_concat_batches`: True
|
| 267 |
+
- `fp16_backend`: auto
|
| 268 |
+
- `push_to_hub_model_id`: None
|
| 269 |
+
- `push_to_hub_organization`: None
|
| 270 |
+
- `mp_parameters`:
|
| 271 |
+
- `auto_find_batch_size`: False
|
| 272 |
+
- `full_determinism`: False
|
| 273 |
+
- `torchdynamo`: None
|
| 274 |
+
- `ray_scope`: last
|
| 275 |
+
- `ddp_timeout`: 1800
|
| 276 |
+
- `torch_compile`: False
|
| 277 |
+
- `torch_compile_backend`: None
|
| 278 |
+
- `torch_compile_mode`: None
|
| 279 |
+
- `include_tokens_per_second`: False
|
| 280 |
+
- `include_num_input_tokens_seen`: False
|
| 281 |
+
- `neftune_noise_alpha`: None
|
| 282 |
+
- `optim_target_modules`: None
|
| 283 |
+
- `batch_eval_metrics`: False
|
| 284 |
+
- `eval_on_start`: False
|
| 285 |
+
- `use_liger_kernel`: False
|
| 286 |
+
- `liger_kernel_config`: None
|
| 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 |
+
- `router_mapping`: {}
|
| 293 |
+
- `learning_rate_mapping`: {}
|
| 294 |
+
|
| 295 |
+
</details>
|
| 296 |
+
|
| 297 |
+
### Framework Versions
|
| 298 |
+
- Python: 3.12.11
|
| 299 |
+
- Sentence Transformers: 5.1.1
|
| 300 |
+
- Transformers: 4.56.2
|
| 301 |
+
- PyTorch: 2.8.0+cu126
|
| 302 |
+
- Accelerate: 1.10.1
|
| 303 |
+
- Datasets: 4.0.0
|
| 304 |
+
- Tokenizers: 0.22.1
|
| 305 |
+
|
| 306 |
+
## Citation
|
| 307 |
+
|
| 308 |
+
### BibTeX
|
| 309 |
+
|
| 310 |
+
#### Sentence Transformers
|
| 311 |
+
```bibtex
|
| 312 |
+
@inproceedings{reimers-2019-sentence-bert,
|
| 313 |
+
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
|
| 314 |
+
author = "Reimers, Nils and Gurevych, Iryna",
|
| 315 |
+
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
|
| 316 |
+
month = "11",
|
| 317 |
+
year = "2019",
|
| 318 |
+
publisher = "Association for Computational Linguistics",
|
| 319 |
+
url = "https://arxiv.org/abs/1908.10084",
|
| 320 |
+
}
|
| 321 |
+
```
|
| 322 |
+
|
| 323 |
+
<!--
|
| 324 |
+
## Glossary
|
| 325 |
+
|
| 326 |
+
*Clearly define terms in order to be accessible across audiences.*
|
| 327 |
+
-->
|
| 328 |
+
|
| 329 |
+
<!--
|
| 330 |
+
## Model Card Authors
|
| 331 |
+
|
| 332 |
+
*Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
|
| 333 |
+
-->
|
| 334 |
+
|
| 335 |
+
<!--
|
| 336 |
+
## Model Card Contact
|
| 337 |
+
|
| 338 |
+
*Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
|
| 339 |
+
-->
|
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 |
+
"dtype": "float32",
|
| 8 |
+
"gradient_checkpointing": false,
|
| 9 |
+
"hidden_act": "gelu",
|
| 10 |
+
"hidden_dropout_prob": 0.1,
|
| 11 |
+
"hidden_size": 384,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 1536,
|
| 14 |
+
"layer_norm_eps": 1e-12,
|
| 15 |
+
"max_position_embeddings": 512,
|
| 16 |
+
"model_type": "bert",
|
| 17 |
+
"num_attention_heads": 12,
|
| 18 |
+
"num_hidden_layers": 6,
|
| 19 |
+
"pad_token_id": 0,
|
| 20 |
+
"position_embedding_type": "absolute",
|
| 21 |
+
"transformers_version": "4.56.2",
|
| 22 |
+
"type_vocab_size": 2,
|
| 23 |
+
"use_cache": true,
|
| 24 |
+
"vocab_size": 30522
|
| 25 |
+
}
|
config_sentence_transformers.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"__version__": {
|
| 3 |
+
"sentence_transformers": "5.1.1",
|
| 4 |
+
"transformers": "4.56.2",
|
| 5 |
+
"pytorch": "2.8.0+cu126"
|
| 6 |
+
},
|
| 7 |
+
"model_type": "SentenceTransformer",
|
| 8 |
+
"prompts": {
|
| 9 |
+
"query": "",
|
| 10 |
+
"document": ""
|
| 11 |
+
},
|
| 12 |
+
"default_prompt_name": null,
|
| 13 |
+
"similarity_fn_name": "cosine"
|
| 14 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba58558a59403fa169eb48aad647e0604edf6adc54e8aaf7f5bd58e96e1ffe61
|
| 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
|
|
|