Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- added_tokens.json +28 -0
- chat_template.jinja +61 -0
- config.json +68 -0
- generation_config.json +12 -0
- merges.txt +0 -0
- model-00001-of-00002.safetensors +3 -0
- model-00001-of-00003.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model-00002-of-00003.safetensors +3 -0
- model-00003-of-00003.safetensors +3 -0
- model.safetensors.index.json +407 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +240 -0
- trainer_state.json +1034 -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,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
{%- for message in messages %}
|
| 18 |
+
{%- if message.content is string %}
|
| 19 |
+
{%- set content = message.content %}
|
| 20 |
+
{%- else %}
|
| 21 |
+
{%- set content = '' %}
|
| 22 |
+
{%- endif %}
|
| 23 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 24 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 25 |
+
{%- elif message.role == "assistant" %}
|
| 26 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 27 |
+
{%- if message.tool_calls %}
|
| 28 |
+
{%- for tool_call in message.tool_calls %}
|
| 29 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 30 |
+
{{- '\n' }}
|
| 31 |
+
{%- endif %}
|
| 32 |
+
{%- if tool_call.function %}
|
| 33 |
+
{%- set tool_call = tool_call.function %}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 36 |
+
{{- tool_call.name }}
|
| 37 |
+
{{- '", "arguments": ' }}
|
| 38 |
+
{%- if tool_call.arguments is string %}
|
| 39 |
+
{{- tool_call.arguments }}
|
| 40 |
+
{%- else %}
|
| 41 |
+
{{- tool_call.arguments | tojson }}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{{- '}\n</tool_call>' }}
|
| 44 |
+
{%- endfor %}
|
| 45 |
+
{%- endif %}
|
| 46 |
+
{{- '<|im_end|>\n' }}
|
| 47 |
+
{%- elif message.role == "tool" %}
|
| 48 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 49 |
+
{{- '<|im_start|>user' }}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{{- '\n<tool_response>\n' }}
|
| 52 |
+
{{- content }}
|
| 53 |
+
{{- '\n</tool_response>' }}
|
| 54 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 55 |
+
{{- '<|im_end|>\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- endif %}
|
| 58 |
+
{%- endfor %}
|
| 59 |
+
{%- if add_generation_prompt %}
|
| 60 |
+
{{- '<|im_start|>assistant\n' }}
|
| 61 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"dtype": "bfloat16",
|
| 8 |
+
"eos_token_id": 151645,
|
| 9 |
+
"head_dim": 128,
|
| 10 |
+
"hidden_act": "silu",
|
| 11 |
+
"hidden_size": 2560,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 9728,
|
| 14 |
+
"layer_types": [
|
| 15 |
+
"full_attention",
|
| 16 |
+
"full_attention",
|
| 17 |
+
"full_attention",
|
| 18 |
+
"full_attention",
|
| 19 |
+
"full_attention",
|
| 20 |
+
"full_attention",
|
| 21 |
+
"full_attention",
|
| 22 |
+
"full_attention",
|
| 23 |
+
"full_attention",
|
| 24 |
+
"full_attention",
|
| 25 |
+
"full_attention",
|
| 26 |
+
"full_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"full_attention",
|
| 29 |
+
"full_attention",
|
| 30 |
+
"full_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"full_attention",
|
| 33 |
+
"full_attention",
|
| 34 |
+
"full_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"full_attention",
|
| 37 |
+
"full_attention",
|
| 38 |
+
"full_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"full_attention",
|
| 41 |
+
"full_attention",
|
| 42 |
+
"full_attention",
|
| 43 |
+
"full_attention",
|
| 44 |
+
"full_attention",
|
| 45 |
+
"full_attention",
|
| 46 |
+
"full_attention",
|
| 47 |
+
"full_attention",
|
| 48 |
+
"full_attention",
|
| 49 |
+
"full_attention",
|
| 50 |
+
"full_attention"
|
| 51 |
+
],
|
| 52 |
+
"max_position_embeddings": 262144,
|
| 53 |
+
"max_window_layers": 36,
|
| 54 |
+
"model_type": "qwen3",
|
| 55 |
+
"num_attention_heads": 32,
|
| 56 |
+
"num_hidden_layers": 36,
|
| 57 |
+
"num_key_value_heads": 8,
|
| 58 |
+
"pad_token_id": 151643,
|
| 59 |
+
"rms_norm_eps": 1e-06,
|
| 60 |
+
"rope_scaling": null,
|
| 61 |
+
"rope_theta": 5000000,
|
| 62 |
+
"sliding_window": null,
|
| 63 |
+
"tie_word_embeddings": true,
|
| 64 |
+
"transformers_version": "4.57.3",
|
| 65 |
+
"use_cache": false,
|
| 66 |
+
"use_sliding_window": false,
|
| 67 |
+
"vocab_size": 151936
|
| 68 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_sample": true,
|
| 3 |
+
"eos_token_id": [
|
| 4 |
+
151645,
|
| 5 |
+
151643
|
| 6 |
+
],
|
| 7 |
+
"pad_token_id": 151643,
|
| 8 |
+
"temperature": 0.7,
|
| 9 |
+
"top_k": 20,
|
| 10 |
+
"top_p": 0.8,
|
| 11 |
+
"transformers_version": "4.57.3"
|
| 12 |
+
}
|
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:209d54e3ded1678867596c726dc61a8830753a59fbabd8de9e732ce26e01c934
|
| 3 |
+
size 4967215441
|
model-00001-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8aed5959bf9ba5a8a67f0122d9ab5c0fca921839d200ba4994cfd58bb333cb26
|
| 3 |
+
size 4967215455
|
model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8064ad4301fd5f5adb6210c93846a1d3766c00c02aa48a71512b6ba2af65c17
|
| 3 |
+
size 3855679227
|
model-00002-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ae4cc73556420ccb63f98fe40b9cd232a6e605f24d9010f18dc543abcee2293
|
| 3 |
+
size 4996742244
|
model-00003-of-00003.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9267ed6ba2000ba0049a24d3b329ce7e058e8a7557f4d3f14424df574e61afc
|
| 3 |
+
size 99640865
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,407 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 4022468096,
|
| 4 |
+
"total_size": 8822848512
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"lm_head.weight": "model-00002-of-00002.safetensors",
|
| 8 |
+
"model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
| 9 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 10 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 11 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 12 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 13 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 19 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 20 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 21 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 22 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 23 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 24 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 30 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 31 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 32 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 33 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 34 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 35 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 36 |
+
"model.layers.10.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 37 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 40 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 41 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 42 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 43 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 44 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 45 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 46 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 47 |
+
"model.layers.11.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 48 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 49 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 51 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 52 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 53 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 54 |
+
"model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 55 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 56 |
+
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 57 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 58 |
+
"model.layers.12.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 59 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 60 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 61 |
+
"model.layers.12.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 63 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 64 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 65 |
+
"model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 66 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 67 |
+
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 68 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 69 |
+
"model.layers.13.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 70 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 71 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 72 |
+
"model.layers.13.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 73 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 74 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 75 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 76 |
+
"model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 77 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 78 |
+
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 79 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 80 |
+
"model.layers.14.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 81 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 82 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 83 |
+
"model.layers.14.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 84 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 85 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 86 |
+
"model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 87 |
+
"model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 88 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 89 |
+
"model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 90 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 91 |
+
"model.layers.15.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 92 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 93 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 94 |
+
"model.layers.15.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 95 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 96 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 97 |
+
"model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 98 |
+
"model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 99 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 100 |
+
"model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 101 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 102 |
+
"model.layers.16.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 103 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 104 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 105 |
+
"model.layers.16.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 106 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 107 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 108 |
+
"model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 109 |
+
"model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 110 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 111 |
+
"model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 112 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 113 |
+
"model.layers.17.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 114 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 115 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 116 |
+
"model.layers.17.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 117 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 118 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 119 |
+
"model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 120 |
+
"model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 121 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 122 |
+
"model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 123 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 124 |
+
"model.layers.18.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 125 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 126 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 127 |
+
"model.layers.18.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 128 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 129 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 130 |
+
"model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 131 |
+
"model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 132 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 133 |
+
"model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 134 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 135 |
+
"model.layers.19.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 136 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 137 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 138 |
+
"model.layers.19.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 139 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 140 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 141 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 142 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 143 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 144 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 145 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 146 |
+
"model.layers.2.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 147 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 148 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 149 |
+
"model.layers.2.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 150 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 151 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 152 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 153 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 154 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 155 |
+
"model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 156 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 157 |
+
"model.layers.20.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 158 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 159 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 160 |
+
"model.layers.20.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 161 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 162 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 163 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 164 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 165 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 166 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 167 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 168 |
+
"model.layers.21.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 169 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 170 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 171 |
+
"model.layers.21.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 172 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 173 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 174 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 175 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 176 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 177 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 178 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 179 |
+
"model.layers.22.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 180 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 181 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 182 |
+
"model.layers.22.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 183 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 184 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 185 |
+
"model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 186 |
+
"model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 187 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 188 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 189 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 190 |
+
"model.layers.23.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 191 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 192 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 193 |
+
"model.layers.23.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 194 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 195 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 196 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 197 |
+
"model.layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 198 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 199 |
+
"model.layers.24.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 200 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 201 |
+
"model.layers.24.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 202 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 203 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 204 |
+
"model.layers.24.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 205 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 206 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 207 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 208 |
+
"model.layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 209 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 210 |
+
"model.layers.25.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 211 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 212 |
+
"model.layers.25.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 213 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 214 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 215 |
+
"model.layers.25.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 216 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 217 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 218 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 219 |
+
"model.layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 220 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 221 |
+
"model.layers.26.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 222 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 223 |
+
"model.layers.26.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 224 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 225 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 226 |
+
"model.layers.26.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 227 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 228 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 229 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 230 |
+
"model.layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 231 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 232 |
+
"model.layers.27.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 233 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 234 |
+
"model.layers.27.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 235 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 236 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 237 |
+
"model.layers.27.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 238 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 239 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 240 |
+
"model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 241 |
+
"model.layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 242 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 243 |
+
"model.layers.28.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 244 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 245 |
+
"model.layers.28.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 246 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 247 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 248 |
+
"model.layers.28.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 249 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 250 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 251 |
+
"model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 252 |
+
"model.layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 253 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 254 |
+
"model.layers.29.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 255 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 256 |
+
"model.layers.29.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 257 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 258 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 259 |
+
"model.layers.29.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 260 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 261 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 262 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 263 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 264 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 265 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 266 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 267 |
+
"model.layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 268 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 269 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 270 |
+
"model.layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 271 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 272 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 273 |
+
"model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 274 |
+
"model.layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 275 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 276 |
+
"model.layers.30.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 277 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 278 |
+
"model.layers.30.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 279 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 280 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 281 |
+
"model.layers.30.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 282 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 283 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 284 |
+
"model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 285 |
+
"model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 286 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 287 |
+
"model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 288 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 289 |
+
"model.layers.31.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 290 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 291 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 292 |
+
"model.layers.31.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 293 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 294 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 295 |
+
"model.layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 296 |
+
"model.layers.32.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 297 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 298 |
+
"model.layers.32.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 299 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 300 |
+
"model.layers.32.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 301 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 302 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 303 |
+
"model.layers.32.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 304 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 305 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 306 |
+
"model.layers.33.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 307 |
+
"model.layers.33.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 308 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 309 |
+
"model.layers.33.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 310 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 311 |
+
"model.layers.33.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 312 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 313 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 314 |
+
"model.layers.33.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 315 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 316 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 317 |
+
"model.layers.34.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 318 |
+
"model.layers.34.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 319 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 320 |
+
"model.layers.34.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 321 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 322 |
+
"model.layers.34.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 323 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 324 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 325 |
+
"model.layers.34.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 326 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 327 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 328 |
+
"model.layers.35.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 329 |
+
"model.layers.35.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 330 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 331 |
+
"model.layers.35.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 332 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 333 |
+
"model.layers.35.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 334 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 335 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 336 |
+
"model.layers.35.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 337 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 338 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 339 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 340 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 341 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 342 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 343 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 344 |
+
"model.layers.4.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 345 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 346 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 347 |
+
"model.layers.4.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 348 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 349 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 350 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 351 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 352 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 353 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 354 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 355 |
+
"model.layers.5.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 356 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 357 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 358 |
+
"model.layers.5.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 359 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 360 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 361 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 362 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 363 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 364 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 365 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 366 |
+
"model.layers.6.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 367 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 368 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 369 |
+
"model.layers.6.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 370 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 371 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 372 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 373 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 374 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 375 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 376 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 377 |
+
"model.layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 378 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 379 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 380 |
+
"model.layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 381 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 382 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 383 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 384 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 385 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 386 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 387 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 388 |
+
"model.layers.8.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 389 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 390 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 391 |
+
"model.layers.8.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 392 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 393 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 394 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 395 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 396 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 397 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 398 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 399 |
+
"model.layers.9.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 400 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 401 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 402 |
+
"model.layers.9.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 403 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 404 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 405 |
+
"model.norm.weight": "model-00002-of-00002.safetensors"
|
| 406 |
+
}
|
| 407 |
+
}
|
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,240 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": 12880,
|
| 235 |
+
"pad_token": "<|endoftext|>",
|
| 236 |
+
"padding_side": "right",
|
| 237 |
+
"split_special_tokens": false,
|
| 238 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 239 |
+
"unk_token": null
|
| 240 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1034 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 6.553351909523029,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 5000,
|
| 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.06556302245533518,
|
| 14 |
+
"grad_norm": 0.2032165825366974,
|
| 15 |
+
"learning_rate": 9.999745598795031e-08,
|
| 16 |
+
"loss": 0.4359,
|
| 17 |
+
"num_input_tokens_seen": 3794784,
|
| 18 |
+
"step": 50,
|
| 19 |
+
"train_runtime": 288.0643,
|
| 20 |
+
"train_tokens_per_second": 13173.393
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"epoch": 0.13112604491067037,
|
| 24 |
+
"grad_norm": 0.12323546409606934,
|
| 25 |
+
"learning_rate": 9.998961548920028e-08,
|
| 26 |
+
"loss": 0.5461,
|
| 27 |
+
"num_input_tokens_seen": 7656384,
|
| 28 |
+
"step": 100,
|
| 29 |
+
"train_runtime": 563.6125,
|
| 30 |
+
"train_tokens_per_second": 13584.481
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"epoch": 0.19668906736600558,
|
| 34 |
+
"grad_norm": 0.6143731474876404,
|
| 35 |
+
"learning_rate": 9.997647827492774e-08,
|
| 36 |
+
"loss": 0.4957,
|
| 37 |
+
"num_input_tokens_seen": 11324688,
|
| 38 |
+
"step": 150,
|
| 39 |
+
"train_runtime": 840.9128,
|
| 40 |
+
"train_tokens_per_second": 13467.137
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"epoch": 0.26225208982134074,
|
| 44 |
+
"grad_norm": 5.337645053863525,
|
| 45 |
+
"learning_rate": 9.995804573710351e-08,
|
| 46 |
+
"loss": 0.4317,
|
| 47 |
+
"num_input_tokens_seen": 14915760,
|
| 48 |
+
"step": 200,
|
| 49 |
+
"train_runtime": 1098.5331,
|
| 50 |
+
"train_tokens_per_second": 13577.889
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"epoch": 0.327815112276676,
|
| 54 |
+
"grad_norm": 9.094950675964355,
|
| 55 |
+
"learning_rate": 9.993431982877141e-08,
|
| 56 |
+
"loss": 0.3758,
|
| 57 |
+
"num_input_tokens_seen": 18760920,
|
| 58 |
+
"step": 250,
|
| 59 |
+
"train_runtime": 1370.436,
|
| 60 |
+
"train_tokens_per_second": 13689.745
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"epoch": 0.39337813473201116,
|
| 64 |
+
"grad_norm": 8.739721298217773,
|
| 65 |
+
"learning_rate": 9.990530306384132e-08,
|
| 66 |
+
"loss": 0.4875,
|
| 67 |
+
"num_input_tokens_seen": 22666272,
|
| 68 |
+
"step": 300,
|
| 69 |
+
"train_runtime": 1675.777,
|
| 70 |
+
"train_tokens_per_second": 13525.828
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"epoch": 0.45894115718734635,
|
| 74 |
+
"grad_norm": 5.213091850280762,
|
| 75 |
+
"learning_rate": 9.987099851682273e-08,
|
| 76 |
+
"loss": 0.5377,
|
| 77 |
+
"num_input_tokens_seen": 26550816,
|
| 78 |
+
"step": 350,
|
| 79 |
+
"train_runtime": 1969.5671,
|
| 80 |
+
"train_tokens_per_second": 13480.534
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.5245041796426815,
|
| 84 |
+
"grad_norm": 6.928552627563477,
|
| 85 |
+
"learning_rate": 9.983140982249912e-08,
|
| 86 |
+
"loss": 0.5284,
|
| 87 |
+
"num_input_tokens_seen": 30502512,
|
| 88 |
+
"step": 400,
|
| 89 |
+
"train_runtime": 2276.9451,
|
| 90 |
+
"train_tokens_per_second": 13396.244
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"epoch": 0.5900672020980167,
|
| 94 |
+
"grad_norm": 7.398318290710449,
|
| 95 |
+
"learning_rate": 9.978654117554268e-08,
|
| 96 |
+
"loss": 0.3501,
|
| 97 |
+
"num_input_tokens_seen": 34219392,
|
| 98 |
+
"step": 450,
|
| 99 |
+
"train_runtime": 2557.2601,
|
| 100 |
+
"train_tokens_per_second": 13381.272
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.655630224553352,
|
| 104 |
+
"grad_norm": 0.12503379583358765,
|
| 105 |
+
"learning_rate": 9.973639733006998e-08,
|
| 106 |
+
"loss": 0.4336,
|
| 107 |
+
"num_input_tokens_seen": 38231808,
|
| 108 |
+
"step": 500,
|
| 109 |
+
"train_runtime": 2907.4779,
|
| 110 |
+
"train_tokens_per_second": 13149.475
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.7211932470086871,
|
| 114 |
+
"grad_norm": 1.006555199623108,
|
| 115 |
+
"learning_rate": 9.968098359913822e-08,
|
| 116 |
+
"loss": 0.382,
|
| 117 |
+
"num_input_tokens_seen": 42037704,
|
| 118 |
+
"step": 550,
|
| 119 |
+
"train_runtime": 3185.8277,
|
| 120 |
+
"train_tokens_per_second": 13195.222
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"epoch": 0.7867562694640223,
|
| 124 |
+
"grad_norm": 7.536371231079102,
|
| 125 |
+
"learning_rate": 9.962030585418215e-08,
|
| 126 |
+
"loss": 0.3866,
|
| 127 |
+
"num_input_tokens_seen": 46037664,
|
| 128 |
+
"step": 600,
|
| 129 |
+
"train_runtime": 3488.8435,
|
| 130 |
+
"train_tokens_per_second": 13195.681
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"epoch": 0.8523192919193575,
|
| 134 |
+
"grad_norm": 0.24487841129302979,
|
| 135 |
+
"learning_rate": 9.955437052439219e-08,
|
| 136 |
+
"loss": 0.4026,
|
| 137 |
+
"num_input_tokens_seen": 49944816,
|
| 138 |
+
"step": 650,
|
| 139 |
+
"train_runtime": 3776.75,
|
| 140 |
+
"train_tokens_per_second": 13224.284
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"epoch": 0.9178823143746927,
|
| 144 |
+
"grad_norm": 1.2577345371246338,
|
| 145 |
+
"learning_rate": 9.948318459603297e-08,
|
| 146 |
+
"loss": 0.3547,
|
| 147 |
+
"num_input_tokens_seen": 53838960,
|
| 148 |
+
"step": 700,
|
| 149 |
+
"train_runtime": 4095.3801,
|
| 150 |
+
"train_tokens_per_second": 13146.267
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.9834453368300279,
|
| 154 |
+
"grad_norm": 0.23559170961380005,
|
| 155 |
+
"learning_rate": 9.940675561170326e-08,
|
| 156 |
+
"loss": 0.3269,
|
| 157 |
+
"num_input_tokens_seen": 57703848,
|
| 158 |
+
"step": 750,
|
| 159 |
+
"train_runtime": 4401.0597,
|
| 160 |
+
"train_tokens_per_second": 13111.353
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"epoch": 1.048516636616948,
|
| 164 |
+
"grad_norm": 2.2465434074401855,
|
| 165 |
+
"learning_rate": 9.932509166953673e-08,
|
| 166 |
+
"loss": 0.38,
|
| 167 |
+
"num_input_tokens_seen": 61456680,
|
| 168 |
+
"step": 800,
|
| 169 |
+
"train_runtime": 4678.4603,
|
| 170 |
+
"train_tokens_per_second": 13136.091
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"epoch": 1.1140796590722832,
|
| 174 |
+
"grad_norm": 0.8857269287109375,
|
| 175 |
+
"learning_rate": 9.923820142234384e-08,
|
| 176 |
+
"loss": 0.3671,
|
| 177 |
+
"num_input_tokens_seen": 65352192,
|
| 178 |
+
"step": 850,
|
| 179 |
+
"train_runtime": 4987.8785,
|
| 180 |
+
"train_tokens_per_second": 13102.202
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"epoch": 1.1796426815276184,
|
| 184 |
+
"grad_norm": 2.611070394515991,
|
| 185 |
+
"learning_rate": 9.914609407669518e-08,
|
| 186 |
+
"loss": 0.2795,
|
| 187 |
+
"num_input_tokens_seen": 69406008,
|
| 188 |
+
"step": 900,
|
| 189 |
+
"train_runtime": 5331.3796,
|
| 190 |
+
"train_tokens_per_second": 13018.395
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 1.2452057039829536,
|
| 194 |
+
"grad_norm": 0.18760572373867035,
|
| 195 |
+
"learning_rate": 9.904877939194582e-08,
|
| 196 |
+
"loss": 0.3224,
|
| 197 |
+
"num_input_tokens_seen": 73152336,
|
| 198 |
+
"step": 950,
|
| 199 |
+
"train_runtime": 5603.6792,
|
| 200 |
+
"train_tokens_per_second": 13054.341
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"epoch": 1.3107687264382888,
|
| 204 |
+
"grad_norm": 7.031470775604248,
|
| 205 |
+
"learning_rate": 9.894626767920125e-08,
|
| 206 |
+
"loss": 0.2581,
|
| 207 |
+
"num_input_tokens_seen": 76955160,
|
| 208 |
+
"step": 1000,
|
| 209 |
+
"train_runtime": 5891.4617,
|
| 210 |
+
"train_tokens_per_second": 13062.151
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"epoch": 1.376331748893624,
|
| 214 |
+
"grad_norm": 3.1105947494506836,
|
| 215 |
+
"learning_rate": 9.883856980022501e-08,
|
| 216 |
+
"loss": 0.2146,
|
| 217 |
+
"num_input_tokens_seen": 80682888,
|
| 218 |
+
"step": 1050,
|
| 219 |
+
"train_runtime": 6172.6315,
|
| 220 |
+
"train_tokens_per_second": 13071.068
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 1.4418947713489592,
|
| 224 |
+
"grad_norm": 3.3154454231262207,
|
| 225 |
+
"learning_rate": 9.872569716628762e-08,
|
| 226 |
+
"loss": 0.1974,
|
| 227 |
+
"num_input_tokens_seen": 84505128,
|
| 228 |
+
"step": 1100,
|
| 229 |
+
"train_runtime": 6464.0066,
|
| 230 |
+
"train_tokens_per_second": 13073.181
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"epoch": 1.5074577938042943,
|
| 234 |
+
"grad_norm": 2.295762062072754,
|
| 235 |
+
"learning_rate": 9.860766173695762e-08,
|
| 236 |
+
"loss": 0.331,
|
| 237 |
+
"num_input_tokens_seen": 88457640,
|
| 238 |
+
"step": 1150,
|
| 239 |
+
"train_runtime": 6787.6545,
|
| 240 |
+
"train_tokens_per_second": 13032.137
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"epoch": 1.5730208162596295,
|
| 244 |
+
"grad_norm": 3.430027484893799,
|
| 245 |
+
"learning_rate": 9.848447601883434e-08,
|
| 246 |
+
"loss": 0.2295,
|
| 247 |
+
"num_input_tokens_seen": 92425752,
|
| 248 |
+
"step": 1200,
|
| 249 |
+
"train_runtime": 7110.9534,
|
| 250 |
+
"train_tokens_per_second": 12997.66
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"epoch": 1.6385838387149647,
|
| 254 |
+
"grad_norm": 5.2876200675964355,
|
| 255 |
+
"learning_rate": 9.83561530642227e-08,
|
| 256 |
+
"loss": 0.3534,
|
| 257 |
+
"num_input_tokens_seen": 96447384,
|
| 258 |
+
"step": 1250,
|
| 259 |
+
"train_runtime": 7430.2464,
|
| 260 |
+
"train_tokens_per_second": 12980.375
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"epoch": 1.7041468611703,
|
| 264 |
+
"grad_norm": 2.3764872550964355,
|
| 265 |
+
"learning_rate": 9.822270646975031e-08,
|
| 266 |
+
"loss": 0.2875,
|
| 267 |
+
"num_input_tokens_seen": 100202232,
|
| 268 |
+
"step": 1300,
|
| 269 |
+
"train_runtime": 7704.6648,
|
| 270 |
+
"train_tokens_per_second": 13005.398
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"epoch": 1.769709883625635,
|
| 274 |
+
"grad_norm": 0.5971184968948364,
|
| 275 |
+
"learning_rate": 9.808415037492677e-08,
|
| 276 |
+
"loss": 0.1869,
|
| 277 |
+
"num_input_tokens_seen": 103938744,
|
| 278 |
+
"step": 1350,
|
| 279 |
+
"train_runtime": 7967.1016,
|
| 280 |
+
"train_tokens_per_second": 13045.992
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 1.8352729060809705,
|
| 284 |
+
"grad_norm": 1.1916333436965942,
|
| 285 |
+
"learning_rate": 9.794049946064551e-08,
|
| 286 |
+
"loss": 0.2173,
|
| 287 |
+
"num_input_tokens_seen": 107626320,
|
| 288 |
+
"step": 1400,
|
| 289 |
+
"train_runtime": 8229.9563,
|
| 290 |
+
"train_tokens_per_second": 13077.387
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 1.9008359285363055,
|
| 294 |
+
"grad_norm": 1.6566100120544434,
|
| 295 |
+
"learning_rate": 9.779176894762831e-08,
|
| 296 |
+
"loss": 0.2168,
|
| 297 |
+
"num_input_tokens_seen": 111377760,
|
| 298 |
+
"step": 1450,
|
| 299 |
+
"train_runtime": 8503.7645,
|
| 300 |
+
"train_tokens_per_second": 13097.465
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"epoch": 1.9663989509916409,
|
| 304 |
+
"grad_norm": 3.6912384033203125,
|
| 305 |
+
"learning_rate": 9.763797459481244e-08,
|
| 306 |
+
"loss": 0.2844,
|
| 307 |
+
"num_input_tokens_seen": 115314840,
|
| 308 |
+
"step": 1500,
|
| 309 |
+
"train_runtime": 8803.7543,
|
| 310 |
+
"train_tokens_per_second": 13098.371
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"epoch": 2.0314702507785607,
|
| 314 |
+
"grad_norm": 0.7536889910697937,
|
| 315 |
+
"learning_rate": 9.747913269768107e-08,
|
| 316 |
+
"loss": 0.1743,
|
| 317 |
+
"num_input_tokens_seen": 118930008,
|
| 318 |
+
"step": 1550,
|
| 319 |
+
"train_runtime": 9062.5998,
|
| 320 |
+
"train_tokens_per_second": 13123.167
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"epoch": 2.097033273233896,
|
| 324 |
+
"grad_norm": 4.382725715637207,
|
| 325 |
+
"learning_rate": 9.731526008653652e-08,
|
| 326 |
+
"loss": 0.1793,
|
| 327 |
+
"num_input_tokens_seen": 122730384,
|
| 328 |
+
"step": 1600,
|
| 329 |
+
"train_runtime": 9342.1738,
|
| 330 |
+
"train_tokens_per_second": 13137.24
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"epoch": 2.162596295689231,
|
| 334 |
+
"grad_norm": 1.2656387090682983,
|
| 335 |
+
"learning_rate": 9.714637412471703e-08,
|
| 336 |
+
"loss": 0.2939,
|
| 337 |
+
"num_input_tokens_seen": 126529800,
|
| 338 |
+
"step": 1650,
|
| 339 |
+
"train_runtime": 9635.6982,
|
| 340 |
+
"train_tokens_per_second": 13131.358
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"epoch": 2.2281593181445665,
|
| 344 |
+
"grad_norm": 2.5040361881256104,
|
| 345 |
+
"learning_rate": 9.697249270675705e-08,
|
| 346 |
+
"loss": 0.2434,
|
| 347 |
+
"num_input_tokens_seen": 130443600,
|
| 348 |
+
"step": 1700,
|
| 349 |
+
"train_runtime": 9927.959,
|
| 350 |
+
"train_tokens_per_second": 13139.015
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"epoch": 2.293722340599902,
|
| 354 |
+
"grad_norm": 0.9235166311264038,
|
| 355 |
+
"learning_rate": 9.679363425649115e-08,
|
| 356 |
+
"loss": 0.2993,
|
| 357 |
+
"num_input_tokens_seen": 134517072,
|
| 358 |
+
"step": 1750,
|
| 359 |
+
"train_runtime": 10260.6078,
|
| 360 |
+
"train_tokens_per_second": 13110.049
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 2.359285363055237,
|
| 364 |
+
"grad_norm": 1.0807639360427856,
|
| 365 |
+
"learning_rate": 9.660981772510188e-08,
|
| 366 |
+
"loss": 0.192,
|
| 367 |
+
"num_input_tokens_seen": 138214584,
|
| 368 |
+
"step": 1800,
|
| 369 |
+
"train_runtime": 10530.3372,
|
| 370 |
+
"train_tokens_per_second": 13125.371
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 2.424848385510572,
|
| 374 |
+
"grad_norm": 1.5869427919387817,
|
| 375 |
+
"learning_rate": 9.642106258911184e-08,
|
| 376 |
+
"loss": 0.2412,
|
| 377 |
+
"num_input_tokens_seen": 142113144,
|
| 378 |
+
"step": 1850,
|
| 379 |
+
"train_runtime": 10835.7191,
|
| 380 |
+
"train_tokens_per_second": 13115.248
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"epoch": 2.490411407965907,
|
| 384 |
+
"grad_norm": 1.165739893913269,
|
| 385 |
+
"learning_rate": 9.622738884831996e-08,
|
| 386 |
+
"loss": 0.2425,
|
| 387 |
+
"num_input_tokens_seen": 146119920,
|
| 388 |
+
"step": 1900,
|
| 389 |
+
"train_runtime": 11148.5673,
|
| 390 |
+
"train_tokens_per_second": 13106.61
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"epoch": 2.5559744304212426,
|
| 394 |
+
"grad_norm": 1.7617275714874268,
|
| 395 |
+
"learning_rate": 9.602881702368242e-08,
|
| 396 |
+
"loss": 0.2262,
|
| 397 |
+
"num_input_tokens_seen": 150087360,
|
| 398 |
+
"step": 1950,
|
| 399 |
+
"train_runtime": 11458.6247,
|
| 400 |
+
"train_tokens_per_second": 13098.2
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"epoch": 2.6215374528765776,
|
| 404 |
+
"grad_norm": 0.4497505724430084,
|
| 405 |
+
"learning_rate": 9.582536815513833e-08,
|
| 406 |
+
"loss": 0.1427,
|
| 407 |
+
"num_input_tokens_seen": 153908160,
|
| 408 |
+
"step": 2000,
|
| 409 |
+
"train_runtime": 11749.4731,
|
| 410 |
+
"train_tokens_per_second": 13099.154
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"epoch": 2.6871004753319125,
|
| 414 |
+
"grad_norm": 0.7155716419219971,
|
| 415 |
+
"learning_rate": 9.561706379938041e-08,
|
| 416 |
+
"loss": 0.222,
|
| 417 |
+
"num_input_tokens_seen": 157607040,
|
| 418 |
+
"step": 2050,
|
| 419 |
+
"train_runtime": 12052.7614,
|
| 420 |
+
"train_tokens_per_second": 13076.426
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"epoch": 2.752663497787248,
|
| 424 |
+
"grad_norm": 1.3807727098464966,
|
| 425 |
+
"learning_rate": 9.540392602757093e-08,
|
| 426 |
+
"loss": 0.1474,
|
| 427 |
+
"num_input_tokens_seen": 161453160,
|
| 428 |
+
"step": 2100,
|
| 429 |
+
"train_runtime": 12357.3875,
|
| 430 |
+
"train_tokens_per_second": 13065.315
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 2.8182265202425834,
|
| 434 |
+
"grad_norm": 0.739932119846344,
|
| 435 |
+
"learning_rate": 9.518597742300308e-08,
|
| 436 |
+
"loss": 0.265,
|
| 437 |
+
"num_input_tokens_seen": 165287904,
|
| 438 |
+
"step": 2150,
|
| 439 |
+
"train_runtime": 12651.7227,
|
| 440 |
+
"train_tokens_per_second": 13064.458
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"epoch": 2.8837895426979183,
|
| 444 |
+
"grad_norm": 0.4396991431713104,
|
| 445 |
+
"learning_rate": 9.496324107870821e-08,
|
| 446 |
+
"loss": 0.2944,
|
| 447 |
+
"num_input_tokens_seen": 169326888,
|
| 448 |
+
"step": 2200,
|
| 449 |
+
"train_runtime": 12967.7154,
|
| 450 |
+
"train_tokens_per_second": 13057.573
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"epoch": 2.9493525651532537,
|
| 454 |
+
"grad_norm": 0.38162505626678467,
|
| 455 |
+
"learning_rate": 9.47357405950089e-08,
|
| 456 |
+
"loss": 0.2348,
|
| 457 |
+
"num_input_tokens_seen": 173020800,
|
| 458 |
+
"step": 2250,
|
| 459 |
+
"train_runtime": 13223.1088,
|
| 460 |
+
"train_tokens_per_second": 13084.729
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 3.0144238649401736,
|
| 464 |
+
"grad_norm": 3.874674081802368,
|
| 465 |
+
"learning_rate": 9.450350007701847e-08,
|
| 466 |
+
"loss": 0.2311,
|
| 467 |
+
"num_input_tokens_seen": 176668584,
|
| 468 |
+
"step": 2300,
|
| 469 |
+
"train_runtime": 13516.1565,
|
| 470 |
+
"train_tokens_per_second": 13070.919
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"epoch": 3.079986887395509,
|
| 474 |
+
"grad_norm": 0.7723739743232727,
|
| 475 |
+
"learning_rate": 9.426654413208668e-08,
|
| 476 |
+
"loss": 0.2964,
|
| 477 |
+
"num_input_tokens_seen": 180729120,
|
| 478 |
+
"step": 2350,
|
| 479 |
+
"train_runtime": 13841.6367,
|
| 480 |
+
"train_tokens_per_second": 13056.918
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"epoch": 3.145549909850844,
|
| 484 |
+
"grad_norm": 1.5033811330795288,
|
| 485 |
+
"learning_rate": 9.40248978671927e-08,
|
| 486 |
+
"loss": 0.2084,
|
| 487 |
+
"num_input_tokens_seen": 184677672,
|
| 488 |
+
"step": 2400,
|
| 489 |
+
"train_runtime": 14150.4953,
|
| 490 |
+
"train_tokens_per_second": 13050.969
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"epoch": 3.2111129323061793,
|
| 494 |
+
"grad_norm": 1.8196630477905273,
|
| 495 |
+
"learning_rate": 9.377858688628464e-08,
|
| 496 |
+
"loss": 0.1717,
|
| 497 |
+
"num_input_tokens_seen": 188404488,
|
| 498 |
+
"step": 2450,
|
| 499 |
+
"train_runtime": 14408.9636,
|
| 500 |
+
"train_tokens_per_second": 13075.506
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 3.2766759547615143,
|
| 504 |
+
"grad_norm": 0.9214364290237427,
|
| 505 |
+
"learning_rate": 9.352763728756675e-08,
|
| 506 |
+
"loss": 0.23,
|
| 507 |
+
"num_input_tokens_seen": 192323616,
|
| 508 |
+
"step": 2500,
|
| 509 |
+
"train_runtime": 14710.1132,
|
| 510 |
+
"train_tokens_per_second": 13074.244
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"epoch": 3.3422389772168497,
|
| 514 |
+
"grad_norm": 1.0862064361572266,
|
| 515 |
+
"learning_rate": 9.327207566073416e-08,
|
| 516 |
+
"loss": 0.2271,
|
| 517 |
+
"num_input_tokens_seen": 196108272,
|
| 518 |
+
"step": 2550,
|
| 519 |
+
"train_runtime": 14979.1529,
|
| 520 |
+
"train_tokens_per_second": 13092.08
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"epoch": 3.407801999672185,
|
| 524 |
+
"grad_norm": 0.8413626551628113,
|
| 525 |
+
"learning_rate": 9.301192908415552e-08,
|
| 526 |
+
"loss": 0.2193,
|
| 527 |
+
"num_input_tokens_seen": 199941432,
|
| 528 |
+
"step": 2600,
|
| 529 |
+
"train_runtime": 15282.6531,
|
| 530 |
+
"train_tokens_per_second": 13082.901
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"epoch": 3.47336502212752,
|
| 534 |
+
"grad_norm": 1.531718134880066,
|
| 535 |
+
"learning_rate": 9.274722512200379e-08,
|
| 536 |
+
"loss": 0.1382,
|
| 537 |
+
"num_input_tokens_seen": 203779920,
|
| 538 |
+
"step": 2650,
|
| 539 |
+
"train_runtime": 15565.7388,
|
| 540 |
+
"train_tokens_per_second": 13091.568
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"epoch": 3.538928044582855,
|
| 544 |
+
"grad_norm": 0.0838296189904213,
|
| 545 |
+
"learning_rate": 9.247799182133582e-08,
|
| 546 |
+
"loss": 0.2191,
|
| 547 |
+
"num_input_tokens_seen": 207633384,
|
| 548 |
+
"step": 2700,
|
| 549 |
+
"train_runtime": 15868.2059,
|
| 550 |
+
"train_tokens_per_second": 13084.868
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 3.6044910670381904,
|
| 554 |
+
"grad_norm": 1.1013773679733276,
|
| 555 |
+
"learning_rate": 9.220425770912042e-08,
|
| 556 |
+
"loss": 0.1988,
|
| 557 |
+
"num_input_tokens_seen": 211368360,
|
| 558 |
+
"step": 2750,
|
| 559 |
+
"train_runtime": 16143.9244,
|
| 560 |
+
"train_tokens_per_second": 13092.75
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"epoch": 3.670054089493526,
|
| 564 |
+
"grad_norm": 0.40529268980026245,
|
| 565 |
+
"learning_rate": 9.192605178921584e-08,
|
| 566 |
+
"loss": 0.3072,
|
| 567 |
+
"num_input_tokens_seen": 215149128,
|
| 568 |
+
"step": 2800,
|
| 569 |
+
"train_runtime": 16445.4494,
|
| 570 |
+
"train_tokens_per_second": 13082.593
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 3.735617111948861,
|
| 574 |
+
"grad_norm": 1.5882924795150757,
|
| 575 |
+
"learning_rate": 9.164340353929659e-08,
|
| 576 |
+
"loss": 0.1822,
|
| 577 |
+
"num_input_tokens_seen": 218796552,
|
| 578 |
+
"step": 2850,
|
| 579 |
+
"train_runtime": 16707.491,
|
| 580 |
+
"train_tokens_per_second": 13095.716
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"epoch": 3.8011801344041958,
|
| 584 |
+
"grad_norm": 0.862838089466095,
|
| 585 |
+
"learning_rate": 9.13563429077301e-08,
|
| 586 |
+
"loss": 0.2437,
|
| 587 |
+
"num_input_tokens_seen": 222623832,
|
| 588 |
+
"step": 2900,
|
| 589 |
+
"train_runtime": 16994.843,
|
| 590 |
+
"train_tokens_per_second": 13099.493
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"epoch": 3.866743156859531,
|
| 594 |
+
"grad_norm": 0.7801971435546875,
|
| 595 |
+
"learning_rate": 9.106490031040353e-08,
|
| 596 |
+
"loss": 0.3174,
|
| 597 |
+
"num_input_tokens_seen": 226629408,
|
| 598 |
+
"step": 2950,
|
| 599 |
+
"train_runtime": 17320.4321,
|
| 600 |
+
"train_tokens_per_second": 13084.512
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"epoch": 3.9323061793148666,
|
| 604 |
+
"grad_norm": 0.4492790699005127,
|
| 605 |
+
"learning_rate": 9.076910662750096e-08,
|
| 606 |
+
"loss": 0.199,
|
| 607 |
+
"num_input_tokens_seen": 230444736,
|
| 608 |
+
"step": 3000,
|
| 609 |
+
"train_runtime": 17612.3894,
|
| 610 |
+
"train_tokens_per_second": 13084.24
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"epoch": 3.9978692017702016,
|
| 614 |
+
"grad_norm": 4.88616418838501,
|
| 615 |
+
"learning_rate": 9.04689932002315e-08,
|
| 616 |
+
"loss": 0.1764,
|
| 617 |
+
"num_input_tokens_seen": 234389904,
|
| 618 |
+
"step": 3050,
|
| 619 |
+
"train_runtime": 17949.0057,
|
| 620 |
+
"train_tokens_per_second": 13058.657
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"epoch": 4.062940501557121,
|
| 624 |
+
"grad_norm": 0.597968339920044,
|
| 625 |
+
"learning_rate": 9.016459182750843e-08,
|
| 626 |
+
"loss": 0.209,
|
| 627 |
+
"num_input_tokens_seen": 238124880,
|
| 628 |
+
"step": 3100,
|
| 629 |
+
"train_runtime": 18244.7826,
|
| 630 |
+
"train_tokens_per_second": 13051.67
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"epoch": 4.128503524012457,
|
| 634 |
+
"grad_norm": 0.8793305158615112,
|
| 635 |
+
"learning_rate": 8.985593476257997e-08,
|
| 636 |
+
"loss": 0.2686,
|
| 637 |
+
"num_input_tokens_seen": 241758864,
|
| 638 |
+
"step": 3150,
|
| 639 |
+
"train_runtime": 18507.4406,
|
| 640 |
+
"train_tokens_per_second": 13062.793
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 4.194066546467792,
|
| 644 |
+
"grad_norm": 7.551540851593018,
|
| 645 |
+
"learning_rate": 8.954305470961178e-08,
|
| 646 |
+
"loss": 0.2529,
|
| 647 |
+
"num_input_tokens_seen": 245698488,
|
| 648 |
+
"step": 3200,
|
| 649 |
+
"train_runtime": 18827.139,
|
| 650 |
+
"train_tokens_per_second": 13050.23
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"epoch": 4.259629568923128,
|
| 654 |
+
"grad_norm": 0.4505975842475891,
|
| 655 |
+
"learning_rate": 8.922598482022182e-08,
|
| 656 |
+
"loss": 0.2384,
|
| 657 |
+
"num_input_tokens_seen": 249595968,
|
| 658 |
+
"step": 3250,
|
| 659 |
+
"train_runtime": 19129.2909,
|
| 660 |
+
"train_tokens_per_second": 13047.842
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"epoch": 4.325192591378462,
|
| 664 |
+
"grad_norm": 2.2207558155059814,
|
| 665 |
+
"learning_rate": 8.890475868996762e-08,
|
| 666 |
+
"loss": 0.1867,
|
| 667 |
+
"num_input_tokens_seen": 253481304,
|
| 668 |
+
"step": 3300,
|
| 669 |
+
"train_runtime": 19419.7804,
|
| 670 |
+
"train_tokens_per_second": 13052.738
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"epoch": 4.3907556138337975,
|
| 674 |
+
"grad_norm": 0.9266397356987,
|
| 675 |
+
"learning_rate": 8.857941035478673e-08,
|
| 676 |
+
"loss": 0.1763,
|
| 677 |
+
"num_input_tokens_seen": 257255976,
|
| 678 |
+
"step": 3350,
|
| 679 |
+
"train_runtime": 19702.252,
|
| 680 |
+
"train_tokens_per_second": 13057.186
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"epoch": 4.456318636289133,
|
| 684 |
+
"grad_norm": 0.29596129059791565,
|
| 685 |
+
"learning_rate": 8.824997428739036e-08,
|
| 686 |
+
"loss": 0.2278,
|
| 687 |
+
"num_input_tokens_seen": 261064368,
|
| 688 |
+
"step": 3400,
|
| 689 |
+
"train_runtime": 19998.9663,
|
| 690 |
+
"train_tokens_per_second": 13053.893
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"epoch": 4.521881658744468,
|
| 694 |
+
"grad_norm": 0.9699137210845947,
|
| 695 |
+
"learning_rate": 8.791648539361072e-08,
|
| 696 |
+
"loss": 0.201,
|
| 697 |
+
"num_input_tokens_seen": 264944352,
|
| 698 |
+
"step": 3450,
|
| 699 |
+
"train_runtime": 20299.7802,
|
| 700 |
+
"train_tokens_per_second": 13051.587
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"epoch": 4.587444681199804,
|
| 704 |
+
"grad_norm": 1.298768401145935,
|
| 705 |
+
"learning_rate": 8.757897900870261e-08,
|
| 706 |
+
"loss": 0.2057,
|
| 707 |
+
"num_input_tokens_seen": 268791072,
|
| 708 |
+
"step": 3500,
|
| 709 |
+
"train_runtime": 20594.4257,
|
| 710 |
+
"train_tokens_per_second": 13051.642
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 4.653007703655138,
|
| 714 |
+
"grad_norm": 12.011015892028809,
|
| 715 |
+
"learning_rate": 8.72374908935994e-08,
|
| 716 |
+
"loss": 0.2351,
|
| 717 |
+
"num_input_tokens_seen": 272495832,
|
| 718 |
+
"step": 3550,
|
| 719 |
+
"train_runtime": 20885.3413,
|
| 720 |
+
"train_tokens_per_second": 13047.229
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"epoch": 4.718570726110474,
|
| 724 |
+
"grad_norm": 0.24729423224925995,
|
| 725 |
+
"learning_rate": 8.689205723112387e-08,
|
| 726 |
+
"loss": 0.2065,
|
| 727 |
+
"num_input_tokens_seen": 276393408,
|
| 728 |
+
"step": 3600,
|
| 729 |
+
"train_runtime": 21206.0433,
|
| 730 |
+
"train_tokens_per_second": 13033.71
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 4.784133748565809,
|
| 734 |
+
"grad_norm": 2.150505781173706,
|
| 735 |
+
"learning_rate": 8.654271462215454e-08,
|
| 736 |
+
"loss": 0.158,
|
| 737 |
+
"num_input_tokens_seen": 280197624,
|
| 738 |
+
"step": 3650,
|
| 739 |
+
"train_runtime": 21488.9397,
|
| 740 |
+
"train_tokens_per_second": 13039.155
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"epoch": 4.849696771021144,
|
| 744 |
+
"grad_norm": 0.4875163435935974,
|
| 745 |
+
"learning_rate": 8.618950008174746e-08,
|
| 746 |
+
"loss": 0.1832,
|
| 747 |
+
"num_input_tokens_seen": 284031624,
|
| 748 |
+
"step": 3700,
|
| 749 |
+
"train_runtime": 21778.1233,
|
| 750 |
+
"train_tokens_per_second": 13042.062
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"epoch": 4.915259793476479,
|
| 754 |
+
"grad_norm": 0.5430140495300293,
|
| 755 |
+
"learning_rate": 8.583245103521428e-08,
|
| 756 |
+
"loss": 0.2566,
|
| 757 |
+
"num_input_tokens_seen": 287936280,
|
| 758 |
+
"step": 3750,
|
| 759 |
+
"train_runtime": 22067.8249,
|
| 760 |
+
"train_tokens_per_second": 13047.787
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"epoch": 4.980822815931814,
|
| 764 |
+
"grad_norm": 0.3734208941459656,
|
| 765 |
+
"learning_rate": 8.547160531415679e-08,
|
| 766 |
+
"loss": 0.2775,
|
| 767 |
+
"num_input_tokens_seen": 291838584,
|
| 768 |
+
"step": 3800,
|
| 769 |
+
"train_runtime": 22359.3364,
|
| 770 |
+
"train_tokens_per_second": 13052.202
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"epoch": 5.045894115718735,
|
| 774 |
+
"grad_norm": 0.9905921220779419,
|
| 775 |
+
"learning_rate": 8.510700115245841e-08,
|
| 776 |
+
"loss": 0.1971,
|
| 777 |
+
"num_input_tokens_seen": 295643712,
|
| 778 |
+
"step": 3850,
|
| 779 |
+
"train_runtime": 22653.1086,
|
| 780 |
+
"train_tokens_per_second": 13050.911
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 5.11145713817407,
|
| 784 |
+
"grad_norm": 0.0872701108455658,
|
| 785 |
+
"learning_rate": 8.473867718223315e-08,
|
| 786 |
+
"loss": 0.3142,
|
| 787 |
+
"num_input_tokens_seen": 299528016,
|
| 788 |
+
"step": 3900,
|
| 789 |
+
"train_runtime": 22970.1152,
|
| 790 |
+
"train_tokens_per_second": 13039.9
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"epoch": 5.177020160629405,
|
| 794 |
+
"grad_norm": 0.7591832876205444,
|
| 795 |
+
"learning_rate": 8.436667242973218e-08,
|
| 796 |
+
"loss": 0.2291,
|
| 797 |
+
"num_input_tokens_seen": 303643632,
|
| 798 |
+
"step": 3950,
|
| 799 |
+
"train_runtime": 23324.5779,
|
| 800 |
+
"train_tokens_per_second": 13018.183
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"epoch": 5.24258318308474,
|
| 804 |
+
"grad_norm": 0.44477882981300354,
|
| 805 |
+
"learning_rate": 8.399102631120877e-08,
|
| 806 |
+
"loss": 0.2128,
|
| 807 |
+
"num_input_tokens_seen": 307574184,
|
| 808 |
+
"step": 4000,
|
| 809 |
+
"train_runtime": 23603.684,
|
| 810 |
+
"train_tokens_per_second": 13030.77
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"epoch": 5.308146205540075,
|
| 814 |
+
"grad_norm": 0.48096030950546265,
|
| 815 |
+
"learning_rate": 8.361177862874202e-08,
|
| 816 |
+
"loss": 0.1472,
|
| 817 |
+
"num_input_tokens_seen": 311323584,
|
| 818 |
+
"step": 4050,
|
| 819 |
+
"train_runtime": 23888.6512,
|
| 820 |
+
"train_tokens_per_second": 13032.28
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"epoch": 5.373709227995411,
|
| 824 |
+
"grad_norm": 0.9138302206993103,
|
| 825 |
+
"learning_rate": 8.32289695660194e-08,
|
| 826 |
+
"loss": 0.1981,
|
| 827 |
+
"num_input_tokens_seen": 315158328,
|
| 828 |
+
"step": 4100,
|
| 829 |
+
"train_runtime": 24182.2327,
|
| 830 |
+
"train_tokens_per_second": 13032.64
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"epoch": 5.439272250450745,
|
| 834 |
+
"grad_norm": 0.3333579897880554,
|
| 835 |
+
"learning_rate": 8.284263968407912e-08,
|
| 836 |
+
"loss": 0.1837,
|
| 837 |
+
"num_input_tokens_seen": 318844944,
|
| 838 |
+
"step": 4150,
|
| 839 |
+
"train_runtime": 24456.5915,
|
| 840 |
+
"train_tokens_per_second": 13037.178
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"epoch": 5.504835272906081,
|
| 844 |
+
"grad_norm": 0.9484214782714844,
|
| 845 |
+
"learning_rate": 8.245282991701243e-08,
|
| 846 |
+
"loss": 0.2015,
|
| 847 |
+
"num_input_tokens_seen": 322685568,
|
| 848 |
+
"step": 4200,
|
| 849 |
+
"train_runtime": 24723.1173,
|
| 850 |
+
"train_tokens_per_second": 13051.977
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 5.570398295361416,
|
| 854 |
+
"grad_norm": 0.4100230634212494,
|
| 855 |
+
"learning_rate": 8.205958156762646e-08,
|
| 856 |
+
"loss": 0.2554,
|
| 857 |
+
"num_input_tokens_seen": 326275680,
|
| 858 |
+
"step": 4250,
|
| 859 |
+
"train_runtime": 24984.4942,
|
| 860 |
+
"train_tokens_per_second": 13059.127
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"epoch": 5.635961317816752,
|
| 864 |
+
"grad_norm": 0.9571174383163452,
|
| 865 |
+
"learning_rate": 8.166293630306773e-08,
|
| 866 |
+
"loss": 0.2039,
|
| 867 |
+
"num_input_tokens_seen": 330026184,
|
| 868 |
+
"step": 4300,
|
| 869 |
+
"train_runtime": 25280.2384,
|
| 870 |
+
"train_tokens_per_second": 13054.71
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"epoch": 5.701524340272087,
|
| 874 |
+
"grad_norm": 0.5215702652931213,
|
| 875 |
+
"learning_rate": 8.126293615040747e-08,
|
| 876 |
+
"loss": 0.2277,
|
| 877 |
+
"num_input_tokens_seen": 333968520,
|
| 878 |
+
"step": 4350,
|
| 879 |
+
"train_runtime": 25565.1364,
|
| 880 |
+
"train_tokens_per_second": 13063.436
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"epoch": 5.7670873627274215,
|
| 884 |
+
"grad_norm": 0.4471840560436249,
|
| 885 |
+
"learning_rate": 8.085962349218847e-08,
|
| 886 |
+
"loss": 0.2104,
|
| 887 |
+
"num_input_tokens_seen": 337707624,
|
| 888 |
+
"step": 4400,
|
| 889 |
+
"train_runtime": 25841.3753,
|
| 890 |
+
"train_tokens_per_second": 13068.485
|
| 891 |
+
},
|
| 892 |
+
{
|
| 893 |
+
"epoch": 5.832650385182757,
|
| 894 |
+
"grad_norm": 1.0097142457962036,
|
| 895 |
+
"learning_rate": 8.04530410619344e-08,
|
| 896 |
+
"loss": 0.2524,
|
| 897 |
+
"num_input_tokens_seen": 341503488,
|
| 898 |
+
"step": 4450,
|
| 899 |
+
"train_runtime": 26137.1854,
|
| 900 |
+
"train_tokens_per_second": 13065.81
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"epoch": 5.898213407638092,
|
| 904 |
+
"grad_norm": 1.6211527585983276,
|
| 905 |
+
"learning_rate": 8.004323193962197e-08,
|
| 906 |
+
"loss": 0.1595,
|
| 907 |
+
"num_input_tokens_seen": 345388440,
|
| 908 |
+
"step": 4500,
|
| 909 |
+
"train_runtime": 26453.2756,
|
| 910 |
+
"train_tokens_per_second": 13056.547
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"epoch": 5.963776430093427,
|
| 914 |
+
"grad_norm": 0.25499045848846436,
|
| 915 |
+
"learning_rate": 7.963023954711624e-08,
|
| 916 |
+
"loss": 0.2721,
|
| 917 |
+
"num_input_tokens_seen": 349216920,
|
| 918 |
+
"step": 4550,
|
| 919 |
+
"train_runtime": 26741.8598,
|
| 920 |
+
"train_tokens_per_second": 13058.812
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 6.028847729880347,
|
| 924 |
+
"grad_norm": 0.6265522837638855,
|
| 925 |
+
"learning_rate": 7.921410764356988e-08,
|
| 926 |
+
"loss": 0.1993,
|
| 927 |
+
"num_input_tokens_seen": 353096424,
|
| 928 |
+
"step": 4600,
|
| 929 |
+
"train_runtime": 27061.8507,
|
| 930 |
+
"train_tokens_per_second": 13047.756
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"epoch": 6.0944107523356825,
|
| 934 |
+
"grad_norm": 0.06899835169315338,
|
| 935 |
+
"learning_rate": 7.87948803207866e-08,
|
| 936 |
+
"loss": 0.2228,
|
| 937 |
+
"num_input_tokens_seen": 356829384,
|
| 938 |
+
"step": 4650,
|
| 939 |
+
"train_runtime": 27330.1966,
|
| 940 |
+
"train_tokens_per_second": 13056.232
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"epoch": 6.159973774791018,
|
| 944 |
+
"grad_norm": 0.8082672953605652,
|
| 945 |
+
"learning_rate": 7.837260199854929e-08,
|
| 946 |
+
"loss": 0.1859,
|
| 947 |
+
"num_input_tokens_seen": 360447864,
|
| 948 |
+
"step": 4700,
|
| 949 |
+
"train_runtime": 27571.8796,
|
| 950 |
+
"train_tokens_per_second": 13073.025
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"epoch": 6.225536797246353,
|
| 954 |
+
"grad_norm": 0.6293157339096069,
|
| 955 |
+
"learning_rate": 7.794731741991355e-08,
|
| 956 |
+
"loss": 0.2223,
|
| 957 |
+
"num_input_tokens_seen": 364279296,
|
| 958 |
+
"step": 4750,
|
| 959 |
+
"train_runtime": 27852.8113,
|
| 960 |
+
"train_tokens_per_second": 13078.726
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"epoch": 6.291099819701688,
|
| 964 |
+
"grad_norm": 0.7018508315086365,
|
| 965 |
+
"learning_rate": 7.751907164646682e-08,
|
| 966 |
+
"loss": 0.1709,
|
| 967 |
+
"num_input_tokens_seen": 368000976,
|
| 968 |
+
"step": 4800,
|
| 969 |
+
"train_runtime": 28103.875,
|
| 970 |
+
"train_tokens_per_second": 13094.314
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"epoch": 6.356662842157023,
|
| 974 |
+
"grad_norm": 0.3939789831638336,
|
| 975 |
+
"learning_rate": 7.70879100535538e-08,
|
| 976 |
+
"loss": 0.1903,
|
| 977 |
+
"num_input_tokens_seen": 371666208,
|
| 978 |
+
"step": 4850,
|
| 979 |
+
"train_runtime": 28370.3397,
|
| 980 |
+
"train_tokens_per_second": 13100.52
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"epoch": 6.422225864612359,
|
| 984 |
+
"grad_norm": 0.07075575739145279,
|
| 985 |
+
"learning_rate": 7.665387832546873e-08,
|
| 986 |
+
"loss": 0.1653,
|
| 987 |
+
"num_input_tokens_seen": 375530976,
|
| 988 |
+
"step": 4900,
|
| 989 |
+
"train_runtime": 28672.2738,
|
| 990 |
+
"train_tokens_per_second": 13097.356
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 6.487788887067694,
|
| 994 |
+
"grad_norm": 1.4741820096969604,
|
| 995 |
+
"learning_rate": 7.621702245061479e-08,
|
| 996 |
+
"loss": 0.2247,
|
| 997 |
+
"num_input_tokens_seen": 379400040,
|
| 998 |
+
"step": 4950,
|
| 999 |
+
"train_runtime": 28956.4169,
|
| 1000 |
+
"train_tokens_per_second": 13102.451
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"epoch": 6.553351909523029,
|
| 1004 |
+
"grad_norm": 0.756077229976654,
|
| 1005 |
+
"learning_rate": 7.577738871663131e-08,
|
| 1006 |
+
"loss": 0.2299,
|
| 1007 |
+
"num_input_tokens_seen": 383417568,
|
| 1008 |
+
"step": 5000,
|
| 1009 |
+
"train_runtime": 29294.8197,
|
| 1010 |
+
"train_tokens_per_second": 13088.238
|
| 1011 |
+
}
|
| 1012 |
+
],
|
| 1013 |
+
"logging_steps": 50,
|
| 1014 |
+
"max_steps": 15260,
|
| 1015 |
+
"num_input_tokens_seen": 383417568,
|
| 1016 |
+
"num_train_epochs": 20,
|
| 1017 |
+
"save_steps": 1000,
|
| 1018 |
+
"stateful_callbacks": {
|
| 1019 |
+
"TrainerControl": {
|
| 1020 |
+
"args": {
|
| 1021 |
+
"should_epoch_stop": false,
|
| 1022 |
+
"should_evaluate": false,
|
| 1023 |
+
"should_log": false,
|
| 1024 |
+
"should_save": true,
|
| 1025 |
+
"should_training_stop": false
|
| 1026 |
+
},
|
| 1027 |
+
"attributes": {}
|
| 1028 |
+
}
|
| 1029 |
+
},
|
| 1030 |
+
"total_flos": 8.358913850245906e+18,
|
| 1031 |
+
"train_batch_size": 3,
|
| 1032 |
+
"trial_name": null,
|
| 1033 |
+
"trial_params": null
|
| 1034 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c074aff19e5019ec7fd143ab97579ecb71c971734ba58087267a502075e0431
|
| 3 |
+
size 6353
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|