JW17 commited on
Commit
39b54c1
·
verified ·
1 Parent(s): 4614475

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +4 -0
  2. README.md +55 -0
  3. added_tokens.json +24 -0
  4. checkpoint-100/added_tokens.json +24 -0
  5. checkpoint-100/config.json +37 -0
  6. checkpoint-100/merges.txt +0 -0
  7. checkpoint-100/model-00001-of-00003.safetensors +3 -0
  8. checkpoint-100/model-00002-of-00003.safetensors +3 -0
  9. checkpoint-100/model-00003-of-00003.safetensors +3 -0
  10. checkpoint-100/model.safetensors.index.json +442 -0
  11. checkpoint-100/special_tokens_map.json +31 -0
  12. checkpoint-100/tokenizer.json +3 -0
  13. checkpoint-100/tokenizer_config.json +208 -0
  14. checkpoint-100/trainer_state.json +1333 -0
  15. checkpoint-100/training_args.bin +3 -0
  16. checkpoint-100/vocab.json +0 -0
  17. checkpoint-200/added_tokens.json +24 -0
  18. checkpoint-200/config.json +37 -0
  19. checkpoint-200/merges.txt +0 -0
  20. checkpoint-200/model-00001-of-00003.safetensors +3 -0
  21. checkpoint-200/model-00002-of-00003.safetensors +3 -0
  22. checkpoint-200/model-00003-of-00003.safetensors +3 -0
  23. checkpoint-200/model.safetensors.index.json +442 -0
  24. checkpoint-200/special_tokens_map.json +31 -0
  25. checkpoint-200/tokenizer.json +3 -0
  26. checkpoint-200/tokenizer_config.json +208 -0
  27. checkpoint-200/trainer_state.json +2633 -0
  28. checkpoint-200/training_args.bin +3 -0
  29. checkpoint-200/vocab.json +0 -0
  30. checkpoint-300/added_tokens.json +24 -0
  31. checkpoint-300/config.json +37 -0
  32. checkpoint-300/merges.txt +0 -0
  33. checkpoint-300/model-00001-of-00003.safetensors +3 -0
  34. checkpoint-300/model-00002-of-00003.safetensors +3 -0
  35. checkpoint-300/model-00003-of-00003.safetensors +3 -0
  36. checkpoint-300/model.safetensors.index.json +442 -0
  37. checkpoint-300/special_tokens_map.json +31 -0
  38. checkpoint-300/tokenizer.json +3 -0
  39. checkpoint-300/tokenizer_config.json +208 -0
  40. checkpoint-300/trainer_state.json +3933 -0
  41. checkpoint-300/training_args.bin +3 -0
  42. checkpoint-300/vocab.json +0 -0
  43. checkpoint-400/added_tokens.json +24 -0
  44. checkpoint-400/config.json +37 -0
  45. checkpoint-400/merges.txt +0 -0
  46. checkpoint-400/model-00001-of-00003.safetensors +3 -0
  47. checkpoint-400/model-00002-of-00003.safetensors +3 -0
  48. checkpoint-400/model-00003-of-00003.safetensors +3 -0
  49. checkpoint-400/model.safetensors.index.json +442 -0
  50. checkpoint-400/special_tokens_map.json +31 -0
