Salmamoori
commited on
Commit
•
c18116b
1
Parent(s):
5d85865
Training in progress, step 500
Browse files- adapter_config.json +9 -9
- adapter_model.safetensors +1 -1
- chat_template.json +3 -0
- preprocessor_config.json +28 -0
- training_args.bin +1 -1
adapter_config.json
CHANGED
@@ -23,19 +23,19 @@
|
|
23 |
"rank_pattern": {},
|
24 |
"revision": null,
|
25 |
"target_modules": [
|
26 |
-
"
|
27 |
-
"up_proj",
|
28 |
-
"down_proj",
|
29 |
-
"k_proj",
|
30 |
-
"fc1",
|
31 |
"o_proj",
|
32 |
-
"
|
33 |
"gate_proj",
|
|
|
|
|
|
|
|
|
34 |
"q_proj",
|
35 |
-
"
|
36 |
-
"
|
37 |
"lm_head",
|
38 |
-
"
|
39 |
],
|
40 |
"task_type": null,
|
41 |
"use_dora": false,
|
|
|
23 |
"rank_pattern": {},
|
24 |
"revision": null,
|
25 |
"target_modules": [
|
26 |
+
"linear_1",
|
|
|
|
|
|
|
|
|
27 |
"o_proj",
|
28 |
+
"fc2",
|
29 |
"gate_proj",
|
30 |
+
"k_proj",
|
31 |
+
"out_proj",
|
32 |
+
"linear_2",
|
33 |
+
"down_proj",
|
34 |
"q_proj",
|
35 |
+
"fc1",
|
36 |
+
"up_proj",
|
37 |
"lm_head",
|
38 |
+
"v_proj"
|
39 |
],
|
40 |
"task_type": null,
|
41 |
"use_dora": false,
|
adapter_model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 1290994752
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:36c17a6fac67549fe444716860775ef831cb64946c7eb0d372a57631de41a3b2
|
3 |
size 1290994752
|
chat_template.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"chat_template": "{% for message in messages %}{% if message['role'] != 'system' %}{{ message['role'].upper() + ': '}}{% endif %}{# Render all images first #}{% for content in message['content'] | selectattr('type', 'equalto', 'image') %}{{ '<image>\n' }}{% endfor %}{# Render all text next #}{% if message['role'] != 'assistant' %}{% for content in message['content'] | selectattr('type', 'equalto', 'text') %}{{ content['text'] + ' '}}{% endfor %}{% else %}{% for content in message['content'] | selectattr('type', 'equalto', 'text') %}{% generation %}{{ content['text'] + ' '}}{% endgeneration %}{% endfor %}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ 'ASSISTANT:' }}{% endif %}"
|
3 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_size": {
|
3 |
+
"height": 336,
|
4 |
+
"width": 336
|
5 |
+
},
|
6 |
+
"do_center_crop": true,
|
7 |
+
"do_convert_rgb": true,
|
8 |
+
"do_normalize": true,
|
9 |
+
"do_rescale": true,
|
10 |
+
"do_resize": true,
|
11 |
+
"image_mean": [
|
12 |
+
0.48145466,
|
13 |
+
0.4578275,
|
14 |
+
0.40821073
|
15 |
+
],
|
16 |
+
"image_processor_type": "CLIPImageProcessor",
|
17 |
+
"image_std": [
|
18 |
+
0.26862954,
|
19 |
+
0.26130258,
|
20 |
+
0.27577711
|
21 |
+
],
|
22 |
+
"processor_class": "LlavaProcessor",
|
23 |
+
"resample": 3,
|
24 |
+
"rescale_factor": 0.00392156862745098,
|
25 |
+
"size": {
|
26 |
+
"shortest_edge": 336
|
27 |
+
}
|
28 |
+
}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 5496
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5132a6d494b6145fbefc7818caf3d32d6138cab64da988b7002acbf7743f308f
|
3 |
size 5496
|