Upload fine-tuned model
Browse files- .gitattributes +1 -0
- added_tokens.json +24 -0
- chat_template.json +3 -0
- config.json +65 -0
- generation_config.json +12 -0
- merges.txt +0 -0
- model-00001-of-00003.safetensors +3 -0
- model-00002-of-00003.safetensors +3 -0
- model-00003-of-00003.safetensors +3 -0
- model.safetensors.index.json +831 -0
- preprocessor_config.json +29 -0
- rng_state.pth +3 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +210 -0
- trainer_state.json +1756 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
added_tokens.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</tool_call>": 151658,
|
3 |
+
"<tool_call>": 151657,
|
4 |
+
"<|box_end|>": 151649,
|
5 |
+
"<|box_start|>": 151648,
|
6 |
+
"<|endoftext|>": 151643,
|
7 |
+
"<|file_sep|>": 151664,
|
8 |
+
"<|fim_middle|>": 151660,
|
9 |
+
"<|fim_pad|>": 151662,
|
10 |
+
"<|fim_prefix|>": 151659,
|
11 |
+
"<|fim_suffix|>": 151661,
|
12 |
+
"<|im_end|>": 151645,
|
13 |
+
"<|im_start|>": 151644,
|
14 |
+
"<|image_pad|>": 151655,
|
15 |
+
"<|object_ref_end|>": 151647,
|
16 |
+
"<|object_ref_start|>": 151646,
|
17 |
+
"<|quad_end|>": 151651,
|
18 |
+
"<|quad_start|>": 151650,
|
19 |
+
"<|repo_name|>": 151663,
|
20 |
+
"<|video_pad|>": 151656,
|
21 |
+
"<|vision_end|>": 151653,
|
22 |
+
"<|vision_pad|>": 151654,
|
23 |
+
"<|vision_start|>": 151652
|
24 |
+
}
|
chat_template.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}"
|
3 |
+
}
|
config.json
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"Qwen2_5_VLForConditionalGeneration"
|
4 |
+
],
|
5 |
+
"attention_dropout": 0.0,
|
6 |
+
"bos_token_id": 151643,
|
7 |
+
"eos_token_id": 151645,
|
8 |
+
"hidden_act": "silu",
|
9 |
+
"hidden_size": 2048,
|
10 |
+
"image_token_id": 151655,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 11008,
|
13 |
+
"max_position_embeddings": 128000,
|
14 |
+
"max_window_layers": 70,
|
15 |
+
"model_type": "qwen2_5_vl",
|
16 |
+
"num_attention_heads": 16,
|
17 |
+
"num_hidden_layers": 36,
|
18 |
+
"num_key_value_heads": 2,
|
19 |
+
"rms_norm_eps": 1e-06,
|
20 |
+
"rope_scaling": {
|
21 |
+
"mrope_section": [
|
22 |
+
16,
|
23 |
+
24,
|
24 |
+
24
|
25 |
+
],
|
26 |
+
"rope_type": "default",
|
27 |
+
"type": "default"
|
28 |
+
},
|
29 |
+
"rope_theta": 1000000.0,
|
30 |
+
"sliding_window": 32768,
|
31 |
+
"tie_word_embeddings": true,
|
32 |
+
"torch_dtype": "bfloat16",
|
33 |
+
"transformers_version": "4.51.3",
|
34 |
+
"use_cache": false,
|
35 |
+
"use_sliding_window": false,
|
36 |
+
"video_token_id": 151656,
|
37 |
+
"vision_config": {
|
38 |
+
"depth": 32,
|
39 |
+
"fullatt_block_indexes": [
|
40 |
+
7,
|
41 |
+
15,
|
42 |
+
23,
|
43 |
+
31
|
44 |
+
],
|
45 |
+
"hidden_act": "silu",
|
46 |
+
"hidden_size": 1280,
|
47 |
+
"in_channels": 3,
|
48 |
+
"in_chans": 3,
|
49 |
+
"intermediate_size": 3420,
|
50 |
+
"model_type": "qwen2_5_vl",
|
51 |
+
"num_heads": 16,
|
52 |
+
"out_hidden_size": 2048,
|
53 |
+
"patch_size": 14,
|
54 |
+
"spatial_merge_size": 2,
|
55 |
+
"spatial_patch_size": 14,
|
56 |
+
"temporal_patch_size": 2,
|
57 |
+
"tokens_per_second": 2,
|
58 |
+
"torch_dtype": "bfloat16",
|
59 |
+
"window_size": 112
|
60 |
+
},
|
61 |
+
"vision_end_token_id": 151653,
|
62 |
+
"vision_start_token_id": 151652,
|
63 |
+
"vision_token_id": 151654,
|
64 |
+
"vocab_size": 151936
|
65 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 151643,
|
3 |
+
"do_sample": true,
|
4 |
+
"eos_token_id": [
|
5 |
+
151645,
|
6 |
+
151643
|
7 |
+
],
|
8 |
+
"pad_token_id": 151643,
|
9 |
+
"repetition_penalty": 1.05,
|
10 |
+
"temperature": 1e-06,
|
11 |
+
"transformers_version": "4.51.3"
|
12 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model-00001-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ad9bf46a1a6285138b3c7a0cf1cfcebcae8f1b89a1cf2e815c2544a6712adbc
|
3 |
+
size 4958351144
|
model-00002-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:265e8af1de6dbb58861ef6fca73341de8c4dc53c233e23f93fe9bfcd8d754ec4
|
3 |
+
size 4932949296
|
model-00003-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:064af84cad543d1388e8b82799bfe6933e27b0086bcaa1586b752345ed812824
|
3 |
+
size 3789914528
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,831 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 13681123328
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
7 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
8 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
9 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
10 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
12 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
15 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
16 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
17 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
18 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
19 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
20 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
21 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
22 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
23 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
24 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
25 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
26 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
27 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
28 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
29 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
30 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
31 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
32 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
33 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
34 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
35 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
36 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
37 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
38 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
39 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
40 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
41 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
42 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
43 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
44 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
45 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
46 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
47 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
48 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
49 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
50 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
51 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
52 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
53 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
54 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
55 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
56 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
57 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
58 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
59 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
60 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
61 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
62 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
63 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
64 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
65 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
66 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
67 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
68 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
69 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
70 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
71 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
72 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
73 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
74 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
75 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
76 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
77 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
78 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
79 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
80 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
81 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
82 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
83 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
84 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
85 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
86 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
87 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
88 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
89 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
90 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
91 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
92 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
93 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
94 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
95 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
96 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
97 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
98 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
99 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
100 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
101 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
102 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
103 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
104 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
105 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
106 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
107 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
108 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
109 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
110 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
111 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
112 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
113 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
114 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
115 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
116 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
117 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
118 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
119 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
120 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
121 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
122 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
123 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
124 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
125 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
126 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
127 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
128 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
129 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
130 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
131 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
132 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
133 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
134 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
135 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
136 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
137 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
138 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
139 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
140 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
141 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
142 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
143 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
144 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
145 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
146 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
147 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
148 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
149 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
150 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
151 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
152 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
153 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
154 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
155 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
156 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
157 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
158 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
159 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
160 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
161 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
162 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
163 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
164 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
165 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
166 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
167 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
168 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
169 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
170 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
171 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
172 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
173 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
174 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
175 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
176 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
177 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
178 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
179 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
180 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
181 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
182 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
183 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
184 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
185 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
186 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
187 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
188 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
189 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
190 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
191 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
192 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
193 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
194 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
195 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
196 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
197 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
198 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
199 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
200 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
201 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
202 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
203 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
204 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
205 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
206 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
207 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
208 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
209 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
210 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
211 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
212 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
213 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
214 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
215 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
216 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
217 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
218 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
219 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
220 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
221 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
222 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
223 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
224 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
225 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
226 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
227 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
228 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
229 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
230 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
231 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
232 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
233 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
234 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
235 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
236 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
237 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
238 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
239 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
240 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
241 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
242 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
243 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
244 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
245 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
246 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
247 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
248 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
249 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
250 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
251 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
252 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
253 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
254 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
255 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
256 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
257 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
258 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
259 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
260 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
261 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
262 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
263 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
264 |
+
"model.layers.28.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
265 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
266 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
267 |
+
"model.layers.28.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
268 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
269 |
+
"model.layers.28.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
270 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
271 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
272 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
273 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
274 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
275 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
276 |
+
"model.layers.29.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
277 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
278 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
279 |
+
"model.layers.29.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
280 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
281 |
+
"model.layers.29.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
282 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
283 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
284 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
285 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
286 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
287 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
288 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
289 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
290 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
291 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
292 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
293 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
294 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
295 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
296 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
297 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
298 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
299 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
300 |
+
"model.layers.30.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
301 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
302 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
303 |
+
"model.layers.30.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
304 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
305 |
+
"model.layers.30.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
306 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
307 |
+
"model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
308 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
309 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
310 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
311 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
312 |
+
"model.layers.31.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
313 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
314 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
315 |
+
"model.layers.31.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
316 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
317 |
+
"model.layers.31.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
318 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
319 |
+
"model.layers.32.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
320 |
+
"model.layers.32.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
321 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
322 |
+
"model.layers.32.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
323 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
324 |
+
"model.layers.32.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
325 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
326 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
327 |
+
"model.layers.32.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
328 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
329 |
+
"model.layers.32.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
330 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
331 |
+
"model.layers.33.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
332 |
+
"model.layers.33.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
333 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
334 |
+
"model.layers.33.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
335 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
336 |
+
"model.layers.33.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
337 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
338 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
339 |
+
"model.layers.33.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
340 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
341 |
+
"model.layers.33.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
342 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
343 |
+
"model.layers.34.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
344 |
+
"model.layers.34.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
345 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
346 |
+
"model.layers.34.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
347 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
348 |
+
"model.layers.34.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
349 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
350 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
351 |
+
"model.layers.34.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
352 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
353 |
+
"model.layers.34.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
354 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
355 |
+
"model.layers.35.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
356 |
+
"model.layers.35.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
357 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
358 |
+
"model.layers.35.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
359 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
360 |
+
"model.layers.35.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
361 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
362 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
363 |
+
"model.layers.35.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
364 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
365 |
+
"model.layers.35.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
366 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
367 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
368 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
369 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
370 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
371 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
372 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
373 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
374 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
375 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
376 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
377 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
378 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
379 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
380 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
381 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
382 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
383 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
384 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
385 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
386 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
387 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
388 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
389 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
390 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
391 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
392 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
393 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
394 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
395 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
396 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
397 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
398 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
399 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
400 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
401 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
402 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
403 |
+
"model.layers.7.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
404 |
+
"model.layers.7.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
405 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
406 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
407 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
408 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
409 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
410 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
411 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
412 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
413 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
414 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
415 |
+
"model.layers.8.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
416 |
+
"model.layers.8.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
417 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
418 |
+
"model.layers.8.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
419 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
420 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
421 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
422 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
423 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
424 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
425 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
426 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
427 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
428 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
429 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
430 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
431 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
432 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
433 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
434 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
435 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
436 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
437 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
438 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
439 |
+
"model.norm.weight": "model-00003-of-00003.safetensors",
|
440 |
+
"visual.blocks.0.attn.proj.bias": "model-00001-of-00003.safetensors",
|
441 |
+
"visual.blocks.0.attn.proj.weight": "model-00001-of-00003.safetensors",
|
442 |
+
"visual.blocks.0.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
443 |
+
"visual.blocks.0.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
444 |
+
"visual.blocks.0.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
445 |
+
"visual.blocks.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
446 |
+
"visual.blocks.0.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
447 |
+
"visual.blocks.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
448 |
+
"visual.blocks.0.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
449 |
+
"visual.blocks.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
450 |
+
"visual.blocks.0.norm1.weight": "model-00001-of-00003.safetensors",
|
451 |
+
"visual.blocks.0.norm2.weight": "model-00001-of-00003.safetensors",
|
452 |
+
"visual.blocks.1.attn.proj.bias": "model-00001-of-00003.safetensors",
|
453 |
+
"visual.blocks.1.attn.proj.weight": "model-00001-of-00003.safetensors",
|
454 |
+
"visual.blocks.1.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
455 |
+
"visual.blocks.1.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
456 |
+
"visual.blocks.1.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
457 |
+
"visual.blocks.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
458 |
+
"visual.blocks.1.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
459 |
+
"visual.blocks.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
460 |
+
"visual.blocks.1.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
461 |
+
"visual.blocks.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
462 |
+
"visual.blocks.1.norm1.weight": "model-00001-of-00003.safetensors",
|
463 |
+
"visual.blocks.1.norm2.weight": "model-00001-of-00003.safetensors",
|
464 |
+
"visual.blocks.10.attn.proj.bias": "model-00001-of-00003.safetensors",
|
465 |
+
"visual.blocks.10.attn.proj.weight": "model-00001-of-00003.safetensors",
|
466 |
+
"visual.blocks.10.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
467 |
+
"visual.blocks.10.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
468 |
+
"visual.blocks.10.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
469 |
+
"visual.blocks.10.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
470 |
+
"visual.blocks.10.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
471 |
+
"visual.blocks.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
472 |
+
"visual.blocks.10.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
473 |
+
"visual.blocks.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
474 |
+
"visual.blocks.10.norm1.weight": "model-00001-of-00003.safetensors",
|
475 |
+
"visual.blocks.10.norm2.weight": "model-00001-of-00003.safetensors",
|
476 |
+
"visual.blocks.11.attn.proj.bias": "model-00001-of-00003.safetensors",
|
477 |
+
"visual.blocks.11.attn.proj.weight": "model-00001-of-00003.safetensors",
|
478 |
+
"visual.blocks.11.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
479 |
+
"visual.blocks.11.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
480 |
+
"visual.blocks.11.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
481 |
+
"visual.blocks.11.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
482 |
+
"visual.blocks.11.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
483 |
+
"visual.blocks.11.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
484 |
+
"visual.blocks.11.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
485 |
+
"visual.blocks.11.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
486 |
+
"visual.blocks.11.norm1.weight": "model-00001-of-00003.safetensors",
|
487 |
+
"visual.blocks.11.norm2.weight": "model-00001-of-00003.safetensors",
|
488 |
+
"visual.blocks.12.attn.proj.bias": "model-00001-of-00003.safetensors",
|
489 |
+
"visual.blocks.12.attn.proj.weight": "model-00001-of-00003.safetensors",
|
490 |
+
"visual.blocks.12.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
491 |
+
"visual.blocks.12.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
492 |
+
"visual.blocks.12.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
493 |
+
"visual.blocks.12.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
494 |
+
"visual.blocks.12.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
495 |
+
"visual.blocks.12.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
496 |
+
"visual.blocks.12.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
497 |
+
"visual.blocks.12.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
498 |
+
"visual.blocks.12.norm1.weight": "model-00001-of-00003.safetensors",
|
499 |
+
"visual.blocks.12.norm2.weight": "model-00001-of-00003.safetensors",
|
500 |
+
"visual.blocks.13.attn.proj.bias": "model-00001-of-00003.safetensors",
|
501 |
+
"visual.blocks.13.attn.proj.weight": "model-00001-of-00003.safetensors",
|
502 |
+
"visual.blocks.13.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
503 |
+
"visual.blocks.13.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
504 |
+
"visual.blocks.13.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
505 |
+
"visual.blocks.13.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
506 |
+
"visual.blocks.13.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
507 |
+
"visual.blocks.13.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
508 |
+
"visual.blocks.13.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
509 |
+
"visual.blocks.13.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
510 |
+
"visual.blocks.13.norm1.weight": "model-00001-of-00003.safetensors",
|
511 |
+
"visual.blocks.13.norm2.weight": "model-00001-of-00003.safetensors",
|
512 |
+
"visual.blocks.14.attn.proj.bias": "model-00001-of-00003.safetensors",
|
513 |
+
"visual.blocks.14.attn.proj.weight": "model-00001-of-00003.safetensors",
|
514 |
+
"visual.blocks.14.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
515 |
+
"visual.blocks.14.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
516 |
+
"visual.blocks.14.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
517 |
+
"visual.blocks.14.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
518 |
+
"visual.blocks.14.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
519 |
+
"visual.blocks.14.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
520 |
+
"visual.blocks.14.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
521 |
+
"visual.blocks.14.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
522 |
+
"visual.blocks.14.norm1.weight": "model-00001-of-00003.safetensors",
|
523 |
+
"visual.blocks.14.norm2.weight": "model-00001-of-00003.safetensors",
|
524 |
+
"visual.blocks.15.attn.proj.bias": "model-00001-of-00003.safetensors",
|
525 |
+
"visual.blocks.15.attn.proj.weight": "model-00001-of-00003.safetensors",
|
526 |
+
"visual.blocks.15.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
527 |
+
"visual.blocks.15.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
528 |
+
"visual.blocks.15.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
529 |
+
"visual.blocks.15.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
530 |
+
"visual.blocks.15.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
531 |
+
"visual.blocks.15.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
532 |
+
"visual.blocks.15.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
533 |
+
"visual.blocks.15.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
534 |
+
"visual.blocks.15.norm1.weight": "model-00001-of-00003.safetensors",
|
535 |
+
"visual.blocks.15.norm2.weight": "model-00001-of-00003.safetensors",
|
536 |
+
"visual.blocks.16.attn.proj.bias": "model-00001-of-00003.safetensors",
|
537 |
+
"visual.blocks.16.attn.proj.weight": "model-00001-of-00003.safetensors",
|
538 |
+
"visual.blocks.16.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
539 |
+
"visual.blocks.16.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
540 |
+
"visual.blocks.16.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
541 |
+
"visual.blocks.16.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
542 |
+
"visual.blocks.16.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
543 |
+
"visual.blocks.16.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
544 |
+
"visual.blocks.16.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
545 |
+
"visual.blocks.16.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
546 |
+
"visual.blocks.16.norm1.weight": "model-00001-of-00003.safetensors",
|
547 |
+
"visual.blocks.16.norm2.weight": "model-00001-of-00003.safetensors",
|
548 |
+
"visual.blocks.17.attn.proj.bias": "model-00001-of-00003.safetensors",
|
549 |
+
"visual.blocks.17.attn.proj.weight": "model-00001-of-00003.safetensors",
|
550 |
+
"visual.blocks.17.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
551 |
+
"visual.blocks.17.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
552 |
+
"visual.blocks.17.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
553 |
+
"visual.blocks.17.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
554 |
+
"visual.blocks.17.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
555 |
+
"visual.blocks.17.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
556 |
+
"visual.blocks.17.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
557 |
+
"visual.blocks.17.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
558 |
+
"visual.blocks.17.norm1.weight": "model-00001-of-00003.safetensors",
|
559 |
+
"visual.blocks.17.norm2.weight": "model-00001-of-00003.safetensors",
|
560 |
+
"visual.blocks.18.attn.proj.bias": "model-00001-of-00003.safetensors",
|
561 |
+
"visual.blocks.18.attn.proj.weight": "model-00001-of-00003.safetensors",
|
562 |
+
"visual.blocks.18.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
563 |
+
"visual.blocks.18.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
564 |
+
"visual.blocks.18.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
565 |
+
"visual.blocks.18.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
566 |
+
"visual.blocks.18.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
567 |
+
"visual.blocks.18.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
568 |
+
"visual.blocks.18.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
569 |
+
"visual.blocks.18.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
570 |
+
"visual.blocks.18.norm1.weight": "model-00001-of-00003.safetensors",
|
571 |
+
"visual.blocks.18.norm2.weight": "model-00001-of-00003.safetensors",
|
572 |
+
"visual.blocks.19.attn.proj.bias": "model-00001-of-00003.safetensors",
|
573 |
+
"visual.blocks.19.attn.proj.weight": "model-00001-of-00003.safetensors",
|
574 |
+
"visual.blocks.19.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
575 |
+
"visual.blocks.19.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
576 |
+
"visual.blocks.19.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
577 |
+
"visual.blocks.19.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
578 |
+
"visual.blocks.19.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
579 |
+
"visual.blocks.19.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
580 |
+
"visual.blocks.19.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
581 |
+
"visual.blocks.19.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
582 |
+
"visual.blocks.19.norm1.weight": "model-00001-of-00003.safetensors",
|
583 |
+
"visual.blocks.19.norm2.weight": "model-00001-of-00003.safetensors",
|
584 |
+
"visual.blocks.2.attn.proj.bias": "model-00001-of-00003.safetensors",
|
585 |
+
"visual.blocks.2.attn.proj.weight": "model-00001-of-00003.safetensors",
|
586 |
+
"visual.blocks.2.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
587 |
+
"visual.blocks.2.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
588 |
+
"visual.blocks.2.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
589 |
+
"visual.blocks.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
590 |
+
"visual.blocks.2.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
591 |
+
"visual.blocks.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
592 |
+
"visual.blocks.2.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
593 |
+
"visual.blocks.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
594 |
+
"visual.blocks.2.norm1.weight": "model-00001-of-00003.safetensors",
|
595 |
+
"visual.blocks.2.norm2.weight": "model-00001-of-00003.safetensors",
|
596 |
+
"visual.blocks.20.attn.proj.bias": "model-00001-of-00003.safetensors",
|
597 |
+
"visual.blocks.20.attn.proj.weight": "model-00001-of-00003.safetensors",
|
598 |
+
"visual.blocks.20.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
599 |
+
"visual.blocks.20.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
600 |
+
"visual.blocks.20.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
601 |
+
"visual.blocks.20.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
602 |
+
"visual.blocks.20.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
603 |
+
"visual.blocks.20.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
604 |
+
"visual.blocks.20.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
605 |
+
"visual.blocks.20.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
606 |
+
"visual.blocks.20.norm1.weight": "model-00001-of-00003.safetensors",
|
607 |
+
"visual.blocks.20.norm2.weight": "model-00001-of-00003.safetensors",
|
608 |
+
"visual.blocks.21.attn.proj.bias": "model-00001-of-00003.safetensors",
|
609 |
+
"visual.blocks.21.attn.proj.weight": "model-00001-of-00003.safetensors",
|
610 |
+
"visual.blocks.21.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
611 |
+
"visual.blocks.21.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
612 |
+
"visual.blocks.21.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
613 |
+
"visual.blocks.21.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
614 |
+
"visual.blocks.21.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
615 |
+
"visual.blocks.21.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
616 |
+
"visual.blocks.21.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
617 |
+
"visual.blocks.21.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
618 |
+
"visual.blocks.21.norm1.weight": "model-00001-of-00003.safetensors",
|
619 |
+
"visual.blocks.21.norm2.weight": "model-00001-of-00003.safetensors",
|
620 |
+
"visual.blocks.22.attn.proj.bias": "model-00001-of-00003.safetensors",
|
621 |
+
"visual.blocks.22.attn.proj.weight": "model-00001-of-00003.safetensors",
|
622 |
+
"visual.blocks.22.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
623 |
+
"visual.blocks.22.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
624 |
+
"visual.blocks.22.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
625 |
+
"visual.blocks.22.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
626 |
+
"visual.blocks.22.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
627 |
+
"visual.blocks.22.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
628 |
+
"visual.blocks.22.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
629 |
+
"visual.blocks.22.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
630 |
+
"visual.blocks.22.norm1.weight": "model-00001-of-00003.safetensors",
|
631 |
+
"visual.blocks.22.norm2.weight": "model-00001-of-00003.safetensors",
|
632 |
+
"visual.blocks.23.attn.proj.bias": "model-00001-of-00003.safetensors",
|
633 |
+
"visual.blocks.23.attn.proj.weight": "model-00001-of-00003.safetensors",
|
634 |
+
"visual.blocks.23.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
635 |
+
"visual.blocks.23.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
636 |
+
"visual.blocks.23.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
637 |
+
"visual.blocks.23.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
638 |
+
"visual.blocks.23.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
639 |
+
"visual.blocks.23.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
640 |
+
"visual.blocks.23.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
641 |
+
"visual.blocks.23.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
642 |
+
"visual.blocks.23.norm1.weight": "model-00001-of-00003.safetensors",
|
643 |
+
"visual.blocks.23.norm2.weight": "model-00001-of-00003.safetensors",
|
644 |
+
"visual.blocks.24.attn.proj.bias": "model-00001-of-00003.safetensors",
|
645 |
+
"visual.blocks.24.attn.proj.weight": "model-00001-of-00003.safetensors",
|
646 |
+
"visual.blocks.24.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
647 |
+
"visual.blocks.24.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
648 |
+
"visual.blocks.24.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
649 |
+
"visual.blocks.24.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
650 |
+
"visual.blocks.24.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
651 |
+
"visual.blocks.24.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
652 |
+
"visual.blocks.24.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
653 |
+
"visual.blocks.24.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
654 |
+
"visual.blocks.24.norm1.weight": "model-00001-of-00003.safetensors",
|
655 |
+
"visual.blocks.24.norm2.weight": "model-00001-of-00003.safetensors",
|
656 |
+
"visual.blocks.25.attn.proj.bias": "model-00001-of-00003.safetensors",
|
657 |
+
"visual.blocks.25.attn.proj.weight": "model-00001-of-00003.safetensors",
|
658 |
+
"visual.blocks.25.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
659 |
+
"visual.blocks.25.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
660 |
+
"visual.blocks.25.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
661 |
+
"visual.blocks.25.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
662 |
+
"visual.blocks.25.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
663 |
+
"visual.blocks.25.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
664 |
+
"visual.blocks.25.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
665 |
+
"visual.blocks.25.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
666 |
+
"visual.blocks.25.norm1.weight": "model-00001-of-00003.safetensors",
|
667 |
+
"visual.blocks.25.norm2.weight": "model-00001-of-00003.safetensors",
|
668 |
+
"visual.blocks.26.attn.proj.bias": "model-00001-of-00003.safetensors",
|
669 |
+
"visual.blocks.26.attn.proj.weight": "model-00001-of-00003.safetensors",
|
670 |
+
"visual.blocks.26.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
671 |
+
"visual.blocks.26.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
672 |
+
"visual.blocks.26.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
673 |
+
"visual.blocks.26.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
674 |
+
"visual.blocks.26.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
675 |
+
"visual.blocks.26.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
676 |
+
"visual.blocks.26.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
677 |
+
"visual.blocks.26.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
678 |
+
"visual.blocks.26.norm1.weight": "model-00001-of-00003.safetensors",
|
679 |
+
"visual.blocks.26.norm2.weight": "model-00001-of-00003.safetensors",
|
680 |
+
"visual.blocks.27.attn.proj.bias": "model-00001-of-00003.safetensors",
|
681 |
+
"visual.blocks.27.attn.proj.weight": "model-00001-of-00003.safetensors",
|
682 |
+
"visual.blocks.27.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
683 |
+
"visual.blocks.27.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
684 |
+
"visual.blocks.27.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
685 |
+
"visual.blocks.27.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
686 |
+
"visual.blocks.27.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
687 |
+
"visual.blocks.27.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
688 |
+
"visual.blocks.27.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
689 |
+
"visual.blocks.27.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
690 |
+
"visual.blocks.27.norm1.weight": "model-00001-of-00003.safetensors",
|
691 |
+
"visual.blocks.27.norm2.weight": "model-00001-of-00003.safetensors",
|
692 |
+
"visual.blocks.28.attn.proj.bias": "model-00001-of-00003.safetensors",
|
693 |
+
"visual.blocks.28.attn.proj.weight": "model-00001-of-00003.safetensors",
|
694 |
+
"visual.blocks.28.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
695 |
+
"visual.blocks.28.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
696 |
+
"visual.blocks.28.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
697 |
+
"visual.blocks.28.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
698 |
+
"visual.blocks.28.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
699 |
+
"visual.blocks.28.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
700 |
+
"visual.blocks.28.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
701 |
+
"visual.blocks.28.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
702 |
+
"visual.blocks.28.norm1.weight": "model-00001-of-00003.safetensors",
|
703 |
+
"visual.blocks.28.norm2.weight": "model-00001-of-00003.safetensors",
|
704 |
+
"visual.blocks.29.attn.proj.bias": "model-00001-of-00003.safetensors",
|
705 |
+
"visual.blocks.29.attn.proj.weight": "model-00001-of-00003.safetensors",
|
706 |
+
"visual.blocks.29.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
707 |
+
"visual.blocks.29.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
708 |
+
"visual.blocks.29.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
709 |
+
"visual.blocks.29.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
710 |
+
"visual.blocks.29.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
711 |
+
"visual.blocks.29.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
712 |
+
"visual.blocks.29.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
713 |
+
"visual.blocks.29.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
714 |
+
"visual.blocks.29.norm1.weight": "model-00001-of-00003.safetensors",
|
715 |
+
"visual.blocks.29.norm2.weight": "model-00001-of-00003.safetensors",
|
716 |
+
"visual.blocks.3.attn.proj.bias": "model-00001-of-00003.safetensors",
|
717 |
+
"visual.blocks.3.attn.proj.weight": "model-00001-of-00003.safetensors",
|
718 |
+
"visual.blocks.3.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
719 |
+
"visual.blocks.3.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
720 |
+
"visual.blocks.3.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
721 |
+
"visual.blocks.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
722 |
+
"visual.blocks.3.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
723 |
+
"visual.blocks.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
724 |
+
"visual.blocks.3.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
725 |
+
"visual.blocks.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
726 |
+
"visual.blocks.3.norm1.weight": "model-00001-of-00003.safetensors",
|
727 |
+
"visual.blocks.3.norm2.weight": "model-00001-of-00003.safetensors",
|
728 |
+
"visual.blocks.30.attn.proj.bias": "model-00001-of-00003.safetensors",
|
729 |
+
"visual.blocks.30.attn.proj.weight": "model-00001-of-00003.safetensors",
|
730 |
+
"visual.blocks.30.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
731 |
+
"visual.blocks.30.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
732 |
+
"visual.blocks.30.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
733 |
+
"visual.blocks.30.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
734 |
+
"visual.blocks.30.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
735 |
+
"visual.blocks.30.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
736 |
+
"visual.blocks.30.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
737 |
+
"visual.blocks.30.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
738 |
+
"visual.blocks.30.norm1.weight": "model-00001-of-00003.safetensors",
|
739 |
+
"visual.blocks.30.norm2.weight": "model-00001-of-00003.safetensors",
|
740 |
+
"visual.blocks.31.attn.proj.bias": "model-00001-of-00003.safetensors",
|
741 |
+
"visual.blocks.31.attn.proj.weight": "model-00001-of-00003.safetensors",
|
742 |
+
"visual.blocks.31.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
743 |
+
"visual.blocks.31.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
744 |
+
"visual.blocks.31.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
745 |
+
"visual.blocks.31.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
746 |
+
"visual.blocks.31.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
747 |
+
"visual.blocks.31.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
748 |
+
"visual.blocks.31.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
749 |
+
"visual.blocks.31.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
750 |
+
"visual.blocks.31.norm1.weight": "model-00001-of-00003.safetensors",
|
751 |
+
"visual.blocks.31.norm2.weight": "model-00001-of-00003.safetensors",
|
752 |
+
"visual.blocks.4.attn.proj.bias": "model-00001-of-00003.safetensors",
|
753 |
+
"visual.blocks.4.attn.proj.weight": "model-00001-of-00003.safetensors",
|
754 |
+
"visual.blocks.4.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
755 |
+
"visual.blocks.4.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
756 |
+
"visual.blocks.4.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
757 |
+
"visual.blocks.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
758 |
+
"visual.blocks.4.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
759 |
+
"visual.blocks.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
760 |
+
"visual.blocks.4.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
761 |
+
"visual.blocks.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
762 |
+
"visual.blocks.4.norm1.weight": "model-00001-of-00003.safetensors",
|
763 |
+
"visual.blocks.4.norm2.weight": "model-00001-of-00003.safetensors",
|
764 |
+
"visual.blocks.5.attn.proj.bias": "model-00001-of-00003.safetensors",
|
765 |
+
"visual.blocks.5.attn.proj.weight": "model-00001-of-00003.safetensors",
|
766 |
+
"visual.blocks.5.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
767 |
+
"visual.blocks.5.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
768 |
+
"visual.blocks.5.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
769 |
+
"visual.blocks.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
770 |
+
"visual.blocks.5.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
771 |
+
"visual.blocks.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
772 |
+
"visual.blocks.5.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
773 |
+
"visual.blocks.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
774 |
+
"visual.blocks.5.norm1.weight": "model-00001-of-00003.safetensors",
|
775 |
+
"visual.blocks.5.norm2.weight": "model-00001-of-00003.safetensors",
|
776 |
+
"visual.blocks.6.attn.proj.bias": "model-00001-of-00003.safetensors",
|
777 |
+
"visual.blocks.6.attn.proj.weight": "model-00001-of-00003.safetensors",
|
778 |
+
"visual.blocks.6.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
779 |
+
"visual.blocks.6.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
780 |
+
"visual.blocks.6.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
781 |
+
"visual.blocks.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
782 |
+
"visual.blocks.6.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
783 |
+
"visual.blocks.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
784 |
+
"visual.blocks.6.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
785 |
+
"visual.blocks.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
786 |
+
"visual.blocks.6.norm1.weight": "model-00001-of-00003.safetensors",
|
787 |
+
"visual.blocks.6.norm2.weight": "model-00001-of-00003.safetensors",
|
788 |
+
"visual.blocks.7.attn.proj.bias": "model-00001-of-00003.safetensors",
|
789 |
+
"visual.blocks.7.attn.proj.weight": "model-00001-of-00003.safetensors",
|
790 |
+
"visual.blocks.7.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
791 |
+
"visual.blocks.7.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
792 |
+
"visual.blocks.7.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
793 |
+
"visual.blocks.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
794 |
+
"visual.blocks.7.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
795 |
+
"visual.blocks.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
796 |
+
"visual.blocks.7.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
797 |
+
"visual.blocks.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
798 |
+
"visual.blocks.7.norm1.weight": "model-00001-of-00003.safetensors",
|
799 |
+
"visual.blocks.7.norm2.weight": "model-00001-of-00003.safetensors",
|
800 |
+
"visual.blocks.8.attn.proj.bias": "model-00001-of-00003.safetensors",
|
801 |
+
"visual.blocks.8.attn.proj.weight": "model-00001-of-00003.safetensors",
|
802 |
+
"visual.blocks.8.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
803 |
+
"visual.blocks.8.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
804 |
+
"visual.blocks.8.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
805 |
+
"visual.blocks.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
806 |
+
"visual.blocks.8.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
807 |
+
"visual.blocks.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
808 |
+
"visual.blocks.8.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
809 |
+
"visual.blocks.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
810 |
+
"visual.blocks.8.norm1.weight": "model-00001-of-00003.safetensors",
|
811 |
+
"visual.blocks.8.norm2.weight": "model-00001-of-00003.safetensors",
|
812 |
+
"visual.blocks.9.attn.proj.bias": "model-00001-of-00003.safetensors",
|
813 |
+
"visual.blocks.9.attn.proj.weight": "model-00001-of-00003.safetensors",
|
814 |
+
"visual.blocks.9.attn.qkv.bias": "model-00001-of-00003.safetensors",
|
815 |
+
"visual.blocks.9.attn.qkv.weight": "model-00001-of-00003.safetensors",
|
816 |
+
"visual.blocks.9.mlp.down_proj.bias": "model-00001-of-00003.safetensors",
|
817 |
+
"visual.blocks.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
818 |
+
"visual.blocks.9.mlp.gate_proj.bias": "model-00001-of-00003.safetensors",
|
819 |
+
"visual.blocks.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
820 |
+
"visual.blocks.9.mlp.up_proj.bias": "model-00001-of-00003.safetensors",
|
821 |
+
"visual.blocks.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
822 |
+
"visual.blocks.9.norm1.weight": "model-00001-of-00003.safetensors",
|
823 |
+
"visual.blocks.9.norm2.weight": "model-00001-of-00003.safetensors",
|
824 |
+
"visual.merger.ln_q.weight": "model-00001-of-00003.safetensors",
|
825 |
+
"visual.merger.mlp.0.bias": "model-00001-of-00003.safetensors",
|
826 |
+
"visual.merger.mlp.0.weight": "model-00001-of-00003.safetensors",
|
827 |
+
"visual.merger.mlp.2.bias": "model-00001-of-00003.safetensors",
|
828 |
+
"visual.merger.mlp.2.weight": "model-00001-of-00003.safetensors",
|
829 |
+
"visual.patch_embed.proj.weight": "model-00001-of-00003.safetensors"
|
830 |
+
}
|
831 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_convert_rgb": true,
|
3 |
+
"do_normalize": true,
|
4 |
+
"do_rescale": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"image_mean": [
|
7 |
+
0.48145466,
|
8 |
+
0.4578275,
|
9 |
+
0.40821073
|
10 |
+
],
|
11 |
+
"image_processor_type": "Qwen2VLImageProcessor",
|
12 |
+
"image_std": [
|
13 |
+
0.26862954,
|
14 |
+
0.26130258,
|
15 |
+
0.27577711
|
16 |
+
],
|
17 |
+
"max_pixels": 12845056,
|
18 |
+
"merge_size": 2,
|
19 |
+
"min_pixels": 3136,
|
20 |
+
"patch_size": 14,
|
21 |
+
"processor_class": "Qwen2_5_VLProcessor",
|
22 |
+
"resample": 3,
|
23 |
+
"rescale_factor": 0.00392156862745098,
|
24 |
+
"size": {
|
25 |
+
"longest_edge": 12845056,
|
26 |
+
"shortest_edge": 3136
|
27 |
+
},
|
28 |
+
"temporal_patch_size": 2
|
29 |
+
}
|
rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9196a1e708bf24d6abba41cce3f8558820acc3e50f9394c5955e29eb41ffea3d
|
3 |
+
size 14244
|
special_tokens_map.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|im_start|>",
|
4 |
+
"<|im_end|>",
|
5 |
+
"<|object_ref_start|>",
|
6 |
+
"<|object_ref_end|>",
|
7 |
+
"<|box_start|>",
|
8 |
+
"<|box_end|>",
|
9 |
+
"<|quad_start|>",
|
10 |
+
"<|quad_end|>",
|
11 |
+
"<|vision_start|>",
|
12 |
+
"<|vision_end|>",
|
13 |
+
"<|vision_pad|>",
|
14 |
+
"<|image_pad|>",
|
15 |
+
"<|video_pad|>"
|
16 |
+
],
|
17 |
+
"eos_token": {
|
18 |
+
"content": "<|im_end|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
"pad_token": {
|
25 |
+
"content": "<|endoftext|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
}
|
31 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
3 |
+
size 11421896
|
tokenizer_config.json
ADDED
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": false,
|
3 |
+
"add_prefix_space": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"151643": {
|
6 |
+
"content": "<|endoftext|>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"151644": {
|
14 |
+
"content": "<|im_start|>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"151645": {
|
22 |
+
"content": "<|im_end|>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
},
|
29 |
+
"151646": {
|
30 |
+
"content": "<|object_ref_start|>",
|
31 |
+
"lstrip": false,
|
32 |
+
"normalized": false,
|
33 |
+
"rstrip": false,
|
34 |
+
"single_word": false,
|
35 |
+
"special": true
|
36 |
+
},
|
37 |
+
"151647": {
|
38 |
+
"content": "<|object_ref_end|>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false,
|
43 |
+
"special": true
|
44 |
+
},
|
45 |
+
"151648": {
|
46 |
+
"content": "<|box_start|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"rstrip": false,
|
50 |
+
"single_word": false,
|
51 |
+
"special": true
|
52 |
+
},
|
53 |
+
"151649": {
|
54 |
+
"content": "<|box_end|>",
|
55 |
+
"lstrip": false,
|
56 |
+
"normalized": false,
|
57 |
+
"rstrip": false,
|
58 |
+
"single_word": false,
|
59 |
+
"special": true
|
60 |
+
},
|
61 |
+
"151650": {
|
62 |
+
"content": "<|quad_start|>",
|
63 |
+
"lstrip": false,
|
64 |
+
"normalized": false,
|
65 |
+
"rstrip": false,
|
66 |
+
"single_word": false,
|
67 |
+
"special": true
|
68 |
+
},
|
69 |
+
"151651": {
|
70 |
+
"content": "<|quad_end|>",
|
71 |
+
"lstrip": false,
|
72 |
+
"normalized": false,
|
73 |
+
"rstrip": false,
|
74 |
+
"single_word": false,
|
75 |
+
"special": true
|
76 |
+
},
|
77 |
+
"151652": {
|
78 |
+
"content": "<|vision_start|>",
|
79 |
+
"lstrip": false,
|
80 |
+
"normalized": false,
|
81 |
+
"rstrip": false,
|
82 |
+
"single_word": false,
|
83 |
+
"special": true
|
84 |
+
},
|
85 |
+
"151653": {
|
86 |
+
"content": "<|vision_end|>",
|
87 |
+
"lstrip": false,
|
88 |
+
"normalized": false,
|
89 |
+
"rstrip": false,
|
90 |
+
"single_word": false,
|
91 |
+
"special": true
|
92 |
+
},
|
93 |
+
"151654": {
|
94 |
+
"content": "<|vision_pad|>",
|
95 |
+
"lstrip": false,
|
96 |
+
"normalized": false,
|
97 |
+
"rstrip": false,
|
98 |
+
"single_word": false,
|
99 |
+
"special": true
|
100 |
+
},
|
101 |
+
"151655": {
|
102 |
+
"content": "<|image_pad|>",
|
103 |
+
"lstrip": false,
|
104 |
+
"normalized": false,
|
105 |
+
"rstrip": false,
|
106 |
+
"single_word": false,
|
107 |
+
"special": true
|
108 |
+
},
|
109 |
+
"151656": {
|
110 |
+
"content": "<|video_pad|>",
|
111 |
+
"lstrip": false,
|
112 |
+
"normalized": false,
|
113 |
+
"rstrip": false,
|
114 |
+
"single_word": false,
|
115 |
+
"special": true
|
116 |
+
},
|
117 |
+
"151657": {
|
118 |
+
"content": "<tool_call>",
|
119 |
+
"lstrip": false,
|
120 |
+
"normalized": false,
|
121 |
+
"rstrip": false,
|
122 |
+
"single_word": false,
|
123 |
+
"special": false
|
124 |
+
},
|
125 |
+
"151658": {
|
126 |
+
"content": "</tool_call>",
|
127 |
+
"lstrip": false,
|
128 |
+
"normalized": false,
|
129 |
+
"rstrip": false,
|
130 |
+
"single_word": false,
|
131 |
+
"special": false
|
132 |
+
},
|
133 |
+
"151659": {
|
134 |
+
"content": "<|fim_prefix|>",
|
135 |
+
"lstrip": false,
|
136 |
+
"normalized": false,
|
137 |
+
"rstrip": false,
|
138 |
+
"single_word": false,
|
139 |
+
"special": false
|
140 |
+
},
|
141 |
+
"151660": {
|
142 |
+
"content": "<|fim_middle|>",
|
143 |
+
"lstrip": false,
|
144 |
+
"normalized": false,
|
145 |
+
"rstrip": false,
|
146 |
+
"single_word": false,
|
147 |
+
"special": false
|
148 |
+
},
|
149 |
+
"151661": {
|
150 |
+
"content": "<|fim_suffix|>",
|
151 |
+
"lstrip": false,
|
152 |
+
"normalized": false,
|
153 |
+
"rstrip": false,
|
154 |
+
"single_word": false,
|
155 |
+
"special": false
|
156 |
+
},
|
157 |
+
"151662": {
|
158 |
+
"content": "<|fim_pad|>",
|
159 |
+
"lstrip": false,
|
160 |
+
"normalized": false,
|
161 |
+
"rstrip": false,
|
162 |
+
"single_word": false,
|
163 |
+
"special": false
|
164 |
+
},
|
165 |
+
"151663": {
|
166 |
+
"content": "<|repo_name|>",
|
167 |
+
"lstrip": false,
|
168 |
+
"normalized": false,
|
169 |
+
"rstrip": false,
|
170 |
+
"single_word": false,
|
171 |
+
"special": false
|
172 |
+
},
|
173 |
+
"151664": {
|
174 |
+
"content": "<|file_sep|>",
|
175 |
+
"lstrip": false,
|
176 |
+
"normalized": false,
|
177 |
+
"rstrip": false,
|
178 |
+
"single_word": false,
|
179 |
+
"special": false
|
180 |
+
}
|
181 |
+
},
|
182 |
+
"additional_special_tokens": [
|
183 |
+
"<|im_start|>",
|
184 |
+
"<|im_end|>",
|
185 |
+
"<|object_ref_start|>",
|
186 |
+
"<|object_ref_end|>",
|
187 |
+
"<|box_start|>",
|
188 |
+
"<|box_end|>",
|
189 |
+
"<|quad_start|>",
|
190 |
+
"<|quad_end|>",
|
191 |
+
"<|vision_start|>",
|
192 |
+
"<|vision_end|>",
|
193 |
+
"<|vision_pad|>",
|
194 |
+
"<|image_pad|>",
|
195 |
+
"<|video_pad|>"
|
196 |
+
],
|
197 |
+
"bos_token": null,
|
198 |
+
"chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}",
|
199 |
+
"clean_up_tokenization_spaces": false,
|
200 |
+
"eos_token": "<|im_end|>",
|
201 |
+
"errors": "replace",
|
202 |
+
"extra_special_tokens": {},
|
203 |
+
"model_max_length": 131072,
|
204 |
+
"pad_token": "<|endoftext|>",
|
205 |
+
"padding_side": "right",
|
206 |
+
"processor_class": "Qwen2_5_VLProcessor",
|
207 |
+
"split_special_tokens": false,
|
208 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
209 |
+
"unk_token": null
|
210 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,1756 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_global_step": null,
|
3 |
+
"best_metric": null,
|
4 |
+
"best_model_checkpoint": null,
|
5 |
+
"epoch": 2.9969604863221884,
|
6 |
+
"eval_steps": 500,
|
7 |
+
"global_step": 2466,
|
8 |
+
"is_hyper_param_search": false,
|
9 |
+
"is_local_process_zero": true,
|
10 |
+
"is_world_process_zero": true,
|
11 |
+
"log_history": [
|
12 |
+
{
|
13 |
+
"epoch": 0.0121580547112462,
|
14 |
+
"grad_norm": 5.922801494598389,
|
15 |
+
"learning_rate": 3.6437246963562754e-07,
|
16 |
+
"loss": 1.1863,
|
17 |
+
"step": 10
|
18 |
+
},
|
19 |
+
{
|
20 |
+
"epoch": 0.0243161094224924,
|
21 |
+
"grad_norm": 6.66644811630249,
|
22 |
+
"learning_rate": 7.692307692307694e-07,
|
23 |
+
"loss": 1.1376,
|
24 |
+
"step": 20
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"epoch": 0.0364741641337386,
|
28 |
+
"grad_norm": 7.5532402992248535,
|
29 |
+
"learning_rate": 1.174089068825911e-06,
|
30 |
+
"loss": 1.1034,
|
31 |
+
"step": 30
|
32 |
+
},
|
33 |
+
{
|
34 |
+
"epoch": 0.0486322188449848,
|
35 |
+
"grad_norm": 4.451807498931885,
|
36 |
+
"learning_rate": 1.5789473684210526e-06,
|
37 |
+
"loss": 1.0824,
|
38 |
+
"step": 40
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"epoch": 0.060790273556231005,
|
42 |
+
"grad_norm": 4.282721996307373,
|
43 |
+
"learning_rate": 1.9838056680161946e-06,
|
44 |
+
"loss": 0.9437,
|
45 |
+
"step": 50
|
46 |
+
},
|
47 |
+
{
|
48 |
+
"epoch": 0.0729483282674772,
|
49 |
+
"grad_norm": 3.476186990737915,
|
50 |
+
"learning_rate": 2.3886639676113362e-06,
|
51 |
+
"loss": 0.8906,
|
52 |
+
"step": 60
|
53 |
+
},
|
54 |
+
{
|
55 |
+
"epoch": 0.0851063829787234,
|
56 |
+
"grad_norm": 2.9487781524658203,
|
57 |
+
"learning_rate": 2.7935222672064783e-06,
|
58 |
+
"loss": 0.8558,
|
59 |
+
"step": 70
|
60 |
+
},
|
61 |
+
{
|
62 |
+
"epoch": 0.0972644376899696,
|
63 |
+
"grad_norm": 3.981879949569702,
|
64 |
+
"learning_rate": 3.19838056680162e-06,
|
65 |
+
"loss": 0.7978,
|
66 |
+
"step": 80
|
67 |
+
},
|
68 |
+
{
|
69 |
+
"epoch": 0.1094224924012158,
|
70 |
+
"grad_norm": 3.0333662033081055,
|
71 |
+
"learning_rate": 3.6032388663967615e-06,
|
72 |
+
"loss": 0.7652,
|
73 |
+
"step": 90
|
74 |
+
},
|
75 |
+
{
|
76 |
+
"epoch": 0.12158054711246201,
|
77 |
+
"grad_norm": 2.985710859298706,
|
78 |
+
"learning_rate": 4.008097165991903e-06,
|
79 |
+
"loss": 0.7671,
|
80 |
+
"step": 100
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"epoch": 0.1337386018237082,
|
84 |
+
"grad_norm": 2.512871026992798,
|
85 |
+
"learning_rate": 4.412955465587045e-06,
|
86 |
+
"loss": 0.7848,
|
87 |
+
"step": 110
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"epoch": 0.1458966565349544,
|
91 |
+
"grad_norm": 3.5035741329193115,
|
92 |
+
"learning_rate": 4.817813765182186e-06,
|
93 |
+
"loss": 0.7419,
|
94 |
+
"step": 120
|
95 |
+
},
|
96 |
+
{
|
97 |
+
"epoch": 0.1580547112462006,
|
98 |
+
"grad_norm": 4.36132287979126,
|
99 |
+
"learning_rate": 5.222672064777329e-06,
|
100 |
+
"loss": 0.7379,
|
101 |
+
"step": 130
|
102 |
+
},
|
103 |
+
{
|
104 |
+
"epoch": 0.1702127659574468,
|
105 |
+
"grad_norm": 3.3608834743499756,
|
106 |
+
"learning_rate": 5.6275303643724695e-06,
|
107 |
+
"loss": 0.7135,
|
108 |
+
"step": 140
|
109 |
+
},
|
110 |
+
{
|
111 |
+
"epoch": 0.182370820668693,
|
112 |
+
"grad_norm": 3.3592512607574463,
|
113 |
+
"learning_rate": 6.0323886639676124e-06,
|
114 |
+
"loss": 0.7427,
|
115 |
+
"step": 150
|
116 |
+
},
|
117 |
+
{
|
118 |
+
"epoch": 0.1945288753799392,
|
119 |
+
"grad_norm": 2.913890838623047,
|
120 |
+
"learning_rate": 6.437246963562754e-06,
|
121 |
+
"loss": 0.6847,
|
122 |
+
"step": 160
|
123 |
+
},
|
124 |
+
{
|
125 |
+
"epoch": 0.2066869300911854,
|
126 |
+
"grad_norm": 2.6773297786712646,
|
127 |
+
"learning_rate": 6.842105263157896e-06,
|
128 |
+
"loss": 0.7409,
|
129 |
+
"step": 170
|
130 |
+
},
|
131 |
+
{
|
132 |
+
"epoch": 0.2188449848024316,
|
133 |
+
"grad_norm": 2.984339714050293,
|
134 |
+
"learning_rate": 7.246963562753037e-06,
|
135 |
+
"loss": 0.6755,
|
136 |
+
"step": 180
|
137 |
+
},
|
138 |
+
{
|
139 |
+
"epoch": 0.23100303951367782,
|
140 |
+
"grad_norm": 3.006441593170166,
|
141 |
+
"learning_rate": 7.651821862348178e-06,
|
142 |
+
"loss": 0.7105,
|
143 |
+
"step": 190
|
144 |
+
},
|
145 |
+
{
|
146 |
+
"epoch": 0.24316109422492402,
|
147 |
+
"grad_norm": 3.7500977516174316,
|
148 |
+
"learning_rate": 8.056680161943322e-06,
|
149 |
+
"loss": 0.6796,
|
150 |
+
"step": 200
|
151 |
+
},
|
152 |
+
{
|
153 |
+
"epoch": 0.2553191489361702,
|
154 |
+
"grad_norm": 3.6839091777801514,
|
155 |
+
"learning_rate": 8.461538461538462e-06,
|
156 |
+
"loss": 0.6716,
|
157 |
+
"step": 210
|
158 |
+
},
|
159 |
+
{
|
160 |
+
"epoch": 0.2674772036474164,
|
161 |
+
"grad_norm": 3.265120267868042,
|
162 |
+
"learning_rate": 8.866396761133604e-06,
|
163 |
+
"loss": 0.6728,
|
164 |
+
"step": 220
|
165 |
+
},
|
166 |
+
{
|
167 |
+
"epoch": 0.2796352583586626,
|
168 |
+
"grad_norm": 3.2442452907562256,
|
169 |
+
"learning_rate": 9.271255060728746e-06,
|
170 |
+
"loss": 0.6807,
|
171 |
+
"step": 230
|
172 |
+
},
|
173 |
+
{
|
174 |
+
"epoch": 0.2917933130699088,
|
175 |
+
"grad_norm": 3.7613420486450195,
|
176 |
+
"learning_rate": 9.676113360323888e-06,
|
177 |
+
"loss": 0.674,
|
178 |
+
"step": 240
|
179 |
+
},
|
180 |
+
{
|
181 |
+
"epoch": 0.303951367781155,
|
182 |
+
"grad_norm": 4.201897621154785,
|
183 |
+
"learning_rate": 9.999979955978923e-06,
|
184 |
+
"loss": 0.6987,
|
185 |
+
"step": 250
|
186 |
+
},
|
187 |
+
{
|
188 |
+
"epoch": 0.3161094224924012,
|
189 |
+
"grad_norm": 3.1414012908935547,
|
190 |
+
"learning_rate": 9.999278432115106e-06,
|
191 |
+
"loss": 0.6584,
|
192 |
+
"step": 260
|
193 |
+
},
|
194 |
+
{
|
195 |
+
"epoch": 0.3282674772036474,
|
196 |
+
"grad_norm": 3.2702925205230713,
|
197 |
+
"learning_rate": 9.99757486789673e-06,
|
198 |
+
"loss": 0.683,
|
199 |
+
"step": 270
|
200 |
+
},
|
201 |
+
{
|
202 |
+
"epoch": 0.3404255319148936,
|
203 |
+
"grad_norm": 2.9207000732421875,
|
204 |
+
"learning_rate": 9.9948696047811e-06,
|
205 |
+
"loss": 0.6895,
|
206 |
+
"step": 280
|
207 |
+
},
|
208 |
+
{
|
209 |
+
"epoch": 0.3525835866261398,
|
210 |
+
"grad_norm": 3.319397211074829,
|
211 |
+
"learning_rate": 9.991163185003028e-06,
|
212 |
+
"loss": 0.66,
|
213 |
+
"step": 290
|
214 |
+
},
|
215 |
+
{
|
216 |
+
"epoch": 0.364741641337386,
|
217 |
+
"grad_norm": 2.8080954551696777,
|
218 |
+
"learning_rate": 9.98645635146616e-06,
|
219 |
+
"loss": 0.6914,
|
220 |
+
"step": 300
|
221 |
+
},
|
222 |
+
{
|
223 |
+
"epoch": 0.3768996960486322,
|
224 |
+
"grad_norm": 4.024887561798096,
|
225 |
+
"learning_rate": 9.980750047594076e-06,
|
226 |
+
"loss": 0.6511,
|
227 |
+
"step": 310
|
228 |
+
},
|
229 |
+
{
|
230 |
+
"epoch": 0.3890577507598784,
|
231 |
+
"grad_norm": 2.6032838821411133,
|
232 |
+
"learning_rate": 9.974045417141186e-06,
|
233 |
+
"loss": 0.6522,
|
234 |
+
"step": 320
|
235 |
+
},
|
236 |
+
{
|
237 |
+
"epoch": 0.4012158054711246,
|
238 |
+
"grad_norm": 2.4978721141815186,
|
239 |
+
"learning_rate": 9.966343803963481e-06,
|
240 |
+
"loss": 0.6517,
|
241 |
+
"step": 330
|
242 |
+
},
|
243 |
+
{
|
244 |
+
"epoch": 0.4133738601823708,
|
245 |
+
"grad_norm": 3.0864603519439697,
|
246 |
+
"learning_rate": 9.957646751749178e-06,
|
247 |
+
"loss": 0.662,
|
248 |
+
"step": 340
|
249 |
+
},
|
250 |
+
{
|
251 |
+
"epoch": 0.425531914893617,
|
252 |
+
"grad_norm": 3.713203191757202,
|
253 |
+
"learning_rate": 9.947956003709301e-06,
|
254 |
+
"loss": 0.6728,
|
255 |
+
"step": 350
|
256 |
+
},
|
257 |
+
{
|
258 |
+
"epoch": 0.4376899696048632,
|
259 |
+
"grad_norm": 2.8905911445617676,
|
260 |
+
"learning_rate": 9.937273502228283e-06,
|
261 |
+
"loss": 0.6905,
|
262 |
+
"step": 360
|
263 |
+
},
|
264 |
+
{
|
265 |
+
"epoch": 0.44984802431610943,
|
266 |
+
"grad_norm": 3.0076723098754883,
|
267 |
+
"learning_rate": 9.925601388474637e-06,
|
268 |
+
"loss": 0.6955,
|
269 |
+
"step": 370
|
270 |
+
},
|
271 |
+
{
|
272 |
+
"epoch": 0.46200607902735563,
|
273 |
+
"grad_norm": 3.2814724445343018,
|
274 |
+
"learning_rate": 9.912942001971792e-06,
|
275 |
+
"loss": 0.6176,
|
276 |
+
"step": 380
|
277 |
+
},
|
278 |
+
{
|
279 |
+
"epoch": 0.47416413373860183,
|
280 |
+
"grad_norm": 2.9065964221954346,
|
281 |
+
"learning_rate": 9.899297880129156e-06,
|
282 |
+
"loss": 0.6768,
|
283 |
+
"step": 390
|
284 |
+
},
|
285 |
+
{
|
286 |
+
"epoch": 0.48632218844984804,
|
287 |
+
"grad_norm": 2.724536657333374,
|
288 |
+
"learning_rate": 9.884671757733534e-06,
|
289 |
+
"loss": 0.6382,
|
290 |
+
"step": 400
|
291 |
+
},
|
292 |
+
{
|
293 |
+
"epoch": 0.49848024316109424,
|
294 |
+
"grad_norm": 2.8882269859313965,
|
295 |
+
"learning_rate": 9.869066566400975e-06,
|
296 |
+
"loss": 0.6603,
|
297 |
+
"step": 410
|
298 |
+
},
|
299 |
+
{
|
300 |
+
"epoch": 0.5106382978723404,
|
301 |
+
"grad_norm": 2.5395541191101074,
|
302 |
+
"learning_rate": 9.852485433989158e-06,
|
303 |
+
"loss": 0.642,
|
304 |
+
"step": 420
|
305 |
+
},
|
306 |
+
{
|
307 |
+
"epoch": 0.5227963525835866,
|
308 |
+
"grad_norm": 2.759591579437256,
|
309 |
+
"learning_rate": 9.834931683970468e-06,
|
310 |
+
"loss": 0.6424,
|
311 |
+
"step": 430
|
312 |
+
},
|
313 |
+
{
|
314 |
+
"epoch": 0.5349544072948328,
|
315 |
+
"grad_norm": 2.4878828525543213,
|
316 |
+
"learning_rate": 9.816408834765838e-06,
|
317 |
+
"loss": 0.6435,
|
318 |
+
"step": 440
|
319 |
+
},
|
320 |
+
{
|
321 |
+
"epoch": 0.547112462006079,
|
322 |
+
"grad_norm": 2.7571871280670166,
|
323 |
+
"learning_rate": 9.796920599039536e-06,
|
324 |
+
"loss": 0.6766,
|
325 |
+
"step": 450
|
326 |
+
},
|
327 |
+
{
|
328 |
+
"epoch": 0.5592705167173252,
|
329 |
+
"grad_norm": 2.585879325866699,
|
330 |
+
"learning_rate": 9.776470882954998e-06,
|
331 |
+
"loss": 0.6082,
|
332 |
+
"step": 460
|
333 |
+
},
|
334 |
+
{
|
335 |
+
"epoch": 0.5714285714285714,
|
336 |
+
"grad_norm": 2.5847771167755127,
|
337 |
+
"learning_rate": 9.7550637853919e-06,
|
338 |
+
"loss": 0.6551,
|
339 |
+
"step": 470
|
340 |
+
},
|
341 |
+
{
|
342 |
+
"epoch": 0.5835866261398176,
|
343 |
+
"grad_norm": 2.795027732849121,
|
344 |
+
"learning_rate": 9.732703597124586e-06,
|
345 |
+
"loss": 0.6429,
|
346 |
+
"step": 480
|
347 |
+
},
|
348 |
+
{
|
349 |
+
"epoch": 0.5957446808510638,
|
350 |
+
"grad_norm": 2.377835273742676,
|
351 |
+
"learning_rate": 9.709394799962038e-06,
|
352 |
+
"loss": 0.6386,
|
353 |
+
"step": 490
|
354 |
+
},
|
355 |
+
{
|
356 |
+
"epoch": 0.60790273556231,
|
357 |
+
"grad_norm": 3.254490852355957,
|
358 |
+
"learning_rate": 9.685142065849556e-06,
|
359 |
+
"loss": 0.5844,
|
360 |
+
"step": 500
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"epoch": 0.6200607902735562,
|
364 |
+
"grad_norm": 2.866058588027954,
|
365 |
+
"learning_rate": 9.659950255932324e-06,
|
366 |
+
"loss": 0.6079,
|
367 |
+
"step": 510
|
368 |
+
},
|
369 |
+
{
|
370 |
+
"epoch": 0.6322188449848024,
|
371 |
+
"grad_norm": 2.680647373199463,
|
372 |
+
"learning_rate": 9.633824419581069e-06,
|
373 |
+
"loss": 0.6294,
|
374 |
+
"step": 520
|
375 |
+
},
|
376 |
+
{
|
377 |
+
"epoch": 0.6443768996960486,
|
378 |
+
"grad_norm": 3.1423895359039307,
|
379 |
+
"learning_rate": 9.60676979337996e-06,
|
380 |
+
"loss": 0.6311,
|
381 |
+
"step": 530
|
382 |
+
},
|
383 |
+
{
|
384 |
+
"epoch": 0.6565349544072948,
|
385 |
+
"grad_norm": 2.480421304702759,
|
386 |
+
"learning_rate": 9.578791800077021e-06,
|
387 |
+
"loss": 0.6395,
|
388 |
+
"step": 540
|
389 |
+
},
|
390 |
+
{
|
391 |
+
"epoch": 0.668693009118541,
|
392 |
+
"grad_norm": 3.06001877784729,
|
393 |
+
"learning_rate": 9.549896047497202e-06,
|
394 |
+
"loss": 0.6613,
|
395 |
+
"step": 550
|
396 |
+
},
|
397 |
+
{
|
398 |
+
"epoch": 0.6808510638297872,
|
399 |
+
"grad_norm": 2.8360841274261475,
|
400 |
+
"learning_rate": 9.520088327418371e-06,
|
401 |
+
"loss": 0.6161,
|
402 |
+
"step": 560
|
403 |
+
},
|
404 |
+
{
|
405 |
+
"epoch": 0.6930091185410334,
|
406 |
+
"grad_norm": 3.1503562927246094,
|
407 |
+
"learning_rate": 9.489374614410413e-06,
|
408 |
+
"loss": 0.6137,
|
409 |
+
"step": 570
|
410 |
+
},
|
411 |
+
{
|
412 |
+
"epoch": 0.7051671732522796,
|
413 |
+
"grad_norm": 2.579737663269043,
|
414 |
+
"learning_rate": 9.457761064637727e-06,
|
415 |
+
"loss": 0.6068,
|
416 |
+
"step": 580
|
417 |
+
},
|
418 |
+
{
|
419 |
+
"epoch": 0.7173252279635258,
|
420 |
+
"grad_norm": 3.200549602508545,
|
421 |
+
"learning_rate": 9.425254014625278e-06,
|
422 |
+
"loss": 0.6436,
|
423 |
+
"step": 590
|
424 |
+
},
|
425 |
+
{
|
426 |
+
"epoch": 0.729483282674772,
|
427 |
+
"grad_norm": 2.9303839206695557,
|
428 |
+
"learning_rate": 9.391859979988546e-06,
|
429 |
+
"loss": 0.6062,
|
430 |
+
"step": 600
|
431 |
+
},
|
432 |
+
{
|
433 |
+
"epoch": 0.7416413373860182,
|
434 |
+
"grad_norm": 3.0887465476989746,
|
435 |
+
"learning_rate": 9.35758565412754e-06,
|
436 |
+
"loss": 0.6244,
|
437 |
+
"step": 610
|
438 |
+
},
|
439 |
+
{
|
440 |
+
"epoch": 0.7537993920972644,
|
441 |
+
"grad_norm": 3.22578763961792,
|
442 |
+
"learning_rate": 9.322437906885199e-06,
|
443 |
+
"loss": 0.6544,
|
444 |
+
"step": 620
|
445 |
+
},
|
446 |
+
{
|
447 |
+
"epoch": 0.7659574468085106,
|
448 |
+
"grad_norm": 3.8590402603149414,
|
449 |
+
"learning_rate": 9.28642378317042e-06,
|
450 |
+
"loss": 0.6369,
|
451 |
+
"step": 630
|
452 |
+
},
|
453 |
+
{
|
454 |
+
"epoch": 0.7781155015197568,
|
455 |
+
"grad_norm": 3.001377820968628,
|
456 |
+
"learning_rate": 9.249550501545998e-06,
|
457 |
+
"loss": 0.6556,
|
458 |
+
"step": 640
|
459 |
+
},
|
460 |
+
{
|
461 |
+
"epoch": 0.790273556231003,
|
462 |
+
"grad_norm": 2.9286224842071533,
|
463 |
+
"learning_rate": 9.211825452781762e-06,
|
464 |
+
"loss": 0.599,
|
465 |
+
"step": 650
|
466 |
+
},
|
467 |
+
{
|
468 |
+
"epoch": 0.8024316109422492,
|
469 |
+
"grad_norm": 3.0069026947021484,
|
470 |
+
"learning_rate": 9.173256198373185e-06,
|
471 |
+
"loss": 0.6284,
|
472 |
+
"step": 660
|
473 |
+
},
|
474 |
+
{
|
475 |
+
"epoch": 0.8145896656534954,
|
476 |
+
"grad_norm": 3.2098565101623535,
|
477 |
+
"learning_rate": 9.133850469025786e-06,
|
478 |
+
"loss": 0.6047,
|
479 |
+
"step": 670
|
480 |
+
},
|
481 |
+
{
|
482 |
+
"epoch": 0.8267477203647416,
|
483 |
+
"grad_norm": 2.4998652935028076,
|
484 |
+
"learning_rate": 9.093616163105609e-06,
|
485 |
+
"loss": 0.6233,
|
486 |
+
"step": 680
|
487 |
+
},
|
488 |
+
{
|
489 |
+
"epoch": 0.8389057750759878,
|
490 |
+
"grad_norm": 2.6951255798339844,
|
491 |
+
"learning_rate": 9.052561345056095e-06,
|
492 |
+
"loss": 0.6288,
|
493 |
+
"step": 690
|
494 |
+
},
|
495 |
+
{
|
496 |
+
"epoch": 0.851063829787234,
|
497 |
+
"grad_norm": 2.79081654548645,
|
498 |
+
"learning_rate": 9.010694243781671e-06,
|
499 |
+
"loss": 0.6248,
|
500 |
+
"step": 700
|
501 |
+
},
|
502 |
+
{
|
503 |
+
"epoch": 0.8632218844984803,
|
504 |
+
"grad_norm": 3.0113465785980225,
|
505 |
+
"learning_rate": 8.96802325099838e-06,
|
506 |
+
"loss": 0.6262,
|
507 |
+
"step": 710
|
508 |
+
},
|
509 |
+
{
|
510 |
+
"epoch": 0.8753799392097265,
|
511 |
+
"grad_norm": 2.396683692932129,
|
512 |
+
"learning_rate": 8.924556919551863e-06,
|
513 |
+
"loss": 0.6154,
|
514 |
+
"step": 720
|
515 |
+
},
|
516 |
+
{
|
517 |
+
"epoch": 0.8875379939209727,
|
518 |
+
"grad_norm": 2.604168176651001,
|
519 |
+
"learning_rate": 8.880303961703048e-06,
|
520 |
+
"loss": 0.6044,
|
521 |
+
"step": 730
|
522 |
+
},
|
523 |
+
{
|
524 |
+
"epoch": 0.8996960486322189,
|
525 |
+
"grad_norm": 2.6339340209960938,
|
526 |
+
"learning_rate": 8.835273247381903e-06,
|
527 |
+
"loss": 0.6367,
|
528 |
+
"step": 740
|
529 |
+
},
|
530 |
+
{
|
531 |
+
"epoch": 0.9118541033434651,
|
532 |
+
"grad_norm": 2.699192762374878,
|
533 |
+
"learning_rate": 8.789473802409565e-06,
|
534 |
+
"loss": 0.6598,
|
535 |
+
"step": 750
|
536 |
+
},
|
537 |
+
{
|
538 |
+
"epoch": 0.9240121580547113,
|
539 |
+
"grad_norm": 3.0326826572418213,
|
540 |
+
"learning_rate": 8.742914806689234e-06,
|
541 |
+
"loss": 0.596,
|
542 |
+
"step": 760
|
543 |
+
},
|
544 |
+
{
|
545 |
+
"epoch": 0.9361702127659575,
|
546 |
+
"grad_norm": 3.168898582458496,
|
547 |
+
"learning_rate": 8.695605592366184e-06,
|
548 |
+
"loss": 0.5843,
|
549 |
+
"step": 770
|
550 |
+
},
|
551 |
+
{
|
552 |
+
"epoch": 0.9483282674772037,
|
553 |
+
"grad_norm": 2.6533005237579346,
|
554 |
+
"learning_rate": 8.647555641957243e-06,
|
555 |
+
"loss": 0.598,
|
556 |
+
"step": 780
|
557 |
+
},
|
558 |
+
{
|
559 |
+
"epoch": 0.9604863221884499,
|
560 |
+
"grad_norm": 3.4256536960601807,
|
561 |
+
"learning_rate": 8.59877458645017e-06,
|
562 |
+
"loss": 0.588,
|
563 |
+
"step": 790
|
564 |
+
},
|
565 |
+
{
|
566 |
+
"epoch": 0.9726443768996961,
|
567 |
+
"grad_norm": 2.429436445236206,
|
568 |
+
"learning_rate": 8.54927220337322e-06,
|
569 |
+
"loss": 0.5955,
|
570 |
+
"step": 800
|
571 |
+
},
|
572 |
+
{
|
573 |
+
"epoch": 0.9848024316109423,
|
574 |
+
"grad_norm": 2.6898012161254883,
|
575 |
+
"learning_rate": 8.499058414835389e-06,
|
576 |
+
"loss": 0.6068,
|
577 |
+
"step": 810
|
578 |
+
},
|
579 |
+
{
|
580 |
+
"epoch": 0.9969604863221885,
|
581 |
+
"grad_norm": 2.064389944076538,
|
582 |
+
"learning_rate": 8.448143285537645e-06,
|
583 |
+
"loss": 0.5694,
|
584 |
+
"step": 820
|
585 |
+
},
|
586 |
+
{
|
587 |
+
"epoch": 1.0085106382978724,
|
588 |
+
"grad_norm": 2.412479877471924,
|
589 |
+
"learning_rate": 8.396537020755588e-06,
|
590 |
+
"loss": 0.4937,
|
591 |
+
"step": 830
|
592 |
+
},
|
593 |
+
{
|
594 |
+
"epoch": 1.0206686930091184,
|
595 |
+
"grad_norm": 2.439929246902466,
|
596 |
+
"learning_rate": 8.344249964293942e-06,
|
597 |
+
"loss": 0.4945,
|
598 |
+
"step": 840
|
599 |
+
},
|
600 |
+
{
|
601 |
+
"epoch": 1.0328267477203648,
|
602 |
+
"grad_norm": 2.665113687515259,
|
603 |
+
"learning_rate": 8.291292596413272e-06,
|
604 |
+
"loss": 0.499,
|
605 |
+
"step": 850
|
606 |
+
},
|
607 |
+
{
|
608 |
+
"epoch": 1.0449848024316108,
|
609 |
+
"grad_norm": 2.39530086517334,
|
610 |
+
"learning_rate": 8.237675531729345e-06,
|
611 |
+
"loss": 0.4825,
|
612 |
+
"step": 860
|
613 |
+
},
|
614 |
+
{
|
615 |
+
"epoch": 1.0571428571428572,
|
616 |
+
"grad_norm": 2.943648099899292,
|
617 |
+
"learning_rate": 8.18340951708558e-06,
|
618 |
+
"loss": 0.4683,
|
619 |
+
"step": 870
|
620 |
+
},
|
621 |
+
{
|
622 |
+
"epoch": 1.0693009118541033,
|
623 |
+
"grad_norm": 2.766900062561035,
|
624 |
+
"learning_rate": 8.128505429398976e-06,
|
625 |
+
"loss": 0.477,
|
626 |
+
"step": 880
|
627 |
+
},
|
628 |
+
{
|
629 |
+
"epoch": 1.0814589665653496,
|
630 |
+
"grad_norm": 2.389639139175415,
|
631 |
+
"learning_rate": 8.072974273479972e-06,
|
632 |
+
"loss": 0.5606,
|
633 |
+
"step": 890
|
634 |
+
},
|
635 |
+
{
|
636 |
+
"epoch": 1.0936170212765957,
|
637 |
+
"grad_norm": 2.3432369232177734,
|
638 |
+
"learning_rate": 8.016827179826685e-06,
|
639 |
+
"loss": 0.4753,
|
640 |
+
"step": 900
|
641 |
+
},
|
642 |
+
{
|
643 |
+
"epoch": 1.105775075987842,
|
644 |
+
"grad_norm": 2.27811598777771,
|
645 |
+
"learning_rate": 7.960075402393937e-06,
|
646 |
+
"loss": 0.4733,
|
647 |
+
"step": 910
|
648 |
+
},
|
649 |
+
{
|
650 |
+
"epoch": 1.117933130699088,
|
651 |
+
"grad_norm": 2.5332465171813965,
|
652 |
+
"learning_rate": 7.902730316337556e-06,
|
653 |
+
"loss": 0.4444,
|
654 |
+
"step": 920
|
655 |
+
},
|
656 |
+
{
|
657 |
+
"epoch": 1.1300911854103344,
|
658 |
+
"grad_norm": 2.445450782775879,
|
659 |
+
"learning_rate": 7.844803415734368e-06,
|
660 |
+
"loss": 0.4694,
|
661 |
+
"step": 930
|
662 |
+
},
|
663 |
+
{
|
664 |
+
"epoch": 1.1422492401215805,
|
665 |
+
"grad_norm": 2.309290647506714,
|
666 |
+
"learning_rate": 7.786306311278354e-06,
|
667 |
+
"loss": 0.4617,
|
668 |
+
"step": 940
|
669 |
+
},
|
670 |
+
{
|
671 |
+
"epoch": 1.1544072948328268,
|
672 |
+
"grad_norm": 2.7566754817962646,
|
673 |
+
"learning_rate": 7.727250727953445e-06,
|
674 |
+
"loss": 0.5046,
|
675 |
+
"step": 950
|
676 |
+
},
|
677 |
+
{
|
678 |
+
"epoch": 1.1665653495440729,
|
679 |
+
"grad_norm": 2.475858211517334,
|
680 |
+
"learning_rate": 7.667648502683406e-06,
|
681 |
+
"loss": 0.5175,
|
682 |
+
"step": 960
|
683 |
+
},
|
684 |
+
{
|
685 |
+
"epoch": 1.1787234042553192,
|
686 |
+
"grad_norm": 2.5813775062561035,
|
687 |
+
"learning_rate": 7.607511581959261e-06,
|
688 |
+
"loss": 0.4656,
|
689 |
+
"step": 970
|
690 |
+
},
|
691 |
+
{
|
692 |
+
"epoch": 1.1908814589665653,
|
693 |
+
"grad_norm": 2.9376819133758545,
|
694 |
+
"learning_rate": 7.5468520194447925e-06,
|
695 |
+
"loss": 0.4945,
|
696 |
+
"step": 980
|
697 |
+
},
|
698 |
+
{
|
699 |
+
"epoch": 1.2030395136778116,
|
700 |
+
"grad_norm": 2.2708747386932373,
|
701 |
+
"learning_rate": 7.485681973560532e-06,
|
702 |
+
"loss": 0.4931,
|
703 |
+
"step": 990
|
704 |
+
},
|
705 |
+
{
|
706 |
+
"epoch": 1.2151975683890577,
|
707 |
+
"grad_norm": 2.87481427192688,
|
708 |
+
"learning_rate": 7.4240137050467635e-06,
|
709 |
+
"loss": 0.4713,
|
710 |
+
"step": 1000
|
711 |
+
},
|
712 |
+
{
|
713 |
+
"epoch": 1.227355623100304,
|
714 |
+
"grad_norm": 3.1325576305389404,
|
715 |
+
"learning_rate": 7.361859574506017e-06,
|
716 |
+
"loss": 0.4775,
|
717 |
+
"step": 1010
|
718 |
+
},
|
719 |
+
{
|
720 |
+
"epoch": 1.23951367781155,
|
721 |
+
"grad_norm": 2.519160509109497,
|
722 |
+
"learning_rate": 7.299232039925552e-06,
|
723 |
+
"loss": 0.4747,
|
724 |
+
"step": 1020
|
725 |
+
},
|
726 |
+
{
|
727 |
+
"epoch": 1.2516717325227964,
|
728 |
+
"grad_norm": 3.1819024085998535,
|
729 |
+
"learning_rate": 7.236143654180311e-06,
|
730 |
+
"loss": 0.4836,
|
731 |
+
"step": 1030
|
732 |
+
},
|
733 |
+
{
|
734 |
+
"epoch": 1.2638297872340425,
|
735 |
+
"grad_norm": 2.5699877738952637,
|
736 |
+
"learning_rate": 7.172607062516856e-06,
|
737 |
+
"loss": 0.4471,
|
738 |
+
"step": 1040
|
739 |
+
},
|
740 |
+
{
|
741 |
+
"epoch": 1.2759878419452888,
|
742 |
+
"grad_norm": 3.718123435974121,
|
743 |
+
"learning_rate": 7.108635000018802e-06,
|
744 |
+
"loss": 0.5022,
|
745 |
+
"step": 1050
|
746 |
+
},
|
747 |
+
{
|
748 |
+
"epoch": 1.288145896656535,
|
749 |
+
"grad_norm": 3.3233118057250977,
|
750 |
+
"learning_rate": 7.044240289054227e-06,
|
751 |
+
"loss": 0.4829,
|
752 |
+
"step": 1060
|
753 |
+
},
|
754 |
+
{
|
755 |
+
"epoch": 1.3003039513677812,
|
756 |
+
"grad_norm": 2.362790584564209,
|
757 |
+
"learning_rate": 6.979435836705602e-06,
|
758 |
+
"loss": 0.4801,
|
759 |
+
"step": 1070
|
760 |
+
},
|
761 |
+
{
|
762 |
+
"epoch": 1.3124620060790273,
|
763 |
+
"grad_norm": 2.5460381507873535,
|
764 |
+
"learning_rate": 6.9142346321827246e-06,
|
765 |
+
"loss": 0.4922,
|
766 |
+
"step": 1080
|
767 |
+
},
|
768 |
+
{
|
769 |
+
"epoch": 1.3246200607902736,
|
770 |
+
"grad_norm": 3.0161983966827393,
|
771 |
+
"learning_rate": 6.84864974421921e-06,
|
772 |
+
"loss": 0.4734,
|
773 |
+
"step": 1090
|
774 |
+
},
|
775 |
+
{
|
776 |
+
"epoch": 1.3367781155015197,
|
777 |
+
"grad_norm": 2.387080669403076,
|
778 |
+
"learning_rate": 6.782694318453033e-06,
|
779 |
+
"loss": 0.4924,
|
780 |
+
"step": 1100
|
781 |
+
},
|
782 |
+
{
|
783 |
+
"epoch": 1.348936170212766,
|
784 |
+
"grad_norm": 3.0172154903411865,
|
785 |
+
"learning_rate": 6.716381574791648e-06,
|
786 |
+
"loss": 0.4669,
|
787 |
+
"step": 1110
|
788 |
+
},
|
789 |
+
{
|
790 |
+
"epoch": 1.361094224924012,
|
791 |
+
"grad_norm": 3.0593836307525635,
|
792 |
+
"learning_rate": 6.649724804762236e-06,
|
793 |
+
"loss": 0.4689,
|
794 |
+
"step": 1120
|
795 |
+
},
|
796 |
+
{
|
797 |
+
"epoch": 1.3732522796352584,
|
798 |
+
"grad_norm": 2.0975329875946045,
|
799 |
+
"learning_rate": 6.5827373688475925e-06,
|
800 |
+
"loss": 0.501,
|
801 |
+
"step": 1130
|
802 |
+
},
|
803 |
+
{
|
804 |
+
"epoch": 1.3854103343465045,
|
805 |
+
"grad_norm": 2.6222572326660156,
|
806 |
+
"learning_rate": 6.5154326938081866e-06,
|
807 |
+
"loss": 0.487,
|
808 |
+
"step": 1140
|
809 |
+
},
|
810 |
+
{
|
811 |
+
"epoch": 1.3975683890577508,
|
812 |
+
"grad_norm": 2.6791985034942627,
|
813 |
+
"learning_rate": 6.447824269990947e-06,
|
814 |
+
"loss": 0.4589,
|
815 |
+
"step": 1150
|
816 |
+
},
|
817 |
+
{
|
818 |
+
"epoch": 1.409726443768997,
|
819 |
+
"grad_norm": 3.0119071006774902,
|
820 |
+
"learning_rate": 6.3799256486252945e-06,
|
821 |
+
"loss": 0.4839,
|
822 |
+
"step": 1160
|
823 |
+
},
|
824 |
+
{
|
825 |
+
"epoch": 1.4218844984802432,
|
826 |
+
"grad_norm": 3.6317973136901855,
|
827 |
+
"learning_rate": 6.311750439106976e-06,
|
828 |
+
"loss": 0.4391,
|
829 |
+
"step": 1170
|
830 |
+
},
|
831 |
+
{
|
832 |
+
"epoch": 1.4340425531914893,
|
833 |
+
"grad_norm": 1.9667277336120605,
|
834 |
+
"learning_rate": 6.243312306270235e-06,
|
835 |
+
"loss": 0.4379,
|
836 |
+
"step": 1180
|
837 |
+
},
|
838 |
+
{
|
839 |
+
"epoch": 1.4462006079027356,
|
840 |
+
"grad_norm": 2.5585360527038574,
|
841 |
+
"learning_rate": 6.174624967648877e-06,
|
842 |
+
"loss": 0.4954,
|
843 |
+
"step": 1190
|
844 |
+
},
|
845 |
+
{
|
846 |
+
"epoch": 1.4583586626139817,
|
847 |
+
"grad_norm": 2.421276330947876,
|
848 |
+
"learning_rate": 6.105702190726765e-06,
|
849 |
+
"loss": 0.4558,
|
850 |
+
"step": 1200
|
851 |
+
},
|
852 |
+
{
|
853 |
+
"epoch": 1.470516717325228,
|
854 |
+
"grad_norm": 2.7117786407470703,
|
855 |
+
"learning_rate": 6.03655779017831e-06,
|
856 |
+
"loss": 0.488,
|
857 |
+
"step": 1210
|
858 |
+
},
|
859 |
+
{
|
860 |
+
"epoch": 1.4826747720364741,
|
861 |
+
"grad_norm": 2.3945164680480957,
|
862 |
+
"learning_rate": 5.967205625099496e-06,
|
863 |
+
"loss": 0.4849,
|
864 |
+
"step": 1220
|
865 |
+
},
|
866 |
+
{
|
867 |
+
"epoch": 1.4948328267477204,
|
868 |
+
"grad_norm": 2.291707754135132,
|
869 |
+
"learning_rate": 5.897659596230003e-06,
|
870 |
+
"loss": 0.4614,
|
871 |
+
"step": 1230
|
872 |
+
},
|
873 |
+
{
|
874 |
+
"epoch": 1.5069908814589665,
|
875 |
+
"grad_norm": 2.583559036254883,
|
876 |
+
"learning_rate": 5.827933643166993e-06,
|
877 |
+
"loss": 0.4626,
|
878 |
+
"step": 1240
|
879 |
+
},
|
880 |
+
{
|
881 |
+
"epoch": 1.5191489361702128,
|
882 |
+
"grad_norm": 2.1779534816741943,
|
883 |
+
"learning_rate": 5.758041741571088e-06,
|
884 |
+
"loss": 0.4774,
|
885 |
+
"step": 1250
|
886 |
+
},
|
887 |
+
{
|
888 |
+
"epoch": 1.531306990881459,
|
889 |
+
"grad_norm": 3.738179922103882,
|
890 |
+
"learning_rate": 5.687997900365134e-06,
|
891 |
+
"loss": 0.4487,
|
892 |
+
"step": 1260
|
893 |
+
},
|
894 |
+
{
|
895 |
+
"epoch": 1.543465045592705,
|
896 |
+
"grad_norm": 2.461461305618286,
|
897 |
+
"learning_rate": 5.617816158926303e-06,
|
898 |
+
"loss": 0.4851,
|
899 |
+
"step": 1270
|
900 |
+
},
|
901 |
+
{
|
902 |
+
"epoch": 1.5556231003039513,
|
903 |
+
"grad_norm": 2.784620523452759,
|
904 |
+
"learning_rate": 5.547510584272069e-06,
|
905 |
+
"loss": 0.5079,
|
906 |
+
"step": 1280
|
907 |
+
},
|
908 |
+
{
|
909 |
+
"epoch": 1.5677811550151977,
|
910 |
+
"grad_norm": 2.8999369144439697,
|
911 |
+
"learning_rate": 5.477095268240669e-06,
|
912 |
+
"loss": 0.4596,
|
913 |
+
"step": 1290
|
914 |
+
},
|
915 |
+
{
|
916 |
+
"epoch": 1.5799392097264437,
|
917 |
+
"grad_norm": 2.786457061767578,
|
918 |
+
"learning_rate": 5.406584324666565e-06,
|
919 |
+
"loss": 0.4226,
|
920 |
+
"step": 1300
|
921 |
+
},
|
922 |
+
{
|
923 |
+
"epoch": 1.5920972644376898,
|
924 |
+
"grad_norm": 3.0281615257263184,
|
925 |
+
"learning_rate": 5.335991886551526e-06,
|
926 |
+
"loss": 0.4826,
|
927 |
+
"step": 1310
|
928 |
+
},
|
929 |
+
{
|
930 |
+
"epoch": 1.6042553191489362,
|
931 |
+
"grad_norm": 2.60740327835083,
|
932 |
+
"learning_rate": 5.2653321032318315e-06,
|
933 |
+
"loss": 0.5185,
|
934 |
+
"step": 1320
|
935 |
+
},
|
936 |
+
{
|
937 |
+
"epoch": 1.6164133738601825,
|
938 |
+
"grad_norm": 2.150132179260254,
|
939 |
+
"learning_rate": 5.194619137542241e-06,
|
940 |
+
"loss": 0.511,
|
941 |
+
"step": 1330
|
942 |
+
},
|
943 |
+
{
|
944 |
+
"epoch": 1.6285714285714286,
|
945 |
+
"grad_norm": 2.7613778114318848,
|
946 |
+
"learning_rate": 5.123867162977224e-06,
|
947 |
+
"loss": 0.4653,
|
948 |
+
"step": 1340
|
949 |
+
},
|
950 |
+
{
|
951 |
+
"epoch": 1.6407294832826747,
|
952 |
+
"grad_norm": 2.5103297233581543,
|
953 |
+
"learning_rate": 5.053090360850072e-06,
|
954 |
+
"loss": 0.4206,
|
955 |
+
"step": 1350
|
956 |
+
},
|
957 |
+
{
|
958 |
+
"epoch": 1.652887537993921,
|
959 |
+
"grad_norm": 2.6275055408477783,
|
960 |
+
"learning_rate": 4.9823029174504335e-06,
|
961 |
+
"loss": 0.4727,
|
962 |
+
"step": 1360
|
963 |
+
},
|
964 |
+
{
|
965 |
+
"epoch": 1.6650455927051673,
|
966 |
+
"grad_norm": 2.6730258464813232,
|
967 |
+
"learning_rate": 4.9115190212008745e-06,
|
968 |
+
"loss": 0.4616,
|
969 |
+
"step": 1370
|
970 |
+
},
|
971 |
+
{
|
972 |
+
"epoch": 1.6772036474164134,
|
973 |
+
"grad_norm": 2.8876965045928955,
|
974 |
+
"learning_rate": 4.840752859812972e-06,
|
975 |
+
"loss": 0.4868,
|
976 |
+
"step": 1380
|
977 |
+
},
|
978 |
+
{
|
979 |
+
"epoch": 1.6893617021276595,
|
980 |
+
"grad_norm": 2.7904891967773438,
|
981 |
+
"learning_rate": 4.770018617443578e-06,
|
982 |
+
"loss": 0.4453,
|
983 |
+
"step": 1390
|
984 |
+
},
|
985 |
+
{
|
986 |
+
"epoch": 1.7015197568389058,
|
987 |
+
"grad_norm": 2.7088356018066406,
|
988 |
+
"learning_rate": 4.699330471851798e-06,
|
989 |
+
"loss": 0.4708,
|
990 |
+
"step": 1400
|
991 |
+
},
|
992 |
+
{
|
993 |
+
"epoch": 1.713677811550152,
|
994 |
+
"grad_norm": 2.1268298625946045,
|
995 |
+
"learning_rate": 4.628702591557237e-06,
|
996 |
+
"loss": 0.4901,
|
997 |
+
"step": 1410
|
998 |
+
},
|
999 |
+
{
|
1000 |
+
"epoch": 1.7258358662613982,
|
1001 |
+
"grad_norm": 2.3978848457336426,
|
1002 |
+
"learning_rate": 4.558149133000104e-06,
|
1003 |
+
"loss": 0.5164,
|
1004 |
+
"step": 1420
|
1005 |
+
},
|
1006 |
+
{
|
1007 |
+
"epoch": 1.7379939209726443,
|
1008 |
+
"grad_norm": 1.8490489721298218,
|
1009 |
+
"learning_rate": 4.487684237703734e-06,
|
1010 |
+
"loss": 0.4342,
|
1011 |
+
"step": 1430
|
1012 |
+
},
|
1013 |
+
{
|
1014 |
+
"epoch": 1.7501519756838906,
|
1015 |
+
"grad_norm": 2.7367939949035645,
|
1016 |
+
"learning_rate": 4.417322029440119e-06,
|
1017 |
+
"loss": 0.4887,
|
1018 |
+
"step": 1440
|
1019 |
+
},
|
1020 |
+
{
|
1021 |
+
"epoch": 1.762310030395137,
|
1022 |
+
"grad_norm": 2.217988967895508,
|
1023 |
+
"learning_rate": 4.347076611398961e-06,
|
1024 |
+
"loss": 0.46,
|
1025 |
+
"step": 1450
|
1026 |
+
},
|
1027 |
+
{
|
1028 |
+
"epoch": 1.774468085106383,
|
1029 |
+
"grad_norm": 2.8989672660827637,
|
1030 |
+
"learning_rate": 4.2769620633608835e-06,
|
1031 |
+
"loss": 0.4524,
|
1032 |
+
"step": 1460
|
1033 |
+
},
|
1034 |
+
{
|
1035 |
+
"epoch": 1.786626139817629,
|
1036 |
+
"grad_norm": 2.5125184059143066,
|
1037 |
+
"learning_rate": 4.206992438875318e-06,
|
1038 |
+
"loss": 0.4346,
|
1039 |
+
"step": 1470
|
1040 |
+
},
|
1041 |
+
{
|
1042 |
+
"epoch": 1.7987841945288754,
|
1043 |
+
"grad_norm": 2.9049086570739746,
|
1044 |
+
"learning_rate": 4.137181762443658e-06,
|
1045 |
+
"loss": 0.3629,
|
1046 |
+
"step": 1480
|
1047 |
+
},
|
1048 |
+
{
|
1049 |
+
"epoch": 1.8109422492401217,
|
1050 |
+
"grad_norm": 2.5007903575897217,
|
1051 |
+
"learning_rate": 4.0675440267082236e-06,
|
1052 |
+
"loss": 0.4943,
|
1053 |
+
"step": 1490
|
1054 |
+
},
|
1055 |
+
{
|
1056 |
+
"epoch": 1.8231003039513678,
|
1057 |
+
"grad_norm": 2.90285325050354,
|
1058 |
+
"learning_rate": 3.998093189647622e-06,
|
1059 |
+
"loss": 0.4331,
|
1060 |
+
"step": 1500
|
1061 |
+
},
|
1062 |
+
{
|
1063 |
+
"epoch": 1.8352583586626139,
|
1064 |
+
"grad_norm": 2.7467432022094727,
|
1065 |
+
"learning_rate": 3.928843171779051e-06,
|
1066 |
+
"loss": 0.4826,
|
1067 |
+
"step": 1510
|
1068 |
+
},
|
1069 |
+
{
|
1070 |
+
"epoch": 1.8474164133738602,
|
1071 |
+
"grad_norm": 2.5184881687164307,
|
1072 |
+
"learning_rate": 3.859807853368112e-06,
|
1073 |
+
"loss": 0.4204,
|
1074 |
+
"step": 1520
|
1075 |
+
},
|
1076 |
+
{
|
1077 |
+
"epoch": 1.8595744680851065,
|
1078 |
+
"grad_norm": 2.262559652328491,
|
1079 |
+
"learning_rate": 3.791001071646695e-06,
|
1080 |
+
"loss": 0.455,
|
1081 |
+
"step": 1530
|
1082 |
+
},
|
1083 |
+
{
|
1084 |
+
"epoch": 1.8717325227963526,
|
1085 |
+
"grad_norm": 2.8905036449432373,
|
1086 |
+
"learning_rate": 3.72243661803948e-06,
|
1087 |
+
"loss": 0.4584,
|
1088 |
+
"step": 1540
|
1089 |
+
},
|
1090 |
+
{
|
1091 |
+
"epoch": 1.8838905775075987,
|
1092 |
+
"grad_norm": 3.1106526851654053,
|
1093 |
+
"learning_rate": 3.6541282353996275e-06,
|
1094 |
+
"loss": 0.4559,
|
1095 |
+
"step": 1550
|
1096 |
+
},
|
1097 |
+
{
|
1098 |
+
"epoch": 1.896048632218845,
|
1099 |
+
"grad_norm": 2.7985055446624756,
|
1100 |
+
"learning_rate": 3.5860896152542013e-06,
|
1101 |
+
"loss": 0.4452,
|
1102 |
+
"step": 1560
|
1103 |
+
},
|
1104 |
+
{
|
1105 |
+
"epoch": 1.9082066869300913,
|
1106 |
+
"grad_norm": 2.4769771099090576,
|
1107 |
+
"learning_rate": 3.5183343950598825e-06,
|
1108 |
+
"loss": 0.463,
|
1109 |
+
"step": 1570
|
1110 |
+
},
|
1111 |
+
{
|
1112 |
+
"epoch": 1.9203647416413374,
|
1113 |
+
"grad_norm": 2.9029109477996826,
|
1114 |
+
"learning_rate": 3.450876155469518e-06,
|
1115 |
+
"loss": 0.4377,
|
1116 |
+
"step": 1580
|
1117 |
+
},
|
1118 |
+
{
|
1119 |
+
"epoch": 1.9325227963525835,
|
1120 |
+
"grad_norm": 2.444227457046509,
|
1121 |
+
"learning_rate": 3.3837284176100543e-06,
|
1122 |
+
"loss": 0.4559,
|
1123 |
+
"step": 1590
|
1124 |
+
},
|
1125 |
+
{
|
1126 |
+
"epoch": 1.9446808510638298,
|
1127 |
+
"grad_norm": 1.8885170221328735,
|
1128 |
+
"learning_rate": 3.3169046403724004e-06,
|
1129 |
+
"loss": 0.4315,
|
1130 |
+
"step": 1600
|
1131 |
+
},
|
1132 |
+
{
|
1133 |
+
"epoch": 1.9568389057750761,
|
1134 |
+
"grad_norm": 2.370542526245117,
|
1135 |
+
"learning_rate": 3.250418217713771e-06,
|
1136 |
+
"loss": 0.4496,
|
1137 |
+
"step": 1610
|
1138 |
+
},
|
1139 |
+
{
|
1140 |
+
"epoch": 1.9689969604863222,
|
1141 |
+
"grad_norm": 2.281675338745117,
|
1142 |
+
"learning_rate": 3.1842824759730518e-06,
|
1143 |
+
"loss": 0.4651,
|
1144 |
+
"step": 1620
|
1145 |
+
},
|
1146 |
+
{
|
1147 |
+
"epoch": 1.9811550151975683,
|
1148 |
+
"grad_norm": 2.4642460346221924,
|
1149 |
+
"learning_rate": 3.1185106711996848e-06,
|
1150 |
+
"loss": 0.4492,
|
1151 |
+
"step": 1630
|
1152 |
+
},
|
1153 |
+
{
|
1154 |
+
"epoch": 1.9933130699088146,
|
1155 |
+
"grad_norm": 2.898085355758667,
|
1156 |
+
"learning_rate": 3.0531159864966885e-06,
|
1157 |
+
"loss": 0.4217,
|
1158 |
+
"step": 1640
|
1159 |
+
},
|
1160 |
+
{
|
1161 |
+
"epoch": 2.0048632218844986,
|
1162 |
+
"grad_norm": 2.5043299198150635,
|
1163 |
+
"learning_rate": 2.9881115293782638e-06,
|
1164 |
+
"loss": 0.4087,
|
1165 |
+
"step": 1650
|
1166 |
+
},
|
1167 |
+
{
|
1168 |
+
"epoch": 2.0170212765957447,
|
1169 |
+
"grad_norm": 2.5139353275299072,
|
1170 |
+
"learning_rate": 2.923510329142568e-06,
|
1171 |
+
"loss": 0.3166,
|
1172 |
+
"step": 1660
|
1173 |
+
},
|
1174 |
+
{
|
1175 |
+
"epoch": 2.029179331306991,
|
1176 |
+
"grad_norm": 2.334691047668457,
|
1177 |
+
"learning_rate": 2.8593253342601557e-06,
|
1178 |
+
"loss": 0.2967,
|
1179 |
+
"step": 1670
|
1180 |
+
},
|
1181 |
+
{
|
1182 |
+
"epoch": 2.041337386018237,
|
1183 |
+
"grad_norm": 2.763742685317993,
|
1184 |
+
"learning_rate": 2.795569409778639e-06,
|
1185 |
+
"loss": 0.3263,
|
1186 |
+
"step": 1680
|
1187 |
+
},
|
1188 |
+
{
|
1189 |
+
"epoch": 2.0534954407294834,
|
1190 |
+
"grad_norm": 2.539466142654419,
|
1191 |
+
"learning_rate": 2.7322553347440368e-06,
|
1192 |
+
"loss": 0.2964,
|
1193 |
+
"step": 1690
|
1194 |
+
},
|
1195 |
+
{
|
1196 |
+
"epoch": 2.0656534954407295,
|
1197 |
+
"grad_norm": 3.0033152103424072,
|
1198 |
+
"learning_rate": 2.6693957996393984e-06,
|
1199 |
+
"loss": 0.3157,
|
1200 |
+
"step": 1700
|
1201 |
+
},
|
1202 |
+
{
|
1203 |
+
"epoch": 2.0778115501519756,
|
1204 |
+
"grad_norm": 2.8573410511016846,
|
1205 |
+
"learning_rate": 2.6070034038411553e-06,
|
1206 |
+
"loss": 0.3542,
|
1207 |
+
"step": 1710
|
1208 |
+
},
|
1209 |
+
{
|
1210 |
+
"epoch": 2.0899696048632217,
|
1211 |
+
"grad_norm": 2.31459641456604,
|
1212 |
+
"learning_rate": 2.545090653093738e-06,
|
1213 |
+
"loss": 0.2965,
|
1214 |
+
"step": 1720
|
1215 |
+
},
|
1216 |
+
{
|
1217 |
+
"epoch": 2.1021276595744682,
|
1218 |
+
"grad_norm": 2.5029146671295166,
|
1219 |
+
"learning_rate": 2.4836699570029623e-06,
|
1220 |
+
"loss": 0.295,
|
1221 |
+
"step": 1730
|
1222 |
+
},
|
1223 |
+
{
|
1224 |
+
"epoch": 2.1142857142857143,
|
1225 |
+
"grad_norm": 2.295614004135132,
|
1226 |
+
"learning_rate": 2.4227536265486885e-06,
|
1227 |
+
"loss": 0.3075,
|
1228 |
+
"step": 1740
|
1229 |
+
},
|
1230 |
+
{
|
1231 |
+
"epoch": 2.1264437689969604,
|
1232 |
+
"grad_norm": 2.5719516277313232,
|
1233 |
+
"learning_rate": 2.3623538716172394e-06,
|
1234 |
+
"loss": 0.3397,
|
1235 |
+
"step": 1750
|
1236 |
+
},
|
1237 |
+
{
|
1238 |
+
"epoch": 2.1386018237082065,
|
1239 |
+
"grad_norm": 2.6095409393310547,
|
1240 |
+
"learning_rate": 2.302482798554096e-06,
|
1241 |
+
"loss": 0.324,
|
1242 |
+
"step": 1760
|
1243 |
+
},
|
1244 |
+
{
|
1245 |
+
"epoch": 2.150759878419453,
|
1246 |
+
"grad_norm": 2.429758310317993,
|
1247 |
+
"learning_rate": 2.2431524077373314e-06,
|
1248 |
+
"loss": 0.2939,
|
1249 |
+
"step": 1770
|
1250 |
+
},
|
1251 |
+
{
|
1252 |
+
"epoch": 2.162917933130699,
|
1253 |
+
"grad_norm": 2.9179751873016357,
|
1254 |
+
"learning_rate": 2.1843745911722937e-06,
|
1255 |
+
"loss": 0.308,
|
1256 |
+
"step": 1780
|
1257 |
+
},
|
1258 |
+
{
|
1259 |
+
"epoch": 2.1750759878419452,
|
1260 |
+
"grad_norm": 3.281049966812134,
|
1261 |
+
"learning_rate": 2.1261611301080063e-06,
|
1262 |
+
"loss": 0.3229,
|
1263 |
+
"step": 1790
|
1264 |
+
},
|
1265 |
+
{
|
1266 |
+
"epoch": 2.1872340425531913,
|
1267 |
+
"grad_norm": 2.931143283843994,
|
1268 |
+
"learning_rate": 2.068523692675772e-06,
|
1269 |
+
"loss": 0.3107,
|
1270 |
+
"step": 1800
|
1271 |
+
},
|
1272 |
+
{
|
1273 |
+
"epoch": 2.199392097264438,
|
1274 |
+
"grad_norm": 2.432403802871704,
|
1275 |
+
"learning_rate": 2.0114738315504505e-06,
|
1276 |
+
"loss": 0.2925,
|
1277 |
+
"step": 1810
|
1278 |
+
},
|
1279 |
+
{
|
1280 |
+
"epoch": 2.211550151975684,
|
1281 |
+
"grad_norm": 3.296288251876831,
|
1282 |
+
"learning_rate": 1.955022981634863e-06,
|
1283 |
+
"loss": 0.3115,
|
1284 |
+
"step": 1820
|
1285 |
+
},
|
1286 |
+
{
|
1287 |
+
"epoch": 2.22370820668693,
|
1288 |
+
"grad_norm": 2.6482620239257812,
|
1289 |
+
"learning_rate": 1.8991824577678269e-06,
|
1290 |
+
"loss": 0.3423,
|
1291 |
+
"step": 1830
|
1292 |
+
},
|
1293 |
+
{
|
1294 |
+
"epoch": 2.235866261398176,
|
1295 |
+
"grad_norm": 2.5689730644226074,
|
1296 |
+
"learning_rate": 1.8439634524562423e-06,
|
1297 |
+
"loss": 0.344,
|
1298 |
+
"step": 1840
|
1299 |
+
},
|
1300 |
+
{
|
1301 |
+
"epoch": 2.2480243161094227,
|
1302 |
+
"grad_norm": 2.4932291507720947,
|
1303 |
+
"learning_rate": 1.7893770336316928e-06,
|
1304 |
+
"loss": 0.3052,
|
1305 |
+
"step": 1850
|
1306 |
+
},
|
1307 |
+
{
|
1308 |
+
"epoch": 2.2601823708206688,
|
1309 |
+
"grad_norm": 2.985034704208374,
|
1310 |
+
"learning_rate": 1.7354341424320286e-06,
|
1311 |
+
"loss": 0.3056,
|
1312 |
+
"step": 1860
|
1313 |
+
},
|
1314 |
+
{
|
1315 |
+
"epoch": 2.272340425531915,
|
1316 |
+
"grad_norm": 2.558969020843506,
|
1317 |
+
"learning_rate": 1.6821455910083535e-06,
|
1318 |
+
"loss": 0.2883,
|
1319 |
+
"step": 1870
|
1320 |
+
},
|
1321 |
+
{
|
1322 |
+
"epoch": 2.284498480243161,
|
1323 |
+
"grad_norm": 2.731433868408203,
|
1324 |
+
"learning_rate": 1.6295220603578727e-06,
|
1325 |
+
"loss": 0.3017,
|
1326 |
+
"step": 1880
|
1327 |
+
},
|
1328 |
+
{
|
1329 |
+
"epoch": 2.2966565349544075,
|
1330 |
+
"grad_norm": 2.7767181396484375,
|
1331 |
+
"learning_rate": 1.5775740981830262e-06,
|
1332 |
+
"loss": 0.3348,
|
1333 |
+
"step": 1890
|
1334 |
+
},
|
1335 |
+
{
|
1336 |
+
"epoch": 2.3088145896656536,
|
1337 |
+
"grad_norm": 2.289393424987793,
|
1338 |
+
"learning_rate": 1.526312116777336e-06,
|
1339 |
+
"loss": 0.3377,
|
1340 |
+
"step": 1900
|
1341 |
+
},
|
1342 |
+
{
|
1343 |
+
"epoch": 2.3209726443768997,
|
1344 |
+
"grad_norm": 2.3055357933044434,
|
1345 |
+
"learning_rate": 1.475746390938399e-06,
|
1346 |
+
"loss": 0.3111,
|
1347 |
+
"step": 1910
|
1348 |
+
},
|
1349 |
+
{
|
1350 |
+
"epoch": 2.3331306990881457,
|
1351 |
+
"grad_norm": 3.120150089263916,
|
1352 |
+
"learning_rate": 1.4258870559084387e-06,
|
1353 |
+
"loss": 0.3172,
|
1354 |
+
"step": 1920
|
1355 |
+
},
|
1356 |
+
{
|
1357 |
+
"epoch": 2.3452887537993923,
|
1358 |
+
"grad_norm": 2.520087718963623,
|
1359 |
+
"learning_rate": 1.3767441053428244e-06,
|
1360 |
+
"loss": 0.3071,
|
1361 |
+
"step": 1930
|
1362 |
+
},
|
1363 |
+
{
|
1364 |
+
"epoch": 2.3574468085106384,
|
1365 |
+
"grad_norm": 2.533917188644409,
|
1366 |
+
"learning_rate": 1.328327389306977e-06,
|
1367 |
+
"loss": 0.328,
|
1368 |
+
"step": 1940
|
1369 |
+
},
|
1370 |
+
{
|
1371 |
+
"epoch": 2.3696048632218845,
|
1372 |
+
"grad_norm": 2.611781120300293,
|
1373 |
+
"learning_rate": 1.2806466123020479e-06,
|
1374 |
+
"loss": 0.2373,
|
1375 |
+
"step": 1950
|
1376 |
+
},
|
1377 |
+
{
|
1378 |
+
"epoch": 2.3817629179331306,
|
1379 |
+
"grad_norm": 2.3127501010894775,
|
1380 |
+
"learning_rate": 1.2337113313197813e-06,
|
1381 |
+
"loss": 0.3226,
|
1382 |
+
"step": 1960
|
1383 |
+
},
|
1384 |
+
{
|
1385 |
+
"epoch": 2.393920972644377,
|
1386 |
+
"grad_norm": 3.0540225505828857,
|
1387 |
+
"learning_rate": 1.1875309539269332e-06,
|
1388 |
+
"loss": 0.3181,
|
1389 |
+
"step": 1970
|
1390 |
+
},
|
1391 |
+
{
|
1392 |
+
"epoch": 2.406079027355623,
|
1393 |
+
"grad_norm": 2.2503840923309326,
|
1394 |
+
"learning_rate": 1.1421147363796547e-06,
|
1395 |
+
"loss": 0.2918,
|
1396 |
+
"step": 1980
|
1397 |
+
},
|
1398 |
+
{
|
1399 |
+
"epoch": 2.4182370820668693,
|
1400 |
+
"grad_norm": 2.5295841693878174,
|
1401 |
+
"learning_rate": 1.097471781768194e-06,
|
1402 |
+
"loss": 0.2941,
|
1403 |
+
"step": 1990
|
1404 |
+
},
|
1405 |
+
{
|
1406 |
+
"epoch": 2.4303951367781154,
|
1407 |
+
"grad_norm": 2.7835609912872314,
|
1408 |
+
"learning_rate": 1.053611038192296e-06,
|
1409 |
+
"loss": 0.2901,
|
1410 |
+
"step": 2000
|
1411 |
+
},
|
1412 |
+
{
|
1413 |
+
"epoch": 2.4425531914893615,
|
1414 |
+
"grad_norm": 2.6751868724823,
|
1415 |
+
"learning_rate": 1.0105412969676758e-06,
|
1416 |
+
"loss": 0.335,
|
1417 |
+
"step": 2010
|
1418 |
+
},
|
1419 |
+
{
|
1420 |
+
"epoch": 2.454711246200608,
|
1421 |
+
"grad_norm": 2.333569049835205,
|
1422 |
+
"learning_rate": 9.682711908639137e-07,
|
1423 |
+
"loss": 0.2967,
|
1424 |
+
"step": 2020
|
1425 |
+
},
|
1426 |
+
{
|
1427 |
+
"epoch": 2.466869300911854,
|
1428 |
+
"grad_norm": 2.4557461738586426,
|
1429 |
+
"learning_rate": 9.268091923741246e-07,
|
1430 |
+
"loss": 0.2856,
|
1431 |
+
"step": 2030
|
1432 |
+
},
|
1433 |
+
{
|
1434 |
+
"epoch": 2.4790273556231,
|
1435 |
+
"grad_norm": 2.8368921279907227,
|
1436 |
+
"learning_rate": 8.861636120167632e-07,
|
1437 |
+
"loss": 0.3396,
|
1438 |
+
"step": 2040
|
1439 |
+
},
|
1440 |
+
{
|
1441 |
+
"epoch": 2.4911854103343467,
|
1442 |
+
"grad_norm": 2.238975763320923,
|
1443 |
+
"learning_rate": 8.463425966698857e-07,
|
1444 |
+
"loss": 0.3138,
|
1445 |
+
"step": 2050
|
1446 |
+
},
|
1447 |
+
{
|
1448 |
+
"epoch": 2.503343465045593,
|
1449 |
+
"grad_norm": 2.7118637561798096,
|
1450 |
+
"learning_rate": 8.073541279382135e-07,
|
1451 |
+
"loss": 0.3397,
|
1452 |
+
"step": 2060
|
1453 |
+
},
|
1454 |
+
{
|
1455 |
+
"epoch": 2.515501519756839,
|
1456 |
+
"grad_norm": 2.528172731399536,
|
1457 |
+
"learning_rate": 7.69206020553323e-07,
|
1458 |
+
"loss": 0.3273,
|
1459 |
+
"step": 2070
|
1460 |
+
},
|
1461 |
+
{
|
1462 |
+
"epoch": 2.527659574468085,
|
1463 |
+
"grad_norm": 2.3029799461364746,
|
1464 |
+
"learning_rate": 7.319059208072909e-07,
|
1465 |
+
"loss": 0.3238,
|
1466 |
+
"step": 2080
|
1467 |
+
},
|
1468 |
+
{
|
1469 |
+
"epoch": 2.539817629179331,
|
1470 |
+
"grad_norm": 2.535954475402832,
|
1471 |
+
"learning_rate": 6.954613050200859e-07,
|
1472 |
+
"loss": 0.328,
|
1473 |
+
"step": 2090
|
1474 |
+
},
|
1475 |
+
{
|
1476 |
+
"epoch": 2.5519756838905776,
|
1477 |
+
"grad_norm": 2.4356179237365723,
|
1478 |
+
"learning_rate": 6.5987947804104e-07,
|
1479 |
+
"loss": 0.3081,
|
1480 |
+
"step": 2100
|
1481 |
+
},
|
1482 |
+
{
|
1483 |
+
"epoch": 2.5641337386018237,
|
1484 |
+
"grad_norm": 2.039999008178711,
|
1485 |
+
"learning_rate": 6.251675717846905e-07,
|
1486 |
+
"loss": 0.311,
|
1487 |
+
"step": 2110
|
1488 |
+
},
|
1489 |
+
{
|
1490 |
+
"epoch": 2.57629179331307,
|
1491 |
+
"grad_norm": 2.296266794204712,
|
1492 |
+
"learning_rate": 5.913325438012773e-07,
|
1493 |
+
"loss": 0.2815,
|
1494 |
+
"step": 2120
|
1495 |
+
},
|
1496 |
+
{
|
1497 |
+
"epoch": 2.5884498480243163,
|
1498 |
+
"grad_norm": 2.9788355827331543,
|
1499 |
+
"learning_rate": 5.583811758821916e-07,
|
1500 |
+
"loss": 0.3346,
|
1501 |
+
"step": 2130
|
1502 |
+
},
|
1503 |
+
{
|
1504 |
+
"epoch": 2.6006079027355624,
|
1505 |
+
"grad_norm": 3.0497772693634033,
|
1506 |
+
"learning_rate": 5.263200727006568e-07,
|
1507 |
+
"loss": 0.2976,
|
1508 |
+
"step": 2140
|
1509 |
+
},
|
1510 |
+
{
|
1511 |
+
"epoch": 2.6127659574468085,
|
1512 |
+
"grad_norm": 2.972386121749878,
|
1513 |
+
"learning_rate": 4.951556604879049e-07,
|
1514 |
+
"loss": 0.272,
|
1515 |
+
"step": 2150
|
1516 |
+
},
|
1517 |
+
{
|
1518 |
+
"epoch": 2.6249240121580546,
|
1519 |
+
"grad_norm": 3.3032212257385254,
|
1520 |
+
"learning_rate": 4.648941857451228e-07,
|
1521 |
+
"loss": 0.2989,
|
1522 |
+
"step": 2160
|
1523 |
+
},
|
1524 |
+
{
|
1525 |
+
"epoch": 2.6370820668693007,
|
1526 |
+
"grad_norm": 2.078023672103882,
|
1527 |
+
"learning_rate": 4.355417139914242e-07,
|
1528 |
+
"loss": 0.3353,
|
1529 |
+
"step": 2170
|
1530 |
+
},
|
1531 |
+
{
|
1532 |
+
"epoch": 2.6492401215805472,
|
1533 |
+
"grad_norm": 2.5029313564300537,
|
1534 |
+
"learning_rate": 4.0710412854809255e-07,
|
1535 |
+
"loss": 0.3413,
|
1536 |
+
"step": 2180
|
1537 |
+
},
|
1538 |
+
{
|
1539 |
+
"epoch": 2.6613981762917933,
|
1540 |
+
"grad_norm": 2.516641616821289,
|
1541 |
+
"learning_rate": 3.7958712935934726e-07,
|
1542 |
+
"loss": 0.347,
|
1543 |
+
"step": 2190
|
1544 |
+
},
|
1545 |
+
{
|
1546 |
+
"epoch": 2.6735562310030394,
|
1547 |
+
"grad_norm": 2.115417718887329,
|
1548 |
+
"learning_rate": 3.5299623184986366e-07,
|
1549 |
+
"loss": 0.2955,
|
1550 |
+
"step": 2200
|
1551 |
+
},
|
1552 |
+
{
|
1553 |
+
"epoch": 2.685714285714286,
|
1554 |
+
"grad_norm": 2.419532299041748,
|
1555 |
+
"learning_rate": 3.273367658192778e-07,
|
1556 |
+
"loss": 0.285,
|
1557 |
+
"step": 2210
|
1558 |
+
},
|
1559 |
+
{
|
1560 |
+
"epoch": 2.697872340425532,
|
1561 |
+
"grad_norm": 2.186316967010498,
|
1562 |
+
"learning_rate": 3.0261387437389766e-07,
|
1563 |
+
"loss": 0.3091,
|
1564 |
+
"step": 2220
|
1565 |
+
},
|
1566 |
+
{
|
1567 |
+
"epoch": 2.710030395136778,
|
1568 |
+
"grad_norm": 2.725886583328247,
|
1569 |
+
"learning_rate": 2.7883251289583467e-07,
|
1570 |
+
"loss": 0.317,
|
1571 |
+
"step": 2230
|
1572 |
+
},
|
1573 |
+
{
|
1574 |
+
"epoch": 2.722188449848024,
|
1575 |
+
"grad_norm": 2.355541944503784,
|
1576 |
+
"learning_rate": 2.5599744804975956e-07,
|
1577 |
+
"loss": 0.3093,
|
1578 |
+
"step": 2240
|
1579 |
+
},
|
1580 |
+
{
|
1581 |
+
"epoch": 2.7343465045592703,
|
1582 |
+
"grad_norm": 2.3325600624084473,
|
1583 |
+
"learning_rate": 2.3411325682748843e-07,
|
1584 |
+
"loss": 0.2784,
|
1585 |
+
"step": 2250
|
1586 |
+
},
|
1587 |
+
{
|
1588 |
+
"epoch": 2.746504559270517,
|
1589 |
+
"grad_norm": 2.1935389041900635,
|
1590 |
+
"learning_rate": 2.1318432563058765e-07,
|
1591 |
+
"loss": 0.2835,
|
1592 |
+
"step": 2260
|
1593 |
+
},
|
1594 |
+
{
|
1595 |
+
"epoch": 2.758662613981763,
|
1596 |
+
"grad_norm": 2.6569478511810303,
|
1597 |
+
"learning_rate": 1.9321484939116843e-07,
|
1598 |
+
"loss": 0.2821,
|
1599 |
+
"step": 2270
|
1600 |
+
},
|
1601 |
+
{
|
1602 |
+
"epoch": 2.770820668693009,
|
1603 |
+
"grad_norm": 2.2891359329223633,
|
1604 |
+
"learning_rate": 1.742088307310741e-07,
|
1605 |
+
"loss": 0.3362,
|
1606 |
+
"step": 2280
|
1607 |
+
},
|
1608 |
+
{
|
1609 |
+
"epoch": 2.7829787234042556,
|
1610 |
+
"grad_norm": 2.387622833251953,
|
1611 |
+
"learning_rate": 1.561700791596038e-07,
|
1612 |
+
"loss": 0.2973,
|
1613 |
+
"step": 2290
|
1614 |
+
},
|
1615 |
+
{
|
1616 |
+
"epoch": 2.7951367781155017,
|
1617 |
+
"grad_norm": 2.550020217895508,
|
1618 |
+
"learning_rate": 1.3910221030994764e-07,
|
1619 |
+
"loss": 0.279,
|
1620 |
+
"step": 2300
|
1621 |
+
},
|
1622 |
+
{
|
1623 |
+
"epoch": 2.8072948328267477,
|
1624 |
+
"grad_norm": 2.9916679859161377,
|
1625 |
+
"learning_rate": 1.2300864521447575e-07,
|
1626 |
+
"loss": 0.3318,
|
1627 |
+
"step": 2310
|
1628 |
+
},
|
1629 |
+
{
|
1630 |
+
"epoch": 2.819452887537994,
|
1631 |
+
"grad_norm": 2.5227696895599365,
|
1632 |
+
"learning_rate": 1.0789260961904357e-07,
|
1633 |
+
"loss": 0.2887,
|
1634 |
+
"step": 2320
|
1635 |
+
},
|
1636 |
+
{
|
1637 |
+
"epoch": 2.83161094224924,
|
1638 |
+
"grad_norm": 2.750169038772583,
|
1639 |
+
"learning_rate": 9.375713333642677e-08,
|
1640 |
+
"loss": 0.3087,
|
1641 |
+
"step": 2330
|
1642 |
+
},
|
1643 |
+
{
|
1644 |
+
"epoch": 2.8437689969604865,
|
1645 |
+
"grad_norm": 2.2595717906951904,
|
1646 |
+
"learning_rate": 8.060504963903815e-08,
|
1647 |
+
"loss": 0.28,
|
1648 |
+
"step": 2340
|
1649 |
+
},
|
1650 |
+
{
|
1651 |
+
"epoch": 2.8559270516717326,
|
1652 |
+
"grad_norm": 2.5719687938690186,
|
1653 |
+
"learning_rate": 6.843899469103521e-08,
|
1654 |
+
"loss": 0.3007,
|
1655 |
+
"step": 2350
|
1656 |
+
},
|
1657 |
+
{
|
1658 |
+
"epoch": 2.8680851063829786,
|
1659 |
+
"grad_norm": 2.3983314037323,
|
1660 |
+
"learning_rate": 5.726140701993288e-08,
|
1661 |
+
"loss": 0.3049,
|
1662 |
+
"step": 2360
|
1663 |
+
},
|
1664 |
+
{
|
1665 |
+
"epoch": 2.880243161094225,
|
1666 |
+
"grad_norm": 2.910645008087158,
|
1667 |
+
"learning_rate": 4.707452702783388e-08,
|
1668 |
+
"loss": 0.3006,
|
1669 |
+
"step": 2370
|
1670 |
+
},
|
1671 |
+
{
|
1672 |
+
"epoch": 2.8924012158054713,
|
1673 |
+
"grad_norm": 2.546748161315918,
|
1674 |
+
"learning_rate": 3.7880396542369635e-08,
|
1675 |
+
"loss": 0.3431,
|
1676 |
+
"step": 2380
|
1677 |
+
},
|
1678 |
+
{
|
1679 |
+
"epoch": 2.9045592705167174,
|
1680 |
+
"grad_norm": 2.052919387817383,
|
1681 |
+
"learning_rate": 2.9680858407441503e-08,
|
1682 |
+
"loss": 0.2987,
|
1683 |
+
"step": 2390
|
1684 |
+
},
|
1685 |
+
{
|
1686 |
+
"epoch": 2.9167173252279635,
|
1687 |
+
"grad_norm": 2.4598567485809326,
|
1688 |
+
"learning_rate": 2.24775561138485e-08,
|
1689 |
+
"loss": 0.3207,
|
1690 |
+
"step": 2400
|
1691 |
+
},
|
1692 |
+
{
|
1693 |
+
"epoch": 2.9288753799392095,
|
1694 |
+
"grad_norm": 2.4281694889068604,
|
1695 |
+
"learning_rate": 1.627193346986744e-08,
|
1696 |
+
"loss": 0.2847,
|
1697 |
+
"step": 2410
|
1698 |
+
},
|
1699 |
+
{
|
1700 |
+
"epoch": 2.941033434650456,
|
1701 |
+
"grad_norm": 2.2293615341186523,
|
1702 |
+
"learning_rate": 1.1065234311864459e-08,
|
1703 |
+
"loss": 0.2952,
|
1704 |
+
"step": 2420
|
1705 |
+
},
|
1706 |
+
{
|
1707 |
+
"epoch": 2.953191489361702,
|
1708 |
+
"grad_norm": 2.4415087699890137,
|
1709 |
+
"learning_rate": 6.858502254981081e-09,
|
1710 |
+
"loss": 0.2756,
|
1711 |
+
"step": 2430
|
1712 |
+
},
|
1713 |
+
{
|
1714 |
+
"epoch": 2.9653495440729483,
|
1715 |
+
"grad_norm": 2.482046604156494,
|
1716 |
+
"learning_rate": 3.652580483956558e-09,
|
1717 |
+
"loss": 0.3162,
|
1718 |
+
"step": 2440
|
1719 |
+
},
|
1720 |
+
{
|
1721 |
+
"epoch": 2.977507598784195,
|
1722 |
+
"grad_norm": 2.2831978797912598,
|
1723 |
+
"learning_rate": 1.4481115841230574e-09,
|
1724 |
+
"loss": 0.2904,
|
1725 |
+
"step": 2450
|
1726 |
+
},
|
1727 |
+
{
|
1728 |
+
"epoch": 2.989665653495441,
|
1729 |
+
"grad_norm": 2.147287368774414,
|
1730 |
+
"learning_rate": 2.4553741260535667e-10,
|
1731 |
+
"loss": 0.3062,
|
1732 |
+
"step": 2460
|
1733 |
+
}
|
1734 |
+
],
|
1735 |
+
"logging_steps": 10,
|
1736 |
+
"max_steps": 2466,
|
1737 |
+
"num_input_tokens_seen": 0,
|
1738 |
+
"num_train_epochs": 3,
|
1739 |
+
"save_steps": 500,
|
1740 |
+
"stateful_callbacks": {
|
1741 |
+
"TrainerControl": {
|
1742 |
+
"args": {
|
1743 |
+
"should_epoch_stop": false,
|
1744 |
+
"should_evaluate": false,
|
1745 |
+
"should_log": false,
|
1746 |
+
"should_save": true,
|
1747 |
+
"should_training_stop": true
|
1748 |
+
},
|
1749 |
+
"attributes": {}
|
1750 |
+
}
|
1751 |
+
},
|
1752 |
+
"total_flos": 3.0307400421054874e+17,
|
1753 |
+
"train_batch_size": 2,
|
1754 |
+
"trial_name": null,
|
1755 |
+
"trial_params": null
|
1756 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4863c68890fcaf8bb4f1b9520cdc750321428c756bb73e1387414d6d40275403
|
3 |
+
size 5752
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|