Upload 17 files
Browse files- .gitattributes +1 -0
- added_tokens.json +28 -0
- chat_template.jinja +89 -0
- config.json +31 -0
- generation_config.json +6 -0
- merges.txt +0 -0
- model-00001-of-00002.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model.safetensors.index.json +361 -0
- optimizer.pt +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +239 -0
- trainer_state.json +741 -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,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</think>": 151668,
|
3 |
+
"</tool_call>": 151658,
|
4 |
+
"</tool_response>": 151666,
|
5 |
+
"<think>": 151667,
|
6 |
+
"<tool_call>": 151657,
|
7 |
+
"<tool_response>": 151665,
|
8 |
+
"<|box_end|>": 151649,
|
9 |
+
"<|box_start|>": 151648,
|
10 |
+
"<|endoftext|>": 151643,
|
11 |
+
"<|file_sep|>": 151664,
|
12 |
+
"<|fim_middle|>": 151660,
|
13 |
+
"<|fim_pad|>": 151662,
|
14 |
+
"<|fim_prefix|>": 151659,
|
15 |
+
"<|fim_suffix|>": 151661,
|
16 |
+
"<|im_end|>": 151645,
|
17 |
+
"<|im_start|>": 151644,
|
18 |
+
"<|image_pad|>": 151655,
|
19 |
+
"<|object_ref_end|>": 151647,
|
20 |
+
"<|object_ref_start|>": 151646,
|
21 |
+
"<|quad_end|>": 151651,
|
22 |
+
"<|quad_start|>": 151650,
|
23 |
+
"<|repo_name|>": 151663,
|
24 |
+
"<|video_pad|>": 151656,
|
25 |
+
"<|vision_end|>": 151653,
|
26 |
+
"<|vision_pad|>": 151654,
|
27 |
+
"<|vision_start|>": 151652
|
28 |
+
}
|
chat_template.jinja
ADDED
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{%- if tools %}
|
2 |
+
{{- '<|im_start|>system\n' }}
|
3 |
+
{%- if messages[0].role == 'system' %}
|
4 |
+
{{- messages[0].content + '\n\n' }}
|
5 |
+
{%- endif %}
|
6 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
7 |
+
{%- for tool in tools %}
|
8 |
+
{{- "\n" }}
|
9 |
+
{{- tool | tojson }}
|
10 |
+
{%- endfor %}
|
11 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
12 |
+
{%- else %}
|
13 |
+
{%- if messages[0].role == 'system' %}
|
14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
15 |
+
{%- endif %}
|
16 |
+
{%- endif %}
|
17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
18 |
+
{%- for message in messages[::-1] %}
|
19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
20 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
21 |
+
{%- set ns.multi_step_tool = false %}
|
22 |
+
{%- set ns.last_query_index = index %}
|
23 |
+
{%- endif %}
|
24 |
+
{%- endfor %}
|
25 |
+
{%- for message in messages %}
|
26 |
+
{%- if message.content is string %}
|
27 |
+
{%- set content = message.content %}
|
28 |
+
{%- else %}
|
29 |
+
{%- set content = '' %}
|
30 |
+
{%- endif %}
|
31 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
32 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
33 |
+
{%- elif message.role == "assistant" %}
|
34 |
+
{%- set reasoning_content = '' %}
|
35 |
+
{%- if message.reasoning_content is string %}
|
36 |
+
{%- set reasoning_content = message.reasoning_content %}
|
37 |
+
{%- else %}
|
38 |
+
{%- if '</think>' in content %}
|
39 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
40 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
41 |
+
{%- endif %}
|
42 |
+
{%- endif %}
|
43 |
+
{%- if loop.index0 > ns.last_query_index %}
|
44 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
45 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
46 |
+
{%- else %}
|
47 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
48 |
+
{%- endif %}
|
49 |
+
{%- else %}
|
50 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
51 |
+
{%- endif %}
|
52 |
+
{%- if message.tool_calls %}
|
53 |
+
{%- for tool_call in message.tool_calls %}
|
54 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
55 |
+
{{- '\n' }}
|
56 |
+
{%- endif %}
|
57 |
+
{%- if tool_call.function %}
|
58 |
+
{%- set tool_call = tool_call.function %}
|
59 |
+
{%- endif %}
|
60 |
+
{{- '<tool_call>\n{"name": "' }}
|
61 |
+
{{- tool_call.name }}
|
62 |
+
{{- '", "arguments": ' }}
|
63 |
+
{%- if tool_call.arguments is string %}
|
64 |
+
{{- tool_call.arguments }}
|
65 |
+
{%- else %}
|
66 |
+
{{- tool_call.arguments | tojson }}
|
67 |
+
{%- endif %}
|
68 |
+
{{- '}\n</tool_call>' }}
|
69 |
+
{%- endfor %}
|
70 |
+
{%- endif %}
|
71 |
+
{{- '<|im_end|>\n' }}
|
72 |
+
{%- elif message.role == "tool" %}
|
73 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
74 |
+
{{- '<|im_start|>user' }}
|
75 |
+
{%- endif %}
|
76 |
+
{{- '\n<tool_response>\n' }}
|
77 |
+
{{- content }}
|
78 |
+
{{- '\n</tool_response>' }}
|
79 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
80 |
+
{{- '<|im_end|>\n' }}
|
81 |
+
{%- endif %}
|
82 |
+
{%- endif %}
|
83 |
+
{%- endfor %}
|
84 |
+
{%- if add_generation_prompt %}
|
85 |
+
{{- '<|im_start|>assistant\n' }}
|
86 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
87 |
+
{{- '<think>\n\n</think>\n\n' }}
|
88 |
+
{%- endif %}
|
89 |
+
{%- endif %}
|
config.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"EchoForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_bias": false,
|
6 |
+
"attention_dropout": 0.01,
|
7 |
+
"bos_token_id": 151643,
|
8 |
+
"eos_token_id": 151645,
|
9 |
+
"head_dim": 384,
|
10 |
+
"hidden_act": "relu",
|
11 |
+
"hidden_size": 2048,
|
12 |
+
"initializer_range": 0.02,
|
13 |
+
"intermediate_size": 4096,
|
14 |
+
"max_position_embeddings": 40960,
|
15 |
+
"max_window_layers": 32,
|
16 |
+
"model_type": "echo",
|
17 |
+
"num_attention_heads": 28,
|
18 |
+
"num_hidden_layers": 32,
|
19 |
+
"num_key_value_heads": 28,
|
20 |
+
"optimizer_type": "adafactor",
|
21 |
+
"rms_norm_eps": 1e-06,
|
22 |
+
"rope_scaling": null,
|
23 |
+
"rope_theta": 1000000,
|
24 |
+
"sliding_window": null,
|
25 |
+
"tie_word_embeddings": true,
|
26 |
+
"torch_dtype": "bfloat16",
|
27 |
+
"transformers_version": "4.52.0.dev0",
|
28 |
+
"use_cache": true,
|
29 |
+
"use_sliding_window": false,
|
30 |
+
"vocab_size": 151936
|
31 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 151643,
|
4 |
+
"eos_token_id": 151645,
|
5 |
+
"transformers_version": "4.52.0.dev0"
|
6 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model-00001-of-00002.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:690364eac7b2987780223d4cd3baa9e5694d7eecb7f6539f700a0211679137d9
|
3 |
+
size 4969935136
|
model-00002-of-00002.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5bbb31b26bf23fc006055b2196a42bac1a9278a61eb8ad9e3416eba492faccf0
|
3 |
+
size 2900508248
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,361 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 7870402560
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
7 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
8 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
9 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
10 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
12 |
+
"model.layers.0.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
15 |
+
"model.layers.0.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
16 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
17 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
18 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
19 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
20 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
21 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
22 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
23 |
+
"model.layers.1.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
24 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
25 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
26 |
+
"model.layers.1.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
27 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
28 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
29 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
30 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
31 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
32 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
33 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
34 |
+
"model.layers.10.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
35 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
36 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
37 |
+
"model.layers.10.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
38 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
39 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
40 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
41 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
42 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
43 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
44 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
45 |
+
"model.layers.11.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
46 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
47 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
48 |
+
"model.layers.11.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
49 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
50 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
51 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
52 |
+
"model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
53 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
54 |
+
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
55 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
56 |
+
"model.layers.12.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
57 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
58 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
59 |
+
"model.layers.12.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
60 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
61 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
62 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
63 |
+
"model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
64 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
65 |
+
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
66 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
67 |
+
"model.layers.13.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
68 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
69 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
70 |
+
"model.layers.13.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
71 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
72 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
73 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
74 |
+
"model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
75 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
76 |
+
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
77 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
78 |
+
"model.layers.14.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
79 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
80 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
81 |
+
"model.layers.14.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
82 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
83 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
84 |
+
"model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
85 |
+
"model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
86 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
87 |
+
"model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
88 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
89 |
+
"model.layers.15.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
90 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
91 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
92 |
+
"model.layers.15.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
93 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
94 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
95 |
+
"model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
96 |
+
"model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
97 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
98 |
+
"model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
99 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
100 |
+
"model.layers.16.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
101 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
102 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
103 |
+
"model.layers.16.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
104 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
105 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
106 |
+
"model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
107 |
+
"model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
108 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
109 |
+
"model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
110 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
111 |
+
"model.layers.17.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
112 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
113 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
114 |
+
"model.layers.17.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
115 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
116 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
117 |
+
"model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
118 |
+
"model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
119 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
120 |
+
"model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
121 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
122 |
+
"model.layers.18.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
123 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
124 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
125 |
+
"model.layers.18.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
126 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
127 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
128 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
129 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
130 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
131 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
132 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
133 |
+
"model.layers.19.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
134 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
135 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
136 |
+
"model.layers.19.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
137 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
138 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
139 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
140 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
141 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
142 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
143 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
144 |
+
"model.layers.2.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
145 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
146 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
147 |
+
"model.layers.2.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
148 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
149 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
150 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
151 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
152 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
153 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
154 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
155 |
+
"model.layers.20.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
156 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
157 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
158 |
+
"model.layers.20.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
159 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
160 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
161 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
162 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
163 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
164 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
165 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
166 |
+
"model.layers.21.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
167 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
168 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
169 |
+
"model.layers.21.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
170 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
171 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
172 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
173 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
174 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
175 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
176 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
177 |
+
"model.layers.22.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
178 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
179 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
180 |
+
"model.layers.22.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
181 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
182 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
183 |
+
"model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
184 |
+
"model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
185 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
186 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
187 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
188 |
+
"model.layers.23.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
189 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
190 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
191 |
+
"model.layers.23.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
192 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
193 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
194 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
195 |
+
"model.layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
196 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
197 |
+
"model.layers.24.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
198 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
199 |
+
"model.layers.24.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
200 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
201 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
202 |
+
"model.layers.24.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
203 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
204 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
205 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
206 |
+
"model.layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
207 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
208 |
+
"model.layers.25.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
209 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
210 |
+
"model.layers.25.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
211 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
212 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
213 |
+
"model.layers.25.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
214 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
215 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
216 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
217 |
+
"model.layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
218 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
219 |
+
"model.layers.26.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
220 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
221 |
+
"model.layers.26.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
222 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
223 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
224 |
+
"model.layers.26.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
225 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
226 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
227 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
228 |
+
"model.layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
229 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
230 |
+
"model.layers.27.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
231 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
232 |
+
"model.layers.27.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
233 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
234 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
235 |
+
"model.layers.27.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
236 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
237 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
238 |
+
"model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
239 |
+
"model.layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
240 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
241 |
+
"model.layers.28.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
242 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
243 |
+
"model.layers.28.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
244 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
245 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
246 |
+
"model.layers.28.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
247 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
248 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
249 |
+
"model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
250 |
+
"model.layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
251 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
252 |
+
"model.layers.29.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
253 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
254 |
+
"model.layers.29.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
255 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
256 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
257 |
+
"model.layers.29.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
258 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
259 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
260 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
261 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
262 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
263 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
264 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
265 |
+
"model.layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
266 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
267 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
268 |
+
"model.layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
269 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
270 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
271 |
+
"model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
272 |
+
"model.layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
273 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
274 |
+
"model.layers.30.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
275 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
276 |
+
"model.layers.30.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
277 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
278 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
279 |
+
"model.layers.30.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
280 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
281 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
282 |
+
"model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
283 |
+
"model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
284 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
285 |
+
"model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
286 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
287 |
+
"model.layers.31.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
288 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
289 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
290 |
+
"model.layers.31.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
291 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
292 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
293 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
294 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
295 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
296 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
297 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
298 |
+
"model.layers.4.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
299 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
300 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
301 |
+
"model.layers.4.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
302 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
303 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
304 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
305 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
306 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
307 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
308 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
309 |
+
"model.layers.5.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
310 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
311 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
312 |
+
"model.layers.5.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
313 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
314 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
315 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
316 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
317 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
318 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
319 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
320 |
+
"model.layers.6.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
321 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
322 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
323 |
+
"model.layers.6.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
324 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
325 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
326 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
327 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
328 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
329 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
330 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
331 |
+
"model.layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
332 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
333 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
334 |
+
"model.layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
335 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
336 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
337 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
338 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
339 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
340 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
341 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
342 |
+
"model.layers.8.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
343 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
344 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
345 |
+
"model.layers.8.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
346 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
347 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
348 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
349 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
350 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
351 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
352 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
353 |
+
"model.layers.9.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
354 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
355 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
356 |
+
"model.layers.9.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
357 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
358 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
359 |
+
"model.norm.weight": "model-00002-of-00002.safetensors"
|
360 |
+
}
|
361 |
+
}
|
optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:067949f756434660c2909fb0ebee32ace1da420e252458625d7126afb120cce1
|
3 |
+
size 10411211
|
rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:378bcb71fdead11bd76077ba39a72555c531f86af08d0e1cff5c52aa8a9bcf2f
|
3 |
+
size 14391
|
scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6371ad05a88ac0abdc69e4fab00abdbc2cd81721a7894f1e422ab0fd12442f7e
|
3 |
+
size 1465
|
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:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
|
3 |
+
size 11422654
|
tokenizer_config.json
ADDED
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"151665": {
|
182 |
+
"content": "<tool_response>",
|
183 |
+
"lstrip": false,
|
184 |
+
"normalized": false,
|
185 |
+
"rstrip": false,
|
186 |
+
"single_word": false,
|
187 |
+
"special": false
|
188 |
+
},
|
189 |
+
"151666": {
|
190 |
+
"content": "</tool_response>",
|
191 |
+
"lstrip": false,
|
192 |
+
"normalized": false,
|
193 |
+
"rstrip": false,
|
194 |
+
"single_word": false,
|
195 |
+
"special": false
|
196 |
+
},
|
197 |
+
"151667": {
|
198 |
+
"content": "<think>",
|
199 |
+
"lstrip": false,
|
200 |
+
"normalized": false,
|
201 |
+
"rstrip": false,
|
202 |
+
"single_word": false,
|
203 |
+
"special": false
|
204 |
+
},
|
205 |
+
"151668": {
|
206 |
+
"content": "</think>",
|
207 |
+
"lstrip": false,
|
208 |
+
"normalized": false,
|
209 |
+
"rstrip": false,
|
210 |
+
"single_word": false,
|
211 |
+
"special": false
|
212 |
+
}
|
213 |
+
},
|
214 |
+
"additional_special_tokens": [
|
215 |
+
"<|im_start|>",
|
216 |
+
"<|im_end|>",
|
217 |
+
"<|object_ref_start|>",
|
218 |
+
"<|object_ref_end|>",
|
219 |
+
"<|box_start|>",
|
220 |
+
"<|box_end|>",
|
221 |
+
"<|quad_start|>",
|
222 |
+
"<|quad_end|>",
|
223 |
+
"<|vision_start|>",
|
224 |
+
"<|vision_end|>",
|
225 |
+
"<|vision_pad|>",
|
226 |
+
"<|image_pad|>",
|
227 |
+
"<|video_pad|>"
|
228 |
+
],
|
229 |
+
"bos_token": null,
|
230 |
+
"clean_up_tokenization_spaces": false,
|
231 |
+
"eos_token": "<|im_end|>",
|
232 |
+
"errors": "replace",
|
233 |
+
"extra_special_tokens": {},
|
234 |
+
"model_max_length": 131072,
|
235 |
+
"pad_token": "<|endoftext|>",
|
236 |
+
"split_special_tokens": false,
|
237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
238 |
+
"unk_token": null
|
239 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,741 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_global_step": null,
|
3 |
+
"best_metric": null,
|
4 |
+
"best_model_checkpoint": null,
|
5 |
+
"epoch": 0.012497188132670149,
|
6 |
+
"eval_steps": 500,
|
7 |
+
"global_step": 500,
|
8 |
+
"is_hyper_param_search": false,
|
9 |
+
"is_local_process_zero": true,
|
10 |
+
"is_world_process_zero": true,
|
11 |
+
"log_history": [
|
12 |
+
{
|
13 |
+
"epoch": 2.4994376265340298e-05,
|
14 |
+
"grad_norm": 22.25,
|
15 |
+
"learning_rate": 0.0008,
|
16 |
+
"loss": 12.4316,
|
17 |
+
"step": 1
|
18 |
+
},
|
19 |
+
{
|
20 |
+
"epoch": 0.00012497188132670149,
|
21 |
+
"grad_norm": 4.40625,
|
22 |
+
"learning_rate": 0.0007999840035991902,
|
23 |
+
"loss": 13.3525,
|
24 |
+
"step": 5
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"epoch": 0.00024994376265340297,
|
28 |
+
"grad_norm": 4.5,
|
29 |
+
"learning_rate": 0.000799964008098178,
|
30 |
+
"loss": 14.8491,
|
31 |
+
"step": 10
|
32 |
+
},
|
33 |
+
{
|
34 |
+
"epoch": 0.00037491564398010446,
|
35 |
+
"grad_norm": 6.84375,
|
36 |
+
"learning_rate": 0.0007999440125971656,
|
37 |
+
"loss": 8.8491,
|
38 |
+
"step": 15
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"epoch": 0.0004998875253068059,
|
42 |
+
"grad_norm": 3.75,
|
43 |
+
"learning_rate": 0.0007999240170961534,
|
44 |
+
"loss": 7.9633,
|
45 |
+
"step": 20
|
46 |
+
},
|
47 |
+
{
|
48 |
+
"epoch": 0.0006248594066335074,
|
49 |
+
"grad_norm": 4.75,
|
50 |
+
"learning_rate": 0.0007999040215951412,
|
51 |
+
"loss": 7.787,
|
52 |
+
"step": 25
|
53 |
+
},
|
54 |
+
{
|
55 |
+
"epoch": 0.0007498312879602089,
|
56 |
+
"grad_norm": 15.3125,
|
57 |
+
"learning_rate": 0.0007998840260941289,
|
58 |
+
"loss": 7.6196,
|
59 |
+
"step": 30
|
60 |
+
},
|
61 |
+
{
|
62 |
+
"epoch": 0.0008748031692869104,
|
63 |
+
"grad_norm": 3.03125,
|
64 |
+
"learning_rate": 0.0007998640305931166,
|
65 |
+
"loss": 7.453,
|
66 |
+
"step": 35
|
67 |
+
},
|
68 |
+
{
|
69 |
+
"epoch": 0.0009997750506136119,
|
70 |
+
"grad_norm": 3.921875,
|
71 |
+
"learning_rate": 0.0007998440350921043,
|
72 |
+
"loss": 7.3384,
|
73 |
+
"step": 40
|
74 |
+
},
|
75 |
+
{
|
76 |
+
"epoch": 0.0011247469319403134,
|
77 |
+
"grad_norm": 3.203125,
|
78 |
+
"learning_rate": 0.000799824039591092,
|
79 |
+
"loss": 7.2074,
|
80 |
+
"step": 45
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"epoch": 0.0012497188132670149,
|
84 |
+
"grad_norm": 3.28125,
|
85 |
+
"learning_rate": 0.0007998040440900798,
|
86 |
+
"loss": 7.1685,
|
87 |
+
"step": 50
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"epoch": 0.0013746906945937163,
|
91 |
+
"grad_norm": 3.578125,
|
92 |
+
"learning_rate": 0.0007997840485890674,
|
93 |
+
"loss": 7.2311,
|
94 |
+
"step": 55
|
95 |
+
},
|
96 |
+
{
|
97 |
+
"epoch": 0.0014996625759204178,
|
98 |
+
"grad_norm": 7.28125,
|
99 |
+
"learning_rate": 0.0007997640530880552,
|
100 |
+
"loss": 7.1694,
|
101 |
+
"step": 60
|
102 |
+
},
|
103 |
+
{
|
104 |
+
"epoch": 0.0016246344572471193,
|
105 |
+
"grad_norm": 3.0,
|
106 |
+
"learning_rate": 0.0007997440575870429,
|
107 |
+
"loss": 7.1179,
|
108 |
+
"step": 65
|
109 |
+
},
|
110 |
+
{
|
111 |
+
"epoch": 0.0017496063385738208,
|
112 |
+
"grad_norm": 2.453125,
|
113 |
+
"learning_rate": 0.0007997240620860307,
|
114 |
+
"loss": 7.1143,
|
115 |
+
"step": 70
|
116 |
+
},
|
117 |
+
{
|
118 |
+
"epoch": 0.0018745782199005223,
|
119 |
+
"grad_norm": 3.46875,
|
120 |
+
"learning_rate": 0.0007997040665850185,
|
121 |
+
"loss": 7.0387,
|
122 |
+
"step": 75
|
123 |
+
},
|
124 |
+
{
|
125 |
+
"epoch": 0.0019995501012272238,
|
126 |
+
"grad_norm": 3.484375,
|
127 |
+
"learning_rate": 0.0007996840710840061,
|
128 |
+
"loss": 6.825,
|
129 |
+
"step": 80
|
130 |
+
},
|
131 |
+
{
|
132 |
+
"epoch": 0.0021245219825539252,
|
133 |
+
"grad_norm": 2.859375,
|
134 |
+
"learning_rate": 0.0007996640755829939,
|
135 |
+
"loss": 6.7811,
|
136 |
+
"step": 85
|
137 |
+
},
|
138 |
+
{
|
139 |
+
"epoch": 0.0022494938638806267,
|
140 |
+
"grad_norm": 2.640625,
|
141 |
+
"learning_rate": 0.0007996440800819816,
|
142 |
+
"loss": 6.821,
|
143 |
+
"step": 90
|
144 |
+
},
|
145 |
+
{
|
146 |
+
"epoch": 0.0023744657452073282,
|
147 |
+
"grad_norm": 3.0,
|
148 |
+
"learning_rate": 0.0007996240845809693,
|
149 |
+
"loss": 6.7552,
|
150 |
+
"step": 95
|
151 |
+
},
|
152 |
+
{
|
153 |
+
"epoch": 0.0024994376265340297,
|
154 |
+
"grad_norm": 3.953125,
|
155 |
+
"learning_rate": 0.000799604089079957,
|
156 |
+
"loss": 6.7139,
|
157 |
+
"step": 100
|
158 |
+
},
|
159 |
+
{
|
160 |
+
"epoch": 0.002624409507860731,
|
161 |
+
"grad_norm": 2.296875,
|
162 |
+
"learning_rate": 0.0007995840935789447,
|
163 |
+
"loss": 6.7687,
|
164 |
+
"step": 105
|
165 |
+
},
|
166 |
+
{
|
167 |
+
"epoch": 0.0027493813891874327,
|
168 |
+
"grad_norm": 2.65625,
|
169 |
+
"learning_rate": 0.0007995640980779325,
|
170 |
+
"loss": 6.6156,
|
171 |
+
"step": 110
|
172 |
+
},
|
173 |
+
{
|
174 |
+
"epoch": 0.002874353270514134,
|
175 |
+
"grad_norm": 4.28125,
|
176 |
+
"learning_rate": 0.0007995441025769203,
|
177 |
+
"loss": 6.5183,
|
178 |
+
"step": 115
|
179 |
+
},
|
180 |
+
{
|
181 |
+
"epoch": 0.0029993251518408356,
|
182 |
+
"grad_norm": 2.4375,
|
183 |
+
"learning_rate": 0.000799524107075908,
|
184 |
+
"loss": 6.5023,
|
185 |
+
"step": 120
|
186 |
+
},
|
187 |
+
{
|
188 |
+
"epoch": 0.003124297033167537,
|
189 |
+
"grad_norm": 3.0,
|
190 |
+
"learning_rate": 0.0007995041115748957,
|
191 |
+
"loss": 6.3342,
|
192 |
+
"step": 125
|
193 |
+
},
|
194 |
+
{
|
195 |
+
"epoch": 0.0032492689144942386,
|
196 |
+
"grad_norm": 3.296875,
|
197 |
+
"learning_rate": 0.0007994841160738834,
|
198 |
+
"loss": 6.416,
|
199 |
+
"step": 130
|
200 |
+
},
|
201 |
+
{
|
202 |
+
"epoch": 0.00337424079582094,
|
203 |
+
"grad_norm": 3.90625,
|
204 |
+
"learning_rate": 0.0007994641205728712,
|
205 |
+
"loss": 6.3348,
|
206 |
+
"step": 135
|
207 |
+
},
|
208 |
+
{
|
209 |
+
"epoch": 0.0034992126771476416,
|
210 |
+
"grad_norm": 2.578125,
|
211 |
+
"learning_rate": 0.0007994441250718589,
|
212 |
+
"loss": 6.3827,
|
213 |
+
"step": 140
|
214 |
+
},
|
215 |
+
{
|
216 |
+
"epoch": 0.003624184558474343,
|
217 |
+
"grad_norm": 2.5,
|
218 |
+
"learning_rate": 0.0007994241295708465,
|
219 |
+
"loss": 6.4047,
|
220 |
+
"step": 145
|
221 |
+
},
|
222 |
+
{
|
223 |
+
"epoch": 0.0037491564398010446,
|
224 |
+
"grad_norm": 2.78125,
|
225 |
+
"learning_rate": 0.0007994041340698343,
|
226 |
+
"loss": 6.1781,
|
227 |
+
"step": 150
|
228 |
+
},
|
229 |
+
{
|
230 |
+
"epoch": 0.003874128321127746,
|
231 |
+
"grad_norm": 3.375,
|
232 |
+
"learning_rate": 0.000799384138568822,
|
233 |
+
"loss": 6.2532,
|
234 |
+
"step": 155
|
235 |
+
},
|
236 |
+
{
|
237 |
+
"epoch": 0.0039991002024544475,
|
238 |
+
"grad_norm": 2.34375,
|
239 |
+
"learning_rate": 0.0007993641430678099,
|
240 |
+
"loss": 6.2372,
|
241 |
+
"step": 160
|
242 |
+
},
|
243 |
+
{
|
244 |
+
"epoch": 0.004124072083781149,
|
245 |
+
"grad_norm": 2.796875,
|
246 |
+
"learning_rate": 0.0007993441475667975,
|
247 |
+
"loss": 6.0455,
|
248 |
+
"step": 165
|
249 |
+
},
|
250 |
+
{
|
251 |
+
"epoch": 0.0042490439651078505,
|
252 |
+
"grad_norm": 2.6875,
|
253 |
+
"learning_rate": 0.0007993241520657852,
|
254 |
+
"loss": 6.1694,
|
255 |
+
"step": 170
|
256 |
+
},
|
257 |
+
{
|
258 |
+
"epoch": 0.004374015846434552,
|
259 |
+
"grad_norm": 2.0625,
|
260 |
+
"learning_rate": 0.000799304156564773,
|
261 |
+
"loss": 6.045,
|
262 |
+
"step": 175
|
263 |
+
},
|
264 |
+
{
|
265 |
+
"epoch": 0.0044989877277612535,
|
266 |
+
"grad_norm": 2.765625,
|
267 |
+
"learning_rate": 0.0007992841610637607,
|
268 |
+
"loss": 6.0104,
|
269 |
+
"step": 180
|
270 |
+
},
|
271 |
+
{
|
272 |
+
"epoch": 0.004623959609087955,
|
273 |
+
"grad_norm": 1.796875,
|
274 |
+
"learning_rate": 0.0007992641655627485,
|
275 |
+
"loss": 5.9327,
|
276 |
+
"step": 185
|
277 |
+
},
|
278 |
+
{
|
279 |
+
"epoch": 0.0047489314904146564,
|
280 |
+
"grad_norm": 2.765625,
|
281 |
+
"learning_rate": 0.0007992441700617361,
|
282 |
+
"loss": 5.9164,
|
283 |
+
"step": 190
|
284 |
+
},
|
285 |
+
{
|
286 |
+
"epoch": 0.004873903371741358,
|
287 |
+
"grad_norm": 2.265625,
|
288 |
+
"learning_rate": 0.0007992241745607238,
|
289 |
+
"loss": 5.9775,
|
290 |
+
"step": 195
|
291 |
+
},
|
292 |
+
{
|
293 |
+
"epoch": 0.004998875253068059,
|
294 |
+
"grad_norm": 2.421875,
|
295 |
+
"learning_rate": 0.0007992041790597116,
|
296 |
+
"loss": 5.6958,
|
297 |
+
"step": 200
|
298 |
+
},
|
299 |
+
{
|
300 |
+
"epoch": 0.005123847134394761,
|
301 |
+
"grad_norm": 2.546875,
|
302 |
+
"learning_rate": 0.0007991841835586994,
|
303 |
+
"loss": 5.8286,
|
304 |
+
"step": 205
|
305 |
+
},
|
306 |
+
{
|
307 |
+
"epoch": 0.005248819015721462,
|
308 |
+
"grad_norm": 2.359375,
|
309 |
+
"learning_rate": 0.000799164188057687,
|
310 |
+
"loss": 5.7053,
|
311 |
+
"step": 210
|
312 |
+
},
|
313 |
+
{
|
314 |
+
"epoch": 0.005373790897048164,
|
315 |
+
"grad_norm": 2.28125,
|
316 |
+
"learning_rate": 0.0007991441925566748,
|
317 |
+
"loss": 5.725,
|
318 |
+
"step": 215
|
319 |
+
},
|
320 |
+
{
|
321 |
+
"epoch": 0.005498762778374865,
|
322 |
+
"grad_norm": 1.875,
|
323 |
+
"learning_rate": 0.0007991241970556625,
|
324 |
+
"loss": 5.6576,
|
325 |
+
"step": 220
|
326 |
+
},
|
327 |
+
{
|
328 |
+
"epoch": 0.005623734659701567,
|
329 |
+
"grad_norm": 2.3125,
|
330 |
+
"learning_rate": 0.0007991042015546503,
|
331 |
+
"loss": 5.7389,
|
332 |
+
"step": 225
|
333 |
+
},
|
334 |
+
{
|
335 |
+
"epoch": 0.005748706541028268,
|
336 |
+
"grad_norm": 2.546875,
|
337 |
+
"learning_rate": 0.000799084206053638,
|
338 |
+
"loss": 5.4624,
|
339 |
+
"step": 230
|
340 |
+
},
|
341 |
+
{
|
342 |
+
"epoch": 0.00587367842235497,
|
343 |
+
"grad_norm": 2.625,
|
344 |
+
"learning_rate": 0.0007990642105526257,
|
345 |
+
"loss": 5.6441,
|
346 |
+
"step": 235
|
347 |
+
},
|
348 |
+
{
|
349 |
+
"epoch": 0.005998650303681671,
|
350 |
+
"grad_norm": 2.5,
|
351 |
+
"learning_rate": 0.0007990442150516134,
|
352 |
+
"loss": 5.552,
|
353 |
+
"step": 240
|
354 |
+
},
|
355 |
+
{
|
356 |
+
"epoch": 0.006123622185008373,
|
357 |
+
"grad_norm": 1.640625,
|
358 |
+
"learning_rate": 0.0007990242195506011,
|
359 |
+
"loss": 5.3983,
|
360 |
+
"step": 245
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"epoch": 0.006248594066335074,
|
364 |
+
"grad_norm": 2.640625,
|
365 |
+
"learning_rate": 0.000799004224049589,
|
366 |
+
"loss": 5.3757,
|
367 |
+
"step": 250
|
368 |
+
},
|
369 |
+
{
|
370 |
+
"epoch": 0.006373565947661776,
|
371 |
+
"grad_norm": 2.25,
|
372 |
+
"learning_rate": 0.0007989842285485766,
|
373 |
+
"loss": 5.4723,
|
374 |
+
"step": 255
|
375 |
+
},
|
376 |
+
{
|
377 |
+
"epoch": 0.006498537828988477,
|
378 |
+
"grad_norm": 2.25,
|
379 |
+
"learning_rate": 0.0007989642330475643,
|
380 |
+
"loss": 5.301,
|
381 |
+
"step": 260
|
382 |
+
},
|
383 |
+
{
|
384 |
+
"epoch": 0.006623509710315179,
|
385 |
+
"grad_norm": 1.90625,
|
386 |
+
"learning_rate": 0.0007989442375465521,
|
387 |
+
"loss": 5.4499,
|
388 |
+
"step": 265
|
389 |
+
},
|
390 |
+
{
|
391 |
+
"epoch": 0.00674848159164188,
|
392 |
+
"grad_norm": 2.65625,
|
393 |
+
"learning_rate": 0.0007989242420455398,
|
394 |
+
"loss": 5.5597,
|
395 |
+
"step": 270
|
396 |
+
},
|
397 |
+
{
|
398 |
+
"epoch": 0.006873453472968582,
|
399 |
+
"grad_norm": 2.25,
|
400 |
+
"learning_rate": 0.0007989042465445275,
|
401 |
+
"loss": 5.2123,
|
402 |
+
"step": 275
|
403 |
+
},
|
404 |
+
{
|
405 |
+
"epoch": 0.006998425354295283,
|
406 |
+
"grad_norm": 1.71875,
|
407 |
+
"learning_rate": 0.0007988842510435152,
|
408 |
+
"loss": 5.3393,
|
409 |
+
"step": 280
|
410 |
+
},
|
411 |
+
{
|
412 |
+
"epoch": 0.007123397235621985,
|
413 |
+
"grad_norm": 2.390625,
|
414 |
+
"learning_rate": 0.000798864255542503,
|
415 |
+
"loss": 5.2593,
|
416 |
+
"step": 285
|
417 |
+
},
|
418 |
+
{
|
419 |
+
"epoch": 0.007248369116948686,
|
420 |
+
"grad_norm": 2.125,
|
421 |
+
"learning_rate": 0.0007988442600414907,
|
422 |
+
"loss": 5.2776,
|
423 |
+
"step": 290
|
424 |
+
},
|
425 |
+
{
|
426 |
+
"epoch": 0.007373340998275388,
|
427 |
+
"grad_norm": 1.84375,
|
428 |
+
"learning_rate": 0.0007988242645404785,
|
429 |
+
"loss": 5.2529,
|
430 |
+
"step": 295
|
431 |
+
},
|
432 |
+
{
|
433 |
+
"epoch": 0.007498312879602089,
|
434 |
+
"grad_norm": 2.3125,
|
435 |
+
"learning_rate": 0.0007988042690394662,
|
436 |
+
"loss": 5.0664,
|
437 |
+
"step": 300
|
438 |
+
},
|
439 |
+
{
|
440 |
+
"epoch": 0.007623284760928791,
|
441 |
+
"grad_norm": 1.5234375,
|
442 |
+
"learning_rate": 0.0007987842735384539,
|
443 |
+
"loss": 5.3028,
|
444 |
+
"step": 305
|
445 |
+
},
|
446 |
+
{
|
447 |
+
"epoch": 0.007748256642255492,
|
448 |
+
"grad_norm": 1.7578125,
|
449 |
+
"learning_rate": 0.0007987642780374416,
|
450 |
+
"loss": 5.2152,
|
451 |
+
"step": 310
|
452 |
+
},
|
453 |
+
{
|
454 |
+
"epoch": 0.007873228523582194,
|
455 |
+
"grad_norm": 1.765625,
|
456 |
+
"learning_rate": 0.0007987442825364294,
|
457 |
+
"loss": 4.97,
|
458 |
+
"step": 315
|
459 |
+
},
|
460 |
+
{
|
461 |
+
"epoch": 0.007998200404908895,
|
462 |
+
"grad_norm": 2.203125,
|
463 |
+
"learning_rate": 0.000798724287035417,
|
464 |
+
"loss": 5.1328,
|
465 |
+
"step": 320
|
466 |
+
},
|
467 |
+
{
|
468 |
+
"epoch": 0.008123172286235597,
|
469 |
+
"grad_norm": 1.765625,
|
470 |
+
"learning_rate": 0.0007987042915344048,
|
471 |
+
"loss": 5.0475,
|
472 |
+
"step": 325
|
473 |
+
},
|
474 |
+
{
|
475 |
+
"epoch": 0.008248144167562298,
|
476 |
+
"grad_norm": 1.78125,
|
477 |
+
"learning_rate": 0.0007986842960333925,
|
478 |
+
"loss": 5.009,
|
479 |
+
"step": 330
|
480 |
+
},
|
481 |
+
{
|
482 |
+
"epoch": 0.008373116048889,
|
483 |
+
"grad_norm": 1.90625,
|
484 |
+
"learning_rate": 0.0007986643005323803,
|
485 |
+
"loss": 5.0827,
|
486 |
+
"step": 335
|
487 |
+
},
|
488 |
+
{
|
489 |
+
"epoch": 0.008498087930215701,
|
490 |
+
"grad_norm": 1.609375,
|
491 |
+
"learning_rate": 0.000798644305031368,
|
492 |
+
"loss": 5.0896,
|
493 |
+
"step": 340
|
494 |
+
},
|
495 |
+
{
|
496 |
+
"epoch": 0.008623059811542403,
|
497 |
+
"grad_norm": 1.6640625,
|
498 |
+
"learning_rate": 0.0007986243095303557,
|
499 |
+
"loss": 4.9185,
|
500 |
+
"step": 345
|
501 |
+
},
|
502 |
+
{
|
503 |
+
"epoch": 0.008748031692869104,
|
504 |
+
"grad_norm": 2.25,
|
505 |
+
"learning_rate": 0.0007986043140293435,
|
506 |
+
"loss": 5.0279,
|
507 |
+
"step": 350
|
508 |
+
},
|
509 |
+
{
|
510 |
+
"epoch": 0.008873003574195806,
|
511 |
+
"grad_norm": 2.140625,
|
512 |
+
"learning_rate": 0.0007985843185283312,
|
513 |
+
"loss": 4.8811,
|
514 |
+
"step": 355
|
515 |
+
},
|
516 |
+
{
|
517 |
+
"epoch": 0.008997975455522507,
|
518 |
+
"grad_norm": 1.640625,
|
519 |
+
"learning_rate": 0.0007985643230273188,
|
520 |
+
"loss": 5.0377,
|
521 |
+
"step": 360
|
522 |
+
},
|
523 |
+
{
|
524 |
+
"epoch": 0.00912294733684921,
|
525 |
+
"grad_norm": 2.078125,
|
526 |
+
"learning_rate": 0.0007985443275263066,
|
527 |
+
"loss": 4.9903,
|
528 |
+
"step": 365
|
529 |
+
},
|
530 |
+
{
|
531 |
+
"epoch": 0.00924791921817591,
|
532 |
+
"grad_norm": 2.15625,
|
533 |
+
"learning_rate": 0.0007985243320252943,
|
534 |
+
"loss": 4.8109,
|
535 |
+
"step": 370
|
536 |
+
},
|
537 |
+
{
|
538 |
+
"epoch": 0.009372891099502612,
|
539 |
+
"grad_norm": 1.859375,
|
540 |
+
"learning_rate": 0.0007985043365242821,
|
541 |
+
"loss": 4.8445,
|
542 |
+
"step": 375
|
543 |
+
},
|
544 |
+
{
|
545 |
+
"epoch": 0.009497862980829313,
|
546 |
+
"grad_norm": 2.171875,
|
547 |
+
"learning_rate": 0.0007984843410232698,
|
548 |
+
"loss": 4.887,
|
549 |
+
"step": 380
|
550 |
+
},
|
551 |
+
{
|
552 |
+
"epoch": 0.009622834862156015,
|
553 |
+
"grad_norm": 1.96875,
|
554 |
+
"learning_rate": 0.0007984643455222575,
|
555 |
+
"loss": 4.8373,
|
556 |
+
"step": 385
|
557 |
+
},
|
558 |
+
{
|
559 |
+
"epoch": 0.009747806743482716,
|
560 |
+
"grad_norm": 1.7890625,
|
561 |
+
"learning_rate": 0.0007984443500212453,
|
562 |
+
"loss": 4.8948,
|
563 |
+
"step": 390
|
564 |
+
},
|
565 |
+
{
|
566 |
+
"epoch": 0.009872778624809418,
|
567 |
+
"grad_norm": 2.09375,
|
568 |
+
"learning_rate": 0.000798424354520233,
|
569 |
+
"loss": 4.9098,
|
570 |
+
"step": 395
|
571 |
+
},
|
572 |
+
{
|
573 |
+
"epoch": 0.009997750506136119,
|
574 |
+
"grad_norm": 1.703125,
|
575 |
+
"learning_rate": 0.0007984043590192208,
|
576 |
+
"loss": 4.6948,
|
577 |
+
"step": 400
|
578 |
+
},
|
579 |
+
{
|
580 |
+
"epoch": 0.010122722387462821,
|
581 |
+
"grad_norm": 1.9453125,
|
582 |
+
"learning_rate": 0.0007983843635182084,
|
583 |
+
"loss": 4.7561,
|
584 |
+
"step": 405
|
585 |
+
},
|
586 |
+
{
|
587 |
+
"epoch": 0.010247694268789522,
|
588 |
+
"grad_norm": 2.171875,
|
589 |
+
"learning_rate": 0.0007983643680171961,
|
590 |
+
"loss": 4.6634,
|
591 |
+
"step": 410
|
592 |
+
},
|
593 |
+
{
|
594 |
+
"epoch": 0.010372666150116224,
|
595 |
+
"grad_norm": 2.140625,
|
596 |
+
"learning_rate": 0.0007983443725161839,
|
597 |
+
"loss": 4.6339,
|
598 |
+
"step": 415
|
599 |
+
},
|
600 |
+
{
|
601 |
+
"epoch": 0.010497638031442925,
|
602 |
+
"grad_norm": 1.953125,
|
603 |
+
"learning_rate": 0.0007983243770151716,
|
604 |
+
"loss": 4.7292,
|
605 |
+
"step": 420
|
606 |
+
},
|
607 |
+
{
|
608 |
+
"epoch": 0.010622609912769627,
|
609 |
+
"grad_norm": 1.4453125,
|
610 |
+
"learning_rate": 0.0007983043815141594,
|
611 |
+
"loss": 4.6211,
|
612 |
+
"step": 425
|
613 |
+
},
|
614 |
+
{
|
615 |
+
"epoch": 0.010747581794096328,
|
616 |
+
"grad_norm": 1.6484375,
|
617 |
+
"learning_rate": 0.0007982843860131471,
|
618 |
+
"loss": 4.6857,
|
619 |
+
"step": 430
|
620 |
+
},
|
621 |
+
{
|
622 |
+
"epoch": 0.01087255367542303,
|
623 |
+
"grad_norm": 1.8359375,
|
624 |
+
"learning_rate": 0.0007982643905121348,
|
625 |
+
"loss": 4.6335,
|
626 |
+
"step": 435
|
627 |
+
},
|
628 |
+
{
|
629 |
+
"epoch": 0.01099752555674973,
|
630 |
+
"grad_norm": 1.6484375,
|
631 |
+
"learning_rate": 0.0007982443950111226,
|
632 |
+
"loss": 4.7285,
|
633 |
+
"step": 440
|
634 |
+
},
|
635 |
+
{
|
636 |
+
"epoch": 0.011122497438076433,
|
637 |
+
"grad_norm": 1.609375,
|
638 |
+
"learning_rate": 0.0007982243995101103,
|
639 |
+
"loss": 4.7707,
|
640 |
+
"step": 445
|
641 |
+
},
|
642 |
+
{
|
643 |
+
"epoch": 0.011247469319403134,
|
644 |
+
"grad_norm": 1.78125,
|
645 |
+
"learning_rate": 0.000798204404009098,
|
646 |
+
"loss": 4.6769,
|
647 |
+
"step": 450
|
648 |
+
},
|
649 |
+
{
|
650 |
+
"epoch": 0.011372441200729836,
|
651 |
+
"grad_norm": 1.390625,
|
652 |
+
"learning_rate": 0.0007981844085080857,
|
653 |
+
"loss": 4.7311,
|
654 |
+
"step": 455
|
655 |
+
},
|
656 |
+
{
|
657 |
+
"epoch": 0.011497413082056537,
|
658 |
+
"grad_norm": 1.84375,
|
659 |
+
"learning_rate": 0.0007981644130070734,
|
660 |
+
"loss": 4.6677,
|
661 |
+
"step": 460
|
662 |
+
},
|
663 |
+
{
|
664 |
+
"epoch": 0.011622384963383239,
|
665 |
+
"grad_norm": 1.328125,
|
666 |
+
"learning_rate": 0.0007981444175060612,
|
667 |
+
"loss": 4.6862,
|
668 |
+
"step": 465
|
669 |
+
},
|
670 |
+
{
|
671 |
+
"epoch": 0.01174735684470994,
|
672 |
+
"grad_norm": 2.40625,
|
673 |
+
"learning_rate": 0.0007981244220050488,
|
674 |
+
"loss": 4.5674,
|
675 |
+
"step": 470
|
676 |
+
},
|
677 |
+
{
|
678 |
+
"epoch": 0.011872328726036642,
|
679 |
+
"grad_norm": 1.8671875,
|
680 |
+
"learning_rate": 0.0007981044265040366,
|
681 |
+
"loss": 4.5283,
|
682 |
+
"step": 475
|
683 |
+
},
|
684 |
+
{
|
685 |
+
"epoch": 0.011997300607363343,
|
686 |
+
"grad_norm": 1.625,
|
687 |
+
"learning_rate": 0.0007980844310030244,
|
688 |
+
"loss": 4.5966,
|
689 |
+
"step": 480
|
690 |
+
},
|
691 |
+
{
|
692 |
+
"epoch": 0.012122272488690045,
|
693 |
+
"grad_norm": 1.7421875,
|
694 |
+
"learning_rate": 0.0007980644355020121,
|
695 |
+
"loss": 4.4785,
|
696 |
+
"step": 485
|
697 |
+
},
|
698 |
+
{
|
699 |
+
"epoch": 0.012247244370016746,
|
700 |
+
"grad_norm": 1.765625,
|
701 |
+
"learning_rate": 0.0007980444400009999,
|
702 |
+
"loss": 4.5966,
|
703 |
+
"step": 490
|
704 |
+
},
|
705 |
+
{
|
706 |
+
"epoch": 0.012372216251343448,
|
707 |
+
"grad_norm": 1.8671875,
|
708 |
+
"learning_rate": 0.0007980244444999875,
|
709 |
+
"loss": 4.6428,
|
710 |
+
"step": 495
|
711 |
+
},
|
712 |
+
{
|
713 |
+
"epoch": 0.012497188132670149,
|
714 |
+
"grad_norm": 1.609375,
|
715 |
+
"learning_rate": 0.0007980044489989753,
|
716 |
+
"loss": 4.5225,
|
717 |
+
"step": 500
|
718 |
+
}
|
719 |
+
],
|
720 |
+
"logging_steps": 5,
|
721 |
+
"max_steps": 200045,
|
722 |
+
"num_input_tokens_seen": 0,
|
723 |
+
"num_train_epochs": 5,
|
724 |
+
"save_steps": 500,
|
725 |
+
"stateful_callbacks": {
|
726 |
+
"TrainerControl": {
|
727 |
+
"args": {
|
728 |
+
"should_epoch_stop": false,
|
729 |
+
"should_evaluate": false,
|
730 |
+
"should_log": false,
|
731 |
+
"should_save": true,
|
732 |
+
"should_training_stop": false
|
733 |
+
},
|
734 |
+
"attributes": {}
|
735 |
+
}
|
736 |
+
},
|
737 |
+
"total_flos": 2.2266079346688e+16,
|
738 |
+
"train_batch_size": 1,
|
739 |
+
"trial_name": null,
|
740 |
+
"trial_params": null
|
741 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1e49215338e18eaef6196903db1b15aee72f170b532bfd6357ab5bcd539e3efc
|
3 |
+
size 5649
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|