Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +5 -0
- README.md +55 -0
- added_tokens.json +24 -0
- checkpoint-100/added_tokens.json +24 -0
- checkpoint-100/config.json +37 -0
- checkpoint-100/merges.txt +0 -0
- checkpoint-100/model-00001-of-00003.safetensors +3 -0
- checkpoint-100/model-00002-of-00003.safetensors +3 -0
- checkpoint-100/model-00003-of-00003.safetensors +3 -0
- checkpoint-100/model.safetensors.index.json +442 -0
- checkpoint-100/special_tokens_map.json +31 -0
- checkpoint-100/tokenizer.json +3 -0
- checkpoint-100/tokenizer_config.json +208 -0
- checkpoint-100/trainer_state.json +1333 -0
- checkpoint-100/training_args.bin +3 -0
- checkpoint-100/vocab.json +0 -0
- checkpoint-200/added_tokens.json +24 -0
- checkpoint-200/config.json +37 -0
- checkpoint-200/merges.txt +0 -0
- checkpoint-200/model-00001-of-00003.safetensors +3 -0
- checkpoint-200/model-00002-of-00003.safetensors +3 -0
- checkpoint-200/model-00003-of-00003.safetensors +3 -0
- checkpoint-200/model.safetensors.index.json +442 -0
- checkpoint-200/special_tokens_map.json +31 -0
- checkpoint-200/tokenizer.json +3 -0
- checkpoint-200/tokenizer_config.json +208 -0
- checkpoint-200/trainer_state.json +2633 -0
- checkpoint-200/training_args.bin +3 -0
- checkpoint-200/vocab.json +0 -0
- checkpoint-300/added_tokens.json +24 -0
- checkpoint-300/config.json +37 -0
- checkpoint-300/merges.txt +0 -0
- checkpoint-300/model-00001-of-00003.safetensors +3 -0
- checkpoint-300/model-00002-of-00003.safetensors +3 -0
- checkpoint-300/model-00003-of-00003.safetensors +3 -0
- checkpoint-300/model.safetensors.index.json +442 -0
- checkpoint-300/special_tokens_map.json +31 -0
- checkpoint-300/tokenizer.json +3 -0
- checkpoint-300/tokenizer_config.json +208 -0
- checkpoint-300/trainer_state.json +3933 -0
- checkpoint-300/training_args.bin +3 -0
- checkpoint-300/vocab.json +0 -0
- checkpoint-400/added_tokens.json +24 -0
- checkpoint-400/config.json +37 -0
- checkpoint-400/merges.txt +0 -0
- checkpoint-400/model-00001-of-00003.safetensors +3 -0
- checkpoint-400/model-00002-of-00003.safetensors +3 -0
- checkpoint-400/model-00003-of-00003.safetensors +3 -0
- checkpoint-400/model.safetensors.index.json +442 -0
- checkpoint-400/special_tokens_map.json +31 -0
.gitattributes
CHANGED
@@ -33,3 +33,8 @@ 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 |
+
checkpoint-400/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
37 |
+
checkpoint-200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
38 |
+
checkpoint-100/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
39 |
+
checkpoint-300/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
40 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: tlrm/Q25-3B-UC
|
3 |
+
library_name: transformers
|
4 |
+
tags:
|
5 |
+
- generated_from_trainer
|
6 |
+
licence: license
|
7 |
+
---
|
8 |
+
|
9 |
+
# Model Card for None
|
10 |
+
|
11 |
+
This model is a fine-tuned version of [tlrm/Q25-3B-UC](https://huggingface.co/tlrm/Q25-3B-UC).
|
12 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
13 |
+
|
14 |
+
## Quick start
|
15 |
+
|
16 |
+
```python
|
17 |
+
from transformers import pipeline
|
18 |
+
|
19 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
20 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
21 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
22 |
+
print(output["generated_text"])
|
23 |
+
```
|
24 |
+
|
25 |
+
## Training procedure
|
26 |
+
|
27 |
+
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/jiwooya1000/RMVar-Submission/runs/9vzrvskt)
|
28 |
+
|
29 |
+
|
30 |
+
This model was trained with Reward.
|
31 |
+
|
32 |
+
### Framework versions
|
33 |
+
|
34 |
+
- TRL: 0.13.0
|
35 |
+
- Transformers: 4.48.0
|
36 |
+
- Pytorch: 2.5.1
|
37 |
+
- Datasets: 3.2.0
|
38 |
+
- Tokenizers: 0.21.0
|
39 |
+
|
40 |
+
## Citations
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
Cite TRL as:
|
45 |
+
|
46 |
+
```bibtex
|
47 |
+
@misc{vonwerra2022trl,
|
48 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
49 |
+
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
|
50 |
+
year = 2020,
|
51 |
+
journal = {GitHub repository},
|
52 |
+
publisher = {GitHub},
|
53 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
54 |
+
}
|
55 |
+
```
|
added_tokens.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</tool_call>": 151658,
|
3 |
+
"<tool_call>": 151657,
|
4 |
+
"<|box_end|>": 151649,
|
5 |
+
"<|box_start|>": 151648,
|
6 |
+
"<|endoftext|>": 151643,
|
7 |
+
"<|file_sep|>": 151664,
|
8 |
+
"<|fim_middle|>": 151660,
|
9 |
+
"<|fim_pad|>": 151662,
|
10 |
+
"<|fim_prefix|>": 151659,
|
11 |
+
"<|fim_suffix|>": 151661,
|
12 |
+
"<|im_end|>": 151645,
|
13 |
+
"<|im_start|>": 151644,
|
14 |
+
"<|image_pad|>": 151655,
|
15 |
+
"<|object_ref_end|>": 151647,
|
16 |
+
"<|object_ref_start|>": 151646,
|
17 |
+
"<|quad_end|>": 151651,
|
18 |
+
"<|quad_start|>": 151650,
|
19 |
+
"<|repo_name|>": 151663,
|
20 |
+
"<|video_pad|>": 151656,
|
21 |
+
"<|vision_end|>": 151653,
|
22 |
+
"<|vision_pad|>": 151654,
|
23 |
+
"<|vision_start|>": 151652
|
24 |
+
}
|
checkpoint-100/added_tokens.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</tool_call>": 151658,
|
3 |
+
"<tool_call>": 151657,
|
4 |
+
"<|box_end|>": 151649,
|
5 |
+
"<|box_start|>": 151648,
|
6 |
+
"<|endoftext|>": 151643,
|
7 |
+
"<|file_sep|>": 151664,
|
8 |
+
"<|fim_middle|>": 151660,
|
9 |
+
"<|fim_pad|>": 151662,
|
10 |
+
"<|fim_prefix|>": 151659,
|
11 |
+
"<|fim_suffix|>": 151661,
|
12 |
+
"<|im_end|>": 151645,
|
13 |
+
"<|im_start|>": 151644,
|
14 |
+
"<|image_pad|>": 151655,
|
15 |
+
"<|object_ref_end|>": 151647,
|
16 |
+
"<|object_ref_start|>": 151646,
|
17 |
+
"<|quad_end|>": 151651,
|
18 |
+
"<|quad_start|>": 151650,
|
19 |
+
"<|repo_name|>": 151663,
|
20 |
+
"<|video_pad|>": 151656,
|
21 |
+
"<|vision_end|>": 151653,
|
22 |
+
"<|vision_pad|>": 151654,
|
23 |
+
"<|vision_start|>": 151652
|
24 |
+
}
|
checkpoint-100/config.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "tlrm/Q25-3B-UC",
|
3 |
+
"architectures": [
|
4 |
+
"Qwen2ForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 151643,
|
8 |
+
"eos_token_id": 151645,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 2048,
|
11 |
+
"id2label": {
|
12 |
+
"0": "LABEL_0"
|
13 |
+
},
|
14 |
+
"initializer_range": 0.02,
|
15 |
+
"intermediate_size": 11008,
|
16 |
+
"label2id": {
|
17 |
+
"LABEL_0": 0
|
18 |
+
},
|
19 |
+
"max_position_embeddings": 32768,
|
20 |
+
"max_window_layers": 36,
|
21 |
+
"model_type": "qwen2",
|
22 |
+
"num_attention_heads": 16,
|
23 |
+
"num_hidden_layers": 36,
|
24 |
+
"num_key_value_heads": 2,
|
25 |
+
"pad_token_id": 151643,
|
26 |
+
"rms_norm_eps": 1e-06,
|
27 |
+
"rope_scaling": null,
|
28 |
+
"rope_theta": 1000000.0,
|
29 |
+
"sliding_window": null,
|
30 |
+
"tie_word_embeddings": true,
|
31 |
+
"torch_dtype": "float32",
|
32 |
+
"transformers_version": "4.48.0",
|
33 |
+
"use_cache": false,
|
34 |
+
"use_mrope": false,
|
35 |
+
"use_sliding_window": false,
|
36 |
+
"vocab_size": 151936
|
37 |
+
}
|
checkpoint-100/merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-100/model-00001-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a173995b04ffeb688b4932f7acb7e83dfa7624e90870949754c622f7b3e94c9c
|
3 |
+
size 4982131536
|
checkpoint-100/model-00002-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ea2dca12701f47ce8dbe2a4a53a043ea5789632313cd0a14debf3ab31e0e7d77
|
3 |
+
size 4932949336
|
checkpoint-100/model-00003-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ff5aa3a58f2ebd67d197b23500706952eb630f8153f3f5ac5c7b73e5aa094de0
|
3 |
+
size 2428731440
|
checkpoint-100/model.safetensors.index.json
ADDED
@@ -0,0 +1,442 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 12343762944
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
7 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
8 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
9 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
10 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
12 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
15 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
16 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
17 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
18 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
19 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
20 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
21 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
22 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
23 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
24 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
25 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
26 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
27 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
28 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
29 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
30 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
31 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
32 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
33 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
34 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
35 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
36 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
37 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
38 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
39 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
40 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
41 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
42 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
43 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
44 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
45 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
46 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
47 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
48 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
49 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
50 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
51 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
52 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
53 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
54 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
55 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
56 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
57 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
58 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
59 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
60 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
61 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
62 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
63 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
64 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
65 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
66 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
67 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
68 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
69 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
70 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
71 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
72 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
73 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
74 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
75 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
76 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
77 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
78 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
79 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
80 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
81 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
82 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
83 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
84 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
85 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
86 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
87 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
88 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
89 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
90 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
91 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
92 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
93 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
94 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
95 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
96 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
97 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
98 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
99 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
100 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
101 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
102 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
103 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
104 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
105 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
106 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
107 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
108 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
109 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
110 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
111 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
112 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
113 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
114 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
115 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
116 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
117 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
118 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
119 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
120 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
121 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
122 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
123 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
124 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
125 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
126 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
127 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
128 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
129 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
130 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
131 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
132 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
133 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
134 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
135 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
136 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
137 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
138 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
139 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
140 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
141 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
142 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
143 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
144 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
145 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
146 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
147 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
148 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
149 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
150 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
151 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
152 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
153 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
154 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
155 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
156 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
157 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
158 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
159 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
160 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
161 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
162 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
163 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
164 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
165 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
166 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
167 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
168 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
169 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
170 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
171 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
172 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
173 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
174 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
175 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
176 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
177 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
178 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
179 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
180 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
181 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
182 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
183 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
184 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
185 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
186 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
187 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
188 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
189 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
190 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
191 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
192 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
193 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
194 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
195 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
196 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
197 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
198 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
199 |
+
"model.layers.23.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
200 |
+
"model.layers.23.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
201 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
202 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
203 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
204 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
205 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
206 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
207 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
208 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
209 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
210 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
211 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
212 |
+
"model.layers.24.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
213 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
214 |
+
"model.layers.24.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
215 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
216 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
217 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
218 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
219 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
220 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
221 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
222 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
223 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
224 |
+
"model.layers.25.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
225 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
226 |
+
"model.layers.25.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
227 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
228 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
229 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
230 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
231 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
232 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
233 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
234 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
235 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
236 |
+
"model.layers.26.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
237 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
238 |
+
"model.layers.26.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
239 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
240 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
241 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
242 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
243 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
244 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
245 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
246 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
247 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
248 |
+
"model.layers.27.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
249 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
250 |
+
"model.layers.27.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
251 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
252 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
253 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
254 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
255 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
256 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
257 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
258 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
259 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
260 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
261 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
262 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
263 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
264 |
+
"model.layers.28.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
265 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
266 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
267 |
+
"model.layers.28.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
268 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
269 |
+
"model.layers.28.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
270 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
271 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
272 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
273 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
274 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
275 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
276 |
+
"model.layers.29.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
277 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
278 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
279 |
+
"model.layers.29.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
280 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
281 |
+
"model.layers.29.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
282 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
283 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
284 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
285 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
286 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
287 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
288 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
289 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
290 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
291 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
292 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
293 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
294 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
295 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
296 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
297 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
298 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
299 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
300 |
+
"model.layers.30.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
301 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
302 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
303 |
+
"model.layers.30.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
304 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
305 |
+
"model.layers.30.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
306 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
307 |
+
"model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
308 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
309 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
310 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
311 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
312 |
+
"model.layers.31.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
313 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
314 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
315 |
+
"model.layers.31.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
316 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
317 |
+
"model.layers.31.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
318 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
319 |
+
"model.layers.32.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
320 |
+
"model.layers.32.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
321 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
322 |
+
"model.layers.32.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
323 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
324 |
+
"model.layers.32.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
325 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
326 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
327 |
+
"model.layers.32.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
328 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
329 |
+
"model.layers.32.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
330 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
331 |
+
"model.layers.33.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
332 |
+
"model.layers.33.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
333 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
334 |
+
"model.layers.33.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
335 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
336 |
+
"model.layers.33.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
337 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
338 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
339 |
+
"model.layers.33.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
340 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
341 |
+
"model.layers.33.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
342 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
343 |
+
"model.layers.34.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
344 |
+
"model.layers.34.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
345 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
346 |
+
"model.layers.34.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
347 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
348 |
+
"model.layers.34.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
349 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
350 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
351 |
+
"model.layers.34.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
352 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
353 |
+
"model.layers.34.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
354 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
355 |
+
"model.layers.35.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
356 |
+
"model.layers.35.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
357 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
358 |
+
"model.layers.35.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
359 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
360 |
+
"model.layers.35.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
361 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
362 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
363 |
+
"model.layers.35.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
364 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
365 |
+
"model.layers.35.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
366 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
367 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
368 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
369 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
370 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
371 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
372 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
373 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
374 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
375 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
376 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
377 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
378 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
379 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
380 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
381 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
382 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
383 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
384 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
385 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
386 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
387 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
388 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
389 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
390 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
391 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
392 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
393 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
394 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
395 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
396 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
397 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
398 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
399 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
400 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
401 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
402 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
403 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
404 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
405 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
406 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
407 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
408 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
409 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
410 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
411 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
412 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
413 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
414 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
415 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
416 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
417 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
418 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
419 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
420 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
421 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
422 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
423 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
424 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
425 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
426 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
427 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
428 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
429 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
430 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
431 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
432 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
433 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
434 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
435 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
436 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
437 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
438 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
439 |
+
"model.norm.weight": "model-00003-of-00003.safetensors",
|
440 |
+
"score.weight": "model-00003-of-00003.safetensors"
|
441 |
+
}
|
442 |
+
}
|
checkpoint-100/special_tokens_map.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|im_start|>",
|
4 |
+
"<|im_end|>",
|
5 |
+
"<|object_ref_start|>",
|
6 |
+
"<|object_ref_end|>",
|
7 |
+
"<|box_start|>",
|
8 |
+
"<|box_end|>",
|
9 |
+
"<|quad_start|>",
|
10 |
+
"<|quad_end|>",
|
11 |
+
"<|vision_start|>",
|
12 |
+
"<|vision_end|>",
|
13 |
+
"<|vision_pad|>",
|
14 |
+
"<|image_pad|>",
|
15 |
+
"<|video_pad|>"
|
16 |
+
],
|
17 |
+
"eos_token": {
|
18 |
+
"content": "<|im_end|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
"pad_token": {
|
25 |
+
"content": "<|endoftext|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
}
|
31 |
+
}
|
checkpoint-100/tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
3 |
+
size 11421896
|
checkpoint-100/tokenizer_config.json
ADDED
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": false,
|
3 |
+
"add_prefix_space": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"151643": {
|
6 |
+
"content": "<|endoftext|>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"151644": {
|
14 |
+
"content": "<|im_start|>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"151645": {
|
22 |
+
"content": "<|im_end|>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
},
|
29 |
+
"151646": {
|
30 |
+
"content": "<|object_ref_start|>",
|
31 |
+
"lstrip": false,
|
32 |
+
"normalized": false,
|
33 |
+
"rstrip": false,
|
34 |
+
"single_word": false,
|
35 |
+
"special": true
|
36 |
+
},
|
37 |
+
"151647": {
|
38 |
+
"content": "<|object_ref_end|>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false,
|
43 |
+
"special": true
|
44 |
+
},
|
45 |
+
"151648": {
|
46 |
+
"content": "<|box_start|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"rstrip": false,
|
50 |
+
"single_word": false,
|
51 |
+
"special": true
|
52 |
+
},
|
53 |
+
"151649": {
|
54 |
+
"content": "<|box_end|>",
|
55 |
+
"lstrip": false,
|
56 |
+
"normalized": false,
|
57 |
+
"rstrip": false,
|
58 |
+
"single_word": false,
|
59 |
+
"special": true
|
60 |
+
},
|
61 |
+
"151650": {
|
62 |
+
"content": "<|quad_start|>",
|
63 |
+
"lstrip": false,
|
64 |
+
"normalized": false,
|
65 |
+
"rstrip": false,
|
66 |
+
"single_word": false,
|
67 |
+
"special": true
|
68 |
+
},
|
69 |
+
"151651": {
|
70 |
+
"content": "<|quad_end|>",
|
71 |
+
"lstrip": false,
|
72 |
+
"normalized": false,
|
73 |
+
"rstrip": false,
|
74 |
+
"single_word": false,
|
75 |
+
"special": true
|
76 |
+
},
|
77 |
+
"151652": {
|
78 |
+
"content": "<|vision_start|>",
|
79 |
+
"lstrip": false,
|
80 |
+
"normalized": false,
|
81 |
+
"rstrip": false,
|
82 |
+
"single_word": false,
|
83 |
+
"special": true
|
84 |
+
},
|
85 |
+
"151653": {
|
86 |
+
"content": "<|vision_end|>",
|
87 |
+
"lstrip": false,
|
88 |
+
"normalized": false,
|
89 |
+
"rstrip": false,
|
90 |
+
"single_word": false,
|
91 |
+
"special": true
|
92 |
+
},
|
93 |
+
"151654": {
|
94 |
+
"content": "<|vision_pad|>",
|
95 |
+
"lstrip": false,
|
96 |
+
"normalized": false,
|
97 |
+
"rstrip": false,
|
98 |
+
"single_word": false,
|
99 |
+
"special": true
|
100 |
+
},
|
101 |
+
"151655": {
|
102 |
+
"content": "<|image_pad|>",
|
103 |
+
"lstrip": false,
|
104 |
+
"normalized": false,
|
105 |
+
"rstrip": false,
|
106 |
+
"single_word": false,
|
107 |
+
"special": true
|
108 |
+
},
|
109 |
+
"151656": {
|
110 |
+
"content": "<|video_pad|>",
|
111 |
+
"lstrip": false,
|
112 |
+
"normalized": false,
|
113 |
+
"rstrip": false,
|
114 |
+
"single_word": false,
|
115 |
+
"special": true
|
116 |
+
},
|
117 |
+
"151657": {
|
118 |
+
"content": "<tool_call>",
|
119 |
+
"lstrip": false,
|
120 |
+
"normalized": false,
|
121 |
+
"rstrip": false,
|
122 |
+
"single_word": false,
|
123 |
+
"special": false
|
124 |
+
},
|
125 |
+
"151658": {
|
126 |
+
"content": "</tool_call>",
|
127 |
+
"lstrip": false,
|
128 |
+
"normalized": false,
|
129 |
+
"rstrip": false,
|
130 |
+
"single_word": false,
|
131 |
+
"special": false
|
132 |
+
},
|
133 |
+
"151659": {
|
134 |
+
"content": "<|fim_prefix|>",
|
135 |
+
"lstrip": false,
|
136 |
+
"normalized": false,
|
137 |
+
"rstrip": false,
|
138 |
+
"single_word": false,
|
139 |
+
"special": false
|
140 |
+
},
|
141 |
+
"151660": {
|
142 |
+
"content": "<|fim_middle|>",
|
143 |
+
"lstrip": false,
|
144 |
+
"normalized": false,
|
145 |
+
"rstrip": false,
|
146 |
+
"single_word": false,
|
147 |
+
"special": false
|
148 |
+
},
|
149 |
+
"151661": {
|
150 |
+
"content": "<|fim_suffix|>",
|
151 |
+
"lstrip": false,
|
152 |
+
"normalized": false,
|
153 |
+
"rstrip": false,
|
154 |
+
"single_word": false,
|
155 |
+
"special": false
|
156 |
+
},
|
157 |
+
"151662": {
|
158 |
+
"content": "<|fim_pad|>",
|
159 |
+
"lstrip": false,
|
160 |
+
"normalized": false,
|
161 |
+
"rstrip": false,
|
162 |
+
"single_word": false,
|
163 |
+
"special": false
|
164 |
+
},
|
165 |
+
"151663": {
|
166 |
+
"content": "<|repo_name|>",
|
167 |
+
"lstrip": false,
|
168 |
+
"normalized": false,
|
169 |
+
"rstrip": false,
|
170 |
+
"single_word": false,
|
171 |
+
"special": false
|
172 |
+
},
|
173 |
+
"151664": {
|
174 |
+
"content": "<|file_sep|>",
|
175 |
+
"lstrip": false,
|
176 |
+
"normalized": false,
|
177 |
+
"rstrip": false,
|
178 |
+
"single_word": false,
|
179 |
+
"special": false
|
180 |
+
}
|
181 |
+
},
|
182 |
+
"additional_special_tokens": [
|
183 |
+
"<|im_start|>",
|
184 |
+
"<|im_end|>",
|
185 |
+
"<|object_ref_start|>",
|
186 |
+
"<|object_ref_end|>",
|
187 |
+
"<|box_start|>",
|
188 |
+
"<|box_end|>",
|
189 |
+
"<|quad_start|>",
|
190 |
+
"<|quad_end|>",
|
191 |
+
"<|vision_start|>",
|
192 |
+
"<|vision_end|>",
|
193 |
+
"<|vision_pad|>",
|
194 |
+
"<|image_pad|>",
|
195 |
+
"<|video_pad|>"
|
196 |
+
],
|
197 |
+
"bos_token": null,
|
198 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- endif %}\n {{- \"\\n\\n# 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>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\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\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
|
199 |
+
"clean_up_tokenization_spaces": false,
|
200 |
+
"eos_token": "<|im_end|>",
|
201 |
+
"errors": "replace",
|
202 |
+
"extra_special_tokens": {},
|
203 |
+
"model_max_length": 131072,
|
204 |
+
"pad_token": "<|endoftext|>",
|
205 |
+
"split_special_tokens": false,
|
206 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
207 |
+
"unk_token": null
|
208 |
+
}
|
checkpoint-100/trainer_state.json
ADDED
@@ -0,0 +1,1333 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 0.25,
|
5 |
+
"eval_steps": 500,
|
6 |
+
"global_step": 100,
|
7 |
+
"is_hyper_param_search": false,
|
8 |
+
"is_local_process_zero": true,
|
9 |
+
"is_world_process_zero": true,
|
10 |
+
"log_history": [
|
11 |
+
{
|
12 |
+
"Batch Mean": 2.61431884765625,
|
13 |
+
"accuracy": 0.4765625,
|
14 |
+
"epoch": 0,
|
15 |
+
"step": 0
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"epoch": 0.0025,
|
19 |
+
"grad_norm": 42.59496307373047,
|
20 |
+
"learning_rate": 1.5000000000000002e-07,
|
21 |
+
"loss": 0.8092,
|
22 |
+
"step": 1
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"Batch Mean": 2.574005126953125,
|
26 |
+
"accuracy": 0.578125,
|
27 |
+
"epoch": 0.0025,
|
28 |
+
"step": 1
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"epoch": 0.005,
|
32 |
+
"grad_norm": 46.709930419921875,
|
33 |
+
"learning_rate": 3.0000000000000004e-07,
|
34 |
+
"loss": 0.7799,
|
35 |
+
"step": 2
|
36 |
+
},
|
37 |
+
{
|
38 |
+
"Batch Mean": 2.560516357421875,
|
39 |
+
"accuracy": 0.484375,
|
40 |
+
"epoch": 0.005,
|
41 |
+
"step": 2
|
42 |
+
},
|
43 |
+
{
|
44 |
+
"epoch": 0.0075,
|
45 |
+
"grad_norm": 44.51314163208008,
|
46 |
+
"learning_rate": 4.5e-07,
|
47 |
+
"loss": 0.8043,
|
48 |
+
"step": 3
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"Batch Mean": 2.6197509765625,
|
52 |
+
"accuracy": 0.5,
|
53 |
+
"epoch": 0.0075,
|
54 |
+
"step": 3
|
55 |
+
},
|
56 |
+
{
|
57 |
+
"epoch": 0.01,
|
58 |
+
"grad_norm": 42.86121368408203,
|
59 |
+
"learning_rate": 6.000000000000001e-07,
|
60 |
+
"loss": 0.8014,
|
61 |
+
"step": 4
|
62 |
+
},
|
63 |
+
{
|
64 |
+
"Batch Mean": 2.565338134765625,
|
65 |
+
"accuracy": 0.53125,
|
66 |
+
"epoch": 0.01,
|
67 |
+
"step": 4
|
68 |
+
},
|
69 |
+
{
|
70 |
+
"epoch": 0.0125,
|
71 |
+
"grad_norm": 44.409908294677734,
|
72 |
+
"learning_rate": 7.5e-07,
|
73 |
+
"loss": 0.7983,
|
74 |
+
"step": 5
|
75 |
+
},
|
76 |
+
{
|
77 |
+
"Batch Mean": 2.522857666015625,
|
78 |
+
"accuracy": 0.484375,
|
79 |
+
"epoch": 0.0125,
|
80 |
+
"step": 5
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"epoch": 0.015,
|
84 |
+
"grad_norm": 43.77534484863281,
|
85 |
+
"learning_rate": 9e-07,
|
86 |
+
"loss": 0.7975,
|
87 |
+
"step": 6
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"Batch Mean": 2.3875732421875,
|
91 |
+
"accuracy": 0.4921875,
|
92 |
+
"epoch": 0.015,
|
93 |
+
"step": 6
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"epoch": 0.0175,
|
97 |
+
"grad_norm": 41.981407165527344,
|
98 |
+
"learning_rate": 1.05e-06,
|
99 |
+
"loss": 0.7951,
|
100 |
+
"step": 7
|
101 |
+
},
|
102 |
+
{
|
103 |
+
"Batch Mean": 2.317047119140625,
|
104 |
+
"accuracy": 0.515625,
|
105 |
+
"epoch": 0.0175,
|
106 |
+
"step": 7
|
107 |
+
},
|
108 |
+
{
|
109 |
+
"epoch": 0.02,
|
110 |
+
"grad_norm": 40.53751754760742,
|
111 |
+
"learning_rate": 1.2000000000000002e-06,
|
112 |
+
"loss": 0.791,
|
113 |
+
"step": 8
|
114 |
+
},
|
115 |
+
{
|
116 |
+
"Batch Mean": 1.757080078125,
|
117 |
+
"accuracy": 0.5078125,
|
118 |
+
"epoch": 0.02,
|
119 |
+
"step": 8
|
120 |
+
},
|
121 |
+
{
|
122 |
+
"epoch": 0.0225,
|
123 |
+
"grad_norm": 31.105939865112305,
|
124 |
+
"learning_rate": 1.35e-06,
|
125 |
+
"loss": 0.7571,
|
126 |
+
"step": 9
|
127 |
+
},
|
128 |
+
{
|
129 |
+
"Batch Mean": 1.6220855712890625,
|
130 |
+
"accuracy": 0.578125,
|
131 |
+
"epoch": 0.0225,
|
132 |
+
"step": 9
|
133 |
+
},
|
134 |
+
{
|
135 |
+
"epoch": 0.025,
|
136 |
+
"grad_norm": 33.61161804199219,
|
137 |
+
"learning_rate": 1.5e-06,
|
138 |
+
"loss": 0.7234,
|
139 |
+
"step": 10
|
140 |
+
},
|
141 |
+
{
|
142 |
+
"Batch Mean": 1.400146484375,
|
143 |
+
"accuracy": 0.53125,
|
144 |
+
"epoch": 0.025,
|
145 |
+
"step": 10
|
146 |
+
},
|
147 |
+
{
|
148 |
+
"epoch": 0.0275,
|
149 |
+
"grad_norm": 34.554622650146484,
|
150 |
+
"learning_rate": 1.65e-06,
|
151 |
+
"loss": 0.725,
|
152 |
+
"step": 11
|
153 |
+
},
|
154 |
+
{
|
155 |
+
"Batch Mean": -0.43697381019592285,
|
156 |
+
"accuracy": 0.5234375,
|
157 |
+
"epoch": 0.0275,
|
158 |
+
"step": 11
|
159 |
+
},
|
160 |
+
{
|
161 |
+
"epoch": 0.03,
|
162 |
+
"grad_norm": 12.222326278686523,
|
163 |
+
"learning_rate": 1.8e-06,
|
164 |
+
"loss": 0.6986,
|
165 |
+
"step": 12
|
166 |
+
},
|
167 |
+
{
|
168 |
+
"Batch Mean": -0.8854951858520508,
|
169 |
+
"accuracy": 0.5234375,
|
170 |
+
"epoch": 0.03,
|
171 |
+
"step": 12
|
172 |
+
},
|
173 |
+
{
|
174 |
+
"epoch": 0.0325,
|
175 |
+
"grad_norm": 16.398786544799805,
|
176 |
+
"learning_rate": 1.95e-06,
|
177 |
+
"loss": 0.7081,
|
178 |
+
"step": 13
|
179 |
+
},
|
180 |
+
{
|
181 |
+
"Batch Mean": -0.9508838653564453,
|
182 |
+
"accuracy": 0.640625,
|
183 |
+
"epoch": 0.0325,
|
184 |
+
"step": 13
|
185 |
+
},
|
186 |
+
{
|
187 |
+
"epoch": 0.035,
|
188 |
+
"grad_norm": 19.590002059936523,
|
189 |
+
"learning_rate": 2.1e-06,
|
190 |
+
"loss": 0.6784,
|
191 |
+
"step": 14
|
192 |
+
},
|
193 |
+
{
|
194 |
+
"Batch Mean": -1.0560526847839355,
|
195 |
+
"accuracy": 0.4921875,
|
196 |
+
"epoch": 0.035,
|
197 |
+
"step": 14
|
198 |
+
},
|
199 |
+
{
|
200 |
+
"epoch": 0.0375,
|
201 |
+
"grad_norm": 22.669742584228516,
|
202 |
+
"learning_rate": 2.25e-06,
|
203 |
+
"loss": 0.7235,
|
204 |
+
"step": 15
|
205 |
+
},
|
206 |
+
{
|
207 |
+
"Batch Mean": -1.1405725479125977,
|
208 |
+
"accuracy": 0.625,
|
209 |
+
"epoch": 0.0375,
|
210 |
+
"step": 15
|
211 |
+
},
|
212 |
+
{
|
213 |
+
"epoch": 0.04,
|
214 |
+
"grad_norm": 22.189626693725586,
|
215 |
+
"learning_rate": 2.4000000000000003e-06,
|
216 |
+
"loss": 0.6714,
|
217 |
+
"step": 16
|
218 |
+
},
|
219 |
+
{
|
220 |
+
"Batch Mean": -1.1522831916809082,
|
221 |
+
"accuracy": 0.640625,
|
222 |
+
"epoch": 0.04,
|
223 |
+
"step": 16
|
224 |
+
},
|
225 |
+
{
|
226 |
+
"epoch": 0.0425,
|
227 |
+
"grad_norm": 19.9060115814209,
|
228 |
+
"learning_rate": 2.55e-06,
|
229 |
+
"loss": 0.6757,
|
230 |
+
"step": 17
|
231 |
+
},
|
232 |
+
{
|
233 |
+
"Batch Mean": -1.1666946411132812,
|
234 |
+
"accuracy": 0.53125,
|
235 |
+
"epoch": 0.0425,
|
236 |
+
"step": 17
|
237 |
+
},
|
238 |
+
{
|
239 |
+
"epoch": 0.045,
|
240 |
+
"grad_norm": 23.661216735839844,
|
241 |
+
"learning_rate": 2.7e-06,
|
242 |
+
"loss": 0.7002,
|
243 |
+
"step": 18
|
244 |
+
},
|
245 |
+
{
|
246 |
+
"Batch Mean": -0.999359130859375,
|
247 |
+
"accuracy": 0.6640625,
|
248 |
+
"epoch": 0.045,
|
249 |
+
"step": 18
|
250 |
+
},
|
251 |
+
{
|
252 |
+
"epoch": 0.0475,
|
253 |
+
"grad_norm": 15.433859825134277,
|
254 |
+
"learning_rate": 2.85e-06,
|
255 |
+
"loss": 0.6471,
|
256 |
+
"step": 19
|
257 |
+
},
|
258 |
+
{
|
259 |
+
"Batch Mean": -0.6625549793243408,
|
260 |
+
"accuracy": 0.6171875,
|
261 |
+
"epoch": 0.0475,
|
262 |
+
"step": 19
|
263 |
+
},
|
264 |
+
{
|
265 |
+
"epoch": 0.05,
|
266 |
+
"grad_norm": 13.135390281677246,
|
267 |
+
"learning_rate": 3e-06,
|
268 |
+
"loss": 0.662,
|
269 |
+
"step": 20
|
270 |
+
},
|
271 |
+
{
|
272 |
+
"Batch Mean": -0.13487493991851807,
|
273 |
+
"accuracy": 0.6171875,
|
274 |
+
"epoch": 0.05,
|
275 |
+
"step": 20
|
276 |
+
},
|
277 |
+
{
|
278 |
+
"epoch": 0.0525,
|
279 |
+
"grad_norm": 7.336737632751465,
|
280 |
+
"learning_rate": 2.992105263157895e-06,
|
281 |
+
"loss": 0.629,
|
282 |
+
"step": 21
|
283 |
+
},
|
284 |
+
{
|
285 |
+
"Batch Mean": 0.2938040494918823,
|
286 |
+
"accuracy": 0.6640625,
|
287 |
+
"epoch": 0.0525,
|
288 |
+
"step": 21
|
289 |
+
},
|
290 |
+
{
|
291 |
+
"epoch": 0.055,
|
292 |
+
"grad_norm": 9.586155891418457,
|
293 |
+
"learning_rate": 2.9842105263157896e-06,
|
294 |
+
"loss": 0.6225,
|
295 |
+
"step": 22
|
296 |
+
},
|
297 |
+
{
|
298 |
+
"Batch Mean": 0.6780391931533813,
|
299 |
+
"accuracy": 0.7421875,
|
300 |
+
"epoch": 0.055,
|
301 |
+
"step": 22
|
302 |
+
},
|
303 |
+
{
|
304 |
+
"epoch": 0.0575,
|
305 |
+
"grad_norm": 14.825817108154297,
|
306 |
+
"learning_rate": 2.9763157894736843e-06,
|
307 |
+
"loss": 0.607,
|
308 |
+
"step": 23
|
309 |
+
},
|
310 |
+
{
|
311 |
+
"Batch Mean": 0.9421095848083496,
|
312 |
+
"accuracy": 0.609375,
|
313 |
+
"epoch": 0.0575,
|
314 |
+
"step": 23
|
315 |
+
},
|
316 |
+
{
|
317 |
+
"epoch": 0.06,
|
318 |
+
"grad_norm": 16.7529354095459,
|
319 |
+
"learning_rate": 2.968421052631579e-06,
|
320 |
+
"loss": 0.6542,
|
321 |
+
"step": 24
|
322 |
+
},
|
323 |
+
{
|
324 |
+
"Batch Mean": 1.0722179412841797,
|
325 |
+
"accuracy": 0.71875,
|
326 |
+
"epoch": 0.06,
|
327 |
+
"step": 24
|
328 |
+
},
|
329 |
+
{
|
330 |
+
"epoch": 0.0625,
|
331 |
+
"grad_norm": 18.940032958984375,
|
332 |
+
"learning_rate": 2.960526315789474e-06,
|
333 |
+
"loss": 0.5882,
|
334 |
+
"step": 25
|
335 |
+
},
|
336 |
+
{
|
337 |
+
"Batch Mean": 0.8396664261817932,
|
338 |
+
"accuracy": 0.6484375,
|
339 |
+
"epoch": 0.0625,
|
340 |
+
"step": 25
|
341 |
+
},
|
342 |
+
{
|
343 |
+
"epoch": 0.065,
|
344 |
+
"grad_norm": 14.680763244628906,
|
345 |
+
"learning_rate": 2.9526315789473685e-06,
|
346 |
+
"loss": 0.6463,
|
347 |
+
"step": 26
|
348 |
+
},
|
349 |
+
{
|
350 |
+
"Batch Mean": 0.2986793518066406,
|
351 |
+
"accuracy": 0.671875,
|
352 |
+
"epoch": 0.065,
|
353 |
+
"step": 26
|
354 |
+
},
|
355 |
+
{
|
356 |
+
"epoch": 0.0675,
|
357 |
+
"grad_norm": 7.3362345695495605,
|
358 |
+
"learning_rate": 2.9447368421052633e-06,
|
359 |
+
"loss": 0.5923,
|
360 |
+
"step": 27
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"Batch Mean": -0.29196763038635254,
|
364 |
+
"accuracy": 0.734375,
|
365 |
+
"epoch": 0.0675,
|
366 |
+
"step": 27
|
367 |
+
},
|
368 |
+
{
|
369 |
+
"epoch": 0.07,
|
370 |
+
"grad_norm": 8.053507804870605,
|
371 |
+
"learning_rate": 2.936842105263158e-06,
|
372 |
+
"loss": 0.5261,
|
373 |
+
"step": 28
|
374 |
+
},
|
375 |
+
{
|
376 |
+
"Batch Mean": -0.8161113262176514,
|
377 |
+
"accuracy": 0.7109375,
|
378 |
+
"epoch": 0.07,
|
379 |
+
"step": 28
|
380 |
+
},
|
381 |
+
{
|
382 |
+
"epoch": 0.0725,
|
383 |
+
"grad_norm": 14.036270141601562,
|
384 |
+
"learning_rate": 2.9289473684210528e-06,
|
385 |
+
"loss": 0.5482,
|
386 |
+
"step": 29
|
387 |
+
},
|
388 |
+
{
|
389 |
+
"Batch Mean": -0.7824737429618835,
|
390 |
+
"accuracy": 0.75,
|
391 |
+
"epoch": 0.0725,
|
392 |
+
"step": 29
|
393 |
+
},
|
394 |
+
{
|
395 |
+
"epoch": 0.075,
|
396 |
+
"grad_norm": 13.984892845153809,
|
397 |
+
"learning_rate": 2.9210526315789475e-06,
|
398 |
+
"loss": 0.5939,
|
399 |
+
"step": 30
|
400 |
+
},
|
401 |
+
{
|
402 |
+
"Batch Mean": -0.4927825927734375,
|
403 |
+
"accuracy": 0.734375,
|
404 |
+
"epoch": 0.075,
|
405 |
+
"step": 30
|
406 |
+
},
|
407 |
+
{
|
408 |
+
"epoch": 0.0775,
|
409 |
+
"grad_norm": 10.751565933227539,
|
410 |
+
"learning_rate": 2.9131578947368423e-06,
|
411 |
+
"loss": 0.5901,
|
412 |
+
"step": 31
|
413 |
+
},
|
414 |
+
{
|
415 |
+
"Batch Mean": 0.15497040748596191,
|
416 |
+
"accuracy": 0.6796875,
|
417 |
+
"epoch": 0.0775,
|
418 |
+
"step": 31
|
419 |
+
},
|
420 |
+
{
|
421 |
+
"epoch": 0.08,
|
422 |
+
"grad_norm": 8.30102252960205,
|
423 |
+
"learning_rate": 2.905263157894737e-06,
|
424 |
+
"loss": 0.5731,
|
425 |
+
"step": 32
|
426 |
+
},
|
427 |
+
{
|
428 |
+
"Batch Mean": 0.16421844065189362,
|
429 |
+
"accuracy": 0.7578125,
|
430 |
+
"epoch": 0.08,
|
431 |
+
"step": 32
|
432 |
+
},
|
433 |
+
{
|
434 |
+
"epoch": 0.0825,
|
435 |
+
"grad_norm": 9.087366104125977,
|
436 |
+
"learning_rate": 2.8973684210526318e-06,
|
437 |
+
"loss": 0.4958,
|
438 |
+
"step": 33
|
439 |
+
},
|
440 |
+
{
|
441 |
+
"Batch Mean": 0.3596491813659668,
|
442 |
+
"accuracy": 0.859375,
|
443 |
+
"epoch": 0.0825,
|
444 |
+
"step": 33
|
445 |
+
},
|
446 |
+
{
|
447 |
+
"epoch": 0.085,
|
448 |
+
"grad_norm": 9.984371185302734,
|
449 |
+
"learning_rate": 2.8894736842105265e-06,
|
450 |
+
"loss": 0.4321,
|
451 |
+
"step": 34
|
452 |
+
},
|
453 |
+
{
|
454 |
+
"Batch Mean": 0.2128266543149948,
|
455 |
+
"accuracy": 0.734375,
|
456 |
+
"epoch": 0.085,
|
457 |
+
"step": 34
|
458 |
+
},
|
459 |
+
{
|
460 |
+
"epoch": 0.0875,
|
461 |
+
"grad_norm": 7.400077819824219,
|
462 |
+
"learning_rate": 2.8815789473684213e-06,
|
463 |
+
"loss": 0.5178,
|
464 |
+
"step": 35
|
465 |
+
},
|
466 |
+
{
|
467 |
+
"Batch Mean": 0.10449030995368958,
|
468 |
+
"accuracy": 0.7578125,
|
469 |
+
"epoch": 0.0875,
|
470 |
+
"step": 35
|
471 |
+
},
|
472 |
+
{
|
473 |
+
"epoch": 0.09,
|
474 |
+
"grad_norm": 6.669457912445068,
|
475 |
+
"learning_rate": 2.873684210526316e-06,
|
476 |
+
"loss": 0.4914,
|
477 |
+
"step": 36
|
478 |
+
},
|
479 |
+
{
|
480 |
+
"Batch Mean": -0.24382781982421875,
|
481 |
+
"accuracy": 0.6953125,
|
482 |
+
"epoch": 0.09,
|
483 |
+
"step": 36
|
484 |
+
},
|
485 |
+
{
|
486 |
+
"epoch": 0.0925,
|
487 |
+
"grad_norm": 10.831747055053711,
|
488 |
+
"learning_rate": 2.8657894736842103e-06,
|
489 |
+
"loss": 0.5305,
|
490 |
+
"step": 37
|
491 |
+
},
|
492 |
+
{
|
493 |
+
"Batch Mean": -0.29154396057128906,
|
494 |
+
"accuracy": 0.7109375,
|
495 |
+
"epoch": 0.0925,
|
496 |
+
"step": 37
|
497 |
+
},
|
498 |
+
{
|
499 |
+
"epoch": 0.095,
|
500 |
+
"grad_norm": 11.060967445373535,
|
501 |
+
"learning_rate": 2.857894736842105e-06,
|
502 |
+
"loss": 0.5589,
|
503 |
+
"step": 38
|
504 |
+
},
|
505 |
+
{
|
506 |
+
"Batch Mean": -0.07830595970153809,
|
507 |
+
"accuracy": 0.765625,
|
508 |
+
"epoch": 0.095,
|
509 |
+
"step": 38
|
510 |
+
},
|
511 |
+
{
|
512 |
+
"epoch": 0.0975,
|
513 |
+
"grad_norm": 8.426444053649902,
|
514 |
+
"learning_rate": 2.85e-06,
|
515 |
+
"loss": 0.4663,
|
516 |
+
"step": 39
|
517 |
+
},
|
518 |
+
{
|
519 |
+
"Batch Mean": -0.09856069087982178,
|
520 |
+
"accuracy": 0.7890625,
|
521 |
+
"epoch": 0.0975,
|
522 |
+
"step": 39
|
523 |
+
},
|
524 |
+
{
|
525 |
+
"epoch": 0.1,
|
526 |
+
"grad_norm": 11.046717643737793,
|
527 |
+
"learning_rate": 2.8421052631578946e-06,
|
528 |
+
"loss": 0.455,
|
529 |
+
"step": 40
|
530 |
+
},
|
531 |
+
{
|
532 |
+
"Batch Mean": 0.29904642701148987,
|
533 |
+
"accuracy": 0.8125,
|
534 |
+
"epoch": 0.1,
|
535 |
+
"step": 40
|
536 |
+
},
|
537 |
+
{
|
538 |
+
"epoch": 0.1025,
|
539 |
+
"grad_norm": 11.232060432434082,
|
540 |
+
"learning_rate": 2.8342105263157897e-06,
|
541 |
+
"loss": 0.437,
|
542 |
+
"step": 41
|
543 |
+
},
|
544 |
+
{
|
545 |
+
"Batch Mean": 0.43527090549468994,
|
546 |
+
"accuracy": 0.78125,
|
547 |
+
"epoch": 0.1025,
|
548 |
+
"step": 41
|
549 |
+
},
|
550 |
+
{
|
551 |
+
"epoch": 0.105,
|
552 |
+
"grad_norm": 12.555906295776367,
|
553 |
+
"learning_rate": 2.8263157894736845e-06,
|
554 |
+
"loss": 0.5316,
|
555 |
+
"step": 42
|
556 |
+
},
|
557 |
+
{
|
558 |
+
"Batch Mean": 0.02639901638031006,
|
559 |
+
"accuracy": 0.8046875,
|
560 |
+
"epoch": 0.105,
|
561 |
+
"step": 42
|
562 |
+
},
|
563 |
+
{
|
564 |
+
"epoch": 0.1075,
|
565 |
+
"grad_norm": 9.500948905944824,
|
566 |
+
"learning_rate": 2.8184210526315792e-06,
|
567 |
+
"loss": 0.4874,
|
568 |
+
"step": 43
|
569 |
+
},
|
570 |
+
{
|
571 |
+
"Batch Mean": -0.3524761199951172,
|
572 |
+
"accuracy": 0.7421875,
|
573 |
+
"epoch": 0.1075,
|
574 |
+
"step": 43
|
575 |
+
},
|
576 |
+
{
|
577 |
+
"epoch": 0.11,
|
578 |
+
"grad_norm": 10.417457580566406,
|
579 |
+
"learning_rate": 2.810526315789474e-06,
|
580 |
+
"loss": 0.5011,
|
581 |
+
"step": 44
|
582 |
+
},
|
583 |
+
{
|
584 |
+
"Batch Mean": -0.32391130924224854,
|
585 |
+
"accuracy": 0.8125,
|
586 |
+
"epoch": 0.11,
|
587 |
+
"step": 44
|
588 |
+
},
|
589 |
+
{
|
590 |
+
"epoch": 0.1125,
|
591 |
+
"grad_norm": 9.867128372192383,
|
592 |
+
"learning_rate": 2.8026315789473687e-06,
|
593 |
+
"loss": 0.4908,
|
594 |
+
"step": 45
|
595 |
+
},
|
596 |
+
{
|
597 |
+
"Batch Mean": -0.42060422897338867,
|
598 |
+
"accuracy": 0.8125,
|
599 |
+
"epoch": 0.1125,
|
600 |
+
"step": 45
|
601 |
+
},
|
602 |
+
{
|
603 |
+
"epoch": 0.115,
|
604 |
+
"grad_norm": 10.613035202026367,
|
605 |
+
"learning_rate": 2.7947368421052635e-06,
|
606 |
+
"loss": 0.4642,
|
607 |
+
"step": 46
|
608 |
+
},
|
609 |
+
{
|
610 |
+
"Batch Mean": 0.04145359992980957,
|
611 |
+
"accuracy": 0.7890625,
|
612 |
+
"epoch": 0.115,
|
613 |
+
"step": 46
|
614 |
+
},
|
615 |
+
{
|
616 |
+
"epoch": 0.1175,
|
617 |
+
"grad_norm": 12.13752555847168,
|
618 |
+
"learning_rate": 2.7868421052631578e-06,
|
619 |
+
"loss": 0.4943,
|
620 |
+
"step": 47
|
621 |
+
},
|
622 |
+
{
|
623 |
+
"Batch Mean": 0.24553179740905762,
|
624 |
+
"accuracy": 0.8046875,
|
625 |
+
"epoch": 0.1175,
|
626 |
+
"step": 47
|
627 |
+
},
|
628 |
+
{
|
629 |
+
"epoch": 0.12,
|
630 |
+
"grad_norm": 11.048128128051758,
|
631 |
+
"learning_rate": 2.7789473684210525e-06,
|
632 |
+
"loss": 0.3946,
|
633 |
+
"step": 48
|
634 |
+
},
|
635 |
+
{
|
636 |
+
"Batch Mean": -0.05052506923675537,
|
637 |
+
"accuracy": 0.796875,
|
638 |
+
"epoch": 0.12,
|
639 |
+
"step": 48
|
640 |
+
},
|
641 |
+
{
|
642 |
+
"epoch": 0.1225,
|
643 |
+
"grad_norm": 9.053565979003906,
|
644 |
+
"learning_rate": 2.7710526315789473e-06,
|
645 |
+
"loss": 0.4474,
|
646 |
+
"step": 49
|
647 |
+
},
|
648 |
+
{
|
649 |
+
"Batch Mean": -0.43336963653564453,
|
650 |
+
"accuracy": 0.7265625,
|
651 |
+
"epoch": 0.1225,
|
652 |
+
"step": 49
|
653 |
+
},
|
654 |
+
{
|
655 |
+
"epoch": 0.125,
|
656 |
+
"grad_norm": 15.04668140411377,
|
657 |
+
"learning_rate": 2.763157894736842e-06,
|
658 |
+
"loss": 0.5496,
|
659 |
+
"step": 50
|
660 |
+
},
|
661 |
+
{
|
662 |
+
"Batch Mean": -0.29952335357666016,
|
663 |
+
"accuracy": 0.765625,
|
664 |
+
"epoch": 0.125,
|
665 |
+
"step": 50
|
666 |
+
},
|
667 |
+
{
|
668 |
+
"epoch": 0.1275,
|
669 |
+
"grad_norm": 11.302435874938965,
|
670 |
+
"learning_rate": 2.7552631578947368e-06,
|
671 |
+
"loss": 0.4337,
|
672 |
+
"step": 51
|
673 |
+
},
|
674 |
+
{
|
675 |
+
"Batch Mean": -0.01873302459716797,
|
676 |
+
"accuracy": 0.828125,
|
677 |
+
"epoch": 0.1275,
|
678 |
+
"step": 51
|
679 |
+
},
|
680 |
+
{
|
681 |
+
"epoch": 0.13,
|
682 |
+
"grad_norm": 10.582301139831543,
|
683 |
+
"learning_rate": 2.7473684210526315e-06,
|
684 |
+
"loss": 0.4073,
|
685 |
+
"step": 52
|
686 |
+
},
|
687 |
+
{
|
688 |
+
"Batch Mean": 0.4117751717567444,
|
689 |
+
"accuracy": 0.8046875,
|
690 |
+
"epoch": 0.13,
|
691 |
+
"step": 52
|
692 |
+
},
|
693 |
+
{
|
694 |
+
"epoch": 0.1325,
|
695 |
+
"grad_norm": 9.776220321655273,
|
696 |
+
"learning_rate": 2.7394736842105263e-06,
|
697 |
+
"loss": 0.4235,
|
698 |
+
"step": 53
|
699 |
+
},
|
700 |
+
{
|
701 |
+
"Batch Mean": 0.5990171432495117,
|
702 |
+
"accuracy": 0.78125,
|
703 |
+
"epoch": 0.1325,
|
704 |
+
"step": 53
|
705 |
+
},
|
706 |
+
{
|
707 |
+
"epoch": 0.135,
|
708 |
+
"grad_norm": 12.647154808044434,
|
709 |
+
"learning_rate": 2.7315789473684214e-06,
|
710 |
+
"loss": 0.4858,
|
711 |
+
"step": 54
|
712 |
+
},
|
713 |
+
{
|
714 |
+
"Batch Mean": 0.2538492679595947,
|
715 |
+
"accuracy": 0.7265625,
|
716 |
+
"epoch": 0.135,
|
717 |
+
"step": 54
|
718 |
+
},
|
719 |
+
{
|
720 |
+
"epoch": 0.1375,
|
721 |
+
"grad_norm": 11.564103126525879,
|
722 |
+
"learning_rate": 2.723684210526316e-06,
|
723 |
+
"loss": 0.5233,
|
724 |
+
"step": 55
|
725 |
+
},
|
726 |
+
{
|
727 |
+
"Batch Mean": 0.17059040069580078,
|
728 |
+
"accuracy": 0.7578125,
|
729 |
+
"epoch": 0.1375,
|
730 |
+
"step": 55
|
731 |
+
},
|
732 |
+
{
|
733 |
+
"epoch": 0.14,
|
734 |
+
"grad_norm": 10.589515686035156,
|
735 |
+
"learning_rate": 2.715789473684211e-06,
|
736 |
+
"loss": 0.4762,
|
737 |
+
"step": 56
|
738 |
+
},
|
739 |
+
{
|
740 |
+
"Batch Mean": -0.3642357587814331,
|
741 |
+
"accuracy": 0.78125,
|
742 |
+
"epoch": 0.14,
|
743 |
+
"step": 56
|
744 |
+
},
|
745 |
+
{
|
746 |
+
"epoch": 0.1425,
|
747 |
+
"grad_norm": 10.727502822875977,
|
748 |
+
"learning_rate": 2.7078947368421052e-06,
|
749 |
+
"loss": 0.5289,
|
750 |
+
"step": 57
|
751 |
+
},
|
752 |
+
{
|
753 |
+
"Batch Mean": -0.5980481505393982,
|
754 |
+
"accuracy": 0.8203125,
|
755 |
+
"epoch": 0.1425,
|
756 |
+
"step": 57
|
757 |
+
},
|
758 |
+
{
|
759 |
+
"epoch": 0.145,
|
760 |
+
"grad_norm": 8.915611267089844,
|
761 |
+
"learning_rate": 2.7e-06,
|
762 |
+
"loss": 0.4038,
|
763 |
+
"step": 58
|
764 |
+
},
|
765 |
+
{
|
766 |
+
"Batch Mean": -0.46013855934143066,
|
767 |
+
"accuracy": 0.859375,
|
768 |
+
"epoch": 0.145,
|
769 |
+
"step": 58
|
770 |
+
},
|
771 |
+
{
|
772 |
+
"epoch": 0.1475,
|
773 |
+
"grad_norm": 9.178686141967773,
|
774 |
+
"learning_rate": 2.6921052631578947e-06,
|
775 |
+
"loss": 0.3708,
|
776 |
+
"step": 59
|
777 |
+
},
|
778 |
+
{
|
779 |
+
"Batch Mean": -0.1478586494922638,
|
780 |
+
"accuracy": 0.84375,
|
781 |
+
"epoch": 0.1475,
|
782 |
+
"step": 59
|
783 |
+
},
|
784 |
+
{
|
785 |
+
"epoch": 0.15,
|
786 |
+
"grad_norm": 6.339688301086426,
|
787 |
+
"learning_rate": 2.6842105263157895e-06,
|
788 |
+
"loss": 0.4036,
|
789 |
+
"step": 60
|
790 |
+
},
|
791 |
+
{
|
792 |
+
"Batch Mean": 0.003389716148376465,
|
793 |
+
"accuracy": 0.7578125,
|
794 |
+
"epoch": 0.15,
|
795 |
+
"step": 60
|
796 |
+
},
|
797 |
+
{
|
798 |
+
"epoch": 0.1525,
|
799 |
+
"grad_norm": 6.763300895690918,
|
800 |
+
"learning_rate": 2.6763157894736842e-06,
|
801 |
+
"loss": 0.5163,
|
802 |
+
"step": 61
|
803 |
+
},
|
804 |
+
{
|
805 |
+
"Batch Mean": 0.4018087387084961,
|
806 |
+
"accuracy": 0.7734375,
|
807 |
+
"epoch": 0.1525,
|
808 |
+
"step": 61
|
809 |
+
},
|
810 |
+
{
|
811 |
+
"epoch": 0.155,
|
812 |
+
"grad_norm": 8.631525039672852,
|
813 |
+
"learning_rate": 2.668421052631579e-06,
|
814 |
+
"loss": 0.4219,
|
815 |
+
"step": 62
|
816 |
+
},
|
817 |
+
{
|
818 |
+
"Batch Mean": 0.342004656791687,
|
819 |
+
"accuracy": 0.734375,
|
820 |
+
"epoch": 0.155,
|
821 |
+
"step": 62
|
822 |
+
},
|
823 |
+
{
|
824 |
+
"epoch": 0.1575,
|
825 |
+
"grad_norm": 9.190362930297852,
|
826 |
+
"learning_rate": 2.6605263157894737e-06,
|
827 |
+
"loss": 0.4708,
|
828 |
+
"step": 63
|
829 |
+
},
|
830 |
+
{
|
831 |
+
"Batch Mean": 0.5178697109222412,
|
832 |
+
"accuracy": 0.8125,
|
833 |
+
"epoch": 0.1575,
|
834 |
+
"step": 63
|
835 |
+
},
|
836 |
+
{
|
837 |
+
"epoch": 0.16,
|
838 |
+
"grad_norm": 10.207452774047852,
|
839 |
+
"learning_rate": 2.6526315789473685e-06,
|
840 |
+
"loss": 0.4458,
|
841 |
+
"step": 64
|
842 |
+
},
|
843 |
+
{
|
844 |
+
"Batch Mean": 0.03012150526046753,
|
845 |
+
"accuracy": 0.8125,
|
846 |
+
"epoch": 0.16,
|
847 |
+
"step": 64
|
848 |
+
},
|
849 |
+
{
|
850 |
+
"epoch": 0.1625,
|
851 |
+
"grad_norm": 8.050507545471191,
|
852 |
+
"learning_rate": 2.644736842105263e-06,
|
853 |
+
"loss": 0.4344,
|
854 |
+
"step": 65
|
855 |
+
},
|
856 |
+
{
|
857 |
+
"Batch Mean": -0.3691895604133606,
|
858 |
+
"accuracy": 0.78125,
|
859 |
+
"epoch": 0.1625,
|
860 |
+
"step": 65
|
861 |
+
},
|
862 |
+
{
|
863 |
+
"epoch": 0.165,
|
864 |
+
"grad_norm": 11.163555145263672,
|
865 |
+
"learning_rate": 2.636842105263158e-06,
|
866 |
+
"loss": 0.4276,
|
867 |
+
"step": 66
|
868 |
+
},
|
869 |
+
{
|
870 |
+
"Batch Mean": -0.2624788284301758,
|
871 |
+
"accuracy": 0.8125,
|
872 |
+
"epoch": 0.165,
|
873 |
+
"step": 66
|
874 |
+
},
|
875 |
+
{
|
876 |
+
"epoch": 0.1675,
|
877 |
+
"grad_norm": 9.523059844970703,
|
878 |
+
"learning_rate": 2.6289473684210527e-06,
|
879 |
+
"loss": 0.4001,
|
880 |
+
"step": 67
|
881 |
+
},
|
882 |
+
{
|
883 |
+
"Batch Mean": -0.0055138468742370605,
|
884 |
+
"accuracy": 0.8046875,
|
885 |
+
"epoch": 0.1675,
|
886 |
+
"step": 67
|
887 |
+
},
|
888 |
+
{
|
889 |
+
"epoch": 0.17,
|
890 |
+
"grad_norm": 9.094910621643066,
|
891 |
+
"learning_rate": 2.6210526315789474e-06,
|
892 |
+
"loss": 0.4024,
|
893 |
+
"step": 68
|
894 |
+
},
|
895 |
+
{
|
896 |
+
"Batch Mean": 0.2572704553604126,
|
897 |
+
"accuracy": 0.7734375,
|
898 |
+
"epoch": 0.17,
|
899 |
+
"step": 68
|
900 |
+
},
|
901 |
+
{
|
902 |
+
"epoch": 0.1725,
|
903 |
+
"grad_norm": 10.00645923614502,
|
904 |
+
"learning_rate": 2.613157894736842e-06,
|
905 |
+
"loss": 0.4802,
|
906 |
+
"step": 69
|
907 |
+
},
|
908 |
+
{
|
909 |
+
"Batch Mean": 0.5112218856811523,
|
910 |
+
"accuracy": 0.8046875,
|
911 |
+
"epoch": 0.1725,
|
912 |
+
"step": 69
|
913 |
+
},
|
914 |
+
{
|
915 |
+
"epoch": 0.175,
|
916 |
+
"grad_norm": 11.776649475097656,
|
917 |
+
"learning_rate": 2.605263157894737e-06,
|
918 |
+
"loss": 0.4194,
|
919 |
+
"step": 70
|
920 |
+
},
|
921 |
+
{
|
922 |
+
"Batch Mean": 0.29661768674850464,
|
923 |
+
"accuracy": 0.8125,
|
924 |
+
"epoch": 0.175,
|
925 |
+
"step": 70
|
926 |
+
},
|
927 |
+
{
|
928 |
+
"epoch": 0.1775,
|
929 |
+
"grad_norm": 9.701162338256836,
|
930 |
+
"learning_rate": 2.5973684210526317e-06,
|
931 |
+
"loss": 0.4356,
|
932 |
+
"step": 71
|
933 |
+
},
|
934 |
+
{
|
935 |
+
"Batch Mean": 0.049837589263916016,
|
936 |
+
"accuracy": 0.859375,
|
937 |
+
"epoch": 0.1775,
|
938 |
+
"step": 71
|
939 |
+
},
|
940 |
+
{
|
941 |
+
"epoch": 0.18,
|
942 |
+
"grad_norm": 8.692646980285645,
|
943 |
+
"learning_rate": 2.5894736842105264e-06,
|
944 |
+
"loss": 0.2881,
|
945 |
+
"step": 72
|
946 |
+
},
|
947 |
+
{
|
948 |
+
"Batch Mean": -0.3786022663116455,
|
949 |
+
"accuracy": 0.8125,
|
950 |
+
"epoch": 0.18,
|
951 |
+
"step": 72
|
952 |
+
},
|
953 |
+
{
|
954 |
+
"epoch": 0.1825,
|
955 |
+
"grad_norm": 10.834145545959473,
|
956 |
+
"learning_rate": 2.581578947368421e-06,
|
957 |
+
"loss": 0.4654,
|
958 |
+
"step": 73
|
959 |
+
},
|
960 |
+
{
|
961 |
+
"Batch Mean": -0.20977401733398438,
|
962 |
+
"accuracy": 0.8515625,
|
963 |
+
"epoch": 0.1825,
|
964 |
+
"step": 73
|
965 |
+
},
|
966 |
+
{
|
967 |
+
"epoch": 0.185,
|
968 |
+
"grad_norm": 7.816598892211914,
|
969 |
+
"learning_rate": 2.573684210526316e-06,
|
970 |
+
"loss": 0.4101,
|
971 |
+
"step": 74
|
972 |
+
},
|
973 |
+
{
|
974 |
+
"Batch Mean": -0.6599991321563721,
|
975 |
+
"accuracy": 0.8203125,
|
976 |
+
"epoch": 0.185,
|
977 |
+
"step": 74
|
978 |
+
},
|
979 |
+
{
|
980 |
+
"epoch": 0.1875,
|
981 |
+
"grad_norm": 13.089007377624512,
|
982 |
+
"learning_rate": 2.5657894736842107e-06,
|
983 |
+
"loss": 0.427,
|
984 |
+
"step": 75
|
985 |
+
},
|
986 |
+
{
|
987 |
+
"Batch Mean": -0.37617337703704834,
|
988 |
+
"accuracy": 0.7734375,
|
989 |
+
"epoch": 0.1875,
|
990 |
+
"step": 75
|
991 |
+
},
|
992 |
+
{
|
993 |
+
"epoch": 0.19,
|
994 |
+
"grad_norm": 12.075210571289062,
|
995 |
+
"learning_rate": 2.5578947368421054e-06,
|
996 |
+
"loss": 0.4797,
|
997 |
+
"step": 76
|
998 |
+
},
|
999 |
+
{
|
1000 |
+
"Batch Mean": 0.1281442642211914,
|
1001 |
+
"accuracy": 0.8046875,
|
1002 |
+
"epoch": 0.19,
|
1003 |
+
"step": 76
|
1004 |
+
},
|
1005 |
+
{
|
1006 |
+
"epoch": 0.1925,
|
1007 |
+
"grad_norm": 9.70462703704834,
|
1008 |
+
"learning_rate": 2.55e-06,
|
1009 |
+
"loss": 0.4425,
|
1010 |
+
"step": 77
|
1011 |
+
},
|
1012 |
+
{
|
1013 |
+
"Batch Mean": 0.6071650981903076,
|
1014 |
+
"accuracy": 0.828125,
|
1015 |
+
"epoch": 0.1925,
|
1016 |
+
"step": 77
|
1017 |
+
},
|
1018 |
+
{
|
1019 |
+
"epoch": 0.195,
|
1020 |
+
"grad_norm": 14.395353317260742,
|
1021 |
+
"learning_rate": 2.542105263157895e-06,
|
1022 |
+
"loss": 0.4016,
|
1023 |
+
"step": 78
|
1024 |
+
},
|
1025 |
+
{
|
1026 |
+
"Batch Mean": 0.34730714559555054,
|
1027 |
+
"accuracy": 0.8203125,
|
1028 |
+
"epoch": 0.195,
|
1029 |
+
"step": 78
|
1030 |
+
},
|
1031 |
+
{
|
1032 |
+
"epoch": 0.1975,
|
1033 |
+
"grad_norm": 9.122536659240723,
|
1034 |
+
"learning_rate": 2.5342105263157892e-06,
|
1035 |
+
"loss": 0.3994,
|
1036 |
+
"step": 79
|
1037 |
+
},
|
1038 |
+
{
|
1039 |
+
"Batch Mean": 0.36483922600746155,
|
1040 |
+
"accuracy": 0.828125,
|
1041 |
+
"epoch": 0.1975,
|
1042 |
+
"step": 79
|
1043 |
+
},
|
1044 |
+
{
|
1045 |
+
"epoch": 0.2,
|
1046 |
+
"grad_norm": 10.289307594299316,
|
1047 |
+
"learning_rate": 2.526315789473684e-06,
|
1048 |
+
"loss": 0.368,
|
1049 |
+
"step": 80
|
1050 |
+
},
|
1051 |
+
{
|
1052 |
+
"Batch Mean": -0.20039799809455872,
|
1053 |
+
"accuracy": 0.8125,
|
1054 |
+
"epoch": 0.2,
|
1055 |
+
"step": 80
|
1056 |
+
},
|
1057 |
+
{
|
1058 |
+
"epoch": 0.2025,
|
1059 |
+
"grad_norm": 7.813342094421387,
|
1060 |
+
"learning_rate": 2.5184210526315787e-06,
|
1061 |
+
"loss": 0.3679,
|
1062 |
+
"step": 81
|
1063 |
+
},
|
1064 |
+
{
|
1065 |
+
"Batch Mean": -0.1629079282283783,
|
1066 |
+
"accuracy": 0.8203125,
|
1067 |
+
"epoch": 0.2025,
|
1068 |
+
"step": 81
|
1069 |
+
},
|
1070 |
+
{
|
1071 |
+
"epoch": 0.205,
|
1072 |
+
"grad_norm": 7.504952430725098,
|
1073 |
+
"learning_rate": 2.510526315789474e-06,
|
1074 |
+
"loss": 0.3823,
|
1075 |
+
"step": 82
|
1076 |
+
},
|
1077 |
+
{
|
1078 |
+
"Batch Mean": -0.07863587141036987,
|
1079 |
+
"accuracy": 0.8046875,
|
1080 |
+
"epoch": 0.205,
|
1081 |
+
"step": 82
|
1082 |
+
},
|
1083 |
+
{
|
1084 |
+
"epoch": 0.2075,
|
1085 |
+
"grad_norm": 7.721461296081543,
|
1086 |
+
"learning_rate": 2.5026315789473686e-06,
|
1087 |
+
"loss": 0.3967,
|
1088 |
+
"step": 83
|
1089 |
+
},
|
1090 |
+
{
|
1091 |
+
"Batch Mean": 0.17194491624832153,
|
1092 |
+
"accuracy": 0.8125,
|
1093 |
+
"epoch": 0.2075,
|
1094 |
+
"step": 83
|
1095 |
+
},
|
1096 |
+
{
|
1097 |
+
"epoch": 0.21,
|
1098 |
+
"grad_norm": 8.062063217163086,
|
1099 |
+
"learning_rate": 2.4947368421052634e-06,
|
1100 |
+
"loss": 0.4195,
|
1101 |
+
"step": 84
|
1102 |
+
},
|
1103 |
+
{
|
1104 |
+
"Batch Mean": 0.11748838424682617,
|
1105 |
+
"accuracy": 0.8359375,
|
1106 |
+
"epoch": 0.21,
|
1107 |
+
"step": 84
|
1108 |
+
},
|
1109 |
+
{
|
1110 |
+
"epoch": 0.2125,
|
1111 |
+
"grad_norm": 8.320355415344238,
|
1112 |
+
"learning_rate": 2.486842105263158e-06,
|
1113 |
+
"loss": 0.3864,
|
1114 |
+
"step": 85
|
1115 |
+
},
|
1116 |
+
{
|
1117 |
+
"Batch Mean": -0.40801382064819336,
|
1118 |
+
"accuracy": 0.7734375,
|
1119 |
+
"epoch": 0.2125,
|
1120 |
+
"step": 85
|
1121 |
+
},
|
1122 |
+
{
|
1123 |
+
"epoch": 0.215,
|
1124 |
+
"grad_norm": 14.8066987991333,
|
1125 |
+
"learning_rate": 2.478947368421053e-06,
|
1126 |
+
"loss": 0.4639,
|
1127 |
+
"step": 86
|
1128 |
+
},
|
1129 |
+
{
|
1130 |
+
"Batch Mean": -0.35811758041381836,
|
1131 |
+
"accuracy": 0.7734375,
|
1132 |
+
"epoch": 0.215,
|
1133 |
+
"step": 86
|
1134 |
+
},
|
1135 |
+
{
|
1136 |
+
"epoch": 0.2175,
|
1137 |
+
"grad_norm": 14.074177742004395,
|
1138 |
+
"learning_rate": 2.4710526315789476e-06,
|
1139 |
+
"loss": 0.4999,
|
1140 |
+
"step": 87
|
1141 |
+
},
|
1142 |
+
{
|
1143 |
+
"Batch Mean": 0.278584361076355,
|
1144 |
+
"accuracy": 0.7734375,
|
1145 |
+
"epoch": 0.2175,
|
1146 |
+
"step": 87
|
1147 |
+
},
|
1148 |
+
{
|
1149 |
+
"epoch": 0.22,
|
1150 |
+
"grad_norm": 10.59004020690918,
|
1151 |
+
"learning_rate": 2.4631578947368424e-06,
|
1152 |
+
"loss": 0.404,
|
1153 |
+
"step": 88
|
1154 |
+
},
|
1155 |
+
{
|
1156 |
+
"Batch Mean": -0.21054387092590332,
|
1157 |
+
"accuracy": 0.84375,
|
1158 |
+
"epoch": 0.22,
|
1159 |
+
"step": 88
|
1160 |
+
},
|
1161 |
+
{
|
1162 |
+
"epoch": 0.2225,
|
1163 |
+
"grad_norm": 8.488351821899414,
|
1164 |
+
"learning_rate": 2.4552631578947367e-06,
|
1165 |
+
"loss": 0.3517,
|
1166 |
+
"step": 89
|
1167 |
+
},
|
1168 |
+
{
|
1169 |
+
"Batch Mean": -0.22967231273651123,
|
1170 |
+
"accuracy": 0.84375,
|
1171 |
+
"epoch": 0.2225,
|
1172 |
+
"step": 89
|
1173 |
+
},
|
1174 |
+
{
|
1175 |
+
"epoch": 0.225,
|
1176 |
+
"grad_norm": 10.347502708435059,
|
1177 |
+
"learning_rate": 2.4473684210526314e-06,
|
1178 |
+
"loss": 0.3382,
|
1179 |
+
"step": 90
|
1180 |
+
},
|
1181 |
+
{
|
1182 |
+
"Batch Mean": 0.1892259418964386,
|
1183 |
+
"accuracy": 0.7890625,
|
1184 |
+
"epoch": 0.225,
|
1185 |
+
"step": 90
|
1186 |
+
},
|
1187 |
+
{
|
1188 |
+
"epoch": 0.2275,
|
1189 |
+
"grad_norm": 10.092534065246582,
|
1190 |
+
"learning_rate": 2.439473684210526e-06,
|
1191 |
+
"loss": 0.4586,
|
1192 |
+
"step": 91
|
1193 |
+
},
|
1194 |
+
{
|
1195 |
+
"Batch Mean": 0.516247570514679,
|
1196 |
+
"accuracy": 0.8828125,
|
1197 |
+
"epoch": 0.2275,
|
1198 |
+
"step": 91
|
1199 |
+
},
|
1200 |
+
{
|
1201 |
+
"epoch": 0.23,
|
1202 |
+
"grad_norm": 13.944212913513184,
|
1203 |
+
"learning_rate": 2.431578947368421e-06,
|
1204 |
+
"loss": 0.3067,
|
1205 |
+
"step": 92
|
1206 |
+
},
|
1207 |
+
{
|
1208 |
+
"Batch Mean": 0.056681275367736816,
|
1209 |
+
"accuracy": 0.7890625,
|
1210 |
+
"epoch": 0.23,
|
1211 |
+
"step": 92
|
1212 |
+
},
|
1213 |
+
{
|
1214 |
+
"epoch": 0.2325,
|
1215 |
+
"grad_norm": 8.53646183013916,
|
1216 |
+
"learning_rate": 2.4236842105263157e-06,
|
1217 |
+
"loss": 0.3946,
|
1218 |
+
"step": 93
|
1219 |
+
},
|
1220 |
+
{
|
1221 |
+
"Batch Mean": -0.47129684686660767,
|
1222 |
+
"accuracy": 0.8359375,
|
1223 |
+
"epoch": 0.2325,
|
1224 |
+
"step": 93
|
1225 |
+
},
|
1226 |
+
{
|
1227 |
+
"epoch": 0.235,
|
1228 |
+
"grad_norm": 11.441537857055664,
|
1229 |
+
"learning_rate": 2.4157894736842104e-06,
|
1230 |
+
"loss": 0.3891,
|
1231 |
+
"step": 94
|
1232 |
+
},
|
1233 |
+
{
|
1234 |
+
"Batch Mean": -0.3262195587158203,
|
1235 |
+
"accuracy": 0.84375,
|
1236 |
+
"epoch": 0.235,
|
1237 |
+
"step": 94
|
1238 |
+
},
|
1239 |
+
{
|
1240 |
+
"epoch": 0.2375,
|
1241 |
+
"grad_norm": 10.751629829406738,
|
1242 |
+
"learning_rate": 2.4078947368421056e-06,
|
1243 |
+
"loss": 0.3578,
|
1244 |
+
"step": 95
|
1245 |
+
},
|
1246 |
+
{
|
1247 |
+
"Batch Mean": -0.6593484878540039,
|
1248 |
+
"accuracy": 0.828125,
|
1249 |
+
"epoch": 0.2375,
|
1250 |
+
"step": 95
|
1251 |
+
},
|
1252 |
+
{
|
1253 |
+
"epoch": 0.24,
|
1254 |
+
"grad_norm": 15.914350509643555,
|
1255 |
+
"learning_rate": 2.4000000000000003e-06,
|
1256 |
+
"loss": 0.4204,
|
1257 |
+
"step": 96
|
1258 |
+
},
|
1259 |
+
{
|
1260 |
+
"Batch Mean": -0.32147085666656494,
|
1261 |
+
"accuracy": 0.8359375,
|
1262 |
+
"epoch": 0.24,
|
1263 |
+
"step": 96
|
1264 |
+
},
|
1265 |
+
{
|
1266 |
+
"epoch": 0.2425,
|
1267 |
+
"grad_norm": 11.814691543579102,
|
1268 |
+
"learning_rate": 2.392105263157895e-06,
|
1269 |
+
"loss": 0.3892,
|
1270 |
+
"step": 97
|
1271 |
+
},
|
1272 |
+
{
|
1273 |
+
"Batch Mean": 0.49291136860847473,
|
1274 |
+
"accuracy": 0.875,
|
1275 |
+
"epoch": 0.2425,
|
1276 |
+
"step": 97
|
1277 |
+
},
|
1278 |
+
{
|
1279 |
+
"epoch": 0.245,
|
1280 |
+
"grad_norm": 11.86365795135498,
|
1281 |
+
"learning_rate": 2.38421052631579e-06,
|
1282 |
+
"loss": 0.3264,
|
1283 |
+
"step": 98
|
1284 |
+
},
|
1285 |
+
{
|
1286 |
+
"Batch Mean": 0.49174070358276367,
|
1287 |
+
"accuracy": 0.8515625,
|
1288 |
+
"epoch": 0.245,
|
1289 |
+
"step": 98
|
1290 |
+
},
|
1291 |
+
{
|
1292 |
+
"epoch": 0.2475,
|
1293 |
+
"grad_norm": 10.874544143676758,
|
1294 |
+
"learning_rate": 2.376315789473684e-06,
|
1295 |
+
"loss": 0.3847,
|
1296 |
+
"step": 99
|
1297 |
+
},
|
1298 |
+
{
|
1299 |
+
"Batch Mean": 0.6919900178909302,
|
1300 |
+
"accuracy": 0.796875,
|
1301 |
+
"epoch": 0.2475,
|
1302 |
+
"step": 99
|
1303 |
+
},
|
1304 |
+
{
|
1305 |
+
"epoch": 0.25,
|
1306 |
+
"grad_norm": 15.105185508728027,
|
1307 |
+
"learning_rate": 2.368421052631579e-06,
|
1308 |
+
"loss": 0.4066,
|
1309 |
+
"step": 100
|
1310 |
+
}
|
1311 |
+
],
|
1312 |
+
"logging_steps": 1,
|
1313 |
+
"max_steps": 400,
|
1314 |
+
"num_input_tokens_seen": 0,
|
1315 |
+
"num_train_epochs": 1,
|
1316 |
+
"save_steps": 100,
|
1317 |
+
"stateful_callbacks": {
|
1318 |
+
"TrainerControl": {
|
1319 |
+
"args": {
|
1320 |
+
"should_epoch_stop": false,
|
1321 |
+
"should_evaluate": false,
|
1322 |
+
"should_log": false,
|
1323 |
+
"should_save": true,
|
1324 |
+
"should_training_stop": false
|
1325 |
+
},
|
1326 |
+
"attributes": {}
|
1327 |
+
}
|
1328 |
+
},
|
1329 |
+
"total_flos": 0.0,
|
1330 |
+
"train_batch_size": 16,
|
1331 |
+
"trial_name": null,
|
1332 |
+
"trial_params": null
|
1333 |
+
}
|
checkpoint-100/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dab7a9d0a6227a7833fc68db5d94632c4e2ceb7ee89455f6c0134e29a3b812b9
|
3 |
+
size 5688
|
checkpoint-100/vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-200/added_tokens.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</tool_call>": 151658,
|
3 |
+
"<tool_call>": 151657,
|
4 |
+
"<|box_end|>": 151649,
|
5 |
+
"<|box_start|>": 151648,
|
6 |
+
"<|endoftext|>": 151643,
|
7 |
+
"<|file_sep|>": 151664,
|
8 |
+
"<|fim_middle|>": 151660,
|
9 |
+
"<|fim_pad|>": 151662,
|
10 |
+
"<|fim_prefix|>": 151659,
|
11 |
+
"<|fim_suffix|>": 151661,
|
12 |
+
"<|im_end|>": 151645,
|
13 |
+
"<|im_start|>": 151644,
|
14 |
+
"<|image_pad|>": 151655,
|
15 |
+
"<|object_ref_end|>": 151647,
|
16 |
+
"<|object_ref_start|>": 151646,
|
17 |
+
"<|quad_end|>": 151651,
|
18 |
+
"<|quad_start|>": 151650,
|
19 |
+
"<|repo_name|>": 151663,
|
20 |
+
"<|video_pad|>": 151656,
|
21 |
+
"<|vision_end|>": 151653,
|
22 |
+
"<|vision_pad|>": 151654,
|
23 |
+
"<|vision_start|>": 151652
|
24 |
+
}
|
checkpoint-200/config.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "tlrm/Q25-3B-UC",
|
3 |
+
"architectures": [
|
4 |
+
"Qwen2ForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 151643,
|
8 |
+
"eos_token_id": 151645,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 2048,
|
11 |
+
"id2label": {
|
12 |
+
"0": "LABEL_0"
|
13 |
+
},
|
14 |
+
"initializer_range": 0.02,
|
15 |
+
"intermediate_size": 11008,
|
16 |
+
"label2id": {
|
17 |
+
"LABEL_0": 0
|
18 |
+
},
|
19 |
+
"max_position_embeddings": 32768,
|
20 |
+
"max_window_layers": 36,
|
21 |
+
"model_type": "qwen2",
|
22 |
+
"num_attention_heads": 16,
|
23 |
+
"num_hidden_layers": 36,
|
24 |
+
"num_key_value_heads": 2,
|
25 |
+
"pad_token_id": 151643,
|
26 |
+
"rms_norm_eps": 1e-06,
|
27 |
+
"rope_scaling": null,
|
28 |
+
"rope_theta": 1000000.0,
|
29 |
+
"sliding_window": null,
|
30 |
+
"tie_word_embeddings": true,
|
31 |
+
"torch_dtype": "float32",
|
32 |
+
"transformers_version": "4.48.0",
|
33 |
+
"use_cache": false,
|
34 |
+
"use_mrope": false,
|
35 |
+
"use_sliding_window": false,
|
36 |
+
"vocab_size": 151936
|
37 |
+
}
|
checkpoint-200/merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-200/model-00001-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7954ea3c806a7670437dce0e040296c9f928752693e7ddc9f1e9e0bcc94154e8
|
3 |
+
size 4982131536
|
checkpoint-200/model-00002-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1cfbef2420ec95739eb73710fdf8576ec43bc98411e48591c96fceddc70288bf
|
3 |
+
size 4932949336
|
checkpoint-200/model-00003-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:76f21cd759f17ec4223c30f3ea09b015eb6f198f98fffe9a9ce9b3d9a7b78f5b
|
3 |
+
size 2428731440
|
checkpoint-200/model.safetensors.index.json
ADDED
@@ -0,0 +1,442 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 12343762944
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
7 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
8 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
9 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
10 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
12 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
15 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
16 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
17 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
18 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
19 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
20 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
21 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
22 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
23 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
24 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
25 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
26 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
27 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
28 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
29 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
30 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
31 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
32 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
33 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
34 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
35 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
36 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
37 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
38 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
39 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
40 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
41 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
42 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
43 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
44 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
45 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
46 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
47 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
48 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
49 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
50 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
51 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
52 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
53 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
54 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
55 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
56 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
57 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
58 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
59 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
60 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
61 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
62 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
63 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
64 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
65 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
66 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
67 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
68 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
69 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
70 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
71 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
72 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
73 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
74 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
75 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
76 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
77 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
78 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
79 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
80 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
81 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
82 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
83 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
84 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
85 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
86 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
87 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
88 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
89 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
90 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
91 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
92 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
93 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
94 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
95 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
96 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
97 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
98 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
99 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
100 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
101 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
102 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
103 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
104 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
105 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
106 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
107 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
108 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
109 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
110 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
111 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
112 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
113 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
114 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
115 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
116 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
117 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
118 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
119 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
120 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
121 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
122 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
123 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
124 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
125 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
126 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
127 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
128 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
129 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
130 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
131 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
132 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
133 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
134 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
135 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
136 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
137 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
138 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
139 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
140 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
141 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
142 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
143 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
144 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
145 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
146 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
147 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
148 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
149 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
150 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
151 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
152 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
153 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
154 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
155 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
156 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
157 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
158 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
159 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
160 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
161 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
162 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
163 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
164 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
165 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
166 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
167 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
168 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
169 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
170 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
171 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
172 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
173 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
174 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
175 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
176 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
177 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
178 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
179 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
180 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
181 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
182 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
183 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
184 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
185 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
186 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
187 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
188 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
189 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
190 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
191 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
192 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
193 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
194 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
195 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
196 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
197 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
198 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
199 |
+
"model.layers.23.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
200 |
+
"model.layers.23.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
201 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
202 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
203 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
204 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
205 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
206 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
207 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
208 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
209 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
210 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
211 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
212 |
+
"model.layers.24.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
213 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
214 |
+
"model.layers.24.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
215 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
216 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
217 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
218 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
219 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
220 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
221 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
222 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
223 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
224 |
+
"model.layers.25.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
225 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
226 |
+
"model.layers.25.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
227 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
228 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
229 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
230 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
231 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
232 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
233 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
234 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
235 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
236 |
+
"model.layers.26.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
237 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
238 |
+
"model.layers.26.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
239 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
240 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
241 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
242 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
243 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
244 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
245 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
246 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
247 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
248 |
+
"model.layers.27.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
249 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
250 |
+
"model.layers.27.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
251 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
252 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
253 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
254 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
255 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
256 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
257 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
258 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
259 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
260 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
261 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
262 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
263 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
264 |
+
"model.layers.28.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
265 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
266 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
267 |
+
"model.layers.28.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
268 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
269 |
+
"model.layers.28.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
270 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
271 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
272 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
273 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
274 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
275 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
276 |
+
"model.layers.29.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
277 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
278 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
279 |
+
"model.layers.29.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
280 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
281 |
+
"model.layers.29.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
282 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
283 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
284 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
285 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
286 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
287 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
288 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
289 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
290 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
291 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
292 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
293 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
294 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
295 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
296 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
297 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
298 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
299 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
300 |
+
"model.layers.30.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
301 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
302 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
303 |
+
"model.layers.30.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
304 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
305 |
+
"model.layers.30.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
306 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
307 |
+
"model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
308 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
309 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
310 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
311 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
312 |
+
"model.layers.31.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
313 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
314 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
315 |
+
"model.layers.31.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
316 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
317 |
+
"model.layers.31.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
318 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
319 |
+
"model.layers.32.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
320 |
+
"model.layers.32.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
321 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
322 |
+
"model.layers.32.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
323 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
324 |
+
"model.layers.32.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
325 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
326 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
327 |
+
"model.layers.32.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
328 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
329 |
+
"model.layers.32.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
330 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
331 |
+
"model.layers.33.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
332 |
+
"model.layers.33.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
333 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
334 |
+
"model.layers.33.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
335 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
336 |
+
"model.layers.33.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
337 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
338 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
339 |
+
"model.layers.33.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
340 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
341 |
+
"model.layers.33.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
342 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
343 |
+
"model.layers.34.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
344 |
+
"model.layers.34.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
345 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
346 |
+
"model.layers.34.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
347 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
348 |
+
"model.layers.34.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
349 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
350 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
351 |
+
"model.layers.34.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
352 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
353 |
+
"model.layers.34.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
354 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
355 |
+
"model.layers.35.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
356 |
+
"model.layers.35.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
357 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
358 |
+
"model.layers.35.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
359 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
360 |
+
"model.layers.35.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
361 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
362 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
363 |
+
"model.layers.35.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
364 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
365 |
+
"model.layers.35.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
366 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
367 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
368 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
369 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
370 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
371 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
372 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
373 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
374 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
375 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
376 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
377 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
378 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
379 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
380 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
381 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
382 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
383 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
384 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
385 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
386 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
387 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
388 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
389 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
390 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
391 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
392 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
393 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
394 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
395 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
396 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
397 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
398 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
399 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
400 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
401 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
402 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
403 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
404 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
405 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
406 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
407 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
408 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
409 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
410 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
411 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
412 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
413 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
414 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
415 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
416 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
417 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
418 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
419 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
420 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
421 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
422 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
423 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
424 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
425 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
426 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
427 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
428 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
429 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
430 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
431 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
432 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
433 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
434 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
435 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
436 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
437 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
438 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
439 |
+
"model.norm.weight": "model-00003-of-00003.safetensors",
|
440 |
+
"score.weight": "model-00003-of-00003.safetensors"
|
441 |
+
}
|
442 |
+
}
|
checkpoint-200/special_tokens_map.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|im_start|>",
|
4 |
+
"<|im_end|>",
|
5 |
+
"<|object_ref_start|>",
|
6 |
+
"<|object_ref_end|>",
|
7 |
+
"<|box_start|>",
|
8 |
+
"<|box_end|>",
|
9 |
+
"<|quad_start|>",
|
10 |
+
"<|quad_end|>",
|
11 |
+
"<|vision_start|>",
|
12 |
+
"<|vision_end|>",
|
13 |
+
"<|vision_pad|>",
|
14 |
+
"<|image_pad|>",
|
15 |
+
"<|video_pad|>"
|
16 |
+
],
|
17 |
+
"eos_token": {
|
18 |
+
"content": "<|im_end|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
"pad_token": {
|
25 |
+
"content": "<|endoftext|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
}
|
31 |
+
}
|
checkpoint-200/tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
3 |
+
size 11421896
|
checkpoint-200/tokenizer_config.json
ADDED
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": false,
|
3 |
+
"add_prefix_space": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"151643": {
|
6 |
+
"content": "<|endoftext|>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"151644": {
|
14 |
+
"content": "<|im_start|>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"151645": {
|
22 |
+
"content": "<|im_end|>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
},
|
29 |
+
"151646": {
|
30 |
+
"content": "<|object_ref_start|>",
|
31 |
+
"lstrip": false,
|
32 |
+
"normalized": false,
|
33 |
+
"rstrip": false,
|
34 |
+
"single_word": false,
|
35 |
+
"special": true
|
36 |
+
},
|
37 |
+
"151647": {
|
38 |
+
"content": "<|object_ref_end|>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false,
|
43 |
+
"special": true
|
44 |
+
},
|
45 |
+
"151648": {
|
46 |
+
"content": "<|box_start|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"rstrip": false,
|
50 |
+
"single_word": false,
|
51 |
+
"special": true
|
52 |
+
},
|
53 |
+
"151649": {
|
54 |
+
"content": "<|box_end|>",
|
55 |
+
"lstrip": false,
|
56 |
+
"normalized": false,
|
57 |
+
"rstrip": false,
|
58 |
+
"single_word": false,
|
59 |
+
"special": true
|
60 |
+
},
|
61 |
+
"151650": {
|
62 |
+
"content": "<|quad_start|>",
|
63 |
+
"lstrip": false,
|
64 |
+
"normalized": false,
|
65 |
+
"rstrip": false,
|
66 |
+
"single_word": false,
|
67 |
+
"special": true
|
68 |
+
},
|
69 |
+
"151651": {
|
70 |
+
"content": "<|quad_end|>",
|
71 |
+
"lstrip": false,
|
72 |
+
"normalized": false,
|
73 |
+
"rstrip": false,
|
74 |
+
"single_word": false,
|
75 |
+
"special": true
|
76 |
+
},
|
77 |
+
"151652": {
|
78 |
+
"content": "<|vision_start|>",
|
79 |
+
"lstrip": false,
|
80 |
+
"normalized": false,
|
81 |
+
"rstrip": false,
|
82 |
+
"single_word": false,
|
83 |
+
"special": true
|
84 |
+
},
|
85 |
+
"151653": {
|
86 |
+
"content": "<|vision_end|>",
|
87 |
+
"lstrip": false,
|
88 |
+
"normalized": false,
|
89 |
+
"rstrip": false,
|
90 |
+
"single_word": false,
|
91 |
+
"special": true
|
92 |
+
},
|
93 |
+
"151654": {
|
94 |
+
"content": "<|vision_pad|>",
|
95 |
+
"lstrip": false,
|
96 |
+
"normalized": false,
|
97 |
+
"rstrip": false,
|
98 |
+
"single_word": false,
|
99 |
+
"special": true
|
100 |
+
},
|
101 |
+
"151655": {
|
102 |
+
"content": "<|image_pad|>",
|
103 |
+
"lstrip": false,
|
104 |
+
"normalized": false,
|
105 |
+
"rstrip": false,
|
106 |
+
"single_word": false,
|
107 |
+
"special": true
|
108 |
+
},
|
109 |
+
"151656": {
|
110 |
+
"content": "<|video_pad|>",
|
111 |
+
"lstrip": false,
|
112 |
+
"normalized": false,
|
113 |
+
"rstrip": false,
|
114 |
+
"single_word": false,
|
115 |
+
"special": true
|
116 |
+
},
|
117 |
+
"151657": {
|
118 |
+
"content": "<tool_call>",
|
119 |
+
"lstrip": false,
|
120 |
+
"normalized": false,
|
121 |
+
"rstrip": false,
|
122 |
+
"single_word": false,
|
123 |
+
"special": false
|
124 |
+
},
|
125 |
+
"151658": {
|
126 |
+
"content": "</tool_call>",
|
127 |
+
"lstrip": false,
|
128 |
+
"normalized": false,
|
129 |
+
"rstrip": false,
|
130 |
+
"single_word": false,
|
131 |
+
"special": false
|
132 |
+
},
|
133 |
+
"151659": {
|
134 |
+
"content": "<|fim_prefix|>",
|
135 |
+
"lstrip": false,
|
136 |
+
"normalized": false,
|
137 |
+
"rstrip": false,
|
138 |
+
"single_word": false,
|
139 |
+
"special": false
|
140 |
+
},
|
141 |
+
"151660": {
|
142 |
+
"content": "<|fim_middle|>",
|
143 |
+
"lstrip": false,
|
144 |
+
"normalized": false,
|
145 |
+
"rstrip": false,
|
146 |
+
"single_word": false,
|
147 |
+
"special": false
|
148 |
+
},
|
149 |
+
"151661": {
|
150 |
+
"content": "<|fim_suffix|>",
|
151 |
+
"lstrip": false,
|
152 |
+
"normalized": false,
|
153 |
+
"rstrip": false,
|
154 |
+
"single_word": false,
|
155 |
+
"special": false
|
156 |
+
},
|
157 |
+
"151662": {
|
158 |
+
"content": "<|fim_pad|>",
|
159 |
+
"lstrip": false,
|
160 |
+
"normalized": false,
|
161 |
+
"rstrip": false,
|
162 |
+
"single_word": false,
|
163 |
+
"special": false
|
164 |
+
},
|
165 |
+
"151663": {
|
166 |
+
"content": "<|repo_name|>",
|
167 |
+
"lstrip": false,
|
168 |
+
"normalized": false,
|
169 |
+
"rstrip": false,
|
170 |
+
"single_word": false,
|
171 |
+
"special": false
|
172 |
+
},
|
173 |
+
"151664": {
|
174 |
+
"content": "<|file_sep|>",
|
175 |
+
"lstrip": false,
|
176 |
+
"normalized": false,
|
177 |
+
"rstrip": false,
|
178 |
+
"single_word": false,
|
179 |
+
"special": false
|
180 |
+
}
|
181 |
+
},
|
182 |
+
"additional_special_tokens": [
|
183 |
+
"<|im_start|>",
|
184 |
+
"<|im_end|>",
|
185 |
+
"<|object_ref_start|>",
|
186 |
+
"<|object_ref_end|>",
|
187 |
+
"<|box_start|>",
|
188 |
+
"<|box_end|>",
|
189 |
+
"<|quad_start|>",
|
190 |
+
"<|quad_end|>",
|
191 |
+
"<|vision_start|>",
|
192 |
+
"<|vision_end|>",
|
193 |
+
"<|vision_pad|>",
|
194 |
+
"<|image_pad|>",
|
195 |
+
"<|video_pad|>"
|
196 |
+
],
|
197 |
+
"bos_token": null,
|
198 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- endif %}\n {{- \"\\n\\n# 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>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\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\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
|
199 |
+
"clean_up_tokenization_spaces": false,
|
200 |
+
"eos_token": "<|im_end|>",
|
201 |
+
"errors": "replace",
|
202 |
+
"extra_special_tokens": {},
|
203 |
+
"model_max_length": 131072,
|
204 |
+
"pad_token": "<|endoftext|>",
|
205 |
+
"split_special_tokens": false,
|
206 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
207 |
+
"unk_token": null
|
208 |
+
}
|
checkpoint-200/trainer_state.json
ADDED
@@ -0,0 +1,2633 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 0.5,
|
5 |
+
"eval_steps": 500,
|
6 |
+
"global_step": 200,
|
7 |
+
"is_hyper_param_search": false,
|
8 |
+
"is_local_process_zero": true,
|
9 |
+
"is_world_process_zero": true,
|
10 |
+
"log_history": [
|
11 |
+
{
|
12 |
+
"Batch Mean": 2.61431884765625,
|
13 |
+
"accuracy": 0.4765625,
|
14 |
+
"epoch": 0,
|
15 |
+
"step": 0
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"epoch": 0.0025,
|
19 |
+
"grad_norm": 42.59496307373047,
|
20 |
+
"learning_rate": 1.5000000000000002e-07,
|
21 |
+
"loss": 0.8092,
|
22 |
+
"step": 1
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"Batch Mean": 2.574005126953125,
|
26 |
+
"accuracy": 0.578125,
|
27 |
+
"epoch": 0.0025,
|
28 |
+
"step": 1
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"epoch": 0.005,
|
32 |
+
"grad_norm": 46.709930419921875,
|
33 |
+
"learning_rate": 3.0000000000000004e-07,
|
34 |
+
"loss": 0.7799,
|
35 |
+
"step": 2
|
36 |
+
},
|
37 |
+
{
|
38 |
+
"Batch Mean": 2.560516357421875,
|
39 |
+
"accuracy": 0.484375,
|
40 |
+
"epoch": 0.005,
|
41 |
+
"step": 2
|
42 |
+
},
|
43 |
+
{
|
44 |
+
"epoch": 0.0075,
|
45 |
+
"grad_norm": 44.51314163208008,
|
46 |
+
"learning_rate": 4.5e-07,
|
47 |
+
"loss": 0.8043,
|
48 |
+
"step": 3
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"Batch Mean": 2.6197509765625,
|
52 |
+
"accuracy": 0.5,
|
53 |
+
"epoch": 0.0075,
|
54 |
+
"step": 3
|
55 |
+
},
|
56 |
+
{
|
57 |
+
"epoch": 0.01,
|
58 |
+
"grad_norm": 42.86121368408203,
|
59 |
+
"learning_rate": 6.000000000000001e-07,
|
60 |
+
"loss": 0.8014,
|
61 |
+
"step": 4
|
62 |
+
},
|
63 |
+
{
|
64 |
+
"Batch Mean": 2.565338134765625,
|
65 |
+
"accuracy": 0.53125,
|
66 |
+
"epoch": 0.01,
|
67 |
+
"step": 4
|
68 |
+
},
|
69 |
+
{
|
70 |
+
"epoch": 0.0125,
|
71 |
+
"grad_norm": 44.409908294677734,
|
72 |
+
"learning_rate": 7.5e-07,
|
73 |
+
"loss": 0.7983,
|
74 |
+
"step": 5
|
75 |
+
},
|
76 |
+
{
|
77 |
+
"Batch Mean": 2.522857666015625,
|
78 |
+
"accuracy": 0.484375,
|
79 |
+
"epoch": 0.0125,
|
80 |
+
"step": 5
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"epoch": 0.015,
|
84 |
+
"grad_norm": 43.77534484863281,
|
85 |
+
"learning_rate": 9e-07,
|
86 |
+
"loss": 0.7975,
|
87 |
+
"step": 6
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"Batch Mean": 2.3875732421875,
|
91 |
+
"accuracy": 0.4921875,
|
92 |
+
"epoch": 0.015,
|
93 |
+
"step": 6
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"epoch": 0.0175,
|
97 |
+
"grad_norm": 41.981407165527344,
|
98 |
+
"learning_rate": 1.05e-06,
|
99 |
+
"loss": 0.7951,
|
100 |
+
"step": 7
|
101 |
+
},
|
102 |
+
{
|
103 |
+
"Batch Mean": 2.317047119140625,
|
104 |
+
"accuracy": 0.515625,
|
105 |
+
"epoch": 0.0175,
|
106 |
+
"step": 7
|
107 |
+
},
|
108 |
+
{
|
109 |
+
"epoch": 0.02,
|
110 |
+
"grad_norm": 40.53751754760742,
|
111 |
+
"learning_rate": 1.2000000000000002e-06,
|
112 |
+
"loss": 0.791,
|
113 |
+
"step": 8
|
114 |
+
},
|
115 |
+
{
|
116 |
+
"Batch Mean": 1.757080078125,
|
117 |
+
"accuracy": 0.5078125,
|
118 |
+
"epoch": 0.02,
|
119 |
+
"step": 8
|
120 |
+
},
|
121 |
+
{
|
122 |
+
"epoch": 0.0225,
|
123 |
+
"grad_norm": 31.105939865112305,
|
124 |
+
"learning_rate": 1.35e-06,
|
125 |
+
"loss": 0.7571,
|
126 |
+
"step": 9
|
127 |
+
},
|
128 |
+
{
|
129 |
+
"Batch Mean": 1.6220855712890625,
|
130 |
+
"accuracy": 0.578125,
|
131 |
+
"epoch": 0.0225,
|
132 |
+
"step": 9
|
133 |
+
},
|
134 |
+
{
|
135 |
+
"epoch": 0.025,
|
136 |
+
"grad_norm": 33.61161804199219,
|
137 |
+
"learning_rate": 1.5e-06,
|
138 |
+
"loss": 0.7234,
|
139 |
+
"step": 10
|
140 |
+
},
|
141 |
+
{
|
142 |
+
"Batch Mean": 1.400146484375,
|
143 |
+
"accuracy": 0.53125,
|
144 |
+
"epoch": 0.025,
|
145 |
+
"step": 10
|
146 |
+
},
|
147 |
+
{
|
148 |
+
"epoch": 0.0275,
|
149 |
+
"grad_norm": 34.554622650146484,
|
150 |
+
"learning_rate": 1.65e-06,
|
151 |
+
"loss": 0.725,
|
152 |
+
"step": 11
|
153 |
+
},
|
154 |
+
{
|
155 |
+
"Batch Mean": -0.43697381019592285,
|
156 |
+
"accuracy": 0.5234375,
|
157 |
+
"epoch": 0.0275,
|
158 |
+
"step": 11
|
159 |
+
},
|
160 |
+
{
|
161 |
+
"epoch": 0.03,
|
162 |
+
"grad_norm": 12.222326278686523,
|
163 |
+
"learning_rate": 1.8e-06,
|
164 |
+
"loss": 0.6986,
|
165 |
+
"step": 12
|
166 |
+
},
|
167 |
+
{
|
168 |
+
"Batch Mean": -0.8854951858520508,
|
169 |
+
"accuracy": 0.5234375,
|
170 |
+
"epoch": 0.03,
|
171 |
+
"step": 12
|
172 |
+
},
|
173 |
+
{
|
174 |
+
"epoch": 0.0325,
|
175 |
+
"grad_norm": 16.398786544799805,
|
176 |
+
"learning_rate": 1.95e-06,
|
177 |
+
"loss": 0.7081,
|
178 |
+
"step": 13
|
179 |
+
},
|
180 |
+
{
|
181 |
+
"Batch Mean": -0.9508838653564453,
|
182 |
+
"accuracy": 0.640625,
|
183 |
+
"epoch": 0.0325,
|
184 |
+
"step": 13
|
185 |
+
},
|
186 |
+
{
|
187 |
+
"epoch": 0.035,
|
188 |
+
"grad_norm": 19.590002059936523,
|
189 |
+
"learning_rate": 2.1e-06,
|
190 |
+
"loss": 0.6784,
|
191 |
+
"step": 14
|
192 |
+
},
|
193 |
+
{
|
194 |
+
"Batch Mean": -1.0560526847839355,
|
195 |
+
"accuracy": 0.4921875,
|
196 |
+
"epoch": 0.035,
|
197 |
+
"step": 14
|
198 |
+
},
|
199 |
+
{
|
200 |
+
"epoch": 0.0375,
|
201 |
+
"grad_norm": 22.669742584228516,
|
202 |
+
"learning_rate": 2.25e-06,
|
203 |
+
"loss": 0.7235,
|
204 |
+
"step": 15
|
205 |
+
},
|
206 |
+
{
|
207 |
+
"Batch Mean": -1.1405725479125977,
|
208 |
+
"accuracy": 0.625,
|
209 |
+
"epoch": 0.0375,
|
210 |
+
"step": 15
|
211 |
+
},
|
212 |
+
{
|
213 |
+
"epoch": 0.04,
|
214 |
+
"grad_norm": 22.189626693725586,
|
215 |
+
"learning_rate": 2.4000000000000003e-06,
|
216 |
+
"loss": 0.6714,
|
217 |
+
"step": 16
|
218 |
+
},
|
219 |
+
{
|
220 |
+
"Batch Mean": -1.1522831916809082,
|
221 |
+
"accuracy": 0.640625,
|
222 |
+
"epoch": 0.04,
|
223 |
+
"step": 16
|
224 |
+
},
|
225 |
+
{
|
226 |
+
"epoch": 0.0425,
|
227 |
+
"grad_norm": 19.9060115814209,
|
228 |
+
"learning_rate": 2.55e-06,
|
229 |
+
"loss": 0.6757,
|
230 |
+
"step": 17
|
231 |
+
},
|
232 |
+
{
|
233 |
+
"Batch Mean": -1.1666946411132812,
|
234 |
+
"accuracy": 0.53125,
|
235 |
+
"epoch": 0.0425,
|
236 |
+
"step": 17
|
237 |
+
},
|
238 |
+
{
|
239 |
+
"epoch": 0.045,
|
240 |
+
"grad_norm": 23.661216735839844,
|
241 |
+
"learning_rate": 2.7e-06,
|
242 |
+
"loss": 0.7002,
|
243 |
+
"step": 18
|
244 |
+
},
|
245 |
+
{
|
246 |
+
"Batch Mean": -0.999359130859375,
|
247 |
+
"accuracy": 0.6640625,
|
248 |
+
"epoch": 0.045,
|
249 |
+
"step": 18
|
250 |
+
},
|
251 |
+
{
|
252 |
+
"epoch": 0.0475,
|
253 |
+
"grad_norm": 15.433859825134277,
|
254 |
+
"learning_rate": 2.85e-06,
|
255 |
+
"loss": 0.6471,
|
256 |
+
"step": 19
|
257 |
+
},
|
258 |
+
{
|
259 |
+
"Batch Mean": -0.6625549793243408,
|
260 |
+
"accuracy": 0.6171875,
|
261 |
+
"epoch": 0.0475,
|
262 |
+
"step": 19
|
263 |
+
},
|
264 |
+
{
|
265 |
+
"epoch": 0.05,
|
266 |
+
"grad_norm": 13.135390281677246,
|
267 |
+
"learning_rate": 3e-06,
|
268 |
+
"loss": 0.662,
|
269 |
+
"step": 20
|
270 |
+
},
|
271 |
+
{
|
272 |
+
"Batch Mean": -0.13487493991851807,
|
273 |
+
"accuracy": 0.6171875,
|
274 |
+
"epoch": 0.05,
|
275 |
+
"step": 20
|
276 |
+
},
|
277 |
+
{
|
278 |
+
"epoch": 0.0525,
|
279 |
+
"grad_norm": 7.336737632751465,
|
280 |
+
"learning_rate": 2.992105263157895e-06,
|
281 |
+
"loss": 0.629,
|
282 |
+
"step": 21
|
283 |
+
},
|
284 |
+
{
|
285 |
+
"Batch Mean": 0.2938040494918823,
|
286 |
+
"accuracy": 0.6640625,
|
287 |
+
"epoch": 0.0525,
|
288 |
+
"step": 21
|
289 |
+
},
|
290 |
+
{
|
291 |
+
"epoch": 0.055,
|
292 |
+
"grad_norm": 9.586155891418457,
|
293 |
+
"learning_rate": 2.9842105263157896e-06,
|
294 |
+
"loss": 0.6225,
|
295 |
+
"step": 22
|
296 |
+
},
|
297 |
+
{
|
298 |
+
"Batch Mean": 0.6780391931533813,
|
299 |
+
"accuracy": 0.7421875,
|
300 |
+
"epoch": 0.055,
|
301 |
+
"step": 22
|
302 |
+
},
|
303 |
+
{
|
304 |
+
"epoch": 0.0575,
|
305 |
+
"grad_norm": 14.825817108154297,
|
306 |
+
"learning_rate": 2.9763157894736843e-06,
|
307 |
+
"loss": 0.607,
|
308 |
+
"step": 23
|
309 |
+
},
|
310 |
+
{
|
311 |
+
"Batch Mean": 0.9421095848083496,
|
312 |
+
"accuracy": 0.609375,
|
313 |
+
"epoch": 0.0575,
|
314 |
+
"step": 23
|
315 |
+
},
|
316 |
+
{
|
317 |
+
"epoch": 0.06,
|
318 |
+
"grad_norm": 16.7529354095459,
|
319 |
+
"learning_rate": 2.968421052631579e-06,
|
320 |
+
"loss": 0.6542,
|
321 |
+
"step": 24
|
322 |
+
},
|
323 |
+
{
|
324 |
+
"Batch Mean": 1.0722179412841797,
|
325 |
+
"accuracy": 0.71875,
|
326 |
+
"epoch": 0.06,
|
327 |
+
"step": 24
|
328 |
+
},
|
329 |
+
{
|
330 |
+
"epoch": 0.0625,
|
331 |
+
"grad_norm": 18.940032958984375,
|
332 |
+
"learning_rate": 2.960526315789474e-06,
|
333 |
+
"loss": 0.5882,
|
334 |
+
"step": 25
|
335 |
+
},
|
336 |
+
{
|
337 |
+
"Batch Mean": 0.8396664261817932,
|
338 |
+
"accuracy": 0.6484375,
|
339 |
+
"epoch": 0.0625,
|
340 |
+
"step": 25
|
341 |
+
},
|
342 |
+
{
|
343 |
+
"epoch": 0.065,
|
344 |
+
"grad_norm": 14.680763244628906,
|
345 |
+
"learning_rate": 2.9526315789473685e-06,
|
346 |
+
"loss": 0.6463,
|
347 |
+
"step": 26
|
348 |
+
},
|
349 |
+
{
|
350 |
+
"Batch Mean": 0.2986793518066406,
|
351 |
+
"accuracy": 0.671875,
|
352 |
+
"epoch": 0.065,
|
353 |
+
"step": 26
|
354 |
+
},
|
355 |
+
{
|
356 |
+
"epoch": 0.0675,
|
357 |
+
"grad_norm": 7.3362345695495605,
|
358 |
+
"learning_rate": 2.9447368421052633e-06,
|
359 |
+
"loss": 0.5923,
|
360 |
+
"step": 27
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"Batch Mean": -0.29196763038635254,
|
364 |
+
"accuracy": 0.734375,
|
365 |
+
"epoch": 0.0675,
|
366 |
+
"step": 27
|
367 |
+
},
|
368 |
+
{
|
369 |
+
"epoch": 0.07,
|
370 |
+
"grad_norm": 8.053507804870605,
|
371 |
+
"learning_rate": 2.936842105263158e-06,
|
372 |
+
"loss": 0.5261,
|
373 |
+
"step": 28
|
374 |
+
},
|
375 |
+
{
|
376 |
+
"Batch Mean": -0.8161113262176514,
|
377 |
+
"accuracy": 0.7109375,
|
378 |
+
"epoch": 0.07,
|
379 |
+
"step": 28
|
380 |
+
},
|
381 |
+
{
|
382 |
+
"epoch": 0.0725,
|
383 |
+
"grad_norm": 14.036270141601562,
|
384 |
+
"learning_rate": 2.9289473684210528e-06,
|
385 |
+
"loss": 0.5482,
|
386 |
+
"step": 29
|
387 |
+
},
|
388 |
+
{
|
389 |
+
"Batch Mean": -0.7824737429618835,
|
390 |
+
"accuracy": 0.75,
|
391 |
+
"epoch": 0.0725,
|
392 |
+
"step": 29
|
393 |
+
},
|
394 |
+
{
|
395 |
+
"epoch": 0.075,
|
396 |
+
"grad_norm": 13.984892845153809,
|
397 |
+
"learning_rate": 2.9210526315789475e-06,
|
398 |
+
"loss": 0.5939,
|
399 |
+
"step": 30
|
400 |
+
},
|
401 |
+
{
|
402 |
+
"Batch Mean": -0.4927825927734375,
|
403 |
+
"accuracy": 0.734375,
|
404 |
+
"epoch": 0.075,
|
405 |
+
"step": 30
|
406 |
+
},
|
407 |
+
{
|
408 |
+
"epoch": 0.0775,
|
409 |
+
"grad_norm": 10.751565933227539,
|
410 |
+
"learning_rate": 2.9131578947368423e-06,
|
411 |
+
"loss": 0.5901,
|
412 |
+
"step": 31
|
413 |
+
},
|
414 |
+
{
|
415 |
+
"Batch Mean": 0.15497040748596191,
|
416 |
+
"accuracy": 0.6796875,
|
417 |
+
"epoch": 0.0775,
|
418 |
+
"step": 31
|
419 |
+
},
|
420 |
+
{
|
421 |
+
"epoch": 0.08,
|
422 |
+
"grad_norm": 8.30102252960205,
|
423 |
+
"learning_rate": 2.905263157894737e-06,
|
424 |
+
"loss": 0.5731,
|
425 |
+
"step": 32
|
426 |
+
},
|
427 |
+
{
|
428 |
+
"Batch Mean": 0.16421844065189362,
|
429 |
+
"accuracy": 0.7578125,
|
430 |
+
"epoch": 0.08,
|
431 |
+
"step": 32
|
432 |
+
},
|
433 |
+
{
|
434 |
+
"epoch": 0.0825,
|
435 |
+
"grad_norm": 9.087366104125977,
|
436 |
+
"learning_rate": 2.8973684210526318e-06,
|
437 |
+
"loss": 0.4958,
|
438 |
+
"step": 33
|
439 |
+
},
|
440 |
+
{
|
441 |
+
"Batch Mean": 0.3596491813659668,
|
442 |
+
"accuracy": 0.859375,
|
443 |
+
"epoch": 0.0825,
|
444 |
+
"step": 33
|
445 |
+
},
|
446 |
+
{
|
447 |
+
"epoch": 0.085,
|
448 |
+
"grad_norm": 9.984371185302734,
|
449 |
+
"learning_rate": 2.8894736842105265e-06,
|
450 |
+
"loss": 0.4321,
|
451 |
+
"step": 34
|
452 |
+
},
|
453 |
+
{
|
454 |
+
"Batch Mean": 0.2128266543149948,
|
455 |
+
"accuracy": 0.734375,
|
456 |
+
"epoch": 0.085,
|
457 |
+
"step": 34
|
458 |
+
},
|
459 |
+
{
|
460 |
+
"epoch": 0.0875,
|
461 |
+
"grad_norm": 7.400077819824219,
|
462 |
+
"learning_rate": 2.8815789473684213e-06,
|
463 |
+
"loss": 0.5178,
|
464 |
+
"step": 35
|
465 |
+
},
|
466 |
+
{
|
467 |
+
"Batch Mean": 0.10449030995368958,
|
468 |
+
"accuracy": 0.7578125,
|
469 |
+
"epoch": 0.0875,
|
470 |
+
"step": 35
|
471 |
+
},
|
472 |
+
{
|
473 |
+
"epoch": 0.09,
|
474 |
+
"grad_norm": 6.669457912445068,
|
475 |
+
"learning_rate": 2.873684210526316e-06,
|
476 |
+
"loss": 0.4914,
|
477 |
+
"step": 36
|
478 |
+
},
|
479 |
+
{
|
480 |
+
"Batch Mean": -0.24382781982421875,
|
481 |
+
"accuracy": 0.6953125,
|
482 |
+
"epoch": 0.09,
|
483 |
+
"step": 36
|
484 |
+
},
|
485 |
+
{
|
486 |
+
"epoch": 0.0925,
|
487 |
+
"grad_norm": 10.831747055053711,
|
488 |
+
"learning_rate": 2.8657894736842103e-06,
|
489 |
+
"loss": 0.5305,
|
490 |
+
"step": 37
|
491 |
+
},
|
492 |
+
{
|
493 |
+
"Batch Mean": -0.29154396057128906,
|
494 |
+
"accuracy": 0.7109375,
|
495 |
+
"epoch": 0.0925,
|
496 |
+
"step": 37
|
497 |
+
},
|
498 |
+
{
|
499 |
+
"epoch": 0.095,
|
500 |
+
"grad_norm": 11.060967445373535,
|
501 |
+
"learning_rate": 2.857894736842105e-06,
|
502 |
+
"loss": 0.5589,
|
503 |
+
"step": 38
|
504 |
+
},
|
505 |
+
{
|
506 |
+
"Batch Mean": -0.07830595970153809,
|
507 |
+
"accuracy": 0.765625,
|
508 |
+
"epoch": 0.095,
|
509 |
+
"step": 38
|
510 |
+
},
|
511 |
+
{
|
512 |
+
"epoch": 0.0975,
|
513 |
+
"grad_norm": 8.426444053649902,
|
514 |
+
"learning_rate": 2.85e-06,
|
515 |
+
"loss": 0.4663,
|
516 |
+
"step": 39
|
517 |
+
},
|
518 |
+
{
|
519 |
+
"Batch Mean": -0.09856069087982178,
|
520 |
+
"accuracy": 0.7890625,
|
521 |
+
"epoch": 0.0975,
|
522 |
+
"step": 39
|
523 |
+
},
|
524 |
+
{
|
525 |
+
"epoch": 0.1,
|
526 |
+
"grad_norm": 11.046717643737793,
|
527 |
+
"learning_rate": 2.8421052631578946e-06,
|
528 |
+
"loss": 0.455,
|
529 |
+
"step": 40
|
530 |
+
},
|
531 |
+
{
|
532 |
+
"Batch Mean": 0.29904642701148987,
|
533 |
+
"accuracy": 0.8125,
|
534 |
+
"epoch": 0.1,
|
535 |
+
"step": 40
|
536 |
+
},
|
537 |
+
{
|
538 |
+
"epoch": 0.1025,
|
539 |
+
"grad_norm": 11.232060432434082,
|
540 |
+
"learning_rate": 2.8342105263157897e-06,
|
541 |
+
"loss": 0.437,
|
542 |
+
"step": 41
|
543 |
+
},
|
544 |
+
{
|
545 |
+
"Batch Mean": 0.43527090549468994,
|
546 |
+
"accuracy": 0.78125,
|
547 |
+
"epoch": 0.1025,
|
548 |
+
"step": 41
|
549 |
+
},
|
550 |
+
{
|
551 |
+
"epoch": 0.105,
|
552 |
+
"grad_norm": 12.555906295776367,
|
553 |
+
"learning_rate": 2.8263157894736845e-06,
|
554 |
+
"loss": 0.5316,
|
555 |
+
"step": 42
|
556 |
+
},
|
557 |
+
{
|
558 |
+
"Batch Mean": 0.02639901638031006,
|
559 |
+
"accuracy": 0.8046875,
|
560 |
+
"epoch": 0.105,
|
561 |
+
"step": 42
|
562 |
+
},
|
563 |
+
{
|
564 |
+
"epoch": 0.1075,
|
565 |
+
"grad_norm": 9.500948905944824,
|
566 |
+
"learning_rate": 2.8184210526315792e-06,
|
567 |
+
"loss": 0.4874,
|
568 |
+
"step": 43
|
569 |
+
},
|
570 |
+
{
|
571 |
+
"Batch Mean": -0.3524761199951172,
|
572 |
+
"accuracy": 0.7421875,
|
573 |
+
"epoch": 0.1075,
|
574 |
+
"step": 43
|
575 |
+
},
|
576 |
+
{
|
577 |
+
"epoch": 0.11,
|
578 |
+
"grad_norm": 10.417457580566406,
|
579 |
+
"learning_rate": 2.810526315789474e-06,
|
580 |
+
"loss": 0.5011,
|
581 |
+
"step": 44
|
582 |
+
},
|
583 |
+
{
|
584 |
+
"Batch Mean": -0.32391130924224854,
|
585 |
+
"accuracy": 0.8125,
|
586 |
+
"epoch": 0.11,
|
587 |
+
"step": 44
|
588 |
+
},
|
589 |
+
{
|
590 |
+
"epoch": 0.1125,
|
591 |
+
"grad_norm": 9.867128372192383,
|
592 |
+
"learning_rate": 2.8026315789473687e-06,
|
593 |
+
"loss": 0.4908,
|
594 |
+
"step": 45
|
595 |
+
},
|
596 |
+
{
|
597 |
+
"Batch Mean": -0.42060422897338867,
|
598 |
+
"accuracy": 0.8125,
|
599 |
+
"epoch": 0.1125,
|
600 |
+
"step": 45
|
601 |
+
},
|
602 |
+
{
|
603 |
+
"epoch": 0.115,
|
604 |
+
"grad_norm": 10.613035202026367,
|
605 |
+
"learning_rate": 2.7947368421052635e-06,
|
606 |
+
"loss": 0.4642,
|
607 |
+
"step": 46
|
608 |
+
},
|
609 |
+
{
|
610 |
+
"Batch Mean": 0.04145359992980957,
|
611 |
+
"accuracy": 0.7890625,
|
612 |
+
"epoch": 0.115,
|
613 |
+
"step": 46
|
614 |
+
},
|
615 |
+
{
|
616 |
+
"epoch": 0.1175,
|
617 |
+
"grad_norm": 12.13752555847168,
|
618 |
+
"learning_rate": 2.7868421052631578e-06,
|
619 |
+
"loss": 0.4943,
|
620 |
+
"step": 47
|
621 |
+
},
|
622 |
+
{
|
623 |
+
"Batch Mean": 0.24553179740905762,
|
624 |
+
"accuracy": 0.8046875,
|
625 |
+
"epoch": 0.1175,
|
626 |
+
"step": 47
|
627 |
+
},
|
628 |
+
{
|
629 |
+
"epoch": 0.12,
|
630 |
+
"grad_norm": 11.048128128051758,
|
631 |
+
"learning_rate": 2.7789473684210525e-06,
|
632 |
+
"loss": 0.3946,
|
633 |
+
"step": 48
|
634 |
+
},
|
635 |
+
{
|
636 |
+
"Batch Mean": -0.05052506923675537,
|
637 |
+
"accuracy": 0.796875,
|
638 |
+
"epoch": 0.12,
|
639 |
+
"step": 48
|
640 |
+
},
|
641 |
+
{
|
642 |
+
"epoch": 0.1225,
|
643 |
+
"grad_norm": 9.053565979003906,
|
644 |
+
"learning_rate": 2.7710526315789473e-06,
|
645 |
+
"loss": 0.4474,
|
646 |
+
"step": 49
|
647 |
+
},
|
648 |
+
{
|
649 |
+
"Batch Mean": -0.43336963653564453,
|
650 |
+
"accuracy": 0.7265625,
|
651 |
+
"epoch": 0.1225,
|
652 |
+
"step": 49
|
653 |
+
},
|
654 |
+
{
|
655 |
+
"epoch": 0.125,
|
656 |
+
"grad_norm": 15.04668140411377,
|
657 |
+
"learning_rate": 2.763157894736842e-06,
|
658 |
+
"loss": 0.5496,
|
659 |
+
"step": 50
|
660 |
+
},
|
661 |
+
{
|
662 |
+
"Batch Mean": -0.29952335357666016,
|
663 |
+
"accuracy": 0.765625,
|
664 |
+
"epoch": 0.125,
|
665 |
+
"step": 50
|
666 |
+
},
|
667 |
+
{
|
668 |
+
"epoch": 0.1275,
|
669 |
+
"grad_norm": 11.302435874938965,
|
670 |
+
"learning_rate": 2.7552631578947368e-06,
|
671 |
+
"loss": 0.4337,
|
672 |
+
"step": 51
|
673 |
+
},
|
674 |
+
{
|
675 |
+
"Batch Mean": -0.01873302459716797,
|
676 |
+
"accuracy": 0.828125,
|
677 |
+
"epoch": 0.1275,
|
678 |
+
"step": 51
|
679 |
+
},
|
680 |
+
{
|
681 |
+
"epoch": 0.13,
|
682 |
+
"grad_norm": 10.582301139831543,
|
683 |
+
"learning_rate": 2.7473684210526315e-06,
|
684 |
+
"loss": 0.4073,
|
685 |
+
"step": 52
|
686 |
+
},
|
687 |
+
{
|
688 |
+
"Batch Mean": 0.4117751717567444,
|
689 |
+
"accuracy": 0.8046875,
|
690 |
+
"epoch": 0.13,
|
691 |
+
"step": 52
|
692 |
+
},
|
693 |
+
{
|
694 |
+
"epoch": 0.1325,
|
695 |
+
"grad_norm": 9.776220321655273,
|
696 |
+
"learning_rate": 2.7394736842105263e-06,
|
697 |
+
"loss": 0.4235,
|
698 |
+
"step": 53
|
699 |
+
},
|
700 |
+
{
|
701 |
+
"Batch Mean": 0.5990171432495117,
|
702 |
+
"accuracy": 0.78125,
|
703 |
+
"epoch": 0.1325,
|
704 |
+
"step": 53
|
705 |
+
},
|
706 |
+
{
|
707 |
+
"epoch": 0.135,
|
708 |
+
"grad_norm": 12.647154808044434,
|
709 |
+
"learning_rate": 2.7315789473684214e-06,
|
710 |
+
"loss": 0.4858,
|
711 |
+
"step": 54
|
712 |
+
},
|
713 |
+
{
|
714 |
+
"Batch Mean": 0.2538492679595947,
|
715 |
+
"accuracy": 0.7265625,
|
716 |
+
"epoch": 0.135,
|
717 |
+
"step": 54
|
718 |
+
},
|
719 |
+
{
|
720 |
+
"epoch": 0.1375,
|
721 |
+
"grad_norm": 11.564103126525879,
|
722 |
+
"learning_rate": 2.723684210526316e-06,
|
723 |
+
"loss": 0.5233,
|
724 |
+
"step": 55
|
725 |
+
},
|
726 |
+
{
|
727 |
+
"Batch Mean": 0.17059040069580078,
|
728 |
+
"accuracy": 0.7578125,
|
729 |
+
"epoch": 0.1375,
|
730 |
+
"step": 55
|
731 |
+
},
|
732 |
+
{
|
733 |
+
"epoch": 0.14,
|
734 |
+
"grad_norm": 10.589515686035156,
|
735 |
+
"learning_rate": 2.715789473684211e-06,
|
736 |
+
"loss": 0.4762,
|
737 |
+
"step": 56
|
738 |
+
},
|
739 |
+
{
|
740 |
+
"Batch Mean": -0.3642357587814331,
|
741 |
+
"accuracy": 0.78125,
|
742 |
+
"epoch": 0.14,
|
743 |
+
"step": 56
|
744 |
+
},
|
745 |
+
{
|
746 |
+
"epoch": 0.1425,
|
747 |
+
"grad_norm": 10.727502822875977,
|
748 |
+
"learning_rate": 2.7078947368421052e-06,
|
749 |
+
"loss": 0.5289,
|
750 |
+
"step": 57
|
751 |
+
},
|
752 |
+
{
|
753 |
+
"Batch Mean": -0.5980481505393982,
|
754 |
+
"accuracy": 0.8203125,
|
755 |
+
"epoch": 0.1425,
|
756 |
+
"step": 57
|
757 |
+
},
|
758 |
+
{
|
759 |
+
"epoch": 0.145,
|
760 |
+
"grad_norm": 8.915611267089844,
|
761 |
+
"learning_rate": 2.7e-06,
|
762 |
+
"loss": 0.4038,
|
763 |
+
"step": 58
|
764 |
+
},
|
765 |
+
{
|
766 |
+
"Batch Mean": -0.46013855934143066,
|
767 |
+
"accuracy": 0.859375,
|
768 |
+
"epoch": 0.145,
|
769 |
+
"step": 58
|
770 |
+
},
|
771 |
+
{
|
772 |
+
"epoch": 0.1475,
|
773 |
+
"grad_norm": 9.178686141967773,
|
774 |
+
"learning_rate": 2.6921052631578947e-06,
|
775 |
+
"loss": 0.3708,
|
776 |
+
"step": 59
|
777 |
+
},
|
778 |
+
{
|
779 |
+
"Batch Mean": -0.1478586494922638,
|
780 |
+
"accuracy": 0.84375,
|
781 |
+
"epoch": 0.1475,
|
782 |
+
"step": 59
|
783 |
+
},
|
784 |
+
{
|
785 |
+
"epoch": 0.15,
|
786 |
+
"grad_norm": 6.339688301086426,
|
787 |
+
"learning_rate": 2.6842105263157895e-06,
|
788 |
+
"loss": 0.4036,
|
789 |
+
"step": 60
|
790 |
+
},
|
791 |
+
{
|
792 |
+
"Batch Mean": 0.003389716148376465,
|
793 |
+
"accuracy": 0.7578125,
|
794 |
+
"epoch": 0.15,
|
795 |
+
"step": 60
|
796 |
+
},
|
797 |
+
{
|
798 |
+
"epoch": 0.1525,
|
799 |
+
"grad_norm": 6.763300895690918,
|
800 |
+
"learning_rate": 2.6763157894736842e-06,
|
801 |
+
"loss": 0.5163,
|
802 |
+
"step": 61
|
803 |
+
},
|
804 |
+
{
|
805 |
+
"Batch Mean": 0.4018087387084961,
|
806 |
+
"accuracy": 0.7734375,
|
807 |
+
"epoch": 0.1525,
|
808 |
+
"step": 61
|
809 |
+
},
|
810 |
+
{
|
811 |
+
"epoch": 0.155,
|
812 |
+
"grad_norm": 8.631525039672852,
|
813 |
+
"learning_rate": 2.668421052631579e-06,
|
814 |
+
"loss": 0.4219,
|
815 |
+
"step": 62
|
816 |
+
},
|
817 |
+
{
|
818 |
+
"Batch Mean": 0.342004656791687,
|
819 |
+
"accuracy": 0.734375,
|
820 |
+
"epoch": 0.155,
|
821 |
+
"step": 62
|
822 |
+
},
|
823 |
+
{
|
824 |
+
"epoch": 0.1575,
|
825 |
+
"grad_norm": 9.190362930297852,
|
826 |
+
"learning_rate": 2.6605263157894737e-06,
|
827 |
+
"loss": 0.4708,
|
828 |
+
"step": 63
|
829 |
+
},
|
830 |
+
{
|
831 |
+
"Batch Mean": 0.5178697109222412,
|
832 |
+
"accuracy": 0.8125,
|
833 |
+
"epoch": 0.1575,
|
834 |
+
"step": 63
|
835 |
+
},
|
836 |
+
{
|
837 |
+
"epoch": 0.16,
|
838 |
+
"grad_norm": 10.207452774047852,
|
839 |
+
"learning_rate": 2.6526315789473685e-06,
|
840 |
+
"loss": 0.4458,
|
841 |
+
"step": 64
|
842 |
+
},
|
843 |
+
{
|
844 |
+
"Batch Mean": 0.03012150526046753,
|
845 |
+
"accuracy": 0.8125,
|
846 |
+
"epoch": 0.16,
|
847 |
+
"step": 64
|
848 |
+
},
|
849 |
+
{
|
850 |
+
"epoch": 0.1625,
|
851 |
+
"grad_norm": 8.050507545471191,
|
852 |
+
"learning_rate": 2.644736842105263e-06,
|
853 |
+
"loss": 0.4344,
|
854 |
+
"step": 65
|
855 |
+
},
|
856 |
+
{
|
857 |
+
"Batch Mean": -0.3691895604133606,
|
858 |
+
"accuracy": 0.78125,
|
859 |
+
"epoch": 0.1625,
|
860 |
+
"step": 65
|
861 |
+
},
|
862 |
+
{
|
863 |
+
"epoch": 0.165,
|
864 |
+
"grad_norm": 11.163555145263672,
|
865 |
+
"learning_rate": 2.636842105263158e-06,
|
866 |
+
"loss": 0.4276,
|
867 |
+
"step": 66
|
868 |
+
},
|
869 |
+
{
|
870 |
+
"Batch Mean": -0.2624788284301758,
|
871 |
+
"accuracy": 0.8125,
|
872 |
+
"epoch": 0.165,
|
873 |
+
"step": 66
|
874 |
+
},
|
875 |
+
{
|
876 |
+
"epoch": 0.1675,
|
877 |
+
"grad_norm": 9.523059844970703,
|
878 |
+
"learning_rate": 2.6289473684210527e-06,
|
879 |
+
"loss": 0.4001,
|
880 |
+
"step": 67
|
881 |
+
},
|
882 |
+
{
|
883 |
+
"Batch Mean": -0.0055138468742370605,
|
884 |
+
"accuracy": 0.8046875,
|
885 |
+
"epoch": 0.1675,
|
886 |
+
"step": 67
|
887 |
+
},
|
888 |
+
{
|
889 |
+
"epoch": 0.17,
|
890 |
+
"grad_norm": 9.094910621643066,
|
891 |
+
"learning_rate": 2.6210526315789474e-06,
|
892 |
+
"loss": 0.4024,
|
893 |
+
"step": 68
|
894 |
+
},
|
895 |
+
{
|
896 |
+
"Batch Mean": 0.2572704553604126,
|
897 |
+
"accuracy": 0.7734375,
|
898 |
+
"epoch": 0.17,
|
899 |
+
"step": 68
|
900 |
+
},
|
901 |
+
{
|
902 |
+
"epoch": 0.1725,
|
903 |
+
"grad_norm": 10.00645923614502,
|
904 |
+
"learning_rate": 2.613157894736842e-06,
|
905 |
+
"loss": 0.4802,
|
906 |
+
"step": 69
|
907 |
+
},
|
908 |
+
{
|
909 |
+
"Batch Mean": 0.5112218856811523,
|
910 |
+
"accuracy": 0.8046875,
|
911 |
+
"epoch": 0.1725,
|
912 |
+
"step": 69
|
913 |
+
},
|
914 |
+
{
|
915 |
+
"epoch": 0.175,
|
916 |
+
"grad_norm": 11.776649475097656,
|
917 |
+
"learning_rate": 2.605263157894737e-06,
|
918 |
+
"loss": 0.4194,
|
919 |
+
"step": 70
|
920 |
+
},
|
921 |
+
{
|
922 |
+
"Batch Mean": 0.29661768674850464,
|
923 |
+
"accuracy": 0.8125,
|
924 |
+
"epoch": 0.175,
|
925 |
+
"step": 70
|
926 |
+
},
|
927 |
+
{
|
928 |
+
"epoch": 0.1775,
|
929 |
+
"grad_norm": 9.701162338256836,
|
930 |
+
"learning_rate": 2.5973684210526317e-06,
|
931 |
+
"loss": 0.4356,
|
932 |
+
"step": 71
|
933 |
+
},
|
934 |
+
{
|
935 |
+
"Batch Mean": 0.049837589263916016,
|
936 |
+
"accuracy": 0.859375,
|
937 |
+
"epoch": 0.1775,
|
938 |
+
"step": 71
|
939 |
+
},
|
940 |
+
{
|
941 |
+
"epoch": 0.18,
|
942 |
+
"grad_norm": 8.692646980285645,
|
943 |
+
"learning_rate": 2.5894736842105264e-06,
|
944 |
+
"loss": 0.2881,
|
945 |
+
"step": 72
|
946 |
+
},
|
947 |
+
{
|
948 |
+
"Batch Mean": -0.3786022663116455,
|
949 |
+
"accuracy": 0.8125,
|
950 |
+
"epoch": 0.18,
|
951 |
+
"step": 72
|
952 |
+
},
|
953 |
+
{
|
954 |
+
"epoch": 0.1825,
|
955 |
+
"grad_norm": 10.834145545959473,
|
956 |
+
"learning_rate": 2.581578947368421e-06,
|
957 |
+
"loss": 0.4654,
|
958 |
+
"step": 73
|
959 |
+
},
|
960 |
+
{
|
961 |
+
"Batch Mean": -0.20977401733398438,
|
962 |
+
"accuracy": 0.8515625,
|
963 |
+
"epoch": 0.1825,
|
964 |
+
"step": 73
|
965 |
+
},
|
966 |
+
{
|
967 |
+
"epoch": 0.185,
|
968 |
+
"grad_norm": 7.816598892211914,
|
969 |
+
"learning_rate": 2.573684210526316e-06,
|
970 |
+
"loss": 0.4101,
|
971 |
+
"step": 74
|
972 |
+
},
|
973 |
+
{
|
974 |
+
"Batch Mean": -0.6599991321563721,
|
975 |
+
"accuracy": 0.8203125,
|
976 |
+
"epoch": 0.185,
|
977 |
+
"step": 74
|
978 |
+
},
|
979 |
+
{
|
980 |
+
"epoch": 0.1875,
|
981 |
+
"grad_norm": 13.089007377624512,
|
982 |
+
"learning_rate": 2.5657894736842107e-06,
|
983 |
+
"loss": 0.427,
|
984 |
+
"step": 75
|
985 |
+
},
|
986 |
+
{
|
987 |
+
"Batch Mean": -0.37617337703704834,
|
988 |
+
"accuracy": 0.7734375,
|
989 |
+
"epoch": 0.1875,
|
990 |
+
"step": 75
|
991 |
+
},
|
992 |
+
{
|
993 |
+
"epoch": 0.19,
|
994 |
+
"grad_norm": 12.075210571289062,
|
995 |
+
"learning_rate": 2.5578947368421054e-06,
|
996 |
+
"loss": 0.4797,
|
997 |
+
"step": 76
|
998 |
+
},
|
999 |
+
{
|
1000 |
+
"Batch Mean": 0.1281442642211914,
|
1001 |
+
"accuracy": 0.8046875,
|
1002 |
+
"epoch": 0.19,
|
1003 |
+
"step": 76
|
1004 |
+
},
|
1005 |
+
{
|
1006 |
+
"epoch": 0.1925,
|
1007 |
+
"grad_norm": 9.70462703704834,
|
1008 |
+
"learning_rate": 2.55e-06,
|
1009 |
+
"loss": 0.4425,
|
1010 |
+
"step": 77
|
1011 |
+
},
|
1012 |
+
{
|
1013 |
+
"Batch Mean": 0.6071650981903076,
|
1014 |
+
"accuracy": 0.828125,
|
1015 |
+
"epoch": 0.1925,
|
1016 |
+
"step": 77
|
1017 |
+
},
|
1018 |
+
{
|
1019 |
+
"epoch": 0.195,
|
1020 |
+
"grad_norm": 14.395353317260742,
|
1021 |
+
"learning_rate": 2.542105263157895e-06,
|
1022 |
+
"loss": 0.4016,
|
1023 |
+
"step": 78
|
1024 |
+
},
|
1025 |
+
{
|
1026 |
+
"Batch Mean": 0.34730714559555054,
|
1027 |
+
"accuracy": 0.8203125,
|
1028 |
+
"epoch": 0.195,
|
1029 |
+
"step": 78
|
1030 |
+
},
|
1031 |
+
{
|
1032 |
+
"epoch": 0.1975,
|
1033 |
+
"grad_norm": 9.122536659240723,
|
1034 |
+
"learning_rate": 2.5342105263157892e-06,
|
1035 |
+
"loss": 0.3994,
|
1036 |
+
"step": 79
|
1037 |
+
},
|
1038 |
+
{
|
1039 |
+
"Batch Mean": 0.36483922600746155,
|
1040 |
+
"accuracy": 0.828125,
|
1041 |
+
"epoch": 0.1975,
|
1042 |
+
"step": 79
|
1043 |
+
},
|
1044 |
+
{
|
1045 |
+
"epoch": 0.2,
|
1046 |
+
"grad_norm": 10.289307594299316,
|
1047 |
+
"learning_rate": 2.526315789473684e-06,
|
1048 |
+
"loss": 0.368,
|
1049 |
+
"step": 80
|
1050 |
+
},
|
1051 |
+
{
|
1052 |
+
"Batch Mean": -0.20039799809455872,
|
1053 |
+
"accuracy": 0.8125,
|
1054 |
+
"epoch": 0.2,
|
1055 |
+
"step": 80
|
1056 |
+
},
|
1057 |
+
{
|
1058 |
+
"epoch": 0.2025,
|
1059 |
+
"grad_norm": 7.813342094421387,
|
1060 |
+
"learning_rate": 2.5184210526315787e-06,
|
1061 |
+
"loss": 0.3679,
|
1062 |
+
"step": 81
|
1063 |
+
},
|
1064 |
+
{
|
1065 |
+
"Batch Mean": -0.1629079282283783,
|
1066 |
+
"accuracy": 0.8203125,
|
1067 |
+
"epoch": 0.2025,
|
1068 |
+
"step": 81
|
1069 |
+
},
|
1070 |
+
{
|
1071 |
+
"epoch": 0.205,
|
1072 |
+
"grad_norm": 7.504952430725098,
|
1073 |
+
"learning_rate": 2.510526315789474e-06,
|
1074 |
+
"loss": 0.3823,
|
1075 |
+
"step": 82
|
1076 |
+
},
|
1077 |
+
{
|
1078 |
+
"Batch Mean": -0.07863587141036987,
|
1079 |
+
"accuracy": 0.8046875,
|
1080 |
+
"epoch": 0.205,
|
1081 |
+
"step": 82
|
1082 |
+
},
|
1083 |
+
{
|
1084 |
+
"epoch": 0.2075,
|
1085 |
+
"grad_norm": 7.721461296081543,
|
1086 |
+
"learning_rate": 2.5026315789473686e-06,
|
1087 |
+
"loss": 0.3967,
|
1088 |
+
"step": 83
|
1089 |
+
},
|
1090 |
+
{
|
1091 |
+
"Batch Mean": 0.17194491624832153,
|
1092 |
+
"accuracy": 0.8125,
|
1093 |
+
"epoch": 0.2075,
|
1094 |
+
"step": 83
|
1095 |
+
},
|
1096 |
+
{
|
1097 |
+
"epoch": 0.21,
|
1098 |
+
"grad_norm": 8.062063217163086,
|
1099 |
+
"learning_rate": 2.4947368421052634e-06,
|
1100 |
+
"loss": 0.4195,
|
1101 |
+
"step": 84
|
1102 |
+
},
|
1103 |
+
{
|
1104 |
+
"Batch Mean": 0.11748838424682617,
|
1105 |
+
"accuracy": 0.8359375,
|
1106 |
+
"epoch": 0.21,
|
1107 |
+
"step": 84
|
1108 |
+
},
|
1109 |
+
{
|
1110 |
+
"epoch": 0.2125,
|
1111 |
+
"grad_norm": 8.320355415344238,
|
1112 |
+
"learning_rate": 2.486842105263158e-06,
|
1113 |
+
"loss": 0.3864,
|
1114 |
+
"step": 85
|
1115 |
+
},
|
1116 |
+
{
|
1117 |
+
"Batch Mean": -0.40801382064819336,
|
1118 |
+
"accuracy": 0.7734375,
|
1119 |
+
"epoch": 0.2125,
|
1120 |
+
"step": 85
|
1121 |
+
},
|
1122 |
+
{
|
1123 |
+
"epoch": 0.215,
|
1124 |
+
"grad_norm": 14.8066987991333,
|
1125 |
+
"learning_rate": 2.478947368421053e-06,
|
1126 |
+
"loss": 0.4639,
|
1127 |
+
"step": 86
|
1128 |
+
},
|
1129 |
+
{
|
1130 |
+
"Batch Mean": -0.35811758041381836,
|
1131 |
+
"accuracy": 0.7734375,
|
1132 |
+
"epoch": 0.215,
|
1133 |
+
"step": 86
|
1134 |
+
},
|
1135 |
+
{
|
1136 |
+
"epoch": 0.2175,
|
1137 |
+
"grad_norm": 14.074177742004395,
|
1138 |
+
"learning_rate": 2.4710526315789476e-06,
|
1139 |
+
"loss": 0.4999,
|
1140 |
+
"step": 87
|
1141 |
+
},
|
1142 |
+
{
|
1143 |
+
"Batch Mean": 0.278584361076355,
|
1144 |
+
"accuracy": 0.7734375,
|
1145 |
+
"epoch": 0.2175,
|
1146 |
+
"step": 87
|
1147 |
+
},
|
1148 |
+
{
|
1149 |
+
"epoch": 0.22,
|
1150 |
+
"grad_norm": 10.59004020690918,
|
1151 |
+
"learning_rate": 2.4631578947368424e-06,
|
1152 |
+
"loss": 0.404,
|
1153 |
+
"step": 88
|
1154 |
+
},
|
1155 |
+
{
|
1156 |
+
"Batch Mean": -0.21054387092590332,
|
1157 |
+
"accuracy": 0.84375,
|
1158 |
+
"epoch": 0.22,
|
1159 |
+
"step": 88
|
1160 |
+
},
|
1161 |
+
{
|
1162 |
+
"epoch": 0.2225,
|
1163 |
+
"grad_norm": 8.488351821899414,
|
1164 |
+
"learning_rate": 2.4552631578947367e-06,
|
1165 |
+
"loss": 0.3517,
|
1166 |
+
"step": 89
|
1167 |
+
},
|
1168 |
+
{
|
1169 |
+
"Batch Mean": -0.22967231273651123,
|
1170 |
+
"accuracy": 0.84375,
|
1171 |
+
"epoch": 0.2225,
|
1172 |
+
"step": 89
|
1173 |
+
},
|
1174 |
+
{
|
1175 |
+
"epoch": 0.225,
|
1176 |
+
"grad_norm": 10.347502708435059,
|
1177 |
+
"learning_rate": 2.4473684210526314e-06,
|
1178 |
+
"loss": 0.3382,
|
1179 |
+
"step": 90
|
1180 |
+
},
|
1181 |
+
{
|
1182 |
+
"Batch Mean": 0.1892259418964386,
|
1183 |
+
"accuracy": 0.7890625,
|
1184 |
+
"epoch": 0.225,
|
1185 |
+
"step": 90
|
1186 |
+
},
|
1187 |
+
{
|
1188 |
+
"epoch": 0.2275,
|
1189 |
+
"grad_norm": 10.092534065246582,
|
1190 |
+
"learning_rate": 2.439473684210526e-06,
|
1191 |
+
"loss": 0.4586,
|
1192 |
+
"step": 91
|
1193 |
+
},
|
1194 |
+
{
|
1195 |
+
"Batch Mean": 0.516247570514679,
|
1196 |
+
"accuracy": 0.8828125,
|
1197 |
+
"epoch": 0.2275,
|
1198 |
+
"step": 91
|
1199 |
+
},
|
1200 |
+
{
|
1201 |
+
"epoch": 0.23,
|
1202 |
+
"grad_norm": 13.944212913513184,
|
1203 |
+
"learning_rate": 2.431578947368421e-06,
|
1204 |
+
"loss": 0.3067,
|
1205 |
+
"step": 92
|
1206 |
+
},
|
1207 |
+
{
|
1208 |
+
"Batch Mean": 0.056681275367736816,
|
1209 |
+
"accuracy": 0.7890625,
|
1210 |
+
"epoch": 0.23,
|
1211 |
+
"step": 92
|
1212 |
+
},
|
1213 |
+
{
|
1214 |
+
"epoch": 0.2325,
|
1215 |
+
"grad_norm": 8.53646183013916,
|
1216 |
+
"learning_rate": 2.4236842105263157e-06,
|
1217 |
+
"loss": 0.3946,
|
1218 |
+
"step": 93
|
1219 |
+
},
|
1220 |
+
{
|
1221 |
+
"Batch Mean": -0.47129684686660767,
|
1222 |
+
"accuracy": 0.8359375,
|
1223 |
+
"epoch": 0.2325,
|
1224 |
+
"step": 93
|
1225 |
+
},
|
1226 |
+
{
|
1227 |
+
"epoch": 0.235,
|
1228 |
+
"grad_norm": 11.441537857055664,
|
1229 |
+
"learning_rate": 2.4157894736842104e-06,
|
1230 |
+
"loss": 0.3891,
|
1231 |
+
"step": 94
|
1232 |
+
},
|
1233 |
+
{
|
1234 |
+
"Batch Mean": -0.3262195587158203,
|
1235 |
+
"accuracy": 0.84375,
|
1236 |
+
"epoch": 0.235,
|
1237 |
+
"step": 94
|
1238 |
+
},
|
1239 |
+
{
|
1240 |
+
"epoch": 0.2375,
|
1241 |
+
"grad_norm": 10.751629829406738,
|
1242 |
+
"learning_rate": 2.4078947368421056e-06,
|
1243 |
+
"loss": 0.3578,
|
1244 |
+
"step": 95
|
1245 |
+
},
|
1246 |
+
{
|
1247 |
+
"Batch Mean": -0.6593484878540039,
|
1248 |
+
"accuracy": 0.828125,
|
1249 |
+
"epoch": 0.2375,
|
1250 |
+
"step": 95
|
1251 |
+
},
|
1252 |
+
{
|
1253 |
+
"epoch": 0.24,
|
1254 |
+
"grad_norm": 15.914350509643555,
|
1255 |
+
"learning_rate": 2.4000000000000003e-06,
|
1256 |
+
"loss": 0.4204,
|
1257 |
+
"step": 96
|
1258 |
+
},
|
1259 |
+
{
|
1260 |
+
"Batch Mean": -0.32147085666656494,
|
1261 |
+
"accuracy": 0.8359375,
|
1262 |
+
"epoch": 0.24,
|
1263 |
+
"step": 96
|
1264 |
+
},
|
1265 |
+
{
|
1266 |
+
"epoch": 0.2425,
|
1267 |
+
"grad_norm": 11.814691543579102,
|
1268 |
+
"learning_rate": 2.392105263157895e-06,
|
1269 |
+
"loss": 0.3892,
|
1270 |
+
"step": 97
|
1271 |
+
},
|
1272 |
+
{
|
1273 |
+
"Batch Mean": 0.49291136860847473,
|
1274 |
+
"accuracy": 0.875,
|
1275 |
+
"epoch": 0.2425,
|
1276 |
+
"step": 97
|
1277 |
+
},
|
1278 |
+
{
|
1279 |
+
"epoch": 0.245,
|
1280 |
+
"grad_norm": 11.86365795135498,
|
1281 |
+
"learning_rate": 2.38421052631579e-06,
|
1282 |
+
"loss": 0.3264,
|
1283 |
+
"step": 98
|
1284 |
+
},
|
1285 |
+
{
|
1286 |
+
"Batch Mean": 0.49174070358276367,
|
1287 |
+
"accuracy": 0.8515625,
|
1288 |
+
"epoch": 0.245,
|
1289 |
+
"step": 98
|
1290 |
+
},
|
1291 |
+
{
|
1292 |
+
"epoch": 0.2475,
|
1293 |
+
"grad_norm": 10.874544143676758,
|
1294 |
+
"learning_rate": 2.376315789473684e-06,
|
1295 |
+
"loss": 0.3847,
|
1296 |
+
"step": 99
|
1297 |
+
},
|
1298 |
+
{
|
1299 |
+
"Batch Mean": 0.6919900178909302,
|
1300 |
+
"accuracy": 0.796875,
|
1301 |
+
"epoch": 0.2475,
|
1302 |
+
"step": 99
|
1303 |
+
},
|
1304 |
+
{
|
1305 |
+
"epoch": 0.25,
|
1306 |
+
"grad_norm": 15.105185508728027,
|
1307 |
+
"learning_rate": 2.368421052631579e-06,
|
1308 |
+
"loss": 0.4066,
|
1309 |
+
"step": 100
|
1310 |
+
},
|
1311 |
+
{
|
1312 |
+
"Batch Mean": 0.061200618743896484,
|
1313 |
+
"accuracy": 0.7734375,
|
1314 |
+
"epoch": 0.25,
|
1315 |
+
"step": 100
|
1316 |
+
},
|
1317 |
+
{
|
1318 |
+
"epoch": 0.2525,
|
1319 |
+
"grad_norm": 8.795661926269531,
|
1320 |
+
"learning_rate": 2.3605263157894736e-06,
|
1321 |
+
"loss": 0.4193,
|
1322 |
+
"step": 101
|
1323 |
+
},
|
1324 |
+
{
|
1325 |
+
"Batch Mean": -0.4929161071777344,
|
1326 |
+
"accuracy": 0.7890625,
|
1327 |
+
"epoch": 0.2525,
|
1328 |
+
"step": 101
|
1329 |
+
},
|
1330 |
+
{
|
1331 |
+
"epoch": 0.255,
|
1332 |
+
"grad_norm": 12.120612144470215,
|
1333 |
+
"learning_rate": 2.3526315789473684e-06,
|
1334 |
+
"loss": 0.4833,
|
1335 |
+
"step": 102
|
1336 |
+
},
|
1337 |
+
{
|
1338 |
+
"Batch Mean": -0.48431068658828735,
|
1339 |
+
"accuracy": 0.859375,
|
1340 |
+
"epoch": 0.255,
|
1341 |
+
"step": 102
|
1342 |
+
},
|
1343 |
+
{
|
1344 |
+
"epoch": 0.2575,
|
1345 |
+
"grad_norm": 10.263632774353027,
|
1346 |
+
"learning_rate": 2.344736842105263e-06,
|
1347 |
+
"loss": 0.3397,
|
1348 |
+
"step": 103
|
1349 |
+
},
|
1350 |
+
{
|
1351 |
+
"Batch Mean": -0.2162787914276123,
|
1352 |
+
"accuracy": 0.8203125,
|
1353 |
+
"epoch": 0.2575,
|
1354 |
+
"step": 103
|
1355 |
+
},
|
1356 |
+
{
|
1357 |
+
"epoch": 0.26,
|
1358 |
+
"grad_norm": 7.323156356811523,
|
1359 |
+
"learning_rate": 2.336842105263158e-06,
|
1360 |
+
"loss": 0.3688,
|
1361 |
+
"step": 104
|
1362 |
+
},
|
1363 |
+
{
|
1364 |
+
"Batch Mean": 0.2203059196472168,
|
1365 |
+
"accuracy": 0.8515625,
|
1366 |
+
"epoch": 0.26,
|
1367 |
+
"step": 104
|
1368 |
+
},
|
1369 |
+
{
|
1370 |
+
"epoch": 0.2625,
|
1371 |
+
"grad_norm": 7.128310203552246,
|
1372 |
+
"learning_rate": 2.3289473684210526e-06,
|
1373 |
+
"loss": 0.3454,
|
1374 |
+
"step": 105
|
1375 |
+
},
|
1376 |
+
{
|
1377 |
+
"Batch Mean": 0.19034957885742188,
|
1378 |
+
"accuracy": 0.8828125,
|
1379 |
+
"epoch": 0.2625,
|
1380 |
+
"step": 105
|
1381 |
+
},
|
1382 |
+
{
|
1383 |
+
"epoch": 0.265,
|
1384 |
+
"grad_norm": 7.388917446136475,
|
1385 |
+
"learning_rate": 2.3210526315789473e-06,
|
1386 |
+
"loss": 0.3317,
|
1387 |
+
"step": 106
|
1388 |
+
},
|
1389 |
+
{
|
1390 |
+
"Batch Mean": -0.0413057804107666,
|
1391 |
+
"accuracy": 0.796875,
|
1392 |
+
"epoch": 0.265,
|
1393 |
+
"step": 106
|
1394 |
+
},
|
1395 |
+
{
|
1396 |
+
"epoch": 0.2675,
|
1397 |
+
"grad_norm": 9.412615776062012,
|
1398 |
+
"learning_rate": 2.313157894736842e-06,
|
1399 |
+
"loss": 0.4393,
|
1400 |
+
"step": 107
|
1401 |
+
},
|
1402 |
+
{
|
1403 |
+
"Batch Mean": 0.473476767539978,
|
1404 |
+
"accuracy": 0.875,
|
1405 |
+
"epoch": 0.2675,
|
1406 |
+
"step": 107
|
1407 |
+
},
|
1408 |
+
{
|
1409 |
+
"epoch": 0.27,
|
1410 |
+
"grad_norm": 11.040026664733887,
|
1411 |
+
"learning_rate": 2.305263157894737e-06,
|
1412 |
+
"loss": 0.35,
|
1413 |
+
"step": 108
|
1414 |
+
},
|
1415 |
+
{
|
1416 |
+
"Batch Mean": 0.37884294986724854,
|
1417 |
+
"accuracy": 0.875,
|
1418 |
+
"epoch": 0.27,
|
1419 |
+
"step": 108
|
1420 |
+
},
|
1421 |
+
{
|
1422 |
+
"epoch": 0.2725,
|
1423 |
+
"grad_norm": 12.01086711883545,
|
1424 |
+
"learning_rate": 2.2973684210526316e-06,
|
1425 |
+
"loss": 0.3001,
|
1426 |
+
"step": 109
|
1427 |
+
},
|
1428 |
+
{
|
1429 |
+
"Batch Mean": 0.4409904479980469,
|
1430 |
+
"accuracy": 0.8828125,
|
1431 |
+
"epoch": 0.2725,
|
1432 |
+
"step": 109
|
1433 |
+
},
|
1434 |
+
{
|
1435 |
+
"epoch": 0.275,
|
1436 |
+
"grad_norm": 12.842291831970215,
|
1437 |
+
"learning_rate": 2.2894736842105263e-06,
|
1438 |
+
"loss": 0.2767,
|
1439 |
+
"step": 110
|
1440 |
+
},
|
1441 |
+
{
|
1442 |
+
"Batch Mean": -0.12960529327392578,
|
1443 |
+
"accuracy": 0.7890625,
|
1444 |
+
"epoch": 0.275,
|
1445 |
+
"step": 110
|
1446 |
+
},
|
1447 |
+
{
|
1448 |
+
"epoch": 0.2775,
|
1449 |
+
"grad_norm": 11.811309814453125,
|
1450 |
+
"learning_rate": 2.281578947368421e-06,
|
1451 |
+
"loss": 0.4361,
|
1452 |
+
"step": 111
|
1453 |
+
},
|
1454 |
+
{
|
1455 |
+
"Batch Mean": -0.3953084945678711,
|
1456 |
+
"accuracy": 0.7578125,
|
1457 |
+
"epoch": 0.2775,
|
1458 |
+
"step": 111
|
1459 |
+
},
|
1460 |
+
{
|
1461 |
+
"epoch": 0.28,
|
1462 |
+
"grad_norm": 14.014053344726562,
|
1463 |
+
"learning_rate": 2.273684210526316e-06,
|
1464 |
+
"loss": 0.5185,
|
1465 |
+
"step": 112
|
1466 |
+
},
|
1467 |
+
{
|
1468 |
+
"Batch Mean": -0.16724836826324463,
|
1469 |
+
"accuracy": 0.859375,
|
1470 |
+
"epoch": 0.28,
|
1471 |
+
"step": 112
|
1472 |
+
},
|
1473 |
+
{
|
1474 |
+
"epoch": 0.2825,
|
1475 |
+
"grad_norm": 7.608469486236572,
|
1476 |
+
"learning_rate": 2.2657894736842106e-06,
|
1477 |
+
"loss": 0.3033,
|
1478 |
+
"step": 113
|
1479 |
+
},
|
1480 |
+
{
|
1481 |
+
"Batch Mean": -0.36876964569091797,
|
1482 |
+
"accuracy": 0.8203125,
|
1483 |
+
"epoch": 0.2825,
|
1484 |
+
"step": 113
|
1485 |
+
},
|
1486 |
+
{
|
1487 |
+
"epoch": 0.285,
|
1488 |
+
"grad_norm": 11.263389587402344,
|
1489 |
+
"learning_rate": 2.2578947368421053e-06,
|
1490 |
+
"loss": 0.4069,
|
1491 |
+
"step": 114
|
1492 |
+
},
|
1493 |
+
{
|
1494 |
+
"Batch Mean": 0.22658658027648926,
|
1495 |
+
"accuracy": 0.7734375,
|
1496 |
+
"epoch": 0.285,
|
1497 |
+
"step": 114
|
1498 |
+
},
|
1499 |
+
{
|
1500 |
+
"epoch": 0.2875,
|
1501 |
+
"grad_norm": 11.426595687866211,
|
1502 |
+
"learning_rate": 2.25e-06,
|
1503 |
+
"loss": 0.4412,
|
1504 |
+
"step": 115
|
1505 |
+
},
|
1506 |
+
{
|
1507 |
+
"Batch Mean": 0.5346584320068359,
|
1508 |
+
"accuracy": 0.8359375,
|
1509 |
+
"epoch": 0.2875,
|
1510 |
+
"step": 115
|
1511 |
+
},
|
1512 |
+
{
|
1513 |
+
"epoch": 0.29,
|
1514 |
+
"grad_norm": 11.347992897033691,
|
1515 |
+
"learning_rate": 2.242105263157895e-06,
|
1516 |
+
"loss": 0.3996,
|
1517 |
+
"step": 116
|
1518 |
+
},
|
1519 |
+
{
|
1520 |
+
"Batch Mean": -0.40567731857299805,
|
1521 |
+
"accuracy": 0.8671875,
|
1522 |
+
"epoch": 0.29,
|
1523 |
+
"step": 116
|
1524 |
+
},
|
1525 |
+
{
|
1526 |
+
"epoch": 0.2925,
|
1527 |
+
"grad_norm": 9.157360076904297,
|
1528 |
+
"learning_rate": 2.2342105263157895e-06,
|
1529 |
+
"loss": 0.3318,
|
1530 |
+
"step": 117
|
1531 |
+
},
|
1532 |
+
{
|
1533 |
+
"Batch Mean": -0.1567370891571045,
|
1534 |
+
"accuracy": 0.8046875,
|
1535 |
+
"epoch": 0.2925,
|
1536 |
+
"step": 117
|
1537 |
+
},
|
1538 |
+
{
|
1539 |
+
"epoch": 0.295,
|
1540 |
+
"grad_norm": 12.001374244689941,
|
1541 |
+
"learning_rate": 2.2263157894736843e-06,
|
1542 |
+
"loss": 0.4401,
|
1543 |
+
"step": 118
|
1544 |
+
},
|
1545 |
+
{
|
1546 |
+
"Batch Mean": -0.357755184173584,
|
1547 |
+
"accuracy": 0.8671875,
|
1548 |
+
"epoch": 0.295,
|
1549 |
+
"step": 118
|
1550 |
+
},
|
1551 |
+
{
|
1552 |
+
"epoch": 0.2975,
|
1553 |
+
"grad_norm": 8.508570671081543,
|
1554 |
+
"learning_rate": 2.218421052631579e-06,
|
1555 |
+
"loss": 0.3305,
|
1556 |
+
"step": 119
|
1557 |
+
},
|
1558 |
+
{
|
1559 |
+
"Batch Mean": -0.35381609201431274,
|
1560 |
+
"accuracy": 0.8046875,
|
1561 |
+
"epoch": 0.2975,
|
1562 |
+
"step": 119
|
1563 |
+
},
|
1564 |
+
{
|
1565 |
+
"epoch": 0.3,
|
1566 |
+
"grad_norm": 8.094682693481445,
|
1567 |
+
"learning_rate": 2.2105263157894738e-06,
|
1568 |
+
"loss": 0.3984,
|
1569 |
+
"step": 120
|
1570 |
+
},
|
1571 |
+
{
|
1572 |
+
"Batch Mean": 0.22805237770080566,
|
1573 |
+
"accuracy": 0.8515625,
|
1574 |
+
"epoch": 0.3,
|
1575 |
+
"step": 120
|
1576 |
+
},
|
1577 |
+
{
|
1578 |
+
"epoch": 0.3025,
|
1579 |
+
"grad_norm": 9.788799285888672,
|
1580 |
+
"learning_rate": 2.2026315789473685e-06,
|
1581 |
+
"loss": 0.3478,
|
1582 |
+
"step": 121
|
1583 |
+
},
|
1584 |
+
{
|
1585 |
+
"Batch Mean": 0.5038647651672363,
|
1586 |
+
"accuracy": 0.859375,
|
1587 |
+
"epoch": 0.3025,
|
1588 |
+
"step": 121
|
1589 |
+
},
|
1590 |
+
{
|
1591 |
+
"epoch": 0.305,
|
1592 |
+
"grad_norm": 9.84559440612793,
|
1593 |
+
"learning_rate": 2.1947368421052633e-06,
|
1594 |
+
"loss": 0.3561,
|
1595 |
+
"step": 122
|
1596 |
+
},
|
1597 |
+
{
|
1598 |
+
"Batch Mean": 0.7104835510253906,
|
1599 |
+
"accuracy": 0.828125,
|
1600 |
+
"epoch": 0.305,
|
1601 |
+
"step": 122
|
1602 |
+
},
|
1603 |
+
{
|
1604 |
+
"epoch": 0.3075,
|
1605 |
+
"grad_norm": 11.43686580657959,
|
1606 |
+
"learning_rate": 2.186842105263158e-06,
|
1607 |
+
"loss": 0.3686,
|
1608 |
+
"step": 123
|
1609 |
+
},
|
1610 |
+
{
|
1611 |
+
"Batch Mean": -0.007034778594970703,
|
1612 |
+
"accuracy": 0.796875,
|
1613 |
+
"epoch": 0.3075,
|
1614 |
+
"step": 123
|
1615 |
+
},
|
1616 |
+
{
|
1617 |
+
"epoch": 0.31,
|
1618 |
+
"grad_norm": 8.770352363586426,
|
1619 |
+
"learning_rate": 2.1789473684210528e-06,
|
1620 |
+
"loss": 0.3772,
|
1621 |
+
"step": 124
|
1622 |
+
},
|
1623 |
+
{
|
1624 |
+
"Batch Mean": 0.036529541015625,
|
1625 |
+
"accuracy": 0.7890625,
|
1626 |
+
"epoch": 0.31,
|
1627 |
+
"step": 124
|
1628 |
+
},
|
1629 |
+
{
|
1630 |
+
"epoch": 0.3125,
|
1631 |
+
"grad_norm": 13.17721939086914,
|
1632 |
+
"learning_rate": 2.1710526315789475e-06,
|
1633 |
+
"loss": 0.5148,
|
1634 |
+
"step": 125
|
1635 |
+
},
|
1636 |
+
{
|
1637 |
+
"Batch Mean": -0.30262577533721924,
|
1638 |
+
"accuracy": 0.875,
|
1639 |
+
"epoch": 0.3125,
|
1640 |
+
"step": 125
|
1641 |
+
},
|
1642 |
+
{
|
1643 |
+
"epoch": 0.315,
|
1644 |
+
"grad_norm": 8.691415786743164,
|
1645 |
+
"learning_rate": 2.1631578947368423e-06,
|
1646 |
+
"loss": 0.3671,
|
1647 |
+
"step": 126
|
1648 |
+
},
|
1649 |
+
{
|
1650 |
+
"Batch Mean": -0.12425446510314941,
|
1651 |
+
"accuracy": 0.8515625,
|
1652 |
+
"epoch": 0.315,
|
1653 |
+
"step": 126
|
1654 |
+
},
|
1655 |
+
{
|
1656 |
+
"epoch": 0.3175,
|
1657 |
+
"grad_norm": 8.049582481384277,
|
1658 |
+
"learning_rate": 2.155263157894737e-06,
|
1659 |
+
"loss": 0.3522,
|
1660 |
+
"step": 127
|
1661 |
+
},
|
1662 |
+
{
|
1663 |
+
"Batch Mean": -0.4603520631790161,
|
1664 |
+
"accuracy": 0.765625,
|
1665 |
+
"epoch": 0.3175,
|
1666 |
+
"step": 127
|
1667 |
+
},
|
1668 |
+
{
|
1669 |
+
"epoch": 0.32,
|
1670 |
+
"grad_norm": 10.966066360473633,
|
1671 |
+
"learning_rate": 2.1473684210526317e-06,
|
1672 |
+
"loss": 0.4656,
|
1673 |
+
"step": 128
|
1674 |
+
},
|
1675 |
+
{
|
1676 |
+
"Batch Mean": 0.0716085433959961,
|
1677 |
+
"accuracy": 0.796875,
|
1678 |
+
"epoch": 0.32,
|
1679 |
+
"step": 128
|
1680 |
+
},
|
1681 |
+
{
|
1682 |
+
"epoch": 0.3225,
|
1683 |
+
"grad_norm": 7.68458890914917,
|
1684 |
+
"learning_rate": 2.1394736842105265e-06,
|
1685 |
+
"loss": 0.3586,
|
1686 |
+
"step": 129
|
1687 |
+
},
|
1688 |
+
{
|
1689 |
+
"Batch Mean": 0.22112131118774414,
|
1690 |
+
"accuracy": 0.7890625,
|
1691 |
+
"epoch": 0.3225,
|
1692 |
+
"step": 129
|
1693 |
+
},
|
1694 |
+
{
|
1695 |
+
"epoch": 0.325,
|
1696 |
+
"grad_norm": 8.140663146972656,
|
1697 |
+
"learning_rate": 2.1315789473684212e-06,
|
1698 |
+
"loss": 0.4103,
|
1699 |
+
"step": 130
|
1700 |
+
},
|
1701 |
+
{
|
1702 |
+
"Batch Mean": 0.1299583911895752,
|
1703 |
+
"accuracy": 0.8125,
|
1704 |
+
"epoch": 0.325,
|
1705 |
+
"step": 130
|
1706 |
+
},
|
1707 |
+
{
|
1708 |
+
"epoch": 0.3275,
|
1709 |
+
"grad_norm": 7.390633583068848,
|
1710 |
+
"learning_rate": 2.123684210526316e-06,
|
1711 |
+
"loss": 0.3914,
|
1712 |
+
"step": 131
|
1713 |
+
},
|
1714 |
+
{
|
1715 |
+
"Batch Mean": 0.608335018157959,
|
1716 |
+
"accuracy": 0.921875,
|
1717 |
+
"epoch": 0.3275,
|
1718 |
+
"step": 131
|
1719 |
+
},
|
1720 |
+
{
|
1721 |
+
"epoch": 0.33,
|
1722 |
+
"grad_norm": 13.193960189819336,
|
1723 |
+
"learning_rate": 2.1157894736842103e-06,
|
1724 |
+
"loss": 0.2749,
|
1725 |
+
"step": 132
|
1726 |
+
},
|
1727 |
+
{
|
1728 |
+
"Batch Mean": 0.15748775005340576,
|
1729 |
+
"accuracy": 0.7578125,
|
1730 |
+
"epoch": 0.33,
|
1731 |
+
"step": 132
|
1732 |
+
},
|
1733 |
+
{
|
1734 |
+
"epoch": 0.3325,
|
1735 |
+
"grad_norm": 8.155619621276855,
|
1736 |
+
"learning_rate": 2.107894736842105e-06,
|
1737 |
+
"loss": 0.4138,
|
1738 |
+
"step": 133
|
1739 |
+
},
|
1740 |
+
{
|
1741 |
+
"Batch Mean": -0.010571569204330444,
|
1742 |
+
"accuracy": 0.796875,
|
1743 |
+
"epoch": 0.3325,
|
1744 |
+
"step": 133
|
1745 |
+
},
|
1746 |
+
{
|
1747 |
+
"epoch": 0.335,
|
1748 |
+
"grad_norm": 7.174466609954834,
|
1749 |
+
"learning_rate": 2.1e-06,
|
1750 |
+
"loss": 0.3603,
|
1751 |
+
"step": 134
|
1752 |
+
},
|
1753 |
+
{
|
1754 |
+
"Batch Mean": -0.17839515209197998,
|
1755 |
+
"accuracy": 0.8125,
|
1756 |
+
"epoch": 0.335,
|
1757 |
+
"step": 134
|
1758 |
+
},
|
1759 |
+
{
|
1760 |
+
"epoch": 0.3375,
|
1761 |
+
"grad_norm": 9.18850326538086,
|
1762 |
+
"learning_rate": 2.0921052631578945e-06,
|
1763 |
+
"loss": 0.3665,
|
1764 |
+
"step": 135
|
1765 |
+
},
|
1766 |
+
{
|
1767 |
+
"Batch Mean": -0.0516209602355957,
|
1768 |
+
"accuracy": 0.7578125,
|
1769 |
+
"epoch": 0.3375,
|
1770 |
+
"step": 135
|
1771 |
+
},
|
1772 |
+
{
|
1773 |
+
"epoch": 0.34,
|
1774 |
+
"grad_norm": 8.749617576599121,
|
1775 |
+
"learning_rate": 2.0842105263157897e-06,
|
1776 |
+
"loss": 0.4511,
|
1777 |
+
"step": 136
|
1778 |
+
},
|
1779 |
+
{
|
1780 |
+
"Batch Mean": -0.33418262004852295,
|
1781 |
+
"accuracy": 0.796875,
|
1782 |
+
"epoch": 0.34,
|
1783 |
+
"step": 136
|
1784 |
+
},
|
1785 |
+
{
|
1786 |
+
"epoch": 0.3425,
|
1787 |
+
"grad_norm": 10.268221855163574,
|
1788 |
+
"learning_rate": 2.0763157894736845e-06,
|
1789 |
+
"loss": 0.4395,
|
1790 |
+
"step": 137
|
1791 |
+
},
|
1792 |
+
{
|
1793 |
+
"Batch Mean": -0.208038330078125,
|
1794 |
+
"accuracy": 0.8515625,
|
1795 |
+
"epoch": 0.3425,
|
1796 |
+
"step": 137
|
1797 |
+
},
|
1798 |
+
{
|
1799 |
+
"epoch": 0.345,
|
1800 |
+
"grad_norm": 6.962666034698486,
|
1801 |
+
"learning_rate": 2.068421052631579e-06,
|
1802 |
+
"loss": 0.3682,
|
1803 |
+
"step": 138
|
1804 |
+
},
|
1805 |
+
{
|
1806 |
+
"Batch Mean": 0.1473088264465332,
|
1807 |
+
"accuracy": 0.8046875,
|
1808 |
+
"epoch": 0.345,
|
1809 |
+
"step": 138
|
1810 |
+
},
|
1811 |
+
{
|
1812 |
+
"epoch": 0.3475,
|
1813 |
+
"grad_norm": 8.331689834594727,
|
1814 |
+
"learning_rate": 2.060526315789474e-06,
|
1815 |
+
"loss": 0.3881,
|
1816 |
+
"step": 139
|
1817 |
+
},
|
1818 |
+
{
|
1819 |
+
"Batch Mean": 0.13666605949401855,
|
1820 |
+
"accuracy": 0.7734375,
|
1821 |
+
"epoch": 0.3475,
|
1822 |
+
"step": 139
|
1823 |
+
},
|
1824 |
+
{
|
1825 |
+
"epoch": 0.35,
|
1826 |
+
"grad_norm": 8.181924819946289,
|
1827 |
+
"learning_rate": 2.0526315789473687e-06,
|
1828 |
+
"loss": 0.4522,
|
1829 |
+
"step": 140
|
1830 |
+
},
|
1831 |
+
{
|
1832 |
+
"Batch Mean": -0.06362247467041016,
|
1833 |
+
"accuracy": 0.828125,
|
1834 |
+
"epoch": 0.35,
|
1835 |
+
"step": 140
|
1836 |
+
},
|
1837 |
+
{
|
1838 |
+
"epoch": 0.3525,
|
1839 |
+
"grad_norm": 7.695260047912598,
|
1840 |
+
"learning_rate": 2.0447368421052634e-06,
|
1841 |
+
"loss": 0.3219,
|
1842 |
+
"step": 141
|
1843 |
+
},
|
1844 |
+
{
|
1845 |
+
"Batch Mean": -0.1371777057647705,
|
1846 |
+
"accuracy": 0.8203125,
|
1847 |
+
"epoch": 0.3525,
|
1848 |
+
"step": 141
|
1849 |
+
},
|
1850 |
+
{
|
1851 |
+
"epoch": 0.355,
|
1852 |
+
"grad_norm": 7.281587600708008,
|
1853 |
+
"learning_rate": 2.0368421052631578e-06,
|
1854 |
+
"loss": 0.3907,
|
1855 |
+
"step": 142
|
1856 |
+
},
|
1857 |
+
{
|
1858 |
+
"Batch Mean": 0.5550127029418945,
|
1859 |
+
"accuracy": 0.84375,
|
1860 |
+
"epoch": 0.355,
|
1861 |
+
"step": 142
|
1862 |
+
},
|
1863 |
+
{
|
1864 |
+
"epoch": 0.3575,
|
1865 |
+
"grad_norm": 10.004101753234863,
|
1866 |
+
"learning_rate": 2.0289473684210525e-06,
|
1867 |
+
"loss": 0.3703,
|
1868 |
+
"step": 143
|
1869 |
+
},
|
1870 |
+
{
|
1871 |
+
"Batch Mean": 0.5781314373016357,
|
1872 |
+
"accuracy": 0.8828125,
|
1873 |
+
"epoch": 0.3575,
|
1874 |
+
"step": 143
|
1875 |
+
},
|
1876 |
+
{
|
1877 |
+
"epoch": 0.36,
|
1878 |
+
"grad_norm": 10.783740997314453,
|
1879 |
+
"learning_rate": 2.0210526315789473e-06,
|
1880 |
+
"loss": 0.3023,
|
1881 |
+
"step": 144
|
1882 |
+
},
|
1883 |
+
{
|
1884 |
+
"Batch Mean": -0.06548458337783813,
|
1885 |
+
"accuracy": 0.796875,
|
1886 |
+
"epoch": 0.36,
|
1887 |
+
"step": 144
|
1888 |
+
},
|
1889 |
+
{
|
1890 |
+
"epoch": 0.3625,
|
1891 |
+
"grad_norm": 8.395689010620117,
|
1892 |
+
"learning_rate": 2.013157894736842e-06,
|
1893 |
+
"loss": 0.3807,
|
1894 |
+
"step": 145
|
1895 |
+
},
|
1896 |
+
{
|
1897 |
+
"Batch Mean": -0.28943490982055664,
|
1898 |
+
"accuracy": 0.8125,
|
1899 |
+
"epoch": 0.3625,
|
1900 |
+
"step": 145
|
1901 |
+
},
|
1902 |
+
{
|
1903 |
+
"epoch": 0.365,
|
1904 |
+
"grad_norm": 8.962904930114746,
|
1905 |
+
"learning_rate": 2.0052631578947367e-06,
|
1906 |
+
"loss": 0.4011,
|
1907 |
+
"step": 146
|
1908 |
+
},
|
1909 |
+
{
|
1910 |
+
"Batch Mean": -0.23036813735961914,
|
1911 |
+
"accuracy": 0.8359375,
|
1912 |
+
"epoch": 0.365,
|
1913 |
+
"step": 146
|
1914 |
+
},
|
1915 |
+
{
|
1916 |
+
"epoch": 0.3675,
|
1917 |
+
"grad_norm": 8.533259391784668,
|
1918 |
+
"learning_rate": 1.9973684210526315e-06,
|
1919 |
+
"loss": 0.4078,
|
1920 |
+
"step": 147
|
1921 |
+
},
|
1922 |
+
{
|
1923 |
+
"Batch Mean": 0.04428744316101074,
|
1924 |
+
"accuracy": 0.8203125,
|
1925 |
+
"epoch": 0.3675,
|
1926 |
+
"step": 147
|
1927 |
+
},
|
1928 |
+
{
|
1929 |
+
"epoch": 0.37,
|
1930 |
+
"grad_norm": 9.401562690734863,
|
1931 |
+
"learning_rate": 1.9894736842105262e-06,
|
1932 |
+
"loss": 0.4861,
|
1933 |
+
"step": 148
|
1934 |
+
},
|
1935 |
+
{
|
1936 |
+
"Batch Mean": -0.631324052810669,
|
1937 |
+
"accuracy": 0.84375,
|
1938 |
+
"epoch": 0.37,
|
1939 |
+
"step": 148
|
1940 |
+
},
|
1941 |
+
{
|
1942 |
+
"epoch": 0.3725,
|
1943 |
+
"grad_norm": 11.169927597045898,
|
1944 |
+
"learning_rate": 1.9815789473684214e-06,
|
1945 |
+
"loss": 0.353,
|
1946 |
+
"step": 149
|
1947 |
+
},
|
1948 |
+
{
|
1949 |
+
"Batch Mean": -0.36252474784851074,
|
1950 |
+
"accuracy": 0.875,
|
1951 |
+
"epoch": 0.3725,
|
1952 |
+
"step": 149
|
1953 |
+
},
|
1954 |
+
{
|
1955 |
+
"epoch": 0.375,
|
1956 |
+
"grad_norm": 8.18213939666748,
|
1957 |
+
"learning_rate": 1.973684210526316e-06,
|
1958 |
+
"loss": 0.3192,
|
1959 |
+
"step": 150
|
1960 |
+
},
|
1961 |
+
{
|
1962 |
+
"Batch Mean": 0.1312960386276245,
|
1963 |
+
"accuracy": 0.8515625,
|
1964 |
+
"epoch": 0.375,
|
1965 |
+
"step": 150
|
1966 |
+
},
|
1967 |
+
{
|
1968 |
+
"epoch": 0.3775,
|
1969 |
+
"grad_norm": 7.884857654571533,
|
1970 |
+
"learning_rate": 1.965789473684211e-06,
|
1971 |
+
"loss": 0.3448,
|
1972 |
+
"step": 151
|
1973 |
+
},
|
1974 |
+
{
|
1975 |
+
"Batch Mean": -0.07881736755371094,
|
1976 |
+
"accuracy": 0.75,
|
1977 |
+
"epoch": 0.3775,
|
1978 |
+
"step": 151
|
1979 |
+
},
|
1980 |
+
{
|
1981 |
+
"epoch": 0.38,
|
1982 |
+
"grad_norm": 11.124417304992676,
|
1983 |
+
"learning_rate": 1.9578947368421052e-06,
|
1984 |
+
"loss": 0.5138,
|
1985 |
+
"step": 152
|
1986 |
+
},
|
1987 |
+
{
|
1988 |
+
"Batch Mean": 0.44060420989990234,
|
1989 |
+
"accuracy": 0.84375,
|
1990 |
+
"epoch": 0.38,
|
1991 |
+
"step": 152
|
1992 |
+
},
|
1993 |
+
{
|
1994 |
+
"epoch": 0.3825,
|
1995 |
+
"grad_norm": 8.98283576965332,
|
1996 |
+
"learning_rate": 1.95e-06,
|
1997 |
+
"loss": 0.3417,
|
1998 |
+
"step": 153
|
1999 |
+
},
|
2000 |
+
{
|
2001 |
+
"Batch Mean": 0.09381070733070374,
|
2002 |
+
"accuracy": 0.84375,
|
2003 |
+
"epoch": 0.3825,
|
2004 |
+
"step": 153
|
2005 |
+
},
|
2006 |
+
{
|
2007 |
+
"epoch": 0.385,
|
2008 |
+
"grad_norm": 6.34003210067749,
|
2009 |
+
"learning_rate": 1.9421052631578947e-06,
|
2010 |
+
"loss": 0.3136,
|
2011 |
+
"step": 154
|
2012 |
+
},
|
2013 |
+
{
|
2014 |
+
"Batch Mean": -0.005020737648010254,
|
2015 |
+
"accuracy": 0.8359375,
|
2016 |
+
"epoch": 0.385,
|
2017 |
+
"step": 154
|
2018 |
+
},
|
2019 |
+
{
|
2020 |
+
"epoch": 0.3875,
|
2021 |
+
"grad_norm": 6.930245399475098,
|
2022 |
+
"learning_rate": 1.9342105263157895e-06,
|
2023 |
+
"loss": 0.3927,
|
2024 |
+
"step": 155
|
2025 |
+
},
|
2026 |
+
{
|
2027 |
+
"Batch Mean": 0.38732171058654785,
|
2028 |
+
"accuracy": 0.859375,
|
2029 |
+
"epoch": 0.3875,
|
2030 |
+
"step": 155
|
2031 |
+
},
|
2032 |
+
{
|
2033 |
+
"epoch": 0.39,
|
2034 |
+
"grad_norm": 7.609610080718994,
|
2035 |
+
"learning_rate": 1.926315789473684e-06,
|
2036 |
+
"loss": 0.3484,
|
2037 |
+
"step": 156
|
2038 |
+
},
|
2039 |
+
{
|
2040 |
+
"Batch Mean": 0.1457352638244629,
|
2041 |
+
"accuracy": 0.859375,
|
2042 |
+
"epoch": 0.39,
|
2043 |
+
"step": 156
|
2044 |
+
},
|
2045 |
+
{
|
2046 |
+
"epoch": 0.3925,
|
2047 |
+
"grad_norm": 6.132632732391357,
|
2048 |
+
"learning_rate": 1.918421052631579e-06,
|
2049 |
+
"loss": 0.3313,
|
2050 |
+
"step": 157
|
2051 |
+
},
|
2052 |
+
{
|
2053 |
+
"Batch Mean": -0.12105239927768707,
|
2054 |
+
"accuracy": 0.859375,
|
2055 |
+
"epoch": 0.3925,
|
2056 |
+
"step": 157
|
2057 |
+
},
|
2058 |
+
{
|
2059 |
+
"epoch": 0.395,
|
2060 |
+
"grad_norm": 6.948753356933594,
|
2061 |
+
"learning_rate": 1.9105263157894737e-06,
|
2062 |
+
"loss": 0.3103,
|
2063 |
+
"step": 158
|
2064 |
+
},
|
2065 |
+
{
|
2066 |
+
"Batch Mean": -0.2733367681503296,
|
2067 |
+
"accuracy": 0.8125,
|
2068 |
+
"epoch": 0.395,
|
2069 |
+
"step": 158
|
2070 |
+
},
|
2071 |
+
{
|
2072 |
+
"epoch": 0.3975,
|
2073 |
+
"grad_norm": 8.32777214050293,
|
2074 |
+
"learning_rate": 1.9026315789473684e-06,
|
2075 |
+
"loss": 0.3927,
|
2076 |
+
"step": 159
|
2077 |
+
},
|
2078 |
+
{
|
2079 |
+
"Batch Mean": -0.2845277786254883,
|
2080 |
+
"accuracy": 0.8046875,
|
2081 |
+
"epoch": 0.3975,
|
2082 |
+
"step": 159
|
2083 |
+
},
|
2084 |
+
{
|
2085 |
+
"epoch": 0.4,
|
2086 |
+
"grad_norm": 8.584951400756836,
|
2087 |
+
"learning_rate": 1.8947368421052632e-06,
|
2088 |
+
"loss": 0.3756,
|
2089 |
+
"step": 160
|
2090 |
+
},
|
2091 |
+
{
|
2092 |
+
"Batch Mean": 0.45987796783447266,
|
2093 |
+
"accuracy": 0.8828125,
|
2094 |
+
"epoch": 0.4,
|
2095 |
+
"step": 160
|
2096 |
+
},
|
2097 |
+
{
|
2098 |
+
"epoch": 0.4025,
|
2099 |
+
"grad_norm": 11.069204330444336,
|
2100 |
+
"learning_rate": 1.8868421052631577e-06,
|
2101 |
+
"loss": 0.3221,
|
2102 |
+
"step": 161
|
2103 |
+
},
|
2104 |
+
{
|
2105 |
+
"Batch Mean": 0.05443763732910156,
|
2106 |
+
"accuracy": 0.8046875,
|
2107 |
+
"epoch": 0.4025,
|
2108 |
+
"step": 161
|
2109 |
+
},
|
2110 |
+
{
|
2111 |
+
"epoch": 0.405,
|
2112 |
+
"grad_norm": 8.764575958251953,
|
2113 |
+
"learning_rate": 1.8789473684210525e-06,
|
2114 |
+
"loss": 0.3762,
|
2115 |
+
"step": 162
|
2116 |
+
},
|
2117 |
+
{
|
2118 |
+
"Batch Mean": 0.0884392112493515,
|
2119 |
+
"accuracy": 0.8203125,
|
2120 |
+
"epoch": 0.405,
|
2121 |
+
"step": 162
|
2122 |
+
},
|
2123 |
+
{
|
2124 |
+
"epoch": 0.4075,
|
2125 |
+
"grad_norm": 8.510726928710938,
|
2126 |
+
"learning_rate": 1.8710526315789476e-06,
|
2127 |
+
"loss": 0.3937,
|
2128 |
+
"step": 163
|
2129 |
+
},
|
2130 |
+
{
|
2131 |
+
"Batch Mean": 0.06999784708023071,
|
2132 |
+
"accuracy": 0.859375,
|
2133 |
+
"epoch": 0.4075,
|
2134 |
+
"step": 163
|
2135 |
+
},
|
2136 |
+
{
|
2137 |
+
"epoch": 0.41,
|
2138 |
+
"grad_norm": 7.868905067443848,
|
2139 |
+
"learning_rate": 1.8631578947368424e-06,
|
2140 |
+
"loss": 0.2751,
|
2141 |
+
"step": 164
|
2142 |
+
},
|
2143 |
+
{
|
2144 |
+
"Batch Mean": 0.36394214630126953,
|
2145 |
+
"accuracy": 0.828125,
|
2146 |
+
"epoch": 0.41,
|
2147 |
+
"step": 164
|
2148 |
+
},
|
2149 |
+
{
|
2150 |
+
"epoch": 0.4125,
|
2151 |
+
"grad_norm": 12.59380054473877,
|
2152 |
+
"learning_rate": 1.855263157894737e-06,
|
2153 |
+
"loss": 0.399,
|
2154 |
+
"step": 165
|
2155 |
+
},
|
2156 |
+
{
|
2157 |
+
"Batch Mean": -0.03789353370666504,
|
2158 |
+
"accuracy": 0.8203125,
|
2159 |
+
"epoch": 0.4125,
|
2160 |
+
"step": 165
|
2161 |
+
},
|
2162 |
+
{
|
2163 |
+
"epoch": 0.415,
|
2164 |
+
"grad_norm": 8.086974143981934,
|
2165 |
+
"learning_rate": 1.8473684210526317e-06,
|
2166 |
+
"loss": 0.3637,
|
2167 |
+
"step": 166
|
2168 |
+
},
|
2169 |
+
{
|
2170 |
+
"Batch Mean": 0.06824040412902832,
|
2171 |
+
"accuracy": 0.8515625,
|
2172 |
+
"epoch": 0.415,
|
2173 |
+
"step": 166
|
2174 |
+
},
|
2175 |
+
{
|
2176 |
+
"epoch": 0.4175,
|
2177 |
+
"grad_norm": 9.723653793334961,
|
2178 |
+
"learning_rate": 1.8394736842105264e-06,
|
2179 |
+
"loss": 0.394,
|
2180 |
+
"step": 167
|
2181 |
+
},
|
2182 |
+
{
|
2183 |
+
"Batch Mean": -0.5270748138427734,
|
2184 |
+
"accuracy": 0.8203125,
|
2185 |
+
"epoch": 0.4175,
|
2186 |
+
"step": 167
|
2187 |
+
},
|
2188 |
+
{
|
2189 |
+
"epoch": 0.42,
|
2190 |
+
"grad_norm": 13.736504554748535,
|
2191 |
+
"learning_rate": 1.8315789473684211e-06,
|
2192 |
+
"loss": 0.429,
|
2193 |
+
"step": 168
|
2194 |
+
},
|
2195 |
+
{
|
2196 |
+
"Batch Mean": -0.12757277488708496,
|
2197 |
+
"accuracy": 0.8359375,
|
2198 |
+
"epoch": 0.42,
|
2199 |
+
"step": 168
|
2200 |
+
},
|
2201 |
+
{
|
2202 |
+
"epoch": 0.4225,
|
2203 |
+
"grad_norm": 8.577059745788574,
|
2204 |
+
"learning_rate": 1.8236842105263159e-06,
|
2205 |
+
"loss": 0.3599,
|
2206 |
+
"step": 169
|
2207 |
+
},
|
2208 |
+
{
|
2209 |
+
"Batch Mean": -0.024989277124404907,
|
2210 |
+
"accuracy": 0.8203125,
|
2211 |
+
"epoch": 0.4225,
|
2212 |
+
"step": 169
|
2213 |
+
},
|
2214 |
+
{
|
2215 |
+
"epoch": 0.425,
|
2216 |
+
"grad_norm": 8.25197982788086,
|
2217 |
+
"learning_rate": 1.8157894736842106e-06,
|
2218 |
+
"loss": 0.4185,
|
2219 |
+
"step": 170
|
2220 |
+
},
|
2221 |
+
{
|
2222 |
+
"Batch Mean": 0.03246608376502991,
|
2223 |
+
"accuracy": 0.875,
|
2224 |
+
"epoch": 0.425,
|
2225 |
+
"step": 170
|
2226 |
+
},
|
2227 |
+
{
|
2228 |
+
"epoch": 0.4275,
|
2229 |
+
"grad_norm": 5.9294819831848145,
|
2230 |
+
"learning_rate": 1.8078947368421052e-06,
|
2231 |
+
"loss": 0.2621,
|
2232 |
+
"step": 171
|
2233 |
+
},
|
2234 |
+
{
|
2235 |
+
"Batch Mean": 0.26308655738830566,
|
2236 |
+
"accuracy": 0.828125,
|
2237 |
+
"epoch": 0.4275,
|
2238 |
+
"step": 171
|
2239 |
+
},
|
2240 |
+
{
|
2241 |
+
"epoch": 0.43,
|
2242 |
+
"grad_norm": 7.570163249969482,
|
2243 |
+
"learning_rate": 1.8e-06,
|
2244 |
+
"loss": 0.3638,
|
2245 |
+
"step": 172
|
2246 |
+
},
|
2247 |
+
{
|
2248 |
+
"Batch Mean": -0.25519466400146484,
|
2249 |
+
"accuracy": 0.828125,
|
2250 |
+
"epoch": 0.43,
|
2251 |
+
"step": 172
|
2252 |
+
},
|
2253 |
+
{
|
2254 |
+
"epoch": 0.4325,
|
2255 |
+
"grad_norm": 7.611836910247803,
|
2256 |
+
"learning_rate": 1.7921052631578947e-06,
|
2257 |
+
"loss": 0.3867,
|
2258 |
+
"step": 173
|
2259 |
+
},
|
2260 |
+
{
|
2261 |
+
"Batch Mean": -0.01856723427772522,
|
2262 |
+
"accuracy": 0.8515625,
|
2263 |
+
"epoch": 0.4325,
|
2264 |
+
"step": 173
|
2265 |
+
},
|
2266 |
+
{
|
2267 |
+
"epoch": 0.435,
|
2268 |
+
"grad_norm": 7.200859546661377,
|
2269 |
+
"learning_rate": 1.7842105263157894e-06,
|
2270 |
+
"loss": 0.3596,
|
2271 |
+
"step": 174
|
2272 |
+
},
|
2273 |
+
{
|
2274 |
+
"Batch Mean": -0.06785082817077637,
|
2275 |
+
"accuracy": 0.8125,
|
2276 |
+
"epoch": 0.435,
|
2277 |
+
"step": 174
|
2278 |
+
},
|
2279 |
+
{
|
2280 |
+
"epoch": 0.4375,
|
2281 |
+
"grad_norm": 8.669882774353027,
|
2282 |
+
"learning_rate": 1.7763157894736842e-06,
|
2283 |
+
"loss": 0.4487,
|
2284 |
+
"step": 175
|
2285 |
+
},
|
2286 |
+
{
|
2287 |
+
"Batch Mean": -0.3832893371582031,
|
2288 |
+
"accuracy": 0.828125,
|
2289 |
+
"epoch": 0.4375,
|
2290 |
+
"step": 175
|
2291 |
+
},
|
2292 |
+
{
|
2293 |
+
"epoch": 0.44,
|
2294 |
+
"grad_norm": 8.320089340209961,
|
2295 |
+
"learning_rate": 1.768421052631579e-06,
|
2296 |
+
"loss": 0.4209,
|
2297 |
+
"step": 176
|
2298 |
+
},
|
2299 |
+
{
|
2300 |
+
"Batch Mean": -0.08297932147979736,
|
2301 |
+
"accuracy": 0.8203125,
|
2302 |
+
"epoch": 0.44,
|
2303 |
+
"step": 176
|
2304 |
+
},
|
2305 |
+
{
|
2306 |
+
"epoch": 0.4425,
|
2307 |
+
"grad_norm": 7.819711208343506,
|
2308 |
+
"learning_rate": 1.7605263157894739e-06,
|
2309 |
+
"loss": 0.3551,
|
2310 |
+
"step": 177
|
2311 |
+
},
|
2312 |
+
{
|
2313 |
+
"Batch Mean": 0.37918123602867126,
|
2314 |
+
"accuracy": 0.8125,
|
2315 |
+
"epoch": 0.4425,
|
2316 |
+
"step": 177
|
2317 |
+
},
|
2318 |
+
{
|
2319 |
+
"epoch": 0.445,
|
2320 |
+
"grad_norm": 8.0424165725708,
|
2321 |
+
"learning_rate": 1.7526315789473686e-06,
|
2322 |
+
"loss": 0.3594,
|
2323 |
+
"step": 178
|
2324 |
+
},
|
2325 |
+
{
|
2326 |
+
"Batch Mean": 0.05135989189147949,
|
2327 |
+
"accuracy": 0.890625,
|
2328 |
+
"epoch": 0.445,
|
2329 |
+
"step": 178
|
2330 |
+
},
|
2331 |
+
{
|
2332 |
+
"epoch": 0.4475,
|
2333 |
+
"grad_norm": 6.7139811515808105,
|
2334 |
+
"learning_rate": 1.7447368421052633e-06,
|
2335 |
+
"loss": 0.3117,
|
2336 |
+
"step": 179
|
2337 |
+
},
|
2338 |
+
{
|
2339 |
+
"Batch Mean": 0.06295812129974365,
|
2340 |
+
"accuracy": 0.828125,
|
2341 |
+
"epoch": 0.4475,
|
2342 |
+
"step": 179
|
2343 |
+
},
|
2344 |
+
{
|
2345 |
+
"epoch": 0.45,
|
2346 |
+
"grad_norm": 7.755770683288574,
|
2347 |
+
"learning_rate": 1.736842105263158e-06,
|
2348 |
+
"loss": 0.396,
|
2349 |
+
"step": 180
|
2350 |
+
},
|
2351 |
+
{
|
2352 |
+
"Batch Mean": -0.19158035516738892,
|
2353 |
+
"accuracy": 0.8671875,
|
2354 |
+
"epoch": 0.45,
|
2355 |
+
"step": 180
|
2356 |
+
},
|
2357 |
+
{
|
2358 |
+
"epoch": 0.4525,
|
2359 |
+
"grad_norm": 6.9720778465271,
|
2360 |
+
"learning_rate": 1.7289473684210526e-06,
|
2361 |
+
"loss": 0.3034,
|
2362 |
+
"step": 181
|
2363 |
+
},
|
2364 |
+
{
|
2365 |
+
"Batch Mean": 0.045849740505218506,
|
2366 |
+
"accuracy": 0.859375,
|
2367 |
+
"epoch": 0.4525,
|
2368 |
+
"step": 181
|
2369 |
+
},
|
2370 |
+
{
|
2371 |
+
"epoch": 0.455,
|
2372 |
+
"grad_norm": 6.858092784881592,
|
2373 |
+
"learning_rate": 1.7210526315789474e-06,
|
2374 |
+
"loss": 0.3629,
|
2375 |
+
"step": 182
|
2376 |
+
},
|
2377 |
+
{
|
2378 |
+
"Batch Mean": 0.46304988861083984,
|
2379 |
+
"accuracy": 0.8125,
|
2380 |
+
"epoch": 0.455,
|
2381 |
+
"step": 182
|
2382 |
+
},
|
2383 |
+
{
|
2384 |
+
"epoch": 0.4575,
|
2385 |
+
"grad_norm": 8.993224143981934,
|
2386 |
+
"learning_rate": 1.7131578947368421e-06,
|
2387 |
+
"loss": 0.3538,
|
2388 |
+
"step": 183
|
2389 |
+
},
|
2390 |
+
{
|
2391 |
+
"Batch Mean": 0.057231903076171875,
|
2392 |
+
"accuracy": 0.7890625,
|
2393 |
+
"epoch": 0.4575,
|
2394 |
+
"step": 183
|
2395 |
+
},
|
2396 |
+
{
|
2397 |
+
"epoch": 0.46,
|
2398 |
+
"grad_norm": 11.233847618103027,
|
2399 |
+
"learning_rate": 1.7052631578947369e-06,
|
2400 |
+
"loss": 0.4784,
|
2401 |
+
"step": 184
|
2402 |
+
},
|
2403 |
+
{
|
2404 |
+
"Batch Mean": -0.06488056480884552,
|
2405 |
+
"accuracy": 0.859375,
|
2406 |
+
"epoch": 0.46,
|
2407 |
+
"step": 184
|
2408 |
+
},
|
2409 |
+
{
|
2410 |
+
"epoch": 0.4625,
|
2411 |
+
"grad_norm": 8.108458518981934,
|
2412 |
+
"learning_rate": 1.6973684210526316e-06,
|
2413 |
+
"loss": 0.2988,
|
2414 |
+
"step": 185
|
2415 |
+
},
|
2416 |
+
{
|
2417 |
+
"Batch Mean": -0.4033060073852539,
|
2418 |
+
"accuracy": 0.78125,
|
2419 |
+
"epoch": 0.4625,
|
2420 |
+
"step": 185
|
2421 |
+
},
|
2422 |
+
{
|
2423 |
+
"epoch": 0.465,
|
2424 |
+
"grad_norm": 9.097691535949707,
|
2425 |
+
"learning_rate": 1.6894736842105264e-06,
|
2426 |
+
"loss": 0.4141,
|
2427 |
+
"step": 186
|
2428 |
+
},
|
2429 |
+
{
|
2430 |
+
"Batch Mean": -0.41214847564697266,
|
2431 |
+
"accuracy": 0.8828125,
|
2432 |
+
"epoch": 0.465,
|
2433 |
+
"step": 186
|
2434 |
+
},
|
2435 |
+
{
|
2436 |
+
"epoch": 0.4675,
|
2437 |
+
"grad_norm": 8.145352363586426,
|
2438 |
+
"learning_rate": 1.6815789473684209e-06,
|
2439 |
+
"loss": 0.3051,
|
2440 |
+
"step": 187
|
2441 |
+
},
|
2442 |
+
{
|
2443 |
+
"Batch Mean": 0.14345920085906982,
|
2444 |
+
"accuracy": 0.8671875,
|
2445 |
+
"epoch": 0.4675,
|
2446 |
+
"step": 187
|
2447 |
+
},
|
2448 |
+
{
|
2449 |
+
"epoch": 0.47,
|
2450 |
+
"grad_norm": 7.163969039916992,
|
2451 |
+
"learning_rate": 1.6736842105263156e-06,
|
2452 |
+
"loss": 0.3405,
|
2453 |
+
"step": 188
|
2454 |
+
},
|
2455 |
+
{
|
2456 |
+
"Batch Mean": 0.25019216537475586,
|
2457 |
+
"accuracy": 0.8359375,
|
2458 |
+
"epoch": 0.47,
|
2459 |
+
"step": 188
|
2460 |
+
},
|
2461 |
+
{
|
2462 |
+
"epoch": 0.4725,
|
2463 |
+
"grad_norm": 8.14911937713623,
|
2464 |
+
"learning_rate": 1.6657894736842104e-06,
|
2465 |
+
"loss": 0.3334,
|
2466 |
+
"step": 189
|
2467 |
+
},
|
2468 |
+
{
|
2469 |
+
"Batch Mean": 0.030582189559936523,
|
2470 |
+
"accuracy": 0.8203125,
|
2471 |
+
"epoch": 0.4725,
|
2472 |
+
"step": 189
|
2473 |
+
},
|
2474 |
+
{
|
2475 |
+
"epoch": 0.475,
|
2476 |
+
"grad_norm": 7.993282318115234,
|
2477 |
+
"learning_rate": 1.6578947368421056e-06,
|
2478 |
+
"loss": 0.3885,
|
2479 |
+
"step": 190
|
2480 |
+
},
|
2481 |
+
{
|
2482 |
+
"Batch Mean": 0.14673519134521484,
|
2483 |
+
"accuracy": 0.8125,
|
2484 |
+
"epoch": 0.475,
|
2485 |
+
"step": 190
|
2486 |
+
},
|
2487 |
+
{
|
2488 |
+
"epoch": 0.4775,
|
2489 |
+
"grad_norm": 9.056065559387207,
|
2490 |
+
"learning_rate": 1.65e-06,
|
2491 |
+
"loss": 0.4084,
|
2492 |
+
"step": 191
|
2493 |
+
},
|
2494 |
+
{
|
2495 |
+
"Batch Mean": 0.3741884231567383,
|
2496 |
+
"accuracy": 0.875,
|
2497 |
+
"epoch": 0.4775,
|
2498 |
+
"step": 191
|
2499 |
+
},
|
2500 |
+
{
|
2501 |
+
"epoch": 0.48,
|
2502 |
+
"grad_norm": 8.857176780700684,
|
2503 |
+
"learning_rate": 1.6421052631578948e-06,
|
2504 |
+
"loss": 0.3182,
|
2505 |
+
"step": 192
|
2506 |
+
},
|
2507 |
+
{
|
2508 |
+
"Batch Mean": 0.41150104999542236,
|
2509 |
+
"accuracy": 0.859375,
|
2510 |
+
"epoch": 0.48,
|
2511 |
+
"step": 192
|
2512 |
+
},
|
2513 |
+
{
|
2514 |
+
"epoch": 0.4825,
|
2515 |
+
"grad_norm": 8.556700706481934,
|
2516 |
+
"learning_rate": 1.6342105263157896e-06,
|
2517 |
+
"loss": 0.3261,
|
2518 |
+
"step": 193
|
2519 |
+
},
|
2520 |
+
{
|
2521 |
+
"Batch Mean": -0.4138193130493164,
|
2522 |
+
"accuracy": 0.8359375,
|
2523 |
+
"epoch": 0.4825,
|
2524 |
+
"step": 193
|
2525 |
+
},
|
2526 |
+
{
|
2527 |
+
"epoch": 0.485,
|
2528 |
+
"grad_norm": 7.911004543304443,
|
2529 |
+
"learning_rate": 1.6263157894736843e-06,
|
2530 |
+
"loss": 0.3395,
|
2531 |
+
"step": 194
|
2532 |
+
},
|
2533 |
+
{
|
2534 |
+
"Batch Mean": -0.7141661643981934,
|
2535 |
+
"accuracy": 0.765625,
|
2536 |
+
"epoch": 0.485,
|
2537 |
+
"step": 194
|
2538 |
+
},
|
2539 |
+
{
|
2540 |
+
"epoch": 0.4875,
|
2541 |
+
"grad_norm": 10.288289070129395,
|
2542 |
+
"learning_rate": 1.618421052631579e-06,
|
2543 |
+
"loss": 0.4338,
|
2544 |
+
"step": 195
|
2545 |
+
},
|
2546 |
+
{
|
2547 |
+
"Batch Mean": -0.5950565338134766,
|
2548 |
+
"accuracy": 0.8203125,
|
2549 |
+
"epoch": 0.4875,
|
2550 |
+
"step": 195
|
2551 |
+
},
|
2552 |
+
{
|
2553 |
+
"epoch": 0.49,
|
2554 |
+
"grad_norm": 9.772676467895508,
|
2555 |
+
"learning_rate": 1.6105263157894738e-06,
|
2556 |
+
"loss": 0.4012,
|
2557 |
+
"step": 196
|
2558 |
+
},
|
2559 |
+
{
|
2560 |
+
"Batch Mean": -0.40017926692962646,
|
2561 |
+
"accuracy": 0.84375,
|
2562 |
+
"epoch": 0.49,
|
2563 |
+
"step": 196
|
2564 |
+
},
|
2565 |
+
{
|
2566 |
+
"epoch": 0.4925,
|
2567 |
+
"grad_norm": 7.894969463348389,
|
2568 |
+
"learning_rate": 1.6026315789473683e-06,
|
2569 |
+
"loss": 0.363,
|
2570 |
+
"step": 197
|
2571 |
+
},
|
2572 |
+
{
|
2573 |
+
"Batch Mean": 0.4873809814453125,
|
2574 |
+
"accuracy": 0.8203125,
|
2575 |
+
"epoch": 0.4925,
|
2576 |
+
"step": 197
|
2577 |
+
},
|
2578 |
+
{
|
2579 |
+
"epoch": 0.495,
|
2580 |
+
"grad_norm": 9.627370834350586,
|
2581 |
+
"learning_rate": 1.594736842105263e-06,
|
2582 |
+
"loss": 0.3737,
|
2583 |
+
"step": 198
|
2584 |
+
},
|
2585 |
+
{
|
2586 |
+
"Batch Mean": 0.2109694480895996,
|
2587 |
+
"accuracy": 0.765625,
|
2588 |
+
"epoch": 0.495,
|
2589 |
+
"step": 198
|
2590 |
+
},
|
2591 |
+
{
|
2592 |
+
"epoch": 0.4975,
|
2593 |
+
"grad_norm": 8.528368949890137,
|
2594 |
+
"learning_rate": 1.5868421052631578e-06,
|
2595 |
+
"loss": 0.4261,
|
2596 |
+
"step": 199
|
2597 |
+
},
|
2598 |
+
{
|
2599 |
+
"Batch Mean": 0.3447328805923462,
|
2600 |
+
"accuracy": 0.8125,
|
2601 |
+
"epoch": 0.4975,
|
2602 |
+
"step": 199
|
2603 |
+
},
|
2604 |
+
{
|
2605 |
+
"epoch": 0.5,
|
2606 |
+
"grad_norm": 8.279525756835938,
|
2607 |
+
"learning_rate": 1.5789473684210526e-06,
|
2608 |
+
"loss": 0.3857,
|
2609 |
+
"step": 200
|
2610 |
+
}
|
2611 |
+
],
|
2612 |
+
"logging_steps": 1,
|
2613 |
+
"max_steps": 400,
|
2614 |
+
"num_input_tokens_seen": 0,
|
2615 |
+
"num_train_epochs": 1,
|
2616 |
+
"save_steps": 100,
|
2617 |
+
"stateful_callbacks": {
|
2618 |
+
"TrainerControl": {
|
2619 |
+
"args": {
|
2620 |
+
"should_epoch_stop": false,
|
2621 |
+
"should_evaluate": false,
|
2622 |
+
"should_log": false,
|
2623 |
+
"should_save": true,
|
2624 |
+
"should_training_stop": false
|
2625 |
+
},
|
2626 |
+
"attributes": {}
|
2627 |
+
}
|
2628 |
+
},
|
2629 |
+
"total_flos": 0.0,
|
2630 |
+
"train_batch_size": 16,
|
2631 |
+
"trial_name": null,
|
2632 |
+
"trial_params": null
|
2633 |
+
}
|
checkpoint-200/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dab7a9d0a6227a7833fc68db5d94632c4e2ceb7ee89455f6c0134e29a3b812b9
|
3 |
+
size 5688
|
checkpoint-200/vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-300/added_tokens.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</tool_call>": 151658,
|
3 |
+
"<tool_call>": 151657,
|
4 |
+
"<|box_end|>": 151649,
|
5 |
+
"<|box_start|>": 151648,
|
6 |
+
"<|endoftext|>": 151643,
|
7 |
+
"<|file_sep|>": 151664,
|
8 |
+
"<|fim_middle|>": 151660,
|
9 |
+
"<|fim_pad|>": 151662,
|
10 |
+
"<|fim_prefix|>": 151659,
|
11 |
+
"<|fim_suffix|>": 151661,
|
12 |
+
"<|im_end|>": 151645,
|
13 |
+
"<|im_start|>": 151644,
|
14 |
+
"<|image_pad|>": 151655,
|
15 |
+
"<|object_ref_end|>": 151647,
|
16 |
+
"<|object_ref_start|>": 151646,
|
17 |
+
"<|quad_end|>": 151651,
|
18 |
+
"<|quad_start|>": 151650,
|
19 |
+
"<|repo_name|>": 151663,
|
20 |
+
"<|video_pad|>": 151656,
|
21 |
+
"<|vision_end|>": 151653,
|
22 |
+
"<|vision_pad|>": 151654,
|
23 |
+
"<|vision_start|>": 151652
|
24 |
+
}
|
checkpoint-300/config.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "tlrm/Q25-3B-UC",
|
3 |
+
"architectures": [
|
4 |
+
"Qwen2ForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 151643,
|
8 |
+
"eos_token_id": 151645,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 2048,
|
11 |
+
"id2label": {
|
12 |
+
"0": "LABEL_0"
|
13 |
+
},
|
14 |
+
"initializer_range": 0.02,
|
15 |
+
"intermediate_size": 11008,
|
16 |
+
"label2id": {
|
17 |
+
"LABEL_0": 0
|
18 |
+
},
|
19 |
+
"max_position_embeddings": 32768,
|
20 |
+
"max_window_layers": 36,
|
21 |
+
"model_type": "qwen2",
|
22 |
+
"num_attention_heads": 16,
|
23 |
+
"num_hidden_layers": 36,
|
24 |
+
"num_key_value_heads": 2,
|
25 |
+
"pad_token_id": 151643,
|
26 |
+
"rms_norm_eps": 1e-06,
|
27 |
+
"rope_scaling": null,
|
28 |
+
"rope_theta": 1000000.0,
|
29 |
+
"sliding_window": null,
|
30 |
+
"tie_word_embeddings": true,
|
31 |
+
"torch_dtype": "float32",
|
32 |
+
"transformers_version": "4.48.0",
|
33 |
+
"use_cache": false,
|
34 |
+
"use_mrope": false,
|
35 |
+
"use_sliding_window": false,
|
36 |
+
"vocab_size": 151936
|
37 |
+
}
|
checkpoint-300/merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-300/model-00001-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7eb2144d609f0303e2ee932884100bc0b247afe231346140e39ef1e334d05fbd
|
3 |
+
size 4982131536
|
checkpoint-300/model-00002-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d356a60bf7853e5f97b254e22136ed9ef24a2fc68e066b1b82c20acbc4eb1b9a
|
3 |
+
size 4932949336
|
checkpoint-300/model-00003-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:52b2c0f8dc552cf8f46cd1ac9d9dac2fa513f25617c1965f5032fcb20800ac82
|
3 |
+
size 2428731440
|
checkpoint-300/model.safetensors.index.json
ADDED
@@ -0,0 +1,442 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 12343762944
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
7 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
8 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
9 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
10 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
12 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
15 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
16 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
17 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
18 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
19 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
20 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
21 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
22 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
23 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
24 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
25 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
26 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
27 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
28 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
29 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
30 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
31 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
32 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
33 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
34 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
35 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
36 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
37 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
38 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
39 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
40 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
41 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
42 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
43 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
44 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
45 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
46 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
47 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
48 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
49 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
50 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
51 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
52 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
53 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
54 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
55 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
56 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
57 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
58 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
59 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
60 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
61 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
62 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
63 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
64 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
65 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
66 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
67 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
68 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
69 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
70 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
71 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
72 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
73 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
74 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
75 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
76 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
77 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
78 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
79 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
80 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
81 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
82 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
83 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
84 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
85 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
86 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
87 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
88 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
89 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
90 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
91 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
92 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
93 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
94 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
95 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
96 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
97 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
98 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
99 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
100 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
101 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
102 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
103 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
104 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
105 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
106 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
107 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
108 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
109 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
110 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
111 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
112 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
113 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
114 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
115 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
116 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
117 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
118 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
119 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
120 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
121 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
122 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
123 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
124 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
125 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
126 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
127 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
128 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
129 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
130 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
131 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
132 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
133 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
134 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
135 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
136 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
137 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
138 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
139 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
140 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
141 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
142 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
143 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
144 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
145 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
146 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
147 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
148 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
149 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
150 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
151 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
152 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
153 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
154 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
155 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
156 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
157 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
158 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
159 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
160 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
161 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
162 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
163 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
164 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
165 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
166 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
167 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
168 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
169 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
170 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
171 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
172 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
173 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
174 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
175 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
176 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
177 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
178 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
179 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
180 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
181 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
182 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
183 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
184 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
185 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
186 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
187 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
188 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
189 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
190 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
191 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
192 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
193 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
194 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
195 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
196 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
197 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
198 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
199 |
+
"model.layers.23.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
200 |
+
"model.layers.23.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
201 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
202 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
203 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
204 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
205 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
206 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
207 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
208 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
209 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
210 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
211 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
212 |
+
"model.layers.24.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
213 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
214 |
+
"model.layers.24.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
215 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
216 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
217 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
218 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
219 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
220 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
221 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
222 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
223 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
224 |
+
"model.layers.25.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
225 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
226 |
+
"model.layers.25.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
227 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
228 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
229 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
230 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
231 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
232 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
233 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
234 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
235 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
236 |
+
"model.layers.26.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
237 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
238 |
+
"model.layers.26.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
239 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
240 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
241 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
242 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
243 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
244 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
245 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
246 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
247 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
248 |
+
"model.layers.27.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
249 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
250 |
+
"model.layers.27.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
251 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
252 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
253 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
254 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
255 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
256 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
257 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
258 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
259 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
260 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
261 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
262 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
263 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
264 |
+
"model.layers.28.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
265 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
266 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
267 |
+
"model.layers.28.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
268 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
269 |
+
"model.layers.28.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
270 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
271 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
272 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
273 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
274 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
275 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
276 |
+
"model.layers.29.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
277 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
278 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
279 |
+
"model.layers.29.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
280 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
281 |
+
"model.layers.29.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
282 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
283 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
284 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
285 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
286 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
287 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
288 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
289 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
290 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
291 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
292 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
293 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
294 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
295 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
296 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
297 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
298 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
299 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
300 |
+
"model.layers.30.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
301 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
302 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
303 |
+
"model.layers.30.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
304 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
305 |
+
"model.layers.30.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
306 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
307 |
+
"model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
308 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
309 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
310 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
311 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
312 |
+
"model.layers.31.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
313 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
314 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
315 |
+
"model.layers.31.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
316 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
317 |
+
"model.layers.31.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
318 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
319 |
+
"model.layers.32.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
320 |
+
"model.layers.32.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
321 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
322 |
+
"model.layers.32.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
323 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
324 |
+
"model.layers.32.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
325 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
326 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
327 |
+
"model.layers.32.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
328 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
329 |
+
"model.layers.32.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
330 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
331 |
+
"model.layers.33.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
332 |
+
"model.layers.33.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
333 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
334 |
+
"model.layers.33.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
335 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
336 |
+
"model.layers.33.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
337 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
338 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
339 |
+
"model.layers.33.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
340 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
341 |
+
"model.layers.33.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
342 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
343 |
+
"model.layers.34.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
344 |
+
"model.layers.34.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
345 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
346 |
+
"model.layers.34.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
347 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
348 |
+
"model.layers.34.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
349 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
350 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
351 |
+
"model.layers.34.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
352 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
353 |
+
"model.layers.34.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
354 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
355 |
+
"model.layers.35.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
356 |
+
"model.layers.35.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
357 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
358 |
+
"model.layers.35.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
359 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
360 |
+
"model.layers.35.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
361 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
362 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
363 |
+
"model.layers.35.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
364 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
365 |
+
"model.layers.35.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
366 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
367 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
368 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
369 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
370 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
371 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
372 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
373 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
374 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
375 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
376 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
377 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
378 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
379 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
380 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
381 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
382 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
383 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
384 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
385 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
386 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
387 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
388 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
389 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
390 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
391 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
392 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
393 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
394 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
395 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
396 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
397 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
398 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
399 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
400 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
401 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
402 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
403 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
404 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
405 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
406 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
407 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
408 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
409 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
410 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
411 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
412 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
413 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
414 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
415 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
416 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
417 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
418 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
419 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
420 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
421 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
422 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
423 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
424 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
425 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
426 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
427 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
428 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
429 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
430 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
431 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
432 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
433 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
434 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
435 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
436 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
437 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
438 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
439 |
+
"model.norm.weight": "model-00003-of-00003.safetensors",
|
440 |
+
"score.weight": "model-00003-of-00003.safetensors"
|
441 |
+
}
|
442 |
+
}
|
checkpoint-300/special_tokens_map.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|im_start|>",
|
4 |
+
"<|im_end|>",
|
5 |
+
"<|object_ref_start|>",
|
6 |
+
"<|object_ref_end|>",
|
7 |
+
"<|box_start|>",
|
8 |
+
"<|box_end|>",
|
9 |
+
"<|quad_start|>",
|
10 |
+
"<|quad_end|>",
|
11 |
+
"<|vision_start|>",
|
12 |
+
"<|vision_end|>",
|
13 |
+
"<|vision_pad|>",
|
14 |
+
"<|image_pad|>",
|
15 |
+
"<|video_pad|>"
|
16 |
+
],
|
17 |
+
"eos_token": {
|
18 |
+
"content": "<|im_end|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
"pad_token": {
|
25 |
+
"content": "<|endoftext|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
}
|
31 |
+
}
|
checkpoint-300/tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
3 |
+
size 11421896
|
checkpoint-300/tokenizer_config.json
ADDED
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": false,
|
3 |
+
"add_prefix_space": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"151643": {
|
6 |
+
"content": "<|endoftext|>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"151644": {
|
14 |
+
"content": "<|im_start|>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"151645": {
|
22 |
+
"content": "<|im_end|>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
},
|
29 |
+
"151646": {
|
30 |
+
"content": "<|object_ref_start|>",
|
31 |
+
"lstrip": false,
|
32 |
+
"normalized": false,
|
33 |
+
"rstrip": false,
|
34 |
+
"single_word": false,
|
35 |
+
"special": true
|
36 |
+
},
|
37 |
+
"151647": {
|
38 |
+
"content": "<|object_ref_end|>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false,
|
43 |
+
"special": true
|
44 |
+
},
|
45 |
+
"151648": {
|
46 |
+
"content": "<|box_start|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"rstrip": false,
|
50 |
+
"single_word": false,
|
51 |
+
"special": true
|
52 |
+
},
|
53 |
+
"151649": {
|
54 |
+
"content": "<|box_end|>",
|
55 |
+
"lstrip": false,
|
56 |
+
"normalized": false,
|
57 |
+
"rstrip": false,
|
58 |
+
"single_word": false,
|
59 |
+
"special": true
|
60 |
+
},
|
61 |
+
"151650": {
|
62 |
+
"content": "<|quad_start|>",
|
63 |
+
"lstrip": false,
|
64 |
+
"normalized": false,
|
65 |
+
"rstrip": false,
|
66 |
+
"single_word": false,
|
67 |
+
"special": true
|
68 |
+
},
|
69 |
+
"151651": {
|
70 |
+
"content": "<|quad_end|>",
|
71 |
+
"lstrip": false,
|
72 |
+
"normalized": false,
|
73 |
+
"rstrip": false,
|
74 |
+
"single_word": false,
|
75 |
+
"special": true
|
76 |
+
},
|
77 |
+
"151652": {
|
78 |
+
"content": "<|vision_start|>",
|
79 |
+
"lstrip": false,
|
80 |
+
"normalized": false,
|
81 |
+
"rstrip": false,
|
82 |
+
"single_word": false,
|
83 |
+
"special": true
|
84 |
+
},
|
85 |
+
"151653": {
|
86 |
+
"content": "<|vision_end|>",
|
87 |
+
"lstrip": false,
|
88 |
+
"normalized": false,
|
89 |
+
"rstrip": false,
|
90 |
+
"single_word": false,
|
91 |
+
"special": true
|
92 |
+
},
|
93 |
+
"151654": {
|
94 |
+
"content": "<|vision_pad|>",
|
95 |
+
"lstrip": false,
|
96 |
+
"normalized": false,
|
97 |
+
"rstrip": false,
|
98 |
+
"single_word": false,
|
99 |
+
"special": true
|
100 |
+
},
|
101 |
+
"151655": {
|
102 |
+
"content": "<|image_pad|>",
|
103 |
+
"lstrip": false,
|
104 |
+
"normalized": false,
|
105 |
+
"rstrip": false,
|
106 |
+
"single_word": false,
|
107 |
+
"special": true
|
108 |
+
},
|
109 |
+
"151656": {
|
110 |
+
"content": "<|video_pad|>",
|
111 |
+
"lstrip": false,
|
112 |
+
"normalized": false,
|
113 |
+
"rstrip": false,
|
114 |
+
"single_word": false,
|
115 |
+
"special": true
|
116 |
+
},
|
117 |
+
"151657": {
|
118 |
+
"content": "<tool_call>",
|
119 |
+
"lstrip": false,
|
120 |
+
"normalized": false,
|
121 |
+
"rstrip": false,
|
122 |
+
"single_word": false,
|
123 |
+
"special": false
|
124 |
+
},
|
125 |
+
"151658": {
|
126 |
+
"content": "</tool_call>",
|
127 |
+
"lstrip": false,
|
128 |
+
"normalized": false,
|
129 |
+
"rstrip": false,
|
130 |
+
"single_word": false,
|
131 |
+
"special": false
|
132 |
+
},
|
133 |
+
"151659": {
|
134 |
+
"content": "<|fim_prefix|>",
|
135 |
+
"lstrip": false,
|
136 |
+
"normalized": false,
|
137 |
+
"rstrip": false,
|
138 |
+
"single_word": false,
|
139 |
+
"special": false
|
140 |
+
},
|
141 |
+
"151660": {
|
142 |
+
"content": "<|fim_middle|>",
|
143 |
+
"lstrip": false,
|
144 |
+
"normalized": false,
|
145 |
+
"rstrip": false,
|
146 |
+
"single_word": false,
|
147 |
+
"special": false
|
148 |
+
},
|
149 |
+
"151661": {
|
150 |
+
"content": "<|fim_suffix|>",
|
151 |
+
"lstrip": false,
|
152 |
+
"normalized": false,
|
153 |
+
"rstrip": false,
|
154 |
+
"single_word": false,
|
155 |
+
"special": false
|
156 |
+
},
|
157 |
+
"151662": {
|
158 |
+
"content": "<|fim_pad|>",
|
159 |
+
"lstrip": false,
|
160 |
+
"normalized": false,
|
161 |
+
"rstrip": false,
|
162 |
+
"single_word": false,
|
163 |
+
"special": false
|
164 |
+
},
|
165 |
+
"151663": {
|
166 |
+
"content": "<|repo_name|>",
|
167 |
+
"lstrip": false,
|
168 |
+
"normalized": false,
|
169 |
+
"rstrip": false,
|
170 |
+
"single_word": false,
|
171 |
+
"special": false
|
172 |
+
},
|
173 |
+
"151664": {
|
174 |
+
"content": "<|file_sep|>",
|
175 |
+
"lstrip": false,
|
176 |
+
"normalized": false,
|
177 |
+
"rstrip": false,
|
178 |
+
"single_word": false,
|
179 |
+
"special": false
|
180 |
+
}
|
181 |
+
},
|
182 |
+
"additional_special_tokens": [
|
183 |
+
"<|im_start|>",
|
184 |
+
"<|im_end|>",
|
185 |
+
"<|object_ref_start|>",
|
186 |
+
"<|object_ref_end|>",
|
187 |
+
"<|box_start|>",
|
188 |
+
"<|box_end|>",
|
189 |
+
"<|quad_start|>",
|
190 |
+
"<|quad_end|>",
|
191 |
+
"<|vision_start|>",
|
192 |
+
"<|vision_end|>",
|
193 |
+
"<|vision_pad|>",
|
194 |
+
"<|image_pad|>",
|
195 |
+
"<|video_pad|>"
|
196 |
+
],
|
197 |
+
"bos_token": null,
|
198 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- endif %}\n {{- \"\\n\\n# 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>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\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\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
|
199 |
+
"clean_up_tokenization_spaces": false,
|
200 |
+
"eos_token": "<|im_end|>",
|
201 |
+
"errors": "replace",
|
202 |
+
"extra_special_tokens": {},
|
203 |
+
"model_max_length": 131072,
|
204 |
+
"pad_token": "<|endoftext|>",
|
205 |
+
"split_special_tokens": false,
|
206 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
207 |
+
"unk_token": null
|
208 |
+
}
|
checkpoint-300/trainer_state.json
ADDED
@@ -0,0 +1,3933 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 0.75,
|
5 |
+
"eval_steps": 500,
|
6 |
+
"global_step": 300,
|
7 |
+
"is_hyper_param_search": false,
|
8 |
+
"is_local_process_zero": true,
|
9 |
+
"is_world_process_zero": true,
|
10 |
+
"log_history": [
|
11 |
+
{
|
12 |
+
"Batch Mean": 2.61431884765625,
|
13 |
+
"accuracy": 0.4765625,
|
14 |
+
"epoch": 0,
|
15 |
+
"step": 0
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"epoch": 0.0025,
|
19 |
+
"grad_norm": 42.59496307373047,
|
20 |
+
"learning_rate": 1.5000000000000002e-07,
|
21 |
+
"loss": 0.8092,
|
22 |
+
"step": 1
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"Batch Mean": 2.574005126953125,
|
26 |
+
"accuracy": 0.578125,
|
27 |
+
"epoch": 0.0025,
|
28 |
+
"step": 1
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"epoch": 0.005,
|
32 |
+
"grad_norm": 46.709930419921875,
|
33 |
+
"learning_rate": 3.0000000000000004e-07,
|
34 |
+
"loss": 0.7799,
|
35 |
+
"step": 2
|
36 |
+
},
|
37 |
+
{
|
38 |
+
"Batch Mean": 2.560516357421875,
|
39 |
+
"accuracy": 0.484375,
|
40 |
+
"epoch": 0.005,
|
41 |
+
"step": 2
|
42 |
+
},
|
43 |
+
{
|
44 |
+
"epoch": 0.0075,
|
45 |
+
"grad_norm": 44.51314163208008,
|
46 |
+
"learning_rate": 4.5e-07,
|
47 |
+
"loss": 0.8043,
|
48 |
+
"step": 3
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"Batch Mean": 2.6197509765625,
|
52 |
+
"accuracy": 0.5,
|
53 |
+
"epoch": 0.0075,
|
54 |
+
"step": 3
|
55 |
+
},
|
56 |
+
{
|
57 |
+
"epoch": 0.01,
|
58 |
+
"grad_norm": 42.86121368408203,
|
59 |
+
"learning_rate": 6.000000000000001e-07,
|
60 |
+
"loss": 0.8014,
|
61 |
+
"step": 4
|
62 |
+
},
|
63 |
+
{
|
64 |
+
"Batch Mean": 2.565338134765625,
|
65 |
+
"accuracy": 0.53125,
|
66 |
+
"epoch": 0.01,
|
67 |
+
"step": 4
|
68 |
+
},
|
69 |
+
{
|
70 |
+
"epoch": 0.0125,
|
71 |
+
"grad_norm": 44.409908294677734,
|
72 |
+
"learning_rate": 7.5e-07,
|
73 |
+
"loss": 0.7983,
|
74 |
+
"step": 5
|
75 |
+
},
|
76 |
+
{
|
77 |
+
"Batch Mean": 2.522857666015625,
|
78 |
+
"accuracy": 0.484375,
|
79 |
+
"epoch": 0.0125,
|
80 |
+
"step": 5
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"epoch": 0.015,
|
84 |
+
"grad_norm": 43.77534484863281,
|
85 |
+
"learning_rate": 9e-07,
|
86 |
+
"loss": 0.7975,
|
87 |
+
"step": 6
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"Batch Mean": 2.3875732421875,
|
91 |
+
"accuracy": 0.4921875,
|
92 |
+
"epoch": 0.015,
|
93 |
+
"step": 6
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"epoch": 0.0175,
|
97 |
+
"grad_norm": 41.981407165527344,
|
98 |
+
"learning_rate": 1.05e-06,
|
99 |
+
"loss": 0.7951,
|
100 |
+
"step": 7
|
101 |
+
},
|
102 |
+
{
|
103 |
+
"Batch Mean": 2.317047119140625,
|
104 |
+
"accuracy": 0.515625,
|
105 |
+
"epoch": 0.0175,
|
106 |
+
"step": 7
|
107 |
+
},
|
108 |
+
{
|
109 |
+
"epoch": 0.02,
|
110 |
+
"grad_norm": 40.53751754760742,
|
111 |
+
"learning_rate": 1.2000000000000002e-06,
|
112 |
+
"loss": 0.791,
|
113 |
+
"step": 8
|
114 |
+
},
|
115 |
+
{
|
116 |
+
"Batch Mean": 1.757080078125,
|
117 |
+
"accuracy": 0.5078125,
|
118 |
+
"epoch": 0.02,
|
119 |
+
"step": 8
|
120 |
+
},
|
121 |
+
{
|
122 |
+
"epoch": 0.0225,
|
123 |
+
"grad_norm": 31.105939865112305,
|
124 |
+
"learning_rate": 1.35e-06,
|
125 |
+
"loss": 0.7571,
|
126 |
+
"step": 9
|
127 |
+
},
|
128 |
+
{
|
129 |
+
"Batch Mean": 1.6220855712890625,
|
130 |
+
"accuracy": 0.578125,
|
131 |
+
"epoch": 0.0225,
|
132 |
+
"step": 9
|
133 |
+
},
|
134 |
+
{
|
135 |
+
"epoch": 0.025,
|
136 |
+
"grad_norm": 33.61161804199219,
|
137 |
+
"learning_rate": 1.5e-06,
|
138 |
+
"loss": 0.7234,
|
139 |
+
"step": 10
|
140 |
+
},
|
141 |
+
{
|
142 |
+
"Batch Mean": 1.400146484375,
|
143 |
+
"accuracy": 0.53125,
|
144 |
+
"epoch": 0.025,
|
145 |
+
"step": 10
|
146 |
+
},
|
147 |
+
{
|
148 |
+
"epoch": 0.0275,
|
149 |
+
"grad_norm": 34.554622650146484,
|
150 |
+
"learning_rate": 1.65e-06,
|
151 |
+
"loss": 0.725,
|
152 |
+
"step": 11
|
153 |
+
},
|
154 |
+
{
|
155 |
+
"Batch Mean": -0.43697381019592285,
|
156 |
+
"accuracy": 0.5234375,
|
157 |
+
"epoch": 0.0275,
|
158 |
+
"step": 11
|
159 |
+
},
|
160 |
+
{
|
161 |
+
"epoch": 0.03,
|
162 |
+
"grad_norm": 12.222326278686523,
|
163 |
+
"learning_rate": 1.8e-06,
|
164 |
+
"loss": 0.6986,
|
165 |
+
"step": 12
|
166 |
+
},
|
167 |
+
{
|
168 |
+
"Batch Mean": -0.8854951858520508,
|
169 |
+
"accuracy": 0.5234375,
|
170 |
+
"epoch": 0.03,
|
171 |
+
"step": 12
|
172 |
+
},
|
173 |
+
{
|
174 |
+
"epoch": 0.0325,
|
175 |
+
"grad_norm": 16.398786544799805,
|
176 |
+
"learning_rate": 1.95e-06,
|
177 |
+
"loss": 0.7081,
|
178 |
+
"step": 13
|
179 |
+
},
|
180 |
+
{
|
181 |
+
"Batch Mean": -0.9508838653564453,
|
182 |
+
"accuracy": 0.640625,
|
183 |
+
"epoch": 0.0325,
|
184 |
+
"step": 13
|
185 |
+
},
|
186 |
+
{
|
187 |
+
"epoch": 0.035,
|
188 |
+
"grad_norm": 19.590002059936523,
|
189 |
+
"learning_rate": 2.1e-06,
|
190 |
+
"loss": 0.6784,
|
191 |
+
"step": 14
|
192 |
+
},
|
193 |
+
{
|
194 |
+
"Batch Mean": -1.0560526847839355,
|
195 |
+
"accuracy": 0.4921875,
|
196 |
+
"epoch": 0.035,
|
197 |
+
"step": 14
|
198 |
+
},
|
199 |
+
{
|
200 |
+
"epoch": 0.0375,
|
201 |
+
"grad_norm": 22.669742584228516,
|
202 |
+
"learning_rate": 2.25e-06,
|
203 |
+
"loss": 0.7235,
|
204 |
+
"step": 15
|
205 |
+
},
|
206 |
+
{
|
207 |
+
"Batch Mean": -1.1405725479125977,
|
208 |
+
"accuracy": 0.625,
|
209 |
+
"epoch": 0.0375,
|
210 |
+
"step": 15
|
211 |
+
},
|
212 |
+
{
|
213 |
+
"epoch": 0.04,
|
214 |
+
"grad_norm": 22.189626693725586,
|
215 |
+
"learning_rate": 2.4000000000000003e-06,
|
216 |
+
"loss": 0.6714,
|
217 |
+
"step": 16
|
218 |
+
},
|
219 |
+
{
|
220 |
+
"Batch Mean": -1.1522831916809082,
|
221 |
+
"accuracy": 0.640625,
|
222 |
+
"epoch": 0.04,
|
223 |
+
"step": 16
|
224 |
+
},
|
225 |
+
{
|
226 |
+
"epoch": 0.0425,
|
227 |
+
"grad_norm": 19.9060115814209,
|
228 |
+
"learning_rate": 2.55e-06,
|
229 |
+
"loss": 0.6757,
|
230 |
+
"step": 17
|
231 |
+
},
|
232 |
+
{
|
233 |
+
"Batch Mean": -1.1666946411132812,
|
234 |
+
"accuracy": 0.53125,
|
235 |
+
"epoch": 0.0425,
|
236 |
+
"step": 17
|
237 |
+
},
|
238 |
+
{
|
239 |
+
"epoch": 0.045,
|
240 |
+
"grad_norm": 23.661216735839844,
|
241 |
+
"learning_rate": 2.7e-06,
|
242 |
+
"loss": 0.7002,
|
243 |
+
"step": 18
|
244 |
+
},
|
245 |
+
{
|
246 |
+
"Batch Mean": -0.999359130859375,
|
247 |
+
"accuracy": 0.6640625,
|
248 |
+
"epoch": 0.045,
|
249 |
+
"step": 18
|
250 |
+
},
|
251 |
+
{
|
252 |
+
"epoch": 0.0475,
|
253 |
+
"grad_norm": 15.433859825134277,
|
254 |
+
"learning_rate": 2.85e-06,
|
255 |
+
"loss": 0.6471,
|
256 |
+
"step": 19
|
257 |
+
},
|
258 |
+
{
|
259 |
+
"Batch Mean": -0.6625549793243408,
|
260 |
+
"accuracy": 0.6171875,
|
261 |
+
"epoch": 0.0475,
|
262 |
+
"step": 19
|
263 |
+
},
|
264 |
+
{
|
265 |
+
"epoch": 0.05,
|
266 |
+
"grad_norm": 13.135390281677246,
|
267 |
+
"learning_rate": 3e-06,
|
268 |
+
"loss": 0.662,
|
269 |
+
"step": 20
|
270 |
+
},
|
271 |
+
{
|
272 |
+
"Batch Mean": -0.13487493991851807,
|
273 |
+
"accuracy": 0.6171875,
|
274 |
+
"epoch": 0.05,
|
275 |
+
"step": 20
|
276 |
+
},
|
277 |
+
{
|
278 |
+
"epoch": 0.0525,
|
279 |
+
"grad_norm": 7.336737632751465,
|
280 |
+
"learning_rate": 2.992105263157895e-06,
|
281 |
+
"loss": 0.629,
|
282 |
+
"step": 21
|
283 |
+
},
|
284 |
+
{
|
285 |
+
"Batch Mean": 0.2938040494918823,
|
286 |
+
"accuracy": 0.6640625,
|
287 |
+
"epoch": 0.0525,
|
288 |
+
"step": 21
|
289 |
+
},
|
290 |
+
{
|
291 |
+
"epoch": 0.055,
|
292 |
+
"grad_norm": 9.586155891418457,
|
293 |
+
"learning_rate": 2.9842105263157896e-06,
|
294 |
+
"loss": 0.6225,
|
295 |
+
"step": 22
|
296 |
+
},
|
297 |
+
{
|
298 |
+
"Batch Mean": 0.6780391931533813,
|
299 |
+
"accuracy": 0.7421875,
|
300 |
+
"epoch": 0.055,
|
301 |
+
"step": 22
|
302 |
+
},
|
303 |
+
{
|
304 |
+
"epoch": 0.0575,
|
305 |
+
"grad_norm": 14.825817108154297,
|
306 |
+
"learning_rate": 2.9763157894736843e-06,
|
307 |
+
"loss": 0.607,
|
308 |
+
"step": 23
|
309 |
+
},
|
310 |
+
{
|
311 |
+
"Batch Mean": 0.9421095848083496,
|
312 |
+
"accuracy": 0.609375,
|
313 |
+
"epoch": 0.0575,
|
314 |
+
"step": 23
|
315 |
+
},
|
316 |
+
{
|
317 |
+
"epoch": 0.06,
|
318 |
+
"grad_norm": 16.7529354095459,
|
319 |
+
"learning_rate": 2.968421052631579e-06,
|
320 |
+
"loss": 0.6542,
|
321 |
+
"step": 24
|
322 |
+
},
|
323 |
+
{
|
324 |
+
"Batch Mean": 1.0722179412841797,
|
325 |
+
"accuracy": 0.71875,
|
326 |
+
"epoch": 0.06,
|
327 |
+
"step": 24
|
328 |
+
},
|
329 |
+
{
|
330 |
+
"epoch": 0.0625,
|
331 |
+
"grad_norm": 18.940032958984375,
|
332 |
+
"learning_rate": 2.960526315789474e-06,
|
333 |
+
"loss": 0.5882,
|
334 |
+
"step": 25
|
335 |
+
},
|
336 |
+
{
|
337 |
+
"Batch Mean": 0.8396664261817932,
|
338 |
+
"accuracy": 0.6484375,
|
339 |
+
"epoch": 0.0625,
|
340 |
+
"step": 25
|
341 |
+
},
|
342 |
+
{
|
343 |
+
"epoch": 0.065,
|
344 |
+
"grad_norm": 14.680763244628906,
|
345 |
+
"learning_rate": 2.9526315789473685e-06,
|
346 |
+
"loss": 0.6463,
|
347 |
+
"step": 26
|
348 |
+
},
|
349 |
+
{
|
350 |
+
"Batch Mean": 0.2986793518066406,
|
351 |
+
"accuracy": 0.671875,
|
352 |
+
"epoch": 0.065,
|
353 |
+
"step": 26
|
354 |
+
},
|
355 |
+
{
|
356 |
+
"epoch": 0.0675,
|
357 |
+
"grad_norm": 7.3362345695495605,
|
358 |
+
"learning_rate": 2.9447368421052633e-06,
|
359 |
+
"loss": 0.5923,
|
360 |
+
"step": 27
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"Batch Mean": -0.29196763038635254,
|
364 |
+
"accuracy": 0.734375,
|
365 |
+
"epoch": 0.0675,
|
366 |
+
"step": 27
|
367 |
+
},
|
368 |
+
{
|
369 |
+
"epoch": 0.07,
|
370 |
+
"grad_norm": 8.053507804870605,
|
371 |
+
"learning_rate": 2.936842105263158e-06,
|
372 |
+
"loss": 0.5261,
|
373 |
+
"step": 28
|
374 |
+
},
|
375 |
+
{
|
376 |
+
"Batch Mean": -0.8161113262176514,
|
377 |
+
"accuracy": 0.7109375,
|
378 |
+
"epoch": 0.07,
|
379 |
+
"step": 28
|
380 |
+
},
|
381 |
+
{
|
382 |
+
"epoch": 0.0725,
|
383 |
+
"grad_norm": 14.036270141601562,
|
384 |
+
"learning_rate": 2.9289473684210528e-06,
|
385 |
+
"loss": 0.5482,
|
386 |
+
"step": 29
|
387 |
+
},
|
388 |
+
{
|
389 |
+
"Batch Mean": -0.7824737429618835,
|
390 |
+
"accuracy": 0.75,
|
391 |
+
"epoch": 0.0725,
|
392 |
+
"step": 29
|
393 |
+
},
|
394 |
+
{
|
395 |
+
"epoch": 0.075,
|
396 |
+
"grad_norm": 13.984892845153809,
|
397 |
+
"learning_rate": 2.9210526315789475e-06,
|
398 |
+
"loss": 0.5939,
|
399 |
+
"step": 30
|
400 |
+
},
|
401 |
+
{
|
402 |
+
"Batch Mean": -0.4927825927734375,
|
403 |
+
"accuracy": 0.734375,
|
404 |
+
"epoch": 0.075,
|
405 |
+
"step": 30
|
406 |
+
},
|
407 |
+
{
|
408 |
+
"epoch": 0.0775,
|
409 |
+
"grad_norm": 10.751565933227539,
|
410 |
+
"learning_rate": 2.9131578947368423e-06,
|
411 |
+
"loss": 0.5901,
|
412 |
+
"step": 31
|
413 |
+
},
|
414 |
+
{
|
415 |
+
"Batch Mean": 0.15497040748596191,
|
416 |
+
"accuracy": 0.6796875,
|
417 |
+
"epoch": 0.0775,
|
418 |
+
"step": 31
|
419 |
+
},
|
420 |
+
{
|
421 |
+
"epoch": 0.08,
|
422 |
+
"grad_norm": 8.30102252960205,
|
423 |
+
"learning_rate": 2.905263157894737e-06,
|
424 |
+
"loss": 0.5731,
|
425 |
+
"step": 32
|
426 |
+
},
|
427 |
+
{
|
428 |
+
"Batch Mean": 0.16421844065189362,
|
429 |
+
"accuracy": 0.7578125,
|
430 |
+
"epoch": 0.08,
|
431 |
+
"step": 32
|
432 |
+
},
|
433 |
+
{
|
434 |
+
"epoch": 0.0825,
|
435 |
+
"grad_norm": 9.087366104125977,
|
436 |
+
"learning_rate": 2.8973684210526318e-06,
|
437 |
+
"loss": 0.4958,
|
438 |
+
"step": 33
|
439 |
+
},
|
440 |
+
{
|
441 |
+
"Batch Mean": 0.3596491813659668,
|
442 |
+
"accuracy": 0.859375,
|
443 |
+
"epoch": 0.0825,
|
444 |
+
"step": 33
|
445 |
+
},
|
446 |
+
{
|
447 |
+
"epoch": 0.085,
|
448 |
+
"grad_norm": 9.984371185302734,
|
449 |
+
"learning_rate": 2.8894736842105265e-06,
|
450 |
+
"loss": 0.4321,
|
451 |
+
"step": 34
|
452 |
+
},
|
453 |
+
{
|
454 |
+
"Batch Mean": 0.2128266543149948,
|
455 |
+
"accuracy": 0.734375,
|
456 |
+
"epoch": 0.085,
|
457 |
+
"step": 34
|
458 |
+
},
|
459 |
+
{
|
460 |
+
"epoch": 0.0875,
|
461 |
+
"grad_norm": 7.400077819824219,
|
462 |
+
"learning_rate": 2.8815789473684213e-06,
|
463 |
+
"loss": 0.5178,
|
464 |
+
"step": 35
|
465 |
+
},
|
466 |
+
{
|
467 |
+
"Batch Mean": 0.10449030995368958,
|
468 |
+
"accuracy": 0.7578125,
|
469 |
+
"epoch": 0.0875,
|
470 |
+
"step": 35
|
471 |
+
},
|
472 |
+
{
|
473 |
+
"epoch": 0.09,
|
474 |
+
"grad_norm": 6.669457912445068,
|
475 |
+
"learning_rate": 2.873684210526316e-06,
|
476 |
+
"loss": 0.4914,
|
477 |
+
"step": 36
|
478 |
+
},
|
479 |
+
{
|
480 |
+
"Batch Mean": -0.24382781982421875,
|
481 |
+
"accuracy": 0.6953125,
|
482 |
+
"epoch": 0.09,
|
483 |
+
"step": 36
|
484 |
+
},
|
485 |
+
{
|
486 |
+
"epoch": 0.0925,
|
487 |
+
"grad_norm": 10.831747055053711,
|
488 |
+
"learning_rate": 2.8657894736842103e-06,
|
489 |
+
"loss": 0.5305,
|
490 |
+
"step": 37
|
491 |
+
},
|
492 |
+
{
|
493 |
+
"Batch Mean": -0.29154396057128906,
|
494 |
+
"accuracy": 0.7109375,
|
495 |
+
"epoch": 0.0925,
|
496 |
+
"step": 37
|
497 |
+
},
|
498 |
+
{
|
499 |
+
"epoch": 0.095,
|
500 |
+
"grad_norm": 11.060967445373535,
|
501 |
+
"learning_rate": 2.857894736842105e-06,
|
502 |
+
"loss": 0.5589,
|
503 |
+
"step": 38
|
504 |
+
},
|
505 |
+
{
|
506 |
+
"Batch Mean": -0.07830595970153809,
|
507 |
+
"accuracy": 0.765625,
|
508 |
+
"epoch": 0.095,
|
509 |
+
"step": 38
|
510 |
+
},
|
511 |
+
{
|
512 |
+
"epoch": 0.0975,
|
513 |
+
"grad_norm": 8.426444053649902,
|
514 |
+
"learning_rate": 2.85e-06,
|
515 |
+
"loss": 0.4663,
|
516 |
+
"step": 39
|
517 |
+
},
|
518 |
+
{
|
519 |
+
"Batch Mean": -0.09856069087982178,
|
520 |
+
"accuracy": 0.7890625,
|
521 |
+
"epoch": 0.0975,
|
522 |
+
"step": 39
|
523 |
+
},
|
524 |
+
{
|
525 |
+
"epoch": 0.1,
|
526 |
+
"grad_norm": 11.046717643737793,
|
527 |
+
"learning_rate": 2.8421052631578946e-06,
|
528 |
+
"loss": 0.455,
|
529 |
+
"step": 40
|
530 |
+
},
|
531 |
+
{
|
532 |
+
"Batch Mean": 0.29904642701148987,
|
533 |
+
"accuracy": 0.8125,
|
534 |
+
"epoch": 0.1,
|
535 |
+
"step": 40
|
536 |
+
},
|
537 |
+
{
|
538 |
+
"epoch": 0.1025,
|
539 |
+
"grad_norm": 11.232060432434082,
|
540 |
+
"learning_rate": 2.8342105263157897e-06,
|
541 |
+
"loss": 0.437,
|
542 |
+
"step": 41
|
543 |
+
},
|
544 |
+
{
|
545 |
+
"Batch Mean": 0.43527090549468994,
|
546 |
+
"accuracy": 0.78125,
|
547 |
+
"epoch": 0.1025,
|
548 |
+
"step": 41
|
549 |
+
},
|
550 |
+
{
|
551 |
+
"epoch": 0.105,
|
552 |
+
"grad_norm": 12.555906295776367,
|
553 |
+
"learning_rate": 2.8263157894736845e-06,
|
554 |
+
"loss": 0.5316,
|
555 |
+
"step": 42
|
556 |
+
},
|
557 |
+
{
|
558 |
+
"Batch Mean": 0.02639901638031006,
|
559 |
+
"accuracy": 0.8046875,
|
560 |
+
"epoch": 0.105,
|
561 |
+
"step": 42
|
562 |
+
},
|
563 |
+
{
|
564 |
+
"epoch": 0.1075,
|
565 |
+
"grad_norm": 9.500948905944824,
|
566 |
+
"learning_rate": 2.8184210526315792e-06,
|
567 |
+
"loss": 0.4874,
|
568 |
+
"step": 43
|
569 |
+
},
|
570 |
+
{
|
571 |
+
"Batch Mean": -0.3524761199951172,
|
572 |
+
"accuracy": 0.7421875,
|
573 |
+
"epoch": 0.1075,
|
574 |
+
"step": 43
|
575 |
+
},
|
576 |
+
{
|
577 |
+
"epoch": 0.11,
|
578 |
+
"grad_norm": 10.417457580566406,
|
579 |
+
"learning_rate": 2.810526315789474e-06,
|
580 |
+
"loss": 0.5011,
|
581 |
+
"step": 44
|
582 |
+
},
|
583 |
+
{
|
584 |
+
"Batch Mean": -0.32391130924224854,
|
585 |
+
"accuracy": 0.8125,
|
586 |
+
"epoch": 0.11,
|
587 |
+
"step": 44
|
588 |
+
},
|
589 |
+
{
|
590 |
+
"epoch": 0.1125,
|
591 |
+
"grad_norm": 9.867128372192383,
|
592 |
+
"learning_rate": 2.8026315789473687e-06,
|
593 |
+
"loss": 0.4908,
|
594 |
+
"step": 45
|
595 |
+
},
|
596 |
+
{
|
597 |
+
"Batch Mean": -0.42060422897338867,
|
598 |
+
"accuracy": 0.8125,
|
599 |
+
"epoch": 0.1125,
|
600 |
+
"step": 45
|
601 |
+
},
|
602 |
+
{
|
603 |
+
"epoch": 0.115,
|
604 |
+
"grad_norm": 10.613035202026367,
|
605 |
+
"learning_rate": 2.7947368421052635e-06,
|
606 |
+
"loss": 0.4642,
|
607 |
+
"step": 46
|
608 |
+
},
|
609 |
+
{
|
610 |
+
"Batch Mean": 0.04145359992980957,
|
611 |
+
"accuracy": 0.7890625,
|
612 |
+
"epoch": 0.115,
|
613 |
+
"step": 46
|
614 |
+
},
|
615 |
+
{
|
616 |
+
"epoch": 0.1175,
|
617 |
+
"grad_norm": 12.13752555847168,
|
618 |
+
"learning_rate": 2.7868421052631578e-06,
|
619 |
+
"loss": 0.4943,
|
620 |
+
"step": 47
|
621 |
+
},
|
622 |
+
{
|
623 |
+
"Batch Mean": 0.24553179740905762,
|
624 |
+
"accuracy": 0.8046875,
|
625 |
+
"epoch": 0.1175,
|
626 |
+
"step": 47
|
627 |
+
},
|
628 |
+
{
|
629 |
+
"epoch": 0.12,
|
630 |
+
"grad_norm": 11.048128128051758,
|
631 |
+
"learning_rate": 2.7789473684210525e-06,
|
632 |
+
"loss": 0.3946,
|
633 |
+
"step": 48
|
634 |
+
},
|
635 |
+
{
|
636 |
+
"Batch Mean": -0.05052506923675537,
|
637 |
+
"accuracy": 0.796875,
|
638 |
+
"epoch": 0.12,
|
639 |
+
"step": 48
|
640 |
+
},
|
641 |
+
{
|
642 |
+
"epoch": 0.1225,
|
643 |
+
"grad_norm": 9.053565979003906,
|
644 |
+
"learning_rate": 2.7710526315789473e-06,
|
645 |
+
"loss": 0.4474,
|
646 |
+
"step": 49
|
647 |
+
},
|
648 |
+
{
|
649 |
+
"Batch Mean": -0.43336963653564453,
|
650 |
+
"accuracy": 0.7265625,
|
651 |
+
"epoch": 0.1225,
|
652 |
+
"step": 49
|
653 |
+
},
|
654 |
+
{
|
655 |
+
"epoch": 0.125,
|
656 |
+
"grad_norm": 15.04668140411377,
|
657 |
+
"learning_rate": 2.763157894736842e-06,
|
658 |
+
"loss": 0.5496,
|
659 |
+
"step": 50
|
660 |
+
},
|
661 |
+
{
|
662 |
+
"Batch Mean": -0.29952335357666016,
|
663 |
+
"accuracy": 0.765625,
|
664 |
+
"epoch": 0.125,
|
665 |
+
"step": 50
|
666 |
+
},
|
667 |
+
{
|
668 |
+
"epoch": 0.1275,
|
669 |
+
"grad_norm": 11.302435874938965,
|
670 |
+
"learning_rate": 2.7552631578947368e-06,
|
671 |
+
"loss": 0.4337,
|
672 |
+
"step": 51
|
673 |
+
},
|
674 |
+
{
|
675 |
+
"Batch Mean": -0.01873302459716797,
|
676 |
+
"accuracy": 0.828125,
|
677 |
+
"epoch": 0.1275,
|
678 |
+
"step": 51
|
679 |
+
},
|
680 |
+
{
|
681 |
+
"epoch": 0.13,
|
682 |
+
"grad_norm": 10.582301139831543,
|
683 |
+
"learning_rate": 2.7473684210526315e-06,
|
684 |
+
"loss": 0.4073,
|
685 |
+
"step": 52
|
686 |
+
},
|
687 |
+
{
|
688 |
+
"Batch Mean": 0.4117751717567444,
|
689 |
+
"accuracy": 0.8046875,
|
690 |
+
"epoch": 0.13,
|
691 |
+
"step": 52
|
692 |
+
},
|
693 |
+
{
|
694 |
+
"epoch": 0.1325,
|
695 |
+
"grad_norm": 9.776220321655273,
|
696 |
+
"learning_rate": 2.7394736842105263e-06,
|
697 |
+
"loss": 0.4235,
|
698 |
+
"step": 53
|
699 |
+
},
|
700 |
+
{
|
701 |
+
"Batch Mean": 0.5990171432495117,
|
702 |
+
"accuracy": 0.78125,
|
703 |
+
"epoch": 0.1325,
|
704 |
+
"step": 53
|
705 |
+
},
|
706 |
+
{
|
707 |
+
"epoch": 0.135,
|
708 |
+
"grad_norm": 12.647154808044434,
|
709 |
+
"learning_rate": 2.7315789473684214e-06,
|
710 |
+
"loss": 0.4858,
|
711 |
+
"step": 54
|
712 |
+
},
|
713 |
+
{
|
714 |
+
"Batch Mean": 0.2538492679595947,
|
715 |
+
"accuracy": 0.7265625,
|
716 |
+
"epoch": 0.135,
|
717 |
+
"step": 54
|
718 |
+
},
|
719 |
+
{
|
720 |
+
"epoch": 0.1375,
|
721 |
+
"grad_norm": 11.564103126525879,
|
722 |
+
"learning_rate": 2.723684210526316e-06,
|
723 |
+
"loss": 0.5233,
|
724 |
+
"step": 55
|
725 |
+
},
|
726 |
+
{
|
727 |
+
"Batch Mean": 0.17059040069580078,
|
728 |
+
"accuracy": 0.7578125,
|
729 |
+
"epoch": 0.1375,
|
730 |
+
"step": 55
|
731 |
+
},
|
732 |
+
{
|
733 |
+
"epoch": 0.14,
|
734 |
+
"grad_norm": 10.589515686035156,
|
735 |
+
"learning_rate": 2.715789473684211e-06,
|
736 |
+
"loss": 0.4762,
|
737 |
+
"step": 56
|
738 |
+
},
|
739 |
+
{
|
740 |
+
"Batch Mean": -0.3642357587814331,
|
741 |
+
"accuracy": 0.78125,
|
742 |
+
"epoch": 0.14,
|
743 |
+
"step": 56
|
744 |
+
},
|
745 |
+
{
|
746 |
+
"epoch": 0.1425,
|
747 |
+
"grad_norm": 10.727502822875977,
|
748 |
+
"learning_rate": 2.7078947368421052e-06,
|
749 |
+
"loss": 0.5289,
|
750 |
+
"step": 57
|
751 |
+
},
|
752 |
+
{
|
753 |
+
"Batch Mean": -0.5980481505393982,
|
754 |
+
"accuracy": 0.8203125,
|
755 |
+
"epoch": 0.1425,
|
756 |
+
"step": 57
|
757 |
+
},
|
758 |
+
{
|
759 |
+
"epoch": 0.145,
|
760 |
+
"grad_norm": 8.915611267089844,
|
761 |
+
"learning_rate": 2.7e-06,
|
762 |
+
"loss": 0.4038,
|
763 |
+
"step": 58
|
764 |
+
},
|
765 |
+
{
|
766 |
+
"Batch Mean": -0.46013855934143066,
|
767 |
+
"accuracy": 0.859375,
|
768 |
+
"epoch": 0.145,
|
769 |
+
"step": 58
|
770 |
+
},
|
771 |
+
{
|
772 |
+
"epoch": 0.1475,
|
773 |
+
"grad_norm": 9.178686141967773,
|
774 |
+
"learning_rate": 2.6921052631578947e-06,
|
775 |
+
"loss": 0.3708,
|
776 |
+
"step": 59
|
777 |
+
},
|
778 |
+
{
|
779 |
+
"Batch Mean": -0.1478586494922638,
|
780 |
+
"accuracy": 0.84375,
|
781 |
+
"epoch": 0.1475,
|
782 |
+
"step": 59
|
783 |
+
},
|
784 |
+
{
|
785 |
+
"epoch": 0.15,
|
786 |
+
"grad_norm": 6.339688301086426,
|
787 |
+
"learning_rate": 2.6842105263157895e-06,
|
788 |
+
"loss": 0.4036,
|
789 |
+
"step": 60
|
790 |
+
},
|
791 |
+
{
|
792 |
+
"Batch Mean": 0.003389716148376465,
|
793 |
+
"accuracy": 0.7578125,
|
794 |
+
"epoch": 0.15,
|
795 |
+
"step": 60
|
796 |
+
},
|
797 |
+
{
|
798 |
+
"epoch": 0.1525,
|
799 |
+
"grad_norm": 6.763300895690918,
|
800 |
+
"learning_rate": 2.6763157894736842e-06,
|
801 |
+
"loss": 0.5163,
|
802 |
+
"step": 61
|
803 |
+
},
|
804 |
+
{
|
805 |
+
"Batch Mean": 0.4018087387084961,
|
806 |
+
"accuracy": 0.7734375,
|
807 |
+
"epoch": 0.1525,
|
808 |
+
"step": 61
|
809 |
+
},
|
810 |
+
{
|
811 |
+
"epoch": 0.155,
|
812 |
+
"grad_norm": 8.631525039672852,
|
813 |
+
"learning_rate": 2.668421052631579e-06,
|
814 |
+
"loss": 0.4219,
|
815 |
+
"step": 62
|
816 |
+
},
|
817 |
+
{
|
818 |
+
"Batch Mean": 0.342004656791687,
|
819 |
+
"accuracy": 0.734375,
|
820 |
+
"epoch": 0.155,
|
821 |
+
"step": 62
|
822 |
+
},
|
823 |
+
{
|
824 |
+
"epoch": 0.1575,
|
825 |
+
"grad_norm": 9.190362930297852,
|
826 |
+
"learning_rate": 2.6605263157894737e-06,
|
827 |
+
"loss": 0.4708,
|
828 |
+
"step": 63
|
829 |
+
},
|
830 |
+
{
|
831 |
+
"Batch Mean": 0.5178697109222412,
|
832 |
+
"accuracy": 0.8125,
|
833 |
+
"epoch": 0.1575,
|
834 |
+
"step": 63
|
835 |
+
},
|
836 |
+
{
|
837 |
+
"epoch": 0.16,
|
838 |
+
"grad_norm": 10.207452774047852,
|
839 |
+
"learning_rate": 2.6526315789473685e-06,
|
840 |
+
"loss": 0.4458,
|
841 |
+
"step": 64
|
842 |
+
},
|
843 |
+
{
|
844 |
+
"Batch Mean": 0.03012150526046753,
|
845 |
+
"accuracy": 0.8125,
|
846 |
+
"epoch": 0.16,
|
847 |
+
"step": 64
|
848 |
+
},
|
849 |
+
{
|
850 |
+
"epoch": 0.1625,
|
851 |
+
"grad_norm": 8.050507545471191,
|
852 |
+
"learning_rate": 2.644736842105263e-06,
|
853 |
+
"loss": 0.4344,
|
854 |
+
"step": 65
|
855 |
+
},
|
856 |
+
{
|
857 |
+
"Batch Mean": -0.3691895604133606,
|
858 |
+
"accuracy": 0.78125,
|
859 |
+
"epoch": 0.1625,
|
860 |
+
"step": 65
|
861 |
+
},
|
862 |
+
{
|
863 |
+
"epoch": 0.165,
|
864 |
+
"grad_norm": 11.163555145263672,
|
865 |
+
"learning_rate": 2.636842105263158e-06,
|
866 |
+
"loss": 0.4276,
|
867 |
+
"step": 66
|
868 |
+
},
|
869 |
+
{
|
870 |
+
"Batch Mean": -0.2624788284301758,
|
871 |
+
"accuracy": 0.8125,
|
872 |
+
"epoch": 0.165,
|
873 |
+
"step": 66
|
874 |
+
},
|
875 |
+
{
|
876 |
+
"epoch": 0.1675,
|
877 |
+
"grad_norm": 9.523059844970703,
|
878 |
+
"learning_rate": 2.6289473684210527e-06,
|
879 |
+
"loss": 0.4001,
|
880 |
+
"step": 67
|
881 |
+
},
|
882 |
+
{
|
883 |
+
"Batch Mean": -0.0055138468742370605,
|
884 |
+
"accuracy": 0.8046875,
|
885 |
+
"epoch": 0.1675,
|
886 |
+
"step": 67
|
887 |
+
},
|
888 |
+
{
|
889 |
+
"epoch": 0.17,
|
890 |
+
"grad_norm": 9.094910621643066,
|
891 |
+
"learning_rate": 2.6210526315789474e-06,
|
892 |
+
"loss": 0.4024,
|
893 |
+
"step": 68
|
894 |
+
},
|
895 |
+
{
|
896 |
+
"Batch Mean": 0.2572704553604126,
|
897 |
+
"accuracy": 0.7734375,
|
898 |
+
"epoch": 0.17,
|
899 |
+
"step": 68
|
900 |
+
},
|
901 |
+
{
|
902 |
+
"epoch": 0.1725,
|
903 |
+
"grad_norm": 10.00645923614502,
|
904 |
+
"learning_rate": 2.613157894736842e-06,
|
905 |
+
"loss": 0.4802,
|
906 |
+
"step": 69
|
907 |
+
},
|
908 |
+
{
|
909 |
+
"Batch Mean": 0.5112218856811523,
|
910 |
+
"accuracy": 0.8046875,
|
911 |
+
"epoch": 0.1725,
|
912 |
+
"step": 69
|
913 |
+
},
|
914 |
+
{
|
915 |
+
"epoch": 0.175,
|
916 |
+
"grad_norm": 11.776649475097656,
|
917 |
+
"learning_rate": 2.605263157894737e-06,
|
918 |
+
"loss": 0.4194,
|
919 |
+
"step": 70
|
920 |
+
},
|
921 |
+
{
|
922 |
+
"Batch Mean": 0.29661768674850464,
|
923 |
+
"accuracy": 0.8125,
|
924 |
+
"epoch": 0.175,
|
925 |
+
"step": 70
|
926 |
+
},
|
927 |
+
{
|
928 |
+
"epoch": 0.1775,
|
929 |
+
"grad_norm": 9.701162338256836,
|
930 |
+
"learning_rate": 2.5973684210526317e-06,
|
931 |
+
"loss": 0.4356,
|
932 |
+
"step": 71
|
933 |
+
},
|
934 |
+
{
|
935 |
+
"Batch Mean": 0.049837589263916016,
|
936 |
+
"accuracy": 0.859375,
|
937 |
+
"epoch": 0.1775,
|
938 |
+
"step": 71
|
939 |
+
},
|
940 |
+
{
|
941 |
+
"epoch": 0.18,
|
942 |
+
"grad_norm": 8.692646980285645,
|
943 |
+
"learning_rate": 2.5894736842105264e-06,
|
944 |
+
"loss": 0.2881,
|
945 |
+
"step": 72
|
946 |
+
},
|
947 |
+
{
|
948 |
+
"Batch Mean": -0.3786022663116455,
|
949 |
+
"accuracy": 0.8125,
|
950 |
+
"epoch": 0.18,
|
951 |
+
"step": 72
|
952 |
+
},
|
953 |
+
{
|
954 |
+
"epoch": 0.1825,
|
955 |
+
"grad_norm": 10.834145545959473,
|
956 |
+
"learning_rate": 2.581578947368421e-06,
|
957 |
+
"loss": 0.4654,
|
958 |
+
"step": 73
|
959 |
+
},
|
960 |
+
{
|
961 |
+
"Batch Mean": -0.20977401733398438,
|
962 |
+
"accuracy": 0.8515625,
|
963 |
+
"epoch": 0.1825,
|
964 |
+
"step": 73
|
965 |
+
},
|
966 |
+
{
|
967 |
+
"epoch": 0.185,
|
968 |
+
"grad_norm": 7.816598892211914,
|
969 |
+
"learning_rate": 2.573684210526316e-06,
|
970 |
+
"loss": 0.4101,
|
971 |
+
"step": 74
|
972 |
+
},
|
973 |
+
{
|
974 |
+
"Batch Mean": -0.6599991321563721,
|
975 |
+
"accuracy": 0.8203125,
|
976 |
+
"epoch": 0.185,
|
977 |
+
"step": 74
|
978 |
+
},
|
979 |
+
{
|
980 |
+
"epoch": 0.1875,
|
981 |
+
"grad_norm": 13.089007377624512,
|
982 |
+
"learning_rate": 2.5657894736842107e-06,
|
983 |
+
"loss": 0.427,
|
984 |
+
"step": 75
|
985 |
+
},
|
986 |
+
{
|
987 |
+
"Batch Mean": -0.37617337703704834,
|
988 |
+
"accuracy": 0.7734375,
|
989 |
+
"epoch": 0.1875,
|
990 |
+
"step": 75
|
991 |
+
},
|
992 |
+
{
|
993 |
+
"epoch": 0.19,
|
994 |
+
"grad_norm": 12.075210571289062,
|
995 |
+
"learning_rate": 2.5578947368421054e-06,
|
996 |
+
"loss": 0.4797,
|
997 |
+
"step": 76
|
998 |
+
},
|
999 |
+
{
|
1000 |
+
"Batch Mean": 0.1281442642211914,
|
1001 |
+
"accuracy": 0.8046875,
|
1002 |
+
"epoch": 0.19,
|
1003 |
+
"step": 76
|
1004 |
+
},
|
1005 |
+
{
|
1006 |
+
"epoch": 0.1925,
|
1007 |
+
"grad_norm": 9.70462703704834,
|
1008 |
+
"learning_rate": 2.55e-06,
|
1009 |
+
"loss": 0.4425,
|
1010 |
+
"step": 77
|
1011 |
+
},
|
1012 |
+
{
|
1013 |
+
"Batch Mean": 0.6071650981903076,
|
1014 |
+
"accuracy": 0.828125,
|
1015 |
+
"epoch": 0.1925,
|
1016 |
+
"step": 77
|
1017 |
+
},
|
1018 |
+
{
|
1019 |
+
"epoch": 0.195,
|
1020 |
+
"grad_norm": 14.395353317260742,
|
1021 |
+
"learning_rate": 2.542105263157895e-06,
|
1022 |
+
"loss": 0.4016,
|
1023 |
+
"step": 78
|
1024 |
+
},
|
1025 |
+
{
|
1026 |
+
"Batch Mean": 0.34730714559555054,
|
1027 |
+
"accuracy": 0.8203125,
|
1028 |
+
"epoch": 0.195,
|
1029 |
+
"step": 78
|
1030 |
+
},
|
1031 |
+
{
|
1032 |
+
"epoch": 0.1975,
|
1033 |
+
"grad_norm": 9.122536659240723,
|
1034 |
+
"learning_rate": 2.5342105263157892e-06,
|
1035 |
+
"loss": 0.3994,
|
1036 |
+
"step": 79
|
1037 |
+
},
|
1038 |
+
{
|
1039 |
+
"Batch Mean": 0.36483922600746155,
|
1040 |
+
"accuracy": 0.828125,
|
1041 |
+
"epoch": 0.1975,
|
1042 |
+
"step": 79
|
1043 |
+
},
|
1044 |
+
{
|
1045 |
+
"epoch": 0.2,
|
1046 |
+
"grad_norm": 10.289307594299316,
|
1047 |
+
"learning_rate": 2.526315789473684e-06,
|
1048 |
+
"loss": 0.368,
|
1049 |
+
"step": 80
|
1050 |
+
},
|
1051 |
+
{
|
1052 |
+
"Batch Mean": -0.20039799809455872,
|
1053 |
+
"accuracy": 0.8125,
|
1054 |
+
"epoch": 0.2,
|
1055 |
+
"step": 80
|
1056 |
+
},
|
1057 |
+
{
|
1058 |
+
"epoch": 0.2025,
|
1059 |
+
"grad_norm": 7.813342094421387,
|
1060 |
+
"learning_rate": 2.5184210526315787e-06,
|
1061 |
+
"loss": 0.3679,
|
1062 |
+
"step": 81
|
1063 |
+
},
|
1064 |
+
{
|
1065 |
+
"Batch Mean": -0.1629079282283783,
|
1066 |
+
"accuracy": 0.8203125,
|
1067 |
+
"epoch": 0.2025,
|
1068 |
+
"step": 81
|
1069 |
+
},
|
1070 |
+
{
|
1071 |
+
"epoch": 0.205,
|
1072 |
+
"grad_norm": 7.504952430725098,
|
1073 |
+
"learning_rate": 2.510526315789474e-06,
|
1074 |
+
"loss": 0.3823,
|
1075 |
+
"step": 82
|
1076 |
+
},
|
1077 |
+
{
|
1078 |
+
"Batch Mean": -0.07863587141036987,
|
1079 |
+
"accuracy": 0.8046875,
|
1080 |
+
"epoch": 0.205,
|
1081 |
+
"step": 82
|
1082 |
+
},
|
1083 |
+
{
|
1084 |
+
"epoch": 0.2075,
|
1085 |
+
"grad_norm": 7.721461296081543,
|
1086 |
+
"learning_rate": 2.5026315789473686e-06,
|
1087 |
+
"loss": 0.3967,
|
1088 |
+
"step": 83
|
1089 |
+
},
|
1090 |
+
{
|
1091 |
+
"Batch Mean": 0.17194491624832153,
|
1092 |
+
"accuracy": 0.8125,
|
1093 |
+
"epoch": 0.2075,
|
1094 |
+
"step": 83
|
1095 |
+
},
|
1096 |
+
{
|
1097 |
+
"epoch": 0.21,
|
1098 |
+
"grad_norm": 8.062063217163086,
|
1099 |
+
"learning_rate": 2.4947368421052634e-06,
|
1100 |
+
"loss": 0.4195,
|
1101 |
+
"step": 84
|
1102 |
+
},
|
1103 |
+
{
|
1104 |
+
"Batch Mean": 0.11748838424682617,
|
1105 |
+
"accuracy": 0.8359375,
|
1106 |
+
"epoch": 0.21,
|
1107 |
+
"step": 84
|
1108 |
+
},
|
1109 |
+
{
|
1110 |
+
"epoch": 0.2125,
|
1111 |
+
"grad_norm": 8.320355415344238,
|
1112 |
+
"learning_rate": 2.486842105263158e-06,
|
1113 |
+
"loss": 0.3864,
|
1114 |
+
"step": 85
|
1115 |
+
},
|
1116 |
+
{
|
1117 |
+
"Batch Mean": -0.40801382064819336,
|
1118 |
+
"accuracy": 0.7734375,
|
1119 |
+
"epoch": 0.2125,
|
1120 |
+
"step": 85
|
1121 |
+
},
|
1122 |
+
{
|
1123 |
+
"epoch": 0.215,
|
1124 |
+
"grad_norm": 14.8066987991333,
|
1125 |
+
"learning_rate": 2.478947368421053e-06,
|
1126 |
+
"loss": 0.4639,
|
1127 |
+
"step": 86
|
1128 |
+
},
|
1129 |
+
{
|
1130 |
+
"Batch Mean": -0.35811758041381836,
|
1131 |
+
"accuracy": 0.7734375,
|
1132 |
+
"epoch": 0.215,
|
1133 |
+
"step": 86
|
1134 |
+
},
|
1135 |
+
{
|
1136 |
+
"epoch": 0.2175,
|
1137 |
+
"grad_norm": 14.074177742004395,
|
1138 |
+
"learning_rate": 2.4710526315789476e-06,
|
1139 |
+
"loss": 0.4999,
|
1140 |
+
"step": 87
|
1141 |
+
},
|
1142 |
+
{
|
1143 |
+
"Batch Mean": 0.278584361076355,
|
1144 |
+
"accuracy": 0.7734375,
|
1145 |
+
"epoch": 0.2175,
|
1146 |
+
"step": 87
|
1147 |
+
},
|
1148 |
+
{
|
1149 |
+
"epoch": 0.22,
|
1150 |
+
"grad_norm": 10.59004020690918,
|
1151 |
+
"learning_rate": 2.4631578947368424e-06,
|
1152 |
+
"loss": 0.404,
|
1153 |
+
"step": 88
|
1154 |
+
},
|
1155 |
+
{
|
1156 |
+
"Batch Mean": -0.21054387092590332,
|
1157 |
+
"accuracy": 0.84375,
|
1158 |
+
"epoch": 0.22,
|
1159 |
+
"step": 88
|
1160 |
+
},
|
1161 |
+
{
|
1162 |
+
"epoch": 0.2225,
|
1163 |
+
"grad_norm": 8.488351821899414,
|
1164 |
+
"learning_rate": 2.4552631578947367e-06,
|
1165 |
+
"loss": 0.3517,
|
1166 |
+
"step": 89
|
1167 |
+
},
|
1168 |
+
{
|
1169 |
+
"Batch Mean": -0.22967231273651123,
|
1170 |
+
"accuracy": 0.84375,
|
1171 |
+
"epoch": 0.2225,
|
1172 |
+
"step": 89
|
1173 |
+
},
|
1174 |
+
{
|
1175 |
+
"epoch": 0.225,
|
1176 |
+
"grad_norm": 10.347502708435059,
|
1177 |
+
"learning_rate": 2.4473684210526314e-06,
|
1178 |
+
"loss": 0.3382,
|
1179 |
+
"step": 90
|
1180 |
+
},
|
1181 |
+
{
|
1182 |
+
"Batch Mean": 0.1892259418964386,
|
1183 |
+
"accuracy": 0.7890625,
|
1184 |
+
"epoch": 0.225,
|
1185 |
+
"step": 90
|
1186 |
+
},
|
1187 |
+
{
|
1188 |
+
"epoch": 0.2275,
|
1189 |
+
"grad_norm": 10.092534065246582,
|
1190 |
+
"learning_rate": 2.439473684210526e-06,
|
1191 |
+
"loss": 0.4586,
|
1192 |
+
"step": 91
|
1193 |
+
},
|
1194 |
+
{
|
1195 |
+
"Batch Mean": 0.516247570514679,
|
1196 |
+
"accuracy": 0.8828125,
|
1197 |
+
"epoch": 0.2275,
|
1198 |
+
"step": 91
|
1199 |
+
},
|
1200 |
+
{
|
1201 |
+
"epoch": 0.23,
|
1202 |
+
"grad_norm": 13.944212913513184,
|
1203 |
+
"learning_rate": 2.431578947368421e-06,
|
1204 |
+
"loss": 0.3067,
|
1205 |
+
"step": 92
|
1206 |
+
},
|
1207 |
+
{
|
1208 |
+
"Batch Mean": 0.056681275367736816,
|
1209 |
+
"accuracy": 0.7890625,
|
1210 |
+
"epoch": 0.23,
|
1211 |
+
"step": 92
|
1212 |
+
},
|
1213 |
+
{
|
1214 |
+
"epoch": 0.2325,
|
1215 |
+
"grad_norm": 8.53646183013916,
|
1216 |
+
"learning_rate": 2.4236842105263157e-06,
|
1217 |
+
"loss": 0.3946,
|
1218 |
+
"step": 93
|
1219 |
+
},
|
1220 |
+
{
|
1221 |
+
"Batch Mean": -0.47129684686660767,
|
1222 |
+
"accuracy": 0.8359375,
|
1223 |
+
"epoch": 0.2325,
|
1224 |
+
"step": 93
|
1225 |
+
},
|
1226 |
+
{
|
1227 |
+
"epoch": 0.235,
|
1228 |
+
"grad_norm": 11.441537857055664,
|
1229 |
+
"learning_rate": 2.4157894736842104e-06,
|
1230 |
+
"loss": 0.3891,
|
1231 |
+
"step": 94
|
1232 |
+
},
|
1233 |
+
{
|
1234 |
+
"Batch Mean": -0.3262195587158203,
|
1235 |
+
"accuracy": 0.84375,
|
1236 |
+
"epoch": 0.235,
|
1237 |
+
"step": 94
|
1238 |
+
},
|
1239 |
+
{
|
1240 |
+
"epoch": 0.2375,
|
1241 |
+
"grad_norm": 10.751629829406738,
|
1242 |
+
"learning_rate": 2.4078947368421056e-06,
|
1243 |
+
"loss": 0.3578,
|
1244 |
+
"step": 95
|
1245 |
+
},
|
1246 |
+
{
|
1247 |
+
"Batch Mean": -0.6593484878540039,
|
1248 |
+
"accuracy": 0.828125,
|
1249 |
+
"epoch": 0.2375,
|
1250 |
+
"step": 95
|
1251 |
+
},
|
1252 |
+
{
|
1253 |
+
"epoch": 0.24,
|
1254 |
+
"grad_norm": 15.914350509643555,
|
1255 |
+
"learning_rate": 2.4000000000000003e-06,
|
1256 |
+
"loss": 0.4204,
|
1257 |
+
"step": 96
|
1258 |
+
},
|
1259 |
+
{
|
1260 |
+
"Batch Mean": -0.32147085666656494,
|
1261 |
+
"accuracy": 0.8359375,
|
1262 |
+
"epoch": 0.24,
|
1263 |
+
"step": 96
|
1264 |
+
},
|
1265 |
+
{
|
1266 |
+
"epoch": 0.2425,
|
1267 |
+
"grad_norm": 11.814691543579102,
|
1268 |
+
"learning_rate": 2.392105263157895e-06,
|
1269 |
+
"loss": 0.3892,
|
1270 |
+
"step": 97
|
1271 |
+
},
|
1272 |
+
{
|
1273 |
+
"Batch Mean": 0.49291136860847473,
|
1274 |
+
"accuracy": 0.875,
|
1275 |
+
"epoch": 0.2425,
|
1276 |
+
"step": 97
|
1277 |
+
},
|
1278 |
+
{
|
1279 |
+
"epoch": 0.245,
|
1280 |
+
"grad_norm": 11.86365795135498,
|
1281 |
+
"learning_rate": 2.38421052631579e-06,
|
1282 |
+
"loss": 0.3264,
|
1283 |
+
"step": 98
|
1284 |
+
},
|
1285 |
+
{
|
1286 |
+
"Batch Mean": 0.49174070358276367,
|
1287 |
+
"accuracy": 0.8515625,
|
1288 |
+
"epoch": 0.245,
|
1289 |
+
"step": 98
|
1290 |
+
},
|
1291 |
+
{
|
1292 |
+
"epoch": 0.2475,
|
1293 |
+
"grad_norm": 10.874544143676758,
|
1294 |
+
"learning_rate": 2.376315789473684e-06,
|
1295 |
+
"loss": 0.3847,
|
1296 |
+
"step": 99
|
1297 |
+
},
|
1298 |
+
{
|
1299 |
+
"Batch Mean": 0.6919900178909302,
|
1300 |
+
"accuracy": 0.796875,
|
1301 |
+
"epoch": 0.2475,
|
1302 |
+
"step": 99
|
1303 |
+
},
|
1304 |
+
{
|
1305 |
+
"epoch": 0.25,
|
1306 |
+
"grad_norm": 15.105185508728027,
|
1307 |
+
"learning_rate": 2.368421052631579e-06,
|
1308 |
+
"loss": 0.4066,
|
1309 |
+
"step": 100
|
1310 |
+
},
|
1311 |
+
{
|
1312 |
+
"Batch Mean": 0.061200618743896484,
|
1313 |
+
"accuracy": 0.7734375,
|
1314 |
+
"epoch": 0.25,
|
1315 |
+
"step": 100
|
1316 |
+
},
|
1317 |
+
{
|
1318 |
+
"epoch": 0.2525,
|
1319 |
+
"grad_norm": 8.795661926269531,
|
1320 |
+
"learning_rate": 2.3605263157894736e-06,
|
1321 |
+
"loss": 0.4193,
|
1322 |
+
"step": 101
|
1323 |
+
},
|
1324 |
+
{
|
1325 |
+
"Batch Mean": -0.4929161071777344,
|
1326 |
+
"accuracy": 0.7890625,
|
1327 |
+
"epoch": 0.2525,
|
1328 |
+
"step": 101
|
1329 |
+
},
|
1330 |
+
{
|
1331 |
+
"epoch": 0.255,
|
1332 |
+
"grad_norm": 12.120612144470215,
|
1333 |
+
"learning_rate": 2.3526315789473684e-06,
|
1334 |
+
"loss": 0.4833,
|
1335 |
+
"step": 102
|
1336 |
+
},
|
1337 |
+
{
|
1338 |
+
"Batch Mean": -0.48431068658828735,
|
1339 |
+
"accuracy": 0.859375,
|
1340 |
+
"epoch": 0.255,
|
1341 |
+
"step": 102
|
1342 |
+
},
|
1343 |
+
{
|
1344 |
+
"epoch": 0.2575,
|
1345 |
+
"grad_norm": 10.263632774353027,
|
1346 |
+
"learning_rate": 2.344736842105263e-06,
|
1347 |
+
"loss": 0.3397,
|
1348 |
+
"step": 103
|
1349 |
+
},
|
1350 |
+
{
|
1351 |
+
"Batch Mean": -0.2162787914276123,
|
1352 |
+
"accuracy": 0.8203125,
|
1353 |
+
"epoch": 0.2575,
|
1354 |
+
"step": 103
|
1355 |
+
},
|
1356 |
+
{
|
1357 |
+
"epoch": 0.26,
|
1358 |
+
"grad_norm": 7.323156356811523,
|
1359 |
+
"learning_rate": 2.336842105263158e-06,
|
1360 |
+
"loss": 0.3688,
|
1361 |
+
"step": 104
|
1362 |
+
},
|
1363 |
+
{
|
1364 |
+
"Batch Mean": 0.2203059196472168,
|
1365 |
+
"accuracy": 0.8515625,
|
1366 |
+
"epoch": 0.26,
|
1367 |
+
"step": 104
|
1368 |
+
},
|
1369 |
+
{
|
1370 |
+
"epoch": 0.2625,
|
1371 |
+
"grad_norm": 7.128310203552246,
|
1372 |
+
"learning_rate": 2.3289473684210526e-06,
|
1373 |
+
"loss": 0.3454,
|
1374 |
+
"step": 105
|
1375 |
+
},
|
1376 |
+
{
|
1377 |
+
"Batch Mean": 0.19034957885742188,
|
1378 |
+
"accuracy": 0.8828125,
|
1379 |
+
"epoch": 0.2625,
|
1380 |
+
"step": 105
|
1381 |
+
},
|
1382 |
+
{
|
1383 |
+
"epoch": 0.265,
|
1384 |
+
"grad_norm": 7.388917446136475,
|
1385 |
+
"learning_rate": 2.3210526315789473e-06,
|
1386 |
+
"loss": 0.3317,
|
1387 |
+
"step": 106
|
1388 |
+
},
|
1389 |
+
{
|
1390 |
+
"Batch Mean": -0.0413057804107666,
|
1391 |
+
"accuracy": 0.796875,
|
1392 |
+
"epoch": 0.265,
|
1393 |
+
"step": 106
|
1394 |
+
},
|
1395 |
+
{
|
1396 |
+
"epoch": 0.2675,
|
1397 |
+
"grad_norm": 9.412615776062012,
|
1398 |
+
"learning_rate": 2.313157894736842e-06,
|
1399 |
+
"loss": 0.4393,
|
1400 |
+
"step": 107
|
1401 |
+
},
|
1402 |
+
{
|
1403 |
+
"Batch Mean": 0.473476767539978,
|
1404 |
+
"accuracy": 0.875,
|
1405 |
+
"epoch": 0.2675,
|
1406 |
+
"step": 107
|
1407 |
+
},
|
1408 |
+
{
|
1409 |
+
"epoch": 0.27,
|
1410 |
+
"grad_norm": 11.040026664733887,
|
1411 |
+
"learning_rate": 2.305263157894737e-06,
|
1412 |
+
"loss": 0.35,
|
1413 |
+
"step": 108
|
1414 |
+
},
|
1415 |
+
{
|
1416 |
+
"Batch Mean": 0.37884294986724854,
|
1417 |
+
"accuracy": 0.875,
|
1418 |
+
"epoch": 0.27,
|
1419 |
+
"step": 108
|
1420 |
+
},
|
1421 |
+
{
|
1422 |
+
"epoch": 0.2725,
|
1423 |
+
"grad_norm": 12.01086711883545,
|
1424 |
+
"learning_rate": 2.2973684210526316e-06,
|
1425 |
+
"loss": 0.3001,
|
1426 |
+
"step": 109
|
1427 |
+
},
|
1428 |
+
{
|
1429 |
+
"Batch Mean": 0.4409904479980469,
|
1430 |
+
"accuracy": 0.8828125,
|
1431 |
+
"epoch": 0.2725,
|
1432 |
+
"step": 109
|
1433 |
+
},
|
1434 |
+
{
|
1435 |
+
"epoch": 0.275,
|
1436 |
+
"grad_norm": 12.842291831970215,
|
1437 |
+
"learning_rate": 2.2894736842105263e-06,
|
1438 |
+
"loss": 0.2767,
|
1439 |
+
"step": 110
|
1440 |
+
},
|
1441 |
+
{
|
1442 |
+
"Batch Mean": -0.12960529327392578,
|
1443 |
+
"accuracy": 0.7890625,
|
1444 |
+
"epoch": 0.275,
|
1445 |
+
"step": 110
|
1446 |
+
},
|
1447 |
+
{
|
1448 |
+
"epoch": 0.2775,
|
1449 |
+
"grad_norm": 11.811309814453125,
|
1450 |
+
"learning_rate": 2.281578947368421e-06,
|
1451 |
+
"loss": 0.4361,
|
1452 |
+
"step": 111
|
1453 |
+
},
|
1454 |
+
{
|
1455 |
+
"Batch Mean": -0.3953084945678711,
|
1456 |
+
"accuracy": 0.7578125,
|
1457 |
+
"epoch": 0.2775,
|
1458 |
+
"step": 111
|
1459 |
+
},
|
1460 |
+
{
|
1461 |
+
"epoch": 0.28,
|
1462 |
+
"grad_norm": 14.014053344726562,
|
1463 |
+
"learning_rate": 2.273684210526316e-06,
|
1464 |
+
"loss": 0.5185,
|
1465 |
+
"step": 112
|
1466 |
+
},
|
1467 |
+
{
|
1468 |
+
"Batch Mean": -0.16724836826324463,
|
1469 |
+
"accuracy": 0.859375,
|
1470 |
+
"epoch": 0.28,
|
1471 |
+
"step": 112
|
1472 |
+
},
|
1473 |
+
{
|
1474 |
+
"epoch": 0.2825,
|
1475 |
+
"grad_norm": 7.608469486236572,
|
1476 |
+
"learning_rate": 2.2657894736842106e-06,
|
1477 |
+
"loss": 0.3033,
|
1478 |
+
"step": 113
|
1479 |
+
},
|
1480 |
+
{
|
1481 |
+
"Batch Mean": -0.36876964569091797,
|
1482 |
+
"accuracy": 0.8203125,
|
1483 |
+
"epoch": 0.2825,
|
1484 |
+
"step": 113
|
1485 |
+
},
|
1486 |
+
{
|
1487 |
+
"epoch": 0.285,
|
1488 |
+
"grad_norm": 11.263389587402344,
|
1489 |
+
"learning_rate": 2.2578947368421053e-06,
|
1490 |
+
"loss": 0.4069,
|
1491 |
+
"step": 114
|
1492 |
+
},
|
1493 |
+
{
|
1494 |
+
"Batch Mean": 0.22658658027648926,
|
1495 |
+
"accuracy": 0.7734375,
|
1496 |
+
"epoch": 0.285,
|
1497 |
+
"step": 114
|
1498 |
+
},
|
1499 |
+
{
|
1500 |
+
"epoch": 0.2875,
|
1501 |
+
"grad_norm": 11.426595687866211,
|
1502 |
+
"learning_rate": 2.25e-06,
|
1503 |
+
"loss": 0.4412,
|
1504 |
+
"step": 115
|
1505 |
+
},
|
1506 |
+
{
|
1507 |
+
"Batch Mean": 0.5346584320068359,
|
1508 |
+
"accuracy": 0.8359375,
|
1509 |
+
"epoch": 0.2875,
|
1510 |
+
"step": 115
|
1511 |
+
},
|
1512 |
+
{
|
1513 |
+
"epoch": 0.29,
|
1514 |
+
"grad_norm": 11.347992897033691,
|
1515 |
+
"learning_rate": 2.242105263157895e-06,
|
1516 |
+
"loss": 0.3996,
|
1517 |
+
"step": 116
|
1518 |
+
},
|
1519 |
+
{
|
1520 |
+
"Batch Mean": -0.40567731857299805,
|
1521 |
+
"accuracy": 0.8671875,
|
1522 |
+
"epoch": 0.29,
|
1523 |
+
"step": 116
|
1524 |
+
},
|
1525 |
+
{
|
1526 |
+
"epoch": 0.2925,
|
1527 |
+
"grad_norm": 9.157360076904297,
|
1528 |
+
"learning_rate": 2.2342105263157895e-06,
|
1529 |
+
"loss": 0.3318,
|
1530 |
+
"step": 117
|
1531 |
+
},
|
1532 |
+
{
|
1533 |
+
"Batch Mean": -0.1567370891571045,
|
1534 |
+
"accuracy": 0.8046875,
|
1535 |
+
"epoch": 0.2925,
|
1536 |
+
"step": 117
|
1537 |
+
},
|
1538 |
+
{
|
1539 |
+
"epoch": 0.295,
|
1540 |
+
"grad_norm": 12.001374244689941,
|
1541 |
+
"learning_rate": 2.2263157894736843e-06,
|
1542 |
+
"loss": 0.4401,
|
1543 |
+
"step": 118
|
1544 |
+
},
|
1545 |
+
{
|
1546 |
+
"Batch Mean": -0.357755184173584,
|
1547 |
+
"accuracy": 0.8671875,
|
1548 |
+
"epoch": 0.295,
|
1549 |
+
"step": 118
|
1550 |
+
},
|
1551 |
+
{
|
1552 |
+
"epoch": 0.2975,
|
1553 |
+
"grad_norm": 8.508570671081543,
|
1554 |
+
"learning_rate": 2.218421052631579e-06,
|
1555 |
+
"loss": 0.3305,
|
1556 |
+
"step": 119
|
1557 |
+
},
|
1558 |
+
{
|
1559 |
+
"Batch Mean": -0.35381609201431274,
|
1560 |
+
"accuracy": 0.8046875,
|
1561 |
+
"epoch": 0.2975,
|
1562 |
+
"step": 119
|
1563 |
+
},
|
1564 |
+
{
|
1565 |
+
"epoch": 0.3,
|
1566 |
+
"grad_norm": 8.094682693481445,
|
1567 |
+
"learning_rate": 2.2105263157894738e-06,
|
1568 |
+
"loss": 0.3984,
|
1569 |
+
"step": 120
|
1570 |
+
},
|
1571 |
+
{
|
1572 |
+
"Batch Mean": 0.22805237770080566,
|
1573 |
+
"accuracy": 0.8515625,
|
1574 |
+
"epoch": 0.3,
|
1575 |
+
"step": 120
|
1576 |
+
},
|
1577 |
+
{
|
1578 |
+
"epoch": 0.3025,
|
1579 |
+
"grad_norm": 9.788799285888672,
|
1580 |
+
"learning_rate": 2.2026315789473685e-06,
|
1581 |
+
"loss": 0.3478,
|
1582 |
+
"step": 121
|
1583 |
+
},
|
1584 |
+
{
|
1585 |
+
"Batch Mean": 0.5038647651672363,
|
1586 |
+
"accuracy": 0.859375,
|
1587 |
+
"epoch": 0.3025,
|
1588 |
+
"step": 121
|
1589 |
+
},
|
1590 |
+
{
|
1591 |
+
"epoch": 0.305,
|
1592 |
+
"grad_norm": 9.84559440612793,
|
1593 |
+
"learning_rate": 2.1947368421052633e-06,
|
1594 |
+
"loss": 0.3561,
|
1595 |
+
"step": 122
|
1596 |
+
},
|
1597 |
+
{
|
1598 |
+
"Batch Mean": 0.7104835510253906,
|
1599 |
+
"accuracy": 0.828125,
|
1600 |
+
"epoch": 0.305,
|
1601 |
+
"step": 122
|
1602 |
+
},
|
1603 |
+
{
|
1604 |
+
"epoch": 0.3075,
|
1605 |
+
"grad_norm": 11.43686580657959,
|
1606 |
+
"learning_rate": 2.186842105263158e-06,
|
1607 |
+
"loss": 0.3686,
|
1608 |
+
"step": 123
|
1609 |
+
},
|
1610 |
+
{
|
1611 |
+
"Batch Mean": -0.007034778594970703,
|
1612 |
+
"accuracy": 0.796875,
|
1613 |
+
"epoch": 0.3075,
|
1614 |
+
"step": 123
|
1615 |
+
},
|
1616 |
+
{
|
1617 |
+
"epoch": 0.31,
|
1618 |
+
"grad_norm": 8.770352363586426,
|
1619 |
+
"learning_rate": 2.1789473684210528e-06,
|
1620 |
+
"loss": 0.3772,
|
1621 |
+
"step": 124
|
1622 |
+
},
|
1623 |
+
{
|
1624 |
+
"Batch Mean": 0.036529541015625,
|
1625 |
+
"accuracy": 0.7890625,
|
1626 |
+
"epoch": 0.31,
|
1627 |
+
"step": 124
|
1628 |
+
},
|
1629 |
+
{
|
1630 |
+
"epoch": 0.3125,
|
1631 |
+
"grad_norm": 13.17721939086914,
|
1632 |
+
"learning_rate": 2.1710526315789475e-06,
|
1633 |
+
"loss": 0.5148,
|
1634 |
+
"step": 125
|
1635 |
+
},
|
1636 |
+
{
|
1637 |
+
"Batch Mean": -0.30262577533721924,
|
1638 |
+
"accuracy": 0.875,
|
1639 |
+
"epoch": 0.3125,
|
1640 |
+
"step": 125
|
1641 |
+
},
|
1642 |
+
{
|
1643 |
+
"epoch": 0.315,
|
1644 |
+
"grad_norm": 8.691415786743164,
|
1645 |
+
"learning_rate": 2.1631578947368423e-06,
|
1646 |
+
"loss": 0.3671,
|
1647 |
+
"step": 126
|
1648 |
+
},
|
1649 |
+
{
|
1650 |
+
"Batch Mean": -0.12425446510314941,
|
1651 |
+
"accuracy": 0.8515625,
|
1652 |
+
"epoch": 0.315,
|
1653 |
+
"step": 126
|
1654 |
+
},
|
1655 |
+
{
|
1656 |
+
"epoch": 0.3175,
|
1657 |
+
"grad_norm": 8.049582481384277,
|
1658 |
+
"learning_rate": 2.155263157894737e-06,
|
1659 |
+
"loss": 0.3522,
|
1660 |
+
"step": 127
|
1661 |
+
},
|
1662 |
+
{
|
1663 |
+
"Batch Mean": -0.4603520631790161,
|
1664 |
+
"accuracy": 0.765625,
|
1665 |
+
"epoch": 0.3175,
|
1666 |
+
"step": 127
|
1667 |
+
},
|
1668 |
+
{
|
1669 |
+
"epoch": 0.32,
|
1670 |
+
"grad_norm": 10.966066360473633,
|
1671 |
+
"learning_rate": 2.1473684210526317e-06,
|
1672 |
+
"loss": 0.4656,
|
1673 |
+
"step": 128
|
1674 |
+
},
|
1675 |
+
{
|
1676 |
+
"Batch Mean": 0.0716085433959961,
|
1677 |
+
"accuracy": 0.796875,
|
1678 |
+
"epoch": 0.32,
|
1679 |
+
"step": 128
|
1680 |
+
},
|
1681 |
+
{
|
1682 |
+
"epoch": 0.3225,
|
1683 |
+
"grad_norm": 7.68458890914917,
|
1684 |
+
"learning_rate": 2.1394736842105265e-06,
|
1685 |
+
"loss": 0.3586,
|
1686 |
+
"step": 129
|
1687 |
+
},
|
1688 |
+
{
|
1689 |
+
"Batch Mean": 0.22112131118774414,
|
1690 |
+
"accuracy": 0.7890625,
|
1691 |
+
"epoch": 0.3225,
|
1692 |
+
"step": 129
|
1693 |
+
},
|
1694 |
+
{
|
1695 |
+
"epoch": 0.325,
|
1696 |
+
"grad_norm": 8.140663146972656,
|
1697 |
+
"learning_rate": 2.1315789473684212e-06,
|
1698 |
+
"loss": 0.4103,
|
1699 |
+
"step": 130
|
1700 |
+
},
|
1701 |
+
{
|
1702 |
+
"Batch Mean": 0.1299583911895752,
|
1703 |
+
"accuracy": 0.8125,
|
1704 |
+
"epoch": 0.325,
|
1705 |
+
"step": 130
|
1706 |
+
},
|
1707 |
+
{
|
1708 |
+
"epoch": 0.3275,
|
1709 |
+
"grad_norm": 7.390633583068848,
|
1710 |
+
"learning_rate": 2.123684210526316e-06,
|
1711 |
+
"loss": 0.3914,
|
1712 |
+
"step": 131
|
1713 |
+
},
|
1714 |
+
{
|
1715 |
+
"Batch Mean": 0.608335018157959,
|
1716 |
+
"accuracy": 0.921875,
|
1717 |
+
"epoch": 0.3275,
|
1718 |
+
"step": 131
|
1719 |
+
},
|
1720 |
+
{
|
1721 |
+
"epoch": 0.33,
|
1722 |
+
"grad_norm": 13.193960189819336,
|
1723 |
+
"learning_rate": 2.1157894736842103e-06,
|
1724 |
+
"loss": 0.2749,
|
1725 |
+
"step": 132
|
1726 |
+
},
|
1727 |
+
{
|
1728 |
+
"Batch Mean": 0.15748775005340576,
|
1729 |
+
"accuracy": 0.7578125,
|
1730 |
+
"epoch": 0.33,
|
1731 |
+
"step": 132
|
1732 |
+
},
|
1733 |
+
{
|
1734 |
+
"epoch": 0.3325,
|
1735 |
+
"grad_norm": 8.155619621276855,
|
1736 |
+
"learning_rate": 2.107894736842105e-06,
|
1737 |
+
"loss": 0.4138,
|
1738 |
+
"step": 133
|
1739 |
+
},
|
1740 |
+
{
|
1741 |
+
"Batch Mean": -0.010571569204330444,
|
1742 |
+
"accuracy": 0.796875,
|
1743 |
+
"epoch": 0.3325,
|
1744 |
+
"step": 133
|
1745 |
+
},
|
1746 |
+
{
|
1747 |
+
"epoch": 0.335,
|
1748 |
+
"grad_norm": 7.174466609954834,
|
1749 |
+
"learning_rate": 2.1e-06,
|
1750 |
+
"loss": 0.3603,
|
1751 |
+
"step": 134
|
1752 |
+
},
|
1753 |
+
{
|
1754 |
+
"Batch Mean": -0.17839515209197998,
|
1755 |
+
"accuracy": 0.8125,
|
1756 |
+
"epoch": 0.335,
|
1757 |
+
"step": 134
|
1758 |
+
},
|
1759 |
+
{
|
1760 |
+
"epoch": 0.3375,
|
1761 |
+
"grad_norm": 9.18850326538086,
|
1762 |
+
"learning_rate": 2.0921052631578945e-06,
|
1763 |
+
"loss": 0.3665,
|
1764 |
+
"step": 135
|
1765 |
+
},
|
1766 |
+
{
|
1767 |
+
"Batch Mean": -0.0516209602355957,
|
1768 |
+
"accuracy": 0.7578125,
|
1769 |
+
"epoch": 0.3375,
|
1770 |
+
"step": 135
|
1771 |
+
},
|
1772 |
+
{
|
1773 |
+
"epoch": 0.34,
|
1774 |
+
"grad_norm": 8.749617576599121,
|
1775 |
+
"learning_rate": 2.0842105263157897e-06,
|
1776 |
+
"loss": 0.4511,
|
1777 |
+
"step": 136
|
1778 |
+
},
|
1779 |
+
{
|
1780 |
+
"Batch Mean": -0.33418262004852295,
|
1781 |
+
"accuracy": 0.796875,
|
1782 |
+
"epoch": 0.34,
|
1783 |
+
"step": 136
|
1784 |
+
},
|
1785 |
+
{
|
1786 |
+
"epoch": 0.3425,
|
1787 |
+
"grad_norm": 10.268221855163574,
|
1788 |
+
"learning_rate": 2.0763157894736845e-06,
|
1789 |
+
"loss": 0.4395,
|
1790 |
+
"step": 137
|
1791 |
+
},
|
1792 |
+
{
|
1793 |
+
"Batch Mean": -0.208038330078125,
|
1794 |
+
"accuracy": 0.8515625,
|
1795 |
+
"epoch": 0.3425,
|
1796 |
+
"step": 137
|
1797 |
+
},
|
1798 |
+
{
|
1799 |
+
"epoch": 0.345,
|
1800 |
+
"grad_norm": 6.962666034698486,
|
1801 |
+
"learning_rate": 2.068421052631579e-06,
|
1802 |
+
"loss": 0.3682,
|
1803 |
+
"step": 138
|
1804 |
+
},
|
1805 |
+
{
|
1806 |
+
"Batch Mean": 0.1473088264465332,
|
1807 |
+
"accuracy": 0.8046875,
|
1808 |
+
"epoch": 0.345,
|
1809 |
+
"step": 138
|
1810 |
+
},
|
1811 |
+
{
|
1812 |
+
"epoch": 0.3475,
|
1813 |
+
"grad_norm": 8.331689834594727,
|
1814 |
+
"learning_rate": 2.060526315789474e-06,
|
1815 |
+
"loss": 0.3881,
|
1816 |
+
"step": 139
|
1817 |
+
},
|
1818 |
+
{
|
1819 |
+
"Batch Mean": 0.13666605949401855,
|
1820 |
+
"accuracy": 0.7734375,
|
1821 |
+
"epoch": 0.3475,
|
1822 |
+
"step": 139
|
1823 |
+
},
|
1824 |
+
{
|
1825 |
+
"epoch": 0.35,
|
1826 |
+
"grad_norm": 8.181924819946289,
|
1827 |
+
"learning_rate": 2.0526315789473687e-06,
|
1828 |
+
"loss": 0.4522,
|
1829 |
+
"step": 140
|
1830 |
+
},
|
1831 |
+
{
|
1832 |
+
"Batch Mean": -0.06362247467041016,
|
1833 |
+
"accuracy": 0.828125,
|
1834 |
+
"epoch": 0.35,
|
1835 |
+
"step": 140
|
1836 |
+
},
|
1837 |
+
{
|
1838 |
+
"epoch": 0.3525,
|
1839 |
+
"grad_norm": 7.695260047912598,
|
1840 |
+
"learning_rate": 2.0447368421052634e-06,
|
1841 |
+
"loss": 0.3219,
|
1842 |
+
"step": 141
|
1843 |
+
},
|
1844 |
+
{
|
1845 |
+
"Batch Mean": -0.1371777057647705,
|
1846 |
+
"accuracy": 0.8203125,
|
1847 |
+
"epoch": 0.3525,
|
1848 |
+
"step": 141
|
1849 |
+
},
|
1850 |
+
{
|
1851 |
+
"epoch": 0.355,
|
1852 |
+
"grad_norm": 7.281587600708008,
|
1853 |
+
"learning_rate": 2.0368421052631578e-06,
|
1854 |
+
"loss": 0.3907,
|
1855 |
+
"step": 142
|
1856 |
+
},
|
1857 |
+
{
|
1858 |
+
"Batch Mean": 0.5550127029418945,
|
1859 |
+
"accuracy": 0.84375,
|
1860 |
+
"epoch": 0.355,
|
1861 |
+
"step": 142
|
1862 |
+
},
|
1863 |
+
{
|
1864 |
+
"epoch": 0.3575,
|
1865 |
+
"grad_norm": 10.004101753234863,
|
1866 |
+
"learning_rate": 2.0289473684210525e-06,
|
1867 |
+
"loss": 0.3703,
|
1868 |
+
"step": 143
|
1869 |
+
},
|
1870 |
+
{
|
1871 |
+
"Batch Mean": 0.5781314373016357,
|
1872 |
+
"accuracy": 0.8828125,
|
1873 |
+
"epoch": 0.3575,
|
1874 |
+
"step": 143
|
1875 |
+
},
|
1876 |
+
{
|
1877 |
+
"epoch": 0.36,
|
1878 |
+
"grad_norm": 10.783740997314453,
|
1879 |
+
"learning_rate": 2.0210526315789473e-06,
|
1880 |
+
"loss": 0.3023,
|
1881 |
+
"step": 144
|
1882 |
+
},
|
1883 |
+
{
|
1884 |
+
"Batch Mean": -0.06548458337783813,
|
1885 |
+
"accuracy": 0.796875,
|
1886 |
+
"epoch": 0.36,
|
1887 |
+
"step": 144
|
1888 |
+
},
|
1889 |
+
{
|
1890 |
+
"epoch": 0.3625,
|
1891 |
+
"grad_norm": 8.395689010620117,
|
1892 |
+
"learning_rate": 2.013157894736842e-06,
|
1893 |
+
"loss": 0.3807,
|
1894 |
+
"step": 145
|
1895 |
+
},
|
1896 |
+
{
|
1897 |
+
"Batch Mean": -0.28943490982055664,
|
1898 |
+
"accuracy": 0.8125,
|
1899 |
+
"epoch": 0.3625,
|
1900 |
+
"step": 145
|
1901 |
+
},
|
1902 |
+
{
|
1903 |
+
"epoch": 0.365,
|
1904 |
+
"grad_norm": 8.962904930114746,
|
1905 |
+
"learning_rate": 2.0052631578947367e-06,
|
1906 |
+
"loss": 0.4011,
|
1907 |
+
"step": 146
|
1908 |
+
},
|
1909 |
+
{
|
1910 |
+
"Batch Mean": -0.23036813735961914,
|
1911 |
+
"accuracy": 0.8359375,
|
1912 |
+
"epoch": 0.365,
|
1913 |
+
"step": 146
|
1914 |
+
},
|
1915 |
+
{
|
1916 |
+
"epoch": 0.3675,
|
1917 |
+
"grad_norm": 8.533259391784668,
|
1918 |
+
"learning_rate": 1.9973684210526315e-06,
|
1919 |
+
"loss": 0.4078,
|
1920 |
+
"step": 147
|
1921 |
+
},
|
1922 |
+
{
|
1923 |
+
"Batch Mean": 0.04428744316101074,
|
1924 |
+
"accuracy": 0.8203125,
|
1925 |
+
"epoch": 0.3675,
|
1926 |
+
"step": 147
|
1927 |
+
},
|
1928 |
+
{
|
1929 |
+
"epoch": 0.37,
|
1930 |
+
"grad_norm": 9.401562690734863,
|
1931 |
+
"learning_rate": 1.9894736842105262e-06,
|
1932 |
+
"loss": 0.4861,
|
1933 |
+
"step": 148
|
1934 |
+
},
|
1935 |
+
{
|
1936 |
+
"Batch Mean": -0.631324052810669,
|
1937 |
+
"accuracy": 0.84375,
|
1938 |
+
"epoch": 0.37,
|
1939 |
+
"step": 148
|
1940 |
+
},
|
1941 |
+
{
|
1942 |
+
"epoch": 0.3725,
|
1943 |
+
"grad_norm": 11.169927597045898,
|
1944 |
+
"learning_rate": 1.9815789473684214e-06,
|
1945 |
+
"loss": 0.353,
|
1946 |
+
"step": 149
|
1947 |
+
},
|
1948 |
+
{
|
1949 |
+
"Batch Mean": -0.36252474784851074,
|
1950 |
+
"accuracy": 0.875,
|
1951 |
+
"epoch": 0.3725,
|
1952 |
+
"step": 149
|
1953 |
+
},
|
1954 |
+
{
|
1955 |
+
"epoch": 0.375,
|
1956 |
+
"grad_norm": 8.18213939666748,
|
1957 |
+
"learning_rate": 1.973684210526316e-06,
|
1958 |
+
"loss": 0.3192,
|
1959 |
+
"step": 150
|
1960 |
+
},
|
1961 |
+
{
|
1962 |
+
"Batch Mean": 0.1312960386276245,
|
1963 |
+
"accuracy": 0.8515625,
|
1964 |
+
"epoch": 0.375,
|
1965 |
+
"step": 150
|
1966 |
+
},
|
1967 |
+
{
|
1968 |
+
"epoch": 0.3775,
|
1969 |
+
"grad_norm": 7.884857654571533,
|
1970 |
+
"learning_rate": 1.965789473684211e-06,
|
1971 |
+
"loss": 0.3448,
|
1972 |
+
"step": 151
|
1973 |
+
},
|
1974 |
+
{
|
1975 |
+
"Batch Mean": -0.07881736755371094,
|
1976 |
+
"accuracy": 0.75,
|
1977 |
+
"epoch": 0.3775,
|
1978 |
+
"step": 151
|
1979 |
+
},
|
1980 |
+
{
|
1981 |
+
"epoch": 0.38,
|
1982 |
+
"grad_norm": 11.124417304992676,
|
1983 |
+
"learning_rate": 1.9578947368421052e-06,
|
1984 |
+
"loss": 0.5138,
|
1985 |
+
"step": 152
|
1986 |
+
},
|
1987 |
+
{
|
1988 |
+
"Batch Mean": 0.44060420989990234,
|
1989 |
+
"accuracy": 0.84375,
|
1990 |
+
"epoch": 0.38,
|
1991 |
+
"step": 152
|
1992 |
+
},
|
1993 |
+
{
|
1994 |
+
"epoch": 0.3825,
|
1995 |
+
"grad_norm": 8.98283576965332,
|
1996 |
+
"learning_rate": 1.95e-06,
|
1997 |
+
"loss": 0.3417,
|
1998 |
+
"step": 153
|
1999 |
+
},
|
2000 |
+
{
|
2001 |
+
"Batch Mean": 0.09381070733070374,
|
2002 |
+
"accuracy": 0.84375,
|
2003 |
+
"epoch": 0.3825,
|
2004 |
+
"step": 153
|
2005 |
+
},
|
2006 |
+
{
|
2007 |
+
"epoch": 0.385,
|
2008 |
+
"grad_norm": 6.34003210067749,
|
2009 |
+
"learning_rate": 1.9421052631578947e-06,
|
2010 |
+
"loss": 0.3136,
|
2011 |
+
"step": 154
|
2012 |
+
},
|
2013 |
+
{
|
2014 |
+
"Batch Mean": -0.005020737648010254,
|
2015 |
+
"accuracy": 0.8359375,
|
2016 |
+
"epoch": 0.385,
|
2017 |
+
"step": 154
|
2018 |
+
},
|
2019 |
+
{
|
2020 |
+
"epoch": 0.3875,
|
2021 |
+
"grad_norm": 6.930245399475098,
|
2022 |
+
"learning_rate": 1.9342105263157895e-06,
|
2023 |
+
"loss": 0.3927,
|
2024 |
+
"step": 155
|
2025 |
+
},
|
2026 |
+
{
|
2027 |
+
"Batch Mean": 0.38732171058654785,
|
2028 |
+
"accuracy": 0.859375,
|
2029 |
+
"epoch": 0.3875,
|
2030 |
+
"step": 155
|
2031 |
+
},
|
2032 |
+
{
|
2033 |
+
"epoch": 0.39,
|
2034 |
+
"grad_norm": 7.609610080718994,
|
2035 |
+
"learning_rate": 1.926315789473684e-06,
|
2036 |
+
"loss": 0.3484,
|
2037 |
+
"step": 156
|
2038 |
+
},
|
2039 |
+
{
|
2040 |
+
"Batch Mean": 0.1457352638244629,
|
2041 |
+
"accuracy": 0.859375,
|
2042 |
+
"epoch": 0.39,
|
2043 |
+
"step": 156
|
2044 |
+
},
|
2045 |
+
{
|
2046 |
+
"epoch": 0.3925,
|
2047 |
+
"grad_norm": 6.132632732391357,
|
2048 |
+
"learning_rate": 1.918421052631579e-06,
|
2049 |
+
"loss": 0.3313,
|
2050 |
+
"step": 157
|
2051 |
+
},
|
2052 |
+
{
|
2053 |
+
"Batch Mean": -0.12105239927768707,
|
2054 |
+
"accuracy": 0.859375,
|
2055 |
+
"epoch": 0.3925,
|
2056 |
+
"step": 157
|
2057 |
+
},
|
2058 |
+
{
|
2059 |
+
"epoch": 0.395,
|
2060 |
+
"grad_norm": 6.948753356933594,
|
2061 |
+
"learning_rate": 1.9105263157894737e-06,
|
2062 |
+
"loss": 0.3103,
|
2063 |
+
"step": 158
|
2064 |
+
},
|
2065 |
+
{
|
2066 |
+
"Batch Mean": -0.2733367681503296,
|
2067 |
+
"accuracy": 0.8125,
|
2068 |
+
"epoch": 0.395,
|
2069 |
+
"step": 158
|
2070 |
+
},
|
2071 |
+
{
|
2072 |
+
"epoch": 0.3975,
|
2073 |
+
"grad_norm": 8.32777214050293,
|
2074 |
+
"learning_rate": 1.9026315789473684e-06,
|
2075 |
+
"loss": 0.3927,
|
2076 |
+
"step": 159
|
2077 |
+
},
|
2078 |
+
{
|
2079 |
+
"Batch Mean": -0.2845277786254883,
|
2080 |
+
"accuracy": 0.8046875,
|
2081 |
+
"epoch": 0.3975,
|
2082 |
+
"step": 159
|
2083 |
+
},
|
2084 |
+
{
|
2085 |
+
"epoch": 0.4,
|
2086 |
+
"grad_norm": 8.584951400756836,
|
2087 |
+
"learning_rate": 1.8947368421052632e-06,
|
2088 |
+
"loss": 0.3756,
|
2089 |
+
"step": 160
|
2090 |
+
},
|
2091 |
+
{
|
2092 |
+
"Batch Mean": 0.45987796783447266,
|
2093 |
+
"accuracy": 0.8828125,
|
2094 |
+
"epoch": 0.4,
|
2095 |
+
"step": 160
|
2096 |
+
},
|
2097 |
+
{
|
2098 |
+
"epoch": 0.4025,
|
2099 |
+
"grad_norm": 11.069204330444336,
|
2100 |
+
"learning_rate": 1.8868421052631577e-06,
|
2101 |
+
"loss": 0.3221,
|
2102 |
+
"step": 161
|
2103 |
+
},
|
2104 |
+
{
|
2105 |
+
"Batch Mean": 0.05443763732910156,
|
2106 |
+
"accuracy": 0.8046875,
|
2107 |
+
"epoch": 0.4025,
|
2108 |
+
"step": 161
|
2109 |
+
},
|
2110 |
+
{
|
2111 |
+
"epoch": 0.405,
|
2112 |
+
"grad_norm": 8.764575958251953,
|
2113 |
+
"learning_rate": 1.8789473684210525e-06,
|
2114 |
+
"loss": 0.3762,
|
2115 |
+
"step": 162
|
2116 |
+
},
|
2117 |
+
{
|
2118 |
+
"Batch Mean": 0.0884392112493515,
|
2119 |
+
"accuracy": 0.8203125,
|
2120 |
+
"epoch": 0.405,
|
2121 |
+
"step": 162
|
2122 |
+
},
|
2123 |
+
{
|
2124 |
+
"epoch": 0.4075,
|
2125 |
+
"grad_norm": 8.510726928710938,
|
2126 |
+
"learning_rate": 1.8710526315789476e-06,
|
2127 |
+
"loss": 0.3937,
|
2128 |
+
"step": 163
|
2129 |
+
},
|
2130 |
+
{
|
2131 |
+
"Batch Mean": 0.06999784708023071,
|
2132 |
+
"accuracy": 0.859375,
|
2133 |
+
"epoch": 0.4075,
|
2134 |
+
"step": 163
|
2135 |
+
},
|
2136 |
+
{
|
2137 |
+
"epoch": 0.41,
|
2138 |
+
"grad_norm": 7.868905067443848,
|
2139 |
+
"learning_rate": 1.8631578947368424e-06,
|
2140 |
+
"loss": 0.2751,
|
2141 |
+
"step": 164
|
2142 |
+
},
|
2143 |
+
{
|
2144 |
+
"Batch Mean": 0.36394214630126953,
|
2145 |
+
"accuracy": 0.828125,
|
2146 |
+
"epoch": 0.41,
|
2147 |
+
"step": 164
|
2148 |
+
},
|
2149 |
+
{
|
2150 |
+
"epoch": 0.4125,
|
2151 |
+
"grad_norm": 12.59380054473877,
|
2152 |
+
"learning_rate": 1.855263157894737e-06,
|
2153 |
+
"loss": 0.399,
|
2154 |
+
"step": 165
|
2155 |
+
},
|
2156 |
+
{
|
2157 |
+
"Batch Mean": -0.03789353370666504,
|
2158 |
+
"accuracy": 0.8203125,
|
2159 |
+
"epoch": 0.4125,
|
2160 |
+
"step": 165
|
2161 |
+
},
|
2162 |
+
{
|
2163 |
+
"epoch": 0.415,
|
2164 |
+
"grad_norm": 8.086974143981934,
|
2165 |
+
"learning_rate": 1.8473684210526317e-06,
|
2166 |
+
"loss": 0.3637,
|
2167 |
+
"step": 166
|
2168 |
+
},
|
2169 |
+
{
|
2170 |
+
"Batch Mean": 0.06824040412902832,
|
2171 |
+
"accuracy": 0.8515625,
|
2172 |
+
"epoch": 0.415,
|
2173 |
+
"step": 166
|
2174 |
+
},
|
2175 |
+
{
|
2176 |
+
"epoch": 0.4175,
|
2177 |
+
"grad_norm": 9.723653793334961,
|
2178 |
+
"learning_rate": 1.8394736842105264e-06,
|
2179 |
+
"loss": 0.394,
|
2180 |
+
"step": 167
|
2181 |
+
},
|
2182 |
+
{
|
2183 |
+
"Batch Mean": -0.5270748138427734,
|
2184 |
+
"accuracy": 0.8203125,
|
2185 |
+
"epoch": 0.4175,
|
2186 |
+
"step": 167
|
2187 |
+
},
|
2188 |
+
{
|
2189 |
+
"epoch": 0.42,
|
2190 |
+
"grad_norm": 13.736504554748535,
|
2191 |
+
"learning_rate": 1.8315789473684211e-06,
|
2192 |
+
"loss": 0.429,
|
2193 |
+
"step": 168
|
2194 |
+
},
|
2195 |
+
{
|
2196 |
+
"Batch Mean": -0.12757277488708496,
|
2197 |
+
"accuracy": 0.8359375,
|
2198 |
+
"epoch": 0.42,
|
2199 |
+
"step": 168
|
2200 |
+
},
|
2201 |
+
{
|
2202 |
+
"epoch": 0.4225,
|
2203 |
+
"grad_norm": 8.577059745788574,
|
2204 |
+
"learning_rate": 1.8236842105263159e-06,
|
2205 |
+
"loss": 0.3599,
|
2206 |
+
"step": 169
|
2207 |
+
},
|
2208 |
+
{
|
2209 |
+
"Batch Mean": -0.024989277124404907,
|
2210 |
+
"accuracy": 0.8203125,
|
2211 |
+
"epoch": 0.4225,
|
2212 |
+
"step": 169
|
2213 |
+
},
|
2214 |
+
{
|
2215 |
+
"epoch": 0.425,
|
2216 |
+
"grad_norm": 8.25197982788086,
|
2217 |
+
"learning_rate": 1.8157894736842106e-06,
|
2218 |
+
"loss": 0.4185,
|
2219 |
+
"step": 170
|
2220 |
+
},
|
2221 |
+
{
|
2222 |
+
"Batch Mean": 0.03246608376502991,
|
2223 |
+
"accuracy": 0.875,
|
2224 |
+
"epoch": 0.425,
|
2225 |
+
"step": 170
|
2226 |
+
},
|
2227 |
+
{
|
2228 |
+
"epoch": 0.4275,
|
2229 |
+
"grad_norm": 5.9294819831848145,
|
2230 |
+
"learning_rate": 1.8078947368421052e-06,
|
2231 |
+
"loss": 0.2621,
|
2232 |
+
"step": 171
|
2233 |
+
},
|
2234 |
+
{
|
2235 |
+
"Batch Mean": 0.26308655738830566,
|
2236 |
+
"accuracy": 0.828125,
|
2237 |
+
"epoch": 0.4275,
|
2238 |
+
"step": 171
|
2239 |
+
},
|
2240 |
+
{
|
2241 |
+
"epoch": 0.43,
|
2242 |
+
"grad_norm": 7.570163249969482,
|
2243 |
+
"learning_rate": 1.8e-06,
|
2244 |
+
"loss": 0.3638,
|
2245 |
+
"step": 172
|
2246 |
+
},
|
2247 |
+
{
|
2248 |
+
"Batch Mean": -0.25519466400146484,
|
2249 |
+
"accuracy": 0.828125,
|
2250 |
+
"epoch": 0.43,
|
2251 |
+
"step": 172
|
2252 |
+
},
|
2253 |
+
{
|
2254 |
+
"epoch": 0.4325,
|
2255 |
+
"grad_norm": 7.611836910247803,
|
2256 |
+
"learning_rate": 1.7921052631578947e-06,
|
2257 |
+
"loss": 0.3867,
|
2258 |
+
"step": 173
|
2259 |
+
},
|
2260 |
+
{
|
2261 |
+
"Batch Mean": -0.01856723427772522,
|
2262 |
+
"accuracy": 0.8515625,
|
2263 |
+
"epoch": 0.4325,
|
2264 |
+
"step": 173
|
2265 |
+
},
|
2266 |
+
{
|
2267 |
+
"epoch": 0.435,
|
2268 |
+
"grad_norm": 7.200859546661377,
|
2269 |
+
"learning_rate": 1.7842105263157894e-06,
|
2270 |
+
"loss": 0.3596,
|
2271 |
+
"step": 174
|
2272 |
+
},
|
2273 |
+
{
|
2274 |
+
"Batch Mean": -0.06785082817077637,
|
2275 |
+
"accuracy": 0.8125,
|
2276 |
+
"epoch": 0.435,
|
2277 |
+
"step": 174
|
2278 |
+
},
|
2279 |
+
{
|
2280 |
+
"epoch": 0.4375,
|
2281 |
+
"grad_norm": 8.669882774353027,
|
2282 |
+
"learning_rate": 1.7763157894736842e-06,
|
2283 |
+
"loss": 0.4487,
|
2284 |
+
"step": 175
|
2285 |
+
},
|
2286 |
+
{
|
2287 |
+
"Batch Mean": -0.3832893371582031,
|
2288 |
+
"accuracy": 0.828125,
|
2289 |
+
"epoch": 0.4375,
|
2290 |
+
"step": 175
|
2291 |
+
},
|
2292 |
+
{
|
2293 |
+
"epoch": 0.44,
|
2294 |
+
"grad_norm": 8.320089340209961,
|
2295 |
+
"learning_rate": 1.768421052631579e-06,
|
2296 |
+
"loss": 0.4209,
|
2297 |
+
"step": 176
|
2298 |
+
},
|
2299 |
+
{
|
2300 |
+
"Batch Mean": -0.08297932147979736,
|
2301 |
+
"accuracy": 0.8203125,
|
2302 |
+
"epoch": 0.44,
|
2303 |
+
"step": 176
|
2304 |
+
},
|
2305 |
+
{
|
2306 |
+
"epoch": 0.4425,
|
2307 |
+
"grad_norm": 7.819711208343506,
|
2308 |
+
"learning_rate": 1.7605263157894739e-06,
|
2309 |
+
"loss": 0.3551,
|
2310 |
+
"step": 177
|
2311 |
+
},
|
2312 |
+
{
|
2313 |
+
"Batch Mean": 0.37918123602867126,
|
2314 |
+
"accuracy": 0.8125,
|
2315 |
+
"epoch": 0.4425,
|
2316 |
+
"step": 177
|
2317 |
+
},
|
2318 |
+
{
|
2319 |
+
"epoch": 0.445,
|
2320 |
+
"grad_norm": 8.0424165725708,
|
2321 |
+
"learning_rate": 1.7526315789473686e-06,
|
2322 |
+
"loss": 0.3594,
|
2323 |
+
"step": 178
|
2324 |
+
},
|
2325 |
+
{
|
2326 |
+
"Batch Mean": 0.05135989189147949,
|
2327 |
+
"accuracy": 0.890625,
|
2328 |
+
"epoch": 0.445,
|
2329 |
+
"step": 178
|
2330 |
+
},
|
2331 |
+
{
|
2332 |
+
"epoch": 0.4475,
|
2333 |
+
"grad_norm": 6.7139811515808105,
|
2334 |
+
"learning_rate": 1.7447368421052633e-06,
|
2335 |
+
"loss": 0.3117,
|
2336 |
+
"step": 179
|
2337 |
+
},
|
2338 |
+
{
|
2339 |
+
"Batch Mean": 0.06295812129974365,
|
2340 |
+
"accuracy": 0.828125,
|
2341 |
+
"epoch": 0.4475,
|
2342 |
+
"step": 179
|
2343 |
+
},
|
2344 |
+
{
|
2345 |
+
"epoch": 0.45,
|
2346 |
+
"grad_norm": 7.755770683288574,
|
2347 |
+
"learning_rate": 1.736842105263158e-06,
|
2348 |
+
"loss": 0.396,
|
2349 |
+
"step": 180
|
2350 |
+
},
|
2351 |
+
{
|
2352 |
+
"Batch Mean": -0.19158035516738892,
|
2353 |
+
"accuracy": 0.8671875,
|
2354 |
+
"epoch": 0.45,
|
2355 |
+
"step": 180
|
2356 |
+
},
|
2357 |
+
{
|
2358 |
+
"epoch": 0.4525,
|
2359 |
+
"grad_norm": 6.9720778465271,
|
2360 |
+
"learning_rate": 1.7289473684210526e-06,
|
2361 |
+
"loss": 0.3034,
|
2362 |
+
"step": 181
|
2363 |
+
},
|
2364 |
+
{
|
2365 |
+
"Batch Mean": 0.045849740505218506,
|
2366 |
+
"accuracy": 0.859375,
|
2367 |
+
"epoch": 0.4525,
|
2368 |
+
"step": 181
|
2369 |
+
},
|
2370 |
+
{
|
2371 |
+
"epoch": 0.455,
|
2372 |
+
"grad_norm": 6.858092784881592,
|
2373 |
+
"learning_rate": 1.7210526315789474e-06,
|
2374 |
+
"loss": 0.3629,
|
2375 |
+
"step": 182
|
2376 |
+
},
|
2377 |
+
{
|
2378 |
+
"Batch Mean": 0.46304988861083984,
|
2379 |
+
"accuracy": 0.8125,
|
2380 |
+
"epoch": 0.455,
|
2381 |
+
"step": 182
|
2382 |
+
},
|
2383 |
+
{
|
2384 |
+
"epoch": 0.4575,
|
2385 |
+
"grad_norm": 8.993224143981934,
|
2386 |
+
"learning_rate": 1.7131578947368421e-06,
|
2387 |
+
"loss": 0.3538,
|
2388 |
+
"step": 183
|
2389 |
+
},
|
2390 |
+
{
|
2391 |
+
"Batch Mean": 0.057231903076171875,
|
2392 |
+
"accuracy": 0.7890625,
|
2393 |
+
"epoch": 0.4575,
|
2394 |
+
"step": 183
|
2395 |
+
},
|
2396 |
+
{
|
2397 |
+
"epoch": 0.46,
|
2398 |
+
"grad_norm": 11.233847618103027,
|
2399 |
+
"learning_rate": 1.7052631578947369e-06,
|
2400 |
+
"loss": 0.4784,
|
2401 |
+
"step": 184
|
2402 |
+
},
|
2403 |
+
{
|
2404 |
+
"Batch Mean": -0.06488056480884552,
|
2405 |
+
"accuracy": 0.859375,
|
2406 |
+
"epoch": 0.46,
|
2407 |
+
"step": 184
|
2408 |
+
},
|
2409 |
+
{
|
2410 |
+
"epoch": 0.4625,
|
2411 |
+
"grad_norm": 8.108458518981934,
|
2412 |
+
"learning_rate": 1.6973684210526316e-06,
|
2413 |
+
"loss": 0.2988,
|
2414 |
+
"step": 185
|
2415 |
+
},
|
2416 |
+
{
|
2417 |
+
"Batch Mean": -0.4033060073852539,
|
2418 |
+
"accuracy": 0.78125,
|
2419 |
+
"epoch": 0.4625,
|
2420 |
+
"step": 185
|
2421 |
+
},
|
2422 |
+
{
|
2423 |
+
"epoch": 0.465,
|
2424 |
+
"grad_norm": 9.097691535949707,
|
2425 |
+
"learning_rate": 1.6894736842105264e-06,
|
2426 |
+
"loss": 0.4141,
|
2427 |
+
"step": 186
|
2428 |
+
},
|
2429 |
+
{
|
2430 |
+
"Batch Mean": -0.41214847564697266,
|
2431 |
+
"accuracy": 0.8828125,
|
2432 |
+
"epoch": 0.465,
|
2433 |
+
"step": 186
|
2434 |
+
},
|
2435 |
+
{
|
2436 |
+
"epoch": 0.4675,
|
2437 |
+
"grad_norm": 8.145352363586426,
|
2438 |
+
"learning_rate": 1.6815789473684209e-06,
|
2439 |
+
"loss": 0.3051,
|
2440 |
+
"step": 187
|
2441 |
+
},
|
2442 |
+
{
|
2443 |
+
"Batch Mean": 0.14345920085906982,
|
2444 |
+
"accuracy": 0.8671875,
|
2445 |
+
"epoch": 0.4675,
|
2446 |
+
"step": 187
|
2447 |
+
},
|
2448 |
+
{
|
2449 |
+
"epoch": 0.47,
|
2450 |
+
"grad_norm": 7.163969039916992,
|
2451 |
+
"learning_rate": 1.6736842105263156e-06,
|
2452 |
+
"loss": 0.3405,
|
2453 |
+
"step": 188
|
2454 |
+
},
|
2455 |
+
{
|
2456 |
+
"Batch Mean": 0.25019216537475586,
|
2457 |
+
"accuracy": 0.8359375,
|
2458 |
+
"epoch": 0.47,
|
2459 |
+
"step": 188
|
2460 |
+
},
|
2461 |
+
{
|
2462 |
+
"epoch": 0.4725,
|
2463 |
+
"grad_norm": 8.14911937713623,
|
2464 |
+
"learning_rate": 1.6657894736842104e-06,
|
2465 |
+
"loss": 0.3334,
|
2466 |
+
"step": 189
|
2467 |
+
},
|
2468 |
+
{
|
2469 |
+
"Batch Mean": 0.030582189559936523,
|
2470 |
+
"accuracy": 0.8203125,
|
2471 |
+
"epoch": 0.4725,
|
2472 |
+
"step": 189
|
2473 |
+
},
|
2474 |
+
{
|
2475 |
+
"epoch": 0.475,
|
2476 |
+
"grad_norm": 7.993282318115234,
|
2477 |
+
"learning_rate": 1.6578947368421056e-06,
|
2478 |
+
"loss": 0.3885,
|
2479 |
+
"step": 190
|
2480 |
+
},
|
2481 |
+
{
|
2482 |
+
"Batch Mean": 0.14673519134521484,
|
2483 |
+
"accuracy": 0.8125,
|
2484 |
+
"epoch": 0.475,
|
2485 |
+
"step": 190
|
2486 |
+
},
|
2487 |
+
{
|
2488 |
+
"epoch": 0.4775,
|
2489 |
+
"grad_norm": 9.056065559387207,
|
2490 |
+
"learning_rate": 1.65e-06,
|
2491 |
+
"loss": 0.4084,
|
2492 |
+
"step": 191
|
2493 |
+
},
|
2494 |
+
{
|
2495 |
+
"Batch Mean": 0.3741884231567383,
|
2496 |
+
"accuracy": 0.875,
|
2497 |
+
"epoch": 0.4775,
|
2498 |
+
"step": 191
|
2499 |
+
},
|
2500 |
+
{
|
2501 |
+
"epoch": 0.48,
|
2502 |
+
"grad_norm": 8.857176780700684,
|
2503 |
+
"learning_rate": 1.6421052631578948e-06,
|
2504 |
+
"loss": 0.3182,
|
2505 |
+
"step": 192
|
2506 |
+
},
|
2507 |
+
{
|
2508 |
+
"Batch Mean": 0.41150104999542236,
|
2509 |
+
"accuracy": 0.859375,
|
2510 |
+
"epoch": 0.48,
|
2511 |
+
"step": 192
|
2512 |
+
},
|
2513 |
+
{
|
2514 |
+
"epoch": 0.4825,
|
2515 |
+
"grad_norm": 8.556700706481934,
|
2516 |
+
"learning_rate": 1.6342105263157896e-06,
|
2517 |
+
"loss": 0.3261,
|
2518 |
+
"step": 193
|
2519 |
+
},
|
2520 |
+
{
|
2521 |
+
"Batch Mean": -0.4138193130493164,
|
2522 |
+
"accuracy": 0.8359375,
|
2523 |
+
"epoch": 0.4825,
|
2524 |
+
"step": 193
|
2525 |
+
},
|
2526 |
+
{
|
2527 |
+
"epoch": 0.485,
|
2528 |
+
"grad_norm": 7.911004543304443,
|
2529 |
+
"learning_rate": 1.6263157894736843e-06,
|
2530 |
+
"loss": 0.3395,
|
2531 |
+
"step": 194
|
2532 |
+
},
|
2533 |
+
{
|
2534 |
+
"Batch Mean": -0.7141661643981934,
|
2535 |
+
"accuracy": 0.765625,
|
2536 |
+
"epoch": 0.485,
|
2537 |
+
"step": 194
|
2538 |
+
},
|
2539 |
+
{
|
2540 |
+
"epoch": 0.4875,
|
2541 |
+
"grad_norm": 10.288289070129395,
|
2542 |
+
"learning_rate": 1.618421052631579e-06,
|
2543 |
+
"loss": 0.4338,
|
2544 |
+
"step": 195
|
2545 |
+
},
|
2546 |
+
{
|
2547 |
+
"Batch Mean": -0.5950565338134766,
|
2548 |
+
"accuracy": 0.8203125,
|
2549 |
+
"epoch": 0.4875,
|
2550 |
+
"step": 195
|
2551 |
+
},
|
2552 |
+
{
|
2553 |
+
"epoch": 0.49,
|
2554 |
+
"grad_norm": 9.772676467895508,
|
2555 |
+
"learning_rate": 1.6105263157894738e-06,
|
2556 |
+
"loss": 0.4012,
|
2557 |
+
"step": 196
|
2558 |
+
},
|
2559 |
+
{
|
2560 |
+
"Batch Mean": -0.40017926692962646,
|
2561 |
+
"accuracy": 0.84375,
|
2562 |
+
"epoch": 0.49,
|
2563 |
+
"step": 196
|
2564 |
+
},
|
2565 |
+
{
|
2566 |
+
"epoch": 0.4925,
|
2567 |
+
"grad_norm": 7.894969463348389,
|
2568 |
+
"learning_rate": 1.6026315789473683e-06,
|
2569 |
+
"loss": 0.363,
|
2570 |
+
"step": 197
|
2571 |
+
},
|
2572 |
+
{
|
2573 |
+
"Batch Mean": 0.4873809814453125,
|
2574 |
+
"accuracy": 0.8203125,
|
2575 |
+
"epoch": 0.4925,
|
2576 |
+
"step": 197
|
2577 |
+
},
|
2578 |
+
{
|
2579 |
+
"epoch": 0.495,
|
2580 |
+
"grad_norm": 9.627370834350586,
|
2581 |
+
"learning_rate": 1.594736842105263e-06,
|
2582 |
+
"loss": 0.3737,
|
2583 |
+
"step": 198
|
2584 |
+
},
|
2585 |
+
{
|
2586 |
+
"Batch Mean": 0.2109694480895996,
|
2587 |
+
"accuracy": 0.765625,
|
2588 |
+
"epoch": 0.495,
|
2589 |
+
"step": 198
|
2590 |
+
},
|
2591 |
+
{
|
2592 |
+
"epoch": 0.4975,
|
2593 |
+
"grad_norm": 8.528368949890137,
|
2594 |
+
"learning_rate": 1.5868421052631578e-06,
|
2595 |
+
"loss": 0.4261,
|
2596 |
+
"step": 199
|
2597 |
+
},
|
2598 |
+
{
|
2599 |
+
"Batch Mean": 0.3447328805923462,
|
2600 |
+
"accuracy": 0.8125,
|
2601 |
+
"epoch": 0.4975,
|
2602 |
+
"step": 199
|
2603 |
+
},
|
2604 |
+
{
|
2605 |
+
"epoch": 0.5,
|
2606 |
+
"grad_norm": 8.279525756835938,
|
2607 |
+
"learning_rate": 1.5789473684210526e-06,
|
2608 |
+
"loss": 0.3857,
|
2609 |
+
"step": 200
|
2610 |
+
},
|
2611 |
+
{
|
2612 |
+
"Batch Mean": 0.6082854270935059,
|
2613 |
+
"accuracy": 0.84375,
|
2614 |
+
"epoch": 0.5,
|
2615 |
+
"step": 200
|
2616 |
+
},
|
2617 |
+
{
|
2618 |
+
"epoch": 0.5025,
|
2619 |
+
"grad_norm": 9.466031074523926,
|
2620 |
+
"learning_rate": 1.5710526315789473e-06,
|
2621 |
+
"loss": 0.3566,
|
2622 |
+
"step": 201
|
2623 |
+
},
|
2624 |
+
{
|
2625 |
+
"Batch Mean": -0.13963961601257324,
|
2626 |
+
"accuracy": 0.8125,
|
2627 |
+
"epoch": 0.5025,
|
2628 |
+
"step": 201
|
2629 |
+
},
|
2630 |
+
{
|
2631 |
+
"epoch": 0.505,
|
2632 |
+
"grad_norm": 6.909806728363037,
|
2633 |
+
"learning_rate": 1.563157894736842e-06,
|
2634 |
+
"loss": 0.3895,
|
2635 |
+
"step": 202
|
2636 |
+
},
|
2637 |
+
{
|
2638 |
+
"Batch Mean": 0.03664124011993408,
|
2639 |
+
"accuracy": 0.8828125,
|
2640 |
+
"epoch": 0.505,
|
2641 |
+
"step": 202
|
2642 |
+
},
|
2643 |
+
{
|
2644 |
+
"epoch": 0.5075,
|
2645 |
+
"grad_norm": 5.393540859222412,
|
2646 |
+
"learning_rate": 1.5552631578947368e-06,
|
2647 |
+
"loss": 0.3268,
|
2648 |
+
"step": 203
|
2649 |
+
},
|
2650 |
+
{
|
2651 |
+
"Batch Mean": -0.344998836517334,
|
2652 |
+
"accuracy": 0.8359375,
|
2653 |
+
"epoch": 0.5075,
|
2654 |
+
"step": 203
|
2655 |
+
},
|
2656 |
+
{
|
2657 |
+
"epoch": 0.51,
|
2658 |
+
"grad_norm": 8.25485610961914,
|
2659 |
+
"learning_rate": 1.5473684210526318e-06,
|
2660 |
+
"loss": 0.4146,
|
2661 |
+
"step": 204
|
2662 |
+
},
|
2663 |
+
{
|
2664 |
+
"Batch Mean": -0.7813053131103516,
|
2665 |
+
"accuracy": 0.8203125,
|
2666 |
+
"epoch": 0.51,
|
2667 |
+
"step": 204
|
2668 |
+
},
|
2669 |
+
{
|
2670 |
+
"epoch": 0.5125,
|
2671 |
+
"grad_norm": 11.657013893127441,
|
2672 |
+
"learning_rate": 1.5394736842105265e-06,
|
2673 |
+
"loss": 0.4102,
|
2674 |
+
"step": 205
|
2675 |
+
},
|
2676 |
+
{
|
2677 |
+
"Batch Mean": -0.26070213317871094,
|
2678 |
+
"accuracy": 0.890625,
|
2679 |
+
"epoch": 0.5125,
|
2680 |
+
"step": 205
|
2681 |
+
},
|
2682 |
+
{
|
2683 |
+
"epoch": 0.515,
|
2684 |
+
"grad_norm": 7.036439895629883,
|
2685 |
+
"learning_rate": 1.5315789473684213e-06,
|
2686 |
+
"loss": 0.291,
|
2687 |
+
"step": 206
|
2688 |
+
},
|
2689 |
+
{
|
2690 |
+
"Batch Mean": 0.03567647933959961,
|
2691 |
+
"accuracy": 0.796875,
|
2692 |
+
"epoch": 0.515,
|
2693 |
+
"step": 206
|
2694 |
+
},
|
2695 |
+
{
|
2696 |
+
"epoch": 0.5175,
|
2697 |
+
"grad_norm": 8.311566352844238,
|
2698 |
+
"learning_rate": 1.5236842105263158e-06,
|
2699 |
+
"loss": 0.4407,
|
2700 |
+
"step": 207
|
2701 |
+
},
|
2702 |
+
{
|
2703 |
+
"Batch Mean": 0.23694515228271484,
|
2704 |
+
"accuracy": 0.8984375,
|
2705 |
+
"epoch": 0.5175,
|
2706 |
+
"step": 207
|
2707 |
+
},
|
2708 |
+
{
|
2709 |
+
"epoch": 0.52,
|
2710 |
+
"grad_norm": 6.446564674377441,
|
2711 |
+
"learning_rate": 1.5157894736842105e-06,
|
2712 |
+
"loss": 0.2909,
|
2713 |
+
"step": 208
|
2714 |
+
},
|
2715 |
+
{
|
2716 |
+
"Batch Mean": 0.6833584308624268,
|
2717 |
+
"accuracy": 0.84375,
|
2718 |
+
"epoch": 0.52,
|
2719 |
+
"step": 208
|
2720 |
+
},
|
2721 |
+
{
|
2722 |
+
"epoch": 0.5225,
|
2723 |
+
"grad_norm": 10.551989555358887,
|
2724 |
+
"learning_rate": 1.5078947368421053e-06,
|
2725 |
+
"loss": 0.3614,
|
2726 |
+
"step": 209
|
2727 |
+
},
|
2728 |
+
{
|
2729 |
+
"Batch Mean": 0.660728931427002,
|
2730 |
+
"accuracy": 0.7734375,
|
2731 |
+
"epoch": 0.5225,
|
2732 |
+
"step": 209
|
2733 |
+
},
|
2734 |
+
{
|
2735 |
+
"epoch": 0.525,
|
2736 |
+
"grad_norm": 11.83906078338623,
|
2737 |
+
"learning_rate": 1.5e-06,
|
2738 |
+
"loss": 0.4109,
|
2739 |
+
"step": 210
|
2740 |
+
},
|
2741 |
+
{
|
2742 |
+
"Batch Mean": 0.08896183967590332,
|
2743 |
+
"accuracy": 0.8125,
|
2744 |
+
"epoch": 0.525,
|
2745 |
+
"step": 210
|
2746 |
+
},
|
2747 |
+
{
|
2748 |
+
"epoch": 0.5275,
|
2749 |
+
"grad_norm": 8.59549617767334,
|
2750 |
+
"learning_rate": 1.4921052631578948e-06,
|
2751 |
+
"loss": 0.4581,
|
2752 |
+
"step": 211
|
2753 |
+
},
|
2754 |
+
{
|
2755 |
+
"Batch Mean": -0.11360204219818115,
|
2756 |
+
"accuracy": 0.8203125,
|
2757 |
+
"epoch": 0.5275,
|
2758 |
+
"step": 211
|
2759 |
+
},
|
2760 |
+
{
|
2761 |
+
"epoch": 0.53,
|
2762 |
+
"grad_norm": 6.57830810546875,
|
2763 |
+
"learning_rate": 1.4842105263157895e-06,
|
2764 |
+
"loss": 0.35,
|
2765 |
+
"step": 212
|
2766 |
+
},
|
2767 |
+
{
|
2768 |
+
"Batch Mean": -0.4756917953491211,
|
2769 |
+
"accuracy": 0.859375,
|
2770 |
+
"epoch": 0.53,
|
2771 |
+
"step": 212
|
2772 |
+
},
|
2773 |
+
{
|
2774 |
+
"epoch": 0.5325,
|
2775 |
+
"grad_norm": 9.362006187438965,
|
2776 |
+
"learning_rate": 1.4763157894736843e-06,
|
2777 |
+
"loss": 0.3195,
|
2778 |
+
"step": 213
|
2779 |
+
},
|
2780 |
+
{
|
2781 |
+
"Batch Mean": -0.2329235076904297,
|
2782 |
+
"accuracy": 0.8515625,
|
2783 |
+
"epoch": 0.5325,
|
2784 |
+
"step": 213
|
2785 |
+
},
|
2786 |
+
{
|
2787 |
+
"epoch": 0.535,
|
2788 |
+
"grad_norm": 8.77215576171875,
|
2789 |
+
"learning_rate": 1.468421052631579e-06,
|
2790 |
+
"loss": 0.4045,
|
2791 |
+
"step": 214
|
2792 |
+
},
|
2793 |
+
{
|
2794 |
+
"Batch Mean": 0.06287053227424622,
|
2795 |
+
"accuracy": 0.8359375,
|
2796 |
+
"epoch": 0.535,
|
2797 |
+
"step": 214
|
2798 |
+
},
|
2799 |
+
{
|
2800 |
+
"epoch": 0.5375,
|
2801 |
+
"grad_norm": 6.861894607543945,
|
2802 |
+
"learning_rate": 1.4605263157894738e-06,
|
2803 |
+
"loss": 0.3336,
|
2804 |
+
"step": 215
|
2805 |
+
},
|
2806 |
+
{
|
2807 |
+
"Batch Mean": -0.24506235122680664,
|
2808 |
+
"accuracy": 0.8515625,
|
2809 |
+
"epoch": 0.5375,
|
2810 |
+
"step": 215
|
2811 |
+
},
|
2812 |
+
{
|
2813 |
+
"epoch": 0.54,
|
2814 |
+
"grad_norm": 8.678897857666016,
|
2815 |
+
"learning_rate": 1.4526315789473685e-06,
|
2816 |
+
"loss": 0.3562,
|
2817 |
+
"step": 216
|
2818 |
+
},
|
2819 |
+
{
|
2820 |
+
"Batch Mean": 0.07905793190002441,
|
2821 |
+
"accuracy": 0.8359375,
|
2822 |
+
"epoch": 0.54,
|
2823 |
+
"step": 216
|
2824 |
+
},
|
2825 |
+
{
|
2826 |
+
"epoch": 0.5425,
|
2827 |
+
"grad_norm": 7.401151657104492,
|
2828 |
+
"learning_rate": 1.4447368421052633e-06,
|
2829 |
+
"loss": 0.3627,
|
2830 |
+
"step": 217
|
2831 |
+
},
|
2832 |
+
{
|
2833 |
+
"Batch Mean": 0.15029168128967285,
|
2834 |
+
"accuracy": 0.8046875,
|
2835 |
+
"epoch": 0.5425,
|
2836 |
+
"step": 217
|
2837 |
+
},
|
2838 |
+
{
|
2839 |
+
"epoch": 0.545,
|
2840 |
+
"grad_norm": 7.813758373260498,
|
2841 |
+
"learning_rate": 1.436842105263158e-06,
|
2842 |
+
"loss": 0.3648,
|
2843 |
+
"step": 218
|
2844 |
+
},
|
2845 |
+
{
|
2846 |
+
"Batch Mean": 0.002633899450302124,
|
2847 |
+
"accuracy": 0.8984375,
|
2848 |
+
"epoch": 0.545,
|
2849 |
+
"step": 218
|
2850 |
+
},
|
2851 |
+
{
|
2852 |
+
"epoch": 0.5475,
|
2853 |
+
"grad_norm": 7.126307487487793,
|
2854 |
+
"learning_rate": 1.4289473684210525e-06,
|
2855 |
+
"loss": 0.2894,
|
2856 |
+
"step": 219
|
2857 |
+
},
|
2858 |
+
{
|
2859 |
+
"Batch Mean": -0.1388775110244751,
|
2860 |
+
"accuracy": 0.84375,
|
2861 |
+
"epoch": 0.5475,
|
2862 |
+
"step": 219
|
2863 |
+
},
|
2864 |
+
{
|
2865 |
+
"epoch": 0.55,
|
2866 |
+
"grad_norm": 7.792306900024414,
|
2867 |
+
"learning_rate": 1.4210526315789473e-06,
|
2868 |
+
"loss": 0.3971,
|
2869 |
+
"step": 220
|
2870 |
+
},
|
2871 |
+
{
|
2872 |
+
"Batch Mean": 0.39450502395629883,
|
2873 |
+
"accuracy": 0.890625,
|
2874 |
+
"epoch": 0.55,
|
2875 |
+
"step": 220
|
2876 |
+
},
|
2877 |
+
{
|
2878 |
+
"epoch": 0.5525,
|
2879 |
+
"grad_norm": 8.030144691467285,
|
2880 |
+
"learning_rate": 1.4131578947368422e-06,
|
2881 |
+
"loss": 0.289,
|
2882 |
+
"step": 221
|
2883 |
+
},
|
2884 |
+
{
|
2885 |
+
"Batch Mean": 0.05488854646682739,
|
2886 |
+
"accuracy": 0.8515625,
|
2887 |
+
"epoch": 0.5525,
|
2888 |
+
"step": 221
|
2889 |
+
},
|
2890 |
+
{
|
2891 |
+
"epoch": 0.555,
|
2892 |
+
"grad_norm": 7.672267913818359,
|
2893 |
+
"learning_rate": 1.405263157894737e-06,
|
2894 |
+
"loss": 0.3637,
|
2895 |
+
"step": 222
|
2896 |
+
},
|
2897 |
+
{
|
2898 |
+
"Batch Mean": -0.231512188911438,
|
2899 |
+
"accuracy": 0.8671875,
|
2900 |
+
"epoch": 0.555,
|
2901 |
+
"step": 222
|
2902 |
+
},
|
2903 |
+
{
|
2904 |
+
"epoch": 0.5575,
|
2905 |
+
"grad_norm": 8.242493629455566,
|
2906 |
+
"learning_rate": 1.3973684210526317e-06,
|
2907 |
+
"loss": 0.2882,
|
2908 |
+
"step": 223
|
2909 |
+
},
|
2910 |
+
{
|
2911 |
+
"Batch Mean": -0.3896869421005249,
|
2912 |
+
"accuracy": 0.8515625,
|
2913 |
+
"epoch": 0.5575,
|
2914 |
+
"step": 223
|
2915 |
+
},
|
2916 |
+
{
|
2917 |
+
"epoch": 0.56,
|
2918 |
+
"grad_norm": 8.707738876342773,
|
2919 |
+
"learning_rate": 1.3894736842105263e-06,
|
2920 |
+
"loss": 0.3375,
|
2921 |
+
"step": 224
|
2922 |
+
},
|
2923 |
+
{
|
2924 |
+
"Batch Mean": -0.06315040588378906,
|
2925 |
+
"accuracy": 0.859375,
|
2926 |
+
"epoch": 0.56,
|
2927 |
+
"step": 224
|
2928 |
+
},
|
2929 |
+
{
|
2930 |
+
"epoch": 0.5625,
|
2931 |
+
"grad_norm": 7.783517360687256,
|
2932 |
+
"learning_rate": 1.381578947368421e-06,
|
2933 |
+
"loss": 0.3369,
|
2934 |
+
"step": 225
|
2935 |
+
},
|
2936 |
+
{
|
2937 |
+
"Batch Mean": 0.7080554962158203,
|
2938 |
+
"accuracy": 0.8046875,
|
2939 |
+
"epoch": 0.5625,
|
2940 |
+
"step": 225
|
2941 |
+
},
|
2942 |
+
{
|
2943 |
+
"epoch": 0.565,
|
2944 |
+
"grad_norm": 13.766866683959961,
|
2945 |
+
"learning_rate": 1.3736842105263158e-06,
|
2946 |
+
"loss": 0.4215,
|
2947 |
+
"step": 226
|
2948 |
+
},
|
2949 |
+
{
|
2950 |
+
"Batch Mean": 0.6378374099731445,
|
2951 |
+
"accuracy": 0.8203125,
|
2952 |
+
"epoch": 0.565,
|
2953 |
+
"step": 226
|
2954 |
+
},
|
2955 |
+
{
|
2956 |
+
"epoch": 0.5675,
|
2957 |
+
"grad_norm": 11.578181266784668,
|
2958 |
+
"learning_rate": 1.3657894736842107e-06,
|
2959 |
+
"loss": 0.4144,
|
2960 |
+
"step": 227
|
2961 |
+
},
|
2962 |
+
{
|
2963 |
+
"Batch Mean": 0.37397003173828125,
|
2964 |
+
"accuracy": 0.8359375,
|
2965 |
+
"epoch": 0.5675,
|
2966 |
+
"step": 227
|
2967 |
+
},
|
2968 |
+
{
|
2969 |
+
"epoch": 0.57,
|
2970 |
+
"grad_norm": 8.984515190124512,
|
2971 |
+
"learning_rate": 1.3578947368421055e-06,
|
2972 |
+
"loss": 0.3828,
|
2973 |
+
"step": 228
|
2974 |
+
},
|
2975 |
+
{
|
2976 |
+
"Batch Mean": -0.1430950164794922,
|
2977 |
+
"accuracy": 0.90625,
|
2978 |
+
"epoch": 0.57,
|
2979 |
+
"step": 228
|
2980 |
+
},
|
2981 |
+
{
|
2982 |
+
"epoch": 0.5725,
|
2983 |
+
"grad_norm": 6.43174409866333,
|
2984 |
+
"learning_rate": 1.35e-06,
|
2985 |
+
"loss": 0.3035,
|
2986 |
+
"step": 229
|
2987 |
+
},
|
2988 |
+
{
|
2989 |
+
"Batch Mean": -0.2629528045654297,
|
2990 |
+
"accuracy": 0.875,
|
2991 |
+
"epoch": 0.5725,
|
2992 |
+
"step": 229
|
2993 |
+
},
|
2994 |
+
{
|
2995 |
+
"epoch": 0.575,
|
2996 |
+
"grad_norm": 7.405312538146973,
|
2997 |
+
"learning_rate": 1.3421052631578947e-06,
|
2998 |
+
"loss": 0.3615,
|
2999 |
+
"step": 230
|
3000 |
+
},
|
3001 |
+
{
|
3002 |
+
"Batch Mean": -0.6128553152084351,
|
3003 |
+
"accuracy": 0.7734375,
|
3004 |
+
"epoch": 0.575,
|
3005 |
+
"step": 230
|
3006 |
+
},
|
3007 |
+
{
|
3008 |
+
"epoch": 0.5775,
|
3009 |
+
"grad_norm": 12.709471702575684,
|
3010 |
+
"learning_rate": 1.3342105263157895e-06,
|
3011 |
+
"loss": 0.4879,
|
3012 |
+
"step": 231
|
3013 |
+
},
|
3014 |
+
{
|
3015 |
+
"Batch Mean": -0.30329418182373047,
|
3016 |
+
"accuracy": 0.828125,
|
3017 |
+
"epoch": 0.5775,
|
3018 |
+
"step": 231
|
3019 |
+
},
|
3020 |
+
{
|
3021 |
+
"epoch": 0.58,
|
3022 |
+
"grad_norm": 8.190142631530762,
|
3023 |
+
"learning_rate": 1.3263157894736842e-06,
|
3024 |
+
"loss": 0.3596,
|
3025 |
+
"step": 232
|
3026 |
+
},
|
3027 |
+
{
|
3028 |
+
"Batch Mean": 0.236228346824646,
|
3029 |
+
"accuracy": 0.7734375,
|
3030 |
+
"epoch": 0.58,
|
3031 |
+
"step": 232
|
3032 |
+
},
|
3033 |
+
{
|
3034 |
+
"epoch": 0.5825,
|
3035 |
+
"grad_norm": 9.241979598999023,
|
3036 |
+
"learning_rate": 1.318421052631579e-06,
|
3037 |
+
"loss": 0.4575,
|
3038 |
+
"step": 233
|
3039 |
+
},
|
3040 |
+
{
|
3041 |
+
"Batch Mean": 0.2605457305908203,
|
3042 |
+
"accuracy": 0.8046875,
|
3043 |
+
"epoch": 0.5825,
|
3044 |
+
"step": 233
|
3045 |
+
},
|
3046 |
+
{
|
3047 |
+
"epoch": 0.585,
|
3048 |
+
"grad_norm": 7.555475234985352,
|
3049 |
+
"learning_rate": 1.3105263157894737e-06,
|
3050 |
+
"loss": 0.3833,
|
3051 |
+
"step": 234
|
3052 |
+
},
|
3053 |
+
{
|
3054 |
+
"Batch Mean": 0.248213529586792,
|
3055 |
+
"accuracy": 0.921875,
|
3056 |
+
"epoch": 0.585,
|
3057 |
+
"step": 234
|
3058 |
+
},
|
3059 |
+
{
|
3060 |
+
"epoch": 0.5875,
|
3061 |
+
"grad_norm": 7.177881240844727,
|
3062 |
+
"learning_rate": 1.3026315789473685e-06,
|
3063 |
+
"loss": 0.2338,
|
3064 |
+
"step": 235
|
3065 |
+
},
|
3066 |
+
{
|
3067 |
+
"Batch Mean": -0.26292717456817627,
|
3068 |
+
"accuracy": 0.8828125,
|
3069 |
+
"epoch": 0.5875,
|
3070 |
+
"step": 235
|
3071 |
+
},
|
3072 |
+
{
|
3073 |
+
"epoch": 0.59,
|
3074 |
+
"grad_norm": 7.436389446258545,
|
3075 |
+
"learning_rate": 1.2947368421052632e-06,
|
3076 |
+
"loss": 0.3097,
|
3077 |
+
"step": 236
|
3078 |
+
},
|
3079 |
+
{
|
3080 |
+
"Batch Mean": -0.24770569801330566,
|
3081 |
+
"accuracy": 0.8671875,
|
3082 |
+
"epoch": 0.59,
|
3083 |
+
"step": 236
|
3084 |
+
},
|
3085 |
+
{
|
3086 |
+
"epoch": 0.5925,
|
3087 |
+
"grad_norm": 7.95246696472168,
|
3088 |
+
"learning_rate": 1.286842105263158e-06,
|
3089 |
+
"loss": 0.3513,
|
3090 |
+
"step": 237
|
3091 |
+
},
|
3092 |
+
{
|
3093 |
+
"Batch Mean": -0.38290679454803467,
|
3094 |
+
"accuracy": 0.796875,
|
3095 |
+
"epoch": 0.5925,
|
3096 |
+
"step": 237
|
3097 |
+
},
|
3098 |
+
{
|
3099 |
+
"epoch": 0.595,
|
3100 |
+
"grad_norm": 8.727229118347168,
|
3101 |
+
"learning_rate": 1.2789473684210527e-06,
|
3102 |
+
"loss": 0.4006,
|
3103 |
+
"step": 238
|
3104 |
+
},
|
3105 |
+
{
|
3106 |
+
"Batch Mean": 0.005364656448364258,
|
3107 |
+
"accuracy": 0.8671875,
|
3108 |
+
"epoch": 0.595,
|
3109 |
+
"step": 238
|
3110 |
+
},
|
3111 |
+
{
|
3112 |
+
"epoch": 0.5975,
|
3113 |
+
"grad_norm": 5.793431758880615,
|
3114 |
+
"learning_rate": 1.2710526315789474e-06,
|
3115 |
+
"loss": 0.2995,
|
3116 |
+
"step": 239
|
3117 |
+
},
|
3118 |
+
{
|
3119 |
+
"Batch Mean": 0.05780482292175293,
|
3120 |
+
"accuracy": 0.8828125,
|
3121 |
+
"epoch": 0.5975,
|
3122 |
+
"step": 239
|
3123 |
+
},
|
3124 |
+
{
|
3125 |
+
"epoch": 0.6,
|
3126 |
+
"grad_norm": 7.411877632141113,
|
3127 |
+
"learning_rate": 1.263157894736842e-06,
|
3128 |
+
"loss": 0.3011,
|
3129 |
+
"step": 240
|
3130 |
+
},
|
3131 |
+
{
|
3132 |
+
"Batch Mean": 0.402042418718338,
|
3133 |
+
"accuracy": 0.828125,
|
3134 |
+
"epoch": 0.6,
|
3135 |
+
"step": 240
|
3136 |
+
},
|
3137 |
+
{
|
3138 |
+
"epoch": 0.6025,
|
3139 |
+
"grad_norm": 8.23151969909668,
|
3140 |
+
"learning_rate": 1.255263157894737e-06,
|
3141 |
+
"loss": 0.3518,
|
3142 |
+
"step": 241
|
3143 |
+
},
|
3144 |
+
{
|
3145 |
+
"Batch Mean": 0.38238781690597534,
|
3146 |
+
"accuracy": 0.84375,
|
3147 |
+
"epoch": 0.6025,
|
3148 |
+
"step": 241
|
3149 |
+
},
|
3150 |
+
{
|
3151 |
+
"epoch": 0.605,
|
3152 |
+
"grad_norm": 8.42182731628418,
|
3153 |
+
"learning_rate": 1.2473684210526317e-06,
|
3154 |
+
"loss": 0.3087,
|
3155 |
+
"step": 242
|
3156 |
+
},
|
3157 |
+
{
|
3158 |
+
"Batch Mean": 0.5328927040100098,
|
3159 |
+
"accuracy": 0.8203125,
|
3160 |
+
"epoch": 0.605,
|
3161 |
+
"step": 242
|
3162 |
+
},
|
3163 |
+
{
|
3164 |
+
"epoch": 0.6075,
|
3165 |
+
"grad_norm": 9.953737258911133,
|
3166 |
+
"learning_rate": 1.2394736842105264e-06,
|
3167 |
+
"loss": 0.3409,
|
3168 |
+
"step": 243
|
3169 |
+
},
|
3170 |
+
{
|
3171 |
+
"Batch Mean": 0.19218015670776367,
|
3172 |
+
"accuracy": 0.78125,
|
3173 |
+
"epoch": 0.6075,
|
3174 |
+
"step": 243
|
3175 |
+
},
|
3176 |
+
{
|
3177 |
+
"epoch": 0.61,
|
3178 |
+
"grad_norm": 8.72748851776123,
|
3179 |
+
"learning_rate": 1.2315789473684212e-06,
|
3180 |
+
"loss": 0.4004,
|
3181 |
+
"step": 244
|
3182 |
+
},
|
3183 |
+
{
|
3184 |
+
"Batch Mean": -0.012094497680664062,
|
3185 |
+
"accuracy": 0.828125,
|
3186 |
+
"epoch": 0.61,
|
3187 |
+
"step": 244
|
3188 |
+
},
|
3189 |
+
{
|
3190 |
+
"epoch": 0.6125,
|
3191 |
+
"grad_norm": 7.34162712097168,
|
3192 |
+
"learning_rate": 1.2236842105263157e-06,
|
3193 |
+
"loss": 0.3568,
|
3194 |
+
"step": 245
|
3195 |
+
},
|
3196 |
+
{
|
3197 |
+
"Batch Mean": -0.23955392837524414,
|
3198 |
+
"accuracy": 0.796875,
|
3199 |
+
"epoch": 0.6125,
|
3200 |
+
"step": 245
|
3201 |
+
},
|
3202 |
+
{
|
3203 |
+
"epoch": 0.615,
|
3204 |
+
"grad_norm": 9.275582313537598,
|
3205 |
+
"learning_rate": 1.2157894736842105e-06,
|
3206 |
+
"loss": 0.462,
|
3207 |
+
"step": 246
|
3208 |
+
},
|
3209 |
+
{
|
3210 |
+
"Batch Mean": -1.1516103744506836,
|
3211 |
+
"accuracy": 0.7734375,
|
3212 |
+
"epoch": 0.615,
|
3213 |
+
"step": 246
|
3214 |
+
},
|
3215 |
+
{
|
3216 |
+
"epoch": 0.6175,
|
3217 |
+
"grad_norm": 16.910037994384766,
|
3218 |
+
"learning_rate": 1.2078947368421052e-06,
|
3219 |
+
"loss": 0.4268,
|
3220 |
+
"step": 247
|
3221 |
+
},
|
3222 |
+
{
|
3223 |
+
"Batch Mean": -0.5064811706542969,
|
3224 |
+
"accuracy": 0.8203125,
|
3225 |
+
"epoch": 0.6175,
|
3226 |
+
"step": 247
|
3227 |
+
},
|
3228 |
+
{
|
3229 |
+
"epoch": 0.62,
|
3230 |
+
"grad_norm": 10.072269439697266,
|
3231 |
+
"learning_rate": 1.2000000000000002e-06,
|
3232 |
+
"loss": 0.4106,
|
3233 |
+
"step": 248
|
3234 |
+
},
|
3235 |
+
{
|
3236 |
+
"Batch Mean": -0.645620584487915,
|
3237 |
+
"accuracy": 0.921875,
|
3238 |
+
"epoch": 0.62,
|
3239 |
+
"step": 248
|
3240 |
+
},
|
3241 |
+
{
|
3242 |
+
"epoch": 0.6225,
|
3243 |
+
"grad_norm": 9.188313484191895,
|
3244 |
+
"learning_rate": 1.192105263157895e-06,
|
3245 |
+
"loss": 0.2486,
|
3246 |
+
"step": 249
|
3247 |
+
},
|
3248 |
+
{
|
3249 |
+
"Batch Mean": -0.1468508243560791,
|
3250 |
+
"accuracy": 0.84375,
|
3251 |
+
"epoch": 0.6225,
|
3252 |
+
"step": 249
|
3253 |
+
},
|
3254 |
+
{
|
3255 |
+
"epoch": 0.625,
|
3256 |
+
"grad_norm": 7.615783214569092,
|
3257 |
+
"learning_rate": 1.1842105263157894e-06,
|
3258 |
+
"loss": 0.3676,
|
3259 |
+
"step": 250
|
3260 |
+
},
|
3261 |
+
{
|
3262 |
+
"Batch Mean": -0.36475658416748047,
|
3263 |
+
"accuracy": 0.890625,
|
3264 |
+
"epoch": 0.625,
|
3265 |
+
"step": 250
|
3266 |
+
},
|
3267 |
+
{
|
3268 |
+
"epoch": 0.6275,
|
3269 |
+
"grad_norm": 7.731856822967529,
|
3270 |
+
"learning_rate": 1.1763157894736842e-06,
|
3271 |
+
"loss": 0.3423,
|
3272 |
+
"step": 251
|
3273 |
+
},
|
3274 |
+
{
|
3275 |
+
"Batch Mean": 0.27223968505859375,
|
3276 |
+
"accuracy": 0.8203125,
|
3277 |
+
"epoch": 0.6275,
|
3278 |
+
"step": 251
|
3279 |
+
},
|
3280 |
+
{
|
3281 |
+
"epoch": 0.63,
|
3282 |
+
"grad_norm": 8.997645378112793,
|
3283 |
+
"learning_rate": 1.168421052631579e-06,
|
3284 |
+
"loss": 0.4098,
|
3285 |
+
"step": 252
|
3286 |
+
},
|
3287 |
+
{
|
3288 |
+
"Batch Mean": 0.9861600399017334,
|
3289 |
+
"accuracy": 0.859375,
|
3290 |
+
"epoch": 0.63,
|
3291 |
+
"step": 252
|
3292 |
+
},
|
3293 |
+
{
|
3294 |
+
"epoch": 0.6325,
|
3295 |
+
"grad_norm": 13.911986351013184,
|
3296 |
+
"learning_rate": 1.1605263157894737e-06,
|
3297 |
+
"loss": 0.3761,
|
3298 |
+
"step": 253
|
3299 |
+
},
|
3300 |
+
{
|
3301 |
+
"Batch Mean": 0.6206140518188477,
|
3302 |
+
"accuracy": 0.859375,
|
3303 |
+
"epoch": 0.6325,
|
3304 |
+
"step": 253
|
3305 |
+
},
|
3306 |
+
{
|
3307 |
+
"epoch": 0.635,
|
3308 |
+
"grad_norm": 9.769001007080078,
|
3309 |
+
"learning_rate": 1.1526315789473684e-06,
|
3310 |
+
"loss": 0.3697,
|
3311 |
+
"step": 254
|
3312 |
+
},
|
3313 |
+
{
|
3314 |
+
"Batch Mean": 0.66489177942276,
|
3315 |
+
"accuracy": 0.8125,
|
3316 |
+
"epoch": 0.635,
|
3317 |
+
"step": 254
|
3318 |
+
},
|
3319 |
+
{
|
3320 |
+
"epoch": 0.6375,
|
3321 |
+
"grad_norm": 9.977997779846191,
|
3322 |
+
"learning_rate": 1.1447368421052632e-06,
|
3323 |
+
"loss": 0.3734,
|
3324 |
+
"step": 255
|
3325 |
+
},
|
3326 |
+
{
|
3327 |
+
"Batch Mean": 0.510383129119873,
|
3328 |
+
"accuracy": 0.8515625,
|
3329 |
+
"epoch": 0.6375,
|
3330 |
+
"step": 255
|
3331 |
+
},
|
3332 |
+
{
|
3333 |
+
"epoch": 0.64,
|
3334 |
+
"grad_norm": 8.681389808654785,
|
3335 |
+
"learning_rate": 1.136842105263158e-06,
|
3336 |
+
"loss": 0.3359,
|
3337 |
+
"step": 256
|
3338 |
+
},
|
3339 |
+
{
|
3340 |
+
"Batch Mean": -0.05070686340332031,
|
3341 |
+
"accuracy": 0.765625,
|
3342 |
+
"epoch": 0.64,
|
3343 |
+
"step": 256
|
3344 |
+
},
|
3345 |
+
{
|
3346 |
+
"epoch": 0.6425,
|
3347 |
+
"grad_norm": 7.4210205078125,
|
3348 |
+
"learning_rate": 1.1289473684210527e-06,
|
3349 |
+
"loss": 0.4495,
|
3350 |
+
"step": 257
|
3351 |
+
},
|
3352 |
+
{
|
3353 |
+
"Batch Mean": -0.22071266174316406,
|
3354 |
+
"accuracy": 0.796875,
|
3355 |
+
"epoch": 0.6425,
|
3356 |
+
"step": 257
|
3357 |
+
},
|
3358 |
+
{
|
3359 |
+
"epoch": 0.645,
|
3360 |
+
"grad_norm": 7.830999374389648,
|
3361 |
+
"learning_rate": 1.1210526315789474e-06,
|
3362 |
+
"loss": 0.4321,
|
3363 |
+
"step": 258
|
3364 |
+
},
|
3365 |
+
{
|
3366 |
+
"Batch Mean": 0.02909064292907715,
|
3367 |
+
"accuracy": 0.8359375,
|
3368 |
+
"epoch": 0.645,
|
3369 |
+
"step": 258
|
3370 |
+
},
|
3371 |
+
{
|
3372 |
+
"epoch": 0.6475,
|
3373 |
+
"grad_norm": 6.488223552703857,
|
3374 |
+
"learning_rate": 1.1131578947368421e-06,
|
3375 |
+
"loss": 0.3785,
|
3376 |
+
"step": 259
|
3377 |
+
},
|
3378 |
+
{
|
3379 |
+
"Batch Mean": -0.4812309741973877,
|
3380 |
+
"accuracy": 0.8203125,
|
3381 |
+
"epoch": 0.6475,
|
3382 |
+
"step": 259
|
3383 |
+
},
|
3384 |
+
{
|
3385 |
+
"epoch": 0.65,
|
3386 |
+
"grad_norm": 8.951570510864258,
|
3387 |
+
"learning_rate": 1.1052631578947369e-06,
|
3388 |
+
"loss": 0.3965,
|
3389 |
+
"step": 260
|
3390 |
+
},
|
3391 |
+
{
|
3392 |
+
"Batch Mean": -0.6864792108535767,
|
3393 |
+
"accuracy": 0.8828125,
|
3394 |
+
"epoch": 0.65,
|
3395 |
+
"step": 260
|
3396 |
+
},
|
3397 |
+
{
|
3398 |
+
"epoch": 0.6525,
|
3399 |
+
"grad_norm": 9.753576278686523,
|
3400 |
+
"learning_rate": 1.0973684210526316e-06,
|
3401 |
+
"loss": 0.3241,
|
3402 |
+
"step": 261
|
3403 |
+
},
|
3404 |
+
{
|
3405 |
+
"Batch Mean": -0.5582137703895569,
|
3406 |
+
"accuracy": 0.859375,
|
3407 |
+
"epoch": 0.6525,
|
3408 |
+
"step": 261
|
3409 |
+
},
|
3410 |
+
{
|
3411 |
+
"epoch": 0.655,
|
3412 |
+
"grad_norm": 8.607160568237305,
|
3413 |
+
"learning_rate": 1.0894736842105264e-06,
|
3414 |
+
"loss": 0.3297,
|
3415 |
+
"step": 262
|
3416 |
+
},
|
3417 |
+
{
|
3418 |
+
"Batch Mean": -0.19955122470855713,
|
3419 |
+
"accuracy": 0.796875,
|
3420 |
+
"epoch": 0.655,
|
3421 |
+
"step": 262
|
3422 |
+
},
|
3423 |
+
{
|
3424 |
+
"epoch": 0.6575,
|
3425 |
+
"grad_norm": 7.166594505310059,
|
3426 |
+
"learning_rate": 1.0815789473684211e-06,
|
3427 |
+
"loss": 0.4026,
|
3428 |
+
"step": 263
|
3429 |
+
},
|
3430 |
+
{
|
3431 |
+
"Batch Mean": 0.01648712158203125,
|
3432 |
+
"accuracy": 0.859375,
|
3433 |
+
"epoch": 0.6575,
|
3434 |
+
"step": 263
|
3435 |
+
},
|
3436 |
+
{
|
3437 |
+
"epoch": 0.66,
|
3438 |
+
"grad_norm": 6.486114501953125,
|
3439 |
+
"learning_rate": 1.0736842105263159e-06,
|
3440 |
+
"loss": 0.3557,
|
3441 |
+
"step": 264
|
3442 |
+
},
|
3443 |
+
{
|
3444 |
+
"Batch Mean": 0.3369255065917969,
|
3445 |
+
"accuracy": 0.875,
|
3446 |
+
"epoch": 0.66,
|
3447 |
+
"step": 264
|
3448 |
+
},
|
3449 |
+
{
|
3450 |
+
"epoch": 0.6625,
|
3451 |
+
"grad_norm": 7.933577060699463,
|
3452 |
+
"learning_rate": 1.0657894736842106e-06,
|
3453 |
+
"loss": 0.302,
|
3454 |
+
"step": 265
|
3455 |
+
},
|
3456 |
+
{
|
3457 |
+
"Batch Mean": 0.37366318702697754,
|
3458 |
+
"accuracy": 0.921875,
|
3459 |
+
"epoch": 0.6625,
|
3460 |
+
"step": 265
|
3461 |
+
},
|
3462 |
+
{
|
3463 |
+
"epoch": 0.665,
|
3464 |
+
"grad_norm": 7.446761608123779,
|
3465 |
+
"learning_rate": 1.0578947368421052e-06,
|
3466 |
+
"loss": 0.237,
|
3467 |
+
"step": 266
|
3468 |
+
},
|
3469 |
+
{
|
3470 |
+
"Batch Mean": 0.4524000883102417,
|
3471 |
+
"accuracy": 0.859375,
|
3472 |
+
"epoch": 0.665,
|
3473 |
+
"step": 266
|
3474 |
+
},
|
3475 |
+
{
|
3476 |
+
"epoch": 0.6675,
|
3477 |
+
"grad_norm": 8.502205848693848,
|
3478 |
+
"learning_rate": 1.05e-06,
|
3479 |
+
"loss": 0.3285,
|
3480 |
+
"step": 267
|
3481 |
+
},
|
3482 |
+
{
|
3483 |
+
"Batch Mean": 0.6751773357391357,
|
3484 |
+
"accuracy": 0.8359375,
|
3485 |
+
"epoch": 0.6675,
|
3486 |
+
"step": 267
|
3487 |
+
},
|
3488 |
+
{
|
3489 |
+
"epoch": 0.67,
|
3490 |
+
"grad_norm": 10.050773620605469,
|
3491 |
+
"learning_rate": 1.0421052631578949e-06,
|
3492 |
+
"loss": 0.4006,
|
3493 |
+
"step": 268
|
3494 |
+
},
|
3495 |
+
{
|
3496 |
+
"Batch Mean": 0.27886199951171875,
|
3497 |
+
"accuracy": 0.8671875,
|
3498 |
+
"epoch": 0.67,
|
3499 |
+
"step": 268
|
3500 |
+
},
|
3501 |
+
{
|
3502 |
+
"epoch": 0.6725,
|
3503 |
+
"grad_norm": 7.271613597869873,
|
3504 |
+
"learning_rate": 1.0342105263157896e-06,
|
3505 |
+
"loss": 0.3408,
|
3506 |
+
"step": 269
|
3507 |
+
},
|
3508 |
+
{
|
3509 |
+
"Batch Mean": 0.09986686706542969,
|
3510 |
+
"accuracy": 0.78125,
|
3511 |
+
"epoch": 0.6725,
|
3512 |
+
"step": 269
|
3513 |
+
},
|
3514 |
+
{
|
3515 |
+
"epoch": 0.675,
|
3516 |
+
"grad_norm": 8.224504470825195,
|
3517 |
+
"learning_rate": 1.0263157894736843e-06,
|
3518 |
+
"loss": 0.4315,
|
3519 |
+
"step": 270
|
3520 |
+
},
|
3521 |
+
{
|
3522 |
+
"Batch Mean": -0.23583006858825684,
|
3523 |
+
"accuracy": 0.859375,
|
3524 |
+
"epoch": 0.675,
|
3525 |
+
"step": 270
|
3526 |
+
},
|
3527 |
+
{
|
3528 |
+
"epoch": 0.6775,
|
3529 |
+
"grad_norm": 7.686771392822266,
|
3530 |
+
"learning_rate": 1.0184210526315789e-06,
|
3531 |
+
"loss": 0.3471,
|
3532 |
+
"step": 271
|
3533 |
+
},
|
3534 |
+
{
|
3535 |
+
"Batch Mean": -0.2585182189941406,
|
3536 |
+
"accuracy": 0.8515625,
|
3537 |
+
"epoch": 0.6775,
|
3538 |
+
"step": 271
|
3539 |
+
},
|
3540 |
+
{
|
3541 |
+
"epoch": 0.68,
|
3542 |
+
"grad_norm": 6.525619983673096,
|
3543 |
+
"learning_rate": 1.0105263157894736e-06,
|
3544 |
+
"loss": 0.3153,
|
3545 |
+
"step": 272
|
3546 |
+
},
|
3547 |
+
{
|
3548 |
+
"Batch Mean": 0.01106107234954834,
|
3549 |
+
"accuracy": 0.796875,
|
3550 |
+
"epoch": 0.68,
|
3551 |
+
"step": 272
|
3552 |
+
},
|
3553 |
+
{
|
3554 |
+
"epoch": 0.6825,
|
3555 |
+
"grad_norm": 7.4220967292785645,
|
3556 |
+
"learning_rate": 1.0026315789473684e-06,
|
3557 |
+
"loss": 0.4097,
|
3558 |
+
"step": 273
|
3559 |
+
},
|
3560 |
+
{
|
3561 |
+
"Batch Mean": -0.17680811882019043,
|
3562 |
+
"accuracy": 0.890625,
|
3563 |
+
"epoch": 0.6825,
|
3564 |
+
"step": 273
|
3565 |
+
},
|
3566 |
+
{
|
3567 |
+
"epoch": 0.685,
|
3568 |
+
"grad_norm": 6.954795837402344,
|
3569 |
+
"learning_rate": 9.947368421052631e-07,
|
3570 |
+
"loss": 0.3296,
|
3571 |
+
"step": 274
|
3572 |
+
},
|
3573 |
+
{
|
3574 |
+
"Batch Mean": -0.10438370704650879,
|
3575 |
+
"accuracy": 0.796875,
|
3576 |
+
"epoch": 0.685,
|
3577 |
+
"step": 274
|
3578 |
+
},
|
3579 |
+
{
|
3580 |
+
"epoch": 0.6875,
|
3581 |
+
"grad_norm": 8.100950241088867,
|
3582 |
+
"learning_rate": 9.86842105263158e-07,
|
3583 |
+
"loss": 0.4119,
|
3584 |
+
"step": 275
|
3585 |
+
},
|
3586 |
+
{
|
3587 |
+
"Batch Mean": -0.2608468532562256,
|
3588 |
+
"accuracy": 0.84375,
|
3589 |
+
"epoch": 0.6875,
|
3590 |
+
"step": 275
|
3591 |
+
},
|
3592 |
+
{
|
3593 |
+
"epoch": 0.69,
|
3594 |
+
"grad_norm": 7.6091437339782715,
|
3595 |
+
"learning_rate": 9.789473684210526e-07,
|
3596 |
+
"loss": 0.3792,
|
3597 |
+
"step": 276
|
3598 |
+
},
|
3599 |
+
{
|
3600 |
+
"Batch Mean": 0.2017640471458435,
|
3601 |
+
"accuracy": 0.8515625,
|
3602 |
+
"epoch": 0.69,
|
3603 |
+
"step": 276
|
3604 |
+
},
|
3605 |
+
{
|
3606 |
+
"epoch": 0.6925,
|
3607 |
+
"grad_norm": 7.743137836456299,
|
3608 |
+
"learning_rate": 9.710526315789474e-07,
|
3609 |
+
"loss": 0.3543,
|
3610 |
+
"step": 277
|
3611 |
+
},
|
3612 |
+
{
|
3613 |
+
"Batch Mean": 0.03964269161224365,
|
3614 |
+
"accuracy": 0.8203125,
|
3615 |
+
"epoch": 0.6925,
|
3616 |
+
"step": 277
|
3617 |
+
},
|
3618 |
+
{
|
3619 |
+
"epoch": 0.695,
|
3620 |
+
"grad_norm": 7.436593055725098,
|
3621 |
+
"learning_rate": 9.63157894736842e-07,
|
3622 |
+
"loss": 0.3741,
|
3623 |
+
"step": 278
|
3624 |
+
},
|
3625 |
+
{
|
3626 |
+
"Batch Mean": 0.1998610496520996,
|
3627 |
+
"accuracy": 0.8359375,
|
3628 |
+
"epoch": 0.695,
|
3629 |
+
"step": 278
|
3630 |
+
},
|
3631 |
+
{
|
3632 |
+
"epoch": 0.6975,
|
3633 |
+
"grad_norm": 7.1681718826293945,
|
3634 |
+
"learning_rate": 9.552631578947368e-07,
|
3635 |
+
"loss": 0.3788,
|
3636 |
+
"step": 279
|
3637 |
+
},
|
3638 |
+
{
|
3639 |
+
"Batch Mean": -0.3235056400299072,
|
3640 |
+
"accuracy": 0.8125,
|
3641 |
+
"epoch": 0.6975,
|
3642 |
+
"step": 279
|
3643 |
+
},
|
3644 |
+
{
|
3645 |
+
"epoch": 0.7,
|
3646 |
+
"grad_norm": 10.077638626098633,
|
3647 |
+
"learning_rate": 9.473684210526316e-07,
|
3648 |
+
"loss": 0.4124,
|
3649 |
+
"step": 280
|
3650 |
+
},
|
3651 |
+
{
|
3652 |
+
"Batch Mean": -0.2581977844238281,
|
3653 |
+
"accuracy": 0.8984375,
|
3654 |
+
"epoch": 0.7,
|
3655 |
+
"step": 280
|
3656 |
+
},
|
3657 |
+
{
|
3658 |
+
"epoch": 0.7025,
|
3659 |
+
"grad_norm": 6.695285320281982,
|
3660 |
+
"learning_rate": 9.394736842105262e-07,
|
3661 |
+
"loss": 0.2565,
|
3662 |
+
"step": 281
|
3663 |
+
},
|
3664 |
+
{
|
3665 |
+
"Batch Mean": 0.007382392883300781,
|
3666 |
+
"accuracy": 0.828125,
|
3667 |
+
"epoch": 0.7025,
|
3668 |
+
"step": 281
|
3669 |
+
},
|
3670 |
+
{
|
3671 |
+
"epoch": 0.705,
|
3672 |
+
"grad_norm": 7.9390869140625,
|
3673 |
+
"learning_rate": 9.315789473684212e-07,
|
3674 |
+
"loss": 0.3788,
|
3675 |
+
"step": 282
|
3676 |
+
},
|
3677 |
+
{
|
3678 |
+
"Batch Mean": -0.2042536735534668,
|
3679 |
+
"accuracy": 0.7890625,
|
3680 |
+
"epoch": 0.705,
|
3681 |
+
"step": 282
|
3682 |
+
},
|
3683 |
+
{
|
3684 |
+
"epoch": 0.7075,
|
3685 |
+
"grad_norm": 8.94979190826416,
|
3686 |
+
"learning_rate": 9.236842105263158e-07,
|
3687 |
+
"loss": 0.4032,
|
3688 |
+
"step": 283
|
3689 |
+
},
|
3690 |
+
{
|
3691 |
+
"Batch Mean": -0.3767300844192505,
|
3692 |
+
"accuracy": 0.890625,
|
3693 |
+
"epoch": 0.7075,
|
3694 |
+
"step": 283
|
3695 |
+
},
|
3696 |
+
{
|
3697 |
+
"epoch": 0.71,
|
3698 |
+
"grad_norm": 7.715059757232666,
|
3699 |
+
"learning_rate": 9.157894736842106e-07,
|
3700 |
+
"loss": 0.323,
|
3701 |
+
"step": 284
|
3702 |
+
},
|
3703 |
+
{
|
3704 |
+
"Batch Mean": 0.3044853210449219,
|
3705 |
+
"accuracy": 0.78125,
|
3706 |
+
"epoch": 0.71,
|
3707 |
+
"step": 284
|
3708 |
+
},
|
3709 |
+
{
|
3710 |
+
"epoch": 0.7125,
|
3711 |
+
"grad_norm": 7.844649791717529,
|
3712 |
+
"learning_rate": 9.078947368421053e-07,
|
3713 |
+
"loss": 0.4025,
|
3714 |
+
"step": 285
|
3715 |
+
},
|
3716 |
+
{
|
3717 |
+
"Batch Mean": -0.04273754358291626,
|
3718 |
+
"accuracy": 0.8125,
|
3719 |
+
"epoch": 0.7125,
|
3720 |
+
"step": 285
|
3721 |
+
},
|
3722 |
+
{
|
3723 |
+
"epoch": 0.715,
|
3724 |
+
"grad_norm": 7.262689113616943,
|
3725 |
+
"learning_rate": 9e-07,
|
3726 |
+
"loss": 0.4113,
|
3727 |
+
"step": 286
|
3728 |
+
},
|
3729 |
+
{
|
3730 |
+
"Batch Mean": -0.2648310661315918,
|
3731 |
+
"accuracy": 0.84375,
|
3732 |
+
"epoch": 0.715,
|
3733 |
+
"step": 286
|
3734 |
+
},
|
3735 |
+
{
|
3736 |
+
"epoch": 0.7175,
|
3737 |
+
"grad_norm": 7.911703586578369,
|
3738 |
+
"learning_rate": 8.921052631578947e-07,
|
3739 |
+
"loss": 0.3353,
|
3740 |
+
"step": 287
|
3741 |
+
},
|
3742 |
+
{
|
3743 |
+
"Batch Mean": 0.1920623779296875,
|
3744 |
+
"accuracy": 0.890625,
|
3745 |
+
"epoch": 0.7175,
|
3746 |
+
"step": 287
|
3747 |
+
},
|
3748 |
+
{
|
3749 |
+
"epoch": 0.72,
|
3750 |
+
"grad_norm": 6.033590316772461,
|
3751 |
+
"learning_rate": 8.842105263157895e-07,
|
3752 |
+
"loss": 0.2858,
|
3753 |
+
"step": 288
|
3754 |
+
},
|
3755 |
+
{
|
3756 |
+
"Batch Mean": 0.02208709716796875,
|
3757 |
+
"accuracy": 0.8515625,
|
3758 |
+
"epoch": 0.72,
|
3759 |
+
"step": 288
|
3760 |
+
},
|
3761 |
+
{
|
3762 |
+
"epoch": 0.7225,
|
3763 |
+
"grad_norm": 6.255743980407715,
|
3764 |
+
"learning_rate": 8.763157894736843e-07,
|
3765 |
+
"loss": 0.3499,
|
3766 |
+
"step": 289
|
3767 |
+
},
|
3768 |
+
{
|
3769 |
+
"Batch Mean": 0.157212495803833,
|
3770 |
+
"accuracy": 0.7734375,
|
3771 |
+
"epoch": 0.7225,
|
3772 |
+
"step": 289
|
3773 |
+
},
|
3774 |
+
{
|
3775 |
+
"epoch": 0.725,
|
3776 |
+
"grad_norm": 7.73415994644165,
|
3777 |
+
"learning_rate": 8.68421052631579e-07,
|
3778 |
+
"loss": 0.4015,
|
3779 |
+
"step": 290
|
3780 |
+
},
|
3781 |
+
{
|
3782 |
+
"Batch Mean": 0.07737350463867188,
|
3783 |
+
"accuracy": 0.8515625,
|
3784 |
+
"epoch": 0.725,
|
3785 |
+
"step": 290
|
3786 |
+
},
|
3787 |
+
{
|
3788 |
+
"epoch": 0.7275,
|
3789 |
+
"grad_norm": 6.704524040222168,
|
3790 |
+
"learning_rate": 8.605263157894737e-07,
|
3791 |
+
"loss": 0.3017,
|
3792 |
+
"step": 291
|
3793 |
+
},
|
3794 |
+
{
|
3795 |
+
"Batch Mean": 0.17530250549316406,
|
3796 |
+
"accuracy": 0.8671875,
|
3797 |
+
"epoch": 0.7275,
|
3798 |
+
"step": 291
|
3799 |
+
},
|
3800 |
+
{
|
3801 |
+
"epoch": 0.73,
|
3802 |
+
"grad_norm": 6.311378479003906,
|
3803 |
+
"learning_rate": 8.526315789473684e-07,
|
3804 |
+
"loss": 0.2901,
|
3805 |
+
"step": 292
|
3806 |
+
},
|
3807 |
+
{
|
3808 |
+
"Batch Mean": 0.10090017318725586,
|
3809 |
+
"accuracy": 0.8359375,
|
3810 |
+
"epoch": 0.73,
|
3811 |
+
"step": 292
|
3812 |
+
},
|
3813 |
+
{
|
3814 |
+
"epoch": 0.7325,
|
3815 |
+
"grad_norm": 7.105597496032715,
|
3816 |
+
"learning_rate": 8.447368421052632e-07,
|
3817 |
+
"loss": 0.4102,
|
3818 |
+
"step": 293
|
3819 |
+
},
|
3820 |
+
{
|
3821 |
+
"Batch Mean": 0.4577817916870117,
|
3822 |
+
"accuracy": 0.8671875,
|
3823 |
+
"epoch": 0.7325,
|
3824 |
+
"step": 293
|
3825 |
+
},
|
3826 |
+
{
|
3827 |
+
"epoch": 0.735,
|
3828 |
+
"grad_norm": 7.449181079864502,
|
3829 |
+
"learning_rate": 8.368421052631578e-07,
|
3830 |
+
"loss": 0.3147,
|
3831 |
+
"step": 294
|
3832 |
+
},
|
3833 |
+
{
|
3834 |
+
"Batch Mean": -0.21117448806762695,
|
3835 |
+
"accuracy": 0.8671875,
|
3836 |
+
"epoch": 0.735,
|
3837 |
+
"step": 294
|
3838 |
+
},
|
3839 |
+
{
|
3840 |
+
"epoch": 0.7375,
|
3841 |
+
"grad_norm": 7.147716522216797,
|
3842 |
+
"learning_rate": 8.289473684210528e-07,
|
3843 |
+
"loss": 0.3322,
|
3844 |
+
"step": 295
|
3845 |
+
},
|
3846 |
+
{
|
3847 |
+
"Batch Mean": -0.09427833557128906,
|
3848 |
+
"accuracy": 0.8515625,
|
3849 |
+
"epoch": 0.7375,
|
3850 |
+
"step": 295
|
3851 |
+
},
|
3852 |
+
{
|
3853 |
+
"epoch": 0.74,
|
3854 |
+
"grad_norm": 6.367930889129639,
|
3855 |
+
"learning_rate": 8.210526315789474e-07,
|
3856 |
+
"loss": 0.3257,
|
3857 |
+
"step": 296
|
3858 |
+
},
|
3859 |
+
{
|
3860 |
+
"Batch Mean": 0.09167495369911194,
|
3861 |
+
"accuracy": 0.8203125,
|
3862 |
+
"epoch": 0.74,
|
3863 |
+
"step": 296
|
3864 |
+
},
|
3865 |
+
{
|
3866 |
+
"epoch": 0.7425,
|
3867 |
+
"grad_norm": 7.110311031341553,
|
3868 |
+
"learning_rate": 8.131578947368422e-07,
|
3869 |
+
"loss": 0.3585,
|
3870 |
+
"step": 297
|
3871 |
+
},
|
3872 |
+
{
|
3873 |
+
"Batch Mean": -0.05771516263484955,
|
3874 |
+
"accuracy": 0.890625,
|
3875 |
+
"epoch": 0.7425,
|
3876 |
+
"step": 297
|
3877 |
+
},
|
3878 |
+
{
|
3879 |
+
"epoch": 0.745,
|
3880 |
+
"grad_norm": 6.1952314376831055,
|
3881 |
+
"learning_rate": 8.052631578947369e-07,
|
3882 |
+
"loss": 0.2568,
|
3883 |
+
"step": 298
|
3884 |
+
},
|
3885 |
+
{
|
3886 |
+
"Batch Mean": 0.2480783462524414,
|
3887 |
+
"accuracy": 0.875,
|
3888 |
+
"epoch": 0.745,
|
3889 |
+
"step": 298
|
3890 |
+
},
|
3891 |
+
{
|
3892 |
+
"epoch": 0.7475,
|
3893 |
+
"grad_norm": 7.205021381378174,
|
3894 |
+
"learning_rate": 7.973684210526315e-07,
|
3895 |
+
"loss": 0.3003,
|
3896 |
+
"step": 299
|
3897 |
+
},
|
3898 |
+
{
|
3899 |
+
"Batch Mean": -0.08726701885461807,
|
3900 |
+
"accuracy": 0.8671875,
|
3901 |
+
"epoch": 0.7475,
|
3902 |
+
"step": 299
|
3903 |
+
},
|
3904 |
+
{
|
3905 |
+
"epoch": 0.75,
|
3906 |
+
"grad_norm": 7.356017589569092,
|
3907 |
+
"learning_rate": 7.894736842105263e-07,
|
3908 |
+
"loss": 0.3019,
|
3909 |
+
"step": 300
|
3910 |
+
}
|
3911 |
+
],
|
3912 |
+
"logging_steps": 1,
|
3913 |
+
"max_steps": 400,
|
3914 |
+
"num_input_tokens_seen": 0,
|
3915 |
+
"num_train_epochs": 1,
|
3916 |
+
"save_steps": 100,
|
3917 |
+
"stateful_callbacks": {
|
3918 |
+
"TrainerControl": {
|
3919 |
+
"args": {
|
3920 |
+
"should_epoch_stop": false,
|
3921 |
+
"should_evaluate": false,
|
3922 |
+
"should_log": false,
|
3923 |
+
"should_save": true,
|
3924 |
+
"should_training_stop": false
|
3925 |
+
},
|
3926 |
+
"attributes": {}
|
3927 |
+
}
|
3928 |
+
},
|
3929 |
+
"total_flos": 0.0,
|
3930 |
+
"train_batch_size": 16,
|
3931 |
+
"trial_name": null,
|
3932 |
+
"trial_params": null
|
3933 |
+
}
|
checkpoint-300/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dab7a9d0a6227a7833fc68db5d94632c4e2ceb7ee89455f6c0134e29a3b812b9
|
3 |
+
size 5688
|
checkpoint-300/vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-400/added_tokens.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</tool_call>": 151658,
|
3 |
+
"<tool_call>": 151657,
|
4 |
+
"<|box_end|>": 151649,
|
5 |
+
"<|box_start|>": 151648,
|
6 |
+
"<|endoftext|>": 151643,
|
7 |
+
"<|file_sep|>": 151664,
|
8 |
+
"<|fim_middle|>": 151660,
|
9 |
+
"<|fim_pad|>": 151662,
|
10 |
+
"<|fim_prefix|>": 151659,
|
11 |
+
"<|fim_suffix|>": 151661,
|
12 |
+
"<|im_end|>": 151645,
|
13 |
+
"<|im_start|>": 151644,
|
14 |
+
"<|image_pad|>": 151655,
|
15 |
+
"<|object_ref_end|>": 151647,
|
16 |
+
"<|object_ref_start|>": 151646,
|
17 |
+
"<|quad_end|>": 151651,
|
18 |
+
"<|quad_start|>": 151650,
|
19 |
+
"<|repo_name|>": 151663,
|
20 |
+
"<|video_pad|>": 151656,
|
21 |
+
"<|vision_end|>": 151653,
|
22 |
+
"<|vision_pad|>": 151654,
|
23 |
+
"<|vision_start|>": 151652
|
24 |
+
}
|
checkpoint-400/config.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "tlrm/Q25-3B-UC",
|
3 |
+
"architectures": [
|
4 |
+
"Qwen2ForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 151643,
|
8 |
+
"eos_token_id": 151645,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 2048,
|
11 |
+
"id2label": {
|
12 |
+
"0": "LABEL_0"
|
13 |
+
},
|
14 |
+
"initializer_range": 0.02,
|
15 |
+
"intermediate_size": 11008,
|
16 |
+
"label2id": {
|
17 |
+
"LABEL_0": 0
|
18 |
+
},
|
19 |
+
"max_position_embeddings": 32768,
|
20 |
+
"max_window_layers": 36,
|
21 |
+
"model_type": "qwen2",
|
22 |
+
"num_attention_heads": 16,
|
23 |
+
"num_hidden_layers": 36,
|
24 |
+
"num_key_value_heads": 2,
|
25 |
+
"pad_token_id": 151643,
|
26 |
+
"rms_norm_eps": 1e-06,
|
27 |
+
"rope_scaling": null,
|
28 |
+
"rope_theta": 1000000.0,
|
29 |
+
"sliding_window": null,
|
30 |
+
"tie_word_embeddings": true,
|
31 |
+
"torch_dtype": "float32",
|
32 |
+
"transformers_version": "4.48.0",
|
33 |
+
"use_cache": false,
|
34 |
+
"use_mrope": false,
|
35 |
+
"use_sliding_window": false,
|
36 |
+
"vocab_size": 151936
|
37 |
+
}
|
checkpoint-400/merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-400/model-00001-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:236c4b0602034630628f791a2e1fc28eda2bfb8ef4fbe6df20c4f75ab2a536cd
|
3 |
+
size 4982131536
|
checkpoint-400/model-00002-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:945bcc14e62df2ccf59980bec4c6bd0ad91b1f33659179d0594fed6128871ede
|
3 |
+
size 4932949336
|
checkpoint-400/model-00003-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f2d7790f5a8a312df6a4a0511e59367411b97720efb8b51015bd056def263951
|
3 |
+
size 2428731440
|
checkpoint-400/model.safetensors.index.json
ADDED
@@ -0,0 +1,442 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 12343762944
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
7 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
8 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
9 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
10 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
12 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
15 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
16 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
17 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
18 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
19 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
20 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
21 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
22 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
23 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
24 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
25 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
26 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
27 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
28 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
29 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
30 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
31 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
32 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
33 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
34 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
35 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
36 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
37 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
38 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
39 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
40 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
41 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
42 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
43 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
44 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
45 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
46 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
47 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
48 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
49 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
50 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
51 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
52 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
53 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
54 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
55 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
56 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
57 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
58 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
59 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
60 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
61 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
62 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
63 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
64 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
65 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
66 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
67 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
68 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
69 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
70 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
71 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
72 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
73 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
74 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
75 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
76 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
77 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
78 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
79 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
80 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
81 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
82 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
83 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
84 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
85 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
86 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
87 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
88 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
89 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
90 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
91 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
92 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
93 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
94 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
95 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
96 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
97 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
98 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
99 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
100 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
101 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
102 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
103 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
104 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
105 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
106 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
107 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
108 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
109 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
110 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
111 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
112 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
113 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
114 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
115 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
116 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
117 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
118 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
119 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
120 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
121 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
122 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
123 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
124 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
125 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
126 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
127 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
128 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
129 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
130 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
131 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
132 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
133 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
134 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
135 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
136 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
137 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
138 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
139 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
140 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
141 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
142 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
143 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
144 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
145 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
146 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
147 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
148 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
149 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
150 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
151 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
152 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
153 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
154 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
155 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
156 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
157 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
158 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
159 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
160 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
161 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
162 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
163 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
164 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
165 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
166 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
167 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
168 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
169 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
170 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
171 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
172 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
173 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
174 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
175 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
176 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
177 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
178 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
179 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
180 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
181 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
182 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
183 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
184 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
185 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
186 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
187 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
188 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
189 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
190 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
191 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
192 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
193 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
194 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
195 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
196 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
197 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
198 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
199 |
+
"model.layers.23.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
200 |
+
"model.layers.23.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
201 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
202 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
203 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
204 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
205 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
206 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
207 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
208 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
209 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
210 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
211 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
212 |
+
"model.layers.24.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
213 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
214 |
+
"model.layers.24.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
215 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
216 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
217 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
218 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
219 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
220 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
221 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
222 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
223 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
224 |
+
"model.layers.25.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
225 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
226 |
+
"model.layers.25.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
227 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
228 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
229 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
230 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
231 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
232 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
233 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
234 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
235 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
236 |
+
"model.layers.26.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
237 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
238 |
+
"model.layers.26.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
239 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
240 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
241 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
242 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
243 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
244 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
245 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
246 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
247 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
248 |
+
"model.layers.27.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
249 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
250 |
+
"model.layers.27.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
251 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
252 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
253 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
254 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
255 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
256 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
257 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
258 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
259 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
260 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
261 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
262 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
263 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
264 |
+
"model.layers.28.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
265 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
266 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
267 |
+
"model.layers.28.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
268 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
269 |
+
"model.layers.28.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
270 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
271 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
272 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
273 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
274 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
275 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
276 |
+
"model.layers.29.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
277 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
278 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
279 |
+
"model.layers.29.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
280 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
281 |
+
"model.layers.29.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
282 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
283 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
284 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
285 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
286 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
287 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
288 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
289 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
290 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
291 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
292 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
293 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
294 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
295 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
296 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
297 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
298 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
299 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
300 |
+
"model.layers.30.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
301 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
302 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
303 |
+
"model.layers.30.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
304 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
305 |
+
"model.layers.30.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
306 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
307 |
+
"model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
308 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
309 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
310 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
311 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
312 |
+
"model.layers.31.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
313 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
314 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
315 |
+
"model.layers.31.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
316 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
317 |
+
"model.layers.31.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
318 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
319 |
+
"model.layers.32.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
320 |
+
"model.layers.32.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
321 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
322 |
+
"model.layers.32.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
323 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
324 |
+
"model.layers.32.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
325 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
326 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
327 |
+
"model.layers.32.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
328 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
329 |
+
"model.layers.32.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
330 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
331 |
+
"model.layers.33.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
332 |
+
"model.layers.33.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
333 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
334 |
+
"model.layers.33.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
335 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
336 |
+
"model.layers.33.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
337 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
338 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
339 |
+
"model.layers.33.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
340 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
341 |
+
"model.layers.33.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
342 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
343 |
+
"model.layers.34.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
344 |
+
"model.layers.34.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
345 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
346 |
+
"model.layers.34.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
347 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
348 |
+
"model.layers.34.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
349 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
350 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
351 |
+
"model.layers.34.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
352 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
353 |
+
"model.layers.34.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
354 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
355 |
+
"model.layers.35.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
356 |
+
"model.layers.35.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
357 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
358 |
+
"model.layers.35.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
359 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
360 |
+
"model.layers.35.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
361 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
362 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
363 |
+
"model.layers.35.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
364 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
365 |
+
"model.layers.35.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
366 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
367 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
368 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
369 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
370 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
371 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
372 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
373 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
374 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
375 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
376 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
377 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
378 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
379 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
380 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
381 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
382 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
383 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
384 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
385 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
386 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
387 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
388 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
389 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
390 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
391 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
392 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
393 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
394 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
395 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
396 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
397 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
398 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
399 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
400 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
401 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
402 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
403 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
404 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
405 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
406 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
407 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
408 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
409 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
410 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
411 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
412 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
413 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
414 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
415 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
416 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
417 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
418 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
419 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
420 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
421 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
422 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
423 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
424 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
425 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
426 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
427 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
428 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
429 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
430 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
431 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
432 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
433 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
434 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
435 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
436 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
437 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
438 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
439 |
+
"model.norm.weight": "model-00003-of-00003.safetensors",
|
440 |
+
"score.weight": "model-00003-of-00003.safetensors"
|
441 |
+
}
|
442 |
+
}
|
checkpoint-400/special_tokens_map.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|im_start|>",
|
4 |
+
"<|im_end|>",
|
5 |
+
"<|object_ref_start|>",
|
6 |
+
"<|object_ref_end|>",
|
7 |
+
"<|box_start|>",
|
8 |
+
"<|box_end|>",
|
9 |
+
"<|quad_start|>",
|
10 |
+
"<|quad_end|>",
|
11 |
+
"<|vision_start|>",
|
12 |
+
"<|vision_end|>",
|
13 |
+
"<|vision_pad|>",
|
14 |
+
"<|image_pad|>",
|
15 |
+
"<|video_pad|>"
|
16 |
+
],
|
17 |
+
"eos_token": {
|
18 |
+
"content": "<|im_end|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
"pad_token": {
|
25 |
+
"content": "<|endoftext|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
}
|
31 |
+
}
|