Commit
·
246ca0c
1
Parent(s):
9c8465f
Upload folder using huggingface_hub
Browse files- README.md +2 -2
- pytorch_model.bin +1 -1
- sentence_bert_config.json +1 -1
- tokenizer.json +1 -1
README.md
CHANGED
@@ -85,7 +85,7 @@ The model was trained with the parameters:
|
|
85 |
|
86 |
**DataLoader**:
|
87 |
|
88 |
-
`torch.utils.data.dataloader.DataLoader` of length
|
89 |
```
|
90 |
{'batch_size': 224, 'sampler': 'torch.utils.data.sampler.RandomSampler', 'batch_sampler': 'torch.utils.data.sampler.BatchSampler'}
|
91 |
```
|
@@ -119,7 +119,7 @@ Parameters of the fit()-Method:
|
|
119 |
## Full Model Architecture
|
120 |
```
|
121 |
SentenceTransformer(
|
122 |
-
(0): Transformer({'max_seq_length':
|
123 |
(1): Pooling({'word_embedding_dimension': 256, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False})
|
124 |
)
|
125 |
```
|
|
|
85 |
|
86 |
**DataLoader**:
|
87 |
|
88 |
+
`torch.utils.data.dataloader.DataLoader` of length 103 with parameters:
|
89 |
```
|
90 |
{'batch_size': 224, 'sampler': 'torch.utils.data.sampler.RandomSampler', 'batch_sampler': 'torch.utils.data.sampler.BatchSampler'}
|
91 |
```
|
|
|
119 |
## Full Model Architecture
|
120 |
```
|
121 |
SentenceTransformer(
|
122 |
+
(0): Transformer({'max_seq_length': 60, 'do_lower_case': False}) with Transformer model: BertModel
|
123 |
(1): Pooling({'word_embedding_dimension': 256, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False})
|
124 |
)
|
125 |
```
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 46223689
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4e4bca2f6b31aa84e9baabdabdfba3cebbe7d603dc36ee1430a6d6ae7a7a6d9c
|
3 |
size 46223689
|
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": 60,
|
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": 60,
|
6 |
"strategy": "LongestFirst",
|
7 |
"stride": 0
|
8 |
},
|