.gitattributes CHANGED
@@ -33,3 +33,7 @@ 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-300/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ 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/gqhlbxbm)
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:eab45263a35129dbebc94698ee938e59f2e93ed6dfd53134763c803e730c21b1
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:e65989cff1c3182f6779b7eda7bc9eacac56a84ad5c472d0ef7948aa2a6e26fa
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:98d2e832ad7e3b159cf117c45c5949dcbb17d418a8987c549e106f25bda0b80c
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": -3.4444580078125,
13
+ "accuracy": 0.40625,
14
+ "epoch": 0,
15
+ "step": 0
16
+ },
17
+ {
18
+ "epoch": 0.0025,
19
+ "grad_norm": 43.31455612182617,
20
+ "learning_rate": 1.5000000000000002e-07,
21
+ "loss": 0.9077,
22
+ "step": 1
23
+ },
24
+ {
25
+ "Batch Mean": -3.43255615234375,
26
+ "accuracy": 0.4921875,
27
+ "epoch": 0.0025,
28
+ "step": 1
29
+ },
30
+ {
31
+ "epoch": 0.005,
32
+ "grad_norm": 50.06682205200195,
33
+ "learning_rate": 3.0000000000000004e-07,
34
+ "loss": 0.8907,
35
+ "step": 2
36
+ },
37
+ {
38
+ "Batch Mean": -3.44775390625,
39
+ "accuracy": 0.453125,
40
+ "epoch": 0.005,
41
+ "step": 2
42
+ },
43
+ {
44
+ "epoch": 0.0075,
45
+ "grad_norm": 47.389522552490234,
46
+ "learning_rate": 4.5e-07,
47
+ "loss": 0.8899,
48
+ "step": 3
49
+ },
50
+ {
51
+ "Batch Mean": -3.4224853515625,
52
+ "accuracy": 0.4375,
53
+ "epoch": 0.0075,
54
+ "step": 3
55
+ },
56
+ {
57
+ "epoch": 0.01,
58
+ "grad_norm": 49.24280548095703,
59
+ "learning_rate": 6.000000000000001e-07,
60
+ "loss": 0.8833,
61
+ "step": 4
62
+ },
63
+ {
64
+ "Batch Mean": -3.39697265625,
65
+ "accuracy": 0.5234375,
66
+ "epoch": 0.01,
67
+ "step": 4
68
+ },
69
+ {
70
+ "epoch": 0.0125,
71
+ "grad_norm": 44.11930847167969,
72
+ "learning_rate": 7.5e-07,
73
+ "loss": 0.8661,
74
+ "step": 5
75
+ },
76
+ {
77
+ "Batch Mean": -3.38104248046875,
78
+ "accuracy": 0.5078125,
79
+ "epoch": 0.0125,
80
+ "step": 5
81
+ },
82
+ {
83
+ "epoch": 0.015,
84
+ "grad_norm": 44.9741325378418,
85
+ "learning_rate": 9e-07,
86
+ "loss": 0.8805,
87
+ "step": 6
88
+ },
89
+ {
90
+ "Batch Mean": -3.19671630859375,
91
+ "accuracy": 0.5078125,
92
+ "epoch": 0.015,
93
+ "step": 6
94
+ },
95
+ {
96
+ "epoch": 0.0175,
97
+ "grad_norm": 42.32276153564453,
98
+ "learning_rate": 1.05e-06,
99
+ "loss": 0.8547,
100
+ "step": 7
101
+ },
102
+ {
103
+ "Batch Mean": -3.1279296875,
104
+ "accuracy": 0.4921875,
105
+ "epoch": 0.0175,
106
+ "step": 7
107
+ },
108
+ {
109
+ "epoch": 0.02,
110
+ "grad_norm": 44.22520065307617,
111
+ "learning_rate": 1.2000000000000002e-06,
112
+ "loss": 0.8464,
113
+ "step": 8
114
+ },
115
+ {
116
+ "Batch Mean": -2.520538330078125,
117
+ "accuracy": 0.5,
118
+ "epoch": 0.02,
119
+ "step": 8
120
+ },
121
+ {
122
+ "epoch": 0.0225,
123
+ "grad_norm": 36.41325378417969,
124
+ "learning_rate": 1.35e-06,
125
+ "loss": 0.7946,
126
+ "step": 9
127
+ },
128
+ {
129
+ "Batch Mean": -2.413787841796875,
130
+ "accuracy": 0.515625,
131
+ "epoch": 0.0225,
132
+ "step": 9
133
+ },
134
+ {
135
+ "epoch": 0.025,
136
+ "grad_norm": 31.74874496459961,
137
+ "learning_rate": 1.5e-06,
138
+ "loss": 0.7939,
139
+ "step": 10
140
+ },
141
+ {
142
+ "Batch Mean": -2.218231201171875,
143
+ "accuracy": 0.4921875,
144
+ "epoch": 0.025,
145
+ "step": 10
146
+ },
147
+ {
148
+ "epoch": 0.0275,
149
+ "grad_norm": 34.12691879272461,
150
+ "learning_rate": 1.65e-06,
151
+ "loss": 0.7505,
152
+ "step": 11
153
+ },
154
+ {
155
+ "Batch Mean": -0.2393415868282318,
156
+ "accuracy": 0.53125,
157
+ "epoch": 0.0275,
158
+ "step": 11
159
+ },
160
+ {
161
+ "epoch": 0.03,
162
+ "grad_norm": 10.481990814208984,
163
+ "learning_rate": 1.8e-06,
164
+ "loss": 0.6779,
165
+ "step": 12
166
+ },
167
+ {
168
+ "Batch Mean": 0.2733480930328369,
169
+ "accuracy": 0.5703125,
170
+ "epoch": 0.03,
171
+ "step": 12
172
+ },
173
+ {
174
+ "epoch": 0.0325,
175
+ "grad_norm": 8.39962387084961,
176
+ "learning_rate": 1.95e-06,
177
+ "loss": 0.6728,
178
+ "step": 13
179
+ },
180
+ {
181
+ "Batch Mean": 0.5041149854660034,
182
+ "accuracy": 0.671875,
183
+ "epoch": 0.0325,
184
+ "step": 13
185
+ },
186
+ {
187
+ "epoch": 0.035,
188
+ "grad_norm": 15.906760215759277,
189
+ "learning_rate": 2.1e-06,
190
+ "loss": 0.6679,
191
+ "step": 14
192
+ },
193
+ {
194
+ "Batch Mean": 0.8821840286254883,
195
+ "accuracy": 0.578125,
196
+ "epoch": 0.035,
197
+ "step": 14
198
+ },
199
+ {
200
+ "epoch": 0.0375,
201
+ "grad_norm": 19.03310775756836,
202
+ "learning_rate": 2.25e-06,
203
+ "loss": 0.7024,
204
+ "step": 15
205
+ },
206
+ {
207
+ "Batch Mean": 1.1891746520996094,
208
+ "accuracy": 0.5859375,
209
+ "epoch": 0.0375,
210
+ "step": 15
211
+ },
212
+ {
213
+ "epoch": 0.04,
214
+ "grad_norm": 20.89366340637207,
215
+ "learning_rate": 2.4000000000000003e-06,
216
+ "loss": 0.6868,
217
+ "step": 16
218
+ },
219
+ {
220
+ "Batch Mean": 2.1533203125,
221
+ "accuracy": 0.671875,
222
+ "epoch": 0.04,
223
+ "step": 16
224
+ },
225
+ {
226
+ "epoch": 0.0425,
227
+ "grad_norm": 34.633541107177734,
228
+ "learning_rate": 2.55e-06,
229
+ "loss": 0.7297,
230
+ "step": 17
231
+ },
232
+ {
233
+ "Batch Mean": 2.5652008056640625,
234
+ "accuracy": 0.6484375,
235
+ "epoch": 0.0425,
236
+ "step": 17
237
+ },
238
+ {
239
+ "epoch": 0.045,
240
+ "grad_norm": 41.46820068359375,
241
+ "learning_rate": 2.7e-06,
242
+ "loss": 0.7387,
243
+ "step": 18
244
+ },
245
+ {
246
+ "Batch Mean": 2.4411849975585938,
247
+ "accuracy": 0.75,
248
+ "epoch": 0.045,
249
+ "step": 18
250
+ },
251
+ {
252
+ "epoch": 0.0475,
253
+ "grad_norm": 42.9193000793457,
254
+ "learning_rate": 2.85e-06,
255
+ "loss": 0.6813,
256
+ "step": 19
257
+ },
258
+ {
259
+ "Batch Mean": 2.1285018920898438,
260
+ "accuracy": 0.703125,
261
+ "epoch": 0.0475,
262
+ "step": 19
263
+ },
264
+ {
265
+ "epoch": 0.05,
266
+ "grad_norm": 37.16952133178711,
267
+ "learning_rate": 3e-06,
268
+ "loss": 0.672,
269
+ "step": 20
270
+ },
271
+ {
272
+ "Batch Mean": 1.4230481386184692,
273
+ "accuracy": 0.671875,
274
+ "epoch": 0.05,
275
+ "step": 20
276
+ },
277
+ {
278
+ "epoch": 0.0525,
279
+ "grad_norm": 27.2924747467041,
280
+ "learning_rate": 2.992105263157895e-06,
281
+ "loss": 0.647,
282
+ "step": 21
283
+ },
284
+ {
285
+ "Batch Mean": 0.5414033532142639,
286
+ "accuracy": 0.6953125,
287
+ "epoch": 0.0525,
288
+ "step": 21
289
+ },
290
+ {
291
+ "epoch": 0.055,
292
+ "grad_norm": 11.927323341369629,
293
+ "learning_rate": 2.9842105263157896e-06,
294
+ "loss": 0.5981,
295
+ "step": 22
296
+ },
297
+ {
298
+ "Batch Mean": -0.36795324087142944,
299
+ "accuracy": 0.7265625,
300
+ "epoch": 0.055,
301
+ "step": 22
302
+ },
303
+ {
304
+ "epoch": 0.0575,
305
+ "grad_norm": 13.455949783325195,
306
+ "learning_rate": 2.9763157894736843e-06,
307
+ "loss": 0.5763,
308
+ "step": 23
309
+ },
310
+ {
311
+ "Batch Mean": -1.0874066352844238,
312
+ "accuracy": 0.7421875,
313
+ "epoch": 0.0575,
314
+ "step": 23
315
+ },
316
+ {
317
+ "epoch": 0.06,
318
+ "grad_norm": 22.382274627685547,
319
+ "learning_rate": 2.968421052631579e-06,
320
+ "loss": 0.5763,
321
+ "step": 24
322
+ },
323
+ {
324
+ "Batch Mean": -1.103028416633606,
325
+ "accuracy": 0.6953125,
326
+ "epoch": 0.06,
327
+ "step": 24
328
+ },
329
+ {
330
+ "epoch": 0.0625,
331
+ "grad_norm": 19.854228973388672,
332
+ "learning_rate": 2.960526315789474e-06,
333
+ "loss": 0.6065,
334
+ "step": 25
335
+ },
336
+ {
337
+ "Batch Mean": -0.8232302069664001,
338
+ "accuracy": 0.734375,
339
+ "epoch": 0.0625,
340
+ "step": 25
341
+ },
342
+ {
343
+ "epoch": 0.065,
344
+ "grad_norm": 16.642824172973633,
345
+ "learning_rate": 2.9526315789473685e-06,
346
+ "loss": 0.5282,
347
+ "step": 26
348
+ },
349
+ {
350
+ "Batch Mean": -0.11966800689697266,
351
+ "accuracy": 0.6875,
352
+ "epoch": 0.065,
353
+ "step": 26
354
+ },
355
+ {
356
+ "epoch": 0.0675,
357
+ "grad_norm": 8.563494682312012,
358
+ "learning_rate": 2.9447368421052633e-06,
359
+ "loss": 0.5348,
360
+ "step": 27
361
+ },
362
+ {
363
+ "Batch Mean": 0.5674030780792236,
364
+ "accuracy": 0.671875,
365
+ "epoch": 0.0675,
366
+ "step": 27
367
+ },
368
+ {
369
+ "epoch": 0.07,
370
+ "grad_norm": 13.211753845214844,
371
+ "learning_rate": 2.936842105263158e-06,
372
+ "loss": 0.5812,
373
+ "step": 28
374
+ },
375
+ {
376
+ "Batch Mean": 1.1245126724243164,
377
+ "accuracy": 0.6171875,
378
+ "epoch": 0.07,
379
+ "step": 28
380
+ },
381
+ {
382
+ "epoch": 0.0725,
383
+ "grad_norm": 22.8548583984375,
384
+ "learning_rate": 2.9289473684210528e-06,
385
+ "loss": 0.7336,
386
+ "step": 29
387
+ },
388
+ {
389
+ "Batch Mean": 1.2212319374084473,
390
+ "accuracy": 0.6796875,
391
+ "epoch": 0.0725,
392
+ "step": 29
393
+ },
394
+ {
395
+ "epoch": 0.075,
396
+ "grad_norm": 21.96833038330078,
397
+ "learning_rate": 2.9210526315789475e-06,
398
+ "loss": 0.6167,
399
+ "step": 30
400
+ },
401
+ {
402
+ "Batch Mean": 0.7509702444076538,
403
+ "accuracy": 0.796875,
404
+ "epoch": 0.075,
405
+ "step": 30
406
+ },
407
+ {
408
+ "epoch": 0.0775,
409
+ "grad_norm": 12.47424030303955,
410
+ "learning_rate": 2.9131578947368423e-06,
411
+ "loss": 0.463,
412
+ "step": 31
413
+ },
414
+ {
415
+ "Batch Mean": 0.2412339150905609,
416
+ "accuracy": 0.7578125,
417
+ "epoch": 0.0775,
418
+ "step": 31
419
+ },
420
+ {
421
+ "epoch": 0.08,
422
+ "grad_norm": 9.769195556640625,
423
+ "learning_rate": 2.905263157894737e-06,
424
+ "loss": 0.5412,
425
+ "step": 32
426
+ },
427
+ {
428
+ "Batch Mean": -0.5602660179138184,
429
+ "accuracy": 0.7109375,
430
+ "epoch": 0.08,
431
+ "step": 32
432
+ },
433
+ {
434
+ "epoch": 0.0825,
435
+ "grad_norm": 11.323891639709473,
436
+ "learning_rate": 2.8973684210526318e-06,
437
+ "loss": 0.5601,
438
+ "step": 33
439
+ },
440
+ {
441
+ "Batch Mean": -0.8669416904449463,
442
+ "accuracy": 0.7734375,
443
+ "epoch": 0.0825,
444
+ "step": 33
445
+ },
446
+ {
447
+ "epoch": 0.085,
448
+ "grad_norm": 15.461758613586426,
449
+ "learning_rate": 2.8894736842105265e-06,
450
+ "loss": 0.5147,
451
+ "step": 34
452
+ },
453
+ {
454
+ "Batch Mean": -0.7635477781295776,
455
+ "accuracy": 0.75,
456
+ "epoch": 0.085,
457
+ "step": 34
458
+ },
459
+ {
460
+ "epoch": 0.0875,
461
+ "grad_norm": 14.736496925354004,
462
+ "learning_rate": 2.8815789473684213e-06,
463
+ "loss": 0.5421,
464
+ "step": 35
465
+ },
466
+ {
467
+ "Batch Mean": -0.5088728070259094,
468
+ "accuracy": 0.734375,
469
+ "epoch": 0.0875,
470
+ "step": 35
471
+ },
472
+ {
473
+ "epoch": 0.09,
474
+ "grad_norm": 11.982501029968262,
475
+ "learning_rate": 2.873684210526316e-06,
476
+ "loss": 0.5234,
477
+ "step": 36
478
+ },
479
+ {
480
+ "Batch Mean": -0.03705340623855591,
481
+ "accuracy": 0.7578125,
482
+ "epoch": 0.09,
483
+ "step": 36
484
+ },
485
+ {
486
+ "epoch": 0.0925,
487
+ "grad_norm": 7.854848861694336,
488
+ "learning_rate": 2.8657894736842103e-06,
489
+ "loss": 0.4996,
490
+ "step": 37
491
+ },
492
+ {
493
+ "Batch Mean": 0.5426892042160034,
494
+ "accuracy": 0.734375,
495
+ "epoch": 0.0925,
496
+ "step": 37
497
+ },
498
+ {
499
+ "epoch": 0.095,
500
+ "grad_norm": 10.834790229797363,
501
+ "learning_rate": 2.857894736842105e-06,
502
+ "loss": 0.5187,
503
+ "step": 38
504
+ },
505
+ {
506
+ "Batch Mean": 0.4622654914855957,
507
+ "accuracy": 0.7734375,
508
+ "epoch": 0.095,
509
+ "step": 38
510
+ },
511
+ {
512
+ "epoch": 0.0975,
513
+ "grad_norm": 10.764225959777832,
514
+ "learning_rate": 2.85e-06,
515
+ "loss": 0.4723,
516
+ "step": 39
517
+ },
518
+ {
519
+ "Batch Mean": 0.18012571334838867,
520
+ "accuracy": 0.7890625,
521
+ "epoch": 0.0975,
522
+ "step": 39
523
+ },
524
+ {
525
+ "epoch": 0.1,
526
+ "grad_norm": 9.500924110412598,
527
+ "learning_rate": 2.8421052631578946e-06,
528
+ "loss": 0.4545,
529
+ "step": 40
530
+ },
531
+ {
532
+ "Batch Mean": -0.05992317199707031,
533
+ "accuracy": 0.7890625,
534
+ "epoch": 0.1,
535
+ "step": 40
536
+ },
537
+ {
538
+ "epoch": 0.1025,
539
+ "grad_norm": 8.079994201660156,
540
+ "learning_rate": 2.8342105263157897e-06,
541
+ "loss": 0.49,
542
+ "step": 41
543
+ },
544
+ {
545
+ "Batch Mean": 0.04392993450164795,
546
+ "accuracy": 0.8515625,
547
+ "epoch": 0.1025,
548
+ "step": 41
549
+ },
550
+ {
551
+ "epoch": 0.105,
552
+ "grad_norm": 10.184918403625488,
553
+ "learning_rate": 2.8263157894736845e-06,
554
+ "loss": 0.3789,
555
+ "step": 42
556
+ },
557
+ {
558
+ "Batch Mean": -0.2515716552734375,
559
+ "accuracy": 0.8046875,
560
+ "epoch": 0.105,
561
+ "step": 42
562
+ },
563
+ {
564
+ "epoch": 0.1075,
565
+ "grad_norm": 9.894248008728027,
566
+ "learning_rate": 2.8184210526315792e-06,
567
+ "loss": 0.435,
568
+ "step": 43
569
+ },
570
+ {
571
+ "Batch Mean": 0.15310335159301758,
572
+ "accuracy": 0.7734375,
573
+ "epoch": 0.1075,
574
+ "step": 43
575
+ },
576
+ {
577
+ "epoch": 0.11,
578
+ "grad_norm": 10.671575546264648,
579
+ "learning_rate": 2.810526315789474e-06,
580
+ "loss": 0.4291,
581
+ "step": 44
582
+ },
583
+ {
584
+ "Batch Mean": 0.2563772201538086,
585
+ "accuracy": 0.765625,
586
+ "epoch": 0.11,
587
+ "step": 44
588
+ },
589
+ {
590
+ "epoch": 0.1125,
591
+ "grad_norm": 10.690945625305176,
592
+ "learning_rate": 2.8026315789473687e-06,
593
+ "loss": 0.4812,
594
+ "step": 45
595
+ },
596
+ {
597
+ "Batch Mean": 0.046463966369628906,
598
+ "accuracy": 0.875,
599
+ "epoch": 0.1125,
600
+ "step": 45
601
+ },
602
+ {
603
+ "epoch": 0.115,
604
+ "grad_norm": 9.616545677185059,
605
+ "learning_rate": 2.7947368421052635e-06,
606
+ "loss": 0.3082,
607
+ "step": 46
608
+ },
609
+ {
610
+ "Batch Mean": 0.11115455627441406,
611
+ "accuracy": 0.75,
612
+ "epoch": 0.115,
613
+ "step": 46
614
+ },
615
+ {
616
+ "epoch": 0.1175,
617
+ "grad_norm": 15.726456642150879,
618
+ "learning_rate": 2.7868421052631578e-06,
619
+ "loss": 0.5576,
620
+ "step": 47
621
+ },
622
+ {
623
+ "Batch Mean": 0.2878689765930176,
624
+ "accuracy": 0.8125,
625
+ "epoch": 0.1175,
626
+ "step": 47
627
+ },
628
+ {
629
+ "epoch": 0.12,
630
+ "grad_norm": 11.675898551940918,
631
+ "learning_rate": 2.7789473684210525e-06,
632
+ "loss": 0.472,
633
+ "step": 48
634
+ },
635
+ {
636
+ "Batch Mean": -0.25928783416748047,
637
+ "accuracy": 0.75,
638
+ "epoch": 0.12,
639
+ "step": 48
640
+ },
641
+ {
642
+ "epoch": 0.1225,
643
+ "grad_norm": 15.394309997558594,
644
+ "learning_rate": 2.7710526315789473e-06,
645
+ "loss": 0.5011,
646
+ "step": 49
647
+ },
648
+ {
649
+ "Batch Mean": -0.2885439097881317,
650
+ "accuracy": 0.703125,
651
+ "epoch": 0.1225,
652
+ "step": 49
653
+ },
654
+ {
655
+ "epoch": 0.125,
656
+ "grad_norm": 15.69314956665039,
657
+ "learning_rate": 2.763157894736842e-06,
658
+ "loss": 0.5974,
659
+ "step": 50
660
+ },
661
+ {
662
+ "Batch Mean": -0.8389434814453125,
663
+ "accuracy": 0.8046875,
664
+ "epoch": 0.125,
665
+ "step": 50
666
+ },
667
+ {
668
+ "epoch": 0.1275,
669
+ "grad_norm": 16.744606018066406,
670
+ "learning_rate": 2.7552631578947368e-06,
671
+ "loss": 0.5151,
672
+ "step": 51
673
+ },
674
+ {
675
+ "Batch Mean": -0.6685854196548462,
676
+ "accuracy": 0.703125,
677
+ "epoch": 0.1275,
678
+ "step": 51
679
+ },
680
+ {
681
+ "epoch": 0.13,
682
+ "grad_norm": 15.530059814453125,
683
+ "learning_rate": 2.7473684210526315e-06,
684
+ "loss": 0.5502,
685
+ "step": 52
686
+ },
687
+ {
688
+ "Batch Mean": -0.5919044017791748,
689
+ "accuracy": 0.71875,
690
+ "epoch": 0.13,
691
+ "step": 52
692
+ },
693
+ {
694
+ "epoch": 0.1325,
695
+ "grad_norm": 15.14562702178955,
696
+ "learning_rate": 2.7394736842105263e-06,
697
+ "loss": 0.5305,
698
+ "step": 53
699
+ },
700
+ {
701
+ "Batch Mean": -0.11876988410949707,
702
+ "accuracy": 0.75,
703
+ "epoch": 0.1325,
704
+ "step": 53
705
+ },
706
+ {
707
+ "epoch": 0.135,
708
+ "grad_norm": 7.011972427368164,
709
+ "learning_rate": 2.7315789473684214e-06,
710
+ "loss": 0.4802,
711
+ "step": 54
712
+ },
713
+ {
714
+ "Batch Mean": 0.09675300121307373,
715
+ "accuracy": 0.7578125,
716
+ "epoch": 0.135,
717
+ "step": 54
718
+ },
719
+ {
720
+ "epoch": 0.1375,
721
+ "grad_norm": 8.37578010559082,
722
+ "learning_rate": 2.723684210526316e-06,
723
+ "loss": 0.4354,
724
+ "step": 55
725
+ },
726
+ {
727
+ "Batch Mean": 0.3877286911010742,
728
+ "accuracy": 0.8046875,
729
+ "epoch": 0.1375,
730
+ "step": 55
731
+ },
732
+ {
733
+ "epoch": 0.14,
734
+ "grad_norm": 8.380095481872559,
735
+ "learning_rate": 2.715789473684211e-06,
736
+ "loss": 0.4114,
737
+ "step": 56
738
+ },
739
+ {
740
+ "Batch Mean": 0.7472854852676392,
741
+ "accuracy": 0.8046875,
742
+ "epoch": 0.14,
743
+ "step": 56
744
+ },
745
+ {
746
+ "epoch": 0.1425,
747
+ "grad_norm": 12.794017791748047,
748
+ "learning_rate": 2.7078947368421052e-06,
749
+ "loss": 0.465,
750
+ "step": 57
751
+ },
752
+ {
753
+ "Batch Mean": 0.5131087303161621,
754
+ "accuracy": 0.8046875,
755
+ "epoch": 0.1425,
756
+ "step": 57
757
+ },
758
+ {
759
+ "epoch": 0.145,
760
+ "grad_norm": 8.367005348205566,
761
+ "learning_rate": 2.7e-06,
762
+ "loss": 0.4407,
763
+ "step": 58
764
+ },
765
+ {
766
+ "Batch Mean": 0.5741372108459473,
767
+ "accuracy": 0.8515625,
768
+ "epoch": 0.145,
769
+ "step": 58
770
+ },
771
+ {
772
+ "epoch": 0.1475,
773
+ "grad_norm": 9.066951751708984,
774
+ "learning_rate": 2.6921052631578947e-06,
775
+ "loss": 0.4468,
776
+ "step": 59
777
+ },
778
+ {
779
+ "Batch Mean": 0.169053316116333,
780
+ "accuracy": 0.734375,
781
+ "epoch": 0.1475,
782
+ "step": 59
783
+ },
784
+ {
785
+ "epoch": 0.15,
786
+ "grad_norm": 6.888144016265869,
787
+ "learning_rate": 2.6842105263157895e-06,
788
+ "loss": 0.4849,
789
+ "step": 60
790
+ },
791
+ {
792
+ "Batch Mean": -0.18010663986206055,
793
+ "accuracy": 0.765625,
794
+ "epoch": 0.15,
795
+ "step": 60
796
+ },
797
+ {
798
+ "epoch": 0.1525,
799
+ "grad_norm": 6.846613883972168,
800
+ "learning_rate": 2.6763157894736842e-06,
801
+ "loss": 0.4643,
802
+ "step": 61
803
+ },
804
+ {
805
+ "Batch Mean": -0.4085197448730469,
806
+ "accuracy": 0.8359375,
807
+ "epoch": 0.1525,
808
+ "step": 61
809
+ },
810
+ {
811
+ "epoch": 0.155,
812
+ "grad_norm": 7.677695274353027,
813
+ "learning_rate": 2.668421052631579e-06,
814
+ "loss": 0.3926,
815
+ "step": 62
816
+ },
817
+ {
818
+ "Batch Mean": -0.48792409896850586,
819
+ "accuracy": 0.828125,
820
+ "epoch": 0.155,
821
+ "step": 62
822
+ },
823
+ {
824
+ "epoch": 0.1575,
825
+ "grad_norm": 8.656214714050293,
826
+ "learning_rate": 2.6605263157894737e-06,
827
+ "loss": 0.4116,
828
+ "step": 63
829
+ },
830
+ {
831
+ "Batch Mean": -0.19100165367126465,
832
+ "accuracy": 0.7734375,
833
+ "epoch": 0.1575,
834
+ "step": 63
835
+ },
836
+ {
837
+ "epoch": 0.16,
838
+ "grad_norm": 9.927976608276367,
839
+ "learning_rate": 2.6526315789473685e-06,
840
+ "loss": 0.4395,
841
+ "step": 64
842
+ },
843
+ {
844
+ "Batch Mean": 0.025106430053710938,
845
+ "accuracy": 0.8046875,
846
+ "epoch": 0.16,
847
+ "step": 64
848
+ },
849
+ {
850
+ "epoch": 0.1625,
851
+ "grad_norm": 8.97470474243164,
852
+ "learning_rate": 2.644736842105263e-06,
853
+ "loss": 0.4632,
854
+ "step": 65
855
+ },
856
+ {
857
+ "Batch Mean": 0.4497801661491394,
858
+ "accuracy": 0.796875,
859
+ "epoch": 0.1625,
860
+ "step": 65
861
+ },
862
+ {
863
+ "epoch": 0.165,
864
+ "grad_norm": 11.160425186157227,
865
+ "learning_rate": 2.636842105263158e-06,
866
+ "loss": 0.5073,
867
+ "step": 66
868
+ },
869
+ {
870
+ "Batch Mean": 0.6494235992431641,
871
+ "accuracy": 0.8203125,
872
+ "epoch": 0.165,
873
+ "step": 66
874
+ },
875
+ {
876
+ "epoch": 0.1675,
877
+ "grad_norm": 11.464187622070312,
878
+ "learning_rate": 2.6289473684210527e-06,
879
+ "loss": 0.4467,
880
+ "step": 67
881
+ },
882
+ {
883
+ "Batch Mean": -0.17097759246826172,
884
+ "accuracy": 0.828125,
885
+ "epoch": 0.1675,
886
+ "step": 67
887
+ },
888
+ {
889
+ "epoch": 0.17,
890
+ "grad_norm": 8.820326805114746,
891
+ "learning_rate": 2.6210526315789474e-06,
892
+ "loss": 0.4543,
893
+ "step": 68
894
+ },
895
+ {
896
+ "Batch Mean": -0.1554449200630188,
897
+ "accuracy": 0.8046875,
898
+ "epoch": 0.17,
899
+ "step": 68
900
+ },
901
+ {
902
+ "epoch": 0.1725,
903
+ "grad_norm": 9.248348236083984,
904
+ "learning_rate": 2.613157894736842e-06,
905
+ "loss": 0.3796,
906
+ "step": 69
907
+ },
908
+ {
909
+ "Batch Mean": -0.21274375915527344,
910
+ "accuracy": 0.75,
911
+ "epoch": 0.1725,
912
+ "step": 69
913
+ },
914
+ {
915
+ "epoch": 0.175,
916
+ "grad_norm": 8.15241813659668,
917
+ "learning_rate": 2.605263157894737e-06,
918
+ "loss": 0.4445,
919
+ "step": 70
920
+ },
921
+ {
922
+ "Batch Mean": -0.06371593475341797,
923
+ "accuracy": 0.765625,
924
+ "epoch": 0.175,
925
+ "step": 70
926
+ },
927
+ {
928
+ "epoch": 0.1775,
929
+ "grad_norm": 6.543805122375488,
930
+ "learning_rate": 2.5973684210526317e-06,
931
+ "loss": 0.4376,
932
+ "step": 71
933
+ },
934
+ {
935
+ "Batch Mean": -0.10743597149848938,
936
+ "accuracy": 0.7265625,
937
+ "epoch": 0.1775,
938
+ "step": 71
939
+ },
940
+ {
941
+ "epoch": 0.18,
942
+ "grad_norm": 7.594844341278076,
943
+ "learning_rate": 2.5894736842105264e-06,
944
+ "loss": 0.4363,
945
+ "step": 72
946
+ },
947
+ {
948
+ "Batch Mean": 0.08045387268066406,
949
+ "accuracy": 0.84375,
950
+ "epoch": 0.18,
951
+ "step": 72
952
+ },
953
+ {
954
+ "epoch": 0.1825,
955
+ "grad_norm": 7.977687835693359,
956
+ "learning_rate": 2.581578947368421e-06,
957
+ "loss": 0.3616,
958
+ "step": 73
959
+ },
960
+ {
961
+ "Batch Mean": -0.11765336990356445,
962
+ "accuracy": 0.796875,
963
+ "epoch": 0.1825,
964
+ "step": 73
965
+ },
966
+ {
967
+ "epoch": 0.185,
968
+ "grad_norm": 6.521571636199951,
969
+ "learning_rate": 2.573684210526316e-06,
970
+ "loss": 0.4001,
971
+ "step": 74
972
+ },
973
+ {
974
+ "Batch Mean": 0.0607762336730957,
975
+ "accuracy": 0.703125,
976
+ "epoch": 0.185,
977
+ "step": 74
978
+ },
979
+ {
980
+ "epoch": 0.1875,
981
+ "grad_norm": 8.15623950958252,
982
+ "learning_rate": 2.5657894736842107e-06,
983
+ "loss": 0.4941,
984
+ "step": 75
985
+ },
986
+ {
987
+ "Batch Mean": 0.4910193681716919,
988
+ "accuracy": 0.8046875,
989
+ "epoch": 0.1875,
990
+ "step": 75
991
+ },
992
+ {
993
+ "epoch": 0.19,
994
+ "grad_norm": 9.602405548095703,
995
+ "learning_rate": 2.5578947368421054e-06,
996
+ "loss": 0.4224,
997
+ "step": 76
998
+ },
999
+ {
1000
+ "Batch Mean": 0.06563162803649902,
1001
+ "accuracy": 0.8046875,
1002
+ "epoch": 0.19,
1003
+ "step": 76
1004
+ },
1005
+ {
1006
+ "epoch": 0.1925,
1007
+ "grad_norm": 6.577213764190674,
1008
+ "learning_rate": 2.55e-06,
1009
+ "loss": 0.4047,
1010
+ "step": 77
1011
+ },
1012
+ {
1013
+ "Batch Mean": -0.08942317962646484,
1014
+ "accuracy": 0.8046875,
1015
+ "epoch": 0.1925,
1016
+ "step": 77
1017
+ },
1018
+ {
1019
+ "epoch": 0.195,
1020
+ "grad_norm": 16.202590942382812,
1021
+ "learning_rate": 2.542105263157895e-06,
1022
+ "loss": 0.4418,
1023
+ "step": 78
1024
+ },
1025
+ {
1026
+ "Batch Mean": -0.37958288192749023,
1027
+ "accuracy": 0.8125,
1028
+ "epoch": 0.195,
1029
+ "step": 78
1030
+ },
1031
+ {
1032
+ "epoch": 0.1975,
1033
+ "grad_norm": 23.45298194885254,
1034
+ "learning_rate": 2.5342105263157892e-06,
1035
+ "loss": 0.391,
1036
+ "step": 79
1037
+ },
1038
+ {
1039
+ "Batch Mean": -0.5664916038513184,
1040
+ "accuracy": 0.8125,
1041
+ "epoch": 0.1975,
1042
+ "step": 79
1043
+ },
1044
+ {
1045
+ "epoch": 0.2,
1046
+ "grad_norm": 10.679176330566406,
1047
+ "learning_rate": 2.526315789473684e-06,
1048
+ "loss": 0.4402,
1049
+ "step": 80
1050
+ },
1051
+ {
1052
+ "Batch Mean": -0.31339550018310547,
1053
+ "accuracy": 0.8359375,
1054
+ "epoch": 0.2,
1055
+ "step": 80
1056
+ },
1057
+ {
1058
+ "epoch": 0.2025,
1059
+ "grad_norm": 16.459426879882812,
1060
+ "learning_rate": 2.5184210526315787e-06,
1061
+ "loss": 0.3765,
1062
+ "step": 81
1063
+ },
1064
+ {
1065
+ "Batch Mean": 0.20376300811767578,
1066
+ "accuracy": 0.78125,
1067
+ "epoch": 0.2025,
1068
+ "step": 81
1069
+ },
1070
+ {
1071
+ "epoch": 0.205,
1072
+ "grad_norm": 8.887246131896973,
1073
+ "learning_rate": 2.510526315789474e-06,
1074
+ "loss": 0.4509,
1075
+ "step": 82
1076
+ },
1077
+ {
1078
+ "Batch Mean": -0.054105013608932495,
1079
+ "accuracy": 0.796875,
1080
+ "epoch": 0.205,
1081
+ "step": 82
1082
+ },
1083
+ {
1084
+ "epoch": 0.2075,
1085
+ "grad_norm": 8.116570472717285,
1086
+ "learning_rate": 2.5026315789473686e-06,
1087
+ "loss": 0.3906,
1088
+ "step": 83
1089
+ },
1090
+ {
1091
+ "Batch Mean": 0.4383058547973633,
1092
+ "accuracy": 0.875,
1093
+ "epoch": 0.2075,
1094
+ "step": 83
1095
+ },
1096
+ {
1097
+ "epoch": 0.21,
1098
+ "grad_norm": 9.300606727600098,
1099
+ "learning_rate": 2.4947368421052634e-06,
1100
+ "loss": 0.3099,
1101
+ "step": 84
1102
+ },
1103
+ {
1104
+ "Batch Mean": 0.4242062568664551,
1105
+ "accuracy": 0.7890625,
1106
+ "epoch": 0.21,
1107
+ "step": 84
1108
+ },
1109
+ {
1110
+ "epoch": 0.2125,
1111
+ "grad_norm": 8.7870512008667,
1112
+ "learning_rate": 2.486842105263158e-06,
1113
+ "loss": 0.3996,
1114
+ "step": 85
1115
+ },
1116
+ {
1117
+ "Batch Mean": 0.22194945812225342,
1118
+ "accuracy": 0.78125,
1119
+ "epoch": 0.2125,
1120
+ "step": 85
1121
+ },
1122
+ {
1123
+ "epoch": 0.215,
1124
+ "grad_norm": 8.691889762878418,
1125
+ "learning_rate": 2.478947368421053e-06,
1126
+ "loss": 0.4512,
1127
+ "step": 86
1128
+ },
1129
+ {
1130
+ "Batch Mean": -0.14107918739318848,
1131
+ "accuracy": 0.8359375,
1132
+ "epoch": 0.215,
1133
+ "step": 86
1134
+ },
1135
+ {
1136
+ "epoch": 0.2175,
1137
+ "grad_norm": 7.0445146560668945,
1138
+ "learning_rate": 2.4710526315789476e-06,
1139
+ "loss": 0.3771,
1140
+ "step": 87
1141
+ },
1142
+ {
1143
+ "Batch Mean": -0.35906583070755005,
1144
+ "accuracy": 0.765625,
1145
+ "epoch": 0.2175,
1146
+ "step": 87
1147
+ },
1148
+ {
1149
+ "epoch": 0.22,
1150
+ "grad_norm": 9.609421730041504,
1151
+ "learning_rate": 2.4631578947368424e-06,
1152
+ "loss": 0.4558,
1153
+ "step": 88
1154
+ },
1155
+ {
1156
+ "Batch Mean": -0.45313501358032227,
1157
+ "accuracy": 0.828125,
1158
+ "epoch": 0.22,
1159
+ "step": 88
1160
+ },
1161
+ {
1162
+ "epoch": 0.2225,
1163
+ "grad_norm": 9.091865539550781,
1164
+ "learning_rate": 2.4552631578947367e-06,
1165
+ "loss": 0.4292,
1166
+ "step": 89
1167
+ },
1168
+ {
1169
+ "Batch Mean": -0.35767626762390137,
1170
+ "accuracy": 0.8359375,
1171
+ "epoch": 0.2225,
1172
+ "step": 89
1173
+ },
1174
+ {
1175
+ "epoch": 0.225,
1176
+ "grad_norm": 7.811399459838867,
1177
+ "learning_rate": 2.4473684210526314e-06,
1178
+ "loss": 0.3823,
1179
+ "step": 90
1180
+ },
1181
+ {
1182
+ "Batch Mean": 0.0022423267364501953,
1183
+ "accuracy": 0.8046875,
1184
+ "epoch": 0.225,
1185
+ "step": 90
1186
+ },
1187
+ {
1188
+ "epoch": 0.2275,
1189
+ "grad_norm": 7.804200172424316,
1190
+ "learning_rate": 2.439473684210526e-06,
1191
+ "loss": 0.4079,
1192
+ "step": 91
1193
+ },
1194
+ {
1195
+ "Batch Mean": 0.17678523063659668,
1196
+ "accuracy": 0.8046875,
1197
+ "epoch": 0.2275,
1198
+ "step": 91
1199
+ },
1200
+ {
1201
+ "epoch": 0.23,
1202
+ "grad_norm": 7.715360641479492,
1203
+ "learning_rate": 2.431578947368421e-06,
1204
+ "loss": 0.391,
1205
+ "step": 92
1206
+ },
1207
+ {
1208
+ "Batch Mean": -0.22452354431152344,
1209
+ "accuracy": 0.8203125,
1210
+ "epoch": 0.23,
1211
+ "step": 92
1212
+ },
1213
+ {
1214
+ "epoch": 0.2325,
1215
+ "grad_norm": 7.197687149047852,
1216
+ "learning_rate": 2.4236842105263157e-06,
1217
+ "loss": 0.3864,
1218
+ "step": 93
1219
+ },
1220
+ {
1221
+ "Batch Mean": 0.30264759063720703,
1222
+ "accuracy": 0.84375,
1223
+ "epoch": 0.2325,
1224
+ "step": 93
1225
+ },
1226
+ {
1227
+ "epoch": 0.235,
1228
+ "grad_norm": 7.754411697387695,
1229
+ "learning_rate": 2.4157894736842104e-06,
1230
+ "loss": 0.3939,
1231
+ "step": 94
1232
+ },
1233
+ {
1234
+ "Batch Mean": -0.2516747713088989,
1235
+ "accuracy": 0.7890625,
1236
+ "epoch": 0.235,
1237
+ "step": 94
1238
+ },
1239
+ {
1240
+ "epoch": 0.2375,
1241
+ "grad_norm": 8.55639362335205,
1242
+ "learning_rate": 2.4078947368421056e-06,
1243
+ "loss": 0.4671,
1244
+ "step": 95
1245
+ },
1246
+ {
1247
+ "Batch Mean": -0.15928316116333008,
1248
+ "accuracy": 0.8046875,
1249
+ "epoch": 0.2375,
1250
+ "step": 95
1251
+ },
1252
+ {
1253
+ "epoch": 0.24,
1254
+ "grad_norm": 7.463867664337158,
1255
+ "learning_rate": 2.4000000000000003e-06,
1256
+ "loss": 0.471,
1257
+ "step": 96
1258
+ },
1259
+ {
1260
+ "Batch Mean": -0.0638132095336914,
1261
+ "accuracy": 0.8125,
1262
+ "epoch": 0.24,
1263
+ "step": 96
1264
+ },
1265
+ {
1266
+ "epoch": 0.2425,
1267
+ "grad_norm": 6.797260761260986,
1268
+ "learning_rate": 2.392105263157895e-06,
1269
+ "loss": 0.3892,
1270
+ "step": 97
1271
+ },
1272
+ {
1273
+ "Batch Mean": -0.08082282543182373,
1274
+ "accuracy": 0.8203125,
1275
+ "epoch": 0.2425,
1276
+ "step": 97
1277
+ },
1278
+ {
1279
+ "epoch": 0.245,
1280
+ "grad_norm": 7.096107482910156,
1281
+ "learning_rate": 2.38421052631579e-06,
1282
+ "loss": 0.3942,
1283
+ "step": 98
1284
+ },
1285
+ {
1286
+ "Batch Mean": 0.3185189962387085,
1287
+ "accuracy": 0.796875,
1288
+ "epoch": 0.245,
1289
+ "step": 98
1290
+ },
1291
+ {
1292
+ "epoch": 0.2475,
1293
+ "grad_norm": 9.447708129882812,
1294
+ "learning_rate": 2.376315789473684e-06,
1295
+ "loss": 0.5037,
1296
+ "step": 99
1297
+ },
1298
+ {
1299
+ "Batch Mean": 0.26651012897491455,
1300
+ "accuracy": 0.890625,
1301
+ "epoch": 0.2475,
1302
+ "step": 99
1303
+ },
1304
+ {
1305
+ "epoch": 0.25,
1306
+ "grad_norm": 9.391190528869629,
1307
+ "learning_rate": 2.368421052631579e-06,
1308
+ "loss": 0.3352,
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:74fbb395e3dbef6dff0b94de426655f11a7bcbb69a4cf79a55c0564599925fac
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:b7e6d748c2b017cf9f53896150624f4abd1201d20da7f375e4ad6ece5e474008
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:6304092439f2db3bea8b8ab73dbed34e6f26042380a102e9e80686af96074821
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:bee47fa6979072717c14cfec1e8ef7dca2026c2ac9c1036a2719f99f09f2c0b5
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": -3.4444580078125,
13
+ "accuracy": 0.40625,
14
+ "epoch": 0,
15
+ "step": 0
16
+ },
17
+ {
18
+ "epoch": 0.0025,
19
+ "grad_norm": 43.31455612182617,
20
+ "learning_rate": 1.5000000000000002e-07,
21
+ "loss": 0.9077,
22
+ "step": 1
23
+ },
24
+ {
25
+ "Batch Mean": -3.43255615234375,
26
+ "accuracy": 0.4921875,
27
+ "epoch": 0.0025,
28
+ "step": 1
29
+ },
30
+ {
31
+ "epoch": 0.005,
32
+ "grad_norm": 50.06682205200195,
33
+ "learning_rate": 3.0000000000000004e-07,
34
+ "loss": 0.8907,
35
+ "step": 2
36
+ },
37
+ {
38
+ "Batch Mean": -3.44775390625,
39
+ "accuracy": 0.453125,
40
+ "epoch": 0.005,
41
+ "step": 2
42
+ },
43
+ {
44
+ "epoch": 0.0075,
45
+ "grad_norm": 47.389522552490234,
46
+ "learning_rate": 4.5e-07,
47
+ "loss": 0.8899,
48
+ "step": 3
49
+ },
50
+ {
51
+ "Batch Mean": -3.4224853515625,
52
+ "accuracy": 0.4375,
53
+ "epoch": 0.0075,
54
+ "step": 3
55
+ },
56
+ {
57
+ "epoch": 0.01,
58
+ "grad_norm": 49.24280548095703,
59
+ "learning_rate": 6.000000000000001e-07,
60
+ "loss": 0.8833,
61
+ "step": 4
62
+ },
63
+ {
64
+ "Batch Mean": -3.39697265625,
65
+ "accuracy": 0.5234375,
66
+ "epoch": 0.01,
67
+ "step": 4
68
+ },
69
+ {
70
+ "epoch": 0.0125,
71
+ "grad_norm": 44.11930847167969,
72
+ "learning_rate": 7.5e-07,
73
+ "loss": 0.8661,
74
+ "step": 5
75
+ },
76
+ {
77
+ "Batch Mean": -3.38104248046875,
78
+ "accuracy": 0.5078125,
79
+ "epoch": 0.0125,
80
+ "step": 5
81
+ },
82
+ {
83
+ "epoch": 0.015,
84
+ "grad_norm": 44.9741325378418,
85
+ "learning_rate": 9e-07,
86
+ "loss": 0.8805,
87
+ "step": 6
88
+ },
89
+ {
90
+ "Batch Mean": -3.19671630859375,
91
+ "accuracy": 0.5078125,
92
+ "epoch": 0.015,
93
+ "step": 6
94
+ },
95
+ {
96
+ "epoch": 0.0175,
97
+ "grad_norm": 42.32276153564453,
98
+ "learning_rate": 1.05e-06,
99
+ "loss": 0.8547,
100
+ "step": 7
101
+ },
102
+ {
103
+ "Batch Mean": -3.1279296875,
104
+ "accuracy": 0.4921875,
105
+ "epoch": 0.0175,
106
+ "step": 7
107
+ },
108
+ {
109
+ "epoch": 0.02,
110
+ "grad_norm": 44.22520065307617,
111
+ "learning_rate": 1.2000000000000002e-06,
112
+ "loss": 0.8464,
113
+ "step": 8
114
+ },
115
+ {
116
+ "Batch Mean": -2.520538330078125,
117
+ "accuracy": 0.5,
118
+ "epoch": 0.02,
119
+ "step": 8
120
+ },
121
+ {
122
+ "epoch": 0.0225,
123
+ "grad_norm": 36.41325378417969,
124
+ "learning_rate": 1.35e-06,
125
+ "loss": 0.7946,
126
+ "step": 9
127
+ },
128
+ {
129
+ "Batch Mean": -2.413787841796875,
130
+ "accuracy": 0.515625,
131
+ "epoch": 0.0225,
132
+ "step": 9
133
+ },
134
+ {
135
+ "epoch": 0.025,
136
+ "grad_norm": 31.74874496459961,
137
+ "learning_rate": 1.5e-06,
138
+ "loss": 0.7939,
139
+ "step": 10
140
+ },
141
+ {
142
+ "Batch Mean": -2.218231201171875,
143
+ "accuracy": 0.4921875,
144
+ "epoch": 0.025,
145
+ "step": 10
146
+ },
147
+ {
148
+ "epoch": 0.0275,
149
+ "grad_norm": 34.12691879272461,
150
+ "learning_rate": 1.65e-06,
151
+ "loss": 0.7505,
152
+ "step": 11
153
+ },
154
+ {
155
+ "Batch Mean": -0.2393415868282318,
156
+ "accuracy": 0.53125,
157
+ "epoch": 0.0275,
158
+ "step": 11
159
+ },
160
+ {
161
+ "epoch": 0.03,
162
+ "grad_norm": 10.481990814208984,
163
+ "learning_rate": 1.8e-06,
164
+ "loss": 0.6779,
165
+ "step": 12
166
+ },
167
+ {
168
+ "Batch Mean": 0.2733480930328369,
169
+ "accuracy": 0.5703125,
170
+ "epoch": 0.03,
171
+ "step": 12
172
+ },
173
+ {
174
+ "epoch": 0.0325,
175
+ "grad_norm": 8.39962387084961,
176
+ "learning_rate": 1.95e-06,
177
+ "loss": 0.6728,
178
+ "step": 13
179
+ },
180
+ {
181
+ "Batch Mean": 0.5041149854660034,
182
+ "accuracy": 0.671875,
183
+ "epoch": 0.0325,
184
+ "step": 13
185
+ },
186
+ {
187
+ "epoch": 0.035,
188
+ "grad_norm": 15.906760215759277,
189
+ "learning_rate": 2.1e-06,
190
+ "loss": 0.6679,
191
+ "step": 14
192
+ },
193
+ {
194
+ "Batch Mean": 0.8821840286254883,
195
+ "accuracy": 0.578125,
196
+ "epoch": 0.035,
197
+ "step": 14
198
+ },
199
+ {
200
+ "epoch": 0.0375,
201
+ "grad_norm": 19.03310775756836,
202
+ "learning_rate": 2.25e-06,
203
+ "loss": 0.7024,
204
+ "step": 15
205
+ },
206
+ {
207
+ "Batch Mean": 1.1891746520996094,
208
+ "accuracy": 0.5859375,
209
+ "epoch": 0.0375,
210
+ "step": 15
211
+ },
212
+ {
213
+ "epoch": 0.04,
214
+ "grad_norm": 20.89366340637207,
215
+ "learning_rate": 2.4000000000000003e-06,
216
+ "loss": 0.6868,
217
+ "step": 16
218
+ },
219
+ {
220
+ "Batch Mean": 2.1533203125,
221
+ "accuracy": 0.671875,
222
+ "epoch": 0.04,
223
+ "step": 16
224
+ },
225
+ {
226
+ "epoch": 0.0425,
227
+ "grad_norm": 34.633541107177734,
228
+ "learning_rate": 2.55e-06,
229
+ "loss": 0.7297,
230
+ "step": 17
231
+ },
232
+ {
233
+ "Batch Mean": 2.5652008056640625,
234
+ "accuracy": 0.6484375,
235
+ "epoch": 0.0425,
236
+ "step": 17
237
+ },
238
+ {
239
+ "epoch": 0.045,
240
+ "grad_norm": 41.46820068359375,
241
+ "learning_rate": 2.7e-06,
242
+ "loss": 0.7387,
243
+ "step": 18
244
+ },
245
+ {
246
+ "Batch Mean": 2.4411849975585938,
247
+ "accuracy": 0.75,
248
+ "epoch": 0.045,
249
+ "step": 18
250
+ },
251
+ {
252
+ "epoch": 0.0475,
253
+ "grad_norm": 42.9193000793457,
254
+ "learning_rate": 2.85e-06,
255
+ "loss": 0.6813,
256
+ "step": 19
257
+ },
258
+ {
259
+ "Batch Mean": 2.1285018920898438,
260
+ "accuracy": 0.703125,
261
+ "epoch": 0.0475,
262
+ "step": 19
263
+ },
264
+ {
265
+ "epoch": 0.05,
266
+ "grad_norm": 37.16952133178711,
267
+ "learning_rate": 3e-06,
268
+ "loss": 0.672,
269
+ "step": 20
270
+ },
271
+ {
272
+ "Batch Mean": 1.4230481386184692,
273
+ "accuracy": 0.671875,
274
+ "epoch": 0.05,
275
+ "step": 20
276
+ },
277
+ {
278
+ "epoch": 0.0525,
279
+ "grad_norm": 27.2924747467041,
280
+ "learning_rate": 2.992105263157895e-06,
281
+ "loss": 0.647,
282
+ "step": 21
283
+ },
284
+ {
285
+ "Batch Mean": 0.5414033532142639,
286
+ "accuracy": 0.6953125,
287
+ "epoch": 0.0525,
288
+ "step": 21
289
+ },
290
+ {
291
+ "epoch": 0.055,
292
+ "grad_norm": 11.927323341369629,
293
+ "learning_rate": 2.9842105263157896e-06,
294
+ "loss": 0.5981,
295
+ "step": 22
296
+ },
297
+ {
298
+ "Batch Mean": -0.36795324087142944,
299
+ "accuracy": 0.7265625,
300
+ "epoch": 0.055,
301
+ "step": 22
302
+ },
303
+ {
304
+ "epoch": 0.0575,
305
+ "grad_norm": 13.455949783325195,
306
+ "learning_rate": 2.9763157894736843e-06,
307
+ "loss": 0.5763,
308
+ "step": 23
309
+ },
310
+ {
311
+ "Batch Mean": -1.0874066352844238,
312
+ "accuracy": 0.7421875,
313
+ "epoch": 0.0575,
314
+ "step": 23
315
+ },
316
+ {
317
+ "epoch": 0.06,
318
+ "grad_norm": 22.382274627685547,
319
+ "learning_rate": 2.968421052631579e-06,
320
+ "loss": 0.5763,
321
+ "step": 24
322
+ },
323
+ {
324
+ "Batch Mean": -1.103028416633606,
325
+ "accuracy": 0.6953125,
326
+ "epoch": 0.06,
327
+ "step": 24
328
+ },
329
+ {
330
+ "epoch": 0.0625,
331
+ "grad_norm": 19.854228973388672,
332
+ "learning_rate": 2.960526315789474e-06,
333
+ "loss": 0.6065,
334
+ "step": 25
335
+ },
336
+ {
337
+ "Batch Mean": -0.8232302069664001,
338
+ "accuracy": 0.734375,
339
+ "epoch": 0.0625,
340
+ "step": 25
341
+ },
342
+ {
343
+ "epoch": 0.065,
344
+ "grad_norm": 16.642824172973633,
345
+ "learning_rate": 2.9526315789473685e-06,
346
+ "loss": 0.5282,
347
+ "step": 26
348
+ },
349
+ {
350
+ "Batch Mean": -0.11966800689697266,
351
+ "accuracy": 0.6875,
352
+ "epoch": 0.065,
353
+ "step": 26
354
+ },
355
+ {
356
+ "epoch": 0.0675,
357
+ "grad_norm": 8.563494682312012,
358
+ "learning_rate": 2.9447368421052633e-06,
359
+ "loss": 0.5348,
360
+ "step": 27
361
+ },
362
+ {
363
+ "Batch Mean": 0.5674030780792236,
364
+ "accuracy": 0.671875,
365
+ "epoch": 0.0675,
366
+ "step": 27
367
+ },
368
+ {
369
+ "epoch": 0.07,
370
+ "grad_norm": 13.211753845214844,
371
+ "learning_rate": 2.936842105263158e-06,
372
+ "loss": 0.5812,
373
+ "step": 28
374
+ },
375
+ {
376
+ "Batch Mean": 1.1245126724243164,
377
+ "accuracy": 0.6171875,
378
+ "epoch": 0.07,
379
+ "step": 28
380
+ },
381
+ {
382
+ "epoch": 0.0725,
383
+ "grad_norm": 22.8548583984375,
384
+ "learning_rate": 2.9289473684210528e-06,
385
+ "loss": 0.7336,
386
+ "step": 29
387
+ },
388
+ {
389
+ "Batch Mean": 1.2212319374084473,
390
+ "accuracy": 0.6796875,
391
+ "epoch": 0.0725,
392
+ "step": 29
393
+ },
394
+ {
395
+ "epoch": 0.075,
396
+ "grad_norm": 21.96833038330078,
397
+ "learning_rate": 2.9210526315789475e-06,
398
+ "loss": 0.6167,
399
+ "step": 30
400
+ },
401
+ {
402
+ "Batch Mean": 0.7509702444076538,
403
+ "accuracy": 0.796875,
404
+ "epoch": 0.075,
405
+ "step": 30
406
+ },
407
+ {
408
+ "epoch": 0.0775,
409
+ "grad_norm": 12.47424030303955,
410
+ "learning_rate": 2.9131578947368423e-06,
411
+ "loss": 0.463,
412
+ "step": 31
413
+ },
414
+ {
415
+ "Batch Mean": 0.2412339150905609,
416
+ "accuracy": 0.7578125,
417
+ "epoch": 0.0775,
418
+ "step": 31
419
+ },
420
+ {
421
+ "epoch": 0.08,
422
+ "grad_norm": 9.769195556640625,
423
+ "learning_rate": 2.905263157894737e-06,
424
+ "loss": 0.5412,
425
+ "step": 32
426
+ },
427
+ {
428
+ "Batch Mean": -0.5602660179138184,
429
+ "accuracy": 0.7109375,
430
+ "epoch": 0.08,
431
+ "step": 32
432
+ },
433
+ {
434
+ "epoch": 0.0825,
435
+ "grad_norm": 11.323891639709473,
436
+ "learning_rate": 2.8973684210526318e-06,
437
+ "loss": 0.5601,
438
+ "step": 33
439
+ },
440
+ {
441
+ "Batch Mean": -0.8669416904449463,
442
+ "accuracy": 0.7734375,
443
+ "epoch": 0.0825,
444
+ "step": 33
445
+ },
446
+ {
447
+ "epoch": 0.085,
448
+ "grad_norm": 15.461758613586426,
449
+ "learning_rate": 2.8894736842105265e-06,
450
+ "loss": 0.5147,
451
+ "step": 34
452
+ },
453
+ {
454
+ "Batch Mean": -0.7635477781295776,
455
+ "accuracy": 0.75,
456
+ "epoch": 0.085,
457
+ "step": 34
458
+ },
459
+ {
460
+ "epoch": 0.0875,
461
+ "grad_norm": 14.736496925354004,
462
+ "learning_rate": 2.8815789473684213e-06,
463
+ "loss": 0.5421,
464
+ "step": 35
465
+ },
466
+ {
467
+ "Batch Mean": -0.5088728070259094,
468
+ "accuracy": 0.734375,
469
+ "epoch": 0.0875,
470
+ "step": 35
471
+ },
472
+ {
473
+ "epoch": 0.09,
474
+ "grad_norm": 11.982501029968262,
475
+ "learning_rate": 2.873684210526316e-06,
476
+ "loss": 0.5234,
477
+ "step": 36
478
+ },
479
+ {
480
+ "Batch Mean": -0.03705340623855591,
481
+ "accuracy": 0.7578125,
482
+ "epoch": 0.09,
483
+ "step": 36
484
+ },
485
+ {
486
+ "epoch": 0.0925,
487
+ "grad_norm": 7.854848861694336,
488
+ "learning_rate": 2.8657894736842103e-06,
489
+ "loss": 0.4996,
490
+ "step": 37
491
+ },
492
+ {
493
+ "Batch Mean": 0.5426892042160034,
494
+ "accuracy": 0.734375,
495
+ "epoch": 0.0925,
496
+ "step": 37
497
+ },
498
+ {
499
+ "epoch": 0.095,
500
+ "grad_norm": 10.834790229797363,
501
+ "learning_rate": 2.857894736842105e-06,
502
+ "loss": 0.5187,
503
+ "step": 38
504
+ },
505
+ {
506
+ "Batch Mean": 0.4622654914855957,
507
+ "accuracy": 0.7734375,
508
+ "epoch": 0.095,
509
+ "step": 38
510
+ },
511
+ {
512
+ "epoch": 0.0975,
513
+ "grad_norm": 10.764225959777832,
514
+ "learning_rate": 2.85e-06,
515
+ "loss": 0.4723,
516
+ "step": 39
517
+ },
518
+ {
519
+ "Batch Mean": 0.18012571334838867,
520
+ "accuracy": 0.7890625,
521
+ "epoch": 0.0975,
522
+ "step": 39
523
+ },
524
+ {
525
+ "epoch": 0.1,
526
+ "grad_norm": 9.500924110412598,
527
+ "learning_rate": 2.8421052631578946e-06,
528
+ "loss": 0.4545,
529
+ "step": 40
530
+ },
531
+ {
532
+ "Batch Mean": -0.05992317199707031,
533
+ "accuracy": 0.7890625,
534
+ "epoch": 0.1,
535
+ "step": 40
536
+ },
537
+ {
538
+ "epoch": 0.1025,
539
+ "grad_norm": 8.079994201660156,
540
+ "learning_rate": 2.8342105263157897e-06,
541
+ "loss": 0.49,
542
+ "step": 41
543
+ },
544
+ {
545
+ "Batch Mean": 0.04392993450164795,
546
+ "accuracy": 0.8515625,
547
+ "epoch": 0.1025,
548
+ "step": 41
549
+ },
550
+ {
551
+ "epoch": 0.105,
552
+ "grad_norm": 10.184918403625488,
553
+ "learning_rate": 2.8263157894736845e-06,
554
+ "loss": 0.3789,
555
+ "step": 42
556
+ },
557
+ {
558
+ "Batch Mean": -0.2515716552734375,
559
+ "accuracy": 0.8046875,
560
+ "epoch": 0.105,
561
+ "step": 42
562
+ },
563
+ {
564
+ "epoch": 0.1075,
565
+ "grad_norm": 9.894248008728027,
566
+ "learning_rate": 2.8184210526315792e-06,
567
+ "loss": 0.435,
568
+ "step": 43
569
+ },
570
+ {
571
+ "Batch Mean": 0.15310335159301758,
572
+ "accuracy": 0.7734375,
573
+ "epoch": 0.1075,
574
+ "step": 43
575
+ },
576
+ {
577
+ "epoch": 0.11,
578
+ "grad_norm": 10.671575546264648,
579
+ "learning_rate": 2.810526315789474e-06,
580
+ "loss": 0.4291,
581
+ "step": 44
582
+ },
583
+ {
584
+ "Batch Mean": 0.2563772201538086,
585
+ "accuracy": 0.765625,
586
+ "epoch": 0.11,
587
+ "step": 44
588
+ },
589
+ {
590
+ "epoch": 0.1125,
591
+ "grad_norm": 10.690945625305176,
592
+ "learning_rate": 2.8026315789473687e-06,
593
+ "loss": 0.4812,
594
+ "step": 45
595
+ },
596
+ {
597
+ "Batch Mean": 0.046463966369628906,
598
+ "accuracy": 0.875,
599
+ "epoch": 0.1125,
600
+ "step": 45
601
+ },
602
+ {
603
+ "epoch": 0.115,
604
+ "grad_norm": 9.616545677185059,
605
+ "learning_rate": 2.7947368421052635e-06,
606
+ "loss": 0.3082,
607
+ "step": 46
608
+ },
609
+ {
610
+ "Batch Mean": 0.11115455627441406,
611
+ "accuracy": 0.75,
612
+ "epoch": 0.115,
613
+ "step": 46
614
+ },
615
+ {
616
+ "epoch": 0.1175,
617
+ "grad_norm": 15.726456642150879,
618
+ "learning_rate": 2.7868421052631578e-06,
619
+ "loss": 0.5576,
620
+ "step": 47
621
+ },
622
+ {
623
+ "Batch Mean": 0.2878689765930176,
624
+ "accuracy": 0.8125,
625
+ "epoch": 0.1175,
626
+ "step": 47
627
+ },
628
+ {
629
+ "epoch": 0.12,
630
+ "grad_norm": 11.675898551940918,
631
+ "learning_rate": 2.7789473684210525e-06,
632
+ "loss": 0.472,
633
+ "step": 48
634
+ },
635
+ {
636
+ "Batch Mean": -0.25928783416748047,
637
+ "accuracy": 0.75,
638
+ "epoch": 0.12,
639
+ "step": 48
640
+ },
641
+ {
642
+ "epoch": 0.1225,
643
+ "grad_norm": 15.394309997558594,
644
+ "learning_rate": 2.7710526315789473e-06,
645
+ "loss": 0.5011,
646
+ "step": 49
647
+ },
648
+ {
649
+ "Batch Mean": -0.2885439097881317,
650
+ "accuracy": 0.703125,
651
+ "epoch": 0.1225,
652
+ "step": 49
653
+ },
654
+ {
655
+ "epoch": 0.125,
656
+ "grad_norm": 15.69314956665039,
657
+ "learning_rate": 2.763157894736842e-06,
658
+ "loss": 0.5974,
659
+ "step": 50
660
+ },
661
+ {
662
+ "Batch Mean": -0.8389434814453125,
663
+ "accuracy": 0.8046875,
664
+ "epoch": 0.125,
665
+ "step": 50
666
+ },
667
+ {
668
+ "epoch": 0.1275,
669
+ "grad_norm": 16.744606018066406,
670
+ "learning_rate": 2.7552631578947368e-06,
671
+ "loss": 0.5151,
672
+ "step": 51
673
+ },
674
+ {
675
+ "Batch Mean": -0.6685854196548462,
676
+ "accuracy": 0.703125,
677
+ "epoch": 0.1275,
678
+ "step": 51
679
+ },
680
+ {
681
+ "epoch": 0.13,
682
+ "grad_norm": 15.530059814453125,
683
+ "learning_rate": 2.7473684210526315e-06,
684
+ "loss": 0.5502,
685
+ "step": 52
686
+ },
687
+ {
688
+ "Batch Mean": -0.5919044017791748,
689
+ "accuracy": 0.71875,
690
+ "epoch": 0.13,
691
+ "step": 52
692
+ },
693
+ {
694
+ "epoch": 0.1325,
695
+ "grad_norm": 15.14562702178955,
696
+ "learning_rate": 2.7394736842105263e-06,
697
+ "loss": 0.5305,
698
+ "step": 53
699
+ },
700
+ {
701
+ "Batch Mean": -0.11876988410949707,
702
+ "accuracy": 0.75,
703
+ "epoch": 0.1325,
704
+ "step": 53
705
+ },
706
+ {
707
+ "epoch": 0.135,
708
+ "grad_norm": 7.011972427368164,
709
+ "learning_rate": 2.7315789473684214e-06,
710
+ "loss": 0.4802,
711
+ "step": 54
712
+ },
713
+ {
714
+ "Batch Mean": 0.09675300121307373,
715
+ "accuracy": 0.7578125,
716
+ "epoch": 0.135,
717
+ "step": 54
718
+ },
719
+ {
720
+ "epoch": 0.1375,
721
+ "grad_norm": 8.37578010559082,
722
+ "learning_rate": 2.723684210526316e-06,
723
+ "loss": 0.4354,
724
+ "step": 55
725
+ },
726
+ {
727
+ "Batch Mean": 0.3877286911010742,
728
+ "accuracy": 0.8046875,
729
+ "epoch": 0.1375,
730
+ "step": 55
731
+ },
732
+ {
733
+ "epoch": 0.14,
734
+ "grad_norm": 8.380095481872559,
735
+ "learning_rate": 2.715789473684211e-06,
736
+ "loss": 0.4114,
737
+ "step": 56
738
+ },
739
+ {
740
+ "Batch Mean": 0.7472854852676392,
741
+ "accuracy": 0.8046875,
742
+ "epoch": 0.14,
743
+ "step": 56
744
+ },
745
+ {
746
+ "epoch": 0.1425,
747
+ "grad_norm": 12.794017791748047,
748
+ "learning_rate": 2.7078947368421052e-06,
749
+ "loss": 0.465,
750
+ "step": 57
751
+ },
752
+ {
753
+ "Batch Mean": 0.5131087303161621,
754
+ "accuracy": 0.8046875,
755
+ "epoch": 0.1425,
756
+ "step": 57
757
+ },
758
+ {
759
+ "epoch": 0.145,
760
+ "grad_norm": 8.367005348205566,
761
+ "learning_rate": 2.7e-06,
762
+ "loss": 0.4407,
763
+ "step": 58
764
+ },
765
+ {
766
+ "Batch Mean": 0.5741372108459473,
767
+ "accuracy": 0.8515625,
768
+ "epoch": 0.145,
769
+ "step": 58
770
+ },
771
+ {
772
+ "epoch": 0.1475,
773
+ "grad_norm": 9.066951751708984,
774
+ "learning_rate": 2.6921052631578947e-06,
775
+ "loss": 0.4468,
776
+ "step": 59
777
+ },
778
+ {
779
+ "Batch Mean": 0.169053316116333,
780
+ "accuracy": 0.734375,
781
+ "epoch": 0.1475,
782
+ "step": 59
783
+ },
784
+ {
785
+ "epoch": 0.15,
786
+ "grad_norm": 6.888144016265869,
787
+ "learning_rate": 2.6842105263157895e-06,
788
+ "loss": 0.4849,
789
+ "step": 60
790
+ },
791
+ {
792
+ "Batch Mean": -0.18010663986206055,
793
+ "accuracy": 0.765625,
794
+ "epoch": 0.15,
795
+ "step": 60
796
+ },
797
+ {
798
+ "epoch": 0.1525,
799
+ "grad_norm": 6.846613883972168,
800
+ "learning_rate": 2.6763157894736842e-06,
801
+ "loss": 0.4643,
802
+ "step": 61
803
+ },
804
+ {
805
+ "Batch Mean": -0.4085197448730469,
806
+ "accuracy": 0.8359375,
807
+ "epoch": 0.1525,
808
+ "step": 61
809
+ },
810
+ {
811
+ "epoch": 0.155,
812
+ "grad_norm": 7.677695274353027,
813
+ "learning_rate": 2.668421052631579e-06,
814
+ "loss": 0.3926,
815
+ "step": 62
816
+ },
817
+ {
818
+ "Batch Mean": -0.48792409896850586,
819
+ "accuracy": 0.828125,
820
+ "epoch": 0.155,
821
+ "step": 62
822
+ },
823
+ {
824
+ "epoch": 0.1575,
825
+ "grad_norm": 8.656214714050293,
826
+ "learning_rate": 2.6605263157894737e-06,
827
+ "loss": 0.4116,
828
+ "step": 63
829
+ },
830
+ {
831
+ "Batch Mean": -0.19100165367126465,
832
+ "accuracy": 0.7734375,
833
+ "epoch": 0.1575,
834
+ "step": 63
835
+ },
836
+ {
837
+ "epoch": 0.16,
838
+ "grad_norm": 9.927976608276367,
839
+ "learning_rate": 2.6526315789473685e-06,
840
+ "loss": 0.4395,
841
+ "step": 64
842
+ },
843
+ {
844
+ "Batch Mean": 0.025106430053710938,
845
+ "accuracy": 0.8046875,
846
+ "epoch": 0.16,
847
+ "step": 64
848
+ },
849
+ {
850
+ "epoch": 0.1625,
851
+ "grad_norm": 8.97470474243164,
852
+ "learning_rate": 2.644736842105263e-06,
853
+ "loss": 0.4632,
854
+ "step": 65
855
+ },
856
+ {
857
+ "Batch Mean": 0.4497801661491394,
858
+ "accuracy": 0.796875,
859
+ "epoch": 0.1625,
860
+ "step": 65
861
+ },
862
+ {
863
+ "epoch": 0.165,
864
+ "grad_norm": 11.160425186157227,
865
+ "learning_rate": 2.636842105263158e-06,
866
+ "loss": 0.5073,
867
+ "step": 66
868
+ },
869
+ {
870
+ "Batch Mean": 0.6494235992431641,
871
+ "accuracy": 0.8203125,
872
+ "epoch": 0.165,
873
+ "step": 66
874
+ },
875
+ {
876
+ "epoch": 0.1675,
877
+ "grad_norm": 11.464187622070312,
878
+ "learning_rate": 2.6289473684210527e-06,
879
+ "loss": 0.4467,
880
+ "step": 67
881
+ },
882
+ {
883
+ "Batch Mean": -0.17097759246826172,
884
+ "accuracy": 0.828125,
885
+ "epoch": 0.1675,
886
+ "step": 67
887
+ },
888
+ {
889
+ "epoch": 0.17,
890
+ "grad_norm": 8.820326805114746,
891
+ "learning_rate": 2.6210526315789474e-06,
892
+ "loss": 0.4543,
893
+ "step": 68
894
+ },
895
+ {
896
+ "Batch Mean": -0.1554449200630188,
897
+ "accuracy": 0.8046875,
898
+ "epoch": 0.17,
899
+ "step": 68
900
+ },
901
+ {
902
+ "epoch": 0.1725,
903
+ "grad_norm": 9.248348236083984,
904
+ "learning_rate": 2.613157894736842e-06,
905
+ "loss": 0.3796,
906
+ "step": 69
907
+ },
908
+ {
909
+ "Batch Mean": -0.21274375915527344,
910
+ "accuracy": 0.75,
911
+ "epoch": 0.1725,
912
+ "step": 69
913
+ },
914
+ {
915
+ "epoch": 0.175,
916
+ "grad_norm": 8.15241813659668,
917
+ "learning_rate": 2.605263157894737e-06,
918
+ "loss": 0.4445,
919
+ "step": 70
920
+ },
921
+ {
922
+ "Batch Mean": -0.06371593475341797,
923
+ "accuracy": 0.765625,
924
+ "epoch": 0.175,
925
+ "step": 70
926
+ },
927
+ {
928
+ "epoch": 0.1775,
929
+ "grad_norm": 6.543805122375488,
930
+ "learning_rate": 2.5973684210526317e-06,
931
+ "loss": 0.4376,
932
+ "step": 71
933
+ },
934
+ {
935
+ "Batch Mean": -0.10743597149848938,
936
+ "accuracy": 0.7265625,
937
+ "epoch": 0.1775,
938
+ "step": 71
939
+ },
940
+ {
941
+ "epoch": 0.18,
942
+ "grad_norm": 7.594844341278076,
943
+ "learning_rate": 2.5894736842105264e-06,
944
+ "loss": 0.4363,
945
+ "step": 72
946
+ },
947
+ {
948
+ "Batch Mean": 0.08045387268066406,
949
+ "accuracy": 0.84375,
950
+ "epoch": 0.18,
951
+ "step": 72
952
+ },
953
+ {
954
+ "epoch": 0.1825,
955
+ "grad_norm": 7.977687835693359,
956
+ "learning_rate": 2.581578947368421e-06,
957
+ "loss": 0.3616,
958
+ "step": 73
959
+ },
960
+ {
961
+ "Batch Mean": -0.11765336990356445,
962
+ "accuracy": 0.796875,
963
+ "epoch": 0.1825,
964
+ "step": 73
965
+ },
966
+ {
967
+ "epoch": 0.185,
968
+ "grad_norm": 6.521571636199951,
969
+ "learning_rate": 2.573684210526316e-06,
970
+ "loss": 0.4001,
971
+ "step": 74
972
+ },
973
+ {
974
+ "Batch Mean": 0.0607762336730957,
975
+ "accuracy": 0.703125,
976
+ "epoch": 0.185,
977
+ "step": 74
978
+ },
979
+ {
980
+ "epoch": 0.1875,
981
+ "grad_norm": 8.15623950958252,
982
+ "learning_rate": 2.5657894736842107e-06,
983
+ "loss": 0.4941,
984
+ "step": 75
985
+ },
986
+ {
987
+ "Batch Mean": 0.4910193681716919,
988
+ "accuracy": 0.8046875,
989
+ "epoch": 0.1875,
990
+ "step": 75
991
+ },
992
+ {
993
+ "epoch": 0.19,
994
+ "grad_norm": 9.602405548095703,
995
+ "learning_rate": 2.5578947368421054e-06,
996
+ "loss": 0.4224,
997
+ "step": 76
998
+ },
999
+ {
1000
+ "Batch Mean": 0.06563162803649902,
1001
+ "accuracy": 0.8046875,
1002
+ "epoch": 0.19,
1003
+ "step": 76
1004
+ },
1005
+ {
1006
+ "epoch": 0.1925,
1007
+ "grad_norm": 6.577213764190674,
1008
+ "learning_rate": 2.55e-06,
1009
+ "loss": 0.4047,
1010
+ "step": 77
1011
+ },
1012
+ {
1013
+ "Batch Mean": -0.08942317962646484,
1014
+ "accuracy": 0.8046875,
1015
+ "epoch": 0.1925,
1016
+ "step": 77
1017
+ },
1018
+ {
1019
+ "epoch": 0.195,
1020
+ "grad_norm": 16.202590942382812,
1021
+ "learning_rate": 2.542105263157895e-06,
1022
+ "loss": 0.4418,
1023
+ "step": 78
1024
+ },
1025
+ {
1026
+ "Batch Mean": -0.37958288192749023,
1027
+ "accuracy": 0.8125,
1028
+ "epoch": 0.195,
1029
+ "step": 78
1030
+ },
1031
+ {
1032
+ "epoch": 0.1975,
1033
+ "grad_norm": 23.45298194885254,
1034
+ "learning_rate": 2.5342105263157892e-06,
1035
+ "loss": 0.391,
1036
+ "step": 79
1037
+ },
1038
+ {
1039
+ "Batch Mean": -0.5664916038513184,
1040
+ "accuracy": 0.8125,
1041
+ "epoch": 0.1975,
1042
+ "step": 79
1043
+ },
1044
+ {
1045
+ "epoch": 0.2,
1046
+ "grad_norm": 10.679176330566406,
1047
+ "learning_rate": 2.526315789473684e-06,
1048
+ "loss": 0.4402,
1049
+ "step": 80
1050
+ },
1051
+ {
1052
+ "Batch Mean": -0.31339550018310547,
1053
+ "accuracy": 0.8359375,
1054
+ "epoch": 0.2,
1055
+ "step": 80
1056
+ },
1057
+ {
1058
+ "epoch": 0.2025,
1059
+ "grad_norm": 16.459426879882812,
1060
+ "learning_rate": 2.5184210526315787e-06,
1061
+ "loss": 0.3765,
1062
+ "step": 81
1063
+ },
1064
+ {
1065
+ "Batch Mean": 0.20376300811767578,
1066
+ "accuracy": 0.78125,
1067
+ "epoch": 0.2025,
1068
+ "step": 81
1069
+ },
1070
+ {
1071
+ "epoch": 0.205,
1072
+ "grad_norm": 8.887246131896973,
1073
+ "learning_rate": 2.510526315789474e-06,
1074
+ "loss": 0.4509,
1075
+ "step": 82
1076
+ },
1077
+ {
1078
+ "Batch Mean": -0.054105013608932495,
1079
+ "accuracy": 0.796875,
1080
+ "epoch": 0.205,
1081
+ "step": 82
1082
+ },
1083
+ {
1084
+ "epoch": 0.2075,
1085
+ "grad_norm": 8.116570472717285,
1086
+ "learning_rate": 2.5026315789473686e-06,
1087
+ "loss": 0.3906,
1088
+ "step": 83
1089
+ },
1090
+ {
1091
+ "Batch Mean": 0.4383058547973633,
1092
+ "accuracy": 0.875,
1093
+ "epoch": 0.2075,
1094
+ "step": 83
1095
+ },
1096
+ {
1097
+ "epoch": 0.21,
1098
+ "grad_norm": 9.300606727600098,
1099
+ "learning_rate": 2.4947368421052634e-06,
1100
+ "loss": 0.3099,
1101
+ "step": 84
1102
+ },
1103
+ {
1104
+ "Batch Mean": 0.4242062568664551,
1105
+ "accuracy": 0.7890625,
1106
+ "epoch": 0.21,
1107
+ "step": 84
1108
+ },
1109
+ {
1110
+ "epoch": 0.2125,
1111
+ "grad_norm": 8.7870512008667,
1112
+ "learning_rate": 2.486842105263158e-06,
1113
+ "loss": 0.3996,
1114
+ "step": 85
1115
+ },
1116
+ {
1117
+ "Batch Mean": 0.22194945812225342,
1118
+ "accuracy": 0.78125,
1119
+ "epoch": 0.2125,
1120
+ "step": 85
1121
+ },
1122
+ {
1123
+ "epoch": 0.215,
1124
+ "grad_norm": 8.691889762878418,
1125
+ "learning_rate": 2.478947368421053e-06,
1126
+ "loss": 0.4512,
1127
+ "step": 86
1128
+ },
1129
+ {
1130
+ "Batch Mean": -0.14107918739318848,
1131
+ "accuracy": 0.8359375,
1132
+ "epoch": 0.215,
1133
+ "step": 86
1134
+ },
1135
+ {
1136
+ "epoch": 0.2175,
1137
+ "grad_norm": 7.0445146560668945,
1138
+ "learning_rate": 2.4710526315789476e-06,
1139
+ "loss": 0.3771,
1140
+ "step": 87
1141
+ },
1142
+ {
1143
+ "Batch Mean": -0.35906583070755005,
1144
+ "accuracy": 0.765625,
1145
+ "epoch": 0.2175,
1146
+ "step": 87
1147
+ },
1148
+ {
1149
+ "epoch": 0.22,
1150
+ "grad_norm": 9.609421730041504,
1151
+ "learning_rate": 2.4631578947368424e-06,
1152
+ "loss": 0.4558,
1153
+ "step": 88
1154
+ },
1155
+ {
1156
+ "Batch Mean": -0.45313501358032227,
1157
+ "accuracy": 0.828125,
1158
+ "epoch": 0.22,
1159
+ "step": 88
1160
+ },
1161
+ {
1162
+ "epoch": 0.2225,
1163
+ "grad_norm": 9.091865539550781,
1164
+ "learning_rate": 2.4552631578947367e-06,
1165
+ "loss": 0.4292,
1166
+ "step": 89
1167
+ },
1168
+ {
1169
+ "Batch Mean": -0.35767626762390137,
1170
+ "accuracy": 0.8359375,
1171
+ "epoch": 0.2225,
1172
+ "step": 89
1173
+ },
1174
+ {
1175
+ "epoch": 0.225,
1176
+ "grad_norm": 7.811399459838867,
1177
+ "learning_rate": 2.4473684210526314e-06,
1178
+ "loss": 0.3823,
1179
+ "step": 90
1180
+ },
1181
+ {
1182
+ "Batch Mean": 0.0022423267364501953,
1183
+ "accuracy": 0.8046875,
1184
+ "epoch": 0.225,
1185
+ "step": 90
1186
+ },
1187
+ {
1188
+ "epoch": 0.2275,
1189
+ "grad_norm": 7.804200172424316,
1190
+ "learning_rate": 2.439473684210526e-06,
1191
+ "loss": 0.4079,
1192
+ "step": 91
1193
+ },
1194
+ {
1195
+ "Batch Mean": 0.17678523063659668,
1196
+ "accuracy": 0.8046875,
1197
+ "epoch": 0.2275,
1198
+ "step": 91
1199
+ },
1200
+ {
1201
+ "epoch": 0.23,
1202
+ "grad_norm": 7.715360641479492,
1203
+ "learning_rate": 2.431578947368421e-06,
1204
+ "loss": 0.391,
1205
+ "step": 92
1206
+ },
1207
+ {
1208
+ "Batch Mean": -0.22452354431152344,
1209
+ "accuracy": 0.8203125,
1210
+ "epoch": 0.23,
1211
+ "step": 92
1212
+ },
1213
+ {
1214
+ "epoch": 0.2325,
1215
+ "grad_norm": 7.197687149047852,
1216
+ "learning_rate": 2.4236842105263157e-06,
1217
+ "loss": 0.3864,
1218
+ "step": 93
1219
+ },
1220
+ {
1221
+ "Batch Mean": 0.30264759063720703,
1222
+ "accuracy": 0.84375,
1223
+ "epoch": 0.2325,
1224
+ "step": 93
1225
+ },
1226
+ {
1227
+ "epoch": 0.235,
1228
+ "grad_norm": 7.754411697387695,
1229
+ "learning_rate": 2.4157894736842104e-06,
1230
+ "loss": 0.3939,
1231
+ "step": 94
1232
+ },
1233
+ {
1234
+ "Batch Mean": -0.2516747713088989,
1235
+ "accuracy": 0.7890625,
1236
+ "epoch": 0.235,
1237
+ "step": 94
1238
+ },
1239
+ {
1240
+ "epoch": 0.2375,
1241
+ "grad_norm": 8.55639362335205,
1242
+ "learning_rate": 2.4078947368421056e-06,
1243
+ "loss": 0.4671,
1244
+ "step": 95
1245
+ },
1246
+ {
1247
+ "Batch Mean": -0.15928316116333008,
1248
+ "accuracy": 0.8046875,
1249
+ "epoch": 0.2375,
1250
+ "step": 95
1251
+ },
1252
+ {
1253
+ "epoch": 0.24,
1254
+ "grad_norm": 7.463867664337158,
1255
+ "learning_rate": 2.4000000000000003e-06,
1256
+ "loss": 0.471,
1257
+ "step": 96
1258
+ },
1259
+ {
1260
+ "Batch Mean": -0.0638132095336914,
1261
+ "accuracy": 0.8125,
1262
+ "epoch": 0.24,
1263
+ "step": 96
1264
+ },
1265
+ {
1266
+ "epoch": 0.2425,
1267
+ "grad_norm": 6.797260761260986,
1268
+ "learning_rate": 2.392105263157895e-06,
1269
+ "loss": 0.3892,
1270
+ "step": 97
1271
+ },
1272
+ {
1273
+ "Batch Mean": -0.08082282543182373,
1274
+ "accuracy": 0.8203125,
1275
+ "epoch": 0.2425,
1276
+ "step": 97
1277
+ },
1278
+ {
1279
+ "epoch": 0.245,
1280
+ "grad_norm": 7.096107482910156,
1281
+ "learning_rate": 2.38421052631579e-06,
1282
+ "loss": 0.3942,
1283
+ "step": 98
1284
+ },
1285
+ {
1286
+ "Batch Mean": 0.3185189962387085,
1287
+ "accuracy": 0.796875,
1288
+ "epoch": 0.245,
1289
+ "step": 98
1290
+ },
1291
+ {
1292
+ "epoch": 0.2475,
1293
+ "grad_norm": 9.447708129882812,
1294
+ "learning_rate": 2.376315789473684e-06,
1295
+ "loss": 0.5037,
1296
+ "step": 99
1297
+ },
1298
+ {
1299
+ "Batch Mean": 0.26651012897491455,
1300
+ "accuracy": 0.890625,
1301
+ "epoch": 0.2475,
1302
+ "step": 99
1303
+ },
1304
+ {
1305
+ "epoch": 0.25,
1306
+ "grad_norm": 9.391190528869629,
1307
+ "learning_rate": 2.368421052631579e-06,
1308
+ "loss": 0.3352,
1309
+ "step": 100
1310
+ },
1311
+ {
1312
+ "Batch Mean": -0.0040132105350494385,
1313
+ "accuracy": 0.7578125,
1314
+ "epoch": 0.25,
1315
+ "step": 100
1316
+ },
1317
+ {
1318
+ "epoch": 0.2525,
1319
+ "grad_norm": 7.999260425567627,
1320
+ "learning_rate": 2.3605263157894736e-06,
1321
+ "loss": 0.4583,
1322
+ "step": 101
1323
+ },
1324
+ {
1325
+ "Batch Mean": 0.13753342628479004,
1326
+ "accuracy": 0.8125,
1327
+ "epoch": 0.2525,
1328
+ "step": 101
1329
+ },
1330
+ {
1331
+ "epoch": 0.255,
1332
+ "grad_norm": 7.398046493530273,
1333
+ "learning_rate": 2.3526315789473684e-06,
1334
+ "loss": 0.3847,
1335
+ "step": 102
1336
+ },
1337
+ {
1338
+ "Batch Mean": 0.15256333351135254,
1339
+ "accuracy": 0.8671875,
1340
+ "epoch": 0.255,
1341
+ "step": 102
1342
+ },
1343
+ {
1344
+ "epoch": 0.2575,
1345
+ "grad_norm": 7.636544227600098,
1346
+ "learning_rate": 2.344736842105263e-06,
1347
+ "loss": 0.332,
1348
+ "step": 103
1349
+ },
1350
+ {
1351
+ "Batch Mean": -0.2140512466430664,
1352
+ "accuracy": 0.75,
1353
+ "epoch": 0.2575,
1354
+ "step": 103
1355
+ },
1356
+ {
1357
+ "epoch": 0.26,
1358
+ "grad_norm": 8.101052284240723,
1359
+ "learning_rate": 2.336842105263158e-06,
1360
+ "loss": 0.4434,
1361
+ "step": 104
1362
+ },
1363
+ {
1364
+ "Batch Mean": -0.2993035316467285,
1365
+ "accuracy": 0.8359375,
1366
+ "epoch": 0.26,
1367
+ "step": 104
1368
+ },
1369
+ {
1370
+ "epoch": 0.2625,
1371
+ "grad_norm": 7.990828514099121,
1372
+ "learning_rate": 2.3289473684210526e-06,
1373
+ "loss": 0.3701,
1374
+ "step": 105
1375
+ },
1376
+ {
1377
+ "Batch Mean": -0.0038167238235473633,
1378
+ "accuracy": 0.796875,
1379
+ "epoch": 0.2625,
1380
+ "step": 105
1381
+ },
1382
+ {
1383
+ "epoch": 0.265,
1384
+ "grad_norm": 6.86246919631958,
1385
+ "learning_rate": 2.3210526315789473e-06,
1386
+ "loss": 0.3546,
1387
+ "step": 106
1388
+ },
1389
+ {
1390
+ "Batch Mean": 0.4233437776565552,
1391
+ "accuracy": 0.796875,
1392
+ "epoch": 0.265,
1393
+ "step": 106
1394
+ },
1395
+ {
1396
+ "epoch": 0.2675,
1397
+ "grad_norm": 9.27191162109375,
1398
+ "learning_rate": 2.313157894736842e-06,
1399
+ "loss": 0.414,
1400
+ "step": 107
1401
+ },
1402
+ {
1403
+ "Batch Mean": 0.5853117108345032,
1404
+ "accuracy": 0.8046875,
1405
+ "epoch": 0.2675,
1406
+ "step": 107
1407
+ },
1408
+ {
1409
+ "epoch": 0.27,
1410
+ "grad_norm": 12.894753456115723,
1411
+ "learning_rate": 2.305263157894737e-06,
1412
+ "loss": 0.4258,
1413
+ "step": 108
1414
+ },
1415
+ {
1416
+ "Batch Mean": 0.07786870002746582,
1417
+ "accuracy": 0.8203125,
1418
+ "epoch": 0.27,
1419
+ "step": 108
1420
+ },
1421
+ {
1422
+ "epoch": 0.2725,
1423
+ "grad_norm": 10.551774024963379,
1424
+ "learning_rate": 2.2973684210526316e-06,
1425
+ "loss": 0.455,
1426
+ "step": 109
1427
+ },
1428
+ {
1429
+ "Batch Mean": 0.003017425537109375,
1430
+ "accuracy": 0.8515625,
1431
+ "epoch": 0.2725,
1432
+ "step": 109
1433
+ },
1434
+ {
1435
+ "epoch": 0.275,
1436
+ "grad_norm": 8.059015274047852,
1437
+ "learning_rate": 2.2894736842105263e-06,
1438
+ "loss": 0.3559,
1439
+ "step": 110
1440
+ },
1441
+ {
1442
+ "Batch Mean": 0.08839225769042969,
1443
+ "accuracy": 0.859375,
1444
+ "epoch": 0.275,
1445
+ "step": 110
1446
+ },
1447
+ {
1448
+ "epoch": 0.2775,
1449
+ "grad_norm": 7.2062530517578125,
1450
+ "learning_rate": 2.281578947368421e-06,
1451
+ "loss": 0.2765,
1452
+ "step": 111
1453
+ },
1454
+ {
1455
+ "Batch Mean": -0.4452195167541504,
1456
+ "accuracy": 0.890625,
1457
+ "epoch": 0.2775,
1458
+ "step": 111
1459
+ },
1460
+ {
1461
+ "epoch": 0.28,
1462
+ "grad_norm": 9.328097343444824,
1463
+ "learning_rate": 2.273684210526316e-06,
1464
+ "loss": 0.2535,
1465
+ "step": 112
1466
+ },
1467
+ {
1468
+ "Batch Mean": -0.2987861633300781,
1469
+ "accuracy": 0.828125,
1470
+ "epoch": 0.28,
1471
+ "step": 112
1472
+ },
1473
+ {
1474
+ "epoch": 0.2825,
1475
+ "grad_norm": 10.32376766204834,
1476
+ "learning_rate": 2.2657894736842106e-06,
1477
+ "loss": 0.4152,
1478
+ "step": 113
1479
+ },
1480
+ {
1481
+ "Batch Mean": -0.05189800262451172,
1482
+ "accuracy": 0.875,
1483
+ "epoch": 0.2825,
1484
+ "step": 113
1485
+ },
1486
+ {
1487
+ "epoch": 0.285,
1488
+ "grad_norm": 7.734317779541016,
1489
+ "learning_rate": 2.2578947368421053e-06,
1490
+ "loss": 0.2874,
1491
+ "step": 114
1492
+ },
1493
+ {
1494
+ "Batch Mean": 0.8154248595237732,
1495
+ "accuracy": 0.7578125,
1496
+ "epoch": 0.285,
1497
+ "step": 114
1498
+ },
1499
+ {
1500
+ "epoch": 0.2875,
1501
+ "grad_norm": 16.42246437072754,
1502
+ "learning_rate": 2.25e-06,
1503
+ "loss": 0.517,
1504
+ "step": 115
1505
+ },
1506
+ {
1507
+ "Batch Mean": 0.2764568328857422,
1508
+ "accuracy": 0.8203125,
1509
+ "epoch": 0.2875,
1510
+ "step": 115
1511
+ },
1512
+ {
1513
+ "epoch": 0.29,
1514
+ "grad_norm": 10.174060821533203,
1515
+ "learning_rate": 2.242105263157895e-06,
1516
+ "loss": 0.3843,
1517
+ "step": 116
1518
+ },
1519
+ {
1520
+ "Batch Mean": -0.10035037994384766,
1521
+ "accuracy": 0.84375,
1522
+ "epoch": 0.29,
1523
+ "step": 116
1524
+ },
1525
+ {
1526
+ "epoch": 0.2925,
1527
+ "grad_norm": 7.6288161277771,
1528
+ "learning_rate": 2.2342105263157895e-06,
1529
+ "loss": 0.3509,
1530
+ "step": 117
1531
+ },
1532
+ {
1533
+ "Batch Mean": -0.22602462768554688,
1534
+ "accuracy": 0.84375,
1535
+ "epoch": 0.2925,
1536
+ "step": 117
1537
+ },
1538
+ {
1539
+ "epoch": 0.295,
1540
+ "grad_norm": 8.613261222839355,
1541
+ "learning_rate": 2.2263157894736843e-06,
1542
+ "loss": 0.3731,
1543
+ "step": 118
1544
+ },
1545
+ {
1546
+ "Batch Mean": -0.09805738925933838,
1547
+ "accuracy": 0.7265625,
1548
+ "epoch": 0.295,
1549
+ "step": 118
1550
+ },
1551
+ {
1552
+ "epoch": 0.2975,
1553
+ "grad_norm": 10.688722610473633,
1554
+ "learning_rate": 2.218421052631579e-06,
1555
+ "loss": 0.4856,
1556
+ "step": 119
1557
+ },
1558
+ {
1559
+ "Batch Mean": -0.21628332138061523,
1560
+ "accuracy": 0.8125,
1561
+ "epoch": 0.2975,
1562
+ "step": 119
1563
+ },
1564
+ {
1565
+ "epoch": 0.3,
1566
+ "grad_norm": 7.811151027679443,
1567
+ "learning_rate": 2.2105263157894738e-06,
1568
+ "loss": 0.3613,
1569
+ "step": 120
1570
+ },
1571
+ {
1572
+ "Batch Mean": -0.4057881832122803,
1573
+ "accuracy": 0.796875,
1574
+ "epoch": 0.3,
1575
+ "step": 120
1576
+ },
1577
+ {
1578
+ "epoch": 0.3025,
1579
+ "grad_norm": 8.88042163848877,
1580
+ "learning_rate": 2.2026315789473685e-06,
1581
+ "loss": 0.3821,
1582
+ "step": 121
1583
+ },
1584
+ {
1585
+ "Batch Mean": -0.3958141803741455,
1586
+ "accuracy": 0.84375,
1587
+ "epoch": 0.3025,
1588
+ "step": 121
1589
+ },
1590
+ {
1591
+ "epoch": 0.305,
1592
+ "grad_norm": 8.513867378234863,
1593
+ "learning_rate": 2.1947368421052633e-06,
1594
+ "loss": 0.3592,
1595
+ "step": 122
1596
+ },
1597
+ {
1598
+ "Batch Mean": 0.11790943145751953,
1599
+ "accuracy": 0.8671875,
1600
+ "epoch": 0.305,
1601
+ "step": 122
1602
+ },
1603
+ {
1604
+ "epoch": 0.3075,
1605
+ "grad_norm": 6.011488437652588,
1606
+ "learning_rate": 2.186842105263158e-06,
1607
+ "loss": 0.3249,
1608
+ "step": 123
1609
+ },
1610
+ {
1611
+ "Batch Mean": 0.7885537147521973,
1612
+ "accuracy": 0.84375,
1613
+ "epoch": 0.3075,
1614
+ "step": 123
1615
+ },
1616
+ {
1617
+ "epoch": 0.31,
1618
+ "grad_norm": 13.359249114990234,
1619
+ "learning_rate": 2.1789473684210528e-06,
1620
+ "loss": 0.3776,
1621
+ "step": 124
1622
+ },
1623
+ {
1624
+ "Batch Mean": 0.906917929649353,
1625
+ "accuracy": 0.8125,
1626
+ "epoch": 0.31,
1627
+ "step": 124
1628
+ },
1629
+ {
1630
+ "epoch": 0.3125,
1631
+ "grad_norm": 13.69727897644043,
1632
+ "learning_rate": 2.1710526315789475e-06,
1633
+ "loss": 0.4525,
1634
+ "step": 125
1635
+ },
1636
+ {
1637
+ "Batch Mean": 0.7685656547546387,
1638
+ "accuracy": 0.8046875,
1639
+ "epoch": 0.3125,
1640
+ "step": 125
1641
+ },
1642
+ {
1643
+ "epoch": 0.315,
1644
+ "grad_norm": 13.353426933288574,
1645
+ "learning_rate": 2.1631578947368423e-06,
1646
+ "loss": 0.3873,
1647
+ "step": 126
1648
+ },
1649
+ {
1650
+ "Batch Mean": 0.31209874153137207,
1651
+ "accuracy": 0.8515625,
1652
+ "epoch": 0.315,
1653
+ "step": 126
1654
+ },
1655
+ {
1656
+ "epoch": 0.3175,
1657
+ "grad_norm": 8.501708030700684,
1658
+ "learning_rate": 2.155263157894737e-06,
1659
+ "loss": 0.3643,
1660
+ "step": 127
1661
+ },
1662
+ {
1663
+ "Batch Mean": -0.0774112343788147,
1664
+ "accuracy": 0.8515625,
1665
+ "epoch": 0.3175,
1666
+ "step": 127
1667
+ },
1668
+ {
1669
+ "epoch": 0.32,
1670
+ "grad_norm": 6.79693078994751,
1671
+ "learning_rate": 2.1473684210526317e-06,
1672
+ "loss": 0.3361,
1673
+ "step": 128
1674
+ },
1675
+ {
1676
+ "Batch Mean": -1.1531860828399658,
1677
+ "accuracy": 0.875,
1678
+ "epoch": 0.32,
1679
+ "step": 128
1680
+ },
1681
+ {
1682
+ "epoch": 0.3225,
1683
+ "grad_norm": 18.78434181213379,
1684
+ "learning_rate": 2.1394736842105265e-06,
1685
+ "loss": 0.381,
1686
+ "step": 129
1687
+ },
1688
+ {
1689
+ "Batch Mean": -0.9209874868392944,
1690
+ "accuracy": 0.828125,
1691
+ "epoch": 0.3225,
1692
+ "step": 129
1693
+ },
1694
+ {
1695
+ "epoch": 0.325,
1696
+ "grad_norm": 15.549153327941895,
1697
+ "learning_rate": 2.1315789473684212e-06,
1698
+ "loss": 0.352,
1699
+ "step": 130
1700
+ },
1701
+ {
1702
+ "Batch Mean": -0.5993038415908813,
1703
+ "accuracy": 0.7734375,
1704
+ "epoch": 0.325,
1705
+ "step": 130
1706
+ },
1707
+ {
1708
+ "epoch": 0.3275,
1709
+ "grad_norm": 11.017681121826172,
1710
+ "learning_rate": 2.123684210526316e-06,
1711
+ "loss": 0.4731,
1712
+ "step": 131
1713
+ },
1714
+ {
1715
+ "Batch Mean": -0.5436639785766602,
1716
+ "accuracy": 0.859375,
1717
+ "epoch": 0.3275,
1718
+ "step": 131
1719
+ },
1720
+ {
1721
+ "epoch": 0.33,
1722
+ "grad_norm": 9.474353790283203,
1723
+ "learning_rate": 2.1157894736842103e-06,
1724
+ "loss": 0.3224,
1725
+ "step": 132
1726
+ },
1727
+ {
1728
+ "Batch Mean": 0.03529167175292969,
1729
+ "accuracy": 0.7890625,
1730
+ "epoch": 0.33,
1731
+ "step": 132
1732
+ },
1733
+ {
1734
+ "epoch": 0.3325,
1735
+ "grad_norm": 9.17381763458252,
1736
+ "learning_rate": 2.107894736842105e-06,
1737
+ "loss": 0.4091,
1738
+ "step": 133
1739
+ },
1740
+ {
1741
+ "Batch Mean": 0.37068402767181396,
1742
+ "accuracy": 0.7890625,
1743
+ "epoch": 0.3325,
1744
+ "step": 133
1745
+ },
1746
+ {
1747
+ "epoch": 0.335,
1748
+ "grad_norm": 8.768671035766602,
1749
+ "learning_rate": 2.1e-06,
1750
+ "loss": 0.4094,
1751
+ "step": 134
1752
+ },
1753
+ {
1754
+ "Batch Mean": 0.8418741226196289,
1755
+ "accuracy": 0.8203125,
1756
+ "epoch": 0.335,
1757
+ "step": 134
1758
+ },
1759
+ {
1760
+ "epoch": 0.3375,
1761
+ "grad_norm": 13.19222354888916,
1762
+ "learning_rate": 2.0921052631578945e-06,
1763
+ "loss": 0.4361,
1764
+ "step": 135
1765
+ },
1766
+ {
1767
+ "Batch Mean": 0.38561856746673584,
1768
+ "accuracy": 0.828125,
1769
+ "epoch": 0.3375,
1770
+ "step": 135
1771
+ },
1772
+ {
1773
+ "epoch": 0.34,
1774
+ "grad_norm": 7.658647537231445,
1775
+ "learning_rate": 2.0842105263157897e-06,
1776
+ "loss": 0.3619,
1777
+ "step": 136
1778
+ },
1779
+ {
1780
+ "Batch Mean": 0.24846503138542175,
1781
+ "accuracy": 0.8203125,
1782
+ "epoch": 0.34,
1783
+ "step": 136
1784
+ },
1785
+ {
1786
+ "epoch": 0.3425,
1787
+ "grad_norm": 6.886051654815674,
1788
+ "learning_rate": 2.0763157894736845e-06,
1789
+ "loss": 0.3778,
1790
+ "step": 137
1791
+ },
1792
+ {
1793
+ "Batch Mean": -0.3311891555786133,
1794
+ "accuracy": 0.8203125,
1795
+ "epoch": 0.3425,
1796
+ "step": 137
1797
+ },
1798
+ {
1799
+ "epoch": 0.345,
1800
+ "grad_norm": 7.944254398345947,
1801
+ "learning_rate": 2.068421052631579e-06,
1802
+ "loss": 0.3948,
1803
+ "step": 138
1804
+ },
1805
+ {
1806
+ "Batch Mean": -0.568354606628418,
1807
+ "accuracy": 0.84375,
1808
+ "epoch": 0.345,
1809
+ "step": 138
1810
+ },
1811
+ {
1812
+ "epoch": 0.3475,
1813
+ "grad_norm": 9.763813018798828,
1814
+ "learning_rate": 2.060526315789474e-06,
1815
+ "loss": 0.3355,
1816
+ "step": 139
1817
+ },
1818
+ {
1819
+ "Batch Mean": -0.39496636390686035,
1820
+ "accuracy": 0.8671875,
1821
+ "epoch": 0.3475,
1822
+ "step": 139
1823
+ },
1824
+ {
1825
+ "epoch": 0.35,
1826
+ "grad_norm": 7.516551971435547,
1827
+ "learning_rate": 2.0526315789473687e-06,
1828
+ "loss": 0.3501,
1829
+ "step": 140
1830
+ },
1831
+ {
1832
+ "Batch Mean": -0.15581655502319336,
1833
+ "accuracy": 0.828125,
1834
+ "epoch": 0.35,
1835
+ "step": 140
1836
+ },
1837
+ {
1838
+ "epoch": 0.3525,
1839
+ "grad_norm": 8.155888557434082,
1840
+ "learning_rate": 2.0447368421052634e-06,
1841
+ "loss": 0.3773,
1842
+ "step": 141
1843
+ },
1844
+ {
1845
+ "Batch Mean": 0.44981956481933594,
1846
+ "accuracy": 0.7578125,
1847
+ "epoch": 0.3525,
1848
+ "step": 141
1849
+ },
1850
+ {
1851
+ "epoch": 0.355,
1852
+ "grad_norm": 9.395730018615723,
1853
+ "learning_rate": 2.0368421052631578e-06,
1854
+ "loss": 0.4603,
1855
+ "step": 142
1856
+ },
1857
+ {
1858
+ "Batch Mean": 0.33932405710220337,
1859
+ "accuracy": 0.8125,
1860
+ "epoch": 0.355,
1861
+ "step": 142
1862
+ },
1863
+ {
1864
+ "epoch": 0.3575,
1865
+ "grad_norm": 8.501273155212402,
1866
+ "learning_rate": 2.0289473684210525e-06,
1867
+ "loss": 0.4167,
1868
+ "step": 143
1869
+ },
1870
+ {
1871
+ "Batch Mean": 0.31684207916259766,
1872
+ "accuracy": 0.875,
1873
+ "epoch": 0.3575,
1874
+ "step": 143
1875
+ },
1876
+ {
1877
+ "epoch": 0.36,
1878
+ "grad_norm": 7.186644554138184,
1879
+ "learning_rate": 2.0210526315789473e-06,
1880
+ "loss": 0.3359,
1881
+ "step": 144
1882
+ },
1883
+ {
1884
+ "Batch Mean": 0.14882159233093262,
1885
+ "accuracy": 0.8359375,
1886
+ "epoch": 0.36,
1887
+ "step": 144
1888
+ },
1889
+ {
1890
+ "epoch": 0.3625,
1891
+ "grad_norm": 7.065666675567627,
1892
+ "learning_rate": 2.013157894736842e-06,
1893
+ "loss": 0.3773,
1894
+ "step": 145
1895
+ },
1896
+ {
1897
+ "Batch Mean": 0.010605573654174805,
1898
+ "accuracy": 0.8671875,
1899
+ "epoch": 0.3625,
1900
+ "step": 145
1901
+ },
1902
+ {
1903
+ "epoch": 0.365,
1904
+ "grad_norm": 6.343169212341309,
1905
+ "learning_rate": 2.0052631578947367e-06,
1906
+ "loss": 0.3441,
1907
+ "step": 146
1908
+ },
1909
+ {
1910
+ "Batch Mean": 0.13873529434204102,
1911
+ "accuracy": 0.828125,
1912
+ "epoch": 0.365,
1913
+ "step": 146
1914
+ },
1915
+ {
1916
+ "epoch": 0.3675,
1917
+ "grad_norm": 7.586203098297119,
1918
+ "learning_rate": 1.9973684210526315e-06,
1919
+ "loss": 0.3723,
1920
+ "step": 147
1921
+ },
1922
+ {
1923
+ "Batch Mean": -0.6648737192153931,
1924
+ "accuracy": 0.7890625,
1925
+ "epoch": 0.3675,
1926
+ "step": 147
1927
+ },
1928
+ {
1929
+ "epoch": 0.37,
1930
+ "grad_norm": 11.366660118103027,
1931
+ "learning_rate": 1.9894736842105262e-06,
1932
+ "loss": 0.4372,
1933
+ "step": 148
1934
+ },
1935
+ {
1936
+ "Batch Mean": -0.3633718490600586,
1937
+ "accuracy": 0.8046875,
1938
+ "epoch": 0.37,
1939
+ "step": 148
1940
+ },
1941
+ {
1942
+ "epoch": 0.3725,
1943
+ "grad_norm": 7.831110000610352,
1944
+ "learning_rate": 1.9815789473684214e-06,
1945
+ "loss": 0.4074,
1946
+ "step": 149
1947
+ },
1948
+ {
1949
+ "Batch Mean": -0.12644743919372559,
1950
+ "accuracy": 0.8828125,
1951
+ "epoch": 0.3725,
1952
+ "step": 149
1953
+ },
1954
+ {
1955
+ "epoch": 0.375,
1956
+ "grad_norm": 6.3676371574401855,
1957
+ "learning_rate": 1.973684210526316e-06,
1958
+ "loss": 0.304,
1959
+ "step": 150
1960
+ },
1961
+ {
1962
+ "Batch Mean": 0.36059999465942383,
1963
+ "accuracy": 0.8125,
1964
+ "epoch": 0.375,
1965
+ "step": 150
1966
+ },
1967
+ {
1968
+ "epoch": 0.3775,
1969
+ "grad_norm": 8.31554889678955,
1970
+ "learning_rate": 1.965789473684211e-06,
1971
+ "loss": 0.3811,
1972
+ "step": 151
1973
+ },
1974
+ {
1975
+ "Batch Mean": 0.3979158401489258,
1976
+ "accuracy": 0.8125,
1977
+ "epoch": 0.3775,
1978
+ "step": 151
1979
+ },
1980
+ {
1981
+ "epoch": 0.38,
1982
+ "grad_norm": 9.095989227294922,
1983
+ "learning_rate": 1.9578947368421052e-06,
1984
+ "loss": 0.4376,
1985
+ "step": 152
1986
+ },
1987
+ {
1988
+ "Batch Mean": 0.443440318107605,
1989
+ "accuracy": 0.8359375,
1990
+ "epoch": 0.38,
1991
+ "step": 152
1992
+ },
1993
+ {
1994
+ "epoch": 0.3825,
1995
+ "grad_norm": 8.482221603393555,
1996
+ "learning_rate": 1.95e-06,
1997
+ "loss": 0.3351,
1998
+ "step": 153
1999
+ },
2000
+ {
2001
+ "Batch Mean": 0.3431110382080078,
2002
+ "accuracy": 0.828125,
2003
+ "epoch": 0.3825,
2004
+ "step": 153
2005
+ },
2006
+ {
2007
+ "epoch": 0.385,
2008
+ "grad_norm": 8.352450370788574,
2009
+ "learning_rate": 1.9421052631578947e-06,
2010
+ "loss": 0.3627,
2011
+ "step": 154
2012
+ },
2013
+ {
2014
+ "Batch Mean": 0.17504891753196716,
2015
+ "accuracy": 0.8828125,
2016
+ "epoch": 0.385,
2017
+ "step": 154
2018
+ },
2019
+ {
2020
+ "epoch": 0.3875,
2021
+ "grad_norm": 6.995707035064697,
2022
+ "learning_rate": 1.9342105263157895e-06,
2023
+ "loss": 0.323,
2024
+ "step": 155
2025
+ },
2026
+ {
2027
+ "Batch Mean": -0.1753711700439453,
2028
+ "accuracy": 0.8515625,
2029
+ "epoch": 0.3875,
2030
+ "step": 155
2031
+ },
2032
+ {
2033
+ "epoch": 0.39,
2034
+ "grad_norm": 7.297128677368164,
2035
+ "learning_rate": 1.926315789473684e-06,
2036
+ "loss": 0.3426,
2037
+ "step": 156
2038
+ },
2039
+ {
2040
+ "Batch Mean": -0.17636048793792725,
2041
+ "accuracy": 0.8515625,
2042
+ "epoch": 0.39,
2043
+ "step": 156
2044
+ },
2045
+ {
2046
+ "epoch": 0.3925,
2047
+ "grad_norm": 6.796414375305176,
2048
+ "learning_rate": 1.918421052631579e-06,
2049
+ "loss": 0.3263,
2050
+ "step": 157
2051
+ },
2052
+ {
2053
+ "Batch Mean": -0.7188338041305542,
2054
+ "accuracy": 0.875,
2055
+ "epoch": 0.3925,
2056
+ "step": 157
2057
+ },
2058
+ {
2059
+ "epoch": 0.395,
2060
+ "grad_norm": 10.371746063232422,
2061
+ "learning_rate": 1.9105263157894737e-06,
2062
+ "loss": 0.3046,
2063
+ "step": 158
2064
+ },
2065
+ {
2066
+ "Batch Mean": -0.5050258636474609,
2067
+ "accuracy": 0.8671875,
2068
+ "epoch": 0.395,
2069
+ "step": 158
2070
+ },
2071
+ {
2072
+ "epoch": 0.3975,
2073
+ "grad_norm": 8.59885311126709,
2074
+ "learning_rate": 1.9026315789473684e-06,
2075
+ "loss": 0.3257,
2076
+ "step": 159
2077
+ },
2078
+ {
2079
+ "Batch Mean": 0.15757006406784058,
2080
+ "accuracy": 0.875,
2081
+ "epoch": 0.3975,
2082
+ "step": 159
2083
+ },
2084
+ {
2085
+ "epoch": 0.4,
2086
+ "grad_norm": 6.61456298828125,
2087
+ "learning_rate": 1.8947368421052632e-06,
2088
+ "loss": 0.2748,
2089
+ "step": 160
2090
+ },
2091
+ {
2092
+ "Batch Mean": 0.4738607406616211,
2093
+ "accuracy": 0.8359375,
2094
+ "epoch": 0.4,
2095
+ "step": 160
2096
+ },
2097
+ {
2098
+ "epoch": 0.4025,
2099
+ "grad_norm": 9.277711868286133,
2100
+ "learning_rate": 1.8868421052631577e-06,
2101
+ "loss": 0.3558,
2102
+ "step": 161
2103
+ },
2104
+ {
2105
+ "Batch Mean": 0.9098443984985352,
2106
+ "accuracy": 0.8515625,
2107
+ "epoch": 0.4025,
2108
+ "step": 161
2109
+ },
2110
+ {
2111
+ "epoch": 0.405,
2112
+ "grad_norm": 14.112342834472656,
2113
+ "learning_rate": 1.8789473684210525e-06,
2114
+ "loss": 0.3479,
2115
+ "step": 162
2116
+ },
2117
+ {
2118
+ "Batch Mean": -0.09790003299713135,
2119
+ "accuracy": 0.8515625,
2120
+ "epoch": 0.405,
2121
+ "step": 162
2122
+ },
2123
+ {
2124
+ "epoch": 0.4075,
2125
+ "grad_norm": 7.988643169403076,
2126
+ "learning_rate": 1.8710526315789476e-06,
2127
+ "loss": 0.3329,
2128
+ "step": 163
2129
+ },
2130
+ {
2131
+ "Batch Mean": -0.3589191436767578,
2132
+ "accuracy": 0.875,
2133
+ "epoch": 0.4075,
2134
+ "step": 163
2135
+ },
2136
+ {
2137
+ "epoch": 0.41,
2138
+ "grad_norm": 8.374390602111816,
2139
+ "learning_rate": 1.8631578947368424e-06,
2140
+ "loss": 0.3404,
2141
+ "step": 164
2142
+ },
2143
+ {
2144
+ "Batch Mean": -0.2895526885986328,
2145
+ "accuracy": 0.8671875,
2146
+ "epoch": 0.41,
2147
+ "step": 164
2148
+ },
2149
+ {
2150
+ "epoch": 0.4125,
2151
+ "grad_norm": 10.125029563903809,
2152
+ "learning_rate": 1.855263157894737e-06,
2153
+ "loss": 0.3828,
2154
+ "step": 165
2155
+ },
2156
+ {
2157
+ "Batch Mean": -0.7614960670471191,
2158
+ "accuracy": 0.8515625,
2159
+ "epoch": 0.4125,
2160
+ "step": 165
2161
+ },
2162
+ {
2163
+ "epoch": 0.415,
2164
+ "grad_norm": 12.611261367797852,
2165
+ "learning_rate": 1.8473684210526317e-06,
2166
+ "loss": 0.3182,
2167
+ "step": 166
2168
+ },
2169
+ {
2170
+ "Batch Mean": 0.047823190689086914,
2171
+ "accuracy": 0.84375,
2172
+ "epoch": 0.415,
2173
+ "step": 166
2174
+ },
2175
+ {
2176
+ "epoch": 0.4175,
2177
+ "grad_norm": 7.5092644691467285,
2178
+ "learning_rate": 1.8394736842105264e-06,
2179
+ "loss": 0.3277,
2180
+ "step": 167
2181
+ },
2182
+ {
2183
+ "Batch Mean": 0.3487553596496582,
2184
+ "accuracy": 0.8828125,
2185
+ "epoch": 0.4175,
2186
+ "step": 167
2187
+ },
2188
+ {
2189
+ "epoch": 0.42,
2190
+ "grad_norm": 7.762388229370117,
2191
+ "learning_rate": 1.8315789473684211e-06,
2192
+ "loss": 0.3021,
2193
+ "step": 168
2194
+ },
2195
+ {
2196
+ "Batch Mean": -0.34416115283966064,
2197
+ "accuracy": 0.7890625,
2198
+ "epoch": 0.42,
2199
+ "step": 168
2200
+ },
2201
+ {
2202
+ "epoch": 0.4225,
2203
+ "grad_norm": 9.338401794433594,
2204
+ "learning_rate": 1.8236842105263159e-06,
2205
+ "loss": 0.4031,
2206
+ "step": 169
2207
+ },
2208
+ {
2209
+ "Batch Mean": 0.013556480407714844,
2210
+ "accuracy": 0.8515625,
2211
+ "epoch": 0.4225,
2212
+ "step": 169
2213
+ },
2214
+ {
2215
+ "epoch": 0.425,
2216
+ "grad_norm": 8.208139419555664,
2217
+ "learning_rate": 1.8157894736842106e-06,
2218
+ "loss": 0.367,
2219
+ "step": 170
2220
+ },
2221
+ {
2222
+ "Batch Mean": -0.1292668581008911,
2223
+ "accuracy": 0.8828125,
2224
+ "epoch": 0.425,
2225
+ "step": 170
2226
+ },
2227
+ {
2228
+ "epoch": 0.4275,
2229
+ "grad_norm": 6.575423717498779,
2230
+ "learning_rate": 1.8078947368421052e-06,
2231
+ "loss": 0.2778,
2232
+ "step": 171
2233
+ },
2234
+ {
2235
+ "Batch Mean": -0.5196864604949951,
2236
+ "accuracy": 0.828125,
2237
+ "epoch": 0.4275,
2238
+ "step": 171
2239
+ },
2240
+ {
2241
+ "epoch": 0.43,
2242
+ "grad_norm": 9.9501953125,
2243
+ "learning_rate": 1.8e-06,
2244
+ "loss": 0.388,
2245
+ "step": 172
2246
+ },
2247
+ {
2248
+ "Batch Mean": -0.10827267169952393,
2249
+ "accuracy": 0.8515625,
2250
+ "epoch": 0.43,
2251
+ "step": 172
2252
+ },
2253
+ {
2254
+ "epoch": 0.4325,
2255
+ "grad_norm": 6.746122360229492,
2256
+ "learning_rate": 1.7921052631578947e-06,
2257
+ "loss": 0.3337,
2258
+ "step": 173
2259
+ },
2260
+ {
2261
+ "Batch Mean": -0.20117001235485077,
2262
+ "accuracy": 0.859375,
2263
+ "epoch": 0.4325,
2264
+ "step": 173
2265
+ },
2266
+ {
2267
+ "epoch": 0.435,
2268
+ "grad_norm": 7.591915130615234,
2269
+ "learning_rate": 1.7842105263157894e-06,
2270
+ "loss": 0.3576,
2271
+ "step": 174
2272
+ },
2273
+ {
2274
+ "Batch Mean": 0.4478938579559326,
2275
+ "accuracy": 0.8125,
2276
+ "epoch": 0.435,
2277
+ "step": 174
2278
+ },
2279
+ {
2280
+ "epoch": 0.4375,
2281
+ "grad_norm": 8.740865707397461,
2282
+ "learning_rate": 1.7763157894736842e-06,
2283
+ "loss": 0.3836,
2284
+ "step": 175
2285
+ },
2286
+ {
2287
+ "Batch Mean": 0.1370692253112793,
2288
+ "accuracy": 0.8359375,
2289
+ "epoch": 0.4375,
2290
+ "step": 175
2291
+ },
2292
+ {
2293
+ "epoch": 0.44,
2294
+ "grad_norm": 6.480626583099365,
2295
+ "learning_rate": 1.768421052631579e-06,
2296
+ "loss": 0.3648,
2297
+ "step": 176
2298
+ },
2299
+ {
2300
+ "Batch Mean": 0.47721147537231445,
2301
+ "accuracy": 0.859375,
2302
+ "epoch": 0.44,
2303
+ "step": 176
2304
+ },
2305
+ {
2306
+ "epoch": 0.4425,
2307
+ "grad_norm": 9.018311500549316,
2308
+ "learning_rate": 1.7605263157894739e-06,
2309
+ "loss": 0.4128,
2310
+ "step": 177
2311
+ },
2312
+ {
2313
+ "Batch Mean": 0.13465499877929688,
2314
+ "accuracy": 0.8671875,
2315
+ "epoch": 0.4425,
2316
+ "step": 177
2317
+ },
2318
+ {
2319
+ "epoch": 0.445,
2320
+ "grad_norm": 6.7764973640441895,
2321
+ "learning_rate": 1.7526315789473686e-06,
2322
+ "loss": 0.3124,
2323
+ "step": 178
2324
+ },
2325
+ {
2326
+ "Batch Mean": 0.25302886962890625,
2327
+ "accuracy": 0.8671875,
2328
+ "epoch": 0.445,
2329
+ "step": 178
2330
+ },
2331
+ {
2332
+ "epoch": 0.4475,
2333
+ "grad_norm": 7.894146919250488,
2334
+ "learning_rate": 1.7447368421052633e-06,
2335
+ "loss": 0.3335,
2336
+ "step": 179
2337
+ },
2338
+ {
2339
+ "Batch Mean": -0.5794901847839355,
2340
+ "accuracy": 0.7734375,
2341
+ "epoch": 0.4475,
2342
+ "step": 179
2343
+ },
2344
+ {
2345
+ "epoch": 0.45,
2346
+ "grad_norm": 8.826544761657715,
2347
+ "learning_rate": 1.736842105263158e-06,
2348
+ "loss": 0.3982,
2349
+ "step": 180
2350
+ },
2351
+ {
2352
+ "Batch Mean": 0.16424822807312012,
2353
+ "accuracy": 0.84375,
2354
+ "epoch": 0.45,
2355
+ "step": 180
2356
+ },
2357
+ {
2358
+ "epoch": 0.4525,
2359
+ "grad_norm": 5.991344451904297,
2360
+ "learning_rate": 1.7289473684210526e-06,
2361
+ "loss": 0.3408,
2362
+ "step": 181
2363
+ },
2364
+ {
2365
+ "Batch Mean": -0.13757801055908203,
2366
+ "accuracy": 0.8671875,
2367
+ "epoch": 0.4525,
2368
+ "step": 181
2369
+ },
2370
+ {
2371
+ "epoch": 0.455,
2372
+ "grad_norm": 5.649535179138184,
2373
+ "learning_rate": 1.7210526315789474e-06,
2374
+ "loss": 0.3081,
2375
+ "step": 182
2376
+ },
2377
+ {
2378
+ "Batch Mean": 0.13538789749145508,
2379
+ "accuracy": 0.78125,
2380
+ "epoch": 0.455,
2381
+ "step": 182
2382
+ },
2383
+ {
2384
+ "epoch": 0.4575,
2385
+ "grad_norm": 7.989570140838623,
2386
+ "learning_rate": 1.7131578947368421e-06,
2387
+ "loss": 0.4532,
2388
+ "step": 183
2389
+ },
2390
+ {
2391
+ "Batch Mean": -0.09452962875366211,
2392
+ "accuracy": 0.796875,
2393
+ "epoch": 0.4575,
2394
+ "step": 183
2395
+ },
2396
+ {
2397
+ "epoch": 0.46,
2398
+ "grad_norm": 6.7350616455078125,
2399
+ "learning_rate": 1.7052631578947369e-06,
2400
+ "loss": 0.3937,
2401
+ "step": 184
2402
+ },
2403
+ {
2404
+ "Batch Mean": -0.19620466232299805,
2405
+ "accuracy": 0.8046875,
2406
+ "epoch": 0.46,
2407
+ "step": 184
2408
+ },
2409
+ {
2410
+ "epoch": 0.4625,
2411
+ "grad_norm": 32.979637145996094,
2412
+ "learning_rate": 1.6973684210526316e-06,
2413
+ "loss": 0.4651,
2414
+ "step": 185
2415
+ },
2416
+ {
2417
+ "Batch Mean": 0.203094482421875,
2418
+ "accuracy": 0.8203125,
2419
+ "epoch": 0.4625,
2420
+ "step": 185
2421
+ },
2422
+ {
2423
+ "epoch": 0.465,
2424
+ "grad_norm": 6.455933570861816,
2425
+ "learning_rate": 1.6894736842105264e-06,
2426
+ "loss": 0.3405,
2427
+ "step": 186
2428
+ },
2429
+ {
2430
+ "Batch Mean": 0.39686131477355957,
2431
+ "accuracy": 0.875,
2432
+ "epoch": 0.465,
2433
+ "step": 186
2434
+ },
2435
+ {
2436
+ "epoch": 0.4675,
2437
+ "grad_norm": 6.76831579208374,
2438
+ "learning_rate": 1.6815789473684209e-06,
2439
+ "loss": 0.3486,
2440
+ "step": 187
2441
+ },
2442
+ {
2443
+ "Batch Mean": -0.008591651916503906,
2444
+ "accuracy": 0.859375,
2445
+ "epoch": 0.4675,
2446
+ "step": 187
2447
+ },
2448
+ {
2449
+ "epoch": 0.47,
2450
+ "grad_norm": 5.692453861236572,
2451
+ "learning_rate": 1.6736842105263156e-06,
2452
+ "loss": 0.3288,
2453
+ "step": 188
2454
+ },
2455
+ {
2456
+ "Batch Mean": -0.36408185958862305,
2457
+ "accuracy": 0.8046875,
2458
+ "epoch": 0.47,
2459
+ "step": 188
2460
+ },
2461
+ {
2462
+ "epoch": 0.4725,
2463
+ "grad_norm": 7.711721897125244,
2464
+ "learning_rate": 1.6657894736842104e-06,
2465
+ "loss": 0.4075,
2466
+ "step": 189
2467
+ },
2468
+ {
2469
+ "Batch Mean": -0.4406242370605469,
2470
+ "accuracy": 0.890625,
2471
+ "epoch": 0.4725,
2472
+ "step": 189
2473
+ },
2474
+ {
2475
+ "epoch": 0.475,
2476
+ "grad_norm": 7.3570756912231445,
2477
+ "learning_rate": 1.6578947368421056e-06,
2478
+ "loss": 0.3025,
2479
+ "step": 190
2480
+ },
2481
+ {
2482
+ "Batch Mean": 0.1726367473602295,
2483
+ "accuracy": 0.8125,
2484
+ "epoch": 0.475,
2485
+ "step": 190
2486
+ },
2487
+ {
2488
+ "epoch": 0.4775,
2489
+ "grad_norm": 7.980853080749512,
2490
+ "learning_rate": 1.65e-06,
2491
+ "loss": 0.3876,
2492
+ "step": 191
2493
+ },
2494
+ {
2495
+ "Batch Mean": -0.0961066484451294,
2496
+ "accuracy": 0.90625,
2497
+ "epoch": 0.4775,
2498
+ "step": 191
2499
+ },
2500
+ {
2501
+ "epoch": 0.48,
2502
+ "grad_norm": 5.444026947021484,
2503
+ "learning_rate": 1.6421052631578948e-06,
2504
+ "loss": 0.2777,
2505
+ "step": 192
2506
+ },
2507
+ {
2508
+ "Batch Mean": -0.12086796760559082,
2509
+ "accuracy": 0.8515625,
2510
+ "epoch": 0.48,
2511
+ "step": 192
2512
+ },
2513
+ {
2514
+ "epoch": 0.4825,
2515
+ "grad_norm": 5.993566989898682,
2516
+ "learning_rate": 1.6342105263157896e-06,
2517
+ "loss": 0.3327,
2518
+ "step": 193
2519
+ },
2520
+ {
2521
+ "Batch Mean": 0.5805015563964844,
2522
+ "accuracy": 0.84375,
2523
+ "epoch": 0.4825,
2524
+ "step": 193
2525
+ },
2526
+ {
2527
+ "epoch": 0.485,
2528
+ "grad_norm": 9.61883544921875,
2529
+ "learning_rate": 1.6263157894736843e-06,
2530
+ "loss": 0.3707,
2531
+ "step": 194
2532
+ },
2533
+ {
2534
+ "Batch Mean": 0.8935675024986267,
2535
+ "accuracy": 0.8046875,
2536
+ "epoch": 0.485,
2537
+ "step": 194
2538
+ },
2539
+ {
2540
+ "epoch": 0.4875,
2541
+ "grad_norm": 12.503327369689941,
2542
+ "learning_rate": 1.618421052631579e-06,
2543
+ "loss": 0.3951,
2544
+ "step": 195
2545
+ },
2546
+ {
2547
+ "Batch Mean": 0.2793365716934204,
2548
+ "accuracy": 0.8046875,
2549
+ "epoch": 0.4875,
2550
+ "step": 195
2551
+ },
2552
+ {
2553
+ "epoch": 0.49,
2554
+ "grad_norm": 7.763684272766113,
2555
+ "learning_rate": 1.6105263157894738e-06,
2556
+ "loss": 0.3955,
2557
+ "step": 196
2558
+ },
2559
+ {
2560
+ "Batch Mean": -0.14763522148132324,
2561
+ "accuracy": 0.8359375,
2562
+ "epoch": 0.49,
2563
+ "step": 196
2564
+ },
2565
+ {
2566
+ "epoch": 0.4925,
2567
+ "grad_norm": 7.21512508392334,
2568
+ "learning_rate": 1.6026315789473683e-06,
2569
+ "loss": 0.3188,
2570
+ "step": 197
2571
+ },
2572
+ {
2573
+ "Batch Mean": -0.5799511671066284,
2574
+ "accuracy": 0.8671875,
2575
+ "epoch": 0.4925,
2576
+ "step": 197
2577
+ },
2578
+ {
2579
+ "epoch": 0.495,
2580
+ "grad_norm": 8.71732234954834,
2581
+ "learning_rate": 1.594736842105263e-06,
2582
+ "loss": 0.3139,
2583
+ "step": 198
2584
+ },
2585
+ {
2586
+ "Batch Mean": -0.46822547912597656,
2587
+ "accuracy": 0.890625,
2588
+ "epoch": 0.495,
2589
+ "step": 198
2590
+ },
2591
+ {
2592
+ "epoch": 0.4975,
2593
+ "grad_norm": 7.613549709320068,
2594
+ "learning_rate": 1.5868421052631578e-06,
2595
+ "loss": 0.2978,
2596
+ "step": 199
2597
+ },
2598
+ {
2599
+ "Batch Mean": -0.370266854763031,
2600
+ "accuracy": 0.875,
2601
+ "epoch": 0.4975,
2602
+ "step": 199
2603
+ },
2604
+ {
2605
+ "epoch": 0.5,
2606
+ "grad_norm": 7.669687271118164,
2607
+ "learning_rate": 1.5789473684210526e-06,
2608
+ "loss": 0.2982,
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:74fbb395e3dbef6dff0b94de426655f11a7bcbb69a4cf79a55c0564599925fac
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:b0aa0880c1f2d4b45000d0afbd117ae802cf17ce1992af9d6e1aadfc886832b2
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:31e2169217559ceaa849546825509f4a4c8af8409be7487e010d922108985507
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:eca7c030d135ce691152f39cacc565c13d4de802840e4d06ac56f71715ce9a0c
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": -3.4444580078125,
13
+ "accuracy": 0.40625,
14
+ "epoch": 0,
15
+ "step": 0
16
+ },
17
+ {
18
+ "epoch": 0.0025,
19
+ "grad_norm": 43.31455612182617,
20
+ "learning_rate": 1.5000000000000002e-07,
21
+ "loss": 0.9077,
22
+ "step": 1
23
+ },
24
+ {
25
+ "Batch Mean": -3.43255615234375,
26
+ "accuracy": 0.4921875,
27
+ "epoch": 0.0025,
28
+ "step": 1
29
+ },
30
+ {
31
+ "epoch": 0.005,
32
+ "grad_norm": 50.06682205200195,
33
+ "learning_rate": 3.0000000000000004e-07,
34
+ "loss": 0.8907,
35
+ "step": 2
36
+ },
37
+ {
38
+ "Batch Mean": -3.44775390625,
39
+ "accuracy": 0.453125,
40
+ "epoch": 0.005,
41
+ "step": 2
42
+ },
43
+ {
44
+ "epoch": 0.0075,
45
+ "grad_norm": 47.389522552490234,
46
+ "learning_rate": 4.5e-07,
47
+ "loss": 0.8899,
48
+ "step": 3
49
+ },
50
+ {
51
+ "Batch Mean": -3.4224853515625,
52
+ "accuracy": 0.4375,
53
+ "epoch": 0.0075,
54
+ "step": 3
55
+ },
56
+ {
57
+ "epoch": 0.01,
58
+ "grad_norm": 49.24280548095703,
59
+ "learning_rate": 6.000000000000001e-07,
60
+ "loss": 0.8833,
61
+ "step": 4
62
+ },
63
+ {
64
+ "Batch Mean": -3.39697265625,
65
+ "accuracy": 0.5234375,
66
+ "epoch": 0.01,
67
+ "step": 4
68
+ },
69
+ {
70
+ "epoch": 0.0125,
71
+ "grad_norm": 44.11930847167969,
72
+ "learning_rate": 7.5e-07,
73
+ "loss": 0.8661,
74
+ "step": 5
75
+ },
76
+ {
77
+ "Batch Mean": -3.38104248046875,
78
+ "accuracy": 0.5078125,
79
+ "epoch": 0.0125,
80
+ "step": 5
81
+ },
82
+ {
83
+ "epoch": 0.015,
84
+ "grad_norm": 44.9741325378418,
85
+ "learning_rate": 9e-07,
86
+ "loss": 0.8805,
87
+ "step": 6
88
+ },
89
+ {
90
+ "Batch Mean": -3.19671630859375,
91
+ "accuracy": 0.5078125,
92
+ "epoch": 0.015,
93
+ "step": 6
94
+ },
95
+ {
96
+ "epoch": 0.0175,
97
+ "grad_norm": 42.32276153564453,
98
+ "learning_rate": 1.05e-06,
99
+ "loss": 0.8547,
100
+ "step": 7
101
+ },
102
+ {
103
+ "Batch Mean": -3.1279296875,
104
+ "accuracy": 0.4921875,
105
+ "epoch": 0.0175,
106
+ "step": 7
107
+ },
108
+ {
109
+ "epoch": 0.02,
110
+ "grad_norm": 44.22520065307617,
111
+ "learning_rate": 1.2000000000000002e-06,
112
+ "loss": 0.8464,
113
+ "step": 8
114
+ },
115
+ {
116
+ "Batch Mean": -2.520538330078125,
117
+ "accuracy": 0.5,
118
+ "epoch": 0.02,
119
+ "step": 8
120
+ },
121
+ {
122
+ "epoch": 0.0225,
123
+ "grad_norm": 36.41325378417969,
124
+ "learning_rate": 1.35e-06,
125
+ "loss": 0.7946,
126
+ "step": 9
127
+ },
128
+ {
129
+ "Batch Mean": -2.413787841796875,
130
+ "accuracy": 0.515625,
131
+ "epoch": 0.0225,
132
+ "step": 9
133
+ },
134
+ {
135
+ "epoch": 0.025,
136
+ "grad_norm": 31.74874496459961,
137
+ "learning_rate": 1.5e-06,
138
+ "loss": 0.7939,
139
+ "step": 10
140
+ },
141
+ {
142
+ "Batch Mean": -2.218231201171875,
143
+ "accuracy": 0.4921875,
144
+ "epoch": 0.025,
145
+ "step": 10
146
+ },
147
+ {
148
+ "epoch": 0.0275,
149
+ "grad_norm": 34.12691879272461,
150
+ "learning_rate": 1.65e-06,
151
+ "loss": 0.7505,
152
+ "step": 11
153
+ },
154
+ {
155
+ "Batch Mean": -0.2393415868282318,
156
+ "accuracy": 0.53125,
157
+ "epoch": 0.0275,
158
+ "step": 11
159
+ },
160
+ {
161
+ "epoch": 0.03,
162
+ "grad_norm": 10.481990814208984,
163
+ "learning_rate": 1.8e-06,
164
+ "loss": 0.6779,
165
+ "step": 12
166
+ },
167
+ {
168
+ "Batch Mean": 0.2733480930328369,
169
+ "accuracy": 0.5703125,
170
+ "epoch": 0.03,
171
+ "step": 12
172
+ },
173
+ {
174
+ "epoch": 0.0325,
175
+ "grad_norm": 8.39962387084961,
176
+ "learning_rate": 1.95e-06,
177
+ "loss": 0.6728,
178
+ "step": 13
179
+ },
180
+ {
181
+ "Batch Mean": 0.5041149854660034,
182
+ "accuracy": 0.671875,
183
+ "epoch": 0.0325,
184
+ "step": 13
185
+ },
186
+ {
187
+ "epoch": 0.035,
188
+ "grad_norm": 15.906760215759277,
189
+ "learning_rate": 2.1e-06,
190
+ "loss": 0.6679,
191
+ "step": 14
192
+ },
193
+ {
194
+ "Batch Mean": 0.8821840286254883,
195
+ "accuracy": 0.578125,
196
+ "epoch": 0.035,
197
+ "step": 14
198
+ },
199
+ {
200
+ "epoch": 0.0375,
201
+ "grad_norm": 19.03310775756836,
202
+ "learning_rate": 2.25e-06,
203
+ "loss": 0.7024,
204
+ "step": 15
205
+ },
206
+ {
207
+ "Batch Mean": 1.1891746520996094,
208
+ "accuracy": 0.5859375,
209
+ "epoch": 0.0375,
210
+ "step": 15
211
+ },
212
+ {
213
+ "epoch": 0.04,
214
+ "grad_norm": 20.89366340637207,
215
+ "learning_rate": 2.4000000000000003e-06,
216
+ "loss": 0.6868,
217
+ "step": 16
218
+ },
219
+ {
220
+ "Batch Mean": 2.1533203125,
221
+ "accuracy": 0.671875,
222
+ "epoch": 0.04,
223
+ "step": 16
224
+ },
225
+ {
226
+ "epoch": 0.0425,
227
+ "grad_norm": 34.633541107177734,
228
+ "learning_rate": 2.55e-06,
229
+ "loss": 0.7297,
230
+ "step": 17
231
+ },
232
+ {
233
+ "Batch Mean": 2.5652008056640625,
234
+ "accuracy": 0.6484375,
235
+ "epoch": 0.0425,
236
+ "step": 17
237
+ },
238
+ {
239
+ "epoch": 0.045,
240
+ "grad_norm": 41.46820068359375,
241
+ "learning_rate": 2.7e-06,
242
+ "loss": 0.7387,
243
+ "step": 18
244
+ },
245
+ {
246
+ "Batch Mean": 2.4411849975585938,
247
+ "accuracy": 0.75,
248
+ "epoch": 0.045,
249
+ "step": 18
250
+ },
251
+ {
252
+ "epoch": 0.0475,
253
+ "grad_norm": 42.9193000793457,
254
+ "learning_rate": 2.85e-06,
255
+ "loss": 0.6813,
256
+ "step": 19
257
+ },
258
+ {
259
+ "Batch Mean": 2.1285018920898438,
260
+ "accuracy": 0.703125,
261
+ "epoch": 0.0475,
262
+ "step": 19
263
+ },
264
+ {
265
+ "epoch": 0.05,
266
+ "grad_norm": 37.16952133178711,
267
+ "learning_rate": 3e-06,
268
+ "loss": 0.672,
269
+ "step": 20
270
+ },
271
+ {
272
+ "Batch Mean": 1.4230481386184692,
273
+ "accuracy": 0.671875,
274
+ "epoch": 0.05,
275
+ "step": 20
276
+ },
277
+ {
278
+ "epoch": 0.0525,
279
+ "grad_norm": 27.2924747467041,
280
+ "learning_rate": 2.992105263157895e-06,
281
+ "loss": 0.647,
282
+ "step": 21
283
+ },
284
+ {
285
+ "Batch Mean": 0.5414033532142639,
286
+ "accuracy": 0.6953125,
287
+ "epoch": 0.0525,
288
+ "step": 21
289
+ },
290
+ {
291
+ "epoch": 0.055,
292
+ "grad_norm": 11.927323341369629,
293
+ "learning_rate": 2.9842105263157896e-06,
294
+ "loss": 0.5981,
295
+ "step": 22
296
+ },
297
+ {
298
+ "Batch Mean": -0.36795324087142944,
299
+ "accuracy": 0.7265625,
300
+ "epoch": 0.055,
301
+ "step": 22
302
+ },
303
+ {
304
+ "epoch": 0.0575,
305
+ "grad_norm": 13.455949783325195,
306
+ "learning_rate": 2.9763157894736843e-06,
307
+ "loss": 0.5763,
308
+ "step": 23
309
+ },
310
+ {
311
+ "Batch Mean": -1.0874066352844238,
312
+ "accuracy": 0.7421875,
313
+ "epoch": 0.0575,
314
+ "step": 23
315
+ },
316
+ {
317
+ "epoch": 0.06,
318
+ "grad_norm": 22.382274627685547,
319
+ "learning_rate": 2.968421052631579e-06,
320
+ "loss": 0.5763,
321
+ "step": 24
322
+ },
323
+ {
324
+ "Batch Mean": -1.103028416633606,
325
+ "accuracy": 0.6953125,
326
+ "epoch": 0.06,
327
+ "step": 24
328
+ },
329
+ {
330
+ "epoch": 0.0625,
331
+ "grad_norm": 19.854228973388672,
332
+ "learning_rate": 2.960526315789474e-06,
333
+ "loss": 0.6065,
334
+ "step": 25
335
+ },
336
+ {
337
+ "Batch Mean": -0.8232302069664001,
338
+ "accuracy": 0.734375,
339
+ "epoch": 0.0625,
340
+ "step": 25
341
+ },
342
+ {
343
+ "epoch": 0.065,
344
+ "grad_norm": 16.642824172973633,
345
+ "learning_rate": 2.9526315789473685e-06,
346
+ "loss": 0.5282,
347
+ "step": 26
348
+ },
349
+ {
350
+ "Batch Mean": -0.11966800689697266,
351
+ "accuracy": 0.6875,
352
+ "epoch": 0.065,
353
+ "step": 26
354
+ },
355
+ {
356
+ "epoch": 0.0675,
357
+ "grad_norm": 8.563494682312012,
358
+ "learning_rate": 2.9447368421052633e-06,
359
+ "loss": 0.5348,
360
+ "step": 27
361
+ },
362
+ {
363
+ "Batch Mean": 0.5674030780792236,
364
+ "accuracy": 0.671875,
365
+ "epoch": 0.0675,
366
+ "step": 27
367
+ },
368
+ {
369
+ "epoch": 0.07,
370
+ "grad_norm": 13.211753845214844,
371
+ "learning_rate": 2.936842105263158e-06,
372
+ "loss": 0.5812,
373
+ "step": 28
374
+ },
375
+ {
376
+ "Batch Mean": 1.1245126724243164,
377
+ "accuracy": 0.6171875,
378
+ "epoch": 0.07,
379
+ "step": 28
380
+ },
381
+ {
382
+ "epoch": 0.0725,
383
+ "grad_norm": 22.8548583984375,
384
+ "learning_rate": 2.9289473684210528e-06,
385
+ "loss": 0.7336,
386
+ "step": 29
387
+ },
388
+ {
389
+ "Batch Mean": 1.2212319374084473,
390
+ "accuracy": 0.6796875,
391
+ "epoch": 0.0725,
392
+ "step": 29
393
+ },
394
+ {
395
+ "epoch": 0.075,
396
+ "grad_norm": 21.96833038330078,
397
+ "learning_rate": 2.9210526315789475e-06,
398
+ "loss": 0.6167,
399
+ "step": 30
400
+ },
401
+ {
402
+ "Batch Mean": 0.7509702444076538,
403
+ "accuracy": 0.796875,
404
+ "epoch": 0.075,
405
+ "step": 30
406
+ },
407
+ {
408
+ "epoch": 0.0775,
409
+ "grad_norm": 12.47424030303955,
410
+ "learning_rate": 2.9131578947368423e-06,
411
+ "loss": 0.463,
412
+ "step": 31
413
+ },
414
+ {
415
+ "Batch Mean": 0.2412339150905609,
416
+ "accuracy": 0.7578125,
417
+ "epoch": 0.0775,
418
+ "step": 31
419
+ },
420
+ {
421
+ "epoch": 0.08,
422
+ "grad_norm": 9.769195556640625,
423
+ "learning_rate": 2.905263157894737e-06,
424
+ "loss": 0.5412,
425
+ "step": 32
426
+ },
427
+ {
428
+ "Batch Mean": -0.5602660179138184,
429
+ "accuracy": 0.7109375,
430
+ "epoch": 0.08,
431
+ "step": 32
432
+ },
433
+ {
434
+ "epoch": 0.0825,
435
+ "grad_norm": 11.323891639709473,
436
+ "learning_rate": 2.8973684210526318e-06,
437
+ "loss": 0.5601,
438
+ "step": 33
439
+ },
440
+ {
441
+ "Batch Mean": -0.8669416904449463,
442
+ "accuracy": 0.7734375,
443
+ "epoch": 0.0825,
444
+ "step": 33
445
+ },
446
+ {
447
+ "epoch": 0.085,
448
+ "grad_norm": 15.461758613586426,
449
+ "learning_rate": 2.8894736842105265e-06,
450
+ "loss": 0.5147,
451
+ "step": 34
452
+ },
453
+ {
454
+ "Batch Mean": -0.7635477781295776,
455
+ "accuracy": 0.75,
456
+ "epoch": 0.085,
457
+ "step": 34
458
+ },
459
+ {
460
+ "epoch": 0.0875,
461
+ "grad_norm": 14.736496925354004,
462
+ "learning_rate": 2.8815789473684213e-06,
463
+ "loss": 0.5421,
464
+ "step": 35
465
+ },
466
+ {
467
+ "Batch Mean": -0.5088728070259094,
468
+ "accuracy": 0.734375,
469
+ "epoch": 0.0875,
470
+ "step": 35
471
+ },
472
+ {
473
+ "epoch": 0.09,
474
+ "grad_norm": 11.982501029968262,
475
+ "learning_rate": 2.873684210526316e-06,
476
+ "loss": 0.5234,
477
+ "step": 36
478
+ },
479
+ {
480
+ "Batch Mean": -0.03705340623855591,
481
+ "accuracy": 0.7578125,
482
+ "epoch": 0.09,
483
+ "step": 36
484
+ },
485
+ {
486
+ "epoch": 0.0925,
487
+ "grad_norm": 7.854848861694336,
488
+ "learning_rate": 2.8657894736842103e-06,
489
+ "loss": 0.4996,
490
+ "step": 37
491
+ },
492
+ {
493
+ "Batch Mean": 0.5426892042160034,
494
+ "accuracy": 0.734375,
495
+ "epoch": 0.0925,
496
+ "step": 37
497
+ },
498
+ {
499
+ "epoch": 0.095,
500
+ "grad_norm": 10.834790229797363,
501
+ "learning_rate": 2.857894736842105e-06,
502
+ "loss": 0.5187,
503
+ "step": 38
504
+ },
505
+ {
506
+ "Batch Mean": 0.4622654914855957,
507
+ "accuracy": 0.7734375,
508
+ "epoch": 0.095,
509
+ "step": 38
510
+ },
511
+ {
512
+ "epoch": 0.0975,
513
+ "grad_norm": 10.764225959777832,
514
+ "learning_rate": 2.85e-06,
515
+ "loss": 0.4723,
516
+ "step": 39
517
+ },
518
+ {
519
+ "Batch Mean": 0.18012571334838867,
520
+ "accuracy": 0.7890625,
521
+ "epoch": 0.0975,
522
+ "step": 39
523
+ },
524
+ {
525
+ "epoch": 0.1,
526
+ "grad_norm": 9.500924110412598,
527
+ "learning_rate": 2.8421052631578946e-06,
528
+ "loss": 0.4545,
529
+ "step": 40
530
+ },
531
+ {
532
+ "Batch Mean": -0.05992317199707031,
533
+ "accuracy": 0.7890625,
534
+ "epoch": 0.1,
535
+ "step": 40
536
+ },
537
+ {
538
+ "epoch": 0.1025,
539
+ "grad_norm": 8.079994201660156,
540
+ "learning_rate": 2.8342105263157897e-06,
541
+ "loss": 0.49,
542
+ "step": 41
543
+ },
544
+ {
545
+ "Batch Mean": 0.04392993450164795,
546
+ "accuracy": 0.8515625,
547
+ "epoch": 0.1025,
548
+ "step": 41
549
+ },
550
+ {
551
+ "epoch": 0.105,
552
+ "grad_norm": 10.184918403625488,
553
+ "learning_rate": 2.8263157894736845e-06,
554
+ "loss": 0.3789,
555
+ "step": 42
556
+ },
557
+ {
558
+ "Batch Mean": -0.2515716552734375,
559
+ "accuracy": 0.8046875,
560
+ "epoch": 0.105,
561
+ "step": 42
562
+ },
563
+ {
564
+ "epoch": 0.1075,
565
+ "grad_norm": 9.894248008728027,
566
+ "learning_rate": 2.8184210526315792e-06,
567
+ "loss": 0.435,
568
+ "step": 43
569
+ },
570
+ {
571
+ "Batch Mean": 0.15310335159301758,
572
+ "accuracy": 0.7734375,
573
+ "epoch": 0.1075,
574
+ "step": 43
575
+ },
576
+ {
577
+ "epoch": 0.11,
578
+ "grad_norm": 10.671575546264648,
579
+ "learning_rate": 2.810526315789474e-06,
580
+ "loss": 0.4291,
581
+ "step": 44
582
+ },
583
+ {
584
+ "Batch Mean": 0.2563772201538086,
585
+ "accuracy": 0.765625,
586
+ "epoch": 0.11,
587
+ "step": 44
588
+ },
589
+ {
590
+ "epoch": 0.1125,
591
+ "grad_norm": 10.690945625305176,
592
+ "learning_rate": 2.8026315789473687e-06,
593
+ "loss": 0.4812,
594
+ "step": 45
595
+ },
596
+ {
597
+ "Batch Mean": 0.046463966369628906,
598
+ "accuracy": 0.875,
599
+ "epoch": 0.1125,
600
+ "step": 45
601
+ },
602
+ {
603
+ "epoch": 0.115,
604
+ "grad_norm": 9.616545677185059,
605
+ "learning_rate": 2.7947368421052635e-06,
606
+ "loss": 0.3082,
607
+ "step": 46
608
+ },
609
+ {
610
+ "Batch Mean": 0.11115455627441406,
611
+ "accuracy": 0.75,
612
+ "epoch": 0.115,
613
+ "step": 46
614
+ },
615
+ {
616
+ "epoch": 0.1175,
617
+ "grad_norm": 15.726456642150879,
618
+ "learning_rate": 2.7868421052631578e-06,
619
+ "loss": 0.5576,
620
+ "step": 47
621
+ },
622
+ {
623
+ "Batch Mean": 0.2878689765930176,
624
+ "accuracy": 0.8125,
625
+ "epoch": 0.1175,
626
+ "step": 47
627
+ },
628
+ {
629
+ "epoch": 0.12,
630
+ "grad_norm": 11.675898551940918,
631
+ "learning_rate": 2.7789473684210525e-06,
632
+ "loss": 0.472,
633
+ "step": 48
634
+ },
635
+ {
636
+ "Batch Mean": -0.25928783416748047,
637
+ "accuracy": 0.75,
638
+ "epoch": 0.12,
639
+ "step": 48
640
+ },
641
+ {
642
+ "epoch": 0.1225,
643
+ "grad_norm": 15.394309997558594,
644
+ "learning_rate": 2.7710526315789473e-06,
645
+ "loss": 0.5011,
646
+ "step": 49
647
+ },
648
+ {
649
+ "Batch Mean": -0.2885439097881317,
650
+ "accuracy": 0.703125,
651
+ "epoch": 0.1225,
652
+ "step": 49
653
+ },
654
+ {
655
+ "epoch": 0.125,
656
+ "grad_norm": 15.69314956665039,
657
+ "learning_rate": 2.763157894736842e-06,
658
+ "loss": 0.5974,
659
+ "step": 50
660
+ },
661
+ {
662
+ "Batch Mean": -0.8389434814453125,
663
+ "accuracy": 0.8046875,
664
+ "epoch": 0.125,
665
+ "step": 50
666
+ },
667
+ {
668
+ "epoch": 0.1275,
669
+ "grad_norm": 16.744606018066406,
670
+ "learning_rate": 2.7552631578947368e-06,
671
+ "loss": 0.5151,
672
+ "step": 51
673
+ },
674
+ {
675
+ "Batch Mean": -0.6685854196548462,
676
+ "accuracy": 0.703125,
677
+ "epoch": 0.1275,
678
+ "step": 51
679
+ },
680
+ {
681
+ "epoch": 0.13,
682
+ "grad_norm": 15.530059814453125,
683
+ "learning_rate": 2.7473684210526315e-06,
684
+ "loss": 0.5502,
685
+ "step": 52
686
+ },
687
+ {
688
+ "Batch Mean": -0.5919044017791748,
689
+ "accuracy": 0.71875,
690
+ "epoch": 0.13,
691
+ "step": 52
692
+ },
693
+ {
694
+ "epoch": 0.1325,
695
+ "grad_norm": 15.14562702178955,
696
+ "learning_rate": 2.7394736842105263e-06,
697
+ "loss": 0.5305,
698
+ "step": 53
699
+ },
700
+ {
701
+ "Batch Mean": -0.11876988410949707,
702
+ "accuracy": 0.75,
703
+ "epoch": 0.1325,
704
+ "step": 53
705
+ },
706
+ {
707
+ "epoch": 0.135,
708
+ "grad_norm": 7.011972427368164,
709
+ "learning_rate": 2.7315789473684214e-06,
710
+ "loss": 0.4802,
711
+ "step": 54
712
+ },
713
+ {
714
+ "Batch Mean": 0.09675300121307373,
715
+ "accuracy": 0.7578125,
716
+ "epoch": 0.135,
717
+ "step": 54
718
+ },
719
+ {
720
+ "epoch": 0.1375,
721
+ "grad_norm": 8.37578010559082,
722
+ "learning_rate": 2.723684210526316e-06,
723
+ "loss": 0.4354,
724
+ "step": 55
725
+ },
726
+ {
727
+ "Batch Mean": 0.3877286911010742,
728
+ "accuracy": 0.8046875,
729
+ "epoch": 0.1375,
730
+ "step": 55
731
+ },
732
+ {
733
+ "epoch": 0.14,
734
+ "grad_norm": 8.380095481872559,
735
+ "learning_rate": 2.715789473684211e-06,
736
+ "loss": 0.4114,
737
+ "step": 56
738
+ },
739
+ {
740
+ "Batch Mean": 0.7472854852676392,
741
+ "accuracy": 0.8046875,
742
+ "epoch": 0.14,
743
+ "step": 56
744
+ },
745
+ {
746
+ "epoch": 0.1425,
747
+ "grad_norm": 12.794017791748047,
748
+ "learning_rate": 2.7078947368421052e-06,
749
+ "loss": 0.465,
750
+ "step": 57
751
+ },
752
+ {
753
+ "Batch Mean": 0.5131087303161621,
754
+ "accuracy": 0.8046875,
755
+ "epoch": 0.1425,
756
+ "step": 57
757
+ },
758
+ {
759
+ "epoch": 0.145,
760
+ "grad_norm": 8.367005348205566,
761
+ "learning_rate": 2.7e-06,
762
+ "loss": 0.4407,
763
+ "step": 58
764
+ },
765
+ {
766
+ "Batch Mean": 0.5741372108459473,
767
+ "accuracy": 0.8515625,
768
+ "epoch": 0.145,
769
+ "step": 58
770
+ },
771
+ {
772
+ "epoch": 0.1475,
773
+ "grad_norm": 9.066951751708984,
774
+ "learning_rate": 2.6921052631578947e-06,
775
+ "loss": 0.4468,
776
+ "step": 59
777
+ },
778
+ {
779
+ "Batch Mean": 0.169053316116333,
780
+ "accuracy": 0.734375,
781
+ "epoch": 0.1475,
782
+ "step": 59
783
+ },
784
+ {
785
+ "epoch": 0.15,
786
+ "grad_norm": 6.888144016265869,
787
+ "learning_rate": 2.6842105263157895e-06,
788
+ "loss": 0.4849,
789
+ "step": 60
790
+ },
791
+ {
792
+ "Batch Mean": -0.18010663986206055,
793
+ "accuracy": 0.765625,
794
+ "epoch": 0.15,
795
+ "step": 60
796
+ },
797
+ {
798
+ "epoch": 0.1525,
799
+ "grad_norm": 6.846613883972168,
800
+ "learning_rate": 2.6763157894736842e-06,
801
+ "loss": 0.4643,
802
+ "step": 61
803
+ },
804
+ {
805
+ "Batch Mean": -0.4085197448730469,
806
+ "accuracy": 0.8359375,
807
+ "epoch": 0.1525,
808
+ "step": 61
809
+ },
810
+ {
811
+ "epoch": 0.155,
812
+ "grad_norm": 7.677695274353027,
813
+ "learning_rate": 2.668421052631579e-06,
814
+ "loss": 0.3926,
815
+ "step": 62
816
+ },
817
+ {
818
+ "Batch Mean": -0.48792409896850586,
819
+ "accuracy": 0.828125,
820
+ "epoch": 0.155,
821
+ "step": 62
822
+ },
823
+ {
824
+ "epoch": 0.1575,
825
+ "grad_norm": 8.656214714050293,
826
+ "learning_rate": 2.6605263157894737e-06,
827
+ "loss": 0.4116,
828
+ "step": 63
829
+ },
830
+ {
831
+ "Batch Mean": -0.19100165367126465,
832
+ "accuracy": 0.7734375,
833
+ "epoch": 0.1575,
834
+ "step": 63
835
+ },
836
+ {
837
+ "epoch": 0.16,
838
+ "grad_norm": 9.927976608276367,
839
+ "learning_rate": 2.6526315789473685e-06,
840
+ "loss": 0.4395,
841
+ "step": 64
842
+ },
843
+ {
844
+ "Batch Mean": 0.025106430053710938,
845
+ "accuracy": 0.8046875,
846
+ "epoch": 0.16,
847
+ "step": 64
848
+ },
849
+ {
850
+ "epoch": 0.1625,
851
+ "grad_norm": 8.97470474243164,
852
+ "learning_rate": 2.644736842105263e-06,
853
+ "loss": 0.4632,
854
+ "step": 65
855
+ },
856
+ {
857
+ "Batch Mean": 0.4497801661491394,
858
+ "accuracy": 0.796875,
859
+ "epoch": 0.1625,
860
+ "step": 65
861
+ },
862
+ {
863
+ "epoch": 0.165,
864
+ "grad_norm": 11.160425186157227,
865
+ "learning_rate": 2.636842105263158e-06,
866
+ "loss": 0.5073,
867
+ "step": 66
868
+ },
869
+ {
870
+ "Batch Mean": 0.6494235992431641,
871
+ "accuracy": 0.8203125,
872
+ "epoch": 0.165,
873
+ "step": 66
874
+ },
875
+ {
876
+ "epoch": 0.1675,
877
+ "grad_norm": 11.464187622070312,
878
+ "learning_rate": 2.6289473684210527e-06,
879
+ "loss": 0.4467,
880
+ "step": 67
881
+ },
882
+ {
883
+ "Batch Mean": -0.17097759246826172,
884
+ "accuracy": 0.828125,
885
+ "epoch": 0.1675,
886
+ "step": 67
887
+ },
888
+ {
889
+ "epoch": 0.17,
890
+ "grad_norm": 8.820326805114746,
891
+ "learning_rate": 2.6210526315789474e-06,
892
+ "loss": 0.4543,
893
+ "step": 68
894
+ },
895
+ {
896
+ "Batch Mean": -0.1554449200630188,
897
+ "accuracy": 0.8046875,
898
+ "epoch": 0.17,
899
+ "step": 68
900
+ },
901
+ {
902
+ "epoch": 0.1725,
903
+ "grad_norm": 9.248348236083984,
904
+ "learning_rate": 2.613157894736842e-06,
905
+ "loss": 0.3796,
906
+ "step": 69
907
+ },
908
+ {
909
+ "Batch Mean": -0.21274375915527344,
910
+ "accuracy": 0.75,
911
+ "epoch": 0.1725,
912
+ "step": 69
913
+ },
914
+ {
915
+ "epoch": 0.175,
916
+ "grad_norm": 8.15241813659668,
917
+ "learning_rate": 2.605263157894737e-06,
918
+ "loss": 0.4445,
919
+ "step": 70
920
+ },
921
+ {
922
+ "Batch Mean": -0.06371593475341797,
923
+ "accuracy": 0.765625,
924
+ "epoch": 0.175,
925
+ "step": 70
926
+ },
927
+ {
928
+ "epoch": 0.1775,
929
+ "grad_norm": 6.543805122375488,
930
+ "learning_rate": 2.5973684210526317e-06,
931
+ "loss": 0.4376,
932
+ "step": 71
933
+ },
934
+ {
935
+ "Batch Mean": -0.10743597149848938,
936
+ "accuracy": 0.7265625,
937
+ "epoch": 0.1775,
938
+ "step": 71
939
+ },
940
+ {
941
+ "epoch": 0.18,
942
+ "grad_norm": 7.594844341278076,
943
+ "learning_rate": 2.5894736842105264e-06,
944
+ "loss": 0.4363,
945
+ "step": 72
946
+ },
947
+ {
948
+ "Batch Mean": 0.08045387268066406,
949
+ "accuracy": 0.84375,
950
+ "epoch": 0.18,
951
+ "step": 72
952
+ },
953
+ {
954
+ "epoch": 0.1825,
955
+ "grad_norm": 7.977687835693359,
956
+ "learning_rate": 2.581578947368421e-06,
957
+ "loss": 0.3616,
958
+ "step": 73
959
+ },
960
+ {
961
+ "Batch Mean": -0.11765336990356445,
962
+ "accuracy": 0.796875,
963
+ "epoch": 0.1825,
964
+ "step": 73
965
+ },
966
+ {
967
+ "epoch": 0.185,
968
+ "grad_norm": 6.521571636199951,
969
+ "learning_rate": 2.573684210526316e-06,
970
+ "loss": 0.4001,
971
+ "step": 74
972
+ },
973
+ {
974
+ "Batch Mean": 0.0607762336730957,
975
+ "accuracy": 0.703125,
976
+ "epoch": 0.185,
977
+ "step": 74
978
+ },
979
+ {
980
+ "epoch": 0.1875,
981
+ "grad_norm": 8.15623950958252,
982
+ "learning_rate": 2.5657894736842107e-06,
983
+ "loss": 0.4941,
984
+ "step": 75
985
+ },
986
+ {
987
+ "Batch Mean": 0.4910193681716919,
988
+ "accuracy": 0.8046875,
989
+ "epoch": 0.1875,
990
+ "step": 75
991
+ },
992
+ {
993
+ "epoch": 0.19,
994
+ "grad_norm": 9.602405548095703,
995
+ "learning_rate": 2.5578947368421054e-06,
996
+ "loss": 0.4224,
997
+ "step": 76
998
+ },
999
+ {
1000
+ "Batch Mean": 0.06563162803649902,
1001
+ "accuracy": 0.8046875,
1002
+ "epoch": 0.19,
1003
+ "step": 76
1004
+ },
1005
+ {
1006
+ "epoch": 0.1925,
1007
+ "grad_norm": 6.577213764190674,
1008
+ "learning_rate": 2.55e-06,
1009
+ "loss": 0.4047,
1010
+ "step": 77
1011
+ },
1012
+ {
1013
+ "Batch Mean": -0.08942317962646484,
1014
+ "accuracy": 0.8046875,
1015
+ "epoch": 0.1925,
1016
+ "step": 77
1017
+ },
1018
+ {
1019
+ "epoch": 0.195,
1020
+ "grad_norm": 16.202590942382812,
1021
+ "learning_rate": 2.542105263157895e-06,
1022
+ "loss": 0.4418,
1023
+ "step": 78
1024
+ },
1025
+ {
1026
+ "Batch Mean": -0.37958288192749023,
1027
+ "accuracy": 0.8125,
1028
+ "epoch": 0.195,
1029
+ "step": 78
1030
+ },
1031
+ {
1032
+ "epoch": 0.1975,
1033
+ "grad_norm": 23.45298194885254,
1034
+ "learning_rate": 2.5342105263157892e-06,
1035
+ "loss": 0.391,
1036
+ "step": 79
1037
+ },
1038
+ {
1039
+ "Batch Mean": -0.5664916038513184,
1040
+ "accuracy": 0.8125,
1041
+ "epoch": 0.1975,
1042
+ "step": 79
1043
+ },
1044
+ {
1045
+ "epoch": 0.2,
1046
+ "grad_norm": 10.679176330566406,
1047
+ "learning_rate": 2.526315789473684e-06,
1048
+ "loss": 0.4402,
1049
+ "step": 80
1050
+ },
1051
+ {
1052
+ "Batch Mean": -0.31339550018310547,
1053
+ "accuracy": 0.8359375,
1054
+ "epoch": 0.2,
1055
+ "step": 80
1056
+ },
1057
+ {
1058
+ "epoch": 0.2025,
1059
+ "grad_norm": 16.459426879882812,
1060
+ "learning_rate": 2.5184210526315787e-06,
1061
+ "loss": 0.3765,
1062
+ "step": 81
1063
+ },
1064
+ {
1065
+ "Batch Mean": 0.20376300811767578,
1066
+ "accuracy": 0.78125,
1067
+ "epoch": 0.2025,
1068
+ "step": 81
1069
+ },
1070
+ {
1071
+ "epoch": 0.205,
1072
+ "grad_norm": 8.887246131896973,
1073
+ "learning_rate": 2.510526315789474e-06,
1074
+ "loss": 0.4509,
1075
+ "step": 82
1076
+ },
1077
+ {
1078
+ "Batch Mean": -0.054105013608932495,
1079
+ "accuracy": 0.796875,
1080
+ "epoch": 0.205,
1081
+ "step": 82
1082
+ },
1083
+ {
1084
+ "epoch": 0.2075,
1085
+ "grad_norm": 8.116570472717285,
1086
+ "learning_rate": 2.5026315789473686e-06,
1087
+ "loss": 0.3906,
1088
+ "step": 83
1089
+ },
1090
+ {
1091
+ "Batch Mean": 0.4383058547973633,
1092
+ "accuracy": 0.875,
1093
+ "epoch": 0.2075,
1094
+ "step": 83
1095
+ },
1096
+ {
1097
+ "epoch": 0.21,
1098
+ "grad_norm": 9.300606727600098,
1099
+ "learning_rate": 2.4947368421052634e-06,
1100
+ "loss": 0.3099,
1101
+ "step": 84
1102
+ },
1103
+ {
1104
+ "Batch Mean": 0.4242062568664551,
1105
+ "accuracy": 0.7890625,
1106
+ "epoch": 0.21,
1107
+ "step": 84
1108
+ },
1109
+ {
1110
+ "epoch": 0.2125,
1111
+ "grad_norm": 8.7870512008667,
1112
+ "learning_rate": 2.486842105263158e-06,
1113
+ "loss": 0.3996,
1114
+ "step": 85
1115
+ },
1116
+ {
1117
+ "Batch Mean": 0.22194945812225342,
1118
+ "accuracy": 0.78125,
1119
+ "epoch": 0.2125,
1120
+ "step": 85
1121
+ },
1122
+ {
1123
+ "epoch": 0.215,
1124
+ "grad_norm": 8.691889762878418,
1125
+ "learning_rate": 2.478947368421053e-06,
1126
+ "loss": 0.4512,
1127
+ "step": 86
1128
+ },
1129
+ {
1130
+ "Batch Mean": -0.14107918739318848,
1131
+ "accuracy": 0.8359375,
1132
+ "epoch": 0.215,
1133
+ "step": 86
1134
+ },
1135
+ {
1136
+ "epoch": 0.2175,
1137
+ "grad_norm": 7.0445146560668945,
1138
+ "learning_rate": 2.4710526315789476e-06,
1139
+ "loss": 0.3771,
1140
+ "step": 87
1141
+ },
1142
+ {
1143
+ "Batch Mean": -0.35906583070755005,
1144
+ "accuracy": 0.765625,
1145
+ "epoch": 0.2175,
1146
+ "step": 87
1147
+ },
1148
+ {
1149
+ "epoch": 0.22,
1150
+ "grad_norm": 9.609421730041504,
1151
+ "learning_rate": 2.4631578947368424e-06,
1152
+ "loss": 0.4558,
1153
+ "step": 88
1154
+ },
1155
+ {
1156
+ "Batch Mean": -0.45313501358032227,
1157
+ "accuracy": 0.828125,
1158
+ "epoch": 0.22,
1159
+ "step": 88
1160
+ },
1161
+ {
1162
+ "epoch": 0.2225,
1163
+ "grad_norm": 9.091865539550781,
1164
+ "learning_rate": 2.4552631578947367e-06,
1165
+ "loss": 0.4292,
1166
+ "step": 89
1167
+ },
1168
+ {
1169
+ "Batch Mean": -0.35767626762390137,
1170
+ "accuracy": 0.8359375,
1171
+ "epoch": 0.2225,
1172
+ "step": 89
1173
+ },
1174
+ {
1175
+ "epoch": 0.225,
1176
+ "grad_norm": 7.811399459838867,
1177
+ "learning_rate": 2.4473684210526314e-06,
1178
+ "loss": 0.3823,
1179
+ "step": 90
1180
+ },
1181
+ {
1182
+ "Batch Mean": 0.0022423267364501953,
1183
+ "accuracy": 0.8046875,
1184
+ "epoch": 0.225,
1185
+ "step": 90
1186
+ },
1187
+ {
1188
+ "epoch": 0.2275,
1189
+ "grad_norm": 7.804200172424316,
1190
+ "learning_rate": 2.439473684210526e-06,
1191
+ "loss": 0.4079,
1192
+ "step": 91
1193
+ },
1194
+ {
1195
+ "Batch Mean": 0.17678523063659668,
1196
+ "accuracy": 0.8046875,
1197
+ "epoch": 0.2275,
1198
+ "step": 91
1199
+ },
1200
+ {
1201
+ "epoch": 0.23,
1202
+ "grad_norm": 7.715360641479492,
1203
+ "learning_rate": 2.431578947368421e-06,
1204
+ "loss": 0.391,
1205
+ "step": 92
1206
+ },
1207
+ {
1208
+ "Batch Mean": -0.22452354431152344,
1209
+ "accuracy": 0.8203125,
1210
+ "epoch": 0.23,
1211
+ "step": 92
1212
+ },
1213
+ {
1214
+ "epoch": 0.2325,
1215
+ "grad_norm": 7.197687149047852,
1216
+ "learning_rate": 2.4236842105263157e-06,
1217
+ "loss": 0.3864,
1218
+ "step": 93
1219
+ },
1220
+ {
1221
+ "Batch Mean": 0.30264759063720703,
1222
+ "accuracy": 0.84375,
1223
+ "epoch": 0.2325,
1224
+ "step": 93
1225
+ },
1226
+ {
1227
+ "epoch": 0.235,
1228
+ "grad_norm": 7.754411697387695,
1229
+ "learning_rate": 2.4157894736842104e-06,
1230
+ "loss": 0.3939,
1231
+ "step": 94
1232
+ },
1233
+ {
1234
+ "Batch Mean": -0.2516747713088989,
1235
+ "accuracy": 0.7890625,
1236
+ "epoch": 0.235,
1237
+ "step": 94
1238
+ },
1239
+ {
1240
+ "epoch": 0.2375,
1241
+ "grad_norm": 8.55639362335205,
1242
+ "learning_rate": 2.4078947368421056e-06,
1243
+ "loss": 0.4671,
1244
+ "step": 95
1245
+ },
1246
+ {
1247
+ "Batch Mean": -0.15928316116333008,
1248
+ "accuracy": 0.8046875,
1249
+ "epoch": 0.2375,
1250
+ "step": 95
1251
+ },
1252
+ {
1253
+ "epoch": 0.24,
1254
+ "grad_norm": 7.463867664337158,
1255
+ "learning_rate": 2.4000000000000003e-06,
1256
+ "loss": 0.471,
1257
+ "step": 96
1258
+ },
1259
+ {
1260
+ "Batch Mean": -0.0638132095336914,
1261
+ "accuracy": 0.8125,
1262
+ "epoch": 0.24,
1263
+ "step": 96
1264
+ },
1265
+ {
1266
+ "epoch": 0.2425,
1267
+ "grad_norm": 6.797260761260986,
1268
+ "learning_rate": 2.392105263157895e-06,
1269
+ "loss": 0.3892,
1270
+ "step": 97
1271
+ },
1272
+ {
1273
+ "Batch Mean": -0.08082282543182373,
1274
+ "accuracy": 0.8203125,
1275
+ "epoch": 0.2425,
1276
+ "step": 97
1277
+ },
1278
+ {
1279
+ "epoch": 0.245,
1280
+ "grad_norm": 7.096107482910156,
1281
+ "learning_rate": 2.38421052631579e-06,
1282
+ "loss": 0.3942,
1283
+ "step": 98
1284
+ },
1285
+ {
1286
+ "Batch Mean": 0.3185189962387085,
1287
+ "accuracy": 0.796875,
1288
+ "epoch": 0.245,
1289
+ "step": 98
1290
+ },
1291
+ {
1292
+ "epoch": 0.2475,
1293
+ "grad_norm": 9.447708129882812,
1294
+ "learning_rate": 2.376315789473684e-06,
1295
+ "loss": 0.5037,
1296
+ "step": 99
1297
+ },
1298
+ {
1299
+ "Batch Mean": 0.26651012897491455,
1300
+ "accuracy": 0.890625,
1301
+ "epoch": 0.2475,
1302
+ "step": 99
1303
+ },
1304
+ {
1305
+ "epoch": 0.25,
1306
+ "grad_norm": 9.391190528869629,
1307
+ "learning_rate": 2.368421052631579e-06,
1308
+ "loss": 0.3352,
1309
+ "step": 100
1310
+ },
1311
+ {
1312
+ "Batch Mean": -0.0040132105350494385,
1313
+ "accuracy": 0.7578125,
1314
+ "epoch": 0.25,
1315
+ "step": 100
1316
+ },
1317
+ {
1318
+ "epoch": 0.2525,
1319
+ "grad_norm": 7.999260425567627,
1320
+ "learning_rate": 2.3605263157894736e-06,
1321
+ "loss": 0.4583,
1322
+ "step": 101
1323
+ },
1324
+ {
1325
+ "Batch Mean": 0.13753342628479004,
1326
+ "accuracy": 0.8125,
1327
+ "epoch": 0.2525,
1328
+ "step": 101
1329
+ },
1330
+ {
1331
+ "epoch": 0.255,
1332
+ "grad_norm": 7.398046493530273,
1333
+ "learning_rate": 2.3526315789473684e-06,
1334
+ "loss": 0.3847,
1335
+ "step": 102
1336
+ },
1337
+ {
1338
+ "Batch Mean": 0.15256333351135254,
1339
+ "accuracy": 0.8671875,
1340
+ "epoch": 0.255,
1341
+ "step": 102
1342
+ },
1343
+ {
1344
+ "epoch": 0.2575,
1345
+ "grad_norm": 7.636544227600098,
1346
+ "learning_rate": 2.344736842105263e-06,
1347
+ "loss": 0.332,
1348
+ "step": 103
1349
+ },
1350
+ {
1351
+ "Batch Mean": -0.2140512466430664,
1352
+ "accuracy": 0.75,
1353
+ "epoch": 0.2575,
1354
+ "step": 103
1355
+ },
1356
+ {
1357
+ "epoch": 0.26,
1358
+ "grad_norm": 8.101052284240723,
1359
+ "learning_rate": 2.336842105263158e-06,
1360
+ "loss": 0.4434,
1361
+ "step": 104
1362
+ },
1363
+ {
1364
+ "Batch Mean": -0.2993035316467285,
1365
+ "accuracy": 0.8359375,
1366
+ "epoch": 0.26,
1367
+ "step": 104
1368
+ },
1369
+ {
1370
+ "epoch": 0.2625,
1371
+ "grad_norm": 7.990828514099121,
1372
+ "learning_rate": 2.3289473684210526e-06,
1373
+ "loss": 0.3701,
1374
+ "step": 105
1375
+ },
1376
+ {
1377
+ "Batch Mean": -0.0038167238235473633,
1378
+ "accuracy": 0.796875,
1379
+ "epoch": 0.2625,
1380
+ "step": 105
1381
+ },
1382
+ {
1383
+ "epoch": 0.265,
1384
+ "grad_norm": 6.86246919631958,
1385
+ "learning_rate": 2.3210526315789473e-06,
1386
+ "loss": 0.3546,
1387
+ "step": 106
1388
+ },
1389
+ {
1390
+ "Batch Mean": 0.4233437776565552,
1391
+ "accuracy": 0.796875,
1392
+ "epoch": 0.265,
1393
+ "step": 106
1394
+ },
1395
+ {
1396
+ "epoch": 0.2675,
1397
+ "grad_norm": 9.27191162109375,
1398
+ "learning_rate": 2.313157894736842e-06,
1399
+ "loss": 0.414,
1400
+ "step": 107
1401
+ },
1402
+ {
1403
+ "Batch Mean": 0.5853117108345032,
1404
+ "accuracy": 0.8046875,
1405
+ "epoch": 0.2675,
1406
+ "step": 107
1407
+ },
1408
+ {
1409
+ "epoch": 0.27,
1410
+ "grad_norm": 12.894753456115723,
1411
+ "learning_rate": 2.305263157894737e-06,
1412
+ "loss": 0.4258,
1413
+ "step": 108
1414
+ },
1415
+ {
1416
+ "Batch Mean": 0.07786870002746582,
1417
+ "accuracy": 0.8203125,
1418
+ "epoch": 0.27,
1419
+ "step": 108
1420
+ },
1421
+ {
1422
+ "epoch": 0.2725,
1423
+ "grad_norm": 10.551774024963379,
1424
+ "learning_rate": 2.2973684210526316e-06,
1425
+ "loss": 0.455,
1426
+ "step": 109
1427
+ },
1428
+ {
1429
+ "Batch Mean": 0.003017425537109375,
1430
+ "accuracy": 0.8515625,
1431
+ "epoch": 0.2725,
1432
+ "step": 109
1433
+ },
1434
+ {
1435
+ "epoch": 0.275,
1436
+ "grad_norm": 8.059015274047852,
1437
+ "learning_rate": 2.2894736842105263e-06,
1438
+ "loss": 0.3559,
1439
+ "step": 110
1440
+ },
1441
+ {
1442
+ "Batch Mean": 0.08839225769042969,
1443
+ "accuracy": 0.859375,
1444
+ "epoch": 0.275,
1445
+ "step": 110
1446
+ },
1447
+ {
1448
+ "epoch": 0.2775,
1449
+ "grad_norm": 7.2062530517578125,
1450
+ "learning_rate": 2.281578947368421e-06,
1451
+ "loss": 0.2765,
1452
+ "step": 111
1453
+ },
1454
+ {
1455
+ "Batch Mean": -0.4452195167541504,
1456
+ "accuracy": 0.890625,
1457
+ "epoch": 0.2775,
1458
+ "step": 111
1459
+ },
1460
+ {
1461
+ "epoch": 0.28,
1462
+ "grad_norm": 9.328097343444824,
1463
+ "learning_rate": 2.273684210526316e-06,
1464
+ "loss": 0.2535,
1465
+ "step": 112
1466
+ },
1467
+ {
1468
+ "Batch Mean": -0.2987861633300781,
1469
+ "accuracy": 0.828125,
1470
+ "epoch": 0.28,
1471
+ "step": 112
1472
+ },
1473
+ {
1474
+ "epoch": 0.2825,
1475
+ "grad_norm": 10.32376766204834,
1476
+ "learning_rate": 2.2657894736842106e-06,
1477
+ "loss": 0.4152,
1478
+ "step": 113
1479
+ },
1480
+ {
1481
+ "Batch Mean": -0.05189800262451172,
1482
+ "accuracy": 0.875,
1483
+ "epoch": 0.2825,
1484
+ "step": 113
1485
+ },
1486
+ {
1487
+ "epoch": 0.285,
1488
+ "grad_norm": 7.734317779541016,
1489
+ "learning_rate": 2.2578947368421053e-06,
1490
+ "loss": 0.2874,
1491
+ "step": 114
1492
+ },
1493
+ {
1494
+ "Batch Mean": 0.8154248595237732,
1495
+ "accuracy": 0.7578125,
1496
+ "epoch": 0.285,
1497
+ "step": 114
1498
+ },
1499
+ {
1500
+ "epoch": 0.2875,
1501
+ "grad_norm": 16.42246437072754,
1502
+ "learning_rate": 2.25e-06,
1503
+ "loss": 0.517,
1504
+ "step": 115
1505
+ },
1506
+ {
1507
+ "Batch Mean": 0.2764568328857422,
1508
+ "accuracy": 0.8203125,
1509
+ "epoch": 0.2875,
1510
+ "step": 115
1511
+ },
1512
+ {
1513
+ "epoch": 0.29,
1514
+ "grad_norm": 10.174060821533203,
1515
+ "learning_rate": 2.242105263157895e-06,
1516
+ "loss": 0.3843,
1517
+ "step": 116
1518
+ },
1519
+ {
1520
+ "Batch Mean": -0.10035037994384766,
1521
+ "accuracy": 0.84375,
1522
+ "epoch": 0.29,
1523
+ "step": 116
1524
+ },
1525
+ {
1526
+ "epoch": 0.2925,
1527
+ "grad_norm": 7.6288161277771,
1528
+ "learning_rate": 2.2342105263157895e-06,
1529
+ "loss": 0.3509,
1530
+ "step": 117
1531
+ },
1532
+ {
1533
+ "Batch Mean": -0.22602462768554688,
1534
+ "accuracy": 0.84375,
1535
+ "epoch": 0.2925,
1536
+ "step": 117
1537
+ },
1538
+ {
1539
+ "epoch": 0.295,
1540
+ "grad_norm": 8.613261222839355,
1541
+ "learning_rate": 2.2263157894736843e-06,
1542
+ "loss": 0.3731,
1543
+ "step": 118
1544
+ },
1545
+ {
1546
+ "Batch Mean": -0.09805738925933838,
1547
+ "accuracy": 0.7265625,
1548
+ "epoch": 0.295,
1549
+ "step": 118
1550
+ },
1551
+ {
1552
+ "epoch": 0.2975,
1553
+ "grad_norm": 10.688722610473633,
1554
+ "learning_rate": 2.218421052631579e-06,
1555
+ "loss": 0.4856,
1556
+ "step": 119
1557
+ },
1558
+ {
1559
+ "Batch Mean": -0.21628332138061523,
1560
+ "accuracy": 0.8125,
1561
+ "epoch": 0.2975,
1562
+ "step": 119
1563
+ },
1564
+ {
1565
+ "epoch": 0.3,
1566
+ "grad_norm": 7.811151027679443,
1567
+ "learning_rate": 2.2105263157894738e-06,
1568
+ "loss": 0.3613,
1569
+ "step": 120
1570
+ },
1571
+ {
1572
+ "Batch Mean": -0.4057881832122803,
1573
+ "accuracy": 0.796875,
1574
+ "epoch": 0.3,
1575
+ "step": 120
1576
+ },
1577
+ {
1578
+ "epoch": 0.3025,
1579
+ "grad_norm": 8.88042163848877,
1580
+ "learning_rate": 2.2026315789473685e-06,
1581
+ "loss": 0.3821,
1582
+ "step": 121
1583
+ },
1584
+ {
1585
+ "Batch Mean": -0.3958141803741455,
1586
+ "accuracy": 0.84375,
1587
+ "epoch": 0.3025,
1588
+ "step": 121
1589
+ },
1590
+ {
1591
+ "epoch": 0.305,
1592
+ "grad_norm": 8.513867378234863,
1593
+ "learning_rate": 2.1947368421052633e-06,
1594
+ "loss": 0.3592,
1595
+ "step": 122
1596
+ },
1597
+ {
1598
+ "Batch Mean": 0.11790943145751953,
1599
+ "accuracy": 0.8671875,
1600
+ "epoch": 0.305,
1601
+ "step": 122
1602
+ },
1603
+ {
1604
+ "epoch": 0.3075,
1605
+ "grad_norm": 6.011488437652588,
1606
+ "learning_rate": 2.186842105263158e-06,
1607
+ "loss": 0.3249,
1608
+ "step": 123
1609
+ },
1610
+ {
1611
+ "Batch Mean": 0.7885537147521973,
1612
+ "accuracy": 0.84375,
1613
+ "epoch": 0.3075,
1614
+ "step": 123
1615
+ },
1616
+ {
1617
+ "epoch": 0.31,
1618
+ "grad_norm": 13.359249114990234,
1619
+ "learning_rate": 2.1789473684210528e-06,
1620
+ "loss": 0.3776,
1621
+ "step": 124
1622
+ },
1623
+ {
1624
+ "Batch Mean": 0.906917929649353,
1625
+ "accuracy": 0.8125,
1626
+ "epoch": 0.31,
1627
+ "step": 124
1628
+ },
1629
+ {
1630
+ "epoch": 0.3125,
1631
+ "grad_norm": 13.69727897644043,
1632
+ "learning_rate": 2.1710526315789475e-06,
1633
+ "loss": 0.4525,
1634
+ "step": 125
1635
+ },
1636
+ {
1637
+ "Batch Mean": 0.7685656547546387,
1638
+ "accuracy": 0.8046875,
1639
+ "epoch": 0.3125,
1640
+ "step": 125
1641
+ },
1642
+ {
1643
+ "epoch": 0.315,
1644
+ "grad_norm": 13.353426933288574,
1645
+ "learning_rate": 2.1631578947368423e-06,
1646
+ "loss": 0.3873,
1647
+ "step": 126
1648
+ },
1649
+ {
1650
+ "Batch Mean": 0.31209874153137207,
1651
+ "accuracy": 0.8515625,
1652
+ "epoch": 0.315,
1653
+ "step": 126
1654
+ },
1655
+ {
1656
+ "epoch": 0.3175,
1657
+ "grad_norm": 8.501708030700684,
1658
+ "learning_rate": 2.155263157894737e-06,
1659
+ "loss": 0.3643,
1660
+ "step": 127
1661
+ },
1662
+ {
1663
+ "Batch Mean": -0.0774112343788147,
1664
+ "accuracy": 0.8515625,
1665
+ "epoch": 0.3175,
1666
+ "step": 127
1667
+ },
1668
+ {
1669
+ "epoch": 0.32,
1670
+ "grad_norm": 6.79693078994751,
1671
+ "learning_rate": 2.1473684210526317e-06,
1672
+ "loss": 0.3361,
1673
+ "step": 128
1674
+ },
1675
+ {
1676
+ "Batch Mean": -1.1531860828399658,
1677
+ "accuracy": 0.875,
1678
+ "epoch": 0.32,
1679
+ "step": 128
1680
+ },
1681
+ {
1682
+ "epoch": 0.3225,
1683
+ "grad_norm": 18.78434181213379,
1684
+ "learning_rate": 2.1394736842105265e-06,
1685
+ "loss": 0.381,
1686
+ "step": 129
1687
+ },
1688
+ {
1689
+ "Batch Mean": -0.9209874868392944,
1690
+ "accuracy": 0.828125,
1691
+ "epoch": 0.3225,
1692
+ "step": 129
1693
+ },
1694
+ {
1695
+ "epoch": 0.325,
1696
+ "grad_norm": 15.549153327941895,
1697
+ "learning_rate": 2.1315789473684212e-06,
1698
+ "loss": 0.352,
1699
+ "step": 130
1700
+ },
1701
+ {
1702
+ "Batch Mean": -0.5993038415908813,
1703
+ "accuracy": 0.7734375,
1704
+ "epoch": 0.325,
1705
+ "step": 130
1706
+ },
1707
+ {
1708
+ "epoch": 0.3275,
1709
+ "grad_norm": 11.017681121826172,
1710
+ "learning_rate": 2.123684210526316e-06,
1711
+ "loss": 0.4731,
1712
+ "step": 131
1713
+ },
1714
+ {
1715
+ "Batch Mean": -0.5436639785766602,
1716
+ "accuracy": 0.859375,
1717
+ "epoch": 0.3275,
1718
+ "step": 131
1719
+ },
1720
+ {
1721
+ "epoch": 0.33,
1722
+ "grad_norm": 9.474353790283203,
1723
+ "learning_rate": 2.1157894736842103e-06,
1724
+ "loss": 0.3224,
1725
+ "step": 132
1726
+ },
1727
+ {
1728
+ "Batch Mean": 0.03529167175292969,
1729
+ "accuracy": 0.7890625,
1730
+ "epoch": 0.33,
1731
+ "step": 132
1732
+ },
1733
+ {
1734
+ "epoch": 0.3325,
1735
+ "grad_norm": 9.17381763458252,
1736
+ "learning_rate": 2.107894736842105e-06,
1737
+ "loss": 0.4091,
1738
+ "step": 133
1739
+ },
1740
+ {
1741
+ "Batch Mean": 0.37068402767181396,
1742
+ "accuracy": 0.7890625,
1743
+ "epoch": 0.3325,
1744
+ "step": 133
1745
+ },
1746
+ {
1747
+ "epoch": 0.335,
1748
+ "grad_norm": 8.768671035766602,
1749
+ "learning_rate": 2.1e-06,
1750
+ "loss": 0.4094,
1751
+ "step": 134
1752
+ },
1753
+ {
1754
+ "Batch Mean": 0.8418741226196289,
1755
+ "accuracy": 0.8203125,
1756
+ "epoch": 0.335,
1757
+ "step": 134
1758
+ },
1759
+ {
1760
+ "epoch": 0.3375,
1761
+ "grad_norm": 13.19222354888916,
1762
+ "learning_rate": 2.0921052631578945e-06,
1763
+ "loss": 0.4361,
1764
+ "step": 135
1765
+ },
1766
+ {
1767
+ "Batch Mean": 0.38561856746673584,
1768
+ "accuracy": 0.828125,
1769
+ "epoch": 0.3375,
1770
+ "step": 135
1771
+ },
1772
+ {
1773
+ "epoch": 0.34,
1774
+ "grad_norm": 7.658647537231445,
1775
+ "learning_rate": 2.0842105263157897e-06,
1776
+ "loss": 0.3619,
1777
+ "step": 136
1778
+ },
1779
+ {
1780
+ "Batch Mean": 0.24846503138542175,
1781
+ "accuracy": 0.8203125,
1782
+ "epoch": 0.34,
1783
+ "step": 136
1784
+ },
1785
+ {
1786
+ "epoch": 0.3425,
1787
+ "grad_norm": 6.886051654815674,
1788
+ "learning_rate": 2.0763157894736845e-06,
1789
+ "loss": 0.3778,
1790
+ "step": 137
1791
+ },
1792
+ {
1793
+ "Batch Mean": -0.3311891555786133,
1794
+ "accuracy": 0.8203125,
1795
+ "epoch": 0.3425,
1796
+ "step": 137
1797
+ },
1798
+ {
1799
+ "epoch": 0.345,
1800
+ "grad_norm": 7.944254398345947,
1801
+ "learning_rate": 2.068421052631579e-06,
1802
+ "loss": 0.3948,
1803
+ "step": 138
1804
+ },
1805
+ {
1806
+ "Batch Mean": -0.568354606628418,
1807
+ "accuracy": 0.84375,
1808
+ "epoch": 0.345,
1809
+ "step": 138
1810
+ },
1811
+ {
1812
+ "epoch": 0.3475,
1813
+ "grad_norm": 9.763813018798828,
1814
+ "learning_rate": 2.060526315789474e-06,
1815
+ "loss": 0.3355,
1816
+ "step": 139
1817
+ },
1818
+ {
1819
+ "Batch Mean": -0.39496636390686035,
1820
+ "accuracy": 0.8671875,
1821
+ "epoch": 0.3475,
1822
+ "step": 139
1823
+ },
1824
+ {
1825
+ "epoch": 0.35,
1826
+ "grad_norm": 7.516551971435547,
1827
+ "learning_rate": 2.0526315789473687e-06,
1828
+ "loss": 0.3501,
1829
+ "step": 140
1830
+ },
1831
+ {
1832
+ "Batch Mean": -0.15581655502319336,
1833
+ "accuracy": 0.828125,
1834
+ "epoch": 0.35,
1835
+ "step": 140
1836
+ },
1837
+ {
1838
+ "epoch": 0.3525,
1839
+ "grad_norm": 8.155888557434082,
1840
+ "learning_rate": 2.0447368421052634e-06,
1841
+ "loss": 0.3773,
1842
+ "step": 141
1843
+ },
1844
+ {
1845
+ "Batch Mean": 0.44981956481933594,
1846
+ "accuracy": 0.7578125,
1847
+ "epoch": 0.3525,
1848
+ "step": 141
1849
+ },
1850
+ {
1851
+ "epoch": 0.355,
1852
+ "grad_norm": 9.395730018615723,
1853
+ "learning_rate": 2.0368421052631578e-06,
1854
+ "loss": 0.4603,
1855
+ "step": 142
1856
+ },
1857
+ {
1858
+ "Batch Mean": 0.33932405710220337,
1859
+ "accuracy": 0.8125,
1860
+ "epoch": 0.355,
1861
+ "step": 142
1862
+ },
1863
+ {
1864
+ "epoch": 0.3575,
1865
+ "grad_norm": 8.501273155212402,
1866
+ "learning_rate": 2.0289473684210525e-06,
1867
+ "loss": 0.4167,
1868
+ "step": 143
1869
+ },
1870
+ {
1871
+ "Batch Mean": 0.31684207916259766,
1872
+ "accuracy": 0.875,
1873
+ "epoch": 0.3575,
1874
+ "step": 143
1875
+ },
1876
+ {
1877
+ "epoch": 0.36,
1878
+ "grad_norm": 7.186644554138184,
1879
+ "learning_rate": 2.0210526315789473e-06,
1880
+ "loss": 0.3359,
1881
+ "step": 144
1882
+ },
1883
+ {
1884
+ "Batch Mean": 0.14882159233093262,
1885
+ "accuracy": 0.8359375,
1886
+ "epoch": 0.36,
1887
+ "step": 144
1888
+ },
1889
+ {
1890
+ "epoch": 0.3625,
1891
+ "grad_norm": 7.065666675567627,
1892
+ "learning_rate": 2.013157894736842e-06,
1893
+ "loss": 0.3773,
1894
+ "step": 145
1895
+ },
1896
+ {
1897
+ "Batch Mean": 0.010605573654174805,
1898
+ "accuracy": 0.8671875,
1899
+ "epoch": 0.3625,
1900
+ "step": 145
1901
+ },
1902
+ {
1903
+ "epoch": 0.365,
1904
+ "grad_norm": 6.343169212341309,
1905
+ "learning_rate": 2.0052631578947367e-06,
1906
+ "loss": 0.3441,
1907
+ "step": 146
1908
+ },
1909
+ {
1910
+ "Batch Mean": 0.13873529434204102,
1911
+ "accuracy": 0.828125,
1912
+ "epoch": 0.365,
1913
+ "step": 146
1914
+ },
1915
+ {
1916
+ "epoch": 0.3675,
1917
+ "grad_norm": 7.586203098297119,
1918
+ "learning_rate": 1.9973684210526315e-06,
1919
+ "loss": 0.3723,
1920
+ "step": 147
1921
+ },
1922
+ {
1923
+ "Batch Mean": -0.6648737192153931,
1924
+ "accuracy": 0.7890625,
1925
+ "epoch": 0.3675,
1926
+ "step": 147
1927
+ },
1928
+ {
1929
+ "epoch": 0.37,
1930
+ "grad_norm": 11.366660118103027,
1931
+ "learning_rate": 1.9894736842105262e-06,
1932
+ "loss": 0.4372,
1933
+ "step": 148
1934
+ },
1935
+ {
1936
+ "Batch Mean": -0.3633718490600586,
1937
+ "accuracy": 0.8046875,
1938
+ "epoch": 0.37,
1939
+ "step": 148
1940
+ },
1941
+ {
1942
+ "epoch": 0.3725,
1943
+ "grad_norm": 7.831110000610352,
1944
+ "learning_rate": 1.9815789473684214e-06,
1945
+ "loss": 0.4074,
1946
+ "step": 149
1947
+ },
1948
+ {
1949
+ "Batch Mean": -0.12644743919372559,
1950
+ "accuracy": 0.8828125,
1951
+ "epoch": 0.3725,
1952
+ "step": 149
1953
+ },
1954
+ {
1955
+ "epoch": 0.375,
1956
+ "grad_norm": 6.3676371574401855,
1957
+ "learning_rate": 1.973684210526316e-06,
1958
+ "loss": 0.304,
1959
+ "step": 150
1960
+ },
1961
+ {
1962
+ "Batch Mean": 0.36059999465942383,
1963
+ "accuracy": 0.8125,
1964
+ "epoch": 0.375,
1965
+ "step": 150
1966
+ },
1967
+ {
1968
+ "epoch": 0.3775,
1969
+ "grad_norm": 8.31554889678955,
1970
+ "learning_rate": 1.965789473684211e-06,
1971
+ "loss": 0.3811,
1972
+ "step": 151
1973
+ },
1974
+ {
1975
+ "Batch Mean": 0.3979158401489258,
1976
+ "accuracy": 0.8125,
1977
+ "epoch": 0.3775,
1978
+ "step": 151
1979
+ },
1980
+ {
1981
+ "epoch": 0.38,
1982
+ "grad_norm": 9.095989227294922,
1983
+ "learning_rate": 1.9578947368421052e-06,
1984
+ "loss": 0.4376,
1985
+ "step": 152
1986
+ },
1987
+ {
1988
+ "Batch Mean": 0.443440318107605,
1989
+ "accuracy": 0.8359375,
1990
+ "epoch": 0.38,
1991
+ "step": 152
1992
+ },
1993
+ {
1994
+ "epoch": 0.3825,
1995
+ "grad_norm": 8.482221603393555,
1996
+ "learning_rate": 1.95e-06,
1997
+ "loss": 0.3351,
1998
+ "step": 153
1999
+ },
2000
+ {
2001
+ "Batch Mean": 0.3431110382080078,
2002
+ "accuracy": 0.828125,
2003
+ "epoch": 0.3825,
2004
+ "step": 153
2005
+ },
2006
+ {
2007
+ "epoch": 0.385,
2008
+ "grad_norm": 8.352450370788574,
2009
+ "learning_rate": 1.9421052631578947e-06,
2010
+ "loss": 0.3627,
2011
+ "step": 154
2012
+ },
2013
+ {
2014
+ "Batch Mean": 0.17504891753196716,
2015
+ "accuracy": 0.8828125,
2016
+ "epoch": 0.385,
2017
+ "step": 154
2018
+ },
2019
+ {
2020
+ "epoch": 0.3875,
2021
+ "grad_norm": 6.995707035064697,
2022
+ "learning_rate": 1.9342105263157895e-06,
2023
+ "loss": 0.323,
2024
+ "step": 155
2025
+ },
2026
+ {
2027
+ "Batch Mean": -0.1753711700439453,
2028
+ "accuracy": 0.8515625,
2029
+ "epoch": 0.3875,
2030
+ "step": 155
2031
+ },
2032
+ {
2033
+ "epoch": 0.39,
2034
+ "grad_norm": 7.297128677368164,
2035
+ "learning_rate": 1.926315789473684e-06,
2036
+ "loss": 0.3426,
2037
+ "step": 156
2038
+ },
2039
+ {
2040
+ "Batch Mean": -0.17636048793792725,
2041
+ "accuracy": 0.8515625,
2042
+ "epoch": 0.39,
2043
+ "step": 156
2044
+ },
2045
+ {
2046
+ "epoch": 0.3925,
2047
+ "grad_norm": 6.796414375305176,
2048
+ "learning_rate": 1.918421052631579e-06,
2049
+ "loss": 0.3263,
2050
+ "step": 157
2051
+ },
2052
+ {
2053
+ "Batch Mean": -0.7188338041305542,
2054
+ "accuracy": 0.875,
2055
+ "epoch": 0.3925,
2056
+ "step": 157
2057
+ },
2058
+ {
2059
+ "epoch": 0.395,
2060
+ "grad_norm": 10.371746063232422,
2061
+ "learning_rate": 1.9105263157894737e-06,
2062
+ "loss": 0.3046,
2063
+ "step": 158
2064
+ },
2065
+ {
2066
+ "Batch Mean": -0.5050258636474609,
2067
+ "accuracy": 0.8671875,
2068
+ "epoch": 0.395,
2069
+ "step": 158
2070
+ },
2071
+ {
2072
+ "epoch": 0.3975,
2073
+ "grad_norm": 8.59885311126709,
2074
+ "learning_rate": 1.9026315789473684e-06,
2075
+ "loss": 0.3257,
2076
+ "step": 159
2077
+ },
2078
+ {
2079
+ "Batch Mean": 0.15757006406784058,
2080
+ "accuracy": 0.875,
2081
+ "epoch": 0.3975,
2082
+ "step": 159
2083
+ },
2084
+ {
2085
+ "epoch": 0.4,
2086
+ "grad_norm": 6.61456298828125,
2087
+ "learning_rate": 1.8947368421052632e-06,
2088
+ "loss": 0.2748,
2089
+ "step": 160
2090
+ },
2091
+ {
2092
+ "Batch Mean": 0.4738607406616211,
2093
+ "accuracy": 0.8359375,
2094
+ "epoch": 0.4,
2095
+ "step": 160
2096
+ },
2097
+ {
2098
+ "epoch": 0.4025,
2099
+ "grad_norm": 9.277711868286133,
2100
+ "learning_rate": 1.8868421052631577e-06,
2101
+ "loss": 0.3558,
2102
+ "step": 161
2103
+ },
2104
+ {
2105
+ "Batch Mean": 0.9098443984985352,
2106
+ "accuracy": 0.8515625,
2107
+ "epoch": 0.4025,
2108
+ "step": 161
2109
+ },
2110
+ {
2111
+ "epoch": 0.405,
2112
+ "grad_norm": 14.112342834472656,
2113
+ "learning_rate": 1.8789473684210525e-06,
2114
+ "loss": 0.3479,
2115
+ "step": 162
2116
+ },
2117
+ {
2118
+ "Batch Mean": -0.09790003299713135,
2119
+ "accuracy": 0.8515625,
2120
+ "epoch": 0.405,
2121
+ "step": 162
2122
+ },
2123
+ {
2124
+ "epoch": 0.4075,
2125
+ "grad_norm": 7.988643169403076,
2126
+ "learning_rate": 1.8710526315789476e-06,
2127
+ "loss": 0.3329,
2128
+ "step": 163
2129
+ },
2130
+ {
2131
+ "Batch Mean": -0.3589191436767578,
2132
+ "accuracy": 0.875,
2133
+ "epoch": 0.4075,
2134
+ "step": 163
2135
+ },
2136
+ {
2137
+ "epoch": 0.41,
2138
+ "grad_norm": 8.374390602111816,
2139
+ "learning_rate": 1.8631578947368424e-06,
2140
+ "loss": 0.3404,
2141
+ "step": 164
2142
+ },
2143
+ {
2144
+ "Batch Mean": -0.2895526885986328,
2145
+ "accuracy": 0.8671875,
2146
+ "epoch": 0.41,
2147
+ "step": 164
2148
+ },
2149
+ {
2150
+ "epoch": 0.4125,
2151
+ "grad_norm": 10.125029563903809,
2152
+ "learning_rate": 1.855263157894737e-06,
2153
+ "loss": 0.3828,
2154
+ "step": 165
2155
+ },
2156
+ {
2157
+ "Batch Mean": -0.7614960670471191,
2158
+ "accuracy": 0.8515625,
2159
+ "epoch": 0.4125,
2160
+ "step": 165
2161
+ },
2162
+ {
2163
+ "epoch": 0.415,
2164
+ "grad_norm": 12.611261367797852,
2165
+ "learning_rate": 1.8473684210526317e-06,
2166
+ "loss": 0.3182,
2167
+ "step": 166
2168
+ },
2169
+ {
2170
+ "Batch Mean": 0.047823190689086914,
2171
+ "accuracy": 0.84375,
2172
+ "epoch": 0.415,
2173
+ "step": 166
2174
+ },
2175
+ {
2176
+ "epoch": 0.4175,
2177
+ "grad_norm": 7.5092644691467285,
2178
+ "learning_rate": 1.8394736842105264e-06,
2179
+ "loss": 0.3277,
2180
+ "step": 167
2181
+ },
2182
+ {
2183
+ "Batch Mean": 0.3487553596496582,
2184
+ "accuracy": 0.8828125,
2185
+ "epoch": 0.4175,
2186
+ "step": 167
2187
+ },
2188
+ {
2189
+ "epoch": 0.42,
2190
+ "grad_norm": 7.762388229370117,
2191
+ "learning_rate": 1.8315789473684211e-06,
2192
+ "loss": 0.3021,
2193
+ "step": 168
2194
+ },
2195
+ {
2196
+ "Batch Mean": -0.34416115283966064,
2197
+ "accuracy": 0.7890625,
2198
+ "epoch": 0.42,
2199
+ "step": 168
2200
+ },
2201
+ {
2202
+ "epoch": 0.4225,
2203
+ "grad_norm": 9.338401794433594,
2204
+ "learning_rate": 1.8236842105263159e-06,
2205
+ "loss": 0.4031,
2206
+ "step": 169
2207
+ },
2208
+ {
2209
+ "Batch Mean": 0.013556480407714844,
2210
+ "accuracy": 0.8515625,
2211
+ "epoch": 0.4225,
2212
+ "step": 169
2213
+ },
2214
+ {
2215
+ "epoch": 0.425,
2216
+ "grad_norm": 8.208139419555664,
2217
+ "learning_rate": 1.8157894736842106e-06,
2218
+ "loss": 0.367,
2219
+ "step": 170
2220
+ },
2221
+ {
2222
+ "Batch Mean": -0.1292668581008911,
2223
+ "accuracy": 0.8828125,
2224
+ "epoch": 0.425,
2225
+ "step": 170
2226
+ },
2227
+ {
2228
+ "epoch": 0.4275,
2229
+ "grad_norm": 6.575423717498779,
2230
+ "learning_rate": 1.8078947368421052e-06,
2231
+ "loss": 0.2778,
2232
+ "step": 171
2233
+ },
2234
+ {
2235
+ "Batch Mean": -0.5196864604949951,
2236
+ "accuracy": 0.828125,
2237
+ "epoch": 0.4275,
2238
+ "step": 171
2239
+ },
2240
+ {
2241
+ "epoch": 0.43,
2242
+ "grad_norm": 9.9501953125,
2243
+ "learning_rate": 1.8e-06,
2244
+ "loss": 0.388,
2245
+ "step": 172
2246
+ },
2247
+ {
2248
+ "Batch Mean": -0.10827267169952393,
2249
+ "accuracy": 0.8515625,
2250
+ "epoch": 0.43,
2251
+ "step": 172
2252
+ },
2253
+ {
2254
+ "epoch": 0.4325,
2255
+ "grad_norm": 6.746122360229492,
2256
+ "learning_rate": 1.7921052631578947e-06,
2257
+ "loss": 0.3337,
2258
+ "step": 173
2259
+ },
2260
+ {
2261
+ "Batch Mean": -0.20117001235485077,
2262
+ "accuracy": 0.859375,
2263
+ "epoch": 0.4325,
2264
+ "step": 173
2265
+ },
2266
+ {
2267
+ "epoch": 0.435,
2268
+ "grad_norm": 7.591915130615234,
2269
+ "learning_rate": 1.7842105263157894e-06,
2270
+ "loss": 0.3576,
2271
+ "step": 174
2272
+ },
2273
+ {
2274
+ "Batch Mean": 0.4478938579559326,
2275
+ "accuracy": 0.8125,
2276
+ "epoch": 0.435,
2277
+ "step": 174
2278
+ },
2279
+ {
2280
+ "epoch": 0.4375,
2281
+ "grad_norm": 8.740865707397461,
2282
+ "learning_rate": 1.7763157894736842e-06,
2283
+ "loss": 0.3836,
2284
+ "step": 175
2285
+ },
2286
+ {
2287
+ "Batch Mean": 0.1370692253112793,
2288
+ "accuracy": 0.8359375,
2289
+ "epoch": 0.4375,
2290
+ "step": 175
2291
+ },
2292
+ {
2293
+ "epoch": 0.44,
2294
+ "grad_norm": 6.480626583099365,
2295
+ "learning_rate": 1.768421052631579e-06,
2296
+ "loss": 0.3648,
2297
+ "step": 176
2298
+ },
2299
+ {
2300
+ "Batch Mean": 0.47721147537231445,
2301
+ "accuracy": 0.859375,
2302
+ "epoch": 0.44,
2303
+ "step": 176
2304
+ },
2305
+ {
2306
+ "epoch": 0.4425,
2307
+ "grad_norm": 9.018311500549316,
2308
+ "learning_rate": 1.7605263157894739e-06,
2309
+ "loss": 0.4128,
2310
+ "step": 177
2311
+ },
2312
+ {
2313
+ "Batch Mean": 0.13465499877929688,
2314
+ "accuracy": 0.8671875,
2315
+ "epoch": 0.4425,
2316
+ "step": 177
2317
+ },
2318
+ {
2319
+ "epoch": 0.445,
2320
+ "grad_norm": 6.7764973640441895,
2321
+ "learning_rate": 1.7526315789473686e-06,
2322
+ "loss": 0.3124,
2323
+ "step": 178
2324
+ },
2325
+ {
2326
+ "Batch Mean": 0.25302886962890625,
2327
+ "accuracy": 0.8671875,
2328
+ "epoch": 0.445,
2329
+ "step": 178
2330
+ },
2331
+ {
2332
+ "epoch": 0.4475,
2333
+ "grad_norm": 7.894146919250488,
2334
+ "learning_rate": 1.7447368421052633e-06,
2335
+ "loss": 0.3335,
2336
+ "step": 179
2337
+ },
2338
+ {
2339
+ "Batch Mean": -0.5794901847839355,
2340
+ "accuracy": 0.7734375,
2341
+ "epoch": 0.4475,
2342
+ "step": 179
2343
+ },
2344
+ {
2345
+ "epoch": 0.45,
2346
+ "grad_norm": 8.826544761657715,
2347
+ "learning_rate": 1.736842105263158e-06,
2348
+ "loss": 0.3982,
2349
+ "step": 180
2350
+ },
2351
+ {
2352
+ "Batch Mean": 0.16424822807312012,
2353
+ "accuracy": 0.84375,
2354
+ "epoch": 0.45,
2355
+ "step": 180
2356
+ },
2357
+ {
2358
+ "epoch": 0.4525,
2359
+ "grad_norm": 5.991344451904297,
2360
+ "learning_rate": 1.7289473684210526e-06,
2361
+ "loss": 0.3408,
2362
+ "step": 181
2363
+ },
2364
+ {
2365
+ "Batch Mean": -0.13757801055908203,
2366
+ "accuracy": 0.8671875,
2367
+ "epoch": 0.4525,
2368
+ "step": 181
2369
+ },
2370
+ {
2371
+ "epoch": 0.455,
2372
+ "grad_norm": 5.649535179138184,
2373
+ "learning_rate": 1.7210526315789474e-06,
2374
+ "loss": 0.3081,
2375
+ "step": 182
2376
+ },
2377
+ {
2378
+ "Batch Mean": 0.13538789749145508,
2379
+ "accuracy": 0.78125,
2380
+ "epoch": 0.455,
2381
+ "step": 182
2382
+ },
2383
+ {
2384
+ "epoch": 0.4575,
2385
+ "grad_norm": 7.989570140838623,
2386
+ "learning_rate": 1.7131578947368421e-06,
2387
+ "loss": 0.4532,
2388
+ "step": 183
2389
+ },
2390
+ {
2391
+ "Batch Mean": -0.09452962875366211,
2392
+ "accuracy": 0.796875,
2393
+ "epoch": 0.4575,
2394
+ "step": 183
2395
+ },
2396
+ {
2397
+ "epoch": 0.46,
2398
+ "grad_norm": 6.7350616455078125,
2399
+ "learning_rate": 1.7052631578947369e-06,
2400
+ "loss": 0.3937,
2401
+ "step": 184
2402
+ },
2403
+ {
2404
+ "Batch Mean": -0.19620466232299805,
2405
+ "accuracy": 0.8046875,
2406
+ "epoch": 0.46,
2407
+ "step": 184
2408
+ },
2409
+ {
2410
+ "epoch": 0.4625,
2411
+ "grad_norm": 32.979637145996094,
2412
+ "learning_rate": 1.6973684210526316e-06,
2413
+ "loss": 0.4651,
2414
+ "step": 185
2415
+ },
2416
+ {
2417
+ "Batch Mean": 0.203094482421875,
2418
+ "accuracy": 0.8203125,
2419
+ "epoch": 0.4625,
2420
+ "step": 185
2421
+ },
2422
+ {
2423
+ "epoch": 0.465,
2424
+ "grad_norm": 6.455933570861816,
2425
+ "learning_rate": 1.6894736842105264e-06,
2426
+ "loss": 0.3405,
2427
+ "step": 186
2428
+ },
2429
+ {
2430
+ "Batch Mean": 0.39686131477355957,
2431
+ "accuracy": 0.875,
2432
+ "epoch": 0.465,
2433
+ "step": 186
2434
+ },
2435
+ {
2436
+ "epoch": 0.4675,
2437
+ "grad_norm": 6.76831579208374,
2438
+ "learning_rate": 1.6815789473684209e-06,
2439
+ "loss": 0.3486,
2440
+ "step": 187
2441
+ },
2442
+ {
2443
+ "Batch Mean": -0.008591651916503906,
2444
+ "accuracy": 0.859375,
2445
+ "epoch": 0.4675,
2446
+ "step": 187
2447
+ },
2448
+ {
2449
+ "epoch": 0.47,
2450
+ "grad_norm": 5.692453861236572,
2451
+ "learning_rate": 1.6736842105263156e-06,
2452
+ "loss": 0.3288,
2453
+ "step": 188
2454
+ },
2455
+ {
2456
+ "Batch Mean": -0.36408185958862305,
2457
+ "accuracy": 0.8046875,
2458
+ "epoch": 0.47,
2459
+ "step": 188
2460
+ },
2461
+ {
2462
+ "epoch": 0.4725,
2463
+ "grad_norm": 7.711721897125244,
2464
+ "learning_rate": 1.6657894736842104e-06,
2465
+ "loss": 0.4075,
2466
+ "step": 189
2467
+ },
2468
+ {
2469
+ "Batch Mean": -0.4406242370605469,
2470
+ "accuracy": 0.890625,
2471
+ "epoch": 0.4725,
2472
+ "step": 189
2473
+ },
2474
+ {
2475
+ "epoch": 0.475,
2476
+ "grad_norm": 7.3570756912231445,
2477
+ "learning_rate": 1.6578947368421056e-06,
2478
+ "loss": 0.3025,
2479
+ "step": 190
2480
+ },
2481
+ {
2482
+ "Batch Mean": 0.1726367473602295,
2483
+ "accuracy": 0.8125,
2484
+ "epoch": 0.475,
2485
+ "step": 190
2486
+ },
2487
+ {
2488
+ "epoch": 0.4775,
2489
+ "grad_norm": 7.980853080749512,
2490
+ "learning_rate": 1.65e-06,
2491
+ "loss": 0.3876,
2492
+ "step": 191
2493
+ },
2494
+ {
2495
+ "Batch Mean": -0.0961066484451294,
2496
+ "accuracy": 0.90625,
2497
+ "epoch": 0.4775,
2498
+ "step": 191
2499
+ },
2500
+ {
2501
+ "epoch": 0.48,
2502
+ "grad_norm": 5.444026947021484,
2503
+ "learning_rate": 1.6421052631578948e-06,
2504
+ "loss": 0.2777,
2505
+ "step": 192
2506
+ },
2507
+ {
2508
+ "Batch Mean": -0.12086796760559082,
2509
+ "accuracy": 0.8515625,
2510
+ "epoch": 0.48,
2511
+ "step": 192
2512
+ },
2513
+ {
2514
+ "epoch": 0.4825,
2515
+ "grad_norm": 5.993566989898682,
2516
+ "learning_rate": 1.6342105263157896e-06,
2517
+ "loss": 0.3327,
2518
+ "step": 193
2519
+ },
2520
+ {
2521
+ "Batch Mean": 0.5805015563964844,
2522
+ "accuracy": 0.84375,
2523
+ "epoch": 0.4825,
2524
+ "step": 193
2525
+ },
2526
+ {
2527
+ "epoch": 0.485,
2528
+ "grad_norm": 9.61883544921875,
2529
+ "learning_rate": 1.6263157894736843e-06,
2530
+ "loss": 0.3707,
2531
+ "step": 194
2532
+ },
2533
+ {
2534
+ "Batch Mean": 0.8935675024986267,
2535
+ "accuracy": 0.8046875,
2536
+ "epoch": 0.485,
2537
+ "step": 194
2538
+ },
2539
+ {
2540
+ "epoch": 0.4875,
2541
+ "grad_norm": 12.503327369689941,
2542
+ "learning_rate": 1.618421052631579e-06,
2543
+ "loss": 0.3951,
2544
+ "step": 195
2545
+ },
2546
+ {
2547
+ "Batch Mean": 0.2793365716934204,
2548
+ "accuracy": 0.8046875,
2549
+ "epoch": 0.4875,
2550
+ "step": 195
2551
+ },
2552
+ {
2553
+ "epoch": 0.49,
2554
+ "grad_norm": 7.763684272766113,
2555
+ "learning_rate": 1.6105263157894738e-06,
2556
+ "loss": 0.3955,
2557
+ "step": 196
2558
+ },
2559
+ {
2560
+ "Batch Mean": -0.14763522148132324,
2561
+ "accuracy": 0.8359375,
2562
+ "epoch": 0.49,
2563
+ "step": 196
2564
+ },
2565
+ {
2566
+ "epoch": 0.4925,
2567
+ "grad_norm": 7.21512508392334,
2568
+ "learning_rate": 1.6026315789473683e-06,
2569
+ "loss": 0.3188,
2570
+ "step": 197
2571
+ },
2572
+ {
2573
+ "Batch Mean": -0.5799511671066284,
2574
+ "accuracy": 0.8671875,
2575
+ "epoch": 0.4925,
2576
+ "step": 197
2577
+ },
2578
+ {
2579
+ "epoch": 0.495,
2580
+ "grad_norm": 8.71732234954834,
2581
+ "learning_rate": 1.594736842105263e-06,
2582
+ "loss": 0.3139,
2583
+ "step": 198
2584
+ },
2585
+ {
2586
+ "Batch Mean": -0.46822547912597656,
2587
+ "accuracy": 0.890625,
2588
+ "epoch": 0.495,
2589
+ "step": 198
2590
+ },
2591
+ {
2592
+ "epoch": 0.4975,
2593
+ "grad_norm": 7.613549709320068,
2594
+ "learning_rate": 1.5868421052631578e-06,
2595
+ "loss": 0.2978,
2596
+ "step": 199
2597
+ },
2598
+ {
2599
+ "Batch Mean": -0.370266854763031,
2600
+ "accuracy": 0.875,
2601
+ "epoch": 0.4975,
2602
+ "step": 199
2603
+ },
2604
+ {
2605
+ "epoch": 0.5,
2606
+ "grad_norm": 7.669687271118164,
2607
+ "learning_rate": 1.5789473684210526e-06,
2608
+ "loss": 0.2982,
2609
+ "step": 200
2610
+ },
2611
+ {
2612
+ "Batch Mean": -0.09551525115966797,
2613
+ "accuracy": 0.8359375,
2614
+ "epoch": 0.5,
2615
+ "step": 200
2616
+ },
2617
+ {
2618
+ "epoch": 0.5025,
2619
+ "grad_norm": 6.744908332824707,
2620
+ "learning_rate": 1.5710526315789473e-06,
2621
+ "loss": 0.3635,
2622
+ "step": 201
2623
+ },
2624
+ {
2625
+ "Batch Mean": -0.1286020278930664,
2626
+ "accuracy": 0.90625,
2627
+ "epoch": 0.5025,
2628
+ "step": 201
2629
+ },
2630
+ {
2631
+ "epoch": 0.505,
2632
+ "grad_norm": 5.752479076385498,
2633
+ "learning_rate": 1.563157894736842e-06,
2634
+ "loss": 0.2412,
2635
+ "step": 202
2636
+ },
2637
+ {
2638
+ "Batch Mean": 0.24757051467895508,
2639
+ "accuracy": 0.890625,
2640
+ "epoch": 0.505,
2641
+ "step": 202
2642
+ },
2643
+ {
2644
+ "epoch": 0.5075,
2645
+ "grad_norm": 6.615243434906006,
2646
+ "learning_rate": 1.5552631578947368e-06,
2647
+ "loss": 0.2638,
2648
+ "step": 203
2649
+ },
2650
+ {
2651
+ "Batch Mean": 0.6454036235809326,
2652
+ "accuracy": 0.84375,
2653
+ "epoch": 0.5075,
2654
+ "step": 203
2655
+ },
2656
+ {
2657
+ "epoch": 0.51,
2658
+ "grad_norm": 11.68124771118164,
2659
+ "learning_rate": 1.5473684210526318e-06,
2660
+ "loss": 0.3812,
2661
+ "step": 204
2662
+ },
2663
+ {
2664
+ "Batch Mean": 0.674675464630127,
2665
+ "accuracy": 0.8046875,
2666
+ "epoch": 0.51,
2667
+ "step": 204
2668
+ },
2669
+ {
2670
+ "epoch": 0.5125,
2671
+ "grad_norm": 11.759324073791504,
2672
+ "learning_rate": 1.5394736842105265e-06,
2673
+ "loss": 0.3925,
2674
+ "step": 205
2675
+ },
2676
+ {
2677
+ "Batch Mean": 0.8345117568969727,
2678
+ "accuracy": 0.7890625,
2679
+ "epoch": 0.5125,
2680
+ "step": 205
2681
+ },
2682
+ {
2683
+ "epoch": 0.515,
2684
+ "grad_norm": 12.204639434814453,
2685
+ "learning_rate": 1.5315789473684213e-06,
2686
+ "loss": 0.416,
2687
+ "step": 206
2688
+ },
2689
+ {
2690
+ "Batch Mean": -0.10074353218078613,
2691
+ "accuracy": 0.8359375,
2692
+ "epoch": 0.515,
2693
+ "step": 206
2694
+ },
2695
+ {
2696
+ "epoch": 0.5175,
2697
+ "grad_norm": 7.523916721343994,
2698
+ "learning_rate": 1.5236842105263158e-06,
2699
+ "loss": 0.3201,
2700
+ "step": 207
2701
+ },
2702
+ {
2703
+ "Batch Mean": -0.37576836347579956,
2704
+ "accuracy": 0.8671875,
2705
+ "epoch": 0.5175,
2706
+ "step": 207
2707
+ },
2708
+ {
2709
+ "epoch": 0.52,
2710
+ "grad_norm": 8.584857940673828,
2711
+ "learning_rate": 1.5157894736842105e-06,
2712
+ "loss": 0.3001,
2713
+ "step": 208
2714
+ },
2715
+ {
2716
+ "Batch Mean": 0.14268207550048828,
2717
+ "accuracy": 0.875,
2718
+ "epoch": 0.52,
2719
+ "step": 208
2720
+ },
2721
+ {
2722
+ "epoch": 0.5225,
2723
+ "grad_norm": 6.892088413238525,
2724
+ "learning_rate": 1.5078947368421053e-06,
2725
+ "loss": 0.3227,
2726
+ "step": 209
2727
+ },
2728
+ {
2729
+ "Batch Mean": -0.4613943099975586,
2730
+ "accuracy": 0.859375,
2731
+ "epoch": 0.5225,
2732
+ "step": 209
2733
+ },
2734
+ {
2735
+ "epoch": 0.525,
2736
+ "grad_norm": 8.836865425109863,
2737
+ "learning_rate": 1.5e-06,
2738
+ "loss": 0.3391,
2739
+ "step": 210
2740
+ },
2741
+ {
2742
+ "Batch Mean": -0.3657095432281494,
2743
+ "accuracy": 0.8125,
2744
+ "epoch": 0.525,
2745
+ "step": 210
2746
+ },
2747
+ {
2748
+ "epoch": 0.5275,
2749
+ "grad_norm": 10.453470230102539,
2750
+ "learning_rate": 1.4921052631578948e-06,
2751
+ "loss": 0.3723,
2752
+ "step": 211
2753
+ },
2754
+ {
2755
+ "Batch Mean": -0.2775421142578125,
2756
+ "accuracy": 0.8203125,
2757
+ "epoch": 0.5275,
2758
+ "step": 211
2759
+ },
2760
+ {
2761
+ "epoch": 0.53,
2762
+ "grad_norm": 8.066608428955078,
2763
+ "learning_rate": 1.4842105263157895e-06,
2764
+ "loss": 0.3386,
2765
+ "step": 212
2766
+ },
2767
+ {
2768
+ "Batch Mean": 0.16974592208862305,
2769
+ "accuracy": 0.828125,
2770
+ "epoch": 0.53,
2771
+ "step": 212
2772
+ },
2773
+ {
2774
+ "epoch": 0.5325,
2775
+ "grad_norm": 7.698607444763184,
2776
+ "learning_rate": 1.4763157894736843e-06,
2777
+ "loss": 0.3777,
2778
+ "step": 213
2779
+ },
2780
+ {
2781
+ "Batch Mean": 0.3739891052246094,
2782
+ "accuracy": 0.8515625,
2783
+ "epoch": 0.5325,
2784
+ "step": 213
2785
+ },
2786
+ {
2787
+ "epoch": 0.535,
2788
+ "grad_norm": 9.513444900512695,
2789
+ "learning_rate": 1.468421052631579e-06,
2790
+ "loss": 0.3374,
2791
+ "step": 214
2792
+ },
2793
+ {
2794
+ "Batch Mean": 0.13162872195243835,
2795
+ "accuracy": 0.828125,
2796
+ "epoch": 0.535,
2797
+ "step": 214
2798
+ },
2799
+ {
2800
+ "epoch": 0.5375,
2801
+ "grad_norm": 7.565595626831055,
2802
+ "learning_rate": 1.4605263157894738e-06,
2803
+ "loss": 0.3599,
2804
+ "step": 215
2805
+ },
2806
+ {
2807
+ "Batch Mean": -0.06913161277770996,
2808
+ "accuracy": 0.84375,
2809
+ "epoch": 0.5375,
2810
+ "step": 215
2811
+ },
2812
+ {
2813
+ "epoch": 0.54,
2814
+ "grad_norm": 8.069997787475586,
2815
+ "learning_rate": 1.4526315789473685e-06,
2816
+ "loss": 0.372,
2817
+ "step": 216
2818
+ },
2819
+ {
2820
+ "Batch Mean": 0.10277748107910156,
2821
+ "accuracy": 0.84375,
2822
+ "epoch": 0.54,
2823
+ "step": 216
2824
+ },
2825
+ {
2826
+ "epoch": 0.5425,
2827
+ "grad_norm": 6.85213041305542,
2828
+ "learning_rate": 1.4447368421052633e-06,
2829
+ "loss": 0.3318,
2830
+ "step": 217
2831
+ },
2832
+ {
2833
+ "Batch Mean": 0.10326993465423584,
2834
+ "accuracy": 0.859375,
2835
+ "epoch": 0.5425,
2836
+ "step": 217
2837
+ },
2838
+ {
2839
+ "epoch": 0.545,
2840
+ "grad_norm": 7.071889877319336,
2841
+ "learning_rate": 1.436842105263158e-06,
2842
+ "loss": 0.3079,
2843
+ "step": 218
2844
+ },
2845
+ {
2846
+ "Batch Mean": -0.24563944339752197,
2847
+ "accuracy": 0.859375,
2848
+ "epoch": 0.545,
2849
+ "step": 218
2850
+ },
2851
+ {
2852
+ "epoch": 0.5475,
2853
+ "grad_norm": 6.660257816314697,
2854
+ "learning_rate": 1.4289473684210525e-06,
2855
+ "loss": 0.3241,
2856
+ "step": 219
2857
+ },
2858
+ {
2859
+ "Batch Mean": -0.0343480110168457,
2860
+ "accuracy": 0.890625,
2861
+ "epoch": 0.5475,
2862
+ "step": 219
2863
+ },
2864
+ {
2865
+ "epoch": 0.55,
2866
+ "grad_norm": 6.178592681884766,
2867
+ "learning_rate": 1.4210526315789473e-06,
2868
+ "loss": 0.3169,
2869
+ "step": 220
2870
+ },
2871
+ {
2872
+ "Batch Mean": -0.4012432098388672,
2873
+ "accuracy": 0.84375,
2874
+ "epoch": 0.55,
2875
+ "step": 220
2876
+ },
2877
+ {
2878
+ "epoch": 0.5525,
2879
+ "grad_norm": 8.061397552490234,
2880
+ "learning_rate": 1.4131578947368422e-06,
2881
+ "loss": 0.3649,
2882
+ "step": 221
2883
+ },
2884
+ {
2885
+ "Batch Mean": 0.20463943481445312,
2886
+ "accuracy": 0.828125,
2887
+ "epoch": 0.5525,
2888
+ "step": 221
2889
+ },
2890
+ {
2891
+ "epoch": 0.555,
2892
+ "grad_norm": 7.943480491638184,
2893
+ "learning_rate": 1.405263157894737e-06,
2894
+ "loss": 0.4093,
2895
+ "step": 222
2896
+ },
2897
+ {
2898
+ "Batch Mean": 0.2658262252807617,
2899
+ "accuracy": 0.8203125,
2900
+ "epoch": 0.555,
2901
+ "step": 222
2902
+ },
2903
+ {
2904
+ "epoch": 0.5575,
2905
+ "grad_norm": 7.583705425262451,
2906
+ "learning_rate": 1.3973684210526317e-06,
2907
+ "loss": 0.3637,
2908
+ "step": 223
2909
+ },
2910
+ {
2911
+ "Batch Mean": 0.20087218284606934,
2912
+ "accuracy": 0.8671875,
2913
+ "epoch": 0.5575,
2914
+ "step": 223
2915
+ },
2916
+ {
2917
+ "epoch": 0.56,
2918
+ "grad_norm": 6.919849395751953,
2919
+ "learning_rate": 1.3894736842105263e-06,
2920
+ "loss": 0.2951,
2921
+ "step": 224
2922
+ },
2923
+ {
2924
+ "Batch Mean": -0.3413984775543213,
2925
+ "accuracy": 0.84375,
2926
+ "epoch": 0.56,
2927
+ "step": 224
2928
+ },
2929
+ {
2930
+ "epoch": 0.5625,
2931
+ "grad_norm": 8.942002296447754,
2932
+ "learning_rate": 1.381578947368421e-06,
2933
+ "loss": 0.3762,
2934
+ "step": 225
2935
+ },
2936
+ {
2937
+ "Batch Mean": 0.12860620021820068,
2938
+ "accuracy": 0.8515625,
2939
+ "epoch": 0.5625,
2940
+ "step": 225
2941
+ },
2942
+ {
2943
+ "epoch": 0.565,
2944
+ "grad_norm": 6.127406120300293,
2945
+ "learning_rate": 1.3736842105263158e-06,
2946
+ "loss": 0.3079,
2947
+ "step": 226
2948
+ },
2949
+ {
2950
+ "Batch Mean": 0.04802989959716797,
2951
+ "accuracy": 0.890625,
2952
+ "epoch": 0.565,
2953
+ "step": 226
2954
+ },
2955
+ {
2956
+ "epoch": 0.5675,
2957
+ "grad_norm": 5.955417156219482,
2958
+ "learning_rate": 1.3657894736842107e-06,
2959
+ "loss": 0.2864,
2960
+ "step": 227
2961
+ },
2962
+ {
2963
+ "Batch Mean": 0.22469806671142578,
2964
+ "accuracy": 0.796875,
2965
+ "epoch": 0.5675,
2966
+ "step": 227
2967
+ },
2968
+ {
2969
+ "epoch": 0.57,
2970
+ "grad_norm": 8.0281343460083,
2971
+ "learning_rate": 1.3578947368421055e-06,
2972
+ "loss": 0.416,
2973
+ "step": 228
2974
+ },
2975
+ {
2976
+ "Batch Mean": -0.13057279586791992,
2977
+ "accuracy": 0.8203125,
2978
+ "epoch": 0.57,
2979
+ "step": 228
2980
+ },
2981
+ {
2982
+ "epoch": 0.5725,
2983
+ "grad_norm": 7.234789848327637,
2984
+ "learning_rate": 1.35e-06,
2985
+ "loss": 0.3897,
2986
+ "step": 229
2987
+ },
2988
+ {
2989
+ "Batch Mean": -0.5940704345703125,
2990
+ "accuracy": 0.875,
2991
+ "epoch": 0.5725,
2992
+ "step": 229
2993
+ },
2994
+ {
2995
+ "epoch": 0.575,
2996
+ "grad_norm": 9.370462417602539,
2997
+ "learning_rate": 1.3421052631578947e-06,
2998
+ "loss": 0.3068,
2999
+ "step": 230
3000
+ },
3001
+ {
3002
+ "Batch Mean": 0.026377856731414795,
3003
+ "accuracy": 0.796875,
3004
+ "epoch": 0.575,
3005
+ "step": 230
3006
+ },
3007
+ {
3008
+ "epoch": 0.5775,
3009
+ "grad_norm": 8.720721244812012,
3010
+ "learning_rate": 1.3342105263157895e-06,
3011
+ "loss": 0.4091,
3012
+ "step": 231
3013
+ },
3014
+ {
3015
+ "Batch Mean": -0.19702854752540588,
3016
+ "accuracy": 0.8046875,
3017
+ "epoch": 0.5775,
3018
+ "step": 231
3019
+ },
3020
+ {
3021
+ "epoch": 0.58,
3022
+ "grad_norm": 8.109902381896973,
3023
+ "learning_rate": 1.3263157894736842e-06,
3024
+ "loss": 0.3888,
3025
+ "step": 232
3026
+ },
3027
+ {
3028
+ "Batch Mean": 0.021877527236938477,
3029
+ "accuracy": 0.8125,
3030
+ "epoch": 0.58,
3031
+ "step": 232
3032
+ },
3033
+ {
3034
+ "epoch": 0.5825,
3035
+ "grad_norm": 6.799435615539551,
3036
+ "learning_rate": 1.318421052631579e-06,
3037
+ "loss": 0.3566,
3038
+ "step": 233
3039
+ },
3040
+ {
3041
+ "Batch Mean": 0.04909229278564453,
3042
+ "accuracy": 0.875,
3043
+ "epoch": 0.5825,
3044
+ "step": 233
3045
+ },
3046
+ {
3047
+ "epoch": 0.585,
3048
+ "grad_norm": 6.230069160461426,
3049
+ "learning_rate": 1.3105263157894737e-06,
3050
+ "loss": 0.2963,
3051
+ "step": 234
3052
+ },
3053
+ {
3054
+ "Batch Mean": 0.25316929817199707,
3055
+ "accuracy": 0.8671875,
3056
+ "epoch": 0.585,
3057
+ "step": 234
3058
+ },
3059
+ {
3060
+ "epoch": 0.5875,
3061
+ "grad_norm": 6.59328556060791,
3062
+ "learning_rate": 1.3026315789473685e-06,
3063
+ "loss": 0.3138,
3064
+ "step": 235
3065
+ },
3066
+ {
3067
+ "Batch Mean": 0.4174957275390625,
3068
+ "accuracy": 0.84375,
3069
+ "epoch": 0.5875,
3070
+ "step": 235
3071
+ },
3072
+ {
3073
+ "epoch": 0.59,
3074
+ "grad_norm": 8.933128356933594,
3075
+ "learning_rate": 1.2947368421052632e-06,
3076
+ "loss": 0.3271,
3077
+ "step": 236
3078
+ },
3079
+ {
3080
+ "Batch Mean": 0.17341864109039307,
3081
+ "accuracy": 0.8671875,
3082
+ "epoch": 0.59,
3083
+ "step": 236
3084
+ },
3085
+ {
3086
+ "epoch": 0.5925,
3087
+ "grad_norm": 5.806175708770752,
3088
+ "learning_rate": 1.286842105263158e-06,
3089
+ "loss": 0.2857,
3090
+ "step": 237
3091
+ },
3092
+ {
3093
+ "Batch Mean": -0.5694665908813477,
3094
+ "accuracy": 0.859375,
3095
+ "epoch": 0.5925,
3096
+ "step": 237
3097
+ },
3098
+ {
3099
+ "epoch": 0.595,
3100
+ "grad_norm": 9.185583114624023,
3101
+ "learning_rate": 1.2789473684210527e-06,
3102
+ "loss": 0.3015,
3103
+ "step": 238
3104
+ },
3105
+ {
3106
+ "Batch Mean": 0.07436943054199219,
3107
+ "accuracy": 0.8359375,
3108
+ "epoch": 0.595,
3109
+ "step": 238
3110
+ },
3111
+ {
3112
+ "epoch": 0.5975,
3113
+ "grad_norm": 6.160710334777832,
3114
+ "learning_rate": 1.2710526315789474e-06,
3115
+ "loss": 0.3175,
3116
+ "step": 239
3117
+ },
3118
+ {
3119
+ "Batch Mean": 0.46900463104248047,
3120
+ "accuracy": 0.8359375,
3121
+ "epoch": 0.5975,
3122
+ "step": 239
3123
+ },
3124
+ {
3125
+ "epoch": 0.6,
3126
+ "grad_norm": 9.330708503723145,
3127
+ "learning_rate": 1.263157894736842e-06,
3128
+ "loss": 0.3361,
3129
+ "step": 240
3130
+ },
3131
+ {
3132
+ "Batch Mean": -0.2093944549560547,
3133
+ "accuracy": 0.8359375,
3134
+ "epoch": 0.6,
3135
+ "step": 240
3136
+ },
3137
+ {
3138
+ "epoch": 0.6025,
3139
+ "grad_norm": 7.174565315246582,
3140
+ "learning_rate": 1.255263157894737e-06,
3141
+ "loss": 0.3779,
3142
+ "step": 241
3143
+ },
3144
+ {
3145
+ "Batch Mean": 0.24665546417236328,
3146
+ "accuracy": 0.875,
3147
+ "epoch": 0.6025,
3148
+ "step": 241
3149
+ },
3150
+ {
3151
+ "epoch": 0.605,
3152
+ "grad_norm": 6.129975318908691,
3153
+ "learning_rate": 1.2473684210526317e-06,
3154
+ "loss": 0.2615,
3155
+ "step": 242
3156
+ },
3157
+ {
3158
+ "Batch Mean": -0.7079062461853027,
3159
+ "accuracy": 0.859375,
3160
+ "epoch": 0.605,
3161
+ "step": 242
3162
+ },
3163
+ {
3164
+ "epoch": 0.6075,
3165
+ "grad_norm": 10.241421699523926,
3166
+ "learning_rate": 1.2394736842105264e-06,
3167
+ "loss": 0.3291,
3168
+ "step": 243
3169
+ },
3170
+ {
3171
+ "Batch Mean": 0.11448732018470764,
3172
+ "accuracy": 0.8046875,
3173
+ "epoch": 0.6075,
3174
+ "step": 243
3175
+ },
3176
+ {
3177
+ "epoch": 0.61,
3178
+ "grad_norm": 7.953644275665283,
3179
+ "learning_rate": 1.2315789473684212e-06,
3180
+ "loss": 0.4133,
3181
+ "step": 244
3182
+ },
3183
+ {
3184
+ "Batch Mean": -0.21373581886291504,
3185
+ "accuracy": 0.8203125,
3186
+ "epoch": 0.61,
3187
+ "step": 244
3188
+ },
3189
+ {
3190
+ "epoch": 0.6125,
3191
+ "grad_norm": 7.578818321228027,
3192
+ "learning_rate": 1.2236842105263157e-06,
3193
+ "loss": 0.3893,
3194
+ "step": 245
3195
+ },
3196
+ {
3197
+ "Batch Mean": -0.2655982971191406,
3198
+ "accuracy": 0.7890625,
3199
+ "epoch": 0.6125,
3200
+ "step": 245
3201
+ },
3202
+ {
3203
+ "epoch": 0.615,
3204
+ "grad_norm": 10.027579307556152,
3205
+ "learning_rate": 1.2157894736842105e-06,
3206
+ "loss": 0.4864,
3207
+ "step": 246
3208
+ },
3209
+ {
3210
+ "Batch Mean": -0.15862655639648438,
3211
+ "accuracy": 0.8359375,
3212
+ "epoch": 0.615,
3213
+ "step": 246
3214
+ },
3215
+ {
3216
+ "epoch": 0.6175,
3217
+ "grad_norm": 6.777160167694092,
3218
+ "learning_rate": 1.2078947368421052e-06,
3219
+ "loss": 0.3316,
3220
+ "step": 247
3221
+ },
3222
+ {
3223
+ "Batch Mean": -0.17922639846801758,
3224
+ "accuracy": 0.8671875,
3225
+ "epoch": 0.6175,
3226
+ "step": 247
3227
+ },
3228
+ {
3229
+ "epoch": 0.62,
3230
+ "grad_norm": 5.9845781326293945,
3231
+ "learning_rate": 1.2000000000000002e-06,
3232
+ "loss": 0.3218,
3233
+ "step": 248
3234
+ },
3235
+ {
3236
+ "Batch Mean": 0.1434774398803711,
3237
+ "accuracy": 0.78125,
3238
+ "epoch": 0.62,
3239
+ "step": 248
3240
+ },
3241
+ {
3242
+ "epoch": 0.6225,
3243
+ "grad_norm": 7.812133312225342,
3244
+ "learning_rate": 1.192105263157895e-06,
3245
+ "loss": 0.4105,
3246
+ "step": 249
3247
+ },
3248
+ {
3249
+ "Batch Mean": 0.1399485468864441,
3250
+ "accuracy": 0.7890625,
3251
+ "epoch": 0.6225,
3252
+ "step": 249
3253
+ },
3254
+ {
3255
+ "epoch": 0.625,
3256
+ "grad_norm": 7.285275459289551,
3257
+ "learning_rate": 1.1842105263157894e-06,
3258
+ "loss": 0.3875,
3259
+ "step": 250
3260
+ },
3261
+ {
3262
+ "Batch Mean": 0.07010936737060547,
3263
+ "accuracy": 0.890625,
3264
+ "epoch": 0.625,
3265
+ "step": 250
3266
+ },
3267
+ {
3268
+ "epoch": 0.6275,
3269
+ "grad_norm": 5.305445194244385,
3270
+ "learning_rate": 1.1763157894736842e-06,
3271
+ "loss": 0.2812,
3272
+ "step": 251
3273
+ },
3274
+ {
3275
+ "Batch Mean": 0.16651153564453125,
3276
+ "accuracy": 0.828125,
3277
+ "epoch": 0.6275,
3278
+ "step": 251
3279
+ },
3280
+ {
3281
+ "epoch": 0.63,
3282
+ "grad_norm": 6.985728740692139,
3283
+ "learning_rate": 1.168421052631579e-06,
3284
+ "loss": 0.3698,
3285
+ "step": 252
3286
+ },
3287
+ {
3288
+ "Batch Mean": 0.37049341201782227,
3289
+ "accuracy": 0.8359375,
3290
+ "epoch": 0.63,
3291
+ "step": 252
3292
+ },
3293
+ {
3294
+ "epoch": 0.6325,
3295
+ "grad_norm": 6.882497310638428,
3296
+ "learning_rate": 1.1605263157894737e-06,
3297
+ "loss": 0.3487,
3298
+ "step": 253
3299
+ },
3300
+ {
3301
+ "Batch Mean": 0.052080631256103516,
3302
+ "accuracy": 0.8984375,
3303
+ "epoch": 0.6325,
3304
+ "step": 253
3305
+ },
3306
+ {
3307
+ "epoch": 0.635,
3308
+ "grad_norm": 5.3604302406311035,
3309
+ "learning_rate": 1.1526315789473684e-06,
3310
+ "loss": 0.2884,
3311
+ "step": 254
3312
+ },
3313
+ {
3314
+ "Batch Mean": -0.018785476684570312,
3315
+ "accuracy": 0.8046875,
3316
+ "epoch": 0.635,
3317
+ "step": 254
3318
+ },
3319
+ {
3320
+ "epoch": 0.6375,
3321
+ "grad_norm": 7.260810375213623,
3322
+ "learning_rate": 1.1447368421052632e-06,
3323
+ "loss": 0.4406,
3324
+ "step": 255
3325
+ },
3326
+ {
3327
+ "Batch Mean": -0.04567432403564453,
3328
+ "accuracy": 0.796875,
3329
+ "epoch": 0.6375,
3330
+ "step": 255
3331
+ },
3332
+ {
3333
+ "epoch": 0.64,
3334
+ "grad_norm": 5.7526397705078125,
3335
+ "learning_rate": 1.136842105263158e-06,
3336
+ "loss": 0.3769,
3337
+ "step": 256
3338
+ },
3339
+ {
3340
+ "Batch Mean": -0.09397172927856445,
3341
+ "accuracy": 0.8515625,
3342
+ "epoch": 0.64,
3343
+ "step": 256
3344
+ },
3345
+ {
3346
+ "epoch": 0.6425,
3347
+ "grad_norm": 7.043140888214111,
3348
+ "learning_rate": 1.1289473684210527e-06,
3349
+ "loss": 0.3929,
3350
+ "step": 257
3351
+ },
3352
+ {
3353
+ "Batch Mean": -0.41216039657592773,
3354
+ "accuracy": 0.84375,
3355
+ "epoch": 0.6425,
3356
+ "step": 257
3357
+ },
3358
+ {
3359
+ "epoch": 0.645,
3360
+ "grad_norm": 7.224827766418457,
3361
+ "learning_rate": 1.1210526315789474e-06,
3362
+ "loss": 0.3323,
3363
+ "step": 258
3364
+ },
3365
+ {
3366
+ "Batch Mean": -0.5969750881195068,
3367
+ "accuracy": 0.84375,
3368
+ "epoch": 0.645,
3369
+ "step": 258
3370
+ },
3371
+ {
3372
+ "epoch": 0.6475,
3373
+ "grad_norm": 8.479996681213379,
3374
+ "learning_rate": 1.1131578947368421e-06,
3375
+ "loss": 0.355,
3376
+ "step": 259
3377
+ },
3378
+ {
3379
+ "Batch Mean": -0.06170177459716797,
3380
+ "accuracy": 0.8671875,
3381
+ "epoch": 0.6475,
3382
+ "step": 259
3383
+ },
3384
+ {
3385
+ "epoch": 0.65,
3386
+ "grad_norm": 5.659763813018799,
3387
+ "learning_rate": 1.1052631578947369e-06,
3388
+ "loss": 0.3411,
3389
+ "step": 260
3390
+ },
3391
+ {
3392
+ "Batch Mean": -0.08865594863891602,
3393
+ "accuracy": 0.8515625,
3394
+ "epoch": 0.65,
3395
+ "step": 260
3396
+ },
3397
+ {
3398
+ "epoch": 0.6525,
3399
+ "grad_norm": 5.9309773445129395,
3400
+ "learning_rate": 1.0973684210526316e-06,
3401
+ "loss": 0.3586,
3402
+ "step": 261
3403
+ },
3404
+ {
3405
+ "Batch Mean": 0.19340991973876953,
3406
+ "accuracy": 0.8515625,
3407
+ "epoch": 0.6525,
3408
+ "step": 261
3409
+ },
3410
+ {
3411
+ "epoch": 0.655,
3412
+ "grad_norm": 5.759584426879883,
3413
+ "learning_rate": 1.0894736842105264e-06,
3414
+ "loss": 0.3353,
3415
+ "step": 262
3416
+ },
3417
+ {
3418
+ "Batch Mean": -0.2597666382789612,
3419
+ "accuracy": 0.84375,
3420
+ "epoch": 0.655,
3421
+ "step": 262
3422
+ },
3423
+ {
3424
+ "epoch": 0.6575,
3425
+ "grad_norm": 7.266964435577393,
3426
+ "learning_rate": 1.0815789473684211e-06,
3427
+ "loss": 0.3751,
3428
+ "step": 263
3429
+ },
3430
+ {
3431
+ "Batch Mean": -0.14556348323822021,
3432
+ "accuracy": 0.8359375,
3433
+ "epoch": 0.6575,
3434
+ "step": 263
3435
+ },
3436
+ {
3437
+ "epoch": 0.66,
3438
+ "grad_norm": 5.76481819152832,
3439
+ "learning_rate": 1.0736842105263159e-06,
3440
+ "loss": 0.3315,
3441
+ "step": 264
3442
+ },
3443
+ {
3444
+ "Batch Mean": 0.2170419692993164,
3445
+ "accuracy": 0.859375,
3446
+ "epoch": 0.66,
3447
+ "step": 264
3448
+ },
3449
+ {
3450
+ "epoch": 0.6625,
3451
+ "grad_norm": 6.2871317863464355,
3452
+ "learning_rate": 1.0657894736842106e-06,
3453
+ "loss": 0.3095,
3454
+ "step": 265
3455
+ },
3456
+ {
3457
+ "Batch Mean": 0.6364197731018066,
3458
+ "accuracy": 0.8203125,
3459
+ "epoch": 0.6625,
3460
+ "step": 265
3461
+ },
3462
+ {
3463
+ "epoch": 0.665,
3464
+ "grad_norm": 10.033836364746094,
3465
+ "learning_rate": 1.0578947368421052e-06,
3466
+ "loss": 0.3766,
3467
+ "step": 266
3468
+ },
3469
+ {
3470
+ "Batch Mean": 0.5460505485534668,
3471
+ "accuracy": 0.8671875,
3472
+ "epoch": 0.665,
3473
+ "step": 266
3474
+ },
3475
+ {
3476
+ "epoch": 0.6675,
3477
+ "grad_norm": 8.776803970336914,
3478
+ "learning_rate": 1.05e-06,
3479
+ "loss": 0.3181,
3480
+ "step": 267
3481
+ },
3482
+ {
3483
+ "Batch Mean": 0.12220120429992676,
3484
+ "accuracy": 0.8125,
3485
+ "epoch": 0.6675,
3486
+ "step": 267
3487
+ },
3488
+ {
3489
+ "epoch": 0.67,
3490
+ "grad_norm": 6.963134288787842,
3491
+ "learning_rate": 1.0421052631578949e-06,
3492
+ "loss": 0.359,
3493
+ "step": 268
3494
+ },
3495
+ {
3496
+ "Batch Mean": 0.7201442122459412,
3497
+ "accuracy": 0.8359375,
3498
+ "epoch": 0.67,
3499
+ "step": 268
3500
+ },
3501
+ {
3502
+ "epoch": 0.6725,
3503
+ "grad_norm": 10.378531455993652,
3504
+ "learning_rate": 1.0342105263157896e-06,
3505
+ "loss": 0.344,
3506
+ "step": 269
3507
+ },
3508
+ {
3509
+ "Batch Mean": 0.3651304244995117,
3510
+ "accuracy": 0.8359375,
3511
+ "epoch": 0.6725,
3512
+ "step": 269
3513
+ },
3514
+ {
3515
+ "epoch": 0.675,
3516
+ "grad_norm": 8.207369804382324,
3517
+ "learning_rate": 1.0263157894736843e-06,
3518
+ "loss": 0.332,
3519
+ "step": 270
3520
+ },
3521
+ {
3522
+ "Batch Mean": -0.18006157875061035,
3523
+ "accuracy": 0.8671875,
3524
+ "epoch": 0.675,
3525
+ "step": 270
3526
+ },
3527
+ {
3528
+ "epoch": 0.6775,
3529
+ "grad_norm": 6.360766410827637,
3530
+ "learning_rate": 1.0184210526315789e-06,
3531
+ "loss": 0.2975,
3532
+ "step": 271
3533
+ },
3534
+ {
3535
+ "Batch Mean": -0.18421226739883423,
3536
+ "accuracy": 0.84375,
3537
+ "epoch": 0.6775,
3538
+ "step": 271
3539
+ },
3540
+ {
3541
+ "epoch": 0.68,
3542
+ "grad_norm": 6.863755702972412,
3543
+ "learning_rate": 1.0105263157894736e-06,
3544
+ "loss": 0.2952,
3545
+ "step": 272
3546
+ },
3547
+ {
3548
+ "Batch Mean": -0.06856060028076172,
3549
+ "accuracy": 0.8359375,
3550
+ "epoch": 0.68,
3551
+ "step": 272
3552
+ },
3553
+ {
3554
+ "epoch": 0.6825,
3555
+ "grad_norm": 7.211990833282471,
3556
+ "learning_rate": 1.0026315789473684e-06,
3557
+ "loss": 0.3316,
3558
+ "step": 273
3559
+ },
3560
+ {
3561
+ "Batch Mean": -0.47328972816467285,
3562
+ "accuracy": 0.8125,
3563
+ "epoch": 0.6825,
3564
+ "step": 273
3565
+ },
3566
+ {
3567
+ "epoch": 0.685,
3568
+ "grad_norm": 8.822152137756348,
3569
+ "learning_rate": 9.947368421052631e-07,
3570
+ "loss": 0.3734,
3571
+ "step": 274
3572
+ },
3573
+ {
3574
+ "Batch Mean": -0.08451128005981445,
3575
+ "accuracy": 0.84375,
3576
+ "epoch": 0.685,
3577
+ "step": 274
3578
+ },
3579
+ {
3580
+ "epoch": 0.6875,
3581
+ "grad_norm": 6.560077667236328,
3582
+ "learning_rate": 9.86842105263158e-07,
3583
+ "loss": 0.3236,
3584
+ "step": 275
3585
+ },
3586
+ {
3587
+ "Batch Mean": -0.2358086109161377,
3588
+ "accuracy": 0.828125,
3589
+ "epoch": 0.6875,
3590
+ "step": 275
3591
+ },
3592
+ {
3593
+ "epoch": 0.69,
3594
+ "grad_norm": 6.617765426635742,
3595
+ "learning_rate": 9.789473684210526e-07,
3596
+ "loss": 0.365,
3597
+ "step": 276
3598
+ },
3599
+ {
3600
+ "Batch Mean": -0.09725213050842285,
3601
+ "accuracy": 0.8125,
3602
+ "epoch": 0.69,
3603
+ "step": 276
3604
+ },
3605
+ {
3606
+ "epoch": 0.6925,
3607
+ "grad_norm": 8.159916877746582,
3608
+ "learning_rate": 9.710526315789474e-07,
3609
+ "loss": 0.4414,
3610
+ "step": 277
3611
+ },
3612
+ {
3613
+ "Batch Mean": -0.040779948234558105,
3614
+ "accuracy": 0.84375,
3615
+ "epoch": 0.6925,
3616
+ "step": 277
3617
+ },
3618
+ {
3619
+ "epoch": 0.695,
3620
+ "grad_norm": 7.725914001464844,
3621
+ "learning_rate": 9.63157894736842e-07,
3622
+ "loss": 0.3067,
3623
+ "step": 278
3624
+ },
3625
+ {
3626
+ "Batch Mean": 0.0323566198348999,
3627
+ "accuracy": 0.7734375,
3628
+ "epoch": 0.695,
3629
+ "step": 278
3630
+ },
3631
+ {
3632
+ "epoch": 0.6975,
3633
+ "grad_norm": 7.230583667755127,
3634
+ "learning_rate": 9.552631578947368e-07,
3635
+ "loss": 0.3767,
3636
+ "step": 279
3637
+ },
3638
+ {
3639
+ "Batch Mean": -0.07540559768676758,
3640
+ "accuracy": 0.8515625,
3641
+ "epoch": 0.6975,
3642
+ "step": 279
3643
+ },
3644
+ {
3645
+ "epoch": 0.7,
3646
+ "grad_norm": 7.241883754730225,
3647
+ "learning_rate": 9.473684210526316e-07,
3648
+ "loss": 0.2982,
3649
+ "step": 280
3650
+ },
3651
+ {
3652
+ "Batch Mean": -0.3009473383426666,
3653
+ "accuracy": 0.828125,
3654
+ "epoch": 0.7,
3655
+ "step": 280
3656
+ },
3657
+ {
3658
+ "epoch": 0.7025,
3659
+ "grad_norm": 8.05111312866211,
3660
+ "learning_rate": 9.394736842105262e-07,
3661
+ "loss": 0.3498,
3662
+ "step": 281
3663
+ },
3664
+ {
3665
+ "Batch Mean": 0.17420291900634766,
3666
+ "accuracy": 0.859375,
3667
+ "epoch": 0.7025,
3668
+ "step": 281
3669
+ },
3670
+ {
3671
+ "epoch": 0.705,
3672
+ "grad_norm": 7.624542236328125,
3673
+ "learning_rate": 9.315789473684212e-07,
3674
+ "loss": 0.3384,
3675
+ "step": 282
3676
+ },
3677
+ {
3678
+ "Batch Mean": 0.3028104305267334,
3679
+ "accuracy": 0.8359375,
3680
+ "epoch": 0.705,
3681
+ "step": 282
3682
+ },
3683
+ {
3684
+ "epoch": 0.7075,
3685
+ "grad_norm": 8.634331703186035,
3686
+ "learning_rate": 9.236842105263158e-07,
3687
+ "loss": 0.4123,
3688
+ "step": 283
3689
+ },
3690
+ {
3691
+ "Batch Mean": 0.26581865549087524,
3692
+ "accuracy": 0.875,
3693
+ "epoch": 0.7075,
3694
+ "step": 283
3695
+ },
3696
+ {
3697
+ "epoch": 0.71,
3698
+ "grad_norm": 7.606550216674805,
3699
+ "learning_rate": 9.157894736842106e-07,
3700
+ "loss": 0.2663,
3701
+ "step": 284
3702
+ },
3703
+ {
3704
+ "Batch Mean": 0.00487518310546875,
3705
+ "accuracy": 0.890625,
3706
+ "epoch": 0.71,
3707
+ "step": 284
3708
+ },
3709
+ {
3710
+ "epoch": 0.7125,
3711
+ "grad_norm": 5.981740474700928,
3712
+ "learning_rate": 9.078947368421053e-07,
3713
+ "loss": 0.2841,
3714
+ "step": 285
3715
+ },
3716
+ {
3717
+ "Batch Mean": 0.0009503364562988281,
3718
+ "accuracy": 0.890625,
3719
+ "epoch": 0.7125,
3720
+ "step": 285
3721
+ },
3722
+ {
3723
+ "epoch": 0.715,
3724
+ "grad_norm": 6.947564601898193,
3725
+ "learning_rate": 9e-07,
3726
+ "loss": 0.3142,
3727
+ "step": 286
3728
+ },
3729
+ {
3730
+ "Batch Mean": 0.0575718879699707,
3731
+ "accuracy": 0.8515625,
3732
+ "epoch": 0.715,
3733
+ "step": 286
3734
+ },
3735
+ {
3736
+ "epoch": 0.7175,
3737
+ "grad_norm": 8.3406343460083,
3738
+ "learning_rate": 8.921052631578947e-07,
3739
+ "loss": 0.3367,
3740
+ "step": 287
3741
+ },
3742
+ {
3743
+ "Batch Mean": -0.19788146018981934,
3744
+ "accuracy": 0.8203125,
3745
+ "epoch": 0.7175,
3746
+ "step": 287
3747
+ },
3748
+ {
3749
+ "epoch": 0.72,
3750
+ "grad_norm": 8.32129192352295,
3751
+ "learning_rate": 8.842105263157895e-07,
3752
+ "loss": 0.3848,
3753
+ "step": 288
3754
+ },
3755
+ {
3756
+ "Batch Mean": -0.1112222671508789,
3757
+ "accuracy": 0.875,
3758
+ "epoch": 0.72,
3759
+ "step": 288
3760
+ },
3761
+ {
3762
+ "epoch": 0.7225,
3763
+ "grad_norm": 6.531859397888184,
3764
+ "learning_rate": 8.763157894736843e-07,
3765
+ "loss": 0.2641,
3766
+ "step": 289
3767
+ },
3768
+ {
3769
+ "Batch Mean": -0.2570047974586487,
3770
+ "accuracy": 0.8671875,
3771
+ "epoch": 0.7225,
3772
+ "step": 289
3773
+ },
3774
+ {
3775
+ "epoch": 0.725,
3776
+ "grad_norm": 7.266209125518799,
3777
+ "learning_rate": 8.68421052631579e-07,
3778
+ "loss": 0.3026,
3779
+ "step": 290
3780
+ },
3781
+ {
3782
+ "Batch Mean": 0.33021998405456543,
3783
+ "accuracy": 0.84375,
3784
+ "epoch": 0.725,
3785
+ "step": 290
3786
+ },
3787
+ {
3788
+ "epoch": 0.7275,
3789
+ "grad_norm": 7.639843463897705,
3790
+ "learning_rate": 8.605263157894737e-07,
3791
+ "loss": 0.3685,
3792
+ "step": 291
3793
+ },
3794
+ {
3795
+ "Batch Mean": -0.1736621856689453,
3796
+ "accuracy": 0.84375,
3797
+ "epoch": 0.7275,
3798
+ "step": 291
3799
+ },
3800
+ {
3801
+ "epoch": 0.73,
3802
+ "grad_norm": 9.343413352966309,
3803
+ "learning_rate": 8.526315789473684e-07,
3804
+ "loss": 0.3996,
3805
+ "step": 292
3806
+ },
3807
+ {
3808
+ "Batch Mean": -0.44870805740356445,
3809
+ "accuracy": 0.8046875,
3810
+ "epoch": 0.73,
3811
+ "step": 292
3812
+ },
3813
+ {
3814
+ "epoch": 0.7325,
3815
+ "grad_norm": 10.543521881103516,
3816
+ "learning_rate": 8.447368421052632e-07,
3817
+ "loss": 0.4426,
3818
+ "step": 293
3819
+ },
3820
+ {
3821
+ "Batch Mean": 0.18045568466186523,
3822
+ "accuracy": 0.828125,
3823
+ "epoch": 0.7325,
3824
+ "step": 293
3825
+ },
3826
+ {
3827
+ "epoch": 0.735,
3828
+ "grad_norm": 7.400291919708252,
3829
+ "learning_rate": 8.368421052631578e-07,
3830
+ "loss": 0.3405,
3831
+ "step": 294
3832
+ },
3833
+ {
3834
+ "Batch Mean": 0.21915674209594727,
3835
+ "accuracy": 0.8125,
3836
+ "epoch": 0.735,
3837
+ "step": 294
3838
+ },
3839
+ {
3840
+ "epoch": 0.7375,
3841
+ "grad_norm": 7.723897457122803,
3842
+ "learning_rate": 8.289473684210528e-07,
3843
+ "loss": 0.3491,
3844
+ "step": 295
3845
+ },
3846
+ {
3847
+ "Batch Mean": -0.16765201091766357,
3848
+ "accuracy": 0.8515625,
3849
+ "epoch": 0.7375,
3850
+ "step": 295
3851
+ },
3852
+ {
3853
+ "epoch": 0.74,
3854
+ "grad_norm": 6.981317043304443,
3855
+ "learning_rate": 8.210526315789474e-07,
3856
+ "loss": 0.3368,
3857
+ "step": 296
3858
+ },
3859
+ {
3860
+ "Batch Mean": 0.18343955278396606,
3861
+ "accuracy": 0.84375,
3862
+ "epoch": 0.74,
3863
+ "step": 296
3864
+ },
3865
+ {
3866
+ "epoch": 0.7425,
3867
+ "grad_norm": 6.980420112609863,
3868
+ "learning_rate": 8.131578947368422e-07,
3869
+ "loss": 0.3735,
3870
+ "step": 297
3871
+ },
3872
+ {
3873
+ "Batch Mean": -0.08783578872680664,
3874
+ "accuracy": 0.859375,
3875
+ "epoch": 0.7425,
3876
+ "step": 297
3877
+ },
3878
+ {
3879
+ "epoch": 0.745,
3880
+ "grad_norm": 6.303057670593262,
3881
+ "learning_rate": 8.052631578947369e-07,
3882
+ "loss": 0.3213,
3883
+ "step": 298
3884
+ },
3885
+ {
3886
+ "Batch Mean": 0.05080127716064453,
3887
+ "accuracy": 0.8515625,
3888
+ "epoch": 0.745,
3889
+ "step": 298
3890
+ },
3891
+ {
3892
+ "epoch": 0.7475,
3893
+ "grad_norm": 6.454366207122803,
3894
+ "learning_rate": 7.973684210526315e-07,
3895
+ "loss": 0.331,
3896
+ "step": 299
3897
+ },
3898
+ {
3899
+ "Batch Mean": 0.1761825978755951,
3900
+ "accuracy": 0.8359375,
3901
+ "epoch": 0.7475,
3902
+ "step": 299
3903
+ },
3904
+ {
3905
+ "epoch": 0.75,
3906
+ "grad_norm": 6.318911075592041,
3907
+ "learning_rate": 7.894736842105263e-07,
3908
+ "loss": 0.3321,
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:74fbb395e3dbef6dff0b94de426655f11a7bcbb69a4cf79a55c0564599925fac
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:365d31d167d082d14a6864e95f1ec93092f1f3bbefbdc3f514d9261e840f5a6d
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:c6284d0d043b39a845f2661e0c176b7878ee6f0ee425b1353ffcddac20ca3bfc
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:3af66ef517739c5aad0057518ae4d89231eef0a2aec8ffdd343127053198473b
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
+ }