Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +61 -0
- added_tokens.json +30 -0
- all_results.json +8 -0
- chat_template.jinja +89 -0
- config.json +30 -0
- generation_config.json +13 -0
- merges.txt +0 -0
- model-00001-of-00004.safetensors +3 -0
- model-00002-of-00004.safetensors +3 -0
- model-00003-of-00004.safetensors +3 -0
- model-00004-of-00004.safetensors +3 -0
- model.safetensors.index.json +406 -0
- special_tokens_map.json +38 -0
- tokenizer.json +3 -0
- tokenizer_config.json +257 -0
- train_results.json +8 -0
- trainer_log.jsonl +101 -0
- trainer_state.json +743 -0
- training_args.bin +3 -0
- training_loss.png +0 -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
|
README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
license: other
|
| 4 |
+
base_model: Qwen/Qwen3-8B
|
| 5 |
+
tags:
|
| 6 |
+
- llama-factory
|
| 7 |
+
- full
|
| 8 |
+
- generated_from_trainer
|
| 9 |
+
model-index:
|
| 10 |
+
- name: qwen3-8B-sft-mix-v20250907-8ep
|
| 11 |
+
results: []
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 15 |
+
should probably proofread and complete it, then remove this comment. -->
|
| 16 |
+
|
| 17 |
+
# qwen3-8B-sft-mix-v20250907-8ep
|
| 18 |
+
|
| 19 |
+
This model is a fine-tuned version of [Qwen/Qwen3-8B](https://huggingface.co/Qwen/Qwen3-8B) on the rl-rag/sft-mix-v20250907 dataset.
|
| 20 |
+
|
| 21 |
+
## Model description
|
| 22 |
+
|
| 23 |
+
More information needed
|
| 24 |
+
|
| 25 |
+
## Intended uses & limitations
|
| 26 |
+
|
| 27 |
+
More information needed
|
| 28 |
+
|
| 29 |
+
## Training and evaluation data
|
| 30 |
+
|
| 31 |
+
More information needed
|
| 32 |
+
|
| 33 |
+
## Training procedure
|
| 34 |
+
|
| 35 |
+
### Training hyperparameters
|
| 36 |
+
|
| 37 |
+
The following hyperparameters were used during training:
|
| 38 |
+
- learning_rate: 4e-05
|
| 39 |
+
- train_batch_size: 1
|
| 40 |
+
- eval_batch_size: 8
|
| 41 |
+
- seed: 42
|
| 42 |
+
- distributed_type: multi-GPU
|
| 43 |
+
- num_devices: 8
|
| 44 |
+
- gradient_accumulation_steps: 16
|
| 45 |
+
- total_train_batch_size: 128
|
| 46 |
+
- total_eval_batch_size: 64
|
| 47 |
+
- optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
| 48 |
+
- lr_scheduler_type: cosine
|
| 49 |
+
- lr_scheduler_warmup_ratio: 0.1
|
| 50 |
+
- num_epochs: 8
|
| 51 |
+
|
| 52 |
+
### Training results
|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
### Framework versions
|
| 57 |
+
|
| 58 |
+
- Transformers 4.52.4
|
| 59 |
+
- Pytorch 2.8.0+cu128
|
| 60 |
+
- Datasets 3.6.0
|
| 61 |
+
- Tokenizers 0.21.1
|
added_tokens.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"<|eom_id|>": 151670,
|
| 12 |
+
"<|eot_id|>": 151669,
|
| 13 |
+
"<|file_sep|>": 151664,
|
| 14 |
+
"<|fim_middle|>": 151660,
|
| 15 |
+
"<|fim_pad|>": 151662,
|
| 16 |
+
"<|fim_prefix|>": 151659,
|
| 17 |
+
"<|fim_suffix|>": 151661,
|
| 18 |
+
"<|im_end|>": 151645,
|
| 19 |
+
"<|im_start|>": 151644,
|
| 20 |
+
"<|image_pad|>": 151655,
|
| 21 |
+
"<|object_ref_end|>": 151647,
|
| 22 |
+
"<|object_ref_start|>": 151646,
|
| 23 |
+
"<|quad_end|>": 151651,
|
| 24 |
+
"<|quad_start|>": 151650,
|
| 25 |
+
"<|repo_name|>": 151663,
|
| 26 |
+
"<|video_pad|>": 151656,
|
| 27 |
+
"<|vision_end|>": 151653,
|
| 28 |
+
"<|vision_pad|>": 151654,
|
| 29 |
+
"<|vision_start|>": 151652
|
| 30 |
+
}
|
all_results.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 8.0,
|
| 3 |
+
"total_flos": 718744629805056.0,
|
| 4 |
+
"train_loss": 0.414989875806939,
|
| 5 |
+
"train_runtime": 39904.848,
|
| 6 |
+
"train_samples_per_second": 1.608,
|
| 7 |
+
"train_steps_per_second": 0.013
|
| 8 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 18 |
+
{%- for message in messages[::-1] %}
|
| 19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 20 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 21 |
+
{%- set ns.multi_step_tool = false %}
|
| 22 |
+
{%- set ns.last_query_index = index %}
|
| 23 |
+
{%- endif %}
|
| 24 |
+
{%- endfor %}
|
| 25 |
+
{%- for message in messages %}
|
| 26 |
+
{%- if message.content is string %}
|
| 27 |
+
{%- set content = message.content %}
|
| 28 |
+
{%- else %}
|
| 29 |
+
{%- set content = '' %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 32 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 33 |
+
{%- elif message.role == "assistant" %}
|
| 34 |
+
{%- set reasoning_content = '' %}
|
| 35 |
+
{%- if message.reasoning_content is string %}
|
| 36 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 37 |
+
{%- else %}
|
| 38 |
+
{%- if '</think>' in content %}
|
| 39 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 40 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 44 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 45 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 46 |
+
{%- else %}
|
| 47 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 48 |
+
{%- endif %}
|
| 49 |
+
{%- else %}
|
| 50 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{%- if message.tool_calls %}
|
| 53 |
+
{%- for tool_call in message.tool_calls %}
|
| 54 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 55 |
+
{{- '\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- if tool_call.function %}
|
| 58 |
+
{%- set tool_call = tool_call.function %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 61 |
+
{{- tool_call.name }}
|
| 62 |
+
{{- '", "arguments": ' }}
|
| 63 |
+
{%- if tool_call.arguments is string %}
|
| 64 |
+
{{- tool_call.arguments }}
|
| 65 |
+
{%- else %}
|
| 66 |
+
{{- tool_call.arguments | tojson }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{{- '}\n</tool_call>' }}
|
| 69 |
+
{%- endfor %}
|
| 70 |
+
{%- endif %}
|
| 71 |
+
{{- '<|im_end|>\n' }}
|
| 72 |
+
{%- elif message.role == "tool" %}
|
| 73 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 74 |
+
{{- '<|im_start|>user' }}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{{- '\n<tool_response>\n' }}
|
| 77 |
+
{{- content }}
|
| 78 |
+
{{- '\n</tool_response>' }}
|
| 79 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 80 |
+
{{- '<|im_end|>\n' }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{%- endfor %}
|
| 84 |
+
{%- if add_generation_prompt %}
|
| 85 |
+
{{- '<|im_start|>assistant\n' }}
|
| 86 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 87 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 88 |
+
{%- endif %}
|
| 89 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 151643,
|
| 8 |
+
"eos_token_id": 151645,
|
| 9 |
+
"head_dim": 128,
|
| 10 |
+
"hidden_act": "silu",
|
| 11 |
+
"hidden_size": 4096,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 12288,
|
| 14 |
+
"max_position_embeddings": 40960,
|
| 15 |
+
"max_window_layers": 36,
|
| 16 |
+
"model_type": "qwen3",
|
| 17 |
+
"num_attention_heads": 32,
|
| 18 |
+
"num_hidden_layers": 36,
|
| 19 |
+
"num_key_value_heads": 8,
|
| 20 |
+
"rms_norm_eps": 1e-06,
|
| 21 |
+
"rope_scaling": null,
|
| 22 |
+
"rope_theta": 1000000,
|
| 23 |
+
"sliding_window": null,
|
| 24 |
+
"tie_word_embeddings": false,
|
| 25 |
+
"torch_dtype": "bfloat16",
|
| 26 |
+
"transformers_version": "4.52.4",
|
| 27 |
+
"use_cache": false,
|
| 28 |
+
"use_sliding_window": false,
|
| 29 |
+
"vocab_size": 151936
|
| 30 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
151645,
|
| 6 |
+
151643
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 151643,
|
| 9 |
+
"temperature": 0.6,
|
| 10 |
+
"top_k": 20,
|
| 11 |
+
"top_p": 0.95,
|
| 12 |
+
"transformers_version": "4.52.4"
|
| 13 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0473470a364d7d1a47554861a38294a9dd308c70fc467f22c2fc809b0f2afa2a
|
| 3 |
+
size 4902257696
|
model-00002-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aabad5a7f2288a429f747ffb0eab84a4ed4631f68b07e6ba8d841be0a0b713b9
|
| 3 |
+
size 4915960368
|
model-00003-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f1b8040d7758018d794b079d6d98c1ac0f197b853e409d19080be42c5b3a3a2
|
| 3 |
+
size 4983068496
|
model-00004-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b8cc0bd08b701daf6495c45678905656bbc1d2d4d7aa610e2422587edb2c3f7
|
| 3 |
+
size 1580230264
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,406 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 16381470720
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"lm_head.weight": "model-00004-of-00004.safetensors",
|
| 7 |
+
"model.embed_tokens.weight": "model-00001-of-00004.safetensors",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 13 |
+
"model.layers.0.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 19 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 20 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 21 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 22 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 23 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 24 |
+
"model.layers.1.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 30 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 31 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 32 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 33 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 34 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 35 |
+
"model.layers.10.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 36 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 37 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 40 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 41 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 42 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 43 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 44 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 45 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 46 |
+
"model.layers.11.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 47 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 48 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 49 |
+
"model.layers.11.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 51 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 52 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 53 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 54 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 55 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 56 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 57 |
+
"model.layers.12.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 58 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 59 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 60 |
+
"model.layers.12.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 61 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 63 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 64 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 65 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 66 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 67 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 68 |
+
"model.layers.13.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 69 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 70 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 71 |
+
"model.layers.13.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 72 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 73 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 74 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 75 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 76 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 77 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 78 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 79 |
+
"model.layers.14.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 80 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 81 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 82 |
+
"model.layers.14.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 83 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 84 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 85 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 86 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 87 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 88 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 89 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 90 |
+
"model.layers.15.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 91 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 92 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 93 |
+
"model.layers.15.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 94 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 95 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 96 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 97 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 98 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 99 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 100 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 101 |
+
"model.layers.16.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 102 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 103 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 104 |
+
"model.layers.16.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 105 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 106 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 107 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 108 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 109 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 110 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 111 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 112 |
+
"model.layers.17.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 113 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 114 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 115 |
+
"model.layers.17.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 116 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 117 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 118 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 119 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 120 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 121 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 122 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 123 |
+
"model.layers.18.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 124 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 125 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 126 |
+
"model.layers.18.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 127 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 128 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 129 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 130 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 131 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 132 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 133 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 134 |
+
"model.layers.19.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 135 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 136 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 137 |
+
"model.layers.19.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 138 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 139 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 140 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 141 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 142 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 143 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 144 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 145 |
+
"model.layers.2.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 146 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 147 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 148 |
+
"model.layers.2.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 149 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 150 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 151 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 152 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 153 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 154 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 155 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 156 |
+
"model.layers.20.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 157 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 158 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 159 |
+
"model.layers.20.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 160 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 161 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 162 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 163 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 164 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 165 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 166 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 167 |
+
"model.layers.21.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 168 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 169 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 170 |
+
"model.layers.21.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 171 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 172 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 173 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 174 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 175 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 176 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 177 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 178 |
+
"model.layers.22.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
|
| 179 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 180 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 181 |
+
"model.layers.22.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
|
| 182 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 183 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 184 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 185 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 186 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 187 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 188 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 189 |
+
"model.layers.23.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 190 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 191 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 192 |
+
"model.layers.23.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 193 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 194 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 195 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 196 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 197 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 198 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 199 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 200 |
+
"model.layers.24.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 201 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 202 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 203 |
+
"model.layers.24.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 204 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 205 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 206 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 207 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 208 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 209 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 210 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 211 |
+
"model.layers.25.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 212 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 213 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 214 |
+
"model.layers.25.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 215 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 216 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 217 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 218 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 219 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 220 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 221 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 222 |
+
"model.layers.26.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 223 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 224 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 225 |
+
"model.layers.26.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 226 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 227 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 228 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 229 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 230 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 231 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 232 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 233 |
+
"model.layers.27.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 234 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 235 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 236 |
+
"model.layers.27.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 237 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 238 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 239 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 240 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 241 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 242 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 243 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 244 |
+
"model.layers.28.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 245 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 246 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 247 |
+
"model.layers.28.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 248 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 249 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 250 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 251 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 252 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 253 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 254 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 255 |
+
"model.layers.29.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 256 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 257 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 258 |
+
"model.layers.29.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 259 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 260 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 261 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 262 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 263 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 264 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 265 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 266 |
+
"model.layers.3.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 267 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 268 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 269 |
+
"model.layers.3.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 270 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 271 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 272 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 273 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 274 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 275 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 276 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 277 |
+
"model.layers.30.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 278 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 279 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 280 |
+
"model.layers.30.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 281 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 282 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 283 |
+
"model.layers.31.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 284 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 285 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 286 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 287 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 288 |
+
"model.layers.31.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 289 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 290 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 291 |
+
"model.layers.31.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 292 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 293 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 294 |
+
"model.layers.32.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 295 |
+
"model.layers.32.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 296 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 297 |
+
"model.layers.32.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 298 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 299 |
+
"model.layers.32.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 300 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 301 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 302 |
+
"model.layers.32.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 303 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 304 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 305 |
+
"model.layers.33.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 306 |
+
"model.layers.33.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 307 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 308 |
+
"model.layers.33.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 309 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 310 |
+
"model.layers.33.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 311 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 312 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 313 |
+
"model.layers.33.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 314 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 315 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 316 |
+
"model.layers.34.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 317 |
+
"model.layers.34.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 318 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 319 |
+
"model.layers.34.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 320 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 321 |
+
"model.layers.34.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
|
| 322 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 323 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 324 |
+
"model.layers.34.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
|
| 325 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 326 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 327 |
+
"model.layers.35.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 328 |
+
"model.layers.35.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 329 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 330 |
+
"model.layers.35.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 331 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 332 |
+
"model.layers.35.self_attn.k_norm.weight": "model-00004-of-00004.safetensors",
|
| 333 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 334 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 335 |
+
"model.layers.35.self_attn.q_norm.weight": "model-00004-of-00004.safetensors",
|
| 336 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 337 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 338 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 339 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 340 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 341 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 342 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 343 |
+
"model.layers.4.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 344 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 345 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 346 |
+
"model.layers.4.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 347 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 348 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 349 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 350 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 351 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 352 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 353 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 354 |
+
"model.layers.5.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 355 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 356 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 357 |
+
"model.layers.5.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 358 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 359 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 360 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 361 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 362 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 363 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 364 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 365 |
+
"model.layers.6.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 366 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 367 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 368 |
+
"model.layers.6.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 369 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 370 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 371 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 372 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 373 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 374 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 375 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 376 |
+
"model.layers.7.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 377 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 378 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 379 |
+
"model.layers.7.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 380 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 381 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 382 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 383 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 384 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 385 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 386 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 387 |
+
"model.layers.8.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 388 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 389 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 390 |
+
"model.layers.8.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 391 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 392 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 393 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 394 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 395 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 396 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 397 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 398 |
+
"model.layers.9.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
|
| 399 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 400 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 401 |
+
"model.layers.9.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
|
| 402 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 403 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 404 |
+
"model.norm.weight": "model-00004-of-00004.safetensors"
|
| 405 |
+
}
|
| 406 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"content": "<|eom_id|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
}
|
| 23 |
+
],
|
| 24 |
+
"eos_token": {
|
| 25 |
+
"content": "<|eot_id|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
},
|
| 31 |
+
"pad_token": {
|
| 32 |
+
"content": "<|endoftext|>",
|
| 33 |
+
"lstrip": false,
|
| 34 |
+
"normalized": false,
|
| 35 |
+
"rstrip": false,
|
| 36 |
+
"single_word": false
|
| 37 |
+
}
|
| 38 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d54c74d027d5d47beb5d853147790ea13202ee3a9b92711338dcf05b6abf1ba5
|
| 3 |
+
size 11423028
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,257 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"151669": {
|
| 214 |
+
"content": "<|eot_id|>",
|
| 215 |
+
"lstrip": false,
|
| 216 |
+
"normalized": false,
|
| 217 |
+
"rstrip": false,
|
| 218 |
+
"single_word": false,
|
| 219 |
+
"special": true
|
| 220 |
+
},
|
| 221 |
+
"151670": {
|
| 222 |
+
"content": "<|eom_id|>",
|
| 223 |
+
"lstrip": false,
|
| 224 |
+
"normalized": false,
|
| 225 |
+
"rstrip": false,
|
| 226 |
+
"single_word": false,
|
| 227 |
+
"special": true
|
| 228 |
+
}
|
| 229 |
+
},
|
| 230 |
+
"additional_special_tokens": [
|
| 231 |
+
"<|im_start|>",
|
| 232 |
+
"<|im_end|>",
|
| 233 |
+
"<|object_ref_start|>",
|
| 234 |
+
"<|object_ref_end|>",
|
| 235 |
+
"<|box_start|>",
|
| 236 |
+
"<|box_end|>",
|
| 237 |
+
"<|quad_start|>",
|
| 238 |
+
"<|quad_end|>",
|
| 239 |
+
"<|vision_start|>",
|
| 240 |
+
"<|vision_end|>",
|
| 241 |
+
"<|vision_pad|>",
|
| 242 |
+
"<|image_pad|>",
|
| 243 |
+
"<|video_pad|>",
|
| 244 |
+
"<|eom_id|>"
|
| 245 |
+
],
|
| 246 |
+
"bos_token": null,
|
| 247 |
+
"clean_up_tokenization_spaces": false,
|
| 248 |
+
"eos_token": "<|eot_id|>",
|
| 249 |
+
"errors": "replace",
|
| 250 |
+
"extra_special_tokens": {},
|
| 251 |
+
"model_max_length": 131072,
|
| 252 |
+
"pad_token": "<|endoftext|>",
|
| 253 |
+
"padding_side": "right",
|
| 254 |
+
"split_special_tokens": false,
|
| 255 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 256 |
+
"unk_token": null
|
| 257 |
+
}
|
train_results.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 8.0,
|
| 3 |
+
"total_flos": 718744629805056.0,
|
| 4 |
+
"train_loss": 0.414989875806939,
|
| 5 |
+
"train_runtime": 39904.848,
|
| 6 |
+
"train_samples_per_second": 1.608,
|
| 7 |
+
"train_steps_per_second": 0.013
|
| 8 |
+
}
|
trainer_log.jsonl
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"current_steps": 5, "total_steps": 504, "loss": 1.6286, "lr": 3.1372549019607846e-06, "epoch": 0.07976071784646062, "percentage": 0.99, "elapsed_time": "0:07:51", "remaining_time": "13:03:36"}
|
| 2 |
+
{"current_steps": 10, "total_steps": 504, "loss": 1.4082, "lr": 7.058823529411766e-06, "epoch": 0.15952143569292124, "percentage": 1.98, "elapsed_time": "0:14:24", "remaining_time": "11:52:03"}
|
| 3 |
+
{"current_steps": 15, "total_steps": 504, "loss": 1.2277, "lr": 1.0980392156862747e-05, "epoch": 0.23928215353938184, "percentage": 2.98, "elapsed_time": "0:21:14", "remaining_time": "11:32:28"}
|
| 4 |
+
{"current_steps": 20, "total_steps": 504, "loss": 1.1183, "lr": 1.4901960784313726e-05, "epoch": 0.3190428713858425, "percentage": 3.97, "elapsed_time": "0:27:40", "remaining_time": "11:09:49"}
|
| 5 |
+
{"current_steps": 25, "total_steps": 504, "loss": 1.065, "lr": 1.8823529411764708e-05, "epoch": 0.3988035892323031, "percentage": 4.96, "elapsed_time": "0:34:34", "remaining_time": "11:02:27"}
|
| 6 |
+
{"current_steps": 30, "total_steps": 504, "loss": 1.0376, "lr": 2.274509803921569e-05, "epoch": 0.4785643070787637, "percentage": 5.95, "elapsed_time": "0:41:06", "remaining_time": "10:49:29"}
|
| 7 |
+
{"current_steps": 35, "total_steps": 504, "loss": 1.0193, "lr": 2.6666666666666667e-05, "epoch": 0.5583250249252243, "percentage": 6.94, "elapsed_time": "0:47:16", "remaining_time": "10:33:27"}
|
| 8 |
+
{"current_steps": 40, "total_steps": 504, "loss": 1.0101, "lr": 3.0588235294117644e-05, "epoch": 0.638085742771685, "percentage": 7.94, "elapsed_time": "0:53:37", "remaining_time": "10:21:58"}
|
| 9 |
+
{"current_steps": 45, "total_steps": 504, "loss": 0.9855, "lr": 3.450980392156863e-05, "epoch": 0.7178464606181456, "percentage": 8.93, "elapsed_time": "1:00:12", "remaining_time": "10:14:09"}
|
| 10 |
+
{"current_steps": 50, "total_steps": 504, "loss": 0.9472, "lr": 3.8431372549019614e-05, "epoch": 0.7976071784646062, "percentage": 9.92, "elapsed_time": "1:06:56", "remaining_time": "10:07:46"}
|
| 11 |
+
{"current_steps": 55, "total_steps": 504, "loss": 0.9543, "lr": 3.999567157212646e-05, "epoch": 0.8773678963110668, "percentage": 10.91, "elapsed_time": "1:13:43", "remaining_time": "10:01:51"}
|
| 12 |
+
{"current_steps": 60, "total_steps": 504, "loss": 0.9476, "lr": 3.996922685294587e-05, "epoch": 0.9571286141575274, "percentage": 11.9, "elapsed_time": "1:20:20", "remaining_time": "9:54:34"}
|
| 13 |
+
{"current_steps": 65, "total_steps": 504, "loss": 0.897, "lr": 3.991877385171789e-05, "epoch": 1.0319042871385842, "percentage": 12.9, "elapsed_time": "1:26:48", "remaining_time": "9:46:18"}
|
| 14 |
+
{"current_steps": 70, "total_steps": 504, "loss": 0.8082, "lr": 3.9844373226268305e-05, "epoch": 1.111665004985045, "percentage": 13.89, "elapsed_time": "1:33:39", "remaining_time": "9:40:41"}
|
| 15 |
+
{"current_steps": 75, "total_steps": 504, "loss": 0.8094, "lr": 3.97461144257888e-05, "epoch": 1.1914257228315055, "percentage": 14.88, "elapsed_time": "1:39:59", "remaining_time": "9:31:57"}
|
| 16 |
+
{"current_steps": 80, "total_steps": 504, "loss": 0.7905, "lr": 3.9624115583295375e-05, "epoch": 1.271186440677966, "percentage": 15.87, "elapsed_time": "1:46:34", "remaining_time": "9:24:50"}
|
| 17 |
+
{"current_steps": 85, "total_steps": 504, "loss": 0.8298, "lr": 3.9478523373601325e-05, "epoch": 1.3509471585244266, "percentage": 16.87, "elapsed_time": "1:53:23", "remaining_time": "9:18:58"}
|
| 18 |
+
{"current_steps": 90, "total_steps": 504, "loss": 0.7867, "lr": 3.930951283697534e-05, "epoch": 1.4307078763708874, "percentage": 17.86, "elapsed_time": "2:00:02", "remaining_time": "9:12:12"}
|
| 19 |
+
{"current_steps": 95, "total_steps": 504, "loss": 0.8198, "lr": 3.9117287168696956e-05, "epoch": 1.510468594217348, "percentage": 18.85, "elapsed_time": "2:06:40", "remaining_time": "9:05:20"}
|
| 20 |
+
{"current_steps": 100, "total_steps": 504, "loss": 0.7834, "lr": 3.8902077474762155e-05, "epoch": 1.5902293120638085, "percentage": 19.84, "elapsed_time": "2:13:27", "remaining_time": "8:59:10"}
|
| 21 |
+
{"current_steps": 105, "total_steps": 504, "loss": 0.8185, "lr": 3.866414249403295e-05, "epoch": 1.6699900299102692, "percentage": 20.83, "elapsed_time": "2:20:07", "remaining_time": "8:52:28"}
|
| 22 |
+
{"current_steps": 110, "total_steps": 504, "loss": 0.8124, "lr": 3.840376828716499e-05, "epoch": 1.7497507477567298, "percentage": 21.83, "elapsed_time": "2:26:18", "remaining_time": "8:44:04"}
|
| 23 |
+
{"current_steps": 115, "total_steps": 504, "loss": 0.8057, "lr": 3.812126789268712e-05, "epoch": 1.8295114656031903, "percentage": 22.82, "elapsed_time": "2:33:05", "remaining_time": "8:37:50"}
|
| 24 |
+
{"current_steps": 120, "total_steps": 504, "loss": 0.8145, "lr": 3.781698095064647e-05, "epoch": 1.909272183449651, "percentage": 23.81, "elapsed_time": "2:39:31", "remaining_time": "8:30:29"}
|
| 25 |
+
{"current_steps": 125, "total_steps": 504, "loss": 0.7913, "lr": 3.7491273294271386e-05, "epoch": 1.9890329012961117, "percentage": 24.8, "elapsed_time": "2:46:21", "remaining_time": "8:24:22"}
|
| 26 |
+
{"current_steps": 130, "total_steps": 504, "loss": 0.6452, "lr": 3.7144536510143436e-05, "epoch": 2.0638085742771684, "percentage": 25.79, "elapsed_time": "2:52:44", "remaining_time": "8:16:59"}
|
| 27 |
+
{"current_steps": 135, "total_steps": 504, "loss": 0.5773, "lr": 3.6777187467406857e-05, "epoch": 2.143569292123629, "percentage": 26.79, "elapsed_time": "2:59:00", "remaining_time": "8:09:16"}
|
| 28 |
+
{"current_steps": 140, "total_steps": 504, "loss": 0.5875, "lr": 3.638966781658187e-05, "epoch": 2.22333000997009, "percentage": 27.78, "elapsed_time": "3:05:53", "remaining_time": "8:03:18"}
|
| 29 |
+
{"current_steps": 145, "total_steps": 504, "loss": 0.5823, "lr": 3.598244345858412e-05, "epoch": 2.30309072781655, "percentage": 28.77, "elapsed_time": "3:12:27", "remaining_time": "7:56:29"}
|
| 30 |
+
{"current_steps": 150, "total_steps": 504, "loss": 0.582, "lr": 3.555600398458885e-05, "epoch": 2.382851445663011, "percentage": 29.76, "elapsed_time": "3:19:22", "remaining_time": "7:50:31"}
|
| 31 |
+
{"current_steps": 155, "total_steps": 504, "loss": 0.5911, "lr": 3.511086208741303e-05, "epoch": 2.4626121635094718, "percentage": 30.75, "elapsed_time": "3:25:48", "remaining_time": "7:43:23"}
|
| 32 |
+
{"current_steps": 160, "total_steps": 504, "loss": 0.5844, "lr": 3.464755294512325e-05, "epoch": 2.542372881355932, "percentage": 31.75, "elapsed_time": "3:32:32", "remaining_time": "7:36:58"}
|
| 33 |
+
{"current_steps": 165, "total_steps": 504, "loss": 0.5893, "lr": 3.4166633577610425e-05, "epoch": 2.622133599202393, "percentage": 32.74, "elapsed_time": "3:38:53", "remaining_time": "7:29:42"}
|
| 34 |
+
{"current_steps": 170, "total_steps": 504, "loss": 0.5912, "lr": 3.366868217690482e-05, "epoch": 2.701894317048853, "percentage": 33.73, "elapsed_time": "3:45:04", "remaining_time": "7:22:11"}
|
| 35 |
+
{"current_steps": 175, "total_steps": 504, "loss": 0.5813, "lr": 3.315429741203666e-05, "epoch": 2.781655034895314, "percentage": 34.72, "elapsed_time": "3:51:57", "remaining_time": "7:16:04"}
|
| 36 |
+
{"current_steps": 180, "total_steps": 504, "loss": 0.5943, "lr": 3.2624097709277855e-05, "epoch": 2.8614157527417747, "percentage": 35.71, "elapsed_time": "3:58:19", "remaining_time": "7:08:58"}
|
| 37 |
+
{"current_steps": 185, "total_steps": 504, "loss": 0.5924, "lr": 3.2078720508630427e-05, "epoch": 2.9411764705882355, "percentage": 36.71, "elapsed_time": "4:05:15", "remaining_time": "7:02:54"}
|
| 38 |
+
{"current_steps": 190, "total_steps": 504, "loss": 0.5568, "lr": 3.1518821497455326e-05, "epoch": 3.015952143569292, "percentage": 37.7, "elapsed_time": "4:11:34", "remaining_time": "6:55:45"}
|
| 39 |
+
{"current_steps": 195, "total_steps": 504, "loss": 0.3975, "lr": 3.094507382216312e-05, "epoch": 3.0957128614157527, "percentage": 38.69, "elapsed_time": "4:18:22", "remaining_time": "6:49:25"}
|
| 40 |
+
{"current_steps": 200, "total_steps": 504, "loss": 0.3864, "lr": 3.0358167278914387e-05, "epoch": 3.1754735792622135, "percentage": 39.68, "elapsed_time": "4:24:54", "remaining_time": "6:42:40"}
|
| 41 |
+
{"current_steps": 205, "total_steps": 504, "loss": 0.3815, "lr": 2.9758807484302566e-05, "epoch": 3.255234297108674, "percentage": 40.67, "elapsed_time": "4:31:28", "remaining_time": "6:35:57"}
|
| 42 |
+
{"current_steps": 210, "total_steps": 504, "loss": 0.3902, "lr": 2.9147715027016593e-05, "epoch": 3.3349950149551346, "percentage": 41.67, "elapsed_time": "4:38:48", "remaining_time": "6:30:20"}
|
| 43 |
+
{"current_steps": 215, "total_steps": 504, "loss": 0.3884, "lr": 2.8525624601503055e-05, "epoch": 3.4147557328015954, "percentage": 42.66, "elapsed_time": "4:45:36", "remaining_time": "6:23:55"}
|
| 44 |
+
{"current_steps": 220, "total_steps": 504, "loss": 0.4097, "lr": 2.789328412466953e-05, "epoch": 3.4945164506480557, "percentage": 43.65, "elapsed_time": "4:52:03", "remaining_time": "6:17:01"}
|
| 45 |
+
{"current_steps": 225, "total_steps": 504, "loss": 0.3813, "lr": 2.725145383669106e-05, "epoch": 3.5742771684945165, "percentage": 44.64, "elapsed_time": "4:58:35", "remaining_time": "6:10:14"}
|
| 46 |
+
{"current_steps": 230, "total_steps": 504, "loss": 0.3874, "lr": 2.6600905387000716e-05, "epoch": 3.6540378863409773, "percentage": 45.63, "elapsed_time": "5:05:07", "remaining_time": "6:03:29"}
|
| 47 |
+
{"current_steps": 235, "total_steps": 504, "loss": 0.3864, "lr": 2.594242090656335e-05, "epoch": 3.7337986041874376, "percentage": 46.63, "elapsed_time": "5:11:32", "remaining_time": "5:56:37"}
|
| 48 |
+
{"current_steps": 240, "total_steps": 504, "loss": 0.4047, "lr": 2.5276792067547672e-05, "epoch": 3.8135593220338984, "percentage": 47.62, "elapsed_time": "5:17:47", "remaining_time": "5:49:34"}
|
| 49 |
+
{"current_steps": 245, "total_steps": 504, "loss": 0.3849, "lr": 2.460481913152734e-05, "epoch": 3.8933200398803587, "percentage": 48.61, "elapsed_time": "5:24:33", "remaining_time": "5:43:05"}
|
| 50 |
+
{"current_steps": 250, "total_steps": 504, "loss": 0.3827, "lr": 2.392730998735529e-05, "epoch": 3.9730807577268195, "percentage": 49.6, "elapsed_time": "5:31:15", "remaining_time": "5:36:33"}
|
| 51 |
+
{"current_steps": 255, "total_steps": 504, "loss": 0.2996, "lr": 2.3245079179868054e-05, "epoch": 4.047856430707876, "percentage": 50.6, "elapsed_time": "5:37:30", "remaining_time": "5:29:33"}
|
| 52 |
+
{"current_steps": 260, "total_steps": 504, "loss": 0.2318, "lr": 2.2558946930587907e-05, "epoch": 4.127617148554337, "percentage": 51.59, "elapsed_time": "5:44:20", "remaining_time": "5:23:08"}
|
| 53 |
+
{"current_steps": 265, "total_steps": 504, "loss": 0.2264, "lr": 2.18697381516e-05, "epoch": 4.2073778664007975, "percentage": 52.58, "elapsed_time": "5:50:33", "remaining_time": "5:16:09"}
|
| 54 |
+
{"current_steps": 270, "total_steps": 504, "loss": 0.2249, "lr": 2.1178281453790358e-05, "epoch": 4.287138584247258, "percentage": 53.57, "elapsed_time": "5:57:04", "remaining_time": "5:09:27"}
|
| 55 |
+
{"current_steps": 275, "total_steps": 504, "loss": 0.2257, "lr": 2.0485408150636804e-05, "epoch": 4.366899302093719, "percentage": 54.56, "elapsed_time": "6:03:55", "remaining_time": "5:03:03"}
|
| 56 |
+
{"current_steps": 280, "total_steps": 504, "loss": 0.2258, "lr": 1.979195125875072e-05, "epoch": 4.44666001994018, "percentage": 55.56, "elapsed_time": "6:10:37", "remaining_time": "4:56:29"}
|
| 57 |
+
{"current_steps": 285, "total_steps": 504, "loss": 0.2277, "lr": 1.909874449637122e-05, "epoch": 4.526420737786641, "percentage": 56.55, "elapsed_time": "6:17:25", "remaining_time": "4:50:01"}
|
| 58 |
+
{"current_steps": 290, "total_steps": 504, "loss": 0.2263, "lr": 1.84066212810157e-05, "epoch": 4.6061814556331, "percentage": 57.54, "elapsed_time": "6:24:08", "remaining_time": "4:43:28"}
|
| 59 |
+
{"current_steps": 295, "total_steps": 504, "loss": 0.2309, "lr": 1.7716413727492035e-05, "epoch": 4.685942173479561, "percentage": 58.53, "elapsed_time": "6:30:04", "remaining_time": "4:36:21"}
|
| 60 |
+
{"current_steps": 300, "total_steps": 504, "loss": 0.2256, "lr": 1.7028951647476862e-05, "epoch": 4.765702891326022, "percentage": 59.52, "elapsed_time": "6:36:29", "remaining_time": "4:29:37"}
|
| 61 |
+
{"current_steps": 305, "total_steps": 504, "loss": 0.2366, "lr": 1.634506155186295e-05, "epoch": 4.845463609172483, "percentage": 60.52, "elapsed_time": "6:43:42", "remaining_time": "4:23:24"}
|
| 62 |
+
{"current_steps": 310, "total_steps": 504, "loss": 0.2177, "lr": 1.5665565657074874e-05, "epoch": 4.9252243270189435, "percentage": 61.51, "elapsed_time": "6:50:07", "remaining_time": "4:16:39"}
|
| 63 |
+
{"current_steps": 315, "total_steps": 504, "loss": 0.217, "lr": 1.4991280896547893e-05, "epoch": 5.0, "percentage": 62.5, "elapsed_time": "6:56:24", "remaining_time": "4:09:50"}
|
| 64 |
+
{"current_steps": 320, "total_steps": 504, "loss": 0.1192, "lr": 1.4323017938558245e-05, "epoch": 5.079760717846461, "percentage": 63.49, "elapsed_time": "7:03:01", "remaining_time": "4:03:14"}
|
| 65 |
+
{"current_steps": 325, "total_steps": 504, "loss": 0.1174, "lr": 1.3661580211585947e-05, "epoch": 5.1595214356929215, "percentage": 64.48, "elapsed_time": "7:09:56", "remaining_time": "3:56:48"}
|
| 66 |
+
{"current_steps": 330, "total_steps": 504, "loss": 0.1121, "lr": 1.3007762938381619e-05, "epoch": 5.239282153539381, "percentage": 65.48, "elapsed_time": "7:16:40", "remaining_time": "3:50:14"}
|
| 67 |
+
{"current_steps": 335, "total_steps": 504, "loss": 0.1191, "lr": 1.2362352179898855e-05, "epoch": 5.319042871385842, "percentage": 66.47, "elapsed_time": "7:23:20", "remaining_time": "3:43:39"}
|
| 68 |
+
{"current_steps": 340, "total_steps": 504, "loss": 0.1128, "lr": 1.1726123890241439e-05, "epoch": 5.398803589232303, "percentage": 67.46, "elapsed_time": "7:30:03", "remaining_time": "3:37:05"}
|
| 69 |
+
{"current_steps": 345, "total_steps": 504, "loss": 0.1144, "lr": 1.1099842983761712e-05, "epoch": 5.478564307078764, "percentage": 68.45, "elapsed_time": "7:36:28", "remaining_time": "3:30:22"}
|
| 70 |
+
{"current_steps": 350, "total_steps": 504, "loss": 0.1056, "lr": 1.0484262415431536e-05, "epoch": 5.5583250249252245, "percentage": 69.44, "elapsed_time": "7:43:09", "remaining_time": "3:23:47"}
|
| 71 |
+
{"current_steps": 355, "total_steps": 504, "loss": 0.1106, "lr": 9.880122275591752e-06, "epoch": 5.638085742771685, "percentage": 70.44, "elapsed_time": "7:49:47", "remaining_time": "3:17:10"}
|
| 72 |
+
{"current_steps": 360, "total_steps": 504, "loss": 0.1056, "lr": 9.288148900168122e-06, "epoch": 5.717846460618146, "percentage": 71.43, "elapsed_time": "7:56:12", "remaining_time": "3:10:29"}
|
| 73 |
+
{"current_steps": 365, "total_steps": 504, "loss": 0.112, "lr": 8.70905399742389e-06, "epoch": 5.797607178464606, "percentage": 72.42, "elapsed_time": "8:02:29", "remaining_time": "3:03:44"}
|
| 74 |
+
{"current_steps": 370, "total_steps": 504, "loss": 0.1055, "lr": 8.143533792298545e-06, "epoch": 5.877367896311067, "percentage": 73.41, "elapsed_time": "8:08:50", "remaining_time": "2:57:02"}
|
| 75 |
+
{"current_steps": 375, "total_steps": 504, "loss": 0.1054, "lr": 7.59226818936166e-06, "epoch": 5.9571286141575275, "percentage": 74.4, "elapsed_time": "8:15:36", "remaining_time": "2:50:29"}
|
| 76 |
+
{"current_steps": 380, "total_steps": 504, "loss": 0.0903, "lr": 7.055919955388122e-06, "epoch": 6.031904287138584, "percentage": 75.4, "elapsed_time": "8:21:46", "remaining_time": "2:43:44"}
|
| 77 |
+
{"current_steps": 385, "total_steps": 504, "loss": 0.056, "lr": 6.535133922537513e-06, "epoch": 6.111665004985045, "percentage": 76.39, "elapsed_time": "8:28:34", "remaining_time": "2:37:11"}
|
| 78 |
+
{"current_steps": 390, "total_steps": 504, "loss": 0.0553, "lr": 6.0305362130956504e-06, "epoch": 6.1914257228315055, "percentage": 77.38, "elapsed_time": "8:35:12", "remaining_time": "2:30:35"}
|
| 79 |
+
{"current_steps": 395, "total_steps": 504, "loss": 0.0538, "lr": 5.542733486710299e-06, "epoch": 6.271186440677966, "percentage": 78.37, "elapsed_time": "8:41:47", "remaining_time": "2:23:59"}
|
| 80 |
+
{"current_steps": 400, "total_steps": 504, "loss": 0.0533, "lr": 5.072312211026125e-06, "epoch": 6.350947158524427, "percentage": 79.37, "elapsed_time": "8:48:37", "remaining_time": "2:17:26"}
|
| 81 |
+
{"current_steps": 405, "total_steps": 504, "loss": 0.0579, "lr": 4.619837956595825e-06, "epoch": 6.430707876370887, "percentage": 80.36, "elapsed_time": "8:55:50", "remaining_time": "2:10:58"}
|
| 82 |
+
{"current_steps": 410, "total_steps": 504, "loss": 0.0516, "lr": 4.185854716914952e-06, "epoch": 6.510468594217348, "percentage": 81.35, "elapsed_time": "9:02:37", "remaining_time": "2:04:24"}
|
| 83 |
+
{"current_steps": 415, "total_steps": 504, "loss": 0.0522, "lr": 3.7708842543981928e-06, "epoch": 6.5902293120638085, "percentage": 82.34, "elapsed_time": "9:08:39", "remaining_time": "1:57:39"}
|
| 84 |
+
{"current_steps": 420, "total_steps": 504, "loss": 0.0554, "lr": 3.375425473083185e-06, "epoch": 6.669990029910269, "percentage": 83.33, "elapsed_time": "9:15:17", "remaining_time": "1:51:03"}
|
| 85 |
+
{"current_steps": 425, "total_steps": 504, "loss": 0.0536, "lr": 2.9999538188161705e-06, "epoch": 6.74975074775673, "percentage": 84.33, "elapsed_time": "9:21:31", "remaining_time": "1:44:22"}
|
| 86 |
+
{"current_steps": 430, "total_steps": 504, "loss": 0.0511, "lr": 2.6449207076405857e-06, "epoch": 6.829511465603191, "percentage": 85.32, "elapsed_time": "9:27:56", "remaining_time": "1:37:44"}
|
| 87 |
+
{"current_steps": 435, "total_steps": 504, "loss": 0.0531, "lr": 2.310752983075819e-06, "epoch": 6.909272183449651, "percentage": 86.31, "elapsed_time": "9:34:26", "remaining_time": "1:31:07"}
|
| 88 |
+
{"current_steps": 440, "total_steps": 504, "loss": 0.0538, "lr": 1.9978524029386026e-06, "epoch": 6.989032901296111, "percentage": 87.3, "elapsed_time": "9:40:56", "remaining_time": "1:24:30"}
|
| 89 |
+
{"current_steps": 445, "total_steps": 504, "loss": 0.0479, "lr": 1.7065951563241022e-06, "epoch": 7.063808574277169, "percentage": 88.29, "elapsed_time": "9:47:17", "remaining_time": "1:17:51"}
|
| 90 |
+
{"current_steps": 450, "total_steps": 504, "loss": 0.0451, "lr": 1.437331411327274e-06, "epoch": 7.14356929212363, "percentage": 89.29, "elapsed_time": "9:54:11", "remaining_time": "1:11:18"}
|
| 91 |
+
{"current_steps": 455, "total_steps": 504, "loss": 0.0373, "lr": 1.1903848940484241e-06, "epoch": 7.2233300099700894, "percentage": 90.28, "elapsed_time": "10:01:01", "remaining_time": "1:04:43"}
|
| 92 |
+
{"current_steps": 460, "total_steps": 504, "loss": 0.0389, "lr": 9.660524993889386e-07, "epoch": 7.30309072781655, "percentage": 91.27, "elapsed_time": "10:07:13", "remaining_time": "0:58:04"}
|
| 93 |
+
{"current_steps": 465, "total_steps": 504, "loss": 0.0345, "lr": 7.646039341052747e-07, "epoch": 7.382851445663011, "percentage": 92.26, "elapsed_time": "10:13:26", "remaining_time": "0:51:26"}
|
| 94 |
+
{"current_steps": 470, "total_steps": 504, "loss": 0.0335, "lr": 5.862813925502209e-07, "epoch": 7.462612163509472, "percentage": 93.25, "elapsed_time": "10:20:03", "remaining_time": "0:44:51"}
|
| 95 |
+
{"current_steps": 475, "total_steps": 504, "loss": 0.0356, "lr": 4.3129926549136057e-07, "epoch": 7.5423728813559325, "percentage": 94.25, "elapsed_time": "10:26:57", "remaining_time": "0:38:16"}
|
| 96 |
+
{"current_steps": 480, "total_steps": 504, "loss": 0.0352, "lr": 2.99843882356774e-07, "epoch": 7.622133599202392, "percentage": 95.24, "elapsed_time": "10:33:40", "remaining_time": "0:31:41"}
|
| 97 |
+
{"current_steps": 485, "total_steps": 504, "loss": 0.0366, "lr": 1.9207328721788653e-07, "epoch": 7.701894317048853, "percentage": 96.23, "elapsed_time": "10:40:30", "remaining_time": "0:25:05"}
|
| 98 |
+
{"current_steps": 490, "total_steps": 504, "loss": 0.0355, "lr": 1.0811704877875528e-07, "epoch": 7.781655034895314, "percentage": 97.22, "elapsed_time": "10:47:01", "remaining_time": "0:18:29"}
|
| 99 |
+
{"current_steps": 495, "total_steps": 504, "loss": 0.0345, "lr": 4.807610460030976e-08, "epoch": 7.861415752741775, "percentage": 98.21, "elapsed_time": "10:53:35", "remaining_time": "0:11:53"}
|
| 100 |
+
{"current_steps": 500, "total_steps": 504, "loss": 0.0367, "lr": 1.202263974674045e-08, "epoch": 7.9411764705882355, "percentage": 99.21, "elapsed_time": "10:59:55", "remaining_time": "0:05:16"}
|
| 101 |
+
{"current_steps": 504, "total_steps": 504, "epoch": 8.0, "percentage": 100.0, "elapsed_time": "11:05:03", "remaining_time": "0:00:00"}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,743 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 8.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 504,
|
| 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.07976071784646062,
|
| 14 |
+
"grad_norm": 8.951485022406759,
|
| 15 |
+
"learning_rate": 3.1372549019607846e-06,
|
| 16 |
+
"loss": 1.6286,
|
| 17 |
+
"step": 5
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.15952143569292124,
|
| 21 |
+
"grad_norm": 1.7911944426834843,
|
| 22 |
+
"learning_rate": 7.058823529411766e-06,
|
| 23 |
+
"loss": 1.4082,
|
| 24 |
+
"step": 10
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.23928215353938184,
|
| 28 |
+
"grad_norm": 1.188948888919745,
|
| 29 |
+
"learning_rate": 1.0980392156862747e-05,
|
| 30 |
+
"loss": 1.2277,
|
| 31 |
+
"step": 15
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.3190428713858425,
|
| 35 |
+
"grad_norm": 0.6895721187833729,
|
| 36 |
+
"learning_rate": 1.4901960784313726e-05,
|
| 37 |
+
"loss": 1.1183,
|
| 38 |
+
"step": 20
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.3988035892323031,
|
| 42 |
+
"grad_norm": 0.5800787932266839,
|
| 43 |
+
"learning_rate": 1.8823529411764708e-05,
|
| 44 |
+
"loss": 1.065,
|
| 45 |
+
"step": 25
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.4785643070787637,
|
| 49 |
+
"grad_norm": 0.5106042574703776,
|
| 50 |
+
"learning_rate": 2.274509803921569e-05,
|
| 51 |
+
"loss": 1.0376,
|
| 52 |
+
"step": 30
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.5583250249252243,
|
| 56 |
+
"grad_norm": 0.5130368281162043,
|
| 57 |
+
"learning_rate": 2.6666666666666667e-05,
|
| 58 |
+
"loss": 1.0193,
|
| 59 |
+
"step": 35
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.638085742771685,
|
| 63 |
+
"grad_norm": 0.5048169792373989,
|
| 64 |
+
"learning_rate": 3.0588235294117644e-05,
|
| 65 |
+
"loss": 1.0101,
|
| 66 |
+
"step": 40
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.7178464606181456,
|
| 70 |
+
"grad_norm": 0.49100483855991833,
|
| 71 |
+
"learning_rate": 3.450980392156863e-05,
|
| 72 |
+
"loss": 0.9855,
|
| 73 |
+
"step": 45
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.7976071784646062,
|
| 77 |
+
"grad_norm": 0.5082070499580861,
|
| 78 |
+
"learning_rate": 3.8431372549019614e-05,
|
| 79 |
+
"loss": 0.9472,
|
| 80 |
+
"step": 50
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.8773678963110668,
|
| 84 |
+
"grad_norm": 0.45791310359750687,
|
| 85 |
+
"learning_rate": 3.999567157212646e-05,
|
| 86 |
+
"loss": 0.9543,
|
| 87 |
+
"step": 55
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.9571286141575274,
|
| 91 |
+
"grad_norm": 0.45379188386242486,
|
| 92 |
+
"learning_rate": 3.996922685294587e-05,
|
| 93 |
+
"loss": 0.9476,
|
| 94 |
+
"step": 60
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 1.0319042871385842,
|
| 98 |
+
"grad_norm": 0.6240889944377968,
|
| 99 |
+
"learning_rate": 3.991877385171789e-05,
|
| 100 |
+
"loss": 0.897,
|
| 101 |
+
"step": 65
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 1.111665004985045,
|
| 105 |
+
"grad_norm": 0.5440466161961147,
|
| 106 |
+
"learning_rate": 3.9844373226268305e-05,
|
| 107 |
+
"loss": 0.8082,
|
| 108 |
+
"step": 70
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 1.1914257228315055,
|
| 112 |
+
"grad_norm": 0.5107070923561905,
|
| 113 |
+
"learning_rate": 3.97461144257888e-05,
|
| 114 |
+
"loss": 0.8094,
|
| 115 |
+
"step": 75
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 1.271186440677966,
|
| 119 |
+
"grad_norm": 0.4651202387725849,
|
| 120 |
+
"learning_rate": 3.9624115583295375e-05,
|
| 121 |
+
"loss": 0.7905,
|
| 122 |
+
"step": 80
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 1.3509471585244266,
|
| 126 |
+
"grad_norm": 0.4774453312775275,
|
| 127 |
+
"learning_rate": 3.9478523373601325e-05,
|
| 128 |
+
"loss": 0.8298,
|
| 129 |
+
"step": 85
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 1.4307078763708874,
|
| 133 |
+
"grad_norm": 0.4556406153190642,
|
| 134 |
+
"learning_rate": 3.930951283697534e-05,
|
| 135 |
+
"loss": 0.7867,
|
| 136 |
+
"step": 90
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 1.510468594217348,
|
| 140 |
+
"grad_norm": 0.4830106629278,
|
| 141 |
+
"learning_rate": 3.9117287168696956e-05,
|
| 142 |
+
"loss": 0.8198,
|
| 143 |
+
"step": 95
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 1.5902293120638085,
|
| 147 |
+
"grad_norm": 0.5022923875137891,
|
| 148 |
+
"learning_rate": 3.8902077474762155e-05,
|
| 149 |
+
"loss": 0.7834,
|
| 150 |
+
"step": 100
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 1.6699900299102692,
|
| 154 |
+
"grad_norm": 0.44123948565588444,
|
| 155 |
+
"learning_rate": 3.866414249403295e-05,
|
| 156 |
+
"loss": 0.8185,
|
| 157 |
+
"step": 105
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 1.7497507477567298,
|
| 161 |
+
"grad_norm": 0.4430352770475653,
|
| 162 |
+
"learning_rate": 3.840376828716499e-05,
|
| 163 |
+
"loss": 0.8124,
|
| 164 |
+
"step": 110
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 1.8295114656031903,
|
| 168 |
+
"grad_norm": 0.4924851273312515,
|
| 169 |
+
"learning_rate": 3.812126789268712e-05,
|
| 170 |
+
"loss": 0.8057,
|
| 171 |
+
"step": 115
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 1.909272183449651,
|
| 175 |
+
"grad_norm": 0.46057083006170463,
|
| 176 |
+
"learning_rate": 3.781698095064647e-05,
|
| 177 |
+
"loss": 0.8145,
|
| 178 |
+
"step": 120
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 1.9890329012961117,
|
| 182 |
+
"grad_norm": 0.4611804285939624,
|
| 183 |
+
"learning_rate": 3.7491273294271386e-05,
|
| 184 |
+
"loss": 0.7913,
|
| 185 |
+
"step": 125
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 2.0638085742771684,
|
| 189 |
+
"grad_norm": 0.6959783330087537,
|
| 190 |
+
"learning_rate": 3.7144536510143436e-05,
|
| 191 |
+
"loss": 0.6452,
|
| 192 |
+
"step": 130
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 2.143569292123629,
|
| 196 |
+
"grad_norm": 0.5166517982510289,
|
| 197 |
+
"learning_rate": 3.6777187467406857e-05,
|
| 198 |
+
"loss": 0.5773,
|
| 199 |
+
"step": 135
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 2.22333000997009,
|
| 203 |
+
"grad_norm": 0.571267388696848,
|
| 204 |
+
"learning_rate": 3.638966781658187e-05,
|
| 205 |
+
"loss": 0.5875,
|
| 206 |
+
"step": 140
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 2.30309072781655,
|
| 210 |
+
"grad_norm": 0.5939430686190696,
|
| 211 |
+
"learning_rate": 3.598244345858412e-05,
|
| 212 |
+
"loss": 0.5823,
|
| 213 |
+
"step": 145
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 2.382851445663011,
|
| 217 |
+
"grad_norm": 0.5778600291078902,
|
| 218 |
+
"learning_rate": 3.555600398458885e-05,
|
| 219 |
+
"loss": 0.582,
|
| 220 |
+
"step": 150
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 2.4626121635094718,
|
| 224 |
+
"grad_norm": 0.5529898865422133,
|
| 225 |
+
"learning_rate": 3.511086208741303e-05,
|
| 226 |
+
"loss": 0.5911,
|
| 227 |
+
"step": 155
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 2.542372881355932,
|
| 231 |
+
"grad_norm": 0.5081756947326533,
|
| 232 |
+
"learning_rate": 3.464755294512325e-05,
|
| 233 |
+
"loss": 0.5844,
|
| 234 |
+
"step": 160
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 2.622133599202393,
|
| 238 |
+
"grad_norm": 0.4848619192082748,
|
| 239 |
+
"learning_rate": 3.4166633577610425e-05,
|
| 240 |
+
"loss": 0.5893,
|
| 241 |
+
"step": 165
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 2.701894317048853,
|
| 245 |
+
"grad_norm": 0.5322251164040472,
|
| 246 |
+
"learning_rate": 3.366868217690482e-05,
|
| 247 |
+
"loss": 0.5912,
|
| 248 |
+
"step": 170
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 2.781655034895314,
|
| 252 |
+
"grad_norm": 0.48557366731521723,
|
| 253 |
+
"learning_rate": 3.315429741203666e-05,
|
| 254 |
+
"loss": 0.5813,
|
| 255 |
+
"step": 175
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 2.8614157527417747,
|
| 259 |
+
"grad_norm": 0.48422520390869345,
|
| 260 |
+
"learning_rate": 3.2624097709277855e-05,
|
| 261 |
+
"loss": 0.5943,
|
| 262 |
+
"step": 180
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 2.9411764705882355,
|
| 266 |
+
"grad_norm": 0.447236488520265,
|
| 267 |
+
"learning_rate": 3.2078720508630427e-05,
|
| 268 |
+
"loss": 0.5924,
|
| 269 |
+
"step": 185
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 3.015952143569292,
|
| 273 |
+
"grad_norm": 1.2170595347725597,
|
| 274 |
+
"learning_rate": 3.1518821497455326e-05,
|
| 275 |
+
"loss": 0.5568,
|
| 276 |
+
"step": 190
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 3.0957128614157527,
|
| 280 |
+
"grad_norm": 0.9128571202802258,
|
| 281 |
+
"learning_rate": 3.094507382216312e-05,
|
| 282 |
+
"loss": 0.3975,
|
| 283 |
+
"step": 195
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"epoch": 3.1754735792622135,
|
| 287 |
+
"grad_norm": 0.6352191401696539,
|
| 288 |
+
"learning_rate": 3.0358167278914387e-05,
|
| 289 |
+
"loss": 0.3864,
|
| 290 |
+
"step": 200
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 3.255234297108674,
|
| 294 |
+
"grad_norm": 0.5562946553628527,
|
| 295 |
+
"learning_rate": 2.9758807484302566e-05,
|
| 296 |
+
"loss": 0.3815,
|
| 297 |
+
"step": 205
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 3.3349950149551346,
|
| 301 |
+
"grad_norm": 0.5968079984333592,
|
| 302 |
+
"learning_rate": 2.9147715027016593e-05,
|
| 303 |
+
"loss": 0.3902,
|
| 304 |
+
"step": 210
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 3.4147557328015954,
|
| 308 |
+
"grad_norm": 0.5987175013101326,
|
| 309 |
+
"learning_rate": 2.8525624601503055e-05,
|
| 310 |
+
"loss": 0.3884,
|
| 311 |
+
"step": 215
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"epoch": 3.4945164506480557,
|
| 315 |
+
"grad_norm": 0.582626716390902,
|
| 316 |
+
"learning_rate": 2.789328412466953e-05,
|
| 317 |
+
"loss": 0.4097,
|
| 318 |
+
"step": 220
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 3.5742771684945165,
|
| 322 |
+
"grad_norm": 0.5696325846022255,
|
| 323 |
+
"learning_rate": 2.725145383669106e-05,
|
| 324 |
+
"loss": 0.3813,
|
| 325 |
+
"step": 225
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 3.6540378863409773,
|
| 329 |
+
"grad_norm": 0.6291341426490248,
|
| 330 |
+
"learning_rate": 2.6600905387000716e-05,
|
| 331 |
+
"loss": 0.3874,
|
| 332 |
+
"step": 230
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 3.7337986041874376,
|
| 336 |
+
"grad_norm": 0.5512196870000226,
|
| 337 |
+
"learning_rate": 2.594242090656335e-05,
|
| 338 |
+
"loss": 0.3864,
|
| 339 |
+
"step": 235
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 3.8135593220338984,
|
| 343 |
+
"grad_norm": 0.5172511656987956,
|
| 344 |
+
"learning_rate": 2.5276792067547672e-05,
|
| 345 |
+
"loss": 0.4047,
|
| 346 |
+
"step": 240
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 3.8933200398803587,
|
| 350 |
+
"grad_norm": 0.5434124466868848,
|
| 351 |
+
"learning_rate": 2.460481913152734e-05,
|
| 352 |
+
"loss": 0.3849,
|
| 353 |
+
"step": 245
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"epoch": 3.9730807577268195,
|
| 357 |
+
"grad_norm": 0.5364334555823091,
|
| 358 |
+
"learning_rate": 2.392730998735529e-05,
|
| 359 |
+
"loss": 0.3827,
|
| 360 |
+
"step": 250
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 4.047856430707876,
|
| 364 |
+
"grad_norm": 0.6202233480341806,
|
| 365 |
+
"learning_rate": 2.3245079179868054e-05,
|
| 366 |
+
"loss": 0.2996,
|
| 367 |
+
"step": 255
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 4.127617148554337,
|
| 371 |
+
"grad_norm": 0.675034415488875,
|
| 372 |
+
"learning_rate": 2.2558946930587907e-05,
|
| 373 |
+
"loss": 0.2318,
|
| 374 |
+
"step": 260
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 4.2073778664007975,
|
| 378 |
+
"grad_norm": 0.6378422283616842,
|
| 379 |
+
"learning_rate": 2.18697381516e-05,
|
| 380 |
+
"loss": 0.2264,
|
| 381 |
+
"step": 265
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 4.287138584247258,
|
| 385 |
+
"grad_norm": 0.5828333823927044,
|
| 386 |
+
"learning_rate": 2.1178281453790358e-05,
|
| 387 |
+
"loss": 0.2249,
|
| 388 |
+
"step": 270
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 4.366899302093719,
|
| 392 |
+
"grad_norm": 0.5645506561383866,
|
| 393 |
+
"learning_rate": 2.0485408150636804e-05,
|
| 394 |
+
"loss": 0.2257,
|
| 395 |
+
"step": 275
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 4.44666001994018,
|
| 399 |
+
"grad_norm": 0.5286311194195279,
|
| 400 |
+
"learning_rate": 1.979195125875072e-05,
|
| 401 |
+
"loss": 0.2258,
|
| 402 |
+
"step": 280
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 4.526420737786641,
|
| 406 |
+
"grad_norm": 0.5354213636574895,
|
| 407 |
+
"learning_rate": 1.909874449637122e-05,
|
| 408 |
+
"loss": 0.2277,
|
| 409 |
+
"step": 285
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 4.6061814556331,
|
| 413 |
+
"grad_norm": 0.5132597119160957,
|
| 414 |
+
"learning_rate": 1.84066212810157e-05,
|
| 415 |
+
"loss": 0.2263,
|
| 416 |
+
"step": 290
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 4.685942173479561,
|
| 420 |
+
"grad_norm": 0.4992674146867158,
|
| 421 |
+
"learning_rate": 1.7716413727492035e-05,
|
| 422 |
+
"loss": 0.2309,
|
| 423 |
+
"step": 295
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 4.765702891326022,
|
| 427 |
+
"grad_norm": 0.5871955206074188,
|
| 428 |
+
"learning_rate": 1.7028951647476862e-05,
|
| 429 |
+
"loss": 0.2256,
|
| 430 |
+
"step": 300
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 4.845463609172483,
|
| 434 |
+
"grad_norm": 0.5483461557535811,
|
| 435 |
+
"learning_rate": 1.634506155186295e-05,
|
| 436 |
+
"loss": 0.2366,
|
| 437 |
+
"step": 305
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 4.9252243270189435,
|
| 441 |
+
"grad_norm": 0.5615291707528146,
|
| 442 |
+
"learning_rate": 1.5665565657074874e-05,
|
| 443 |
+
"loss": 0.2177,
|
| 444 |
+
"step": 310
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 5.0,
|
| 448 |
+
"grad_norm": 0.5560610126898546,
|
| 449 |
+
"learning_rate": 1.4991280896547893e-05,
|
| 450 |
+
"loss": 0.217,
|
| 451 |
+
"step": 315
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 5.079760717846461,
|
| 455 |
+
"grad_norm": 0.63285574638701,
|
| 456 |
+
"learning_rate": 1.4323017938558245e-05,
|
| 457 |
+
"loss": 0.1192,
|
| 458 |
+
"step": 320
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 5.1595214356929215,
|
| 462 |
+
"grad_norm": 0.51986072558017,
|
| 463 |
+
"learning_rate": 1.3661580211585947e-05,
|
| 464 |
+
"loss": 0.1174,
|
| 465 |
+
"step": 325
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 5.239282153539381,
|
| 469 |
+
"grad_norm": 0.4103698636395131,
|
| 470 |
+
"learning_rate": 1.3007762938381619e-05,
|
| 471 |
+
"loss": 0.1121,
|
| 472 |
+
"step": 330
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 5.319042871385842,
|
| 476 |
+
"grad_norm": 0.47784813487742994,
|
| 477 |
+
"learning_rate": 1.2362352179898855e-05,
|
| 478 |
+
"loss": 0.1191,
|
| 479 |
+
"step": 335
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 5.398803589232303,
|
| 483 |
+
"grad_norm": 0.424232714663781,
|
| 484 |
+
"learning_rate": 1.1726123890241439e-05,
|
| 485 |
+
"loss": 0.1128,
|
| 486 |
+
"step": 340
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 5.478564307078764,
|
| 490 |
+
"grad_norm": 0.48412806315859497,
|
| 491 |
+
"learning_rate": 1.1099842983761712e-05,
|
| 492 |
+
"loss": 0.1144,
|
| 493 |
+
"step": 345
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"epoch": 5.5583250249252245,
|
| 497 |
+
"grad_norm": 0.4266976645996111,
|
| 498 |
+
"learning_rate": 1.0484262415431536e-05,
|
| 499 |
+
"loss": 0.1056,
|
| 500 |
+
"step": 350
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 5.638085742771685,
|
| 504 |
+
"grad_norm": 0.3812408369839083,
|
| 505 |
+
"learning_rate": 9.880122275591752e-06,
|
| 506 |
+
"loss": 0.1106,
|
| 507 |
+
"step": 355
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 5.717846460618146,
|
| 511 |
+
"grad_norm": 0.422453041096817,
|
| 512 |
+
"learning_rate": 9.288148900168122e-06,
|
| 513 |
+
"loss": 0.1056,
|
| 514 |
+
"step": 360
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 5.797607178464606,
|
| 518 |
+
"grad_norm": 0.4322042305854276,
|
| 519 |
+
"learning_rate": 8.70905399742389e-06,
|
| 520 |
+
"loss": 0.112,
|
| 521 |
+
"step": 365
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"epoch": 5.877367896311067,
|
| 525 |
+
"grad_norm": 0.41261441396205645,
|
| 526 |
+
"learning_rate": 8.143533792298545e-06,
|
| 527 |
+
"loss": 0.1055,
|
| 528 |
+
"step": 370
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 5.9571286141575275,
|
| 532 |
+
"grad_norm": 0.4218939861247821,
|
| 533 |
+
"learning_rate": 7.59226818936166e-06,
|
| 534 |
+
"loss": 0.1054,
|
| 535 |
+
"step": 375
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 6.031904287138584,
|
| 539 |
+
"grad_norm": 0.4601781395305167,
|
| 540 |
+
"learning_rate": 7.055919955388122e-06,
|
| 541 |
+
"loss": 0.0903,
|
| 542 |
+
"step": 380
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 6.111665004985045,
|
| 546 |
+
"grad_norm": 0.42572965163147103,
|
| 547 |
+
"learning_rate": 6.535133922537513e-06,
|
| 548 |
+
"loss": 0.056,
|
| 549 |
+
"step": 385
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 6.1914257228315055,
|
| 553 |
+
"grad_norm": 0.39199127923177135,
|
| 554 |
+
"learning_rate": 6.0305362130956504e-06,
|
| 555 |
+
"loss": 0.0553,
|
| 556 |
+
"step": 390
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 6.271186440677966,
|
| 560 |
+
"grad_norm": 0.30614111878955885,
|
| 561 |
+
"learning_rate": 5.542733486710299e-06,
|
| 562 |
+
"loss": 0.0538,
|
| 563 |
+
"step": 395
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 6.350947158524427,
|
| 567 |
+
"grad_norm": 0.2838511806116735,
|
| 568 |
+
"learning_rate": 5.072312211026125e-06,
|
| 569 |
+
"loss": 0.0533,
|
| 570 |
+
"step": 400
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 6.430707876370887,
|
| 574 |
+
"grad_norm": 0.3527112901949325,
|
| 575 |
+
"learning_rate": 4.619837956595825e-06,
|
| 576 |
+
"loss": 0.0579,
|
| 577 |
+
"step": 405
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 6.510468594217348,
|
| 581 |
+
"grad_norm": 0.2802030569387254,
|
| 582 |
+
"learning_rate": 4.185854716914952e-06,
|
| 583 |
+
"loss": 0.0516,
|
| 584 |
+
"step": 410
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 6.5902293120638085,
|
| 588 |
+
"grad_norm": 0.28919103613267777,
|
| 589 |
+
"learning_rate": 3.7708842543981928e-06,
|
| 590 |
+
"loss": 0.0522,
|
| 591 |
+
"step": 415
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 6.669990029910269,
|
| 595 |
+
"grad_norm": 0.28238569460732055,
|
| 596 |
+
"learning_rate": 3.375425473083185e-06,
|
| 597 |
+
"loss": 0.0554,
|
| 598 |
+
"step": 420
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 6.74975074775673,
|
| 602 |
+
"grad_norm": 0.35381160740706563,
|
| 603 |
+
"learning_rate": 2.9999538188161705e-06,
|
| 604 |
+
"loss": 0.0536,
|
| 605 |
+
"step": 425
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 6.829511465603191,
|
| 609 |
+
"grad_norm": 0.27756519386816786,
|
| 610 |
+
"learning_rate": 2.6449207076405857e-06,
|
| 611 |
+
"loss": 0.0511,
|
| 612 |
+
"step": 430
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 6.909272183449651,
|
| 616 |
+
"grad_norm": 0.3349698709554607,
|
| 617 |
+
"learning_rate": 2.310752983075819e-06,
|
| 618 |
+
"loss": 0.0531,
|
| 619 |
+
"step": 435
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 6.989032901296111,
|
| 623 |
+
"grad_norm": 0.3120620614394932,
|
| 624 |
+
"learning_rate": 1.9978524029386026e-06,
|
| 625 |
+
"loss": 0.0538,
|
| 626 |
+
"step": 440
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 7.063808574277169,
|
| 630 |
+
"grad_norm": 0.2631675945808927,
|
| 631 |
+
"learning_rate": 1.7065951563241022e-06,
|
| 632 |
+
"loss": 0.0479,
|
| 633 |
+
"step": 445
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 7.14356929212363,
|
| 637 |
+
"grad_norm": 0.26021291176981515,
|
| 638 |
+
"learning_rate": 1.437331411327274e-06,
|
| 639 |
+
"loss": 0.0451,
|
| 640 |
+
"step": 450
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 7.2233300099700894,
|
| 644 |
+
"grad_norm": 0.2211041691097816,
|
| 645 |
+
"learning_rate": 1.1903848940484241e-06,
|
| 646 |
+
"loss": 0.0373,
|
| 647 |
+
"step": 455
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"epoch": 7.30309072781655,
|
| 651 |
+
"grad_norm": 0.30062035959934313,
|
| 652 |
+
"learning_rate": 9.660524993889386e-07,
|
| 653 |
+
"loss": 0.0389,
|
| 654 |
+
"step": 460
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 7.382851445663011,
|
| 658 |
+
"grad_norm": 0.24836493024466927,
|
| 659 |
+
"learning_rate": 7.646039341052747e-07,
|
| 660 |
+
"loss": 0.0345,
|
| 661 |
+
"step": 465
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"epoch": 7.462612163509472,
|
| 665 |
+
"grad_norm": 0.2128207343872171,
|
| 666 |
+
"learning_rate": 5.862813925502209e-07,
|
| 667 |
+
"loss": 0.0335,
|
| 668 |
+
"step": 470
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 7.5423728813559325,
|
| 672 |
+
"grad_norm": 0.22526753960255325,
|
| 673 |
+
"learning_rate": 4.3129926549136057e-07,
|
| 674 |
+
"loss": 0.0356,
|
| 675 |
+
"step": 475
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 7.622133599202392,
|
| 679 |
+
"grad_norm": 0.21640137907033566,
|
| 680 |
+
"learning_rate": 2.99843882356774e-07,
|
| 681 |
+
"loss": 0.0352,
|
| 682 |
+
"step": 480
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 7.701894317048853,
|
| 686 |
+
"grad_norm": 0.22957439567149518,
|
| 687 |
+
"learning_rate": 1.9207328721788653e-07,
|
| 688 |
+
"loss": 0.0366,
|
| 689 |
+
"step": 485
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 7.781655034895314,
|
| 693 |
+
"grad_norm": 0.20281851671161966,
|
| 694 |
+
"learning_rate": 1.0811704877875528e-07,
|
| 695 |
+
"loss": 0.0355,
|
| 696 |
+
"step": 490
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 7.861415752741775,
|
| 700 |
+
"grad_norm": 0.2399792418034644,
|
| 701 |
+
"learning_rate": 4.807610460030976e-08,
|
| 702 |
+
"loss": 0.0345,
|
| 703 |
+
"step": 495
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 7.9411764705882355,
|
| 707 |
+
"grad_norm": 0.2284150095647677,
|
| 708 |
+
"learning_rate": 1.202263974674045e-08,
|
| 709 |
+
"loss": 0.0367,
|
| 710 |
+
"step": 500
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 8.0,
|
| 714 |
+
"step": 504,
|
| 715 |
+
"total_flos": 718744629805056.0,
|
| 716 |
+
"train_loss": 0.414989875806939,
|
| 717 |
+
"train_runtime": 39904.848,
|
| 718 |
+
"train_samples_per_second": 1.608,
|
| 719 |
+
"train_steps_per_second": 0.013
|
| 720 |
+
}
|
| 721 |
+
],
|
| 722 |
+
"logging_steps": 5,
|
| 723 |
+
"max_steps": 504,
|
| 724 |
+
"num_input_tokens_seen": 0,
|
| 725 |
+
"num_train_epochs": 8,
|
| 726 |
+
"save_steps": 500,
|
| 727 |
+
"stateful_callbacks": {
|
| 728 |
+
"TrainerControl": {
|
| 729 |
+
"args": {
|
| 730 |
+
"should_epoch_stop": false,
|
| 731 |
+
"should_evaluate": false,
|
| 732 |
+
"should_log": false,
|
| 733 |
+
"should_save": false,
|
| 734 |
+
"should_training_stop": false
|
| 735 |
+
},
|
| 736 |
+
"attributes": {}
|
| 737 |
+
}
|
| 738 |
+
},
|
| 739 |
+
"total_flos": 718744629805056.0,
|
| 740 |
+
"train_batch_size": 1,
|
| 741 |
+
"trial_name": null,
|
| 742 |
+
"trial_params": null
|
| 743 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4950f8bf5c01fb34f2e097070e76b8df21cb908d9ac2a6d1e9b4d4ffeb1f50b
|
| 3 |
+
size 7953
|
training_loss.png
ADDED
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|