Add new SentenceTransformer model.
Browse files- README.md +3 -3
- model.safetensors +1 -1
- sentence_bert_config.json +1 -1
- tokenizer.json +1 -1
README.md
CHANGED
@@ -101,7 +101,7 @@ The model was trained with the parameters:
|
|
101 |
Parameters of the fit()-Method:
|
102 |
```
|
103 |
{
|
104 |
-
"epochs":
|
105 |
"evaluation_steps": 0,
|
106 |
"evaluator": "NoneType",
|
107 |
"max_grad_norm": 1,
|
@@ -111,7 +111,7 @@ Parameters of the fit()-Method:
|
|
111 |
},
|
112 |
"scheduler": "WarmupLinear",
|
113 |
"steps_per_epoch": null,
|
114 |
-
"warmup_steps":
|
115 |
"weight_decay": 0.01
|
116 |
}
|
117 |
```
|
@@ -120,7 +120,7 @@ Parameters of the fit()-Method:
|
|
120 |
## Full Model Architecture
|
121 |
```
|
122 |
SentenceTransformer(
|
123 |
-
(0): Transformer({'max_seq_length':
|
124 |
(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})
|
125 |
)
|
126 |
```
|
|
|
101 |
Parameters of the fit()-Method:
|
102 |
```
|
103 |
{
|
104 |
+
"epochs": 10,
|
105 |
"evaluation_steps": 0,
|
106 |
"evaluator": "NoneType",
|
107 |
"max_grad_norm": 1,
|
|
|
111 |
},
|
112 |
"scheduler": "WarmupLinear",
|
113 |
"steps_per_epoch": null,
|
114 |
+
"warmup_steps": 102,
|
115 |
"weight_decay": 0.01
|
116 |
}
|
117 |
```
|
|
|
120 |
## Full Model Architecture
|
121 |
```
|
122 |
SentenceTransformer(
|
123 |
+
(0): Transformer({'max_seq_length': 64, 'do_lower_case': False}) with Transformer model: RobertaModel
|
124 |
(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})
|
125 |
)
|
126 |
```
|
model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 540015464
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:24da9733f9296221e8c390c10cf7b2f425c4027b20b5a64acb6be77c68957c9b
|
3 |
size 540015464
|
sentence_bert_config.json
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
{
|
2 |
-
"max_seq_length":
|
3 |
"do_lower_case": false
|
4 |
}
|
|
|
1 |
{
|
2 |
+
"max_seq_length": 64,
|
3 |
"do_lower_case": false
|
4 |
}
|
tokenizer.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
"version": "1.0",
|
3 |
"truncation": {
|
4 |
"direction": "Right",
|
5 |
-
"max_length":
|
6 |
"strategy": "LongestFirst",
|
7 |
"stride": 0
|
8 |
},
|
|
|
2 |
"version": "1.0",
|
3 |
"truncation": {
|
4 |
"direction": "Right",
|
5 |
+
"max_length": 64,
|
6 |
"strategy": "LongestFirst",
|
7 |
"stride": 0
|
8 |
},
|