urisoo commited on
Commit
a9fc29e
1 Parent(s): 9980dd5

Training in progress, step 500

Browse files
adapter_config.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "alpha_pattern": {},
3
  "auto_mapping": null,
4
- "base_model_name_or_path": "distilbert-base-uncased",
5
  "bias": "all",
6
  "fan_in_fan_out": false,
7
  "inference_mode": true,
@@ -19,8 +19,8 @@
19
  "rank_pattern": {},
20
  "revision": null,
21
  "target_modules": [
22
- "q_lin",
23
- "v_lin"
24
  ],
25
  "task_type": "QUESTION_ANS"
26
  }
 
1
  {
2
  "alpha_pattern": {},
3
  "auto_mapping": null,
4
+ "base_model_name_or_path": "bert-base-cased",
5
  "bias": "all",
6
  "fan_in_fan_out": false,
7
  "inference_mode": true,
 
19
  "rank_pattern": {},
20
  "revision": null,
21
  "target_modules": [
22
+ "query",
23
+ "value"
24
  ],
25
  "task_type": "QUESTION_ANS"
26
  }
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:aa42d0de2ffba649d4321eab47f7980db75ac4c500131821e559f543f80bbdb8
3
- size 1402096
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14099d61092f9f83306869eb4f7d3d7dc29f77b979e77ceae0d60ce9ad30af37
3
+ size 2793840
runs/Jan09_17-40-53_pjt20230003-aer2024010004-dp-6f7b5c9687-mrddk/events.out.tfevents.1704789653.pjt20230003-aer2024010004-dp-6f7b5c9687-mrddk.3022.3 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:81d178c4036ec97469bdfdaaa70d424a520d33bfea6a8e26cfe592d6e0725026
3
- size 4654
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f834054bb7fdb20ded14caed04daed051e72e5ac3c628ffd2de3fb5bf212445
3
+ size 5550
runs/Jan10_15-55-18_pjt20230003-aer2024010004-dp-5d9c8bc8b6-8b5n8/events.out.tfevents.1704869719.pjt20230003-aer2024010004-dp-5d9c8bc8b6-8b5n8.837.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:457b8ba87616ba2804429da7bbf96a792017fccbbd32a07348a6bb396cf4b289
3
+ size 4493
special_tokens_map.json CHANGED
@@ -1,37 +1,7 @@
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
  }
 
1
  {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -43,20 +43,13 @@
43
  },
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
- "do_lower_case": true,
47
  "mask_token": "[MASK]",
48
- "max_length": 384,
49
  "model_max_length": 512,
50
- "pad_to_multiple_of": null,
51
  "pad_token": "[PAD]",
52
- "pad_token_type_id": 0,
53
- "padding_side": "right",
54
  "sep_token": "[SEP]",
55
- "stride": 0,
56
  "strip_accents": null,
57
  "tokenize_chinese_chars": true,
58
  "tokenizer_class": "DistilBertTokenizer",
59
- "truncation_side": "right",
60
- "truncation_strategy": "only_second",
61
  "unk_token": "[UNK]"
62
  }
 
43
  },
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
+ "do_lower_case": false,
47
  "mask_token": "[MASK]",
 
48
  "model_max_length": 512,
 
49
  "pad_token": "[PAD]",
 
 
50
  "sep_token": "[SEP]",
 
51
  "strip_accents": null,
52
  "tokenize_chinese_chars": true,
53
  "tokenizer_class": "DistilBertTokenizer",
 
 
54
  "unk_token": "[UNK]"
55
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2ae231dc2b8d1d293750fbf6268407ea4d3c8ac698d81178844458c6f5ccbf70
3
  size 4283
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeab4a1923a1ce22b62d34e8077fb5d65ad76a8fee7800a9344c386af3cae5de
3
  size 4283
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff