kardosdrur commited on
Commit
207f8e0
1 Parent(s): 0cd19d4

Add new SentenceTransformer model.

Browse files
README.md CHANGED
@@ -85,9 +85,9 @@ The model was trained with the parameters:
85
 
86
  **DataLoader**:
87
 
88
- `torch.utils.data.dataloader.DataLoader` of length 306 with parameters:
89
  ```
90
- {'batch_size': 32, 'sampler': 'torch.utils.data.sampler.RandomSampler', 'batch_sampler': 'torch.utils.data.sampler.BatchSampler'}
91
  ```
92
 
93
  **Loss**:
@@ -100,7 +100,7 @@ The model was trained with the parameters:
100
  Parameters of the fit()-Method:
101
  ```
102
  {
103
- "epochs": 1,
104
  "evaluation_steps": 0,
105
  "evaluator": "NoneType",
106
  "max_grad_norm": 1,
 
85
 
86
  **DataLoader**:
87
 
88
+ `torch.utils.data.dataloader.DataLoader` of length 23 with parameters:
89
  ```
90
+ {'batch_size': 256, 'sampler': 'torch.utils.data.sampler.RandomSampler', 'batch_sampler': 'torch.utils.data.sampler.BatchSampler'}
91
  ```
92
 
93
  **Loss**:
 
100
  Parameters of the fit()-Method:
101
  ```
102
  {
103
+ "epochs": 5,
104
  "evaluation_steps": 0,
105
  "evaluator": "NoneType",
106
  "max_grad_norm": 1,
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "finetuned_model/",
3
  "architectures": [
4
  "ElectraModel"
5
  ],
@@ -23,7 +23,7 @@
23
  "summary_type": "first",
24
  "summary_use_proj": true,
25
  "torch_dtype": "float32",
26
- "transformers_version": "4.34.0",
27
  "type_vocab_size": 2,
28
  "use_cache": true,
29
  "vocab_size": 96105
 
1
  {
2
+ "_name_or_path": "model/",
3
  "architectures": [
4
  "ElectraModel"
5
  ],
 
23
  "summary_type": "first",
24
  "summary_use_proj": true,
25
  "torch_dtype": "float32",
26
+ "transformers_version": "4.34.1",
27
  "type_vocab_size": 2,
28
  "use_cache": true,
29
  "vocab_size": 96105
config_sentence_transformers.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "__version__": {
3
  "sentence_transformers": "2.2.2",
4
- "transformers": "4.34.0",
5
- "pytorch": "2.0.1+cu117"
6
  }
7
  }
 
1
  {
2
  "__version__": {
3
  "sentence_transformers": "2.2.2",
4
+ "transformers": "4.34.1",
5
+ "pytorch": "2.1.0+cu121"
6
  }
7
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:43f2676d2db44c49c6ce2a351b490c2a5488820fcd3a2e00fa98df5d0204b956
3
- size 87574505
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb0687c76a381bc6081c3e1a0c30970e7df961bab2792ff422bb5bcd99c0801e
3
+ size 87574950
special_tokens_map.json CHANGED
@@ -1,14 +1,37 @@
1
  {
2
- "additional_special_tokens": [
3
- "[PAD]",
4
- "[UNK]",
5
- "[CLS]",
6
- "[SEP]",
7
- "[MASK]"
8
- ],
9
- "cls_token": "[CLS]",
10
- "mask_token": "[MASK]",
11
- "pad_token": "[PAD]",
12
- "sep_token": "[SEP]",
13
- "unk_token": "[UNK]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  }
 
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_config.json CHANGED
@@ -41,13 +41,6 @@
41
  "special": true
42
  }
43
  },
44
- "additional_special_tokens": [
45
- "[PAD]",
46
- "[UNK]",
47
- "[CLS]",
48
- "[SEP]",
49
- "[MASK]"
50
- ],
51
  "clean_up_tokenization_spaces": true,
52
  "cls_token": "[CLS]",
53
  "do_basic_tokenize": true,
 
41
  "special": true
42
  }
43
  },
 
 
 
 
 
 
 
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
  "do_basic_tokenize": true,