GoYM commited on
Commit
fba86ee
·
verified ·
1 Parent(s): 9705332

Training in progress, step 200

Browse files
adapter_config.json CHANGED
@@ -26,11 +26,11 @@
26
  "rank_pattern": {},
27
  "revision": null,
28
  "target_modules": [
29
- "k_proj",
30
- "v_proj",
31
- "mlp_fc2",
32
  "o_proj",
 
33
  "q_proj",
 
 
34
  "mlp_fc1"
35
  ],
36
  "task_type": "CAUSAL_LM",
 
26
  "rank_pattern": {},
27
  "revision": null,
28
  "target_modules": [
 
 
 
29
  "o_proj",
30
+ "k_proj",
31
  "q_proj",
32
+ "mlp_fc2",
33
+ "v_proj",
34
  "mlp_fc1"
35
  ],
36
  "task_type": "CAUSAL_LM",
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2ff1a287ada76bcdf05ff00ad2e86c5baa9561a8da7297bc79fd2cffa07a438b
3
- size 771038232
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9cfbc950c7c5eedff9995950555fdc5dfedd334ef4a2038cf31b0206f1d7ec3c
3
+ size 769850392
added_tokens.json CHANGED
@@ -1,4 +1,8 @@
1
  {
 
 
 
 
2
  "<image>": 32000,
3
  "<pad>": 32001
4
  }
 
1
  {
2
+ "<OCR_END>": 32003,
3
+ "<OCR_START>": 32002,
4
+ "<QA_END>": 32005,
5
+ "<QA_START>": 32004,
6
  "<image>": 32000,
7
  "<pad>": 32001
8
  }
runs/Jul21_03-52-42_adaaa8a07fd1/events.out.tfevents.1753070007.adaaa8a07fd1.937.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:110ee4ba41bf9bea7cfc94bb5e1f03e38b8aa251e04d3284ea28d3f2934debe7
3
+ size 6937
runs/Jul21_05-56-56_0d3cac8ba536/events.out.tfevents.1753077419.0d3cac8ba536.1641.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34366f65fd78d47955d644f1e76eb3418b943ed6aa8b8877fbdab85f88535c83
3
+ size 6937
runs/Jul21_06-36-20_0d3cac8ba536/events.out.tfevents.1753079781.0d3cac8ba536.1641.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4113b593e756276fcecd60b8cec1860d42ab7fd3ea6c510a41f72f09d7db0ef0
3
+ size 7892
special_tokens_map.json CHANGED
@@ -1,4 +1,34 @@
1
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  "bos_token": {
3
  "content": "<s>",
4
  "lstrip": false,
 
1
  {
2
+ "additional_special_tokens": [
3
+ {
4
+ "content": "<OCR_START>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ {
11
+ "content": "<OCR_END>",
12
+ "lstrip": false,
13
+ "normalized": false,
14
+ "rstrip": false,
15
+ "single_word": false
16
+ },
17
+ {
18
+ "content": "<QA_START>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ {
25
+ "content": "<QA_END>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ ],
32
  "bos_token": {
33
  "content": "<s>",
34
  "lstrip": false,
tokenizer.json CHANGED
@@ -1,8 +1,15 @@
1
  {
2
  "version": "1.0",
3
- "truncation": null,
 
 
 
 
 
4
  "padding": {
5
- "strategy": "BatchLongest",
 
 
6
  "direction": "Left",
7
  "pad_to_multiple_of": null,
8
  "pad_id": 32001,
@@ -54,6 +61,42 @@
54
  "rstrip": false,
55
  "normalized": false,
56
  "special": true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  }
58
  ],
59
  "normalizer": {
 
1
  {
2
  "version": "1.0",
3
+ "truncation": {
4
+ "direction": "Right",
5
+ "max_length": 39,
6
+ "strategy": "LongestFirst",
7
+ "stride": 0
8
+ },
9
  "padding": {
10
+ "strategy": {
11
+ "Fixed": 39
12
+ },
13
  "direction": "Left",
14
  "pad_to_multiple_of": null,
15
  "pad_id": 32001,
 
61
  "rstrip": false,
62
  "normalized": false,
63
  "special": true
64
+ },
65
+ {
66
+ "id": 32002,
67
+ "content": "<OCR_START>",
68
+ "single_word": false,
69
+ "lstrip": false,
70
+ "rstrip": false,
71
+ "normalized": false,
72
+ "special": true
73
+ },
74
+ {
75
+ "id": 32003,
76
+ "content": "<OCR_END>",
77
+ "single_word": false,
78
+ "lstrip": false,
79
+ "rstrip": false,
80
+ "normalized": false,
81
+ "special": true
82
+ },
83
+ {
84
+ "id": 32004,
85
+ "content": "<QA_START>",
86
+ "single_word": false,
87
+ "lstrip": false,
88
+ "rstrip": false,
89
+ "normalized": false,
90
+ "special": true
91
+ },
92
+ {
93
+ "id": 32005,
94
+ "content": "<QA_END>",
95
+ "single_word": false,
96
+ "lstrip": false,
97
+ "rstrip": false,
98
+ "normalized": false,
99
+ "special": true
100
  }
101
  ],
102
  "normalizer": {
tokenizer_config.json CHANGED
@@ -42,8 +42,46 @@
42
  "rstrip": false,
43
  "single_word": false,
44
  "special": true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  }
46
  },
 
 
 
 
 
 
47
  "bos_token": "<s>",
48
  "clean_up_tokenization_spaces": false,
49
  "eos_token": "</s>",
 
42
  "rstrip": false,
43
  "single_word": false,
44
  "special": true
45
+ },
46
+ "32002": {
47
+ "content": "<OCR_START>",
48
+ "lstrip": false,
49
+ "normalized": false,
50
+ "rstrip": false,
51
+ "single_word": false,
52
+ "special": true
53
+ },
54
+ "32003": {
55
+ "content": "<OCR_END>",
56
+ "lstrip": false,
57
+ "normalized": false,
58
+ "rstrip": false,
59
+ "single_word": false,
60
+ "special": true
61
+ },
62
+ "32004": {
63
+ "content": "<QA_START>",
64
+ "lstrip": false,
65
+ "normalized": false,
66
+ "rstrip": false,
67
+ "single_word": false,
68
+ "special": true
69
+ },
70
+ "32005": {
71
+ "content": "<QA_END>",
72
+ "lstrip": false,
73
+ "normalized": false,
74
+ "rstrip": false,
75
+ "single_word": false,
76
+ "special": true
77
  }
78
  },
79
+ "additional_special_tokens": [
80
+ "<OCR_START>",
81
+ "<OCR_END>",
82
+ "<QA_START>",
83
+ "<QA_END>"
84
+ ],
85
  "bos_token": "<s>",
86
  "clean_up_tokenization_spaces": false,
87
  "eos_token": "</s>",
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8430afc91fd159d15de04aa5524575a93ac09dbd6bd2960bcca316533e31e796
3
  size 5688
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5967638e4a36e91566a7471119c5cb5b54fea69912d1d4ee42e4531c203af8f7
3
  size 5688