michaelchenkj commited on
Commit
a2863eb
·
verified ·
1 Parent(s): 9191fd7

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -323,3 +323,5 @@ runs/i5-fulle-lm/checkpoint-6624/tokenizer.json filter=lfs diff=lfs merge=lfs -t
323
  runs/i5-fulle-lm/checkpoint-6912/tokenizer.json filter=lfs diff=lfs merge=lfs -text
324
  runs/i5-fulle-lm/checkpoint-7200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
325
  runs/i5-fulle-lm/checkpoint-864/tokenizer.json filter=lfs diff=lfs merge=lfs -text
 
 
 
323
  runs/i5-fulle-lm/checkpoint-6912/tokenizer.json filter=lfs diff=lfs merge=lfs -text
324
  runs/i5-fulle-lm/checkpoint-7200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
325
  runs/i5-fulle-lm/checkpoint-864/tokenizer.json filter=lfs diff=lfs merge=lfs -text
326
+ runs/i5-fulle-lm/checkpoint-288/tokenizer.json filter=lfs diff=lfs merge=lfs -text
327
+ runs/i5-fulle-lm/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/i5-fulle-lm/checkpoint-288/chat_template.jinja ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
27
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
28
+ {%- elif message.role == "assistant" %}
29
+ {%- set content = message.content %}
30
+ {%- set reasoning_content = '' %}
31
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
32
+ {%- set reasoning_content = message.reasoning_content %}
33
+ {%- else %}
34
+ {%- if '</think>' in message.content %}
35
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
36
+ {%- set reasoning_content = message.content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
37
+ {%- endif %}
38
+ {%- endif %}
39
+ {%- if loop.index0 > ns.last_query_index %}
40
+ {%- if loop.last or (not loop.last and reasoning_content) %}
41
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
42
+ {%- else %}
43
+ {{- '<|im_start|>' + message.role + '\n' + content }}
44
+ {%- endif %}
45
+ {%- else %}
46
+ {{- '<|im_start|>' + message.role + '\n' + content }}
47
+ {%- endif %}
48
+ {%- if message.tool_calls %}
49
+ {%- for tool_call in message.tool_calls %}
50
+ {%- if (loop.first and content) or (not loop.first) %}
51
+ {{- '\n' }}
52
+ {%- endif %}
53
+ {%- if tool_call.function %}
54
+ {%- set tool_call = tool_call.function %}
55
+ {%- endif %}
56
+ {{- '<tool_call>\n{"name": "' }}
57
+ {{- tool_call.name }}
58
+ {{- '", "arguments": ' }}
59
+ {%- if tool_call.arguments is string %}
60
+ {{- tool_call.arguments }}
61
+ {%- else %}
62
+ {{- tool_call.arguments | tojson }}
63
+ {%- endif %}
64
+ {{- '}\n</tool_call>' }}
65
+ {%- endfor %}
66
+ {%- endif %}
67
+ {{- '<|im_end|>\n' }}
68
+ {%- elif message.role == "tool" %}
69
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
70
+ {{- '<|im_start|>user' }}
71
+ {%- endif %}
72
+ {{- '\n<tool_response>\n' }}
73
+ {{- message.content }}
74
+ {{- '\n</tool_response>' }}
75
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
76
+ {{- '<|im_end|>\n' }}
77
+ {%- endif %}
78
+ {%- endif %}
79
+ {%- endfor %}
80
+ {%- if add_generation_prompt %}
81
+ {{- '<|im_start|>assistant\n' }}
82
+ {%- if enable_thinking is defined and enable_thinking is false %}
83
+ {{- '<think>\n\n</think>\n\n' }}
84
+ {%- endif %}
85
+ {%- endif %}
runs/i5-fulle-lm/checkpoint-288/config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": null,
8
+ "dtype": "float32",
9
+ "eos_token_id": 151645,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 512,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 1536,
15
+ "max_position_embeddings": 2048,
16
+ "mlp_bias": false,
17
+ "model_type": "llama",
18
+ "num_attention_heads": 4,
19
+ "num_hidden_layers": 20,
20
+ "num_key_value_heads": 4,
21
+ "pad_token_id": 151645,
22
+ "pretraining_tp": 1,
23
+ "rms_norm_eps": 1e-06,
24
+ "rope_parameters": {
25
+ "rope_theta": 10000.0,
26
+ "rope_type": "default"
27
+ },
28
+ "tie_word_embeddings": true,
29
+ "transformers_version": "5.6.2",
30
+ "use_cache": false,
31
+ "vocab_size": 151676
32
+ }
runs/i5-fulle-lm/checkpoint-288/generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "eos_token_id": [
4
+ 151645
5
+ ],
6
+ "output_attentions": false,
7
+ "output_hidden_states": false,
8
+ "pad_token_id": 151645,
9
+ "transformers_version": "5.6.2",
10
+ "use_cache": true
11
+ }
runs/i5-fulle-lm/checkpoint-288/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d95067e0f269e9d0797551155eb2c9904a58964f257cd785d4f6ca769215e375
3
+ size 583366472
runs/i5-fulle-lm/checkpoint-288/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:567acc4c63c2ee8bcded7144ca5103c611e3e8699f9a281807eed7677a502049
3
+ size 1166845818
runs/i5-fulle-lm/checkpoint-288/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3697161c925aa951ac0afd4272324484d1b6cfacdac930c963d532edd793739e
3
+ size 14512
runs/i5-fulle-lm/checkpoint-288/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:427bec5e7dbcdc3161ba700b494c4b91531cb0107db061309f0023e611b65ef8
3
+ size 14512
runs/i5-fulle-lm/checkpoint-288/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d1eab1d6f570939dc1e4b9d10383b7354ef244100fb2b34ff0ac8b58642b63c
3
+ size 1064
runs/i5-fulle-lm/checkpoint-288/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
3
+ size 11425039
runs/i5-fulle-lm/checkpoint-288/tokenizer_config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|l2r_pred|>",
10
+ "<|r2l_pred|>",
11
+ "<|next_1_pred|>",
12
+ "<|next_2_pred|>",
13
+ "<|next_3_pred|>",
14
+ "<|next_4_pred|>",
15
+ "<|next_5_pred|>"
16
+ ],
17
+ "is_local": false,
18
+ "local_files_only": false,
19
+ "model_max_length": 32768,
20
+ "pad_token": "<|im_end|>",
21
+ "split_special_tokens": false,
22
+ "tokenizer_class": "Qwen2Tokenizer",
23
+ "unk_token": null
24
+ }
runs/i5-fulle-lm/checkpoint-288/trainer_state.json ADDED
@@ -0,0 +1,2074 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 4.0,
6
+ "eval_steps": 500,
7
+ "global_step": 288,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.013979903888160769,
14
+ "grad_norm": 2.9929754734039307,
15
+ "learning_rate": 0.0,
16
+ "loss": 11.991058349609375,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.027959807776321538,
21
+ "grad_norm": 2.9691145420074463,
22
+ "learning_rate": 5.999999999999999e-06,
23
+ "loss": 11.995436668395996,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.04193971166448231,
28
+ "grad_norm": 2.943331480026245,
29
+ "learning_rate": 1.1999999999999999e-05,
30
+ "loss": 11.945241928100586,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.055919615552643076,
35
+ "grad_norm": 2.7279052734375,
36
+ "learning_rate": 1.7999999999999997e-05,
37
+ "loss": 11.857856750488281,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.06989951944080385,
42
+ "grad_norm": 2.459994316101074,
43
+ "learning_rate": 2.3999999999999997e-05,
44
+ "loss": 11.753747940063477,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.08387942332896461,
49
+ "grad_norm": 2.3261163234710693,
50
+ "learning_rate": 2.9999999999999997e-05,
51
+ "loss": 11.634729385375977,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.09785932721712538,
56
+ "grad_norm": 2.102216958999634,
57
+ "learning_rate": 3.5999999999999994e-05,
58
+ "loss": 11.522893905639648,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.11183923110528615,
63
+ "grad_norm": 1.9048895835876465,
64
+ "learning_rate": 4.2e-05,
65
+ "loss": 11.433613777160645,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.1258191349934469,
70
+ "grad_norm": 1.822629690170288,
71
+ "learning_rate": 4.7999999999999994e-05,
72
+ "loss": 11.346614837646484,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.1397990388816077,
77
+ "grad_norm": 1.7702407836914062,
78
+ "learning_rate": 5.399999999999999e-05,
79
+ "loss": 11.274776458740234,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.15377894276976845,
84
+ "grad_norm": 1.724582314491272,
85
+ "learning_rate": 5.9999999999999995e-05,
86
+ "loss": 11.214641571044922,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.16775884665792923,
91
+ "grad_norm": 1.7143093347549438,
92
+ "learning_rate": 6.599999999999999e-05,
93
+ "loss": 11.160767555236816,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.18173875054608998,
98
+ "grad_norm": 1.7055429220199585,
99
+ "learning_rate": 7.199999999999999e-05,
100
+ "loss": 11.112727165222168,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.19571865443425077,
105
+ "grad_norm": 1.6979949474334717,
106
+ "learning_rate": 7.8e-05,
107
+ "loss": 11.070176124572754,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.20969855832241152,
112
+ "grad_norm": 1.698456883430481,
113
+ "learning_rate": 8.4e-05,
114
+ "loss": 11.021273612976074,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.2236784622105723,
119
+ "grad_norm": 1.694309949874878,
120
+ "learning_rate": 8.999999999999999e-05,
121
+ "loss": 10.964617729187012,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.23765836609873306,
126
+ "grad_norm": 1.7008790969848633,
127
+ "learning_rate": 9.599999999999999e-05,
128
+ "loss": 10.905136108398438,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.2516382699868938,
133
+ "grad_norm": 1.6909408569335938,
134
+ "learning_rate": 0.000102,
135
+ "loss": 10.840185165405273,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.2656181738750546,
140
+ "grad_norm": 1.6919310092926025,
141
+ "learning_rate": 0.00010799999999999998,
142
+ "loss": 10.770065307617188,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.2795980777632154,
147
+ "grad_norm": 1.6948130130767822,
148
+ "learning_rate": 0.00011399999999999999,
149
+ "loss": 10.692286491394043,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.29357798165137616,
154
+ "grad_norm": 1.6694281101226807,
155
+ "learning_rate": 0.00011999999999999999,
156
+ "loss": 10.622184753417969,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.3075578855395369,
161
+ "grad_norm": 1.672411561012268,
162
+ "learning_rate": 0.00012599999999999997,
163
+ "loss": 10.533384323120117,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.3215377894276977,
168
+ "grad_norm": 1.6780970096588135,
169
+ "learning_rate": 0.00013199999999999998,
170
+ "loss": 10.443933486938477,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.33551769331585846,
175
+ "grad_norm": 1.6708232164382935,
176
+ "learning_rate": 0.000138,
177
+ "loss": 10.355020523071289,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.34949759720401924,
182
+ "grad_norm": 1.665282964706421,
183
+ "learning_rate": 0.00014399999999999998,
184
+ "loss": 10.263477325439453,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.36347750109217997,
189
+ "grad_norm": 1.6800806522369385,
190
+ "learning_rate": 0.00015,
191
+ "loss": 10.157119750976562,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.37745740498034075,
196
+ "grad_norm": 1.6528797149658203,
197
+ "learning_rate": 0.000156,
198
+ "loss": 10.072553634643555,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.39143730886850153,
203
+ "grad_norm": 1.6828707456588745,
204
+ "learning_rate": 0.000162,
205
+ "loss": 9.954492568969727,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.4054172127566623,
210
+ "grad_norm": 1.6531107425689697,
211
+ "learning_rate": 0.000168,
212
+ "loss": 9.86182689666748,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.41939711664482304,
217
+ "grad_norm": 1.660179853439331,
218
+ "learning_rate": 0.00017399999999999997,
219
+ "loss": 9.744815826416016,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.4333770205329838,
224
+ "grad_norm": 1.638755202293396,
225
+ "learning_rate": 0.00017999999999999998,
226
+ "loss": 9.652502059936523,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.4473569244211446,
231
+ "grad_norm": 1.6358997821807861,
232
+ "learning_rate": 0.000186,
233
+ "loss": 9.537353515625,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.4613368283093054,
238
+ "grad_norm": 1.621189832687378,
239
+ "learning_rate": 0.00019199999999999998,
240
+ "loss": 9.42542552947998,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.4753167321974661,
245
+ "grad_norm": 1.6219159364700317,
246
+ "learning_rate": 0.000198,
247
+ "loss": 9.317501068115234,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.4892966360856269,
252
+ "grad_norm": 1.5829830169677734,
253
+ "learning_rate": 0.000204,
254
+ "loss": 9.230195999145508,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.5032765399737876,
259
+ "grad_norm": 1.570173978805542,
260
+ "learning_rate": 0.00020999999999999998,
261
+ "loss": 9.109664916992188,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.5172564438619485,
266
+ "grad_norm": 1.565650463104248,
267
+ "learning_rate": 0.00021599999999999996,
268
+ "loss": 8.996440887451172,
269
+ "step": 37
270
+ },
271
+ {
272
+ "epoch": 0.5312363477501092,
273
+ "grad_norm": 1.5497723817825317,
274
+ "learning_rate": 0.00022199999999999998,
275
+ "loss": 8.887308120727539,
276
+ "step": 38
277
+ },
278
+ {
279
+ "epoch": 0.54521625163827,
280
+ "grad_norm": 1.5418901443481445,
281
+ "learning_rate": 0.00022799999999999999,
282
+ "loss": 8.779237747192383,
283
+ "step": 39
284
+ },
285
+ {
286
+ "epoch": 0.5591961555264308,
287
+ "grad_norm": 1.4985361099243164,
288
+ "learning_rate": 0.000234,
289
+ "loss": 8.688765525817871,
290
+ "step": 40
291
+ },
292
+ {
293
+ "epoch": 0.5731760594145915,
294
+ "grad_norm": 1.4592864513397217,
295
+ "learning_rate": 0.00023999999999999998,
296
+ "loss": 8.600611686706543,
297
+ "step": 41
298
+ },
299
+ {
300
+ "epoch": 0.5871559633027523,
301
+ "grad_norm": 1.4482712745666504,
302
+ "learning_rate": 0.00024599999999999996,
303
+ "loss": 8.499870300292969,
304
+ "step": 42
305
+ },
306
+ {
307
+ "epoch": 0.601135867190913,
308
+ "grad_norm": 1.4105122089385986,
309
+ "learning_rate": 0.00025199999999999995,
310
+ "loss": 8.387744903564453,
311
+ "step": 43
312
+ },
313
+ {
314
+ "epoch": 0.6151157710790738,
315
+ "grad_norm": 1.34541654586792,
316
+ "learning_rate": 0.000258,
317
+ "loss": 8.338939666748047,
318
+ "step": 44
319
+ },
320
+ {
321
+ "epoch": 0.6290956749672346,
322
+ "grad_norm": 1.2429373264312744,
323
+ "learning_rate": 0.00026399999999999997,
324
+ "loss": 8.24583625793457,
325
+ "step": 45
326
+ },
327
+ {
328
+ "epoch": 0.6430755788553953,
329
+ "grad_norm": 1.1936670541763306,
330
+ "learning_rate": 0.00027,
331
+ "loss": 8.162744522094727,
332
+ "step": 46
333
+ },
334
+ {
335
+ "epoch": 0.6570554827435562,
336
+ "grad_norm": 1.13948392868042,
337
+ "learning_rate": 0.000276,
338
+ "loss": 8.059897422790527,
339
+ "step": 47
340
+ },
341
+ {
342
+ "epoch": 0.6710353866317169,
343
+ "grad_norm": 1.0357334613800049,
344
+ "learning_rate": 0.00028199999999999997,
345
+ "loss": 7.972769260406494,
346
+ "step": 48
347
+ },
348
+ {
349
+ "epoch": 0.6850152905198776,
350
+ "grad_norm": 0.9511513113975525,
351
+ "learning_rate": 0.00028799999999999995,
352
+ "loss": 7.923378944396973,
353
+ "step": 49
354
+ },
355
+ {
356
+ "epoch": 0.6989951944080385,
357
+ "grad_norm": 0.8084472417831421,
358
+ "learning_rate": 0.000294,
359
+ "loss": 7.861480712890625,
360
+ "step": 50
361
+ },
362
+ {
363
+ "epoch": 0.7129750982961992,
364
+ "grad_norm": 0.7135328650474548,
365
+ "learning_rate": 0.0003,
366
+ "loss": 7.82336950302124,
367
+ "step": 51
368
+ },
369
+ {
370
+ "epoch": 0.7269550021843599,
371
+ "grad_norm": 0.572115957736969,
372
+ "learning_rate": 0.00030599999999999996,
373
+ "loss": 7.784486770629883,
374
+ "step": 52
375
+ },
376
+ {
377
+ "epoch": 0.7409349060725208,
378
+ "grad_norm": 0.4873937666416168,
379
+ "learning_rate": 0.000312,
380
+ "loss": 7.732234954833984,
381
+ "step": 53
382
+ },
383
+ {
384
+ "epoch": 0.7549148099606815,
385
+ "grad_norm": 0.3295879364013672,
386
+ "learning_rate": 0.000318,
387
+ "loss": 7.720306873321533,
388
+ "step": 54
389
+ },
390
+ {
391
+ "epoch": 0.7688947138488423,
392
+ "grad_norm": 0.25995877385139465,
393
+ "learning_rate": 0.000324,
394
+ "loss": 7.698555946350098,
395
+ "step": 55
396
+ },
397
+ {
398
+ "epoch": 0.7828746177370031,
399
+ "grad_norm": 0.24519014358520508,
400
+ "learning_rate": 0.00033,
401
+ "loss": 7.677582263946533,
402
+ "step": 56
403
+ },
404
+ {
405
+ "epoch": 0.7968545216251638,
406
+ "grad_norm": 0.17343710362911224,
407
+ "learning_rate": 0.000336,
408
+ "loss": 7.684822082519531,
409
+ "step": 57
410
+ },
411
+ {
412
+ "epoch": 0.8108344255133246,
413
+ "grad_norm": 0.18203967809677124,
414
+ "learning_rate": 0.00034199999999999996,
415
+ "loss": 7.677922248840332,
416
+ "step": 58
417
+ },
418
+ {
419
+ "epoch": 0.8248143294014854,
420
+ "grad_norm": 0.23763766884803772,
421
+ "learning_rate": 0.00034799999999999995,
422
+ "loss": 7.663730621337891,
423
+ "step": 59
424
+ },
425
+ {
426
+ "epoch": 0.8387942332896461,
427
+ "grad_norm": 0.27194544672966003,
428
+ "learning_rate": 0.00035399999999999993,
429
+ "loss": 7.656854629516602,
430
+ "step": 60
431
+ },
432
+ {
433
+ "epoch": 0.8527741371778069,
434
+ "grad_norm": 0.26884615421295166,
435
+ "learning_rate": 0.00035999999999999997,
436
+ "loss": 7.617514133453369,
437
+ "step": 61
438
+ },
439
+ {
440
+ "epoch": 0.8667540410659677,
441
+ "grad_norm": 0.2615501880645752,
442
+ "learning_rate": 0.00036599999999999995,
443
+ "loss": 7.634084701538086,
444
+ "step": 62
445
+ },
446
+ {
447
+ "epoch": 0.8807339449541285,
448
+ "grad_norm": 0.21137872338294983,
449
+ "learning_rate": 0.000372,
450
+ "loss": 7.62425422668457,
451
+ "step": 63
452
+ },
453
+ {
454
+ "epoch": 0.8947138488422892,
455
+ "grad_norm": 0.1411866545677185,
456
+ "learning_rate": 0.00037799999999999997,
457
+ "loss": 7.603841781616211,
458
+ "step": 64
459
+ },
460
+ {
461
+ "epoch": 0.9086937527304499,
462
+ "grad_norm": 0.1536041498184204,
463
+ "learning_rate": 0.00038399999999999996,
464
+ "loss": 7.617574691772461,
465
+ "step": 65
466
+ },
467
+ {
468
+ "epoch": 0.9226736566186108,
469
+ "grad_norm": 0.15028807520866394,
470
+ "learning_rate": 0.00039,
471
+ "loss": 7.605348587036133,
472
+ "step": 66
473
+ },
474
+ {
475
+ "epoch": 0.9366535605067715,
476
+ "grad_norm": 0.14039766788482666,
477
+ "learning_rate": 0.000396,
478
+ "loss": 7.590822219848633,
479
+ "step": 67
480
+ },
481
+ {
482
+ "epoch": 0.9506334643949322,
483
+ "grad_norm": 0.12192250043153763,
484
+ "learning_rate": 0.000402,
485
+ "loss": 7.5595173835754395,
486
+ "step": 68
487
+ },
488
+ {
489
+ "epoch": 0.9646133682830931,
490
+ "grad_norm": 0.10842809826135635,
491
+ "learning_rate": 0.000408,
492
+ "loss": 7.565250396728516,
493
+ "step": 69
494
+ },
495
+ {
496
+ "epoch": 0.9785932721712538,
497
+ "grad_norm": 0.11480727046728134,
498
+ "learning_rate": 0.0004139999999999999,
499
+ "loss": 7.540429592132568,
500
+ "step": 70
501
+ },
502
+ {
503
+ "epoch": 0.9925731760594146,
504
+ "grad_norm": 0.12565556168556213,
505
+ "learning_rate": 0.00041999999999999996,
506
+ "loss": 7.53934383392334,
507
+ "step": 71
508
+ },
509
+ {
510
+ "epoch": 1.0,
511
+ "grad_norm": 0.15351328253746033,
512
+ "learning_rate": 0.00042599999999999995,
513
+ "loss": 7.551596164703369,
514
+ "step": 72
515
+ },
516
+ {
517
+ "epoch": 1.0,
518
+ "eval_loss": 7.557724952697754,
519
+ "eval_runtime": 43.9265,
520
+ "eval_samples_per_second": 55.593,
521
+ "eval_steps_per_second": 3.483,
522
+ "step": 72
523
+ },
524
+ {
525
+ "epoch": 1.0139799038881607,
526
+ "grad_norm": 0.20383046567440033,
527
+ "learning_rate": 0.00043199999999999993,
528
+ "loss": 7.540946960449219,
529
+ "step": 73
530
+ },
531
+ {
532
+ "epoch": 1.0279598077763215,
533
+ "grad_norm": 0.9161878228187561,
534
+ "learning_rate": 0.00043799999999999997,
535
+ "loss": 7.555147171020508,
536
+ "step": 74
537
+ },
538
+ {
539
+ "epoch": 1.0419397116644824,
540
+ "grad_norm": 2.083580493927002,
541
+ "learning_rate": 0.00044399999999999995,
542
+ "loss": 7.768552303314209,
543
+ "step": 75
544
+ },
545
+ {
546
+ "epoch": 1.0559196155526431,
547
+ "grad_norm": 0.8796588778495789,
548
+ "learning_rate": 0.00045,
549
+ "loss": 7.611505031585693,
550
+ "step": 76
551
+ },
552
+ {
553
+ "epoch": 1.0698995194408039,
554
+ "grad_norm": 0.6216000318527222,
555
+ "learning_rate": 0.00045599999999999997,
556
+ "loss": 7.567468643188477,
557
+ "step": 77
558
+ },
559
+ {
560
+ "epoch": 1.0838794233289646,
561
+ "grad_norm": 0.8930279612541199,
562
+ "learning_rate": 0.00046199999999999995,
563
+ "loss": 7.5782470703125,
564
+ "step": 78
565
+ },
566
+ {
567
+ "epoch": 1.0978593272171253,
568
+ "grad_norm": 0.4613345265388489,
569
+ "learning_rate": 0.000468,
570
+ "loss": 7.576062202453613,
571
+ "step": 79
572
+ },
573
+ {
574
+ "epoch": 1.1118392311052863,
575
+ "grad_norm": 0.3412339687347412,
576
+ "learning_rate": 0.000474,
577
+ "loss": 7.564639091491699,
578
+ "step": 80
579
+ },
580
+ {
581
+ "epoch": 1.125819134993447,
582
+ "grad_norm": 0.40676653385162354,
583
+ "learning_rate": 0.00047999999999999996,
584
+ "loss": 7.571394920349121,
585
+ "step": 81
586
+ },
587
+ {
588
+ "epoch": 1.1397990388816077,
589
+ "grad_norm": 0.3903053104877472,
590
+ "learning_rate": 0.000486,
591
+ "loss": 7.551764965057373,
592
+ "step": 82
593
+ },
594
+ {
595
+ "epoch": 1.1537789427697684,
596
+ "grad_norm": 0.24286146461963654,
597
+ "learning_rate": 0.0004919999999999999,
598
+ "loss": 7.519876480102539,
599
+ "step": 83
600
+ },
601
+ {
602
+ "epoch": 1.1677588466579292,
603
+ "grad_norm": 0.3156949281692505,
604
+ "learning_rate": 0.000498,
605
+ "loss": 7.49195671081543,
606
+ "step": 84
607
+ },
608
+ {
609
+ "epoch": 1.18173875054609,
610
+ "grad_norm": 0.31037577986717224,
611
+ "learning_rate": 0.0005039999999999999,
612
+ "loss": 7.489378929138184,
613
+ "step": 85
614
+ },
615
+ {
616
+ "epoch": 1.1957186544342508,
617
+ "grad_norm": 0.2998732626438141,
618
+ "learning_rate": 0.0005099999999999999,
619
+ "loss": 7.490997314453125,
620
+ "step": 86
621
+ },
622
+ {
623
+ "epoch": 1.2096985583224116,
624
+ "grad_norm": 0.24859440326690674,
625
+ "learning_rate": 0.000516,
626
+ "loss": 7.495302200317383,
627
+ "step": 87
628
+ },
629
+ {
630
+ "epoch": 1.2236784622105723,
631
+ "grad_norm": 0.2625124752521515,
632
+ "learning_rate": 0.000522,
633
+ "loss": 7.517210006713867,
634
+ "step": 88
635
+ },
636
+ {
637
+ "epoch": 1.237658366098733,
638
+ "grad_norm": 0.3036101162433624,
639
+ "learning_rate": 0.0005279999999999999,
640
+ "loss": 7.47798490524292,
641
+ "step": 89
642
+ },
643
+ {
644
+ "epoch": 1.2516382699868938,
645
+ "grad_norm": 0.25779256224632263,
646
+ "learning_rate": 0.000534,
647
+ "loss": 7.494161605834961,
648
+ "step": 90
649
+ },
650
+ {
651
+ "epoch": 1.2656181738750547,
652
+ "grad_norm": 0.1909315437078476,
653
+ "learning_rate": 0.00054,
654
+ "loss": 7.487898826599121,
655
+ "step": 91
656
+ },
657
+ {
658
+ "epoch": 1.2795980777632154,
659
+ "grad_norm": 0.24012571573257446,
660
+ "learning_rate": 0.0005459999999999999,
661
+ "loss": 7.480587959289551,
662
+ "step": 92
663
+ },
664
+ {
665
+ "epoch": 1.2935779816513762,
666
+ "grad_norm": 0.29606521129608154,
667
+ "learning_rate": 0.000552,
668
+ "loss": 7.481789588928223,
669
+ "step": 93
670
+ },
671
+ {
672
+ "epoch": 1.307557885539537,
673
+ "grad_norm": 0.23928579688072205,
674
+ "learning_rate": 0.000558,
675
+ "loss": 7.439096450805664,
676
+ "step": 94
677
+ },
678
+ {
679
+ "epoch": 1.3215377894276976,
680
+ "grad_norm": 0.16471117734909058,
681
+ "learning_rate": 0.0005639999999999999,
682
+ "loss": 7.459171772003174,
683
+ "step": 95
684
+ },
685
+ {
686
+ "epoch": 1.3355176933158583,
687
+ "grad_norm": 0.19538572430610657,
688
+ "learning_rate": 0.00057,
689
+ "loss": 7.492301940917969,
690
+ "step": 96
691
+ },
692
+ {
693
+ "epoch": 1.3494975972040193,
694
+ "grad_norm": 0.21342918276786804,
695
+ "learning_rate": 0.0005759999999999999,
696
+ "loss": 7.4531755447387695,
697
+ "step": 97
698
+ },
699
+ {
700
+ "epoch": 1.36347750109218,
701
+ "grad_norm": 0.18592850863933563,
702
+ "learning_rate": 0.0005819999999999999,
703
+ "loss": 7.477556228637695,
704
+ "step": 98
705
+ },
706
+ {
707
+ "epoch": 1.3774574049803407,
708
+ "grad_norm": 0.1463978886604309,
709
+ "learning_rate": 0.000588,
710
+ "loss": 7.478244781494141,
711
+ "step": 99
712
+ },
713
+ {
714
+ "epoch": 1.3914373088685015,
715
+ "grad_norm": 0.14106525480747223,
716
+ "learning_rate": 0.0005939999999999999,
717
+ "loss": 7.46275520324707,
718
+ "step": 100
719
+ },
720
+ {
721
+ "epoch": 1.4054172127566624,
722
+ "grad_norm": 0.17314527928829193,
723
+ "learning_rate": 0.0006,
724
+ "loss": 7.479445457458496,
725
+ "step": 101
726
+ },
727
+ {
728
+ "epoch": 1.4193971166448232,
729
+ "grad_norm": 0.22932972013950348,
730
+ "learning_rate": 0.0006,
731
+ "loss": 7.470530986785889,
732
+ "step": 102
733
+ },
734
+ {
735
+ "epoch": 1.4333770205329839,
736
+ "grad_norm": 0.2356046438217163,
737
+ "learning_rate": 0.0006,
738
+ "loss": 7.479394435882568,
739
+ "step": 103
740
+ },
741
+ {
742
+ "epoch": 1.4473569244211446,
743
+ "grad_norm": 0.3144241273403168,
744
+ "learning_rate": 0.0006,
745
+ "loss": 7.462943077087402,
746
+ "step": 104
747
+ },
748
+ {
749
+ "epoch": 1.4613368283093053,
750
+ "grad_norm": 0.24671342968940735,
751
+ "learning_rate": 0.0006,
752
+ "loss": 7.469005584716797,
753
+ "step": 105
754
+ },
755
+ {
756
+ "epoch": 1.475316732197466,
757
+ "grad_norm": 0.13560344278812408,
758
+ "learning_rate": 0.0006,
759
+ "loss": 7.446053504943848,
760
+ "step": 106
761
+ },
762
+ {
763
+ "epoch": 1.4892966360856268,
764
+ "grad_norm": 0.23291273415088654,
765
+ "learning_rate": 0.0006,
766
+ "loss": 7.472160816192627,
767
+ "step": 107
768
+ },
769
+ {
770
+ "epoch": 1.5032765399737875,
771
+ "grad_norm": 0.19900304079055786,
772
+ "learning_rate": 0.0006,
773
+ "loss": 7.451987266540527,
774
+ "step": 108
775
+ },
776
+ {
777
+ "epoch": 1.5172564438619485,
778
+ "grad_norm": 0.1223536878824234,
779
+ "learning_rate": 0.0006,
780
+ "loss": 7.435811996459961,
781
+ "step": 109
782
+ },
783
+ {
784
+ "epoch": 1.5312363477501092,
785
+ "grad_norm": 0.27388015389442444,
786
+ "learning_rate": 0.0006,
787
+ "loss": 7.4550371170043945,
788
+ "step": 110
789
+ },
790
+ {
791
+ "epoch": 1.5452162516382701,
792
+ "grad_norm": 0.14400412142276764,
793
+ "learning_rate": 0.0006,
794
+ "loss": 7.46645450592041,
795
+ "step": 111
796
+ },
797
+ {
798
+ "epoch": 1.5591961555264309,
799
+ "grad_norm": 0.16108646988868713,
800
+ "learning_rate": 0.0006,
801
+ "loss": 7.452724456787109,
802
+ "step": 112
803
+ },
804
+ {
805
+ "epoch": 1.5731760594145916,
806
+ "grad_norm": 0.1659977287054062,
807
+ "learning_rate": 0.0006,
808
+ "loss": 7.441495418548584,
809
+ "step": 113
810
+ },
811
+ {
812
+ "epoch": 1.5871559633027523,
813
+ "grad_norm": 0.09798736870288849,
814
+ "learning_rate": 0.0006,
815
+ "loss": 7.453086853027344,
816
+ "step": 114
817
+ },
818
+ {
819
+ "epoch": 1.601135867190913,
820
+ "grad_norm": 0.17251403629779816,
821
+ "learning_rate": 0.0006,
822
+ "loss": 7.42927360534668,
823
+ "step": 115
824
+ },
825
+ {
826
+ "epoch": 1.6151157710790738,
827
+ "grad_norm": 0.11626467853784561,
828
+ "learning_rate": 0.0006,
829
+ "loss": 7.463476181030273,
830
+ "step": 116
831
+ },
832
+ {
833
+ "epoch": 1.6290956749672345,
834
+ "grad_norm": 0.16235218942165375,
835
+ "learning_rate": 0.0006,
836
+ "loss": 7.43464469909668,
837
+ "step": 117
838
+ },
839
+ {
840
+ "epoch": 1.6430755788553952,
841
+ "grad_norm": 0.141210675239563,
842
+ "learning_rate": 0.0006,
843
+ "loss": 7.434066295623779,
844
+ "step": 118
845
+ },
846
+ {
847
+ "epoch": 1.6570554827435562,
848
+ "grad_norm": 0.10119029134511948,
849
+ "learning_rate": 0.0006,
850
+ "loss": 7.432812213897705,
851
+ "step": 119
852
+ },
853
+ {
854
+ "epoch": 1.671035386631717,
855
+ "grad_norm": 0.1677795648574829,
856
+ "learning_rate": 0.0006,
857
+ "loss": 7.401336669921875,
858
+ "step": 120
859
+ },
860
+ {
861
+ "epoch": 1.6850152905198776,
862
+ "grad_norm": 0.15185703337192535,
863
+ "learning_rate": 0.0006,
864
+ "loss": 7.408813953399658,
865
+ "step": 121
866
+ },
867
+ {
868
+ "epoch": 1.6989951944080386,
869
+ "grad_norm": 0.10933516919612885,
870
+ "learning_rate": 0.0006,
871
+ "loss": 7.440712928771973,
872
+ "step": 122
873
+ },
874
+ {
875
+ "epoch": 1.7129750982961993,
876
+ "grad_norm": 0.18483813107013702,
877
+ "learning_rate": 0.0006,
878
+ "loss": 7.420928955078125,
879
+ "step": 123
880
+ },
881
+ {
882
+ "epoch": 1.72695500218436,
883
+ "grad_norm": 0.16304557025432587,
884
+ "learning_rate": 0.0006,
885
+ "loss": 7.422573089599609,
886
+ "step": 124
887
+ },
888
+ {
889
+ "epoch": 1.7409349060725208,
890
+ "grad_norm": 0.10511505603790283,
891
+ "learning_rate": 0.0006,
892
+ "loss": 7.414434909820557,
893
+ "step": 125
894
+ },
895
+ {
896
+ "epoch": 1.7549148099606815,
897
+ "grad_norm": 0.16721735894680023,
898
+ "learning_rate": 0.0006,
899
+ "loss": 7.430843353271484,
900
+ "step": 126
901
+ },
902
+ {
903
+ "epoch": 1.7688947138488422,
904
+ "grad_norm": 0.1958962082862854,
905
+ "learning_rate": 0.0006,
906
+ "loss": 7.454378128051758,
907
+ "step": 127
908
+ },
909
+ {
910
+ "epoch": 1.782874617737003,
911
+ "grad_norm": 0.1712699681520462,
912
+ "learning_rate": 0.0006,
913
+ "loss": 7.442202568054199,
914
+ "step": 128
915
+ },
916
+ {
917
+ "epoch": 1.7968545216251637,
918
+ "grad_norm": 0.11664750427007675,
919
+ "learning_rate": 0.0006,
920
+ "loss": 7.4285125732421875,
921
+ "step": 129
922
+ },
923
+ {
924
+ "epoch": 1.8108344255133246,
925
+ "grad_norm": 0.12337825447320938,
926
+ "learning_rate": 0.0006,
927
+ "loss": 7.428487777709961,
928
+ "step": 130
929
+ },
930
+ {
931
+ "epoch": 1.8248143294014854,
932
+ "grad_norm": 0.16938446462154388,
933
+ "learning_rate": 0.0006,
934
+ "loss": 7.434096336364746,
935
+ "step": 131
936
+ },
937
+ {
938
+ "epoch": 1.838794233289646,
939
+ "grad_norm": 0.24545668065547943,
940
+ "learning_rate": 0.0006,
941
+ "loss": 7.394075870513916,
942
+ "step": 132
943
+ },
944
+ {
945
+ "epoch": 1.852774137177807,
946
+ "grad_norm": 0.3402247130870819,
947
+ "learning_rate": 0.0006,
948
+ "loss": 7.414653778076172,
949
+ "step": 133
950
+ },
951
+ {
952
+ "epoch": 1.8667540410659678,
953
+ "grad_norm": 0.36810728907585144,
954
+ "learning_rate": 0.0006,
955
+ "loss": 7.424988746643066,
956
+ "step": 134
957
+ },
958
+ {
959
+ "epoch": 1.8807339449541285,
960
+ "grad_norm": 0.21281471848487854,
961
+ "learning_rate": 0.0006,
962
+ "loss": 7.411754608154297,
963
+ "step": 135
964
+ },
965
+ {
966
+ "epoch": 1.8947138488422892,
967
+ "grad_norm": 0.1980692744255066,
968
+ "learning_rate": 0.0006,
969
+ "loss": 7.40480899810791,
970
+ "step": 136
971
+ },
972
+ {
973
+ "epoch": 1.90869375273045,
974
+ "grad_norm": 0.27005308866500854,
975
+ "learning_rate": 0.0006,
976
+ "loss": 7.423867225646973,
977
+ "step": 137
978
+ },
979
+ {
980
+ "epoch": 1.9226736566186107,
981
+ "grad_norm": 0.16427795588970184,
982
+ "learning_rate": 0.0006,
983
+ "loss": 7.4098711013793945,
984
+ "step": 138
985
+ },
986
+ {
987
+ "epoch": 1.9366535605067714,
988
+ "grad_norm": 0.17707839608192444,
989
+ "learning_rate": 0.0006,
990
+ "loss": 7.415262222290039,
991
+ "step": 139
992
+ },
993
+ {
994
+ "epoch": 1.9506334643949321,
995
+ "grad_norm": 0.1794007420539856,
996
+ "learning_rate": 0.0006,
997
+ "loss": 7.418964385986328,
998
+ "step": 140
999
+ },
1000
+ {
1001
+ "epoch": 1.964613368283093,
1002
+ "grad_norm": 0.231395423412323,
1003
+ "learning_rate": 0.0006,
1004
+ "loss": 7.39762020111084,
1005
+ "step": 141
1006
+ },
1007
+ {
1008
+ "epoch": 1.9785932721712538,
1009
+ "grad_norm": 0.13338525593280792,
1010
+ "learning_rate": 0.0006,
1011
+ "loss": 7.373764991760254,
1012
+ "step": 142
1013
+ },
1014
+ {
1015
+ "epoch": 1.9925731760594148,
1016
+ "grad_norm": 0.13533078134059906,
1017
+ "learning_rate": 0.0006,
1018
+ "loss": 7.366655349731445,
1019
+ "step": 143
1020
+ },
1021
+ {
1022
+ "epoch": 2.0,
1023
+ "grad_norm": 0.17013047635555267,
1024
+ "learning_rate": 0.0006,
1025
+ "loss": 7.378033638000488,
1026
+ "step": 144
1027
+ },
1028
+ {
1029
+ "epoch": 2.0,
1030
+ "eval_loss": 7.4123454093933105,
1031
+ "eval_runtime": 43.8729,
1032
+ "eval_samples_per_second": 55.661,
1033
+ "eval_steps_per_second": 3.487,
1034
+ "step": 144
1035
+ },
1036
+ {
1037
+ "epoch": 2.0139799038881607,
1038
+ "grad_norm": 0.11198635399341583,
1039
+ "learning_rate": 0.0006,
1040
+ "loss": 7.378727912902832,
1041
+ "step": 145
1042
+ },
1043
+ {
1044
+ "epoch": 2.0279598077763215,
1045
+ "grad_norm": 0.1774112433195114,
1046
+ "learning_rate": 0.0006,
1047
+ "loss": 7.369501113891602,
1048
+ "step": 146
1049
+ },
1050
+ {
1051
+ "epoch": 2.041939711664482,
1052
+ "grad_norm": 0.27899402379989624,
1053
+ "learning_rate": 0.0006,
1054
+ "loss": 7.399102687835693,
1055
+ "step": 147
1056
+ },
1057
+ {
1058
+ "epoch": 2.055919615552643,
1059
+ "grad_norm": 0.4848053455352783,
1060
+ "learning_rate": 0.0006,
1061
+ "loss": 7.372189521789551,
1062
+ "step": 148
1063
+ },
1064
+ {
1065
+ "epoch": 2.0698995194408036,
1066
+ "grad_norm": 0.604353666305542,
1067
+ "learning_rate": 0.0006,
1068
+ "loss": 7.438274383544922,
1069
+ "step": 149
1070
+ },
1071
+ {
1072
+ "epoch": 2.083879423328965,
1073
+ "grad_norm": 0.3621702790260315,
1074
+ "learning_rate": 0.0006,
1075
+ "loss": 7.400620460510254,
1076
+ "step": 150
1077
+ },
1078
+ {
1079
+ "epoch": 2.0978593272171255,
1080
+ "grad_norm": 0.2087877094745636,
1081
+ "learning_rate": 0.0006,
1082
+ "loss": 7.36997127532959,
1083
+ "step": 151
1084
+ },
1085
+ {
1086
+ "epoch": 2.1118392311052863,
1087
+ "grad_norm": 0.3555629551410675,
1088
+ "learning_rate": 0.0006,
1089
+ "loss": 7.394223213195801,
1090
+ "step": 152
1091
+ },
1092
+ {
1093
+ "epoch": 2.125819134993447,
1094
+ "grad_norm": 0.4509451687335968,
1095
+ "learning_rate": 0.0006,
1096
+ "loss": 7.385214328765869,
1097
+ "step": 153
1098
+ },
1099
+ {
1100
+ "epoch": 2.1397990388816077,
1101
+ "grad_norm": 0.7136989831924438,
1102
+ "learning_rate": 0.0006,
1103
+ "loss": 7.376396179199219,
1104
+ "step": 154
1105
+ },
1106
+ {
1107
+ "epoch": 2.1537789427697684,
1108
+ "grad_norm": 0.382146954536438,
1109
+ "learning_rate": 0.0006,
1110
+ "loss": 7.398931980133057,
1111
+ "step": 155
1112
+ },
1113
+ {
1114
+ "epoch": 2.167758846657929,
1115
+ "grad_norm": 0.29745835065841675,
1116
+ "learning_rate": 0.0006,
1117
+ "loss": 7.385200500488281,
1118
+ "step": 156
1119
+ },
1120
+ {
1121
+ "epoch": 2.18173875054609,
1122
+ "grad_norm": 0.22685673832893372,
1123
+ "learning_rate": 0.0006,
1124
+ "loss": 7.382201194763184,
1125
+ "step": 157
1126
+ },
1127
+ {
1128
+ "epoch": 2.1957186544342506,
1129
+ "grad_norm": 0.343770295381546,
1130
+ "learning_rate": 0.0006,
1131
+ "loss": 7.3411102294921875,
1132
+ "step": 158
1133
+ },
1134
+ {
1135
+ "epoch": 2.2096985583224114,
1136
+ "grad_norm": 0.26879584789276123,
1137
+ "learning_rate": 0.0006,
1138
+ "loss": 7.357332229614258,
1139
+ "step": 159
1140
+ },
1141
+ {
1142
+ "epoch": 2.2236784622105725,
1143
+ "grad_norm": 0.2427089512348175,
1144
+ "learning_rate": 0.0006,
1145
+ "loss": 7.363718032836914,
1146
+ "step": 160
1147
+ },
1148
+ {
1149
+ "epoch": 2.2376583660987333,
1150
+ "grad_norm": 0.2931700050830841,
1151
+ "learning_rate": 0.0006,
1152
+ "loss": 7.368688583374023,
1153
+ "step": 161
1154
+ },
1155
+ {
1156
+ "epoch": 2.251638269986894,
1157
+ "grad_norm": 0.13952866196632385,
1158
+ "learning_rate": 0.0006,
1159
+ "loss": 7.364292621612549,
1160
+ "step": 162
1161
+ },
1162
+ {
1163
+ "epoch": 2.2656181738750547,
1164
+ "grad_norm": 0.26854249835014343,
1165
+ "learning_rate": 0.0006,
1166
+ "loss": 7.3626389503479,
1167
+ "step": 163
1168
+ },
1169
+ {
1170
+ "epoch": 2.2795980777632154,
1171
+ "grad_norm": 0.21246272325515747,
1172
+ "learning_rate": 0.0006,
1173
+ "loss": 7.361966609954834,
1174
+ "step": 164
1175
+ },
1176
+ {
1177
+ "epoch": 2.293577981651376,
1178
+ "grad_norm": 0.15983626246452332,
1179
+ "learning_rate": 0.0006,
1180
+ "loss": 7.367931365966797,
1181
+ "step": 165
1182
+ },
1183
+ {
1184
+ "epoch": 2.307557885539537,
1185
+ "grad_norm": 0.24395889043807983,
1186
+ "learning_rate": 0.0006,
1187
+ "loss": 7.322544097900391,
1188
+ "step": 166
1189
+ },
1190
+ {
1191
+ "epoch": 2.3215377894276976,
1192
+ "grad_norm": 0.15896999835968018,
1193
+ "learning_rate": 0.0006,
1194
+ "loss": 7.338911533355713,
1195
+ "step": 167
1196
+ },
1197
+ {
1198
+ "epoch": 2.3355176933158583,
1199
+ "grad_norm": 0.24652288854122162,
1200
+ "learning_rate": 0.0006,
1201
+ "loss": 7.344303607940674,
1202
+ "step": 168
1203
+ },
1204
+ {
1205
+ "epoch": 2.349497597204019,
1206
+ "grad_norm": 0.2133418172597885,
1207
+ "learning_rate": 0.0006,
1208
+ "loss": 7.3513898849487305,
1209
+ "step": 169
1210
+ },
1211
+ {
1212
+ "epoch": 2.36347750109218,
1213
+ "grad_norm": 0.18094605207443237,
1214
+ "learning_rate": 0.0006,
1215
+ "loss": 7.324538707733154,
1216
+ "step": 170
1217
+ },
1218
+ {
1219
+ "epoch": 2.3774574049803405,
1220
+ "grad_norm": 0.2253016233444214,
1221
+ "learning_rate": 0.0006,
1222
+ "loss": 7.352097511291504,
1223
+ "step": 171
1224
+ },
1225
+ {
1226
+ "epoch": 2.3914373088685017,
1227
+ "grad_norm": 0.15868234634399414,
1228
+ "learning_rate": 0.0006,
1229
+ "loss": 7.301148891448975,
1230
+ "step": 172
1231
+ },
1232
+ {
1233
+ "epoch": 2.4054172127566624,
1234
+ "grad_norm": 0.3204607367515564,
1235
+ "learning_rate": 0.0006,
1236
+ "loss": 7.337883949279785,
1237
+ "step": 173
1238
+ },
1239
+ {
1240
+ "epoch": 2.419397116644823,
1241
+ "grad_norm": 0.21076281368732452,
1242
+ "learning_rate": 0.0006,
1243
+ "loss": 7.342248916625977,
1244
+ "step": 174
1245
+ },
1246
+ {
1247
+ "epoch": 2.433377020532984,
1248
+ "grad_norm": 0.23778486251831055,
1249
+ "learning_rate": 0.0006,
1250
+ "loss": 7.310346603393555,
1251
+ "step": 175
1252
+ },
1253
+ {
1254
+ "epoch": 2.4473569244211446,
1255
+ "grad_norm": 0.15573205053806305,
1256
+ "learning_rate": 0.0006,
1257
+ "loss": 7.343023300170898,
1258
+ "step": 176
1259
+ },
1260
+ {
1261
+ "epoch": 2.4613368283093053,
1262
+ "grad_norm": 0.33393287658691406,
1263
+ "learning_rate": 0.0006,
1264
+ "loss": 7.300928592681885,
1265
+ "step": 177
1266
+ },
1267
+ {
1268
+ "epoch": 2.475316732197466,
1269
+ "grad_norm": 0.35888051986694336,
1270
+ "learning_rate": 0.0006,
1271
+ "loss": 7.297277450561523,
1272
+ "step": 178
1273
+ },
1274
+ {
1275
+ "epoch": 2.489296636085627,
1276
+ "grad_norm": 0.2832542955875397,
1277
+ "learning_rate": 0.0006,
1278
+ "loss": 7.298312187194824,
1279
+ "step": 179
1280
+ },
1281
+ {
1282
+ "epoch": 2.5032765399737875,
1283
+ "grad_norm": 0.2123432159423828,
1284
+ "learning_rate": 0.0006,
1285
+ "loss": 7.29883337020874,
1286
+ "step": 180
1287
+ },
1288
+ {
1289
+ "epoch": 2.5172564438619487,
1290
+ "grad_norm": 0.30314815044403076,
1291
+ "learning_rate": 0.0006,
1292
+ "loss": 7.285894393920898,
1293
+ "step": 181
1294
+ },
1295
+ {
1296
+ "epoch": 2.5312363477501094,
1297
+ "grad_norm": 0.35035452246665955,
1298
+ "learning_rate": 0.0006,
1299
+ "loss": 7.318349838256836,
1300
+ "step": 182
1301
+ },
1302
+ {
1303
+ "epoch": 2.54521625163827,
1304
+ "grad_norm": 0.2431941032409668,
1305
+ "learning_rate": 0.0006,
1306
+ "loss": 7.296319961547852,
1307
+ "step": 183
1308
+ },
1309
+ {
1310
+ "epoch": 2.559196155526431,
1311
+ "grad_norm": 0.3479756712913513,
1312
+ "learning_rate": 0.0006,
1313
+ "loss": 7.3054399490356445,
1314
+ "step": 184
1315
+ },
1316
+ {
1317
+ "epoch": 2.5731760594145916,
1318
+ "grad_norm": 0.2816961109638214,
1319
+ "learning_rate": 0.0006,
1320
+ "loss": 7.270098686218262,
1321
+ "step": 185
1322
+ },
1323
+ {
1324
+ "epoch": 2.5871559633027523,
1325
+ "grad_norm": 0.2909104824066162,
1326
+ "learning_rate": 0.0006,
1327
+ "loss": 7.270987510681152,
1328
+ "step": 186
1329
+ },
1330
+ {
1331
+ "epoch": 2.601135867190913,
1332
+ "grad_norm": 0.2449629306793213,
1333
+ "learning_rate": 0.0006,
1334
+ "loss": 7.258650779724121,
1335
+ "step": 187
1336
+ },
1337
+ {
1338
+ "epoch": 2.615115771079074,
1339
+ "grad_norm": 0.39041537046432495,
1340
+ "learning_rate": 0.0006,
1341
+ "loss": 7.294661521911621,
1342
+ "step": 188
1343
+ },
1344
+ {
1345
+ "epoch": 2.6290956749672345,
1346
+ "grad_norm": 0.4115809202194214,
1347
+ "learning_rate": 0.0006,
1348
+ "loss": 7.240309238433838,
1349
+ "step": 189
1350
+ },
1351
+ {
1352
+ "epoch": 2.6430755788553952,
1353
+ "grad_norm": 0.41485708951950073,
1354
+ "learning_rate": 0.0006,
1355
+ "loss": 7.294451713562012,
1356
+ "step": 190
1357
+ },
1358
+ {
1359
+ "epoch": 2.657055482743556,
1360
+ "grad_norm": 0.49846965074539185,
1361
+ "learning_rate": 0.0006,
1362
+ "loss": 7.252174377441406,
1363
+ "step": 191
1364
+ },
1365
+ {
1366
+ "epoch": 2.6710353866317167,
1367
+ "grad_norm": 0.6144671440124512,
1368
+ "learning_rate": 0.0006,
1369
+ "loss": 7.280319690704346,
1370
+ "step": 192
1371
+ },
1372
+ {
1373
+ "epoch": 2.6850152905198774,
1374
+ "grad_norm": 0.5955181121826172,
1375
+ "learning_rate": 0.0006,
1376
+ "loss": 7.274979591369629,
1377
+ "step": 193
1378
+ },
1379
+ {
1380
+ "epoch": 2.6989951944080386,
1381
+ "grad_norm": 0.2802278697490692,
1382
+ "learning_rate": 0.0006,
1383
+ "loss": 7.270544528961182,
1384
+ "step": 194
1385
+ },
1386
+ {
1387
+ "epoch": 2.7129750982961993,
1388
+ "grad_norm": 0.2788214385509491,
1389
+ "learning_rate": 0.0006,
1390
+ "loss": 7.283371925354004,
1391
+ "step": 195
1392
+ },
1393
+ {
1394
+ "epoch": 2.72695500218436,
1395
+ "grad_norm": 0.313618540763855,
1396
+ "learning_rate": 0.0006,
1397
+ "loss": 7.256155967712402,
1398
+ "step": 196
1399
+ },
1400
+ {
1401
+ "epoch": 2.7409349060725208,
1402
+ "grad_norm": 0.29027095437049866,
1403
+ "learning_rate": 0.0006,
1404
+ "loss": 7.233058452606201,
1405
+ "step": 197
1406
+ },
1407
+ {
1408
+ "epoch": 2.7549148099606815,
1409
+ "grad_norm": 0.2737275958061218,
1410
+ "learning_rate": 0.0006,
1411
+ "loss": 7.193321704864502,
1412
+ "step": 198
1413
+ },
1414
+ {
1415
+ "epoch": 2.7688947138488422,
1416
+ "grad_norm": 0.2631153464317322,
1417
+ "learning_rate": 0.0006,
1418
+ "loss": 7.219632148742676,
1419
+ "step": 199
1420
+ },
1421
+ {
1422
+ "epoch": 2.782874617737003,
1423
+ "grad_norm": 0.22121192514896393,
1424
+ "learning_rate": 0.0006,
1425
+ "loss": 7.230212211608887,
1426
+ "step": 200
1427
+ },
1428
+ {
1429
+ "epoch": 2.7968545216251637,
1430
+ "grad_norm": 0.23263955116271973,
1431
+ "learning_rate": 0.0006,
1432
+ "loss": 7.209331512451172,
1433
+ "step": 201
1434
+ },
1435
+ {
1436
+ "epoch": 2.810834425513325,
1437
+ "grad_norm": 0.24149790406227112,
1438
+ "learning_rate": 0.0006,
1439
+ "loss": 7.205179214477539,
1440
+ "step": 202
1441
+ },
1442
+ {
1443
+ "epoch": 2.8248143294014856,
1444
+ "grad_norm": 0.2171594202518463,
1445
+ "learning_rate": 0.0006,
1446
+ "loss": 7.232029914855957,
1447
+ "step": 203
1448
+ },
1449
+ {
1450
+ "epoch": 2.8387942332896463,
1451
+ "grad_norm": 0.26197630167007446,
1452
+ "learning_rate": 0.0006,
1453
+ "loss": 7.184950828552246,
1454
+ "step": 204
1455
+ },
1456
+ {
1457
+ "epoch": 2.852774137177807,
1458
+ "grad_norm": 0.20011170208454132,
1459
+ "learning_rate": 0.0006,
1460
+ "loss": 7.206712245941162,
1461
+ "step": 205
1462
+ },
1463
+ {
1464
+ "epoch": 2.8667540410659678,
1465
+ "grad_norm": 0.27107346057891846,
1466
+ "learning_rate": 0.0006,
1467
+ "loss": 7.222592353820801,
1468
+ "step": 206
1469
+ },
1470
+ {
1471
+ "epoch": 2.8807339449541285,
1472
+ "grad_norm": 0.4205261170864105,
1473
+ "learning_rate": 0.0006,
1474
+ "loss": 7.1839280128479,
1475
+ "step": 207
1476
+ },
1477
+ {
1478
+ "epoch": 2.894713848842289,
1479
+ "grad_norm": 0.47731834650039673,
1480
+ "learning_rate": 0.0006,
1481
+ "loss": 7.162832260131836,
1482
+ "step": 208
1483
+ },
1484
+ {
1485
+ "epoch": 2.90869375273045,
1486
+ "grad_norm": 0.4435124695301056,
1487
+ "learning_rate": 0.0006,
1488
+ "loss": 7.161921501159668,
1489
+ "step": 209
1490
+ },
1491
+ {
1492
+ "epoch": 2.9226736566186107,
1493
+ "grad_norm": 0.3114961087703705,
1494
+ "learning_rate": 0.0006,
1495
+ "loss": 7.19951868057251,
1496
+ "step": 210
1497
+ },
1498
+ {
1499
+ "epoch": 2.9366535605067714,
1500
+ "grad_norm": 0.2735799551010132,
1501
+ "learning_rate": 0.0006,
1502
+ "loss": 7.203862190246582,
1503
+ "step": 211
1504
+ },
1505
+ {
1506
+ "epoch": 2.950633464394932,
1507
+ "grad_norm": 0.23693297803401947,
1508
+ "learning_rate": 0.0006,
1509
+ "loss": 7.183262825012207,
1510
+ "step": 212
1511
+ },
1512
+ {
1513
+ "epoch": 2.964613368283093,
1514
+ "grad_norm": 0.28864166140556335,
1515
+ "learning_rate": 0.0006,
1516
+ "loss": 7.1793999671936035,
1517
+ "step": 213
1518
+ },
1519
+ {
1520
+ "epoch": 2.9785932721712536,
1521
+ "grad_norm": 0.369371622800827,
1522
+ "learning_rate": 0.0006,
1523
+ "loss": 7.187225341796875,
1524
+ "step": 214
1525
+ },
1526
+ {
1527
+ "epoch": 2.9925731760594148,
1528
+ "grad_norm": 0.4354340136051178,
1529
+ "learning_rate": 0.0006,
1530
+ "loss": 7.173516273498535,
1531
+ "step": 215
1532
+ },
1533
+ {
1534
+ "epoch": 3.0,
1535
+ "grad_norm": 0.596161425113678,
1536
+ "learning_rate": 0.0006,
1537
+ "loss": 7.172244548797607,
1538
+ "step": 216
1539
+ },
1540
+ {
1541
+ "epoch": 3.0,
1542
+ "eval_loss": 7.2277116775512695,
1543
+ "eval_runtime": 43.8371,
1544
+ "eval_samples_per_second": 55.706,
1545
+ "eval_steps_per_second": 3.49,
1546
+ "step": 216
1547
+ },
1548
+ {
1549
+ "epoch": 3.0139799038881607,
1550
+ "grad_norm": 0.6943187713623047,
1551
+ "learning_rate": 0.0006,
1552
+ "loss": 7.192678451538086,
1553
+ "step": 217
1554
+ },
1555
+ {
1556
+ "epoch": 3.0279598077763215,
1557
+ "grad_norm": 0.6334913372993469,
1558
+ "learning_rate": 0.0006,
1559
+ "loss": 7.18038272857666,
1560
+ "step": 218
1561
+ },
1562
+ {
1563
+ "epoch": 3.041939711664482,
1564
+ "grad_norm": 0.9394033551216125,
1565
+ "learning_rate": 0.0006,
1566
+ "loss": 7.238675117492676,
1567
+ "step": 219
1568
+ },
1569
+ {
1570
+ "epoch": 3.055919615552643,
1571
+ "grad_norm": 0.6698894500732422,
1572
+ "learning_rate": 0.0006,
1573
+ "loss": 7.2277421951293945,
1574
+ "step": 220
1575
+ },
1576
+ {
1577
+ "epoch": 3.0698995194408036,
1578
+ "grad_norm": 0.808504045009613,
1579
+ "learning_rate": 0.0006,
1580
+ "loss": 7.177737236022949,
1581
+ "step": 221
1582
+ },
1583
+ {
1584
+ "epoch": 3.083879423328965,
1585
+ "grad_norm": 0.4508601725101471,
1586
+ "learning_rate": 0.0006,
1587
+ "loss": 7.193819999694824,
1588
+ "step": 222
1589
+ },
1590
+ {
1591
+ "epoch": 3.0978593272171255,
1592
+ "grad_norm": 0.5354502201080322,
1593
+ "learning_rate": 0.0006,
1594
+ "loss": 7.20770263671875,
1595
+ "step": 223
1596
+ },
1597
+ {
1598
+ "epoch": 3.1118392311052863,
1599
+ "grad_norm": 0.38915351033210754,
1600
+ "learning_rate": 0.0006,
1601
+ "loss": 7.1766557693481445,
1602
+ "step": 224
1603
+ },
1604
+ {
1605
+ "epoch": 3.125819134993447,
1606
+ "grad_norm": 0.3691655695438385,
1607
+ "learning_rate": 0.0006,
1608
+ "loss": 7.178019046783447,
1609
+ "step": 225
1610
+ },
1611
+ {
1612
+ "epoch": 3.1397990388816077,
1613
+ "grad_norm": 0.33945342898368835,
1614
+ "learning_rate": 0.0006,
1615
+ "loss": 7.19429874420166,
1616
+ "step": 226
1617
+ },
1618
+ {
1619
+ "epoch": 3.1537789427697684,
1620
+ "grad_norm": 0.32922592759132385,
1621
+ "learning_rate": 0.0006,
1622
+ "loss": 7.120317459106445,
1623
+ "step": 227
1624
+ },
1625
+ {
1626
+ "epoch": 3.167758846657929,
1627
+ "grad_norm": 0.3513849675655365,
1628
+ "learning_rate": 0.0006,
1629
+ "loss": 7.142359733581543,
1630
+ "step": 228
1631
+ },
1632
+ {
1633
+ "epoch": 3.18173875054609,
1634
+ "grad_norm": 0.30255037546157837,
1635
+ "learning_rate": 0.0006,
1636
+ "loss": 7.152212142944336,
1637
+ "step": 229
1638
+ },
1639
+ {
1640
+ "epoch": 3.1957186544342506,
1641
+ "grad_norm": 0.2880764305591583,
1642
+ "learning_rate": 0.0006,
1643
+ "loss": 7.121652603149414,
1644
+ "step": 230
1645
+ },
1646
+ {
1647
+ "epoch": 3.2096985583224114,
1648
+ "grad_norm": 0.25499045848846436,
1649
+ "learning_rate": 0.0006,
1650
+ "loss": 7.140979766845703,
1651
+ "step": 231
1652
+ },
1653
+ {
1654
+ "epoch": 3.2236784622105725,
1655
+ "grad_norm": 0.23907481133937836,
1656
+ "learning_rate": 0.0006,
1657
+ "loss": 7.176339149475098,
1658
+ "step": 232
1659
+ },
1660
+ {
1661
+ "epoch": 3.2376583660987333,
1662
+ "grad_norm": 0.17425109446048737,
1663
+ "learning_rate": 0.0006,
1664
+ "loss": 7.111868381500244,
1665
+ "step": 233
1666
+ },
1667
+ {
1668
+ "epoch": 3.251638269986894,
1669
+ "grad_norm": 0.20220792293548584,
1670
+ "learning_rate": 0.0006,
1671
+ "loss": 7.111875534057617,
1672
+ "step": 234
1673
+ },
1674
+ {
1675
+ "epoch": 3.2656181738750547,
1676
+ "grad_norm": 0.18983975052833557,
1677
+ "learning_rate": 0.0006,
1678
+ "loss": 7.15122127532959,
1679
+ "step": 235
1680
+ },
1681
+ {
1682
+ "epoch": 3.2795980777632154,
1683
+ "grad_norm": 0.1762138307094574,
1684
+ "learning_rate": 0.0006,
1685
+ "loss": 7.097733497619629,
1686
+ "step": 236
1687
+ },
1688
+ {
1689
+ "epoch": 3.293577981651376,
1690
+ "grad_norm": 0.17428478598594666,
1691
+ "learning_rate": 0.0006,
1692
+ "loss": 7.135674476623535,
1693
+ "step": 237
1694
+ },
1695
+ {
1696
+ "epoch": 3.307557885539537,
1697
+ "grad_norm": 0.20386698842048645,
1698
+ "learning_rate": 0.0006,
1699
+ "loss": 7.069553375244141,
1700
+ "step": 238
1701
+ },
1702
+ {
1703
+ "epoch": 3.3215377894276976,
1704
+ "grad_norm": 0.15233081579208374,
1705
+ "learning_rate": 0.0006,
1706
+ "loss": 7.109054088592529,
1707
+ "step": 239
1708
+ },
1709
+ {
1710
+ "epoch": 3.3355176933158583,
1711
+ "grad_norm": 0.17089344561100006,
1712
+ "learning_rate": 0.0006,
1713
+ "loss": 7.130184650421143,
1714
+ "step": 240
1715
+ },
1716
+ {
1717
+ "epoch": 3.349497597204019,
1718
+ "grad_norm": 0.17807772755622864,
1719
+ "learning_rate": 0.0006,
1720
+ "loss": 7.095787525177002,
1721
+ "step": 241
1722
+ },
1723
+ {
1724
+ "epoch": 3.36347750109218,
1725
+ "grad_norm": 0.16838936507701874,
1726
+ "learning_rate": 0.0006,
1727
+ "loss": 7.114252090454102,
1728
+ "step": 242
1729
+ },
1730
+ {
1731
+ "epoch": 3.3774574049803405,
1732
+ "grad_norm": 0.16293153166770935,
1733
+ "learning_rate": 0.0006,
1734
+ "loss": 7.074337482452393,
1735
+ "step": 243
1736
+ },
1737
+ {
1738
+ "epoch": 3.3914373088685017,
1739
+ "grad_norm": 0.16128183901309967,
1740
+ "learning_rate": 0.0006,
1741
+ "loss": 7.063385009765625,
1742
+ "step": 244
1743
+ },
1744
+ {
1745
+ "epoch": 3.4054172127566624,
1746
+ "grad_norm": 0.1928701102733612,
1747
+ "learning_rate": 0.0006,
1748
+ "loss": 7.051932334899902,
1749
+ "step": 245
1750
+ },
1751
+ {
1752
+ "epoch": 3.419397116644823,
1753
+ "grad_norm": 0.20493793487548828,
1754
+ "learning_rate": 0.0006,
1755
+ "loss": 7.077460289001465,
1756
+ "step": 246
1757
+ },
1758
+ {
1759
+ "epoch": 3.433377020532984,
1760
+ "grad_norm": 0.2293575257062912,
1761
+ "learning_rate": 0.0006,
1762
+ "loss": 7.078977584838867,
1763
+ "step": 247
1764
+ },
1765
+ {
1766
+ "epoch": 3.4473569244211446,
1767
+ "grad_norm": 0.18689008057117462,
1768
+ "learning_rate": 0.0006,
1769
+ "loss": 7.059084892272949,
1770
+ "step": 248
1771
+ },
1772
+ {
1773
+ "epoch": 3.4613368283093053,
1774
+ "grad_norm": 0.19842873513698578,
1775
+ "learning_rate": 0.0006,
1776
+ "loss": 7.0738420486450195,
1777
+ "step": 249
1778
+ },
1779
+ {
1780
+ "epoch": 3.475316732197466,
1781
+ "grad_norm": 0.3007665276527405,
1782
+ "learning_rate": 0.0006,
1783
+ "loss": 7.076623916625977,
1784
+ "step": 250
1785
+ },
1786
+ {
1787
+ "epoch": 3.489296636085627,
1788
+ "grad_norm": 0.4958188831806183,
1789
+ "learning_rate": 0.0006,
1790
+ "loss": 7.082813262939453,
1791
+ "step": 251
1792
+ },
1793
+ {
1794
+ "epoch": 3.5032765399737875,
1795
+ "grad_norm": 0.5846964716911316,
1796
+ "learning_rate": 0.0006,
1797
+ "loss": 7.047091484069824,
1798
+ "step": 252
1799
+ },
1800
+ {
1801
+ "epoch": 3.5172564438619487,
1802
+ "grad_norm": 0.5116973519325256,
1803
+ "learning_rate": 0.0006,
1804
+ "loss": 6.983251094818115,
1805
+ "step": 253
1806
+ },
1807
+ {
1808
+ "epoch": 3.5312363477501094,
1809
+ "grad_norm": 0.6879552006721497,
1810
+ "learning_rate": 0.0006,
1811
+ "loss": 7.006407737731934,
1812
+ "step": 254
1813
+ },
1814
+ {
1815
+ "epoch": 3.54521625163827,
1816
+ "grad_norm": 0.7615530490875244,
1817
+ "learning_rate": 0.0006,
1818
+ "loss": 7.069635391235352,
1819
+ "step": 255
1820
+ },
1821
+ {
1822
+ "epoch": 3.559196155526431,
1823
+ "grad_norm": 0.8079577684402466,
1824
+ "learning_rate": 0.0006,
1825
+ "loss": 7.107845783233643,
1826
+ "step": 256
1827
+ },
1828
+ {
1829
+ "epoch": 3.5731760594145916,
1830
+ "grad_norm": 0.6537765264511108,
1831
+ "learning_rate": 0.0006,
1832
+ "loss": 7.081098556518555,
1833
+ "step": 257
1834
+ },
1835
+ {
1836
+ "epoch": 3.5871559633027523,
1837
+ "grad_norm": 0.46238747239112854,
1838
+ "learning_rate": 0.0006,
1839
+ "loss": 7.082648277282715,
1840
+ "step": 258
1841
+ },
1842
+ {
1843
+ "epoch": 3.601135867190913,
1844
+ "grad_norm": 0.4576103687286377,
1845
+ "learning_rate": 0.0006,
1846
+ "loss": 7.0410237312316895,
1847
+ "step": 259
1848
+ },
1849
+ {
1850
+ "epoch": 3.615115771079074,
1851
+ "grad_norm": 0.33660757541656494,
1852
+ "learning_rate": 0.0006,
1853
+ "loss": 7.045464038848877,
1854
+ "step": 260
1855
+ },
1856
+ {
1857
+ "epoch": 3.6290956749672345,
1858
+ "grad_norm": 0.47639480233192444,
1859
+ "learning_rate": 0.0006,
1860
+ "loss": 7.022253036499023,
1861
+ "step": 261
1862
+ },
1863
+ {
1864
+ "epoch": 3.6430755788553952,
1865
+ "grad_norm": 0.30574870109558105,
1866
+ "learning_rate": 0.0006,
1867
+ "loss": 6.974809646606445,
1868
+ "step": 262
1869
+ },
1870
+ {
1871
+ "epoch": 3.657055482743556,
1872
+ "grad_norm": 0.2908029854297638,
1873
+ "learning_rate": 0.0006,
1874
+ "loss": 7.023398399353027,
1875
+ "step": 263
1876
+ },
1877
+ {
1878
+ "epoch": 3.6710353866317167,
1879
+ "grad_norm": 0.2543371021747589,
1880
+ "learning_rate": 0.0006,
1881
+ "loss": 7.032631874084473,
1882
+ "step": 264
1883
+ },
1884
+ {
1885
+ "epoch": 3.6850152905198774,
1886
+ "grad_norm": 0.2172250747680664,
1887
+ "learning_rate": 0.0006,
1888
+ "loss": 7.005949974060059,
1889
+ "step": 265
1890
+ },
1891
+ {
1892
+ "epoch": 3.6989951944080386,
1893
+ "grad_norm": 0.2803422212600708,
1894
+ "learning_rate": 0.0006,
1895
+ "loss": 6.959385871887207,
1896
+ "step": 266
1897
+ },
1898
+ {
1899
+ "epoch": 3.7129750982961993,
1900
+ "grad_norm": 0.2104235142469406,
1901
+ "learning_rate": 0.0006,
1902
+ "loss": 7.014190673828125,
1903
+ "step": 267
1904
+ },
1905
+ {
1906
+ "epoch": 3.72695500218436,
1907
+ "grad_norm": 0.29399633407592773,
1908
+ "learning_rate": 0.0006,
1909
+ "loss": 7.024015426635742,
1910
+ "step": 268
1911
+ },
1912
+ {
1913
+ "epoch": 3.7409349060725208,
1914
+ "grad_norm": 0.25223857164382935,
1915
+ "learning_rate": 0.0006,
1916
+ "loss": 6.9788408279418945,
1917
+ "step": 269
1918
+ },
1919
+ {
1920
+ "epoch": 3.7549148099606815,
1921
+ "grad_norm": 0.24702847003936768,
1922
+ "learning_rate": 0.0006,
1923
+ "loss": 6.916315078735352,
1924
+ "step": 270
1925
+ },
1926
+ {
1927
+ "epoch": 3.7688947138488422,
1928
+ "grad_norm": 0.32983389496803284,
1929
+ "learning_rate": 0.0006,
1930
+ "loss": 7.016416549682617,
1931
+ "step": 271
1932
+ },
1933
+ {
1934
+ "epoch": 3.782874617737003,
1935
+ "grad_norm": 0.40918615460395813,
1936
+ "learning_rate": 0.0006,
1937
+ "loss": 6.979311943054199,
1938
+ "step": 272
1939
+ },
1940
+ {
1941
+ "epoch": 3.7968545216251637,
1942
+ "grad_norm": 0.40026846528053284,
1943
+ "learning_rate": 0.0006,
1944
+ "loss": 6.964433670043945,
1945
+ "step": 273
1946
+ },
1947
+ {
1948
+ "epoch": 3.810834425513325,
1949
+ "grad_norm": 0.3424563705921173,
1950
+ "learning_rate": 0.0006,
1951
+ "loss": 6.944975852966309,
1952
+ "step": 274
1953
+ },
1954
+ {
1955
+ "epoch": 3.8248143294014856,
1956
+ "grad_norm": 0.35519829392433167,
1957
+ "learning_rate": 0.0006,
1958
+ "loss": 6.957089900970459,
1959
+ "step": 275
1960
+ },
1961
+ {
1962
+ "epoch": 3.8387942332896463,
1963
+ "grad_norm": 0.3994079530239105,
1964
+ "learning_rate": 0.0006,
1965
+ "loss": 6.9287567138671875,
1966
+ "step": 276
1967
+ },
1968
+ {
1969
+ "epoch": 3.852774137177807,
1970
+ "grad_norm": 0.3062368929386139,
1971
+ "learning_rate": 0.0006,
1972
+ "loss": 6.968643665313721,
1973
+ "step": 277
1974
+ },
1975
+ {
1976
+ "epoch": 3.8667540410659678,
1977
+ "grad_norm": 0.3296017348766327,
1978
+ "learning_rate": 0.0006,
1979
+ "loss": 6.96293306350708,
1980
+ "step": 278
1981
+ },
1982
+ {
1983
+ "epoch": 3.8807339449541285,
1984
+ "grad_norm": 0.23638883233070374,
1985
+ "learning_rate": 0.0006,
1986
+ "loss": 6.906896591186523,
1987
+ "step": 279
1988
+ },
1989
+ {
1990
+ "epoch": 3.894713848842289,
1991
+ "grad_norm": 0.32885977625846863,
1992
+ "learning_rate": 0.0006,
1993
+ "loss": 6.88896369934082,
1994
+ "step": 280
1995
+ },
1996
+ {
1997
+ "epoch": 3.90869375273045,
1998
+ "grad_norm": 0.3043595552444458,
1999
+ "learning_rate": 0.0006,
2000
+ "loss": 6.944347381591797,
2001
+ "step": 281
2002
+ },
2003
+ {
2004
+ "epoch": 3.9226736566186107,
2005
+ "grad_norm": 0.3249066472053528,
2006
+ "learning_rate": 0.0006,
2007
+ "loss": 6.933192253112793,
2008
+ "step": 282
2009
+ },
2010
+ {
2011
+ "epoch": 3.9366535605067714,
2012
+ "grad_norm": 0.35260462760925293,
2013
+ "learning_rate": 0.0006,
2014
+ "loss": 6.953738212585449,
2015
+ "step": 283
2016
+ },
2017
+ {
2018
+ "epoch": 3.950633464394932,
2019
+ "grad_norm": 0.3615424633026123,
2020
+ "learning_rate": 0.0006,
2021
+ "loss": 6.929230690002441,
2022
+ "step": 284
2023
+ },
2024
+ {
2025
+ "epoch": 3.964613368283093,
2026
+ "grad_norm": 0.3885534405708313,
2027
+ "learning_rate": 0.0006,
2028
+ "loss": 6.882650375366211,
2029
+ "step": 285
2030
+ },
2031
+ {
2032
+ "epoch": 3.9785932721712536,
2033
+ "grad_norm": 0.5568890571594238,
2034
+ "learning_rate": 0.0006,
2035
+ "loss": 6.941799163818359,
2036
+ "step": 286
2037
+ },
2038
+ {
2039
+ "epoch": 3.9925731760594148,
2040
+ "grad_norm": 0.4770040214061737,
2041
+ "learning_rate": 0.0006,
2042
+ "loss": 6.916370391845703,
2043
+ "step": 287
2044
+ },
2045
+ {
2046
+ "epoch": 4.0,
2047
+ "grad_norm": 0.34664037823677063,
2048
+ "learning_rate": 0.0006,
2049
+ "loss": 6.911777496337891,
2050
+ "step": 288
2051
+ }
2052
+ ],
2053
+ "logging_steps": 1,
2054
+ "max_steps": 28800,
2055
+ "num_input_tokens_seen": 0,
2056
+ "num_train_epochs": 400,
2057
+ "save_steps": 500,
2058
+ "stateful_callbacks": {
2059
+ "TrainerControl": {
2060
+ "args": {
2061
+ "should_epoch_stop": false,
2062
+ "should_evaluate": true,
2063
+ "should_log": false,
2064
+ "should_save": false,
2065
+ "should_training_stop": false
2066
+ },
2067
+ "attributes": {}
2068
+ }
2069
+ },
2070
+ "total_flos": 1.2273091675265434e+17,
2071
+ "train_batch_size": 8,
2072
+ "trial_name": null,
2073
+ "trial_params": null
2074
+ }
runs/i5-fulle-lm/checkpoint-288/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:897ce057a443cf9601c25071f56ee84c9f335aa0fdc26783fd4004c1ebfccd66
3
+ size 4856
runs/i5-fulle-lm/checkpoint-72/chat_template.jinja ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
27
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
28
+ {%- elif message.role == "assistant" %}
29
+ {%- set content = message.content %}
30
+ {%- set reasoning_content = '' %}
31
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
32
+ {%- set reasoning_content = message.reasoning_content %}
33
+ {%- else %}
34
+ {%- if '</think>' in message.content %}
35
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
36
+ {%- set reasoning_content = message.content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
37
+ {%- endif %}
38
+ {%- endif %}
39
+ {%- if loop.index0 > ns.last_query_index %}
40
+ {%- if loop.last or (not loop.last and reasoning_content) %}
41
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
42
+ {%- else %}
43
+ {{- '<|im_start|>' + message.role + '\n' + content }}
44
+ {%- endif %}
45
+ {%- else %}
46
+ {{- '<|im_start|>' + message.role + '\n' + content }}
47
+ {%- endif %}
48
+ {%- if message.tool_calls %}
49
+ {%- for tool_call in message.tool_calls %}
50
+ {%- if (loop.first and content) or (not loop.first) %}
51
+ {{- '\n' }}
52
+ {%- endif %}
53
+ {%- if tool_call.function %}
54
+ {%- set tool_call = tool_call.function %}
55
+ {%- endif %}
56
+ {{- '<tool_call>\n{"name": "' }}
57
+ {{- tool_call.name }}
58
+ {{- '", "arguments": ' }}
59
+ {%- if tool_call.arguments is string %}
60
+ {{- tool_call.arguments }}
61
+ {%- else %}
62
+ {{- tool_call.arguments | tojson }}
63
+ {%- endif %}
64
+ {{- '}\n</tool_call>' }}
65
+ {%- endfor %}
66
+ {%- endif %}
67
+ {{- '<|im_end|>\n' }}
68
+ {%- elif message.role == "tool" %}
69
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
70
+ {{- '<|im_start|>user' }}
71
+ {%- endif %}
72
+ {{- '\n<tool_response>\n' }}
73
+ {{- message.content }}
74
+ {{- '\n</tool_response>' }}
75
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
76
+ {{- '<|im_end|>\n' }}
77
+ {%- endif %}
78
+ {%- endif %}
79
+ {%- endfor %}
80
+ {%- if add_generation_prompt %}
81
+ {{- '<|im_start|>assistant\n' }}
82
+ {%- if enable_thinking is defined and enable_thinking is false %}
83
+ {{- '<think>\n\n</think>\n\n' }}
84
+ {%- endif %}
85
+ {%- endif %}
runs/i5-fulle-lm/checkpoint-72/config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": null,
8
+ "dtype": "float32",
9
+ "eos_token_id": 151645,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 512,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 1536,
15
+ "max_position_embeddings": 2048,
16
+ "mlp_bias": false,
17
+ "model_type": "llama",
18
+ "num_attention_heads": 4,
19
+ "num_hidden_layers": 20,
20
+ "num_key_value_heads": 4,
21
+ "pad_token_id": 151645,
22
+ "pretraining_tp": 1,
23
+ "rms_norm_eps": 1e-06,
24
+ "rope_parameters": {
25
+ "rope_theta": 10000.0,
26
+ "rope_type": "default"
27
+ },
28
+ "tie_word_embeddings": true,
29
+ "transformers_version": "5.6.2",
30
+ "use_cache": false,
31
+ "vocab_size": 151676
32
+ }
runs/i5-fulle-lm/checkpoint-72/generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "eos_token_id": [
4
+ 151645
5
+ ],
6
+ "output_attentions": false,
7
+ "output_hidden_states": false,
8
+ "pad_token_id": 151645,
9
+ "transformers_version": "5.6.2",
10
+ "use_cache": true
11
+ }
runs/i5-fulle-lm/checkpoint-72/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df7d69a6edf89bc00ec42b5f8a02bb54c2881e00a26580e9549349a6b175b357
3
+ size 583366472
runs/i5-fulle-lm/checkpoint-72/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa83a1dcc7ac4767f526b0da612f58a59ac3e91b25ec4bb00721a4166267f0bc
3
+ size 1166845818
runs/i5-fulle-lm/checkpoint-72/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c177cdec7b32ca9c62c848a01589c743e5214cb60d768cdf7657ed3772aa0e8
3
+ size 14512
runs/i5-fulle-lm/checkpoint-72/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f49974f0f5e39592c25e854d2c190d99d3bca940e1e70877631ebc7daedb120
3
+ size 14512
runs/i5-fulle-lm/checkpoint-72/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:878ec53f5c2a524fc37af578b94a9025923faefea55f621be8e5643a79915d0f
3
+ size 1064
runs/i5-fulle-lm/checkpoint-72/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54452a75ce56e0ec6fa4b0d12b962e4761c2cf48469a1c7e59a810fa28365a2e
3
+ size 11425039
runs/i5-fulle-lm/checkpoint-72/tokenizer_config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|l2r_pred|>",
10
+ "<|r2l_pred|>",
11
+ "<|next_1_pred|>",
12
+ "<|next_2_pred|>",
13
+ "<|next_3_pred|>",
14
+ "<|next_4_pred|>",
15
+ "<|next_5_pred|>"
16
+ ],
17
+ "is_local": false,
18
+ "local_files_only": false,
19
+ "model_max_length": 32768,
20
+ "pad_token": "<|im_end|>",
21
+ "split_special_tokens": false,
22
+ "tokenizer_class": "Qwen2Tokenizer",
23
+ "unk_token": null
24
+ }
runs/i5-fulle-lm/checkpoint-72/trainer_state.json ADDED
@@ -0,0 +1,538 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 500,
7
+ "global_step": 72,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.013979903888160769,
14
+ "grad_norm": 2.9929754734039307,
15
+ "learning_rate": 0.0,
16
+ "loss": 11.991058349609375,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.027959807776321538,
21
+ "grad_norm": 2.9691145420074463,
22
+ "learning_rate": 5.999999999999999e-06,
23
+ "loss": 11.995436668395996,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.04193971166448231,
28
+ "grad_norm": 2.943331480026245,
29
+ "learning_rate": 1.1999999999999999e-05,
30
+ "loss": 11.945241928100586,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.055919615552643076,
35
+ "grad_norm": 2.7279052734375,
36
+ "learning_rate": 1.7999999999999997e-05,
37
+ "loss": 11.857856750488281,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.06989951944080385,
42
+ "grad_norm": 2.459994316101074,
43
+ "learning_rate": 2.3999999999999997e-05,
44
+ "loss": 11.753747940063477,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.08387942332896461,
49
+ "grad_norm": 2.3261163234710693,
50
+ "learning_rate": 2.9999999999999997e-05,
51
+ "loss": 11.634729385375977,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.09785932721712538,
56
+ "grad_norm": 2.102216958999634,
57
+ "learning_rate": 3.5999999999999994e-05,
58
+ "loss": 11.522893905639648,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.11183923110528615,
63
+ "grad_norm": 1.9048895835876465,
64
+ "learning_rate": 4.2e-05,
65
+ "loss": 11.433613777160645,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.1258191349934469,
70
+ "grad_norm": 1.822629690170288,
71
+ "learning_rate": 4.7999999999999994e-05,
72
+ "loss": 11.346614837646484,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.1397990388816077,
77
+ "grad_norm": 1.7702407836914062,
78
+ "learning_rate": 5.399999999999999e-05,
79
+ "loss": 11.274776458740234,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.15377894276976845,
84
+ "grad_norm": 1.724582314491272,
85
+ "learning_rate": 5.9999999999999995e-05,
86
+ "loss": 11.214641571044922,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.16775884665792923,
91
+ "grad_norm": 1.7143093347549438,
92
+ "learning_rate": 6.599999999999999e-05,
93
+ "loss": 11.160767555236816,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.18173875054608998,
98
+ "grad_norm": 1.7055429220199585,
99
+ "learning_rate": 7.199999999999999e-05,
100
+ "loss": 11.112727165222168,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.19571865443425077,
105
+ "grad_norm": 1.6979949474334717,
106
+ "learning_rate": 7.8e-05,
107
+ "loss": 11.070176124572754,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.20969855832241152,
112
+ "grad_norm": 1.698456883430481,
113
+ "learning_rate": 8.4e-05,
114
+ "loss": 11.021273612976074,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.2236784622105723,
119
+ "grad_norm": 1.694309949874878,
120
+ "learning_rate": 8.999999999999999e-05,
121
+ "loss": 10.964617729187012,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.23765836609873306,
126
+ "grad_norm": 1.7008790969848633,
127
+ "learning_rate": 9.599999999999999e-05,
128
+ "loss": 10.905136108398438,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.2516382699868938,
133
+ "grad_norm": 1.6909408569335938,
134
+ "learning_rate": 0.000102,
135
+ "loss": 10.840185165405273,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.2656181738750546,
140
+ "grad_norm": 1.6919310092926025,
141
+ "learning_rate": 0.00010799999999999998,
142
+ "loss": 10.770065307617188,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.2795980777632154,
147
+ "grad_norm": 1.6948130130767822,
148
+ "learning_rate": 0.00011399999999999999,
149
+ "loss": 10.692286491394043,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.29357798165137616,
154
+ "grad_norm": 1.6694281101226807,
155
+ "learning_rate": 0.00011999999999999999,
156
+ "loss": 10.622184753417969,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.3075578855395369,
161
+ "grad_norm": 1.672411561012268,
162
+ "learning_rate": 0.00012599999999999997,
163
+ "loss": 10.533384323120117,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.3215377894276977,
168
+ "grad_norm": 1.6780970096588135,
169
+ "learning_rate": 0.00013199999999999998,
170
+ "loss": 10.443933486938477,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.33551769331585846,
175
+ "grad_norm": 1.6708232164382935,
176
+ "learning_rate": 0.000138,
177
+ "loss": 10.355020523071289,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.34949759720401924,
182
+ "grad_norm": 1.665282964706421,
183
+ "learning_rate": 0.00014399999999999998,
184
+ "loss": 10.263477325439453,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.36347750109217997,
189
+ "grad_norm": 1.6800806522369385,
190
+ "learning_rate": 0.00015,
191
+ "loss": 10.157119750976562,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.37745740498034075,
196
+ "grad_norm": 1.6528797149658203,
197
+ "learning_rate": 0.000156,
198
+ "loss": 10.072553634643555,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.39143730886850153,
203
+ "grad_norm": 1.6828707456588745,
204
+ "learning_rate": 0.000162,
205
+ "loss": 9.954492568969727,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.4054172127566623,
210
+ "grad_norm": 1.6531107425689697,
211
+ "learning_rate": 0.000168,
212
+ "loss": 9.86182689666748,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.41939711664482304,
217
+ "grad_norm": 1.660179853439331,
218
+ "learning_rate": 0.00017399999999999997,
219
+ "loss": 9.744815826416016,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.4333770205329838,
224
+ "grad_norm": 1.638755202293396,
225
+ "learning_rate": 0.00017999999999999998,
226
+ "loss": 9.652502059936523,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.4473569244211446,
231
+ "grad_norm": 1.6358997821807861,
232
+ "learning_rate": 0.000186,
233
+ "loss": 9.537353515625,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.4613368283093054,
238
+ "grad_norm": 1.621189832687378,
239
+ "learning_rate": 0.00019199999999999998,
240
+ "loss": 9.42542552947998,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.4753167321974661,
245
+ "grad_norm": 1.6219159364700317,
246
+ "learning_rate": 0.000198,
247
+ "loss": 9.317501068115234,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.4892966360856269,
252
+ "grad_norm": 1.5829830169677734,
253
+ "learning_rate": 0.000204,
254
+ "loss": 9.230195999145508,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.5032765399737876,
259
+ "grad_norm": 1.570173978805542,
260
+ "learning_rate": 0.00020999999999999998,
261
+ "loss": 9.109664916992188,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.5172564438619485,
266
+ "grad_norm": 1.565650463104248,
267
+ "learning_rate": 0.00021599999999999996,
268
+ "loss": 8.996440887451172,
269
+ "step": 37
270
+ },
271
+ {
272
+ "epoch": 0.5312363477501092,
273
+ "grad_norm": 1.5497723817825317,
274
+ "learning_rate": 0.00022199999999999998,
275
+ "loss": 8.887308120727539,
276
+ "step": 38
277
+ },
278
+ {
279
+ "epoch": 0.54521625163827,
280
+ "grad_norm": 1.5418901443481445,
281
+ "learning_rate": 0.00022799999999999999,
282
+ "loss": 8.779237747192383,
283
+ "step": 39
284
+ },
285
+ {
286
+ "epoch": 0.5591961555264308,
287
+ "grad_norm": 1.4985361099243164,
288
+ "learning_rate": 0.000234,
289
+ "loss": 8.688765525817871,
290
+ "step": 40
291
+ },
292
+ {
293
+ "epoch": 0.5731760594145915,
294
+ "grad_norm": 1.4592864513397217,
295
+ "learning_rate": 0.00023999999999999998,
296
+ "loss": 8.600611686706543,
297
+ "step": 41
298
+ },
299
+ {
300
+ "epoch": 0.5871559633027523,
301
+ "grad_norm": 1.4482712745666504,
302
+ "learning_rate": 0.00024599999999999996,
303
+ "loss": 8.499870300292969,
304
+ "step": 42
305
+ },
306
+ {
307
+ "epoch": 0.601135867190913,
308
+ "grad_norm": 1.4105122089385986,
309
+ "learning_rate": 0.00025199999999999995,
310
+ "loss": 8.387744903564453,
311
+ "step": 43
312
+ },
313
+ {
314
+ "epoch": 0.6151157710790738,
315
+ "grad_norm": 1.34541654586792,
316
+ "learning_rate": 0.000258,
317
+ "loss": 8.338939666748047,
318
+ "step": 44
319
+ },
320
+ {
321
+ "epoch": 0.6290956749672346,
322
+ "grad_norm": 1.2429373264312744,
323
+ "learning_rate": 0.00026399999999999997,
324
+ "loss": 8.24583625793457,
325
+ "step": 45
326
+ },
327
+ {
328
+ "epoch": 0.6430755788553953,
329
+ "grad_norm": 1.1936670541763306,
330
+ "learning_rate": 0.00027,
331
+ "loss": 8.162744522094727,
332
+ "step": 46
333
+ },
334
+ {
335
+ "epoch": 0.6570554827435562,
336
+ "grad_norm": 1.13948392868042,
337
+ "learning_rate": 0.000276,
338
+ "loss": 8.059897422790527,
339
+ "step": 47
340
+ },
341
+ {
342
+ "epoch": 0.6710353866317169,
343
+ "grad_norm": 1.0357334613800049,
344
+ "learning_rate": 0.00028199999999999997,
345
+ "loss": 7.972769260406494,
346
+ "step": 48
347
+ },
348
+ {
349
+ "epoch": 0.6850152905198776,
350
+ "grad_norm": 0.9511513113975525,
351
+ "learning_rate": 0.00028799999999999995,
352
+ "loss": 7.923378944396973,
353
+ "step": 49
354
+ },
355
+ {
356
+ "epoch": 0.6989951944080385,
357
+ "grad_norm": 0.8084472417831421,
358
+ "learning_rate": 0.000294,
359
+ "loss": 7.861480712890625,
360
+ "step": 50
361
+ },
362
+ {
363
+ "epoch": 0.7129750982961992,
364
+ "grad_norm": 0.7135328650474548,
365
+ "learning_rate": 0.0003,
366
+ "loss": 7.82336950302124,
367
+ "step": 51
368
+ },
369
+ {
370
+ "epoch": 0.7269550021843599,
371
+ "grad_norm": 0.572115957736969,
372
+ "learning_rate": 0.00030599999999999996,
373
+ "loss": 7.784486770629883,
374
+ "step": 52
375
+ },
376
+ {
377
+ "epoch": 0.7409349060725208,
378
+ "grad_norm": 0.4873937666416168,
379
+ "learning_rate": 0.000312,
380
+ "loss": 7.732234954833984,
381
+ "step": 53
382
+ },
383
+ {
384
+ "epoch": 0.7549148099606815,
385
+ "grad_norm": 0.3295879364013672,
386
+ "learning_rate": 0.000318,
387
+ "loss": 7.720306873321533,
388
+ "step": 54
389
+ },
390
+ {
391
+ "epoch": 0.7688947138488423,
392
+ "grad_norm": 0.25995877385139465,
393
+ "learning_rate": 0.000324,
394
+ "loss": 7.698555946350098,
395
+ "step": 55
396
+ },
397
+ {
398
+ "epoch": 0.7828746177370031,
399
+ "grad_norm": 0.24519014358520508,
400
+ "learning_rate": 0.00033,
401
+ "loss": 7.677582263946533,
402
+ "step": 56
403
+ },
404
+ {
405
+ "epoch": 0.7968545216251638,
406
+ "grad_norm": 0.17343710362911224,
407
+ "learning_rate": 0.000336,
408
+ "loss": 7.684822082519531,
409
+ "step": 57
410
+ },
411
+ {
412
+ "epoch": 0.8108344255133246,
413
+ "grad_norm": 0.18203967809677124,
414
+ "learning_rate": 0.00034199999999999996,
415
+ "loss": 7.677922248840332,
416
+ "step": 58
417
+ },
418
+ {
419
+ "epoch": 0.8248143294014854,
420
+ "grad_norm": 0.23763766884803772,
421
+ "learning_rate": 0.00034799999999999995,
422
+ "loss": 7.663730621337891,
423
+ "step": 59
424
+ },
425
+ {
426
+ "epoch": 0.8387942332896461,
427
+ "grad_norm": 0.27194544672966003,
428
+ "learning_rate": 0.00035399999999999993,
429
+ "loss": 7.656854629516602,
430
+ "step": 60
431
+ },
432
+ {
433
+ "epoch": 0.8527741371778069,
434
+ "grad_norm": 0.26884615421295166,
435
+ "learning_rate": 0.00035999999999999997,
436
+ "loss": 7.617514133453369,
437
+ "step": 61
438
+ },
439
+ {
440
+ "epoch": 0.8667540410659677,
441
+ "grad_norm": 0.2615501880645752,
442
+ "learning_rate": 0.00036599999999999995,
443
+ "loss": 7.634084701538086,
444
+ "step": 62
445
+ },
446
+ {
447
+ "epoch": 0.8807339449541285,
448
+ "grad_norm": 0.21137872338294983,
449
+ "learning_rate": 0.000372,
450
+ "loss": 7.62425422668457,
451
+ "step": 63
452
+ },
453
+ {
454
+ "epoch": 0.8947138488422892,
455
+ "grad_norm": 0.1411866545677185,
456
+ "learning_rate": 0.00037799999999999997,
457
+ "loss": 7.603841781616211,
458
+ "step": 64
459
+ },
460
+ {
461
+ "epoch": 0.9086937527304499,
462
+ "grad_norm": 0.1536041498184204,
463
+ "learning_rate": 0.00038399999999999996,
464
+ "loss": 7.617574691772461,
465
+ "step": 65
466
+ },
467
+ {
468
+ "epoch": 0.9226736566186108,
469
+ "grad_norm": 0.15028807520866394,
470
+ "learning_rate": 0.00039,
471
+ "loss": 7.605348587036133,
472
+ "step": 66
473
+ },
474
+ {
475
+ "epoch": 0.9366535605067715,
476
+ "grad_norm": 0.14039766788482666,
477
+ "learning_rate": 0.000396,
478
+ "loss": 7.590822219848633,
479
+ "step": 67
480
+ },
481
+ {
482
+ "epoch": 0.9506334643949322,
483
+ "grad_norm": 0.12192250043153763,
484
+ "learning_rate": 0.000402,
485
+ "loss": 7.5595173835754395,
486
+ "step": 68
487
+ },
488
+ {
489
+ "epoch": 0.9646133682830931,
490
+ "grad_norm": 0.10842809826135635,
491
+ "learning_rate": 0.000408,
492
+ "loss": 7.565250396728516,
493
+ "step": 69
494
+ },
495
+ {
496
+ "epoch": 0.9785932721712538,
497
+ "grad_norm": 0.11480727046728134,
498
+ "learning_rate": 0.0004139999999999999,
499
+ "loss": 7.540429592132568,
500
+ "step": 70
501
+ },
502
+ {
503
+ "epoch": 0.9925731760594146,
504
+ "grad_norm": 0.12565556168556213,
505
+ "learning_rate": 0.00041999999999999996,
506
+ "loss": 7.53934383392334,
507
+ "step": 71
508
+ },
509
+ {
510
+ "epoch": 1.0,
511
+ "grad_norm": 0.15351328253746033,
512
+ "learning_rate": 0.00042599999999999995,
513
+ "loss": 7.551596164703369,
514
+ "step": 72
515
+ }
516
+ ],
517
+ "logging_steps": 1,
518
+ "max_steps": 28800,
519
+ "num_input_tokens_seen": 0,
520
+ "num_train_epochs": 400,
521
+ "save_steps": 500,
522
+ "stateful_callbacks": {
523
+ "TrainerControl": {
524
+ "args": {
525
+ "should_epoch_stop": false,
526
+ "should_evaluate": true,
527
+ "should_log": false,
528
+ "should_save": false,
529
+ "should_training_stop": false
530
+ },
531
+ "attributes": {}
532
+ }
533
+ },
534
+ "total_flos": 3.0682729188163584e+16,
535
+ "train_batch_size": 8,
536
+ "trial_name": null,
537
+ "trial_params": null
538
+ }
runs/i5-fulle-lm/checkpoint-72/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:897ce057a443cf9601c25071f56ee84c9f335aa0fdc26783fd4004c1ebfccd66
3
+ size 4856