Sentence Similarity
sentence-transformers
Safetensors
gemma3_text
feature-extraction
dense
Generated from Trainer
dataset_size:5424
loss:MultipleNegativesRankingLoss
text-embeddings-inference
Instructions to use Neelkumar/my-embedding-gemma-5424 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use Neelkumar/my-embedding-gemma-5424 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("Neelkumar/my-embedding-gemma-5424") sentences = [ "What does the Competition Bureau do?", "What are the requirements for obtaining a Canadian passport?", "The Competition Bureau is an independent law enforcement agency that protects and promotes competition for the benefit of Canadian consumers and businesses.", "Failure to file an annual or interim management’s discussion and analysis (MD&A) or an annual or interim management report of fund performance (MRFP) is a common failure." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Add new SentenceTransformer model
Browse files- .gitattributes +1 -0
- 1_Pooling/config.json +10 -0
- 2_Dense/config.json +6 -0
- 2_Dense/model.safetensors +3 -0
- 3_Dense/config.json +6 -0
- 3_Dense/model.safetensors +3 -0
- README.md +1061 -0
- added_tokens.json +3 -0
- config.json +60 -0
- config_sentence_transformers.json +26 -0
- model.safetensors +3 -0
- modules.json +32 -0
- sentence_bert_config.json +4 -0
- special_tokens_map.json +33 -0
- tokenizer.json +3 -0
- tokenizer.model +3 -0
- tokenizer_config.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
1_Pooling/config.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"word_embedding_dimension": 768,
|
| 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 |
+
}
|
2_Dense/config.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"in_features": 768,
|
| 3 |
+
"out_features": 3072,
|
| 4 |
+
"bias": false,
|
| 5 |
+
"activation_function": "torch.nn.modules.linear.Identity"
|
| 6 |
+
}
|
2_Dense/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d0cbf38068a582cf34b153d9de48214f17dce5e9d87d61bf9c28d99b672ab474
|
| 3 |
+
size 9437272
|
3_Dense/config.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"in_features": 3072,
|
| 3 |
+
"out_features": 768,
|
| 4 |
+
"bias": false,
|
| 5 |
+
"activation_function": "torch.nn.modules.linear.Identity"
|
| 6 |
+
}
|
3_Dense/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e14881d374e268ae0cbd3651ce7d14da6ef503ae79bda33438d47410d9a01a9b
|
| 3 |
+
size 9437272
|
README.md
ADDED
|
@@ -0,0 +1,1061 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- sentence-transformers
|
| 4 |
+
- sentence-similarity
|
| 5 |
+
- feature-extraction
|
| 6 |
+
- dense
|
| 7 |
+
- generated_from_trainer
|
| 8 |
+
- dataset_size:5424
|
| 9 |
+
- loss:MultipleNegativesRankingLoss
|
| 10 |
+
base_model: google/embeddinggemma-300m
|
| 11 |
+
widget:
|
| 12 |
+
- source_sentence: What does the Competition Bureau do?
|
| 13 |
+
sentences:
|
| 14 |
+
- What are the requirements for obtaining a Canadian passport?
|
| 15 |
+
- The Competition Bureau is an independent law enforcement agency that protects
|
| 16 |
+
and promotes competition for the benefit of Canadian consumers and businesses.
|
| 17 |
+
- Failure to file an annual or interim management’s discussion and analysis (MD&A)
|
| 18 |
+
or an annual or interim management report of fund performance (MRFP) is a common
|
| 19 |
+
failure.
|
| 20 |
+
- source_sentence: What does this website provide information about?
|
| 21 |
+
sentences:
|
| 22 |
+
- What are the eligibility requirements for employment insurance benefits?
|
| 23 |
+
- Register yourself and/or your whole family with Health Care Connect and a care
|
| 24 |
+
connector will search for a doctor or nurse practitioner who is accepting new
|
| 25 |
+
patients in your community.
|
| 26 |
+
- This website provides information about pension plans under provincial and federal
|
| 27 |
+
pension standards legislation.
|
| 28 |
+
- source_sentence: What impact did the Skills Canada competitions have on young people?
|
| 29 |
+
sentences:
|
| 30 |
+
- 'This includes records relating to: employee supervision, leave and time reporting,
|
| 31 |
+
job description preparation, job classification requests, staffing and recruitment,
|
| 32 |
+
employer-employee relations, ministry recognition programs, occupational safety
|
| 33 |
+
and health activities, and ministry training course development and delivery.'
|
| 34 |
+
- What are the eligibility requirements for the Canada Pension Plan?
|
| 35 |
+
- It meant a lot for the kids, especially those who had parents who were indifferent
|
| 36 |
+
to the trades.
|
| 37 |
+
- source_sentence: What game animals can John Arseneault guide hunters for?
|
| 38 |
+
sentences:
|
| 39 |
+
- What are the eligibility requirements for the New Brunswick childcare benefit?
|
| 40 |
+
- Our $70 billion National Housing Strategy is helping build affordable housing
|
| 41 |
+
supply, including rental housing, across Canada.
|
| 42 |
+
- John Arseneault offers hunting services for Atlantic salmon, trout, and bass.
|
| 43 |
+
- source_sentence: How can I find information about past Access to Information requests?
|
| 44 |
+
sentences:
|
| 45 |
+
- This house style was a popular design from 1890-1900.
|
| 46 |
+
- What are the eligibility requirements for the Canada Pension Plan?
|
| 47 |
+
- Search the summaries of completed Access to Information (ATI) requests to find
|
| 48 |
+
information about ATI requests made to the Government of Canada after January
|
| 49 |
+
2020.
|
| 50 |
+
pipeline_tag: sentence-similarity
|
| 51 |
+
library_name: sentence-transformers
|
| 52 |
+
---
|
| 53 |
+
|
| 54 |
+
# SentenceTransformer based on google/embeddinggemma-300m
|
| 55 |
+
|
| 56 |
+
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [google/embeddinggemma-300m](https://huggingface.co/google/embeddinggemma-300m). It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
|
| 57 |
+
|
| 58 |
+
## Model Details
|
| 59 |
+
|
| 60 |
+
### Model Description
|
| 61 |
+
- **Model Type:** Sentence Transformer
|
| 62 |
+
- **Base model:** [google/embeddinggemma-300m](https://huggingface.co/google/embeddinggemma-300m) <!-- at revision 57c266a740f537b4dc058e1b0cda161fd15afa75 -->
|
| 63 |
+
- **Maximum Sequence Length:** 2048 tokens
|
| 64 |
+
- **Output Dimensionality:** 768 dimensions
|
| 65 |
+
- **Similarity Function:** Cosine Similarity
|
| 66 |
+
<!-- - **Training Dataset:** Unknown -->
|
| 67 |
+
<!-- - **Language:** Unknown -->
|
| 68 |
+
<!-- - **License:** Unknown -->
|
| 69 |
+
|
| 70 |
+
### Model Sources
|
| 71 |
+
|
| 72 |
+
- **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
|
| 73 |
+
- **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
|
| 74 |
+
- **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
|
| 75 |
+
|
| 76 |
+
### Full Model Architecture
|
| 77 |
+
|
| 78 |
+
```
|
| 79 |
+
SentenceTransformer(
|
| 80 |
+
(0): Transformer({'max_seq_length': 2048, 'do_lower_case': False, 'architecture': 'Gemma3TextModel'})
|
| 81 |
+
(1): Pooling({'word_embedding_dimension': 768, '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})
|
| 82 |
+
(2): Dense({'in_features': 768, 'out_features': 3072, 'bias': False, 'activation_function': 'torch.nn.modules.linear.Identity'})
|
| 83 |
+
(3): Dense({'in_features': 3072, 'out_features': 768, 'bias': False, 'activation_function': 'torch.nn.modules.linear.Identity'})
|
| 84 |
+
(4): Normalize()
|
| 85 |
+
)
|
| 86 |
+
```
|
| 87 |
+
|
| 88 |
+
## Usage
|
| 89 |
+
|
| 90 |
+
### Direct Usage (Sentence Transformers)
|
| 91 |
+
|
| 92 |
+
First install the Sentence Transformers library:
|
| 93 |
+
|
| 94 |
+
```bash
|
| 95 |
+
pip install -U sentence-transformers
|
| 96 |
+
```
|
| 97 |
+
|
| 98 |
+
Then you can load this model and run inference.
|
| 99 |
+
```python
|
| 100 |
+
from sentence_transformers import SentenceTransformer
|
| 101 |
+
|
| 102 |
+
# Download from the 🤗 Hub
|
| 103 |
+
model = SentenceTransformer("Neelkumar/my-embedding-gemma-5424")
|
| 104 |
+
# Run inference
|
| 105 |
+
queries = [
|
| 106 |
+
"How can I find information about past Access to Information requests?",
|
| 107 |
+
]
|
| 108 |
+
documents = [
|
| 109 |
+
'Search the summaries of completed Access to Information (ATI) requests to find information about ATI requests made to the Government of Canada after January 2020.',
|
| 110 |
+
'What are the eligibility requirements for the Canada Pension Plan?',
|
| 111 |
+
'This house style was a popular design from 1890-1900.',
|
| 112 |
+
]
|
| 113 |
+
query_embeddings = model.encode_query(queries)
|
| 114 |
+
document_embeddings = model.encode_document(documents)
|
| 115 |
+
print(query_embeddings.shape, document_embeddings.shape)
|
| 116 |
+
# [1, 768] [3, 768]
|
| 117 |
+
|
| 118 |
+
# Get the similarity scores for the embeddings
|
| 119 |
+
similarities = model.similarity(query_embeddings, document_embeddings)
|
| 120 |
+
print(similarities)
|
| 121 |
+
# tensor([[ 0.9569, 0.1398, -0.0558]])
|
| 122 |
+
```
|
| 123 |
+
|
| 124 |
+
<!--
|
| 125 |
+
### Direct Usage (Transformers)
|
| 126 |
+
|
| 127 |
+
<details><summary>Click to see the direct usage in Transformers</summary>
|
| 128 |
+
|
| 129 |
+
</details>
|
| 130 |
+
-->
|
| 131 |
+
|
| 132 |
+
<!--
|
| 133 |
+
### Downstream Usage (Sentence Transformers)
|
| 134 |
+
|
| 135 |
+
You can finetune this model on your own dataset.
|
| 136 |
+
|
| 137 |
+
<details><summary>Click to expand</summary>
|
| 138 |
+
|
| 139 |
+
</details>
|
| 140 |
+
-->
|
| 141 |
+
|
| 142 |
+
<!--
|
| 143 |
+
### Out-of-Scope Use
|
| 144 |
+
|
| 145 |
+
*List how the model may foreseeably be misused and address what users ought not to do with the model.*
|
| 146 |
+
-->
|
| 147 |
+
|
| 148 |
+
<!--
|
| 149 |
+
## Bias, Risks and Limitations
|
| 150 |
+
|
| 151 |
+
*What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
|
| 152 |
+
-->
|
| 153 |
+
|
| 154 |
+
<!--
|
| 155 |
+
### Recommendations
|
| 156 |
+
|
| 157 |
+
*What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
|
| 158 |
+
-->
|
| 159 |
+
|
| 160 |
+
## Training Details
|
| 161 |
+
|
| 162 |
+
### Training Dataset
|
| 163 |
+
|
| 164 |
+
#### Unnamed Dataset
|
| 165 |
+
|
| 166 |
+
* Size: 5,424 training samples
|
| 167 |
+
* Columns: <code>anchor</code>, <code>positive</code>, and <code>negative</code>
|
| 168 |
+
* Approximate statistics based on the first 1000 samples:
|
| 169 |
+
| | anchor | positive | negative |
|
| 170 |
+
|:--------|:---------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|
|
| 171 |
+
| type | string | string | string |
|
| 172 |
+
| details | <ul><li>min: 6 tokens</li><li>mean: 15.8 tokens</li><li>max: 35 tokens</li></ul> | <ul><li>min: 8 tokens</li><li>mean: 32.04 tokens</li><li>max: 130 tokens</li></ul> | <ul><li>min: 11 tokens</li><li>mean: 15.01 tokens</li><li>max: 42 tokens</li></ul> |
|
| 173 |
+
* Samples:
|
| 174 |
+
| anchor | positive | negative |
|
| 175 |
+
|:--------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|
|
| 176 |
+
| <code>Quelles mesures les propriétaires peuvent-ils prendre pour éliminer les punaises de lit?</code> | <code>Les propriétaires peuvent instaurer différentes mesures pour prévenir et éliminer les punaises des lits.</code> | <code>Quelles sont les conditions pour obtenir une assurance automobile?</code> |
|
| 177 |
+
| <code>Comment les pages web du gouvernement de la Saskatchewan sont-elles traduites en français?</code> | <code>Un certain nombre de pages sur le site web du gouvernement de la Saskatchewan ont été traduites professionnellement en français.</code> | <code>Quelles sont les exigences pour obtenir un permis de conduire?</code> |
|
| 178 |
+
| <code>How long do plant breeders' rights last in Canada?</code> | <code>Plant breeders receive legal protection for up to 25 years for trees and vines, and 20 years for other plant varieties.</code> | <code>What are the requirements for importing a pet into Canada?</code> |
|
| 179 |
+
* Loss: [<code>MultipleNegativesRankingLoss</code>](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#multiplenegativesrankingloss) with these parameters:
|
| 180 |
+
```json
|
| 181 |
+
{
|
| 182 |
+
"scale": 20.0,
|
| 183 |
+
"similarity_fct": "cos_sim",
|
| 184 |
+
"gather_across_devices": false
|
| 185 |
+
}
|
| 186 |
+
```
|
| 187 |
+
|
| 188 |
+
### Training Hyperparameters
|
| 189 |
+
#### Non-Default Hyperparameters
|
| 190 |
+
|
| 191 |
+
- `per_device_train_batch_size`: 4
|
| 192 |
+
- `learning_rate`: 2e-05
|
| 193 |
+
- `num_train_epochs`: 10
|
| 194 |
+
- `warmup_ratio`: 0.1
|
| 195 |
+
- `prompts`: task: sentence similarity | query:
|
| 196 |
+
|
| 197 |
+
#### All Hyperparameters
|
| 198 |
+
<details><summary>Click to expand</summary>
|
| 199 |
+
|
| 200 |
+
- `overwrite_output_dir`: False
|
| 201 |
+
- `do_predict`: False
|
| 202 |
+
- `eval_strategy`: no
|
| 203 |
+
- `prediction_loss_only`: True
|
| 204 |
+
- `per_device_train_batch_size`: 4
|
| 205 |
+
- `per_device_eval_batch_size`: 8
|
| 206 |
+
- `per_gpu_train_batch_size`: None
|
| 207 |
+
- `per_gpu_eval_batch_size`: None
|
| 208 |
+
- `gradient_accumulation_steps`: 1
|
| 209 |
+
- `eval_accumulation_steps`: None
|
| 210 |
+
- `torch_empty_cache_steps`: None
|
| 211 |
+
- `learning_rate`: 2e-05
|
| 212 |
+
- `weight_decay`: 0.0
|
| 213 |
+
- `adam_beta1`: 0.9
|
| 214 |
+
- `adam_beta2`: 0.999
|
| 215 |
+
- `adam_epsilon`: 1e-08
|
| 216 |
+
- `max_grad_norm`: 1.0
|
| 217 |
+
- `num_train_epochs`: 10
|
| 218 |
+
- `max_steps`: -1
|
| 219 |
+
- `lr_scheduler_type`: linear
|
| 220 |
+
- `lr_scheduler_kwargs`: {}
|
| 221 |
+
- `warmup_ratio`: 0.1
|
| 222 |
+
- `warmup_steps`: 0
|
| 223 |
+
- `log_level`: passive
|
| 224 |
+
- `log_level_replica`: warning
|
| 225 |
+
- `log_on_each_node`: True
|
| 226 |
+
- `logging_nan_inf_filter`: True
|
| 227 |
+
- `save_safetensors`: True
|
| 228 |
+
- `save_on_each_node`: False
|
| 229 |
+
- `save_only_model`: False
|
| 230 |
+
- `restore_callback_states_from_checkpoint`: False
|
| 231 |
+
- `no_cuda`: False
|
| 232 |
+
- `use_cpu`: False
|
| 233 |
+
- `use_mps_device`: False
|
| 234 |
+
- `seed`: 42
|
| 235 |
+
- `data_seed`: None
|
| 236 |
+
- `jit_mode_eval`: False
|
| 237 |
+
- `use_ipex`: False
|
| 238 |
+
- `bf16`: False
|
| 239 |
+
- `fp16`: False
|
| 240 |
+
- `fp16_opt_level`: O1
|
| 241 |
+
- `half_precision_backend`: auto
|
| 242 |
+
- `bf16_full_eval`: False
|
| 243 |
+
- `fp16_full_eval`: False
|
| 244 |
+
- `tf32`: None
|
| 245 |
+
- `local_rank`: 0
|
| 246 |
+
- `ddp_backend`: None
|
| 247 |
+
- `tpu_num_cores`: None
|
| 248 |
+
- `tpu_metrics_debug`: False
|
| 249 |
+
- `debug`: []
|
| 250 |
+
- `dataloader_drop_last`: False
|
| 251 |
+
- `dataloader_num_workers`: 0
|
| 252 |
+
- `dataloader_prefetch_factor`: None
|
| 253 |
+
- `past_index`: -1
|
| 254 |
+
- `disable_tqdm`: False
|
| 255 |
+
- `remove_unused_columns`: True
|
| 256 |
+
- `label_names`: None
|
| 257 |
+
- `load_best_model_at_end`: False
|
| 258 |
+
- `ignore_data_skip`: False
|
| 259 |
+
- `fsdp`: []
|
| 260 |
+
- `fsdp_min_num_params`: 0
|
| 261 |
+
- `fsdp_config`: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
|
| 262 |
+
- `fsdp_transformer_layer_cls_to_wrap`: None
|
| 263 |
+
- `accelerator_config`: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
|
| 264 |
+
- `parallelism_config`: None
|
| 265 |
+
- `deepspeed`: None
|
| 266 |
+
- `label_smoothing_factor`: 0.0
|
| 267 |
+
- `optim`: adamw_torch
|
| 268 |
+
- `optim_args`: None
|
| 269 |
+
- `adafactor`: False
|
| 270 |
+
- `group_by_length`: False
|
| 271 |
+
- `length_column_name`: length
|
| 272 |
+
- `ddp_find_unused_parameters`: None
|
| 273 |
+
- `ddp_bucket_cap_mb`: None
|
| 274 |
+
- `ddp_broadcast_buffers`: False
|
| 275 |
+
- `dataloader_pin_memory`: True
|
| 276 |
+
- `dataloader_persistent_workers`: False
|
| 277 |
+
- `skip_memory_metrics`: True
|
| 278 |
+
- `use_legacy_prediction_loop`: False
|
| 279 |
+
- `push_to_hub`: False
|
| 280 |
+
- `resume_from_checkpoint`: None
|
| 281 |
+
- `hub_model_id`: None
|
| 282 |
+
- `hub_strategy`: every_save
|
| 283 |
+
- `hub_private_repo`: None
|
| 284 |
+
- `hub_always_push`: False
|
| 285 |
+
- `hub_revision`: None
|
| 286 |
+
- `gradient_checkpointing`: False
|
| 287 |
+
- `gradient_checkpointing_kwargs`: None
|
| 288 |
+
- `include_inputs_for_metrics`: False
|
| 289 |
+
- `include_for_metrics`: []
|
| 290 |
+
- `eval_do_concat_batches`: True
|
| 291 |
+
- `fp16_backend`: auto
|
| 292 |
+
- `push_to_hub_model_id`: None
|
| 293 |
+
- `push_to_hub_organization`: None
|
| 294 |
+
- `mp_parameters`:
|
| 295 |
+
- `auto_find_batch_size`: False
|
| 296 |
+
- `full_determinism`: False
|
| 297 |
+
- `torchdynamo`: None
|
| 298 |
+
- `ray_scope`: last
|
| 299 |
+
- `ddp_timeout`: 1800
|
| 300 |
+
- `torch_compile`: False
|
| 301 |
+
- `torch_compile_backend`: None
|
| 302 |
+
- `torch_compile_mode`: None
|
| 303 |
+
- `include_tokens_per_second`: False
|
| 304 |
+
- `include_num_input_tokens_seen`: False
|
| 305 |
+
- `neftune_noise_alpha`: None
|
| 306 |
+
- `optim_target_modules`: None
|
| 307 |
+
- `batch_eval_metrics`: False
|
| 308 |
+
- `eval_on_start`: False
|
| 309 |
+
- `use_liger_kernel`: False
|
| 310 |
+
- `liger_kernel_config`: None
|
| 311 |
+
- `eval_use_gather_object`: False
|
| 312 |
+
- `average_tokens_across_devices`: False
|
| 313 |
+
- `prompts`: task: sentence similarity | query:
|
| 314 |
+
- `batch_sampler`: batch_sampler
|
| 315 |
+
- `multi_dataset_batch_sampler`: proportional
|
| 316 |
+
- `router_mapping`: {}
|
| 317 |
+
- `learning_rate_mapping`: {}
|
| 318 |
+
|
| 319 |
+
</details>
|
| 320 |
+
|
| 321 |
+
### Training Logs
|
| 322 |
+
<details><summary>Click to expand</summary>
|
| 323 |
+
|
| 324 |
+
| Epoch | Step | Training Loss |
|
| 325 |
+
|:------:|:-----:|:-------------:|
|
| 326 |
+
| 0.0147 | 20 | 0.1138 |
|
| 327 |
+
| 0.0295 | 40 | 0.0682 |
|
| 328 |
+
| 0.0442 | 60 | 0.0099 |
|
| 329 |
+
| 0.0590 | 80 | 0.0212 |
|
| 330 |
+
| 0.0737 | 100 | 0.0447 |
|
| 331 |
+
| 0.0885 | 120 | 0.0047 |
|
| 332 |
+
| 0.1032 | 140 | 0.0057 |
|
| 333 |
+
| 0.1180 | 160 | 0.0025 |
|
| 334 |
+
| 0.1327 | 180 | 0.0036 |
|
| 335 |
+
| 0.1475 | 200 | 0.0062 |
|
| 336 |
+
| 0.1622 | 220 | 0.0285 |
|
| 337 |
+
| 0.1770 | 240 | 0.0069 |
|
| 338 |
+
| 0.1917 | 260 | 0.0008 |
|
| 339 |
+
| 0.2065 | 280 | 0.0104 |
|
| 340 |
+
| 0.2212 | 300 | 0.0019 |
|
| 341 |
+
| 0.2360 | 320 | 0.0576 |
|
| 342 |
+
| 0.2507 | 340 | 0.0088 |
|
| 343 |
+
| 0.2655 | 360 | 0.0046 |
|
| 344 |
+
| 0.2802 | 380 | 0.0014 |
|
| 345 |
+
| 0.2950 | 400 | 0.001 |
|
| 346 |
+
| 0.3097 | 420 | 0.0184 |
|
| 347 |
+
| 0.3245 | 440 | 0.0016 |
|
| 348 |
+
| 0.3392 | 460 | 0.0019 |
|
| 349 |
+
| 0.3540 | 480 | 0.0192 |
|
| 350 |
+
| 0.3687 | 500 | 0.0392 |
|
| 351 |
+
| 0.3835 | 520 | 0.0051 |
|
| 352 |
+
| 0.3982 | 540 | 0.0023 |
|
| 353 |
+
| 0.4130 | 560 | 0.0119 |
|
| 354 |
+
| 0.4277 | 580 | 0.0022 |
|
| 355 |
+
| 0.4425 | 600 | 0.0046 |
|
| 356 |
+
| 0.4572 | 620 | 0.0041 |
|
| 357 |
+
| 0.4720 | 640 | 0.0066 |
|
| 358 |
+
| 0.4867 | 660 | 0.0115 |
|
| 359 |
+
| 0.5015 | 680 | 0.0112 |
|
| 360 |
+
| 0.5162 | 700 | 0.0327 |
|
| 361 |
+
| 0.5310 | 720 | 0.0009 |
|
| 362 |
+
| 0.5457 | 740 | 0.0031 |
|
| 363 |
+
| 0.5605 | 760 | 0.0007 |
|
| 364 |
+
| 0.5752 | 780 | 0.0367 |
|
| 365 |
+
| 0.5900 | 800 | 0.0344 |
|
| 366 |
+
| 0.6047 | 820 | 0.0027 |
|
| 367 |
+
| 0.6195 | 840 | 0.0105 |
|
| 368 |
+
| 0.6342 | 860 | 0.0597 |
|
| 369 |
+
| 0.6490 | 880 | 0.0594 |
|
| 370 |
+
| 0.6637 | 900 | 0.0022 |
|
| 371 |
+
| 0.6785 | 920 | 0.0177 |
|
| 372 |
+
| 0.6932 | 940 | 0.0041 |
|
| 373 |
+
| 0.7080 | 960 | 0.0123 |
|
| 374 |
+
| 0.7227 | 980 | 0.0988 |
|
| 375 |
+
| 0.7375 | 1000 | 0.0248 |
|
| 376 |
+
| 0.7522 | 1020 | 0.0021 |
|
| 377 |
+
| 0.7670 | 1040 | 0.0376 |
|
| 378 |
+
| 0.7817 | 1060 | 0.0216 |
|
| 379 |
+
| 0.7965 | 1080 | 0.0779 |
|
| 380 |
+
| 0.8112 | 1100 | 0.0317 |
|
| 381 |
+
| 0.8260 | 1120 | 0.0233 |
|
| 382 |
+
| 0.8407 | 1140 | 0.0201 |
|
| 383 |
+
| 0.8555 | 1160 | 0.1391 |
|
| 384 |
+
| 0.8702 | 1180 | 0.0846 |
|
| 385 |
+
| 0.8850 | 1200 | 0.0064 |
|
| 386 |
+
| 0.8997 | 1220 | 0.1509 |
|
| 387 |
+
| 0.9145 | 1240 | 0.0196 |
|
| 388 |
+
| 0.9292 | 1260 | 0.0198 |
|
| 389 |
+
| 0.9440 | 1280 | 0.0174 |
|
| 390 |
+
| 0.9587 | 1300 | 0.117 |
|
| 391 |
+
| 0.9735 | 1320 | 0.0741 |
|
| 392 |
+
| 0.9882 | 1340 | 0.3282 |
|
| 393 |
+
| 1.0029 | 1360 | 0.0314 |
|
| 394 |
+
| 1.0177 | 1380 | 0.1522 |
|
| 395 |
+
| 1.0324 | 1400 | 0.0378 |
|
| 396 |
+
| 1.0472 | 1420 | 0.025 |
|
| 397 |
+
| 1.0619 | 1440 | 0.0442 |
|
| 398 |
+
| 1.0767 | 1460 | 0.0314 |
|
| 399 |
+
| 1.0914 | 1480 | 0.0745 |
|
| 400 |
+
| 1.1062 | 1500 | 0.0272 |
|
| 401 |
+
| 1.1209 | 1520 | 0.1248 |
|
| 402 |
+
| 1.1357 | 1540 | 0.299 |
|
| 403 |
+
| 1.1504 | 1560 | 0.0123 |
|
| 404 |
+
| 1.1652 | 1580 | 0.0245 |
|
| 405 |
+
| 1.1799 | 1600 | 0.0153 |
|
| 406 |
+
| 1.1947 | 1620 | 0.0171 |
|
| 407 |
+
| 1.2094 | 1640 | 0.0146 |
|
| 408 |
+
| 1.2242 | 1660 | 0.0313 |
|
| 409 |
+
| 1.2389 | 1680 | 0.0317 |
|
| 410 |
+
| 1.2537 | 1700 | 0.084 |
|
| 411 |
+
| 1.2684 | 1720 | 0.0569 |
|
| 412 |
+
| 1.2832 | 1740 | 0.1958 |
|
| 413 |
+
| 1.2979 | 1760 | 0.09 |
|
| 414 |
+
| 1.3127 | 1780 | 0.0526 |
|
| 415 |
+
| 1.3274 | 1800 | 0.0956 |
|
| 416 |
+
| 1.3422 | 1820 | 0.1601 |
|
| 417 |
+
| 1.3569 | 1840 | 0.156 |
|
| 418 |
+
| 1.3717 | 1860 | 0.0296 |
|
| 419 |
+
| 1.3864 | 1880 | 0.0391 |
|
| 420 |
+
| 1.4012 | 1900 | 0.0816 |
|
| 421 |
+
| 1.4159 | 1920 | 0.1262 |
|
| 422 |
+
| 1.4307 | 1940 | 0.1375 |
|
| 423 |
+
| 1.4454 | 1960 | 0.3373 |
|
| 424 |
+
| 1.4602 | 1980 | 0.094 |
|
| 425 |
+
| 1.4749 | 2000 | 0.0875 |
|
| 426 |
+
| 1.4897 | 2020 | 0.1161 |
|
| 427 |
+
| 1.5044 | 2040 | 0.1739 |
|
| 428 |
+
| 1.5192 | 2060 | 0.0526 |
|
| 429 |
+
| 1.5339 | 2080 | 0.1364 |
|
| 430 |
+
| 1.5487 | 2100 | 0.0508 |
|
| 431 |
+
| 1.5634 | 2120 | 0.0614 |
|
| 432 |
+
| 1.5782 | 2140 | 0.0589 |
|
| 433 |
+
| 1.5929 | 2160 | 0.0593 |
|
| 434 |
+
| 1.6077 | 2180 | 0.0078 |
|
| 435 |
+
| 1.6224 | 2200 | 0.2009 |
|
| 436 |
+
| 1.6372 | 2220 | 0.1356 |
|
| 437 |
+
| 1.6519 | 2240 | 0.1268 |
|
| 438 |
+
| 1.6667 | 2260 | 0.0257 |
|
| 439 |
+
| 1.6814 | 2280 | 0.0679 |
|
| 440 |
+
| 1.6962 | 2300 | 0.0229 |
|
| 441 |
+
| 1.7109 | 2320 | 0.1467 |
|
| 442 |
+
| 1.7257 | 2340 | 0.1239 |
|
| 443 |
+
| 1.7404 | 2360 | 0.0138 |
|
| 444 |
+
| 1.7552 | 2380 | 0.0997 |
|
| 445 |
+
| 1.7699 | 2400 | 0.0197 |
|
| 446 |
+
| 1.7847 | 2420 | 0.0358 |
|
| 447 |
+
| 1.7994 | 2440 | 0.0368 |
|
| 448 |
+
| 1.8142 | 2460 | 0.0755 |
|
| 449 |
+
| 1.8289 | 2480 | 0.1305 |
|
| 450 |
+
| 1.8437 | 2500 | 0.0164 |
|
| 451 |
+
| 1.8584 | 2520 | 0.1273 |
|
| 452 |
+
| 1.8732 | 2540 | 0.0255 |
|
| 453 |
+
| 1.8879 | 2560 | 0.0547 |
|
| 454 |
+
| 1.9027 | 2580 | 0.0494 |
|
| 455 |
+
| 1.9174 | 2600 | 0.1257 |
|
| 456 |
+
| 1.9322 | 2620 | 0.0434 |
|
| 457 |
+
| 1.9469 | 2640 | 0.0358 |
|
| 458 |
+
| 1.9617 | 2660 | 0.1272 |
|
| 459 |
+
| 1.9764 | 2680 | 0.022 |
|
| 460 |
+
| 1.9912 | 2700 | 0.054 |
|
| 461 |
+
| 2.0059 | 2720 | 0.0281 |
|
| 462 |
+
| 2.0206 | 2740 | 0.0229 |
|
| 463 |
+
| 2.0354 | 2760 | 0.0117 |
|
| 464 |
+
| 2.0501 | 2780 | 0.0242 |
|
| 465 |
+
| 2.0649 | 2800 | 0.0819 |
|
| 466 |
+
| 2.0796 | 2820 | 0.0625 |
|
| 467 |
+
| 2.0944 | 2840 | 0.0622 |
|
| 468 |
+
| 2.1091 | 2860 | 0.0316 |
|
| 469 |
+
| 2.1239 | 2880 | 0.2254 |
|
| 470 |
+
| 2.1386 | 2900 | 0.0857 |
|
| 471 |
+
| 2.1534 | 2920 | 0.026 |
|
| 472 |
+
| 2.1681 | 2940 | 0.0023 |
|
| 473 |
+
| 2.1829 | 2960 | 0.0053 |
|
| 474 |
+
| 2.1976 | 2980 | 0.004 |
|
| 475 |
+
| 2.2124 | 3000 | 0.0087 |
|
| 476 |
+
| 2.2271 | 3020 | 0.0068 |
|
| 477 |
+
| 2.2419 | 3040 | 0.0207 |
|
| 478 |
+
| 2.2566 | 3060 | 0.0522 |
|
| 479 |
+
| 2.2714 | 3080 | 0.005 |
|
| 480 |
+
| 2.2861 | 3100 | 0.038 |
|
| 481 |
+
| 2.3009 | 3120 | 0.0059 |
|
| 482 |
+
| 2.3156 | 3140 | 0.035 |
|
| 483 |
+
| 2.3304 | 3160 | 0.0603 |
|
| 484 |
+
| 2.3451 | 3180 | 0.0209 |
|
| 485 |
+
| 2.3599 | 3200 | 0.0103 |
|
| 486 |
+
| 2.3746 | 3220 | 0.0109 |
|
| 487 |
+
| 2.3894 | 3240 | 0.0755 |
|
| 488 |
+
| 2.4041 | 3260 | 0.0021 |
|
| 489 |
+
| 2.4189 | 3280 | 0.1019 |
|
| 490 |
+
| 2.4336 | 3300 | 0.1014 |
|
| 491 |
+
| 2.4484 | 3320 | 0.0198 |
|
| 492 |
+
| 2.4631 | 3340 | 0.0205 |
|
| 493 |
+
| 2.4779 | 3360 | 0.0431 |
|
| 494 |
+
| 2.4926 | 3380 | 0.1268 |
|
| 495 |
+
| 2.5074 | 3400 | 0.0097 |
|
| 496 |
+
| 2.5221 | 3420 | 0.0035 |
|
| 497 |
+
| 2.5369 | 3440 | 0.0292 |
|
| 498 |
+
| 2.5516 | 3460 | 0.0175 |
|
| 499 |
+
| 2.5664 | 3480 | 0.0687 |
|
| 500 |
+
| 2.5811 | 3500 | 0.021 |
|
| 501 |
+
| 2.5959 | 3520 | 0.0438 |
|
| 502 |
+
| 2.6106 | 3540 | 0.0024 |
|
| 503 |
+
| 2.6254 | 3560 | 0.0029 |
|
| 504 |
+
| 2.6401 | 3580 | 0.0267 |
|
| 505 |
+
| 2.6549 | 3600 | 0.0288 |
|
| 506 |
+
| 2.6696 | 3620 | 0.0058 |
|
| 507 |
+
| 2.6844 | 3640 | 0.0634 |
|
| 508 |
+
| 2.6991 | 3660 | 0.0404 |
|
| 509 |
+
| 2.7139 | 3680 | 0.0253 |
|
| 510 |
+
| 2.7286 | 3700 | 0.0127 |
|
| 511 |
+
| 2.7434 | 3720 | 0.0786 |
|
| 512 |
+
| 2.7581 | 3740 | 0.0739 |
|
| 513 |
+
| 2.7729 | 3760 | 0.0348 |
|
| 514 |
+
| 2.7876 | 3780 | 0.0697 |
|
| 515 |
+
| 2.8024 | 3800 | 0.0143 |
|
| 516 |
+
| 2.8171 | 3820 | 0.015 |
|
| 517 |
+
| 2.8319 | 3840 | 0.0139 |
|
| 518 |
+
| 2.8466 | 3860 | 0.023 |
|
| 519 |
+
| 2.8614 | 3880 | 0.0625 |
|
| 520 |
+
| 2.8761 | 3900 | 0.01 |
|
| 521 |
+
| 2.8909 | 3920 | 0.0656 |
|
| 522 |
+
| 2.9056 | 3940 | 0.0435 |
|
| 523 |
+
| 2.9204 | 3960 | 0.0367 |
|
| 524 |
+
| 2.9351 | 3980 | 0.0482 |
|
| 525 |
+
| 2.9499 | 4000 | 0.0557 |
|
| 526 |
+
| 2.9646 | 4020 | 0.1046 |
|
| 527 |
+
| 2.9794 | 4040 | 0.0578 |
|
| 528 |
+
| 2.9941 | 4060 | 0.0793 |
|
| 529 |
+
| 3.0088 | 4080 | 0.0053 |
|
| 530 |
+
| 3.0236 | 4100 | 0.0035 |
|
| 531 |
+
| 3.0383 | 4120 | 0.0095 |
|
| 532 |
+
| 3.0531 | 4140 | 0.001 |
|
| 533 |
+
| 3.0678 | 4160 | 0.0368 |
|
| 534 |
+
| 3.0826 | 4180 | 0.0251 |
|
| 535 |
+
| 3.0973 | 4200 | 0.0084 |
|
| 536 |
+
| 3.1121 | 4220 | 0.0224 |
|
| 537 |
+
| 3.1268 | 4240 | 0.0407 |
|
| 538 |
+
| 3.1416 | 4260 | 0.0611 |
|
| 539 |
+
| 3.1563 | 4280 | 0.0226 |
|
| 540 |
+
| 3.1711 | 4300 | 0.0092 |
|
| 541 |
+
| 3.1858 | 4320 | 0.0052 |
|
| 542 |
+
| 3.2006 | 4340 | 0.0578 |
|
| 543 |
+
| 3.2153 | 4360 | 0.0259 |
|
| 544 |
+
| 3.2301 | 4380 | 0.0002 |
|
| 545 |
+
| 3.2448 | 4400 | 0.0787 |
|
| 546 |
+
| 3.2596 | 4420 | 0.0194 |
|
| 547 |
+
| 3.2743 | 4440 | 0.0002 |
|
| 548 |
+
| 3.2891 | 4460 | 0.0006 |
|
| 549 |
+
| 3.3038 | 4480 | 0.0188 |
|
| 550 |
+
| 3.3186 | 4500 | 0.0722 |
|
| 551 |
+
| 3.3333 | 4520 | 0.0621 |
|
| 552 |
+
| 3.3481 | 4540 | 0.0017 |
|
| 553 |
+
| 3.3628 | 4560 | 0.1242 |
|
| 554 |
+
| 3.3776 | 4580 | 0.0057 |
|
| 555 |
+
| 3.3923 | 4600 | 0.0064 |
|
| 556 |
+
| 3.4071 | 4620 | 0.0016 |
|
| 557 |
+
| 3.4218 | 4640 | 0.0007 |
|
| 558 |
+
| 3.4366 | 4660 | 0.1187 |
|
| 559 |
+
| 3.4513 | 4680 | 0.0529 |
|
| 560 |
+
| 3.4661 | 4700 | 0.0294 |
|
| 561 |
+
| 3.4808 | 4720 | 0.1213 |
|
| 562 |
+
| 3.4956 | 4740 | 0.0221 |
|
| 563 |
+
| 3.5103 | 4760 | 0.0234 |
|
| 564 |
+
| 3.5251 | 4780 | 0.0034 |
|
| 565 |
+
| 3.5398 | 4800 | 0.0107 |
|
| 566 |
+
| 3.5546 | 4820 | 0.012 |
|
| 567 |
+
| 3.5693 | 4840 | 0.0351 |
|
| 568 |
+
| 3.5841 | 4860 | 0.0099 |
|
| 569 |
+
| 3.5988 | 4880 | 0.002 |
|
| 570 |
+
| 3.6136 | 4900 | 0.0024 |
|
| 571 |
+
| 3.6283 | 4920 | 0.0321 |
|
| 572 |
+
| 3.6431 | 4940 | 0.0008 |
|
| 573 |
+
| 3.6578 | 4960 | 0.038 |
|
| 574 |
+
| 3.6726 | 4980 | 0.0944 |
|
| 575 |
+
| 3.6873 | 5000 | 0.0227 |
|
| 576 |
+
| 3.7021 | 5020 | 0.0088 |
|
| 577 |
+
| 3.7168 | 5040 | 0.0573 |
|
| 578 |
+
| 3.7316 | 5060 | 0.2029 |
|
| 579 |
+
| 3.7463 | 5080 | 0.0522 |
|
| 580 |
+
| 3.7611 | 5100 | 0.012 |
|
| 581 |
+
| 3.7758 | 5120 | 0.0044 |
|
| 582 |
+
| 3.7906 | 5140 | 0.0178 |
|
| 583 |
+
| 3.8053 | 5160 | 0.0032 |
|
| 584 |
+
| 3.8201 | 5180 | 0.0375 |
|
| 585 |
+
| 3.8348 | 5200 | 0.0322 |
|
| 586 |
+
| 3.8496 | 5220 | 0.0066 |
|
| 587 |
+
| 3.8643 | 5240 | 0.0108 |
|
| 588 |
+
| 3.8791 | 5260 | 0.0143 |
|
| 589 |
+
| 3.8938 | 5280 | 0.0271 |
|
| 590 |
+
| 3.9086 | 5300 | 0.003 |
|
| 591 |
+
| 3.9233 | 5320 | 0.0183 |
|
| 592 |
+
| 3.9381 | 5340 | 0.0307 |
|
| 593 |
+
| 3.9528 | 5360 | 0.0026 |
|
| 594 |
+
| 3.9676 | 5380 | 0.0031 |
|
| 595 |
+
| 3.9823 | 5400 | 0.0011 |
|
| 596 |
+
| 3.9971 | 5420 | 0.0749 |
|
| 597 |
+
| 4.0118 | 5440 | 0.0192 |
|
| 598 |
+
| 4.0265 | 5460 | 0.037 |
|
| 599 |
+
| 4.0413 | 5480 | 0.0017 |
|
| 600 |
+
| 4.0560 | 5500 | 0.0013 |
|
| 601 |
+
| 4.0708 | 5520 | 0.0246 |
|
| 602 |
+
| 4.0855 | 5540 | 0.0007 |
|
| 603 |
+
| 4.1003 | 5560 | 0.045 |
|
| 604 |
+
| 4.1150 | 5580 | 0.038 |
|
| 605 |
+
| 4.1298 | 5600 | 0.0179 |
|
| 606 |
+
| 4.1445 | 5620 | 0.021 |
|
| 607 |
+
| 4.1593 | 5640 | 0.0012 |
|
| 608 |
+
| 4.1740 | 5660 | 0.0001 |
|
| 609 |
+
| 4.1888 | 5680 | 0.0004 |
|
| 610 |
+
| 4.2035 | 5700 | 0.0001 |
|
| 611 |
+
| 4.2183 | 5720 | 0.0021 |
|
| 612 |
+
| 4.2330 | 5740 | 0.0279 |
|
| 613 |
+
| 4.2478 | 5760 | 0.0044 |
|
| 614 |
+
| 4.2625 | 5780 | 0.0063 |
|
| 615 |
+
| 4.2773 | 5800 | 0.0046 |
|
| 616 |
+
| 4.2920 | 5820 | 0.0692 |
|
| 617 |
+
| 4.3068 | 5840 | 0.0007 |
|
| 618 |
+
| 4.3215 | 5860 | 0.0053 |
|
| 619 |
+
| 4.3363 | 5880 | 0.0288 |
|
| 620 |
+
| 4.3510 | 5900 | 0.0197 |
|
| 621 |
+
| 4.3658 | 5920 | 0.0007 |
|
| 622 |
+
| 4.3805 | 5940 | 0.002 |
|
| 623 |
+
| 4.3953 | 5960 | 0.0059 |
|
| 624 |
+
| 4.4100 | 5980 | 0.0258 |
|
| 625 |
+
| 4.4248 | 6000 | 0.001 |
|
| 626 |
+
| 4.4395 | 6020 | 0.0017 |
|
| 627 |
+
| 4.4543 | 6040 | 0.0024 |
|
| 628 |
+
| 4.4690 | 6060 | 0.0748 |
|
| 629 |
+
| 4.4838 | 6080 | 0.002 |
|
| 630 |
+
| 4.4985 | 6100 | 0.0498 |
|
| 631 |
+
| 4.5133 | 6120 | 0.0016 |
|
| 632 |
+
| 4.5280 | 6140 | 0.0018 |
|
| 633 |
+
| 4.5428 | 6160 | 0.0022 |
|
| 634 |
+
| 4.5575 | 6180 | 0.0012 |
|
| 635 |
+
| 4.5723 | 6200 | 0.009 |
|
| 636 |
+
| 4.5870 | 6220 | 0.0659 |
|
| 637 |
+
| 4.6018 | 6240 | 0.0121 |
|
| 638 |
+
| 4.6165 | 6260 | 0.0294 |
|
| 639 |
+
| 4.6313 | 6280 | 0.0002 |
|
| 640 |
+
| 4.6460 | 6300 | 0.0184 |
|
| 641 |
+
| 4.6608 | 6320 | 0.0158 |
|
| 642 |
+
| 4.6755 | 6340 | 0.0104 |
|
| 643 |
+
| 4.6903 | 6360 | 0.0498 |
|
| 644 |
+
| 4.7050 | 6380 | 0.0061 |
|
| 645 |
+
| 4.7198 | 6400 | 0.0305 |
|
| 646 |
+
| 4.7345 | 6420 | 0.0427 |
|
| 647 |
+
| 4.7493 | 6440 | 0.0004 |
|
| 648 |
+
| 4.7640 | 6460 | 0.0009 |
|
| 649 |
+
| 4.7788 | 6480 | 0.0001 |
|
| 650 |
+
| 4.7935 | 6500 | 0.0261 |
|
| 651 |
+
| 4.8083 | 6520 | 0.0019 |
|
| 652 |
+
| 4.8230 | 6540 | 0.0024 |
|
| 653 |
+
| 4.8378 | 6560 | 0.0228 |
|
| 654 |
+
| 4.8525 | 6580 | 0.0002 |
|
| 655 |
+
| 4.8673 | 6600 | 0.002 |
|
| 656 |
+
| 4.8820 | 6620 | 0.0005 |
|
| 657 |
+
| 4.8968 | 6640 | 0.0082 |
|
| 658 |
+
| 4.9115 | 6660 | 0.0119 |
|
| 659 |
+
| 4.9263 | 6680 | 0.0175 |
|
| 660 |
+
| 4.9410 | 6700 | 0.0011 |
|
| 661 |
+
| 4.9558 | 6720 | 0.0021 |
|
| 662 |
+
| 4.9705 | 6740 | 0.0106 |
|
| 663 |
+
| 4.9853 | 6760 | 0.018 |
|
| 664 |
+
| 5.0 | 6780 | 0.019 |
|
| 665 |
+
| 5.0147 | 6800 | 0.0629 |
|
| 666 |
+
| 5.0295 | 6820 | 0.0076 |
|
| 667 |
+
| 5.0442 | 6840 | 0.0004 |
|
| 668 |
+
| 5.0590 | 6860 | 0.0014 |
|
| 669 |
+
| 5.0737 | 6880 | 0.0012 |
|
| 670 |
+
| 5.0885 | 6900 | 0.0021 |
|
| 671 |
+
| 5.1032 | 6920 | 0.0032 |
|
| 672 |
+
| 5.1180 | 6940 | 0.0275 |
|
| 673 |
+
| 5.1327 | 6960 | 0.019 |
|
| 674 |
+
| 5.1475 | 6980 | 0.0006 |
|
| 675 |
+
| 5.1622 | 7000 | 0.0006 |
|
| 676 |
+
| 5.1770 | 7020 | 0.0049 |
|
| 677 |
+
| 5.1917 | 7040 | 0.0359 |
|
| 678 |
+
| 5.2065 | 7060 | 0.0028 |
|
| 679 |
+
| 5.2212 | 7080 | 0.0012 |
|
| 680 |
+
| 5.2360 | 7100 | 0.0138 |
|
| 681 |
+
| 5.2507 | 7120 | 0.0042 |
|
| 682 |
+
| 5.2655 | 7140 | 0.0003 |
|
| 683 |
+
| 5.2802 | 7160 | 0.0056 |
|
| 684 |
+
| 5.2950 | 7180 | 0.0329 |
|
| 685 |
+
| 5.3097 | 7200 | 0.0016 |
|
| 686 |
+
| 5.3245 | 7220 | 0.0092 |
|
| 687 |
+
| 5.3392 | 7240 | 0.0002 |
|
| 688 |
+
| 5.3540 | 7260 | 0.0211 |
|
| 689 |
+
| 5.3687 | 7280 | 0.019 |
|
| 690 |
+
| 5.3835 | 7300 | 0.0012 |
|
| 691 |
+
| 5.3982 | 7320 | 0.0002 |
|
| 692 |
+
| 5.4130 | 7340 | 0.0002 |
|
| 693 |
+
| 5.4277 | 7360 | 0.0143 |
|
| 694 |
+
| 5.4425 | 7380 | 0.0004 |
|
| 695 |
+
| 5.4572 | 7400 | 0.0004 |
|
| 696 |
+
| 5.4720 | 7420 | 0.0068 |
|
| 697 |
+
| 5.4867 | 7440 | 0.0201 |
|
| 698 |
+
| 5.5015 | 7460 | 0.0003 |
|
| 699 |
+
| 5.5162 | 7480 | 0.0042 |
|
| 700 |
+
| 5.5310 | 7500 | 0.0007 |
|
| 701 |
+
| 5.5457 | 7520 | 0.0664 |
|
| 702 |
+
| 5.5605 | 7540 | 0.0014 |
|
| 703 |
+
| 5.5752 | 7560 | 0.0175 |
|
| 704 |
+
| 5.5900 | 7580 | 0.0362 |
|
| 705 |
+
| 5.6047 | 7600 | 0.0225 |
|
| 706 |
+
| 5.6195 | 7620 | 0.0003 |
|
| 707 |
+
| 5.6342 | 7640 | 0.0025 |
|
| 708 |
+
| 5.6490 | 7660 | 0.0128 |
|
| 709 |
+
| 5.6637 | 7680 | 0.0013 |
|
| 710 |
+
| 5.6785 | 7700 | 0.0042 |
|
| 711 |
+
| 5.6932 | 7720 | 0.0012 |
|
| 712 |
+
| 5.7080 | 7740 | 0.0017 |
|
| 713 |
+
| 5.7227 | 7760 | 0.0039 |
|
| 714 |
+
| 5.7375 | 7780 | 0.0013 |
|
| 715 |
+
| 5.7522 | 7800 | 0.0008 |
|
| 716 |
+
| 5.7670 | 7820 | 0.006 |
|
| 717 |
+
| 5.7817 | 7840 | 0.0177 |
|
| 718 |
+
| 5.7965 | 7860 | 0.0189 |
|
| 719 |
+
| 5.8112 | 7880 | 0.0015 |
|
| 720 |
+
| 5.8260 | 7900 | 0.0003 |
|
| 721 |
+
| 5.8407 | 7920 | 0.001 |
|
| 722 |
+
| 5.8555 | 7940 | 0.0269 |
|
| 723 |
+
| 5.8702 | 7960 | 0.0006 |
|
| 724 |
+
| 5.8850 | 7980 | 0.0176 |
|
| 725 |
+
| 5.8997 | 8000 | 0.0048 |
|
| 726 |
+
| 5.9145 | 8020 | 0.0031 |
|
| 727 |
+
| 5.9292 | 8040 | 0.0056 |
|
| 728 |
+
| 5.9440 | 8060 | 0.0015 |
|
| 729 |
+
| 5.9587 | 8080 | 0.0102 |
|
| 730 |
+
| 5.9735 | 8100 | 0.0047 |
|
| 731 |
+
| 5.9882 | 8120 | 0.0339 |
|
| 732 |
+
| 6.0029 | 8140 | 0.0027 |
|
| 733 |
+
| 6.0177 | 8160 | 0.0008 |
|
| 734 |
+
| 6.0324 | 8180 | 0.0014 |
|
| 735 |
+
| 6.0472 | 8200 | 0.0001 |
|
| 736 |
+
| 6.0619 | 8220 | 0.0183 |
|
| 737 |
+
| 6.0767 | 8240 | 0.0142 |
|
| 738 |
+
| 6.0914 | 8260 | 0.0004 |
|
| 739 |
+
| 6.1062 | 8280 | 0.0392 |
|
| 740 |
+
| 6.1209 | 8300 | 0.0016 |
|
| 741 |
+
| 6.1357 | 8320 | 0.0025 |
|
| 742 |
+
| 6.1504 | 8340 | 0.0017 |
|
| 743 |
+
| 6.1652 | 8360 | 0.018 |
|
| 744 |
+
| 6.1799 | 8380 | 0.0031 |
|
| 745 |
+
| 6.1947 | 8400 | 0.0021 |
|
| 746 |
+
| 6.2094 | 8420 | 0.0244 |
|
| 747 |
+
| 6.2242 | 8440 | 0.0263 |
|
| 748 |
+
| 6.2389 | 8460 | 0.0183 |
|
| 749 |
+
| 6.2537 | 8480 | 0.0367 |
|
| 750 |
+
| 6.2684 | 8500 | 0.0009 |
|
| 751 |
+
| 6.2832 | 8520 | 0.0 |
|
| 752 |
+
| 6.2979 | 8540 | 0.0001 |
|
| 753 |
+
| 6.3127 | 8560 | 0.0011 |
|
| 754 |
+
| 6.3274 | 8580 | 0.0007 |
|
| 755 |
+
| 6.3422 | 8600 | 0.0004 |
|
| 756 |
+
| 6.3569 | 8620 | 0.0044 |
|
| 757 |
+
| 6.3717 | 8640 | 0.0174 |
|
| 758 |
+
| 6.3864 | 8660 | 0.0002 |
|
| 759 |
+
| 6.4012 | 8680 | 0.0176 |
|
| 760 |
+
| 6.4159 | 8700 | 0.0341 |
|
| 761 |
+
| 6.4307 | 8720 | 0.0015 |
|
| 762 |
+
| 6.4454 | 8740 | 0.0002 |
|
| 763 |
+
| 6.4602 | 8760 | 0.0043 |
|
| 764 |
+
| 6.4749 | 8780 | 0.0036 |
|
| 765 |
+
| 6.4897 | 8800 | 0.0001 |
|
| 766 |
+
| 6.5044 | 8820 | 0.0004 |
|
| 767 |
+
| 6.5192 | 8840 | 0.0474 |
|
| 768 |
+
| 6.5339 | 8860 | 0.0001 |
|
| 769 |
+
| 6.5487 | 8880 | 0.0003 |
|
| 770 |
+
| 6.5634 | 8900 | 0.0021 |
|
| 771 |
+
| 6.5782 | 8920 | 0.0014 |
|
| 772 |
+
| 6.5929 | 8940 | 0.0004 |
|
| 773 |
+
| 6.6077 | 8960 | 0.0176 |
|
| 774 |
+
| 6.6224 | 8980 | 0.0001 |
|
| 775 |
+
| 6.6372 | 9000 | 0.0009 |
|
| 776 |
+
| 6.6519 | 9020 | 0.0015 |
|
| 777 |
+
| 6.6667 | 9040 | 0.0003 |
|
| 778 |
+
| 6.6814 | 9060 | 0.0001 |
|
| 779 |
+
| 6.6962 | 9080 | 0.0016 |
|
| 780 |
+
| 6.7109 | 9100 | 0.0182 |
|
| 781 |
+
| 6.7257 | 9120 | 0.0002 |
|
| 782 |
+
| 6.7404 | 9140 | 0.0009 |
|
| 783 |
+
| 6.7552 | 9160 | 0.0018 |
|
| 784 |
+
| 6.7699 | 9180 | 0.0182 |
|
| 785 |
+
| 6.7847 | 9200 | 0.0 |
|
| 786 |
+
| 6.7994 | 9220 | 0.0206 |
|
| 787 |
+
| 6.8142 | 9240 | 0.0001 |
|
| 788 |
+
| 6.8289 | 9260 | 0.0002 |
|
| 789 |
+
| 6.8437 | 9280 | 0.0037 |
|
| 790 |
+
| 6.8584 | 9300 | 0.0238 |
|
| 791 |
+
| 6.8732 | 9320 | 0.0002 |
|
| 792 |
+
| 6.8879 | 9340 | 0.0 |
|
| 793 |
+
| 6.9027 | 9360 | 0.0002 |
|
| 794 |
+
| 6.9174 | 9380 | 0.019 |
|
| 795 |
+
| 6.9322 | 9400 | 0.0059 |
|
| 796 |
+
| 6.9469 | 9420 | 0.0002 |
|
| 797 |
+
| 6.9617 | 9440 | 0.0001 |
|
| 798 |
+
| 6.9764 | 9460 | 0.0004 |
|
| 799 |
+
| 6.9912 | 9480 | 0.0023 |
|
| 800 |
+
| 7.0059 | 9500 | 0.0006 |
|
| 801 |
+
| 7.0206 | 9520 | 0.0019 |
|
| 802 |
+
| 7.0354 | 9540 | 0.0176 |
|
| 803 |
+
| 7.0501 | 9560 | 0.0026 |
|
| 804 |
+
| 7.0649 | 9580 | 0.0014 |
|
| 805 |
+
| 7.0796 | 9600 | 0.0003 |
|
| 806 |
+
| 7.0944 | 9620 | 0.0001 |
|
| 807 |
+
| 7.1091 | 9640 | 0.0002 |
|
| 808 |
+
| 7.1239 | 9660 | 0.0362 |
|
| 809 |
+
| 7.1386 | 9680 | 0.001 |
|
| 810 |
+
| 7.1534 | 9700 | 0.0001 |
|
| 811 |
+
| 7.1681 | 9720 | 0.0002 |
|
| 812 |
+
| 7.1829 | 9740 | 0.0029 |
|
| 813 |
+
| 7.1976 | 9760 | 0.0002 |
|
| 814 |
+
| 7.2124 | 9780 | 0.0003 |
|
| 815 |
+
| 7.2271 | 9800 | 0.0027 |
|
| 816 |
+
| 7.2419 | 9820 | 0.0001 |
|
| 817 |
+
| 7.2566 | 9840 | 0.0001 |
|
| 818 |
+
| 7.2714 | 9860 | 0.0002 |
|
| 819 |
+
| 7.2861 | 9880 | 0.0124 |
|
| 820 |
+
| 7.3009 | 9900 | 0.0361 |
|
| 821 |
+
| 7.3156 | 9920 | 0.0039 |
|
| 822 |
+
| 7.3304 | 9940 | 0.0 |
|
| 823 |
+
| 7.3451 | 9960 | 0.0 |
|
| 824 |
+
| 7.3599 | 9980 | 0.0008 |
|
| 825 |
+
| 7.3746 | 10000 | 0.0002 |
|
| 826 |
+
| 7.3894 | 10020 | 0.0003 |
|
| 827 |
+
| 7.4041 | 10040 | 0.0001 |
|
| 828 |
+
| 7.4189 | 10060 | 0.0174 |
|
| 829 |
+
| 7.4336 | 10080 | 0.0015 |
|
| 830 |
+
| 7.4484 | 10100 | 0.0152 |
|
| 831 |
+
| 7.4631 | 10120 | 0.0351 |
|
| 832 |
+
| 7.4779 | 10140 | 0.0007 |
|
| 833 |
+
| 7.4926 | 10160 | 0.0005 |
|
| 834 |
+
| 7.5074 | 10180 | 0.0005 |
|
| 835 |
+
| 7.5221 | 10200 | 0.0001 |
|
| 836 |
+
| 7.5369 | 10220 | 0.0002 |
|
| 837 |
+
| 7.5516 | 10240 | 0.0001 |
|
| 838 |
+
| 7.5664 | 10260 | 0.001 |
|
| 839 |
+
| 7.5811 | 10280 | 0.0057 |
|
| 840 |
+
| 7.5959 | 10300 | 0.0012 |
|
| 841 |
+
| 7.6106 | 10320 | 0.0001 |
|
| 842 |
+
| 7.6254 | 10340 | 0.0005 |
|
| 843 |
+
| 7.6401 | 10360 | 0.0016 |
|
| 844 |
+
| 7.6549 | 10380 | 0.0072 |
|
| 845 |
+
| 7.6696 | 10400 | 0.0007 |
|
| 846 |
+
| 7.6844 | 10420 | 0.0001 |
|
| 847 |
+
| 7.6991 | 10440 | 0.0002 |
|
| 848 |
+
| 7.7139 | 10460 | 0.0036 |
|
| 849 |
+
| 7.7286 | 10480 | 0.0001 |
|
| 850 |
+
| 7.7434 | 10500 | 0.0002 |
|
| 851 |
+
| 7.7581 | 10520 | 0.0001 |
|
| 852 |
+
| 7.7729 | 10540 | 0.0001 |
|
| 853 |
+
| 7.7876 | 10560 | 0.0007 |
|
| 854 |
+
| 7.8024 | 10580 | 0.0002 |
|
| 855 |
+
| 7.8171 | 10600 | 0.0001 |
|
| 856 |
+
| 7.8319 | 10620 | 0.018 |
|
| 857 |
+
| 7.8466 | 10640 | 0.0882 |
|
| 858 |
+
| 7.8614 | 10660 | 0.0006 |
|
| 859 |
+
| 7.8761 | 10680 | 0.0001 |
|
| 860 |
+
| 7.8909 | 10700 | 0.0001 |
|
| 861 |
+
| 7.9056 | 10720 | 0.0001 |
|
| 862 |
+
| 7.9204 | 10740 | 0.0176 |
|
| 863 |
+
| 7.9351 | 10760 | 0.0002 |
|
| 864 |
+
| 7.9499 | 10780 | 0.0231 |
|
| 865 |
+
| 7.9646 | 10800 | 0.0002 |
|
| 866 |
+
| 7.9794 | 10820 | 0.0002 |
|
| 867 |
+
| 7.9941 | 10840 | 0.0 |
|
| 868 |
+
| 8.0088 | 10860 | 0.0001 |
|
| 869 |
+
| 8.0236 | 10880 | 0.0001 |
|
| 870 |
+
| 8.0383 | 10900 | 0.0003 |
|
| 871 |
+
| 8.0531 | 10920 | 0.0172 |
|
| 872 |
+
| 8.0678 | 10940 | 0.0002 |
|
| 873 |
+
| 8.0826 | 10960 | 0.018 |
|
| 874 |
+
| 8.0973 | 10980 | 0.0174 |
|
| 875 |
+
| 8.1121 | 11000 | 0.0001 |
|
| 876 |
+
| 8.1268 | 11020 | 0.0174 |
|
| 877 |
+
| 8.1416 | 11040 | 0.0 |
|
| 878 |
+
| 8.1563 | 11060 | 0.0039 |
|
| 879 |
+
| 8.1711 | 11080 | 0.0001 |
|
| 880 |
+
| 8.1858 | 11100 | 0.0 |
|
| 881 |
+
| 8.2006 | 11120 | 0.002 |
|
| 882 |
+
| 8.2153 | 11140 | 0.0176 |
|
| 883 |
+
| 8.2301 | 11160 | 0.0022 |
|
| 884 |
+
| 8.2448 | 11180 | 0.0001 |
|
| 885 |
+
| 8.2596 | 11200 | 0.0 |
|
| 886 |
+
| 8.2743 | 11220 | 0.0027 |
|
| 887 |
+
| 8.2891 | 11240 | 0.0198 |
|
| 888 |
+
| 8.3038 | 11260 | 0.0 |
|
| 889 |
+
| 8.3186 | 11280 | 0.0003 |
|
| 890 |
+
| 8.3333 | 11300 | 0.0223 |
|
| 891 |
+
| 8.3481 | 11320 | 0.0092 |
|
| 892 |
+
| 8.3628 | 11340 | 0.0001 |
|
| 893 |
+
| 8.3776 | 11360 | 0.0009 |
|
| 894 |
+
| 8.3923 | 11380 | 0.0014 |
|
| 895 |
+
| 8.4071 | 11400 | 0.0006 |
|
| 896 |
+
| 8.4218 | 11420 | 0.0006 |
|
| 897 |
+
| 8.4366 | 11440 | 0.0006 |
|
| 898 |
+
| 8.4513 | 11460 | 0.0005 |
|
| 899 |
+
| 8.4661 | 11480 | 0.0192 |
|
| 900 |
+
| 8.4808 | 11500 | 0.0347 |
|
| 901 |
+
| 8.4956 | 11520 | 0.0009 |
|
| 902 |
+
| 8.5103 | 11540 | 0.0002 |
|
| 903 |
+
| 8.5251 | 11560 | 0.0 |
|
| 904 |
+
| 8.5398 | 11580 | 0.0 |
|
| 905 |
+
| 8.5546 | 11600 | 0.0002 |
|
| 906 |
+
| 8.5693 | 11620 | 0.0174 |
|
| 907 |
+
| 8.5841 | 11640 | 0.0001 |
|
| 908 |
+
| 8.5988 | 11660 | 0.0171 |
|
| 909 |
+
| 8.6136 | 11680 | 0.0001 |
|
| 910 |
+
| 8.6283 | 11700 | 0.0001 |
|
| 911 |
+
| 8.6431 | 11720 | 0.0428 |
|
| 912 |
+
| 8.6578 | 11740 | 0.0003 |
|
| 913 |
+
| 8.6726 | 11760 | 0.0 |
|
| 914 |
+
| 8.6873 | 11780 | 0.0001 |
|
| 915 |
+
| 8.7021 | 11800 | 0.0176 |
|
| 916 |
+
| 8.7168 | 11820 | 0.0358 |
|
| 917 |
+
| 8.7316 | 11840 | 0.0002 |
|
| 918 |
+
| 8.7463 | 11860 | 0.0002 |
|
| 919 |
+
| 8.7611 | 11880 | 0.0001 |
|
| 920 |
+
| 8.7758 | 11900 | 0.0002 |
|
| 921 |
+
| 8.7906 | 11920 | 0.0015 |
|
| 922 |
+
| 8.8053 | 11940 | 0.0001 |
|
| 923 |
+
| 8.8201 | 11960 | 0.0001 |
|
| 924 |
+
| 8.8348 | 11980 | 0.0112 |
|
| 925 |
+
| 8.8496 | 12000 | 0.0033 |
|
| 926 |
+
| 8.8643 | 12020 | 0.0001 |
|
| 927 |
+
| 8.8791 | 12040 | 0.001 |
|
| 928 |
+
| 8.8938 | 12060 | 0.0174 |
|
| 929 |
+
| 8.9086 | 12080 | 0.0001 |
|
| 930 |
+
| 8.9233 | 12100 | 0.0002 |
|
| 931 |
+
| 8.9381 | 12120 | 0.0001 |
|
| 932 |
+
| 8.9528 | 12140 | 0.0001 |
|
| 933 |
+
| 8.9676 | 12160 | 0.0222 |
|
| 934 |
+
| 8.9823 | 12180 | 0.0003 |
|
| 935 |
+
| 8.9971 | 12200 | 0.0001 |
|
| 936 |
+
| 9.0118 | 12220 | 0.0 |
|
| 937 |
+
| 9.0265 | 12240 | 0.0001 |
|
| 938 |
+
| 9.0413 | 12260 | 0.0182 |
|
| 939 |
+
| 9.0560 | 12280 | 0.0174 |
|
| 940 |
+
| 9.0708 | 12300 | 0.0 |
|
| 941 |
+
| 9.0855 | 12320 | 0.0 |
|
| 942 |
+
| 9.1003 | 12340 | 0.0023 |
|
| 943 |
+
| 9.1150 | 12360 | 0.0001 |
|
| 944 |
+
| 9.1298 | 12380 | 0.0248 |
|
| 945 |
+
| 9.1445 | 12400 | 0.0 |
|
| 946 |
+
| 9.1593 | 12420 | 0.0 |
|
| 947 |
+
| 9.1740 | 12440 | 0.0 |
|
| 948 |
+
| 9.1888 | 12460 | 0.0001 |
|
| 949 |
+
| 9.2035 | 12480 | 0.0087 |
|
| 950 |
+
| 9.2183 | 12500 | 0.0 |
|
| 951 |
+
| 9.2330 | 12520 | 0.0003 |
|
| 952 |
+
| 9.2478 | 12540 | 0.0174 |
|
| 953 |
+
| 9.2625 | 12560 | 0.0 |
|
| 954 |
+
| 9.2773 | 12580 | 0.0006 |
|
| 955 |
+
| 9.2920 | 12600 | 0.0001 |
|
| 956 |
+
| 9.3068 | 12620 | 0.0053 |
|
| 957 |
+
| 9.3215 | 12640 | 0.0 |
|
| 958 |
+
| 9.3363 | 12660 | 0.0174 |
|
| 959 |
+
| 9.3510 | 12680 | 0.0001 |
|
| 960 |
+
| 9.3658 | 12700 | 0.0002 |
|
| 961 |
+
| 9.3805 | 12720 | 0.0001 |
|
| 962 |
+
| 9.3953 | 12740 | 0.0001 |
|
| 963 |
+
| 9.4100 | 12760 | 0.0001 |
|
| 964 |
+
| 9.4248 | 12780 | 0.0002 |
|
| 965 |
+
| 9.4395 | 12800 | 0.0002 |
|
| 966 |
+
| 9.4543 | 12820 | 0.0023 |
|
| 967 |
+
| 9.4690 | 12840 | 0.0 |
|
| 968 |
+
| 9.4838 | 12860 | 0.0018 |
|
| 969 |
+
| 9.4985 | 12880 | 0.0028 |
|
| 970 |
+
| 9.5133 | 12900 | 0.0174 |
|
| 971 |
+
| 9.5280 | 12920 | 0.0001 |
|
| 972 |
+
| 9.5428 | 12940 | 0.0001 |
|
| 973 |
+
| 9.5575 | 12960 | 0.0174 |
|
| 974 |
+
| 9.5723 | 12980 | 0.0003 |
|
| 975 |
+
| 9.5870 | 13000 | 0.0 |
|
| 976 |
+
| 9.6018 | 13020 | 0.0174 |
|
| 977 |
+
| 9.6165 | 13040 | 0.0001 |
|
| 978 |
+
| 9.6313 | 13060 | 0.0 |
|
| 979 |
+
| 9.6460 | 13080 | 0.0001 |
|
| 980 |
+
| 9.6608 | 13100 | 0.0174 |
|
| 981 |
+
| 9.6755 | 13120 | 0.0173 |
|
| 982 |
+
| 9.6903 | 13140 | 0.0 |
|
| 983 |
+
| 9.7050 | 13160 | 0.0005 |
|
| 984 |
+
| 9.7198 | 13180 | 0.0001 |
|
| 985 |
+
| 9.7345 | 13200 | 0.0002 |
|
| 986 |
+
| 9.7493 | 13220 | 0.0 |
|
| 987 |
+
| 9.7640 | 13240 | 0.0001 |
|
| 988 |
+
| 9.7788 | 13260 | 0.0 |
|
| 989 |
+
| 9.7935 | 13280 | 0.0026 |
|
| 990 |
+
| 9.8083 | 13300 | 0.0003 |
|
| 991 |
+
| 9.8230 | 13320 | 0.0001 |
|
| 992 |
+
| 9.8378 | 13340 | 0.0174 |
|
| 993 |
+
| 9.8525 | 13360 | 0.0099 |
|
| 994 |
+
| 9.8673 | 13380 | 0.0002 |
|
| 995 |
+
| 9.8820 | 13400 | 0.0 |
|
| 996 |
+
| 9.8968 | 13420 | 0.0032 |
|
| 997 |
+
| 9.9115 | 13440 | 0.0177 |
|
| 998 |
+
| 9.9263 | 13460 | 0.0175 |
|
| 999 |
+
| 9.9410 | 13480 | 0.0176 |
|
| 1000 |
+
| 9.9558 | 13500 | 0.0001 |
|
| 1001 |
+
| 9.9705 | 13520 | 0.0 |
|
| 1002 |
+
| 9.9853 | 13540 | 0.0011 |
|
| 1003 |
+
| 10.0 | 13560 | 0.0174 |
|
| 1004 |
+
|
| 1005 |
+
</details>
|
| 1006 |
+
|
| 1007 |
+
### Framework Versions
|
| 1008 |
+
- Python: 3.11.13
|
| 1009 |
+
- Sentence Transformers: 5.1.1
|
| 1010 |
+
- Transformers: 4.57.0.dev0
|
| 1011 |
+
- PyTorch: 2.6.0+cu124
|
| 1012 |
+
- Accelerate: 1.8.1
|
| 1013 |
+
- Datasets: 3.6.0
|
| 1014 |
+
- Tokenizers: 0.22.1
|
| 1015 |
+
|
| 1016 |
+
## Citation
|
| 1017 |
+
|
| 1018 |
+
### BibTeX
|
| 1019 |
+
|
| 1020 |
+
#### Sentence Transformers
|
| 1021 |
+
```bibtex
|
| 1022 |
+
@inproceedings{reimers-2019-sentence-bert,
|
| 1023 |
+
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
|
| 1024 |
+
author = "Reimers, Nils and Gurevych, Iryna",
|
| 1025 |
+
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
|
| 1026 |
+
month = "11",
|
| 1027 |
+
year = "2019",
|
| 1028 |
+
publisher = "Association for Computational Linguistics",
|
| 1029 |
+
url = "https://arxiv.org/abs/1908.10084",
|
| 1030 |
+
}
|
| 1031 |
+
```
|
| 1032 |
+
|
| 1033 |
+
#### MultipleNegativesRankingLoss
|
| 1034 |
+
```bibtex
|
| 1035 |
+
@misc{henderson2017efficient,
|
| 1036 |
+
title={Efficient Natural Language Response Suggestion for Smart Reply},
|
| 1037 |
+
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},
|
| 1038 |
+
year={2017},
|
| 1039 |
+
eprint={1705.00652},
|
| 1040 |
+
archivePrefix={arXiv},
|
| 1041 |
+
primaryClass={cs.CL}
|
| 1042 |
+
}
|
| 1043 |
+
```
|
| 1044 |
+
|
| 1045 |
+
<!--
|
| 1046 |
+
## Glossary
|
| 1047 |
+
|
| 1048 |
+
*Clearly define terms in order to be accessible across audiences.*
|
| 1049 |
+
-->
|
| 1050 |
+
|
| 1051 |
+
<!--
|
| 1052 |
+
## Model Card Authors
|
| 1053 |
+
|
| 1054 |
+
*Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
|
| 1055 |
+
-->
|
| 1056 |
+
|
| 1057 |
+
<!--
|
| 1058 |
+
## Model Card Contact
|
| 1059 |
+
|
| 1060 |
+
*Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
|
| 1061 |
+
-->
|
added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<image_soft_token>": 262144
|
| 3 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_sliding_window_pattern": 6,
|
| 3 |
+
"architectures": [
|
| 4 |
+
"Gemma3TextModel"
|
| 5 |
+
],
|
| 6 |
+
"attention_bias": false,
|
| 7 |
+
"attention_dropout": 0.0,
|
| 8 |
+
"attn_logit_softcapping": null,
|
| 9 |
+
"bos_token_id": 2,
|
| 10 |
+
"dtype": "float32",
|
| 11 |
+
"eos_token_id": 1,
|
| 12 |
+
"final_logit_softcapping": null,
|
| 13 |
+
"head_dim": 256,
|
| 14 |
+
"hidden_activation": "gelu_pytorch_tanh",
|
| 15 |
+
"hidden_size": 768,
|
| 16 |
+
"initializer_range": 0.02,
|
| 17 |
+
"intermediate_size": 1152,
|
| 18 |
+
"layer_types": [
|
| 19 |
+
"sliding_attention",
|
| 20 |
+
"sliding_attention",
|
| 21 |
+
"sliding_attention",
|
| 22 |
+
"sliding_attention",
|
| 23 |
+
"sliding_attention",
|
| 24 |
+
"full_attention",
|
| 25 |
+
"sliding_attention",
|
| 26 |
+
"sliding_attention",
|
| 27 |
+
"sliding_attention",
|
| 28 |
+
"sliding_attention",
|
| 29 |
+
"sliding_attention",
|
| 30 |
+
"full_attention",
|
| 31 |
+
"sliding_attention",
|
| 32 |
+
"sliding_attention",
|
| 33 |
+
"sliding_attention",
|
| 34 |
+
"sliding_attention",
|
| 35 |
+
"sliding_attention",
|
| 36 |
+
"full_attention",
|
| 37 |
+
"sliding_attention",
|
| 38 |
+
"sliding_attention",
|
| 39 |
+
"sliding_attention",
|
| 40 |
+
"sliding_attention",
|
| 41 |
+
"sliding_attention",
|
| 42 |
+
"full_attention"
|
| 43 |
+
],
|
| 44 |
+
"max_position_embeddings": 2048,
|
| 45 |
+
"model_type": "gemma3_text",
|
| 46 |
+
"num_attention_heads": 3,
|
| 47 |
+
"num_hidden_layers": 24,
|
| 48 |
+
"num_key_value_heads": 1,
|
| 49 |
+
"pad_token_id": 0,
|
| 50 |
+
"query_pre_attn_scalar": 256,
|
| 51 |
+
"rms_norm_eps": 1e-06,
|
| 52 |
+
"rope_local_base_freq": 10000.0,
|
| 53 |
+
"rope_scaling": null,
|
| 54 |
+
"rope_theta": 1000000.0,
|
| 55 |
+
"sliding_window": 257,
|
| 56 |
+
"transformers_version": "4.57.0.dev0",
|
| 57 |
+
"use_bidirectional_attention": true,
|
| 58 |
+
"use_cache": true,
|
| 59 |
+
"vocab_size": 262144
|
| 60 |
+
}
|
config_sentence_transformers.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "SentenceTransformer",
|
| 3 |
+
"__version__": {
|
| 4 |
+
"sentence_transformers": "5.1.1",
|
| 5 |
+
"transformers": "4.57.0.dev0",
|
| 6 |
+
"pytorch": "2.6.0+cu124"
|
| 7 |
+
},
|
| 8 |
+
"prompts": {
|
| 9 |
+
"query": "task: search result | query: ",
|
| 10 |
+
"document": "title: none | text: ",
|
| 11 |
+
"BitextMining": "task: search result | query: ",
|
| 12 |
+
"Clustering": "task: clustering | query: ",
|
| 13 |
+
"Classification": "task: classification | query: ",
|
| 14 |
+
"InstructionRetrieval": "task: code retrieval | query: ",
|
| 15 |
+
"MultilabelClassification": "task: classification | query: ",
|
| 16 |
+
"PairClassification": "task: sentence similarity | query: ",
|
| 17 |
+
"Reranking": "task: search result | query: ",
|
| 18 |
+
"Retrieval": "task: search result | query: ",
|
| 19 |
+
"Retrieval-query": "task: search result | query: ",
|
| 20 |
+
"Retrieval-document": "title: none | text: ",
|
| 21 |
+
"STS": "task: sentence similarity | query: ",
|
| 22 |
+
"Summarization": "task: summarization | query: "
|
| 23 |
+
},
|
| 24 |
+
"default_prompt_name": null,
|
| 25 |
+
"similarity_fn_name": "cosine"
|
| 26 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b54d41b5529c7c852d8958e354acd80db0818ed0772c58a4808135bcdcd0027
|
| 3 |
+
size 1211486072
|
modules.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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_Dense",
|
| 18 |
+
"type": "sentence_transformers.models.Dense"
|
| 19 |
+
},
|
| 20 |
+
{
|
| 21 |
+
"idx": 3,
|
| 22 |
+
"name": "3",
|
| 23 |
+
"path": "3_Dense",
|
| 24 |
+
"type": "sentence_transformers.models.Dense"
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"idx": 4,
|
| 28 |
+
"name": "4",
|
| 29 |
+
"path": "4_Normalize",
|
| 30 |
+
"type": "sentence_transformers.models.Normalize"
|
| 31 |
+
}
|
| 32 |
+
]
|
sentence_bert_config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"max_seq_length": 2048,
|
| 3 |
+
"do_lower_case": false
|
| 4 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"boi_token": "<start_of_image>",
|
| 3 |
+
"bos_token": {
|
| 4 |
+
"content": "<bos>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false
|
| 9 |
+
},
|
| 10 |
+
"eoi_token": "<end_of_image>",
|
| 11 |
+
"eos_token": {
|
| 12 |
+
"content": "<eos>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false
|
| 17 |
+
},
|
| 18 |
+
"image_token": "<image_soft_token>",
|
| 19 |
+
"pad_token": {
|
| 20 |
+
"content": "<pad>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false
|
| 25 |
+
},
|
| 26 |
+
"unk_token": {
|
| 27 |
+
"content": "<unk>",
|
| 28 |
+
"lstrip": false,
|
| 29 |
+
"normalized": false,
|
| 30 |
+
"rstrip": false,
|
| 31 |
+
"single_word": false
|
| 32 |
+
}
|
| 33 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:216e2a79606fe879c9f17c529c71cd241338407fd5646b595ffd3c4b9ea1d503
|
| 3 |
+
size 33385262
|
tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
|
| 3 |
+
size 4689074
|
tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|