mjf-su commited on
Commit
74d4d6a
·
verified ·
1 Parent(s): 78d2fd5

Upload folder using huggingface_hub

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 +5 -0
  2. chat_template.jinja +120 -0
  3. checkpoint-1074/chat_template.jinja +120 -0
  4. checkpoint-1074/model.safetensors +3 -0
  5. checkpoint-1074/optimizer.pt +3 -0
  6. checkpoint-1074/processor_config.json +63 -0
  7. checkpoint-1074/rng_state_0.pth +3 -0
  8. checkpoint-1074/rng_state_1.pth +3 -0
  9. checkpoint-1074/rng_state_2.pth +3 -0
  10. checkpoint-1074/rng_state_3.pth +3 -0
  11. checkpoint-1074/scheduler.pt +3 -0
  12. checkpoint-1074/tokenizer.json +3 -0
  13. checkpoint-1074/tokenizer_config.json +30 -0
  14. checkpoint-1074/trainer_state.json +1658 -0
  15. checkpoint-1074/training_args.bin +3 -0
  16. checkpoint-1611/chat_template.jinja +120 -0
  17. checkpoint-1611/model.safetensors +3 -0
  18. checkpoint-1611/optimizer.pt +3 -0
  19. checkpoint-1611/processor_config.json +63 -0
  20. checkpoint-1611/rng_state_0.pth +3 -0
  21. checkpoint-1611/rng_state_1.pth +3 -0
  22. checkpoint-1611/rng_state_2.pth +3 -0
  23. checkpoint-1611/rng_state_3.pth +3 -0
  24. checkpoint-1611/scheduler.pt +3 -0
  25. checkpoint-1611/tokenizer.json +3 -0
  26. checkpoint-1611/tokenizer_config.json +30 -0
  27. checkpoint-1611/trainer_state.json +2480 -0
  28. checkpoint-1611/training_args.bin +3 -0
  29. checkpoint-2148/chat_template.jinja +120 -0
  30. checkpoint-2148/model.safetensors +3 -0
  31. checkpoint-2148/optimizer.pt +3 -0
  32. checkpoint-2148/processor_config.json +63 -0
  33. checkpoint-2148/rng_state_0.pth +3 -0
  34. checkpoint-2148/rng_state_1.pth +3 -0
  35. checkpoint-2148/rng_state_2.pth +3 -0
  36. checkpoint-2148/rng_state_3.pth +3 -0
  37. checkpoint-2148/scheduler.pt +3 -0
  38. checkpoint-2148/tokenizer.json +3 -0
  39. checkpoint-2148/tokenizer_config.json +30 -0
  40. checkpoint-2148/trainer_state.json +3289 -0
  41. checkpoint-2148/training_args.bin +3 -0
  42. checkpoint-537/chat_template.jinja +120 -0
  43. checkpoint-537/model.safetensors +3 -0
  44. checkpoint-537/optimizer.pt +3 -0
  45. checkpoint-537/processor_config.json +63 -0
  46. checkpoint-537/rng_state_0.pth +3 -0
  47. checkpoint-537/rng_state_1.pth +3 -0
  48. checkpoint-537/rng_state_2.pth +3 -0
  49. checkpoint-537/rng_state_3.pth +3 -0
  50. checkpoint-537/scheduler.pt +3 -0
.gitattributes CHANGED
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ checkpoint-1074/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-1611/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ checkpoint-2148/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ checkpoint-537/tokenizer.json filter=lfs diff=lfs merge=lfs -text
40
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
chat_template.jinja ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {%- if messages[0].content is string %}
5
+ {{- messages[0].content }}
6
+ {%- else %}
7
+ {%- for content in messages[0].content %}
8
+ {%- if 'text' in content %}
9
+ {{- content.text }}
10
+ {%- endif %}
11
+ {%- endfor %}
12
+ {%- endif %}
13
+ {{- '\n\n' }}
14
+ {%- endif %}
15
+ {{- "# 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>" }}
16
+ {%- for tool in tools %}
17
+ {{- "\n" }}
18
+ {{- tool | tojson }}
19
+ {%- endfor %}
20
+ {{- "\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" }}
21
+ {%- else %}
22
+ {%- if messages[0].role == 'system' %}
23
+ {{- '<|im_start|>system\n' }}
24
+ {%- if messages[0].content is string %}
25
+ {{- messages[0].content }}
26
+ {%- else %}
27
+ {%- for content in messages[0].content %}
28
+ {%- if 'text' in content %}
29
+ {{- content.text }}
30
+ {%- endif %}
31
+ {%- endfor %}
32
+ {%- endif %}
33
+ {{- '<|im_end|>\n' }}
34
+ {%- endif %}
35
+ {%- endif %}
36
+ {%- set image_count = namespace(value=0) %}
37
+ {%- set video_count = namespace(value=0) %}
38
+ {%- for message in messages %}
39
+ {%- if message.role == "user" %}
40
+ {{- '<|im_start|>' + message.role + '\n' }}
41
+ {%- if message.content is string %}
42
+ {{- message.content }}
43
+ {%- else %}
44
+ {%- for content in message.content %}
45
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
46
+ {%- set image_count.value = image_count.value + 1 %}
47
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
48
+ <|vision_start|><|image_pad|><|vision_end|>
49
+ {%- elif content.type == 'video' or 'video' in content %}
50
+ {%- set video_count.value = video_count.value + 1 %}
51
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
52
+ <|vision_start|><|video_pad|><|vision_end|>
53
+ {%- elif 'text' in content %}
54
+ {{- content.text }}
55
+ {%- endif %}
56
+ {%- endfor %}
57
+ {%- endif %}
58
+ {{- '<|im_end|>\n' }}
59
+ {%- elif message.role == "assistant" %}
60
+ {{- '<|im_start|>' + message.role + '\n' }}
61
+ {%- if message.content is string %}
62
+ {{- message.content }}
63
+ {%- else %}
64
+ {%- for content_item in message.content %}
65
+ {%- if 'text' in content_item %}
66
+ {{- content_item.text }}
67
+ {%- endif %}
68
+ {%- endfor %}
69
+ {%- endif %}
70
+ {%- if message.tool_calls %}
71
+ {%- for tool_call in message.tool_calls %}
72
+ {%- if (loop.first and message.content) or (not loop.first) %}
73
+ {{- '\n' }}
74
+ {%- endif %}
75
+ {%- if tool_call.function %}
76
+ {%- set tool_call = tool_call.function %}
77
+ {%- endif %}
78
+ {{- '<tool_call>\n{"name": "' }}
79
+ {{- tool_call.name }}
80
+ {{- '", "arguments": ' }}
81
+ {%- if tool_call.arguments is string %}
82
+ {{- tool_call.arguments }}
83
+ {%- else %}
84
+ {{- tool_call.arguments | tojson }}
85
+ {%- endif %}
86
+ {{- '}\n</tool_call>' }}
87
+ {%- endfor %}
88
+ {%- endif %}
89
+ {{- '<|im_end|>\n' }}
90
+ {%- elif message.role == "tool" %}
91
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
92
+ {{- '<|im_start|>user' }}
93
+ {%- endif %}
94
+ {{- '\n<tool_response>\n' }}
95
+ {%- if message.content is string %}
96
+ {{- message.content }}
97
+ {%- else %}
98
+ {%- for content in message.content %}
99
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
100
+ {%- set image_count.value = image_count.value + 1 %}
101
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
102
+ <|vision_start|><|image_pad|><|vision_end|>
103
+ {%- elif content.type == 'video' or 'video' in content %}
104
+ {%- set video_count.value = video_count.value + 1 %}
105
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
106
+ <|vision_start|><|video_pad|><|vision_end|>
107
+ {%- elif 'text' in content %}
108
+ {{- content.text }}
109
+ {%- endif %}
110
+ {%- endfor %}
111
+ {%- endif %}
112
+ {{- '\n</tool_response>' }}
113
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
114
+ {{- '<|im_end|>\n' }}
115
+ {%- endif %}
116
+ {%- endif %}
117
+ {%- endfor %}
118
+ {%- if add_generation_prompt %}
119
+ {{- '<|im_start|>assistant\n' }}
120
+ {%- endif %}
checkpoint-1074/chat_template.jinja ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {%- if messages[0].content is string %}
5
+ {{- messages[0].content }}
6
+ {%- else %}
7
+ {%- for content in messages[0].content %}
8
+ {%- if 'text' in content %}
9
+ {{- content.text }}
10
+ {%- endif %}
11
+ {%- endfor %}
12
+ {%- endif %}
13
+ {{- '\n\n' }}
14
+ {%- endif %}
15
+ {{- "# 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>" }}
16
+ {%- for tool in tools %}
17
+ {{- "\n" }}
18
+ {{- tool | tojson }}
19
+ {%- endfor %}
20
+ {{- "\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" }}
21
+ {%- else %}
22
+ {%- if messages[0].role == 'system' %}
23
+ {{- '<|im_start|>system\n' }}
24
+ {%- if messages[0].content is string %}
25
+ {{- messages[0].content }}
26
+ {%- else %}
27
+ {%- for content in messages[0].content %}
28
+ {%- if 'text' in content %}
29
+ {{- content.text }}
30
+ {%- endif %}
31
+ {%- endfor %}
32
+ {%- endif %}
33
+ {{- '<|im_end|>\n' }}
34
+ {%- endif %}
35
+ {%- endif %}
36
+ {%- set image_count = namespace(value=0) %}
37
+ {%- set video_count = namespace(value=0) %}
38
+ {%- for message in messages %}
39
+ {%- if message.role == "user" %}
40
+ {{- '<|im_start|>' + message.role + '\n' }}
41
+ {%- if message.content is string %}
42
+ {{- message.content }}
43
+ {%- else %}
44
+ {%- for content in message.content %}
45
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
46
+ {%- set image_count.value = image_count.value + 1 %}
47
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
48
+ <|vision_start|><|image_pad|><|vision_end|>
49
+ {%- elif content.type == 'video' or 'video' in content %}
50
+ {%- set video_count.value = video_count.value + 1 %}
51
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
52
+ <|vision_start|><|video_pad|><|vision_end|>
53
+ {%- elif 'text' in content %}
54
+ {{- content.text }}
55
+ {%- endif %}
56
+ {%- endfor %}
57
+ {%- endif %}
58
+ {{- '<|im_end|>\n' }}
59
+ {%- elif message.role == "assistant" %}
60
+ {{- '<|im_start|>' + message.role + '\n' }}
61
+ {%- if message.content is string %}
62
+ {{- message.content }}
63
+ {%- else %}
64
+ {%- for content_item in message.content %}
65
+ {%- if 'text' in content_item %}
66
+ {{- content_item.text }}
67
+ {%- endif %}
68
+ {%- endfor %}
69
+ {%- endif %}
70
+ {%- if message.tool_calls %}
71
+ {%- for tool_call in message.tool_calls %}
72
+ {%- if (loop.first and message.content) or (not loop.first) %}
73
+ {{- '\n' }}
74
+ {%- endif %}
75
+ {%- if tool_call.function %}
76
+ {%- set tool_call = tool_call.function %}
77
+ {%- endif %}
78
+ {{- '<tool_call>\n{"name": "' }}
79
+ {{- tool_call.name }}
80
+ {{- '", "arguments": ' }}
81
+ {%- if tool_call.arguments is string %}
82
+ {{- tool_call.arguments }}
83
+ {%- else %}
84
+ {{- tool_call.arguments | tojson }}
85
+ {%- endif %}
86
+ {{- '}\n</tool_call>' }}
87
+ {%- endfor %}
88
+ {%- endif %}
89
+ {{- '<|im_end|>\n' }}
90
+ {%- elif message.role == "tool" %}
91
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
92
+ {{- '<|im_start|>user' }}
93
+ {%- endif %}
94
+ {{- '\n<tool_response>\n' }}
95
+ {%- if message.content is string %}
96
+ {{- message.content }}
97
+ {%- else %}
98
+ {%- for content in message.content %}
99
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
100
+ {%- set image_count.value = image_count.value + 1 %}
101
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
102
+ <|vision_start|><|image_pad|><|vision_end|>
103
+ {%- elif content.type == 'video' or 'video' in content %}
104
+ {%- set video_count.value = video_count.value + 1 %}
105
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
106
+ <|vision_start|><|video_pad|><|vision_end|>
107
+ {%- elif 'text' in content %}
108
+ {{- content.text }}
109
+ {%- endif %}
110
+ {%- endfor %}
111
+ {%- endif %}
112
+ {{- '\n</tool_response>' }}
113
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
114
+ {{- '<|im_end|>\n' }}
115
+ {%- endif %}
116
+ {%- endif %}
117
+ {%- endfor %}
118
+ {%- if add_generation_prompt %}
119
+ {{- '<|im_start|>assistant\n' }}
120
+ {%- endif %}
checkpoint-1074/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a822468e63ccc5e3a89ea813c674821eca56c240c0ad411c5748ad6b794bac2
3
+ size 4885870044
checkpoint-1074/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da0749c3bb3346b04b9a602a711d76441b26fd2eed502530ad4e47ec2220a1b3
3
+ size 8527467778
checkpoint-1074/processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.5,
10
+ 0.5,
11
+ 0.5
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 16,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 16777216,
25
+ "shortest_edge": 65536
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "Qwen3VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": true,
38
+ "fps": 2,
39
+ "image_mean": [
40
+ 0.5,
41
+ 0.5,
42
+ 0.5
43
+ ],
44
+ "image_std": [
45
+ 0.5,
46
+ 0.5,
47
+ 0.5
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 16,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 25165824,
58
+ "shortest_edge": 4096
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen3VLVideoProcessor"
62
+ }
63
+ }
checkpoint-1074/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:659b1cdee2219458dd84ce6a632a595465680b8080e5c44bd600ff97eca8d752
3
+ size 15429
checkpoint-1074/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86accf27064cdd503053e90476a6bd10de333d4ff0594535ad55ea13a473c91d
3
+ size 15429
checkpoint-1074/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18ca8d714ef40be035404c1957b5a4dee84e1f43980408393f8aa710552ee6f6
3
+ size 15429
checkpoint-1074/rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cfdebe99e40accc9c9d8f09c63136a14abda997d9b501969ec8e16e9d183179
3
+ size 15429
checkpoint-1074/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03087e7be8d47f2b2f6c10e1f57235a3d5d197cc743ae7ab37aeb711f41ebee8
3
+ size 1465
checkpoint-1074/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8579e1ca7cc5d82a9e0202eed555529996f4ffe7f563c2979a0290cf3db452d3
3
+ size 11422818
checkpoint-1074/tokenizer_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": false,
24
+ "model_max_length": 262144,
25
+ "pad_token": "<|endoftext|>",
26
+ "processor_class": "Qwen3VLProcessor",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }
checkpoint-1074/trainer_state.json ADDED
@@ -0,0 +1,1658 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 2.0,
6
+ "eval_steps": 50,
7
+ "global_step": 1074,
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.009324009324009324,
14
+ "grad_norm": 269.7618103027344,
15
+ "learning_rate": 1.8604651162790698e-07,
16
+ "loss": 13.883856201171875,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.018648018648018648,
21
+ "grad_norm": 256.5934143066406,
22
+ "learning_rate": 4.186046511627907e-07,
23
+ "loss": 13.883564758300782,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.027972027972027972,
28
+ "grad_norm": 247.4810028076172,
29
+ "learning_rate": 6.511627906976745e-07,
30
+ "loss": 13.845947265625,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.037296037296037296,
35
+ "grad_norm": 243.70272827148438,
36
+ "learning_rate": 8.837209302325582e-07,
37
+ "loss": 13.705046081542969,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.046620046620046623,
42
+ "grad_norm": 238.2322235107422,
43
+ "learning_rate": 1.116279069767442e-06,
44
+ "loss": 13.556683349609376,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.055944055944055944,
49
+ "grad_norm": 241.71214294433594,
50
+ "learning_rate": 1.3488372093023258e-06,
51
+ "loss": 13.285650634765625,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.06526806526806526,
56
+ "grad_norm": 221.19960021972656,
57
+ "learning_rate": 1.5813953488372093e-06,
58
+ "loss": 13.05435791015625,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.07459207459207459,
63
+ "grad_norm": 205.08326721191406,
64
+ "learning_rate": 1.8139534883720933e-06,
65
+ "loss": 12.770874786376954,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.08391608391608392,
70
+ "grad_norm": 170.5838623046875,
71
+ "learning_rate": 2.0465116279069768e-06,
72
+ "loss": 12.280790710449219,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.09324009324009325,
77
+ "grad_norm": 96.90670776367188,
78
+ "learning_rate": 2.2790697674418607e-06,
79
+ "loss": 11.730733489990234,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.09324009324009325,
84
+ "eval_com_accuracy": 0.2,
85
+ "eval_rew_accuracy": 0.276,
86
+ "step": 50
87
+ },
88
+ {
89
+ "epoch": 0.10256410256410256,
90
+ "grad_norm": 61.14415740966797,
91
+ "learning_rate": 2.5116279069767446e-06,
92
+ "loss": 11.25308609008789,
93
+ "step": 55
94
+ },
95
+ {
96
+ "epoch": 0.11188811188811189,
97
+ "grad_norm": 56.027095794677734,
98
+ "learning_rate": 2.744186046511628e-06,
99
+ "loss": 11.197045135498048,
100
+ "step": 60
101
+ },
102
+ {
103
+ "epoch": 0.12121212121212122,
104
+ "grad_norm": 46.54409408569336,
105
+ "learning_rate": 2.9767441860465116e-06,
106
+ "loss": 10.874276733398437,
107
+ "step": 65
108
+ },
109
+ {
110
+ "epoch": 0.13053613053613053,
111
+ "grad_norm": 40.62468719482422,
112
+ "learning_rate": 3.2093023255813956e-06,
113
+ "loss": 10.69852294921875,
114
+ "step": 70
115
+ },
116
+ {
117
+ "epoch": 0.13986013986013987,
118
+ "grad_norm": 37.44975662231445,
119
+ "learning_rate": 3.4418604651162795e-06,
120
+ "loss": 10.560739135742187,
121
+ "step": 75
122
+ },
123
+ {
124
+ "epoch": 0.14918414918414918,
125
+ "grad_norm": 32.19042205810547,
126
+ "learning_rate": 3.674418604651163e-06,
127
+ "loss": 10.408053588867187,
128
+ "step": 80
129
+ },
130
+ {
131
+ "epoch": 0.1585081585081585,
132
+ "grad_norm": 27.208942413330078,
133
+ "learning_rate": 3.906976744186047e-06,
134
+ "loss": 10.108213806152344,
135
+ "step": 85
136
+ },
137
+ {
138
+ "epoch": 0.16783216783216784,
139
+ "grad_norm": 24.76529312133789,
140
+ "learning_rate": 4.1395348837209304e-06,
141
+ "loss": 9.929393005371093,
142
+ "step": 90
143
+ },
144
+ {
145
+ "epoch": 0.17715617715617715,
146
+ "grad_norm": 23.917495727539062,
147
+ "learning_rate": 4.372093023255815e-06,
148
+ "loss": 9.677659606933593,
149
+ "step": 95
150
+ },
151
+ {
152
+ "epoch": 0.1864801864801865,
153
+ "grad_norm": 22.98892593383789,
154
+ "learning_rate": 4.604651162790698e-06,
155
+ "loss": 9.481817626953125,
156
+ "step": 100
157
+ },
158
+ {
159
+ "epoch": 0.1864801864801865,
160
+ "eval_com_accuracy": 0.176,
161
+ "eval_rew_accuracy": 0.264,
162
+ "step": 100
163
+ },
164
+ {
165
+ "epoch": 0.1958041958041958,
166
+ "grad_norm": 25.177200317382812,
167
+ "learning_rate": 4.837209302325582e-06,
168
+ "loss": 9.42150650024414,
169
+ "step": 105
170
+ },
171
+ {
172
+ "epoch": 0.20512820512820512,
173
+ "grad_norm": 18.95603370666504,
174
+ "learning_rate": 5.069767441860466e-06,
175
+ "loss": 9.267645263671875,
176
+ "step": 110
177
+ },
178
+ {
179
+ "epoch": 0.21445221445221446,
180
+ "grad_norm": 22.155452728271484,
181
+ "learning_rate": 5.302325581395349e-06,
182
+ "loss": 9.06854248046875,
183
+ "step": 115
184
+ },
185
+ {
186
+ "epoch": 0.22377622377622378,
187
+ "grad_norm": 20.26909065246582,
188
+ "learning_rate": 5.534883720930233e-06,
189
+ "loss": 9.045303344726562,
190
+ "step": 120
191
+ },
192
+ {
193
+ "epoch": 0.2331002331002331,
194
+ "grad_norm": 26.49457359313965,
195
+ "learning_rate": 5.7674418604651175e-06,
196
+ "loss": 8.91327362060547,
197
+ "step": 125
198
+ },
199
+ {
200
+ "epoch": 0.24242424242424243,
201
+ "grad_norm": 19.886178970336914,
202
+ "learning_rate": 6e-06,
203
+ "loss": 8.950289154052735,
204
+ "step": 130
205
+ },
206
+ {
207
+ "epoch": 0.2517482517482518,
208
+ "grad_norm": 18.22088050842285,
209
+ "learning_rate": 6.2325581395348845e-06,
210
+ "loss": 8.710862731933593,
211
+ "step": 135
212
+ },
213
+ {
214
+ "epoch": 0.26107226107226106,
215
+ "grad_norm": 21.09984016418457,
216
+ "learning_rate": 6.465116279069767e-06,
217
+ "loss": 8.762718200683594,
218
+ "step": 140
219
+ },
220
+ {
221
+ "epoch": 0.2703962703962704,
222
+ "grad_norm": 17.96813201904297,
223
+ "learning_rate": 6.6976744186046515e-06,
224
+ "loss": 8.533232116699219,
225
+ "step": 145
226
+ },
227
+ {
228
+ "epoch": 0.27972027972027974,
229
+ "grad_norm": 20.52909278869629,
230
+ "learning_rate": 6.930232558139536e-06,
231
+ "loss": 8.279258728027344,
232
+ "step": 150
233
+ },
234
+ {
235
+ "epoch": 0.27972027972027974,
236
+ "eval_com_accuracy": 0.152,
237
+ "eval_rew_accuracy": 0.252,
238
+ "step": 150
239
+ },
240
+ {
241
+ "epoch": 0.289044289044289,
242
+ "grad_norm": 19.475040435791016,
243
+ "learning_rate": 7.1627906976744185e-06,
244
+ "loss": 8.369435882568359,
245
+ "step": 155
246
+ },
247
+ {
248
+ "epoch": 0.29836829836829837,
249
+ "grad_norm": 16.741973876953125,
250
+ "learning_rate": 7.395348837209303e-06,
251
+ "loss": 8.280664825439453,
252
+ "step": 160
253
+ },
254
+ {
255
+ "epoch": 0.3076923076923077,
256
+ "grad_norm": 19.79235076904297,
257
+ "learning_rate": 7.627906976744187e-06,
258
+ "loss": 8.200827026367188,
259
+ "step": 165
260
+ },
261
+ {
262
+ "epoch": 0.317016317016317,
263
+ "grad_norm": 32.991554260253906,
264
+ "learning_rate": 7.86046511627907e-06,
265
+ "loss": 7.973581695556641,
266
+ "step": 170
267
+ },
268
+ {
269
+ "epoch": 0.32634032634032634,
270
+ "grad_norm": 17.949445724487305,
271
+ "learning_rate": 8.093023255813955e-06,
272
+ "loss": 8.141377258300782,
273
+ "step": 175
274
+ },
275
+ {
276
+ "epoch": 0.3356643356643357,
277
+ "grad_norm": 16.19559097290039,
278
+ "learning_rate": 8.325581395348837e-06,
279
+ "loss": 7.837094116210937,
280
+ "step": 180
281
+ },
282
+ {
283
+ "epoch": 0.34498834498834496,
284
+ "grad_norm": 23.260622024536133,
285
+ "learning_rate": 8.558139534883722e-06,
286
+ "loss": 7.763467407226562,
287
+ "step": 185
288
+ },
289
+ {
290
+ "epoch": 0.3543123543123543,
291
+ "grad_norm": 24.858335494995117,
292
+ "learning_rate": 8.790697674418606e-06,
293
+ "loss": 7.886874389648438,
294
+ "step": 190
295
+ },
296
+ {
297
+ "epoch": 0.36363636363636365,
298
+ "grad_norm": 18.59360122680664,
299
+ "learning_rate": 9.023255813953489e-06,
300
+ "loss": 7.7624969482421875,
301
+ "step": 195
302
+ },
303
+ {
304
+ "epoch": 0.372960372960373,
305
+ "grad_norm": 18.056495666503906,
306
+ "learning_rate": 9.255813953488373e-06,
307
+ "loss": 7.4621437072753904,
308
+ "step": 200
309
+ },
310
+ {
311
+ "epoch": 0.372960372960373,
312
+ "eval_com_accuracy": 0.144,
313
+ "eval_rew_accuracy": 0.332,
314
+ "step": 200
315
+ },
316
+ {
317
+ "epoch": 0.3822843822843823,
318
+ "grad_norm": 16.496261596679688,
319
+ "learning_rate": 9.488372093023258e-06,
320
+ "loss": 7.526261901855468,
321
+ "step": 205
322
+ },
323
+ {
324
+ "epoch": 0.3916083916083916,
325
+ "grad_norm": 16.77888298034668,
326
+ "learning_rate": 9.72093023255814e-06,
327
+ "loss": 7.624967193603515,
328
+ "step": 210
329
+ },
330
+ {
331
+ "epoch": 0.40093240093240096,
332
+ "grad_norm": 17.096778869628906,
333
+ "learning_rate": 9.953488372093025e-06,
334
+ "loss": 7.337849426269531,
335
+ "step": 215
336
+ },
337
+ {
338
+ "epoch": 0.41025641025641024,
339
+ "grad_norm": 18.3544979095459,
340
+ "learning_rate": 9.999894343918674e-06,
341
+ "loss": 7.354197692871094,
342
+ "step": 220
343
+ },
344
+ {
345
+ "epoch": 0.4195804195804196,
346
+ "grad_norm": 15.287137985229492,
347
+ "learning_rate": 9.999465123741172e-06,
348
+ "loss": 7.085916137695312,
349
+ "step": 225
350
+ },
351
+ {
352
+ "epoch": 0.4289044289044289,
353
+ "grad_norm": 17.03432273864746,
354
+ "learning_rate": 9.998705764284132e-06,
355
+ "loss": 7.059596252441406,
356
+ "step": 230
357
+ },
358
+ {
359
+ "epoch": 0.4382284382284382,
360
+ "grad_norm": 15.470928192138672,
361
+ "learning_rate": 9.99761631569179e-06,
362
+ "loss": 7.118296813964844,
363
+ "step": 235
364
+ },
365
+ {
366
+ "epoch": 0.44755244755244755,
367
+ "grad_norm": 15.732117652893066,
368
+ "learning_rate": 9.9961968499058e-06,
369
+ "loss": 6.981436157226563,
370
+ "step": 240
371
+ },
372
+ {
373
+ "epoch": 0.4568764568764569,
374
+ "grad_norm": 20.92630958557129,
375
+ "learning_rate": 9.994447460660473e-06,
376
+ "loss": 6.96953125,
377
+ "step": 245
378
+ },
379
+ {
380
+ "epoch": 0.4662004662004662,
381
+ "grad_norm": 14.848095893859863,
382
+ "learning_rate": 9.992368263476585e-06,
383
+ "loss": 6.831211090087891,
384
+ "step": 250
385
+ },
386
+ {
387
+ "epoch": 0.4662004662004662,
388
+ "eval_com_accuracy": 0.132,
389
+ "eval_rew_accuracy": 0.312,
390
+ "step": 250
391
+ },
392
+ {
393
+ "epoch": 0.4755244755244755,
394
+ "grad_norm": 18.59755516052246,
395
+ "learning_rate": 9.989959395653756e-06,
396
+ "loss": 6.873024749755859,
397
+ "step": 255
398
+ },
399
+ {
400
+ "epoch": 0.48484848484848486,
401
+ "grad_norm": 15.705364227294922,
402
+ "learning_rate": 9.98722101626138e-06,
403
+ "loss": 6.633563232421875,
404
+ "step": 260
405
+ },
406
+ {
407
+ "epoch": 0.49417249417249415,
408
+ "grad_norm": 39.2294807434082,
409
+ "learning_rate": 9.984153306128124e-06,
410
+ "loss": 6.63948974609375,
411
+ "step": 265
412
+ },
413
+ {
414
+ "epoch": 0.5034965034965035,
415
+ "grad_norm": 13.209358215332031,
416
+ "learning_rate": 9.980756467829977e-06,
417
+ "loss": 6.688297271728516,
418
+ "step": 270
419
+ },
420
+ {
421
+ "epoch": 0.5128205128205128,
422
+ "grad_norm": 14.645393371582031,
423
+ "learning_rate": 9.977030725676887e-06,
424
+ "loss": 6.4885505676269535,
425
+ "step": 275
426
+ },
427
+ {
428
+ "epoch": 0.5221445221445221,
429
+ "grad_norm": 17.008819580078125,
430
+ "learning_rate": 9.972976325697938e-06,
431
+ "loss": 6.78935546875,
432
+ "step": 280
433
+ },
434
+ {
435
+ "epoch": 0.5314685314685315,
436
+ "grad_norm": 16.029518127441406,
437
+ "learning_rate": 9.96859353562511e-06,
438
+ "loss": 6.681609344482422,
439
+ "step": 285
440
+ },
441
+ {
442
+ "epoch": 0.5407925407925408,
443
+ "grad_norm": 13.878348350524902,
444
+ "learning_rate": 9.963882644875594e-06,
445
+ "loss": 6.528868103027344,
446
+ "step": 290
447
+ },
448
+ {
449
+ "epoch": 0.5501165501165501,
450
+ "grad_norm": 13.996464729309082,
451
+ "learning_rate": 9.958843964532683e-06,
452
+ "loss": 6.431344604492187,
453
+ "step": 295
454
+ },
455
+ {
456
+ "epoch": 0.5594405594405595,
457
+ "grad_norm": 15.72003173828125,
458
+ "learning_rate": 9.953477827325229e-06,
459
+ "loss": 6.5927978515625,
460
+ "step": 300
461
+ },
462
+ {
463
+ "epoch": 0.5594405594405595,
464
+ "eval_com_accuracy": 0.148,
465
+ "eval_rew_accuracy": 0.368,
466
+ "step": 300
467
+ },
468
+ {
469
+ "epoch": 0.5687645687645687,
470
+ "grad_norm": 16.416725158691406,
471
+ "learning_rate": 9.947784587605678e-06,
472
+ "loss": 6.411885833740234,
473
+ "step": 305
474
+ },
475
+ {
476
+ "epoch": 0.578088578088578,
477
+ "grad_norm": 14.880790710449219,
478
+ "learning_rate": 9.941764621326655e-06,
479
+ "loss": 6.5298927307128904,
480
+ "step": 310
481
+ },
482
+ {
483
+ "epoch": 0.5874125874125874,
484
+ "grad_norm": 17.828296661376953,
485
+ "learning_rate": 9.935418326016153e-06,
486
+ "loss": 6.045618057250977,
487
+ "step": 315
488
+ },
489
+ {
490
+ "epoch": 0.5967365967365967,
491
+ "grad_norm": 13.30245590209961,
492
+ "learning_rate": 9.928746120751275e-06,
493
+ "loss": 6.1650840759277346,
494
+ "step": 320
495
+ },
496
+ {
497
+ "epoch": 0.6060606060606061,
498
+ "grad_norm": 13.527432441711426,
499
+ "learning_rate": 9.921748446130564e-06,
500
+ "loss": 6.349945831298828,
501
+ "step": 325
502
+ },
503
+ {
504
+ "epoch": 0.6153846153846154,
505
+ "grad_norm": 14.491817474365234,
506
+ "learning_rate": 9.9144257642449e-06,
507
+ "loss": 6.232943725585938,
508
+ "step": 330
509
+ },
510
+ {
511
+ "epoch": 0.6247086247086248,
512
+ "grad_norm": 15.7533597946167,
513
+ "learning_rate": 9.906778558647e-06,
514
+ "loss": 6.564260864257813,
515
+ "step": 335
516
+ },
517
+ {
518
+ "epoch": 0.634032634032634,
519
+ "grad_norm": 16.538602828979492,
520
+ "learning_rate": 9.898807334319471e-06,
521
+ "loss": 6.122506332397461,
522
+ "step": 340
523
+ },
524
+ {
525
+ "epoch": 0.6433566433566433,
526
+ "grad_norm": 16.459688186645508,
527
+ "learning_rate": 9.890512617641474e-06,
528
+ "loss": 6.332431030273438,
529
+ "step": 345
530
+ },
531
+ {
532
+ "epoch": 0.6526806526806527,
533
+ "grad_norm": 14.879058837890625,
534
+ "learning_rate": 9.881894956353963e-06,
535
+ "loss": 6.118003082275391,
536
+ "step": 350
537
+ },
538
+ {
539
+ "epoch": 0.6526806526806527,
540
+ "eval_com_accuracy": 0.164,
541
+ "eval_rew_accuracy": 0.364,
542
+ "step": 350
543
+ },
544
+ {
545
+ "epoch": 0.662004662004662,
546
+ "grad_norm": 16.02516746520996,
547
+ "learning_rate": 9.87295491952351e-06,
548
+ "loss": 6.241584014892578,
549
+ "step": 355
550
+ },
551
+ {
552
+ "epoch": 0.6713286713286714,
553
+ "grad_norm": 14.9837646484375,
554
+ "learning_rate": 9.863693097504733e-06,
555
+ "loss": 6.083467864990235,
556
+ "step": 360
557
+ },
558
+ {
559
+ "epoch": 0.6806526806526807,
560
+ "grad_norm": 14.138517379760742,
561
+ "learning_rate": 9.854110101901308e-06,
562
+ "loss": 6.143560791015625,
563
+ "step": 365
564
+ },
565
+ {
566
+ "epoch": 0.6899766899766899,
567
+ "grad_norm": 12.696243286132812,
568
+ "learning_rate": 9.844206565525585e-06,
569
+ "loss": 6.061418914794922,
570
+ "step": 370
571
+ },
572
+ {
573
+ "epoch": 0.6993006993006993,
574
+ "grad_norm": 15.22846508026123,
575
+ "learning_rate": 9.833983142356792e-06,
576
+ "loss": 6.193332672119141,
577
+ "step": 375
578
+ },
579
+ {
580
+ "epoch": 0.7086247086247086,
581
+ "grad_norm": 15.284857749938965,
582
+ "learning_rate": 9.823440507497863e-06,
583
+ "loss": 6.0868377685546875,
584
+ "step": 380
585
+ },
586
+ {
587
+ "epoch": 0.717948717948718,
588
+ "grad_norm": 14.117541313171387,
589
+ "learning_rate": 9.812579357130848e-06,
590
+ "loss": 6.289948272705078,
591
+ "step": 385
592
+ },
593
+ {
594
+ "epoch": 0.7272727272727273,
595
+ "grad_norm": 12.648367881774902,
596
+ "learning_rate": 9.801400408470943e-06,
597
+ "loss": 6.194795227050781,
598
+ "step": 390
599
+ },
600
+ {
601
+ "epoch": 0.7365967365967366,
602
+ "grad_norm": 12.394021034240723,
603
+ "learning_rate": 9.789904399719124e-06,
604
+ "loss": 6.031880950927734,
605
+ "step": 395
606
+ },
607
+ {
608
+ "epoch": 0.745920745920746,
609
+ "grad_norm": 15.566425323486328,
610
+ "learning_rate": 9.778092090013416e-06,
611
+ "loss": 6.0966644287109375,
612
+ "step": 400
613
+ },
614
+ {
615
+ "epoch": 0.745920745920746,
616
+ "eval_com_accuracy": 0.184,
617
+ "eval_rew_accuracy": 0.364,
618
+ "step": 400
619
+ },
620
+ {
621
+ "epoch": 0.7552447552447552,
622
+ "grad_norm": 14.885455131530762,
623
+ "learning_rate": 9.76596425937874e-06,
624
+ "loss": 6.476510620117187,
625
+ "step": 405
626
+ },
627
+ {
628
+ "epoch": 0.7645687645687645,
629
+ "grad_norm": 16.627117156982422,
630
+ "learning_rate": 9.753521708675426e-06,
631
+ "loss": 5.9605262756347654,
632
+ "step": 410
633
+ },
634
+ {
635
+ "epoch": 0.7738927738927739,
636
+ "grad_norm": 14.517923355102539,
637
+ "learning_rate": 9.740765259546312e-06,
638
+ "loss": 6.1104694366455075,
639
+ "step": 415
640
+ },
641
+ {
642
+ "epoch": 0.7832167832167832,
643
+ "grad_norm": 12.007637977600098,
644
+ "learning_rate": 9.727695754362498e-06,
645
+ "loss": 5.964785766601563,
646
+ "step": 420
647
+ },
648
+ {
649
+ "epoch": 0.7925407925407926,
650
+ "grad_norm": 16.17314338684082,
651
+ "learning_rate": 9.714314056167711e-06,
652
+ "loss": 5.976337432861328,
653
+ "step": 425
654
+ },
655
+ {
656
+ "epoch": 0.8018648018648019,
657
+ "grad_norm": 13.246196746826172,
658
+ "learning_rate": 9.700621048621322e-06,
659
+ "loss": 5.936331939697266,
660
+ "step": 430
661
+ },
662
+ {
663
+ "epoch": 0.8111888111888111,
664
+ "grad_norm": 15.030324935913086,
665
+ "learning_rate": 9.686617635939988e-06,
666
+ "loss": 6.209032821655273,
667
+ "step": 435
668
+ },
669
+ {
670
+ "epoch": 0.8205128205128205,
671
+ "grad_norm": 13.853086471557617,
672
+ "learning_rate": 9.672304742837945e-06,
673
+ "loss": 5.985638427734375,
674
+ "step": 440
675
+ },
676
+ {
677
+ "epoch": 0.8298368298368298,
678
+ "grad_norm": 13.534188270568848,
679
+ "learning_rate": 9.657683314465948e-06,
680
+ "loss": 5.7971649169921875,
681
+ "step": 445
682
+ },
683
+ {
684
+ "epoch": 0.8391608391608392,
685
+ "grad_norm": 26.1879825592041,
686
+ "learning_rate": 9.642754316348846e-06,
687
+ "loss": 5.949985504150391,
688
+ "step": 450
689
+ },
690
+ {
691
+ "epoch": 0.8391608391608392,
692
+ "eval_com_accuracy": 0.176,
693
+ "eval_rew_accuracy": 0.34,
694
+ "step": 450
695
+ },
696
+ {
697
+ "epoch": 0.8484848484848485,
698
+ "grad_norm": 16.848834991455078,
699
+ "learning_rate": 9.627518734321837e-06,
700
+ "loss": 6.1193115234375,
701
+ "step": 455
702
+ },
703
+ {
704
+ "epoch": 0.8578088578088578,
705
+ "grad_norm": 30.765796661376953,
706
+ "learning_rate": 9.61197757446536e-06,
707
+ "loss": 5.74780158996582,
708
+ "step": 460
709
+ },
710
+ {
711
+ "epoch": 0.8671328671328671,
712
+ "grad_norm": 13.27775764465332,
713
+ "learning_rate": 9.596131863038664e-06,
714
+ "loss": 5.994970703125,
715
+ "step": 465
716
+ },
717
+ {
718
+ "epoch": 0.8764568764568764,
719
+ "grad_norm": 14.923792839050293,
720
+ "learning_rate": 9.579982646412039e-06,
721
+ "loss": 5.810473251342773,
722
+ "step": 470
723
+ },
724
+ {
725
+ "epoch": 0.8857808857808858,
726
+ "grad_norm": 14.351722717285156,
727
+ "learning_rate": 9.563530990997707e-06,
728
+ "loss": 6.09692268371582,
729
+ "step": 475
730
+ },
731
+ {
732
+ "epoch": 0.8951048951048951,
733
+ "grad_norm": 11.83583927154541,
734
+ "learning_rate": 9.546777983179421e-06,
735
+ "loss": 5.867227935791016,
736
+ "step": 480
737
+ },
738
+ {
739
+ "epoch": 0.9044289044289044,
740
+ "grad_norm": 19.415884017944336,
741
+ "learning_rate": 9.529724729240712e-06,
742
+ "loss": 5.834615707397461,
743
+ "step": 485
744
+ },
745
+ {
746
+ "epoch": 0.9137529137529138,
747
+ "grad_norm": 12.147261619567871,
748
+ "learning_rate": 9.512372355291838e-06,
749
+ "loss": 6.039286041259766,
750
+ "step": 490
751
+ },
752
+ {
753
+ "epoch": 0.9230769230769231,
754
+ "grad_norm": 12.706372261047363,
755
+ "learning_rate": 9.494722007195427e-06,
756
+ "loss": 6.06304702758789,
757
+ "step": 495
758
+ },
759
+ {
760
+ "epoch": 0.9324009324009324,
761
+ "grad_norm": 12.642041206359863,
762
+ "learning_rate": 9.476774850490803e-06,
763
+ "loss": 5.9729866027832035,
764
+ "step": 500
765
+ },
766
+ {
767
+ "epoch": 0.9324009324009324,
768
+ "eval_com_accuracy": 0.204,
769
+ "eval_rew_accuracy": 0.328,
770
+ "step": 500
771
+ },
772
+ {
773
+ "epoch": 0.9417249417249417,
774
+ "grad_norm": 12.66169548034668,
775
+ "learning_rate": 9.458532070317021e-06,
776
+ "loss": 5.8281097412109375,
777
+ "step": 505
778
+ },
779
+ {
780
+ "epoch": 0.951048951048951,
781
+ "grad_norm": 13.191854476928711,
782
+ "learning_rate": 9.439994871334614e-06,
783
+ "loss": 6.183546447753907,
784
+ "step": 510
785
+ },
786
+ {
787
+ "epoch": 0.9603729603729604,
788
+ "grad_norm": 12.52676010131836,
789
+ "learning_rate": 9.421164477646031e-06,
790
+ "loss": 5.785601043701172,
791
+ "step": 515
792
+ },
793
+ {
794
+ "epoch": 0.9696969696969697,
795
+ "grad_norm": 13.225418090820312,
796
+ "learning_rate": 9.402042132714817e-06,
797
+ "loss": 5.784825134277344,
798
+ "step": 520
799
+ },
800
+ {
801
+ "epoch": 0.9790209790209791,
802
+ "grad_norm": 12.035611152648926,
803
+ "learning_rate": 9.382629099283486e-06,
804
+ "loss": 5.9122272491455075,
805
+ "step": 525
806
+ },
807
+ {
808
+ "epoch": 0.9883449883449883,
809
+ "grad_norm": 12.166351318359375,
810
+ "learning_rate": 9.362926659290149e-06,
811
+ "loss": 5.790053939819336,
812
+ "step": 530
813
+ },
814
+ {
815
+ "epoch": 0.9976689976689976,
816
+ "grad_norm": 13.22154426574707,
817
+ "learning_rate": 9.342936113783855e-06,
818
+ "loss": 5.745006561279297,
819
+ "step": 535
820
+ },
821
+ {
822
+ "epoch": 1.0055944055944055,
823
+ "grad_norm": 13.12752628326416,
824
+ "learning_rate": 9.32265878283868e-06,
825
+ "loss": 5.1531005859375,
826
+ "step": 540
827
+ },
828
+ {
829
+ "epoch": 1.014918414918415,
830
+ "grad_norm": 15.964373588562012,
831
+ "learning_rate": 9.302096005466547e-06,
832
+ "loss": 5.7917236328125,
833
+ "step": 545
834
+ },
835
+ {
836
+ "epoch": 1.0242424242424242,
837
+ "grad_norm": 18.454797744750977,
838
+ "learning_rate": 9.281249139528816e-06,
839
+ "loss": 5.967070007324219,
840
+ "step": 550
841
+ },
842
+ {
843
+ "epoch": 1.0242424242424242,
844
+ "eval_com_accuracy": 0.212,
845
+ "eval_rew_accuracy": 0.352,
846
+ "step": 550
847
+ },
848
+ {
849
+ "epoch": 1.0335664335664336,
850
+ "grad_norm": 15.802419662475586,
851
+ "learning_rate": 9.260119561646614e-06,
852
+ "loss": 6.093529129028321,
853
+ "step": 555
854
+ },
855
+ {
856
+ "epoch": 1.0428904428904429,
857
+ "grad_norm": 21.95537757873535,
858
+ "learning_rate": 9.238708667109924e-06,
859
+ "loss": 5.489861297607422,
860
+ "step": 560
861
+ },
862
+ {
863
+ "epoch": 1.0522144522144523,
864
+ "grad_norm": 13.373199462890625,
865
+ "learning_rate": 9.217017869785453e-06,
866
+ "loss": 5.871435928344726,
867
+ "step": 565
868
+ },
869
+ {
870
+ "epoch": 1.0615384615384615,
871
+ "grad_norm": 13.36340618133545,
872
+ "learning_rate": 9.19504860202327e-06,
873
+ "loss": 5.805611038208008,
874
+ "step": 570
875
+ },
876
+ {
877
+ "epoch": 1.0708624708624708,
878
+ "grad_norm": 14.099553108215332,
879
+ "learning_rate": 9.172802314562214e-06,
880
+ "loss": 5.600634765625,
881
+ "step": 575
882
+ },
883
+ {
884
+ "epoch": 1.0801864801864802,
885
+ "grad_norm": 15.012040138244629,
886
+ "learning_rate": 9.150280476434098e-06,
887
+ "loss": 5.793732452392578,
888
+ "step": 580
889
+ },
890
+ {
891
+ "epoch": 1.0895104895104895,
892
+ "grad_norm": 15.98738956451416,
893
+ "learning_rate": 9.127484574866699e-06,
894
+ "loss": 5.8642620086669925,
895
+ "step": 585
896
+ },
897
+ {
898
+ "epoch": 1.098834498834499,
899
+ "grad_norm": 13.785572052001953,
900
+ "learning_rate": 9.104416115185557e-06,
901
+ "loss": 5.770995330810547,
902
+ "step": 590
903
+ },
904
+ {
905
+ "epoch": 1.1081585081585081,
906
+ "grad_norm": 12.145087242126465,
907
+ "learning_rate": 9.08107662071456e-06,
908
+ "loss": 5.850731277465821,
909
+ "step": 595
910
+ },
911
+ {
912
+ "epoch": 1.1174825174825176,
913
+ "grad_norm": 13.681862831115723,
914
+ "learning_rate": 9.057467632675357e-06,
915
+ "loss": 5.782034301757813,
916
+ "step": 600
917
+ },
918
+ {
919
+ "epoch": 1.1174825174825176,
920
+ "eval_com_accuracy": 0.22,
921
+ "eval_rew_accuracy": 0.348,
922
+ "step": 600
923
+ },
924
+ {
925
+ "epoch": 1.1268065268065268,
926
+ "grad_norm": 13.870027542114258,
927
+ "learning_rate": 9.033590710085584e-06,
928
+ "loss": 5.723427963256836,
929
+ "step": 605
930
+ },
931
+ {
932
+ "epoch": 1.136130536130536,
933
+ "grad_norm": 16.20020294189453,
934
+ "learning_rate": 9.00944742965592e-06,
935
+ "loss": 5.953633117675781,
936
+ "step": 610
937
+ },
938
+ {
939
+ "epoch": 1.1454545454545455,
940
+ "grad_norm": 15.48993968963623,
941
+ "learning_rate": 8.985039385685952e-06,
942
+ "loss": 5.809123992919922,
943
+ "step": 615
944
+ },
945
+ {
946
+ "epoch": 1.1547785547785547,
947
+ "grad_norm": 13.686211585998535,
948
+ "learning_rate": 8.960368189958913e-06,
949
+ "loss": 5.813122177124024,
950
+ "step": 620
951
+ },
952
+ {
953
+ "epoch": 1.1641025641025642,
954
+ "grad_norm": 13.733199119567871,
955
+ "learning_rate": 8.935435471635238e-06,
956
+ "loss": 5.6748512268066404,
957
+ "step": 625
958
+ },
959
+ {
960
+ "epoch": 1.1734265734265734,
961
+ "grad_norm": 12.450380325317383,
962
+ "learning_rate": 8.91024287714499e-06,
963
+ "loss": 5.6834667205810545,
964
+ "step": 630
965
+ },
966
+ {
967
+ "epoch": 1.1827505827505829,
968
+ "grad_norm": 14.111934661865234,
969
+ "learning_rate": 8.884792070079128e-06,
970
+ "loss": 5.680038833618164,
971
+ "step": 635
972
+ },
973
+ {
974
+ "epoch": 1.192074592074592,
975
+ "grad_norm": 13.175325393676758,
976
+ "learning_rate": 8.859084731079664e-06,
977
+ "loss": 5.445759201049805,
978
+ "step": 640
979
+ },
980
+ {
981
+ "epoch": 1.2013986013986013,
982
+ "grad_norm": 14.951041221618652,
983
+ "learning_rate": 8.833122557728667e-06,
984
+ "loss": 5.673246765136719,
985
+ "step": 645
986
+ },
987
+ {
988
+ "epoch": 1.2107226107226108,
989
+ "grad_norm": 12.364238739013672,
990
+ "learning_rate": 8.806907264436183e-06,
991
+ "loss": 5.234909439086914,
992
+ "step": 650
993
+ },
994
+ {
995
+ "epoch": 1.2107226107226108,
996
+ "eval_com_accuracy": 0.224,
997
+ "eval_rew_accuracy": 0.348,
998
+ "step": 650
999
+ },
1000
+ {
1001
+ "epoch": 1.22004662004662,
1002
+ "grad_norm": 13.065054893493652,
1003
+ "learning_rate": 8.780440582327005e-06,
1004
+ "loss": 5.442026519775391,
1005
+ "step": 655
1006
+ },
1007
+ {
1008
+ "epoch": 1.2293706293706295,
1009
+ "grad_norm": 13.872124671936035,
1010
+ "learning_rate": 8.75372425912637e-06,
1011
+ "loss": 5.736603546142578,
1012
+ "step": 660
1013
+ },
1014
+ {
1015
+ "epoch": 1.2386946386946387,
1016
+ "grad_norm": 13.677570343017578,
1017
+ "learning_rate": 8.726760059044542e-06,
1018
+ "loss": 5.951699447631836,
1019
+ "step": 665
1020
+ },
1021
+ {
1022
+ "epoch": 1.248018648018648,
1023
+ "grad_norm": 15.023405075073242,
1024
+ "learning_rate": 8.699549762660318e-06,
1025
+ "loss": 5.936520004272461,
1026
+ "step": 670
1027
+ },
1028
+ {
1029
+ "epoch": 1.2573426573426574,
1030
+ "grad_norm": 12.804817199707031,
1031
+ "learning_rate": 8.672095166803445e-06,
1032
+ "loss": 5.778074645996094,
1033
+ "step": 675
1034
+ },
1035
+ {
1036
+ "epoch": 1.2666666666666666,
1037
+ "grad_norm": 13.148968696594238,
1038
+ "learning_rate": 8.644398084435959e-06,
1039
+ "loss": 5.7417655944824215,
1040
+ "step": 680
1041
+ },
1042
+ {
1043
+ "epoch": 1.275990675990676,
1044
+ "grad_norm": 14.131410598754883,
1045
+ "learning_rate": 8.616460344532483e-06,
1046
+ "loss": 5.58878173828125,
1047
+ "step": 685
1048
+ },
1049
+ {
1050
+ "epoch": 1.2853146853146853,
1051
+ "grad_norm": 14.100456237792969,
1052
+ "learning_rate": 8.588283791959437e-06,
1053
+ "loss": 5.546084976196289,
1054
+ "step": 690
1055
+ },
1056
+ {
1057
+ "epoch": 1.2946386946386945,
1058
+ "grad_norm": 13.94593620300293,
1059
+ "learning_rate": 8.559870287353214e-06,
1060
+ "loss": 6.0555156707763675,
1061
+ "step": 695
1062
+ },
1063
+ {
1064
+ "epoch": 1.303962703962704,
1065
+ "grad_norm": 18.369823455810547,
1066
+ "learning_rate": 8.531221706997316e-06,
1067
+ "loss": 5.930012512207031,
1068
+ "step": 700
1069
+ },
1070
+ {
1071
+ "epoch": 1.303962703962704,
1072
+ "eval_com_accuracy": 0.24,
1073
+ "eval_rew_accuracy": 0.364,
1074
+ "step": 700
1075
+ },
1076
+ {
1077
+ "epoch": 1.3132867132867134,
1078
+ "grad_norm": 14.022618293762207,
1079
+ "learning_rate": 8.502339942698463e-06,
1080
+ "loss": 5.831372833251953,
1081
+ "step": 705
1082
+ },
1083
+ {
1084
+ "epoch": 1.3226107226107227,
1085
+ "grad_norm": 12.844898223876953,
1086
+ "learning_rate": 8.473226901661643e-06,
1087
+ "loss": 5.503532409667969,
1088
+ "step": 710
1089
+ },
1090
+ {
1091
+ "epoch": 1.3319347319347319,
1092
+ "grad_norm": 13.991181373596191,
1093
+ "learning_rate": 8.443884506364192e-06,
1094
+ "loss": 5.344602966308594,
1095
+ "step": 715
1096
+ },
1097
+ {
1098
+ "epoch": 1.3412587412587413,
1099
+ "grad_norm": 13.290801048278809,
1100
+ "learning_rate": 8.414314694428842e-06,
1101
+ "loss": 5.7142791748046875,
1102
+ "step": 720
1103
+ },
1104
+ {
1105
+ "epoch": 1.3505827505827506,
1106
+ "grad_norm": 13.986117362976074,
1107
+ "learning_rate": 8.384519418495755e-06,
1108
+ "loss": 5.509880065917969,
1109
+ "step": 725
1110
+ },
1111
+ {
1112
+ "epoch": 1.3599067599067598,
1113
+ "grad_norm": 17.483638763427734,
1114
+ "learning_rate": 8.354500646093592e-06,
1115
+ "loss": 5.769047546386719,
1116
+ "step": 730
1117
+ },
1118
+ {
1119
+ "epoch": 1.3692307692307693,
1120
+ "grad_norm": 12.383395195007324,
1121
+ "learning_rate": 8.324260359509594e-06,
1122
+ "loss": 5.693521881103516,
1123
+ "step": 735
1124
+ },
1125
+ {
1126
+ "epoch": 1.3785547785547785,
1127
+ "grad_norm": 12.225541114807129,
1128
+ "learning_rate": 8.29380055565866e-06,
1129
+ "loss": 5.618255233764648,
1130
+ "step": 740
1131
+ },
1132
+ {
1133
+ "epoch": 1.387878787878788,
1134
+ "grad_norm": 11.737737655639648,
1135
+ "learning_rate": 8.263123245951504e-06,
1136
+ "loss": 5.702220916748047,
1137
+ "step": 745
1138
+ },
1139
+ {
1140
+ "epoch": 1.3972027972027972,
1141
+ "grad_norm": 14.235527992248535,
1142
+ "learning_rate": 8.232230456161819e-06,
1143
+ "loss": 5.744013977050781,
1144
+ "step": 750
1145
+ },
1146
+ {
1147
+ "epoch": 1.3972027972027972,
1148
+ "eval_com_accuracy": 0.24,
1149
+ "eval_rew_accuracy": 0.368,
1150
+ "step": 750
1151
+ },
1152
+ {
1153
+ "epoch": 1.4065268065268066,
1154
+ "grad_norm": 12.433022499084473,
1155
+ "learning_rate": 8.201124226292505e-06,
1156
+ "loss": 5.6122283935546875,
1157
+ "step": 755
1158
+ },
1159
+ {
1160
+ "epoch": 1.4158508158508158,
1161
+ "grad_norm": 13.874029159545898,
1162
+ "learning_rate": 8.169806610440966e-06,
1163
+ "loss": 5.530184936523438,
1164
+ "step": 760
1165
+ },
1166
+ {
1167
+ "epoch": 1.425174825174825,
1168
+ "grad_norm": 12.640862464904785,
1169
+ "learning_rate": 8.138279676663458e-06,
1170
+ "loss": 5.602608489990234,
1171
+ "step": 765
1172
+ },
1173
+ {
1174
+ "epoch": 1.4344988344988345,
1175
+ "grad_norm": 13.672120094299316,
1176
+ "learning_rate": 8.106545506838533e-06,
1177
+ "loss": 5.971489715576172,
1178
+ "step": 770
1179
+ },
1180
+ {
1181
+ "epoch": 1.4438228438228438,
1182
+ "grad_norm": 12.973994255065918,
1183
+ "learning_rate": 8.074606196529554e-06,
1184
+ "loss": 5.967403411865234,
1185
+ "step": 775
1186
+ },
1187
+ {
1188
+ "epoch": 1.4531468531468532,
1189
+ "grad_norm": 12.31808090209961,
1190
+ "learning_rate": 8.042463854846325e-06,
1191
+ "loss": 5.71468505859375,
1192
+ "step": 780
1193
+ },
1194
+ {
1195
+ "epoch": 1.4624708624708624,
1196
+ "grad_norm": 12.416245460510254,
1197
+ "learning_rate": 8.010120604305806e-06,
1198
+ "loss": 5.836771392822266,
1199
+ "step": 785
1200
+ },
1201
+ {
1202
+ "epoch": 1.471794871794872,
1203
+ "grad_norm": 13.020674705505371,
1204
+ "learning_rate": 7.977578580691963e-06,
1205
+ "loss": 5.71131591796875,
1206
+ "step": 790
1207
+ },
1208
+ {
1209
+ "epoch": 1.4811188811188811,
1210
+ "grad_norm": 13.946771621704102,
1211
+ "learning_rate": 7.944839932914718e-06,
1212
+ "loss": 5.564648818969727,
1213
+ "step": 795
1214
+ },
1215
+ {
1216
+ "epoch": 1.4904428904428904,
1217
+ "grad_norm": 12.287398338317871,
1218
+ "learning_rate": 7.91190682286806e-06,
1219
+ "loss": 5.753592300415039,
1220
+ "step": 800
1221
+ },
1222
+ {
1223
+ "epoch": 1.4904428904428904,
1224
+ "eval_com_accuracy": 0.236,
1225
+ "eval_rew_accuracy": 0.384,
1226
+ "step": 800
1227
+ },
1228
+ {
1229
+ "epoch": 1.4997668997668998,
1230
+ "grad_norm": 20.467731475830078,
1231
+ "learning_rate": 7.878781425287277e-06,
1232
+ "loss": 5.64927978515625,
1233
+ "step": 805
1234
+ },
1235
+ {
1236
+ "epoch": 1.509090909090909,
1237
+ "grad_norm": 13.811100006103516,
1238
+ "learning_rate": 7.84546592760535e-06,
1239
+ "loss": 5.415856170654297,
1240
+ "step": 810
1241
+ },
1242
+ {
1243
+ "epoch": 1.5184149184149183,
1244
+ "grad_norm": 12.4107666015625,
1245
+ "learning_rate": 7.811962529808499e-06,
1246
+ "loss": 5.767454147338867,
1247
+ "step": 815
1248
+ },
1249
+ {
1250
+ "epoch": 1.5277389277389277,
1251
+ "grad_norm": 14.148603439331055,
1252
+ "learning_rate": 7.778273444290921e-06,
1253
+ "loss": 5.463053131103516,
1254
+ "step": 820
1255
+ },
1256
+ {
1257
+ "epoch": 1.5370629370629372,
1258
+ "grad_norm": 13.375722885131836,
1259
+ "learning_rate": 7.744400895708683e-06,
1260
+ "loss": 5.625373077392578,
1261
+ "step": 825
1262
+ },
1263
+ {
1264
+ "epoch": 1.5463869463869464,
1265
+ "grad_norm": 12.991719245910645,
1266
+ "learning_rate": 7.710347120832821e-06,
1267
+ "loss": 5.6271202087402346,
1268
+ "step": 830
1269
+ },
1270
+ {
1271
+ "epoch": 1.5557109557109556,
1272
+ "grad_norm": 12.906146049499512,
1273
+ "learning_rate": 7.676114368401635e-06,
1274
+ "loss": 5.5160057067871096,
1275
+ "step": 835
1276
+ },
1277
+ {
1278
+ "epoch": 1.565034965034965,
1279
+ "grad_norm": 12.344596862792969,
1280
+ "learning_rate": 7.641704898972194e-06,
1281
+ "loss": 5.506198120117188,
1282
+ "step": 840
1283
+ },
1284
+ {
1285
+ "epoch": 1.5743589743589743,
1286
+ "grad_norm": 13.285745620727539,
1287
+ "learning_rate": 7.607120984771058e-06,
1288
+ "loss": 5.7151634216308596,
1289
+ "step": 845
1290
+ },
1291
+ {
1292
+ "epoch": 1.5836829836829835,
1293
+ "grad_norm": 12.432035446166992,
1294
+ "learning_rate": 7.572364909544235e-06,
1295
+ "loss": 5.852275085449219,
1296
+ "step": 850
1297
+ },
1298
+ {
1299
+ "epoch": 1.5836829836829835,
1300
+ "eval_com_accuracy": 0.228,
1301
+ "eval_rew_accuracy": 0.332,
1302
+ "step": 850
1303
+ },
1304
+ {
1305
+ "epoch": 1.593006993006993,
1306
+ "grad_norm": 12.581634521484375,
1307
+ "learning_rate": 7.537438968406372e-06,
1308
+ "loss": 5.735688018798828,
1309
+ "step": 855
1310
+ },
1311
+ {
1312
+ "epoch": 1.6023310023310025,
1313
+ "grad_norm": 13.161237716674805,
1314
+ "learning_rate": 7.502345467689202e-06,
1315
+ "loss": 5.648350524902344,
1316
+ "step": 860
1317
+ },
1318
+ {
1319
+ "epoch": 1.6116550116550117,
1320
+ "grad_norm": 12.48270034790039,
1321
+ "learning_rate": 7.4670867247892346e-06,
1322
+ "loss": 5.635168075561523,
1323
+ "step": 865
1324
+ },
1325
+ {
1326
+ "epoch": 1.620979020979021,
1327
+ "grad_norm": 13.835477828979492,
1328
+ "learning_rate": 7.431665068014737e-06,
1329
+ "loss": 5.548571014404297,
1330
+ "step": 870
1331
+ },
1332
+ {
1333
+ "epoch": 1.6303030303030304,
1334
+ "grad_norm": 12.403617858886719,
1335
+ "learning_rate": 7.396082836431981e-06,
1336
+ "loss": 5.7486827850341795,
1337
+ "step": 875
1338
+ },
1339
+ {
1340
+ "epoch": 1.6396270396270396,
1341
+ "grad_norm": 13.730851173400879,
1342
+ "learning_rate": 7.3603423797107845e-06,
1343
+ "loss": 5.288154602050781,
1344
+ "step": 880
1345
+ },
1346
+ {
1347
+ "epoch": 1.6489510489510488,
1348
+ "grad_norm": 14.688888549804688,
1349
+ "learning_rate": 7.324446057969346e-06,
1350
+ "loss": 5.648311614990234,
1351
+ "step": 885
1352
+ },
1353
+ {
1354
+ "epoch": 1.6582750582750583,
1355
+ "grad_norm": 13.311734199523926,
1356
+ "learning_rate": 7.288396241618401e-06,
1357
+ "loss": 5.636775207519531,
1358
+ "step": 890
1359
+ },
1360
+ {
1361
+ "epoch": 1.6675990675990677,
1362
+ "grad_norm": 12.776606559753418,
1363
+ "learning_rate": 7.252195311204689e-06,
1364
+ "loss": 5.666929626464844,
1365
+ "step": 895
1366
+ },
1367
+ {
1368
+ "epoch": 1.676923076923077,
1369
+ "grad_norm": 14.130080223083496,
1370
+ "learning_rate": 7.215845657253755e-06,
1371
+ "loss": 5.534748840332031,
1372
+ "step": 900
1373
+ },
1374
+ {
1375
+ "epoch": 1.676923076923077,
1376
+ "eval_com_accuracy": 0.264,
1377
+ "eval_rew_accuracy": 0.364,
1378
+ "step": 900
1379
+ },
1380
+ {
1381
+ "epoch": 1.6862470862470862,
1382
+ "grad_norm": 14.159326553344727,
1383
+ "learning_rate": 7.1793496801120885e-06,
1384
+ "loss": 5.652375793457031,
1385
+ "step": 905
1386
+ },
1387
+ {
1388
+ "epoch": 1.6955710955710956,
1389
+ "grad_norm": 13.113655090332031,
1390
+ "learning_rate": 7.1427097897886225e-06,
1391
+ "loss": 5.383832168579102,
1392
+ "step": 910
1393
+ },
1394
+ {
1395
+ "epoch": 1.7048951048951049,
1396
+ "grad_norm": 14.203001022338867,
1397
+ "learning_rate": 7.105928405795584e-06,
1398
+ "loss": 5.6499076843261715,
1399
+ "step": 915
1400
+ },
1401
+ {
1402
+ "epoch": 1.714219114219114,
1403
+ "grad_norm": 12.1084623336792,
1404
+ "learning_rate": 7.069007956988718e-06,
1405
+ "loss": 5.560025787353515,
1406
+ "step": 920
1407
+ },
1408
+ {
1409
+ "epoch": 1.7235431235431236,
1410
+ "grad_norm": 13.819426536560059,
1411
+ "learning_rate": 7.031950881406913e-06,
1412
+ "loss": 5.535141372680664,
1413
+ "step": 925
1414
+ },
1415
+ {
1416
+ "epoch": 1.732867132867133,
1417
+ "grad_norm": 17.341110229492188,
1418
+ "learning_rate": 6.994759626111189e-06,
1419
+ "loss": 5.697111511230469,
1420
+ "step": 930
1421
+ },
1422
+ {
1423
+ "epoch": 1.7421911421911422,
1424
+ "grad_norm": 16.404672622680664,
1425
+ "learning_rate": 6.957436647023117e-06,
1426
+ "loss": 5.4155632019042965,
1427
+ "step": 935
1428
+ },
1429
+ {
1430
+ "epoch": 1.7515151515151515,
1431
+ "grad_norm": 13.115015029907227,
1432
+ "learning_rate": 6.919984408762632e-06,
1433
+ "loss": 5.758349990844726,
1434
+ "step": 940
1435
+ },
1436
+ {
1437
+ "epoch": 1.760839160839161,
1438
+ "grad_norm": 13.850481986999512,
1439
+ "learning_rate": 6.882405384485294e-06,
1440
+ "loss": 5.69927864074707,
1441
+ "step": 945
1442
+ },
1443
+ {
1444
+ "epoch": 1.7701631701631702,
1445
+ "grad_norm": 12.921819686889648,
1446
+ "learning_rate": 6.844702055718964e-06,
1447
+ "loss": 5.631483459472657,
1448
+ "step": 950
1449
+ },
1450
+ {
1451
+ "epoch": 1.7701631701631702,
1452
+ "eval_com_accuracy": 0.26,
1453
+ "eval_rew_accuracy": 0.352,
1454
+ "step": 950
1455
+ },
1456
+ {
1457
+ "epoch": 1.7794871794871794,
1458
+ "grad_norm": 13.401888847351074,
1459
+ "learning_rate": 6.806876912199945e-06,
1460
+ "loss": 5.824296569824218,
1461
+ "step": 955
1462
+ },
1463
+ {
1464
+ "epoch": 1.7888111888111888,
1465
+ "grad_norm": 13.481993675231934,
1466
+ "learning_rate": 6.768932451708557e-06,
1467
+ "loss": 5.752721786499023,
1468
+ "step": 960
1469
+ },
1470
+ {
1471
+ "epoch": 1.7981351981351983,
1472
+ "grad_norm": 14.022424697875977,
1473
+ "learning_rate": 6.730871179904218e-06,
1474
+ "loss": 5.453369522094727,
1475
+ "step": 965
1476
+ },
1477
+ {
1478
+ "epoch": 1.8074592074592073,
1479
+ "grad_norm": 13.432122230529785,
1480
+ "learning_rate": 6.692695610159966e-06,
1481
+ "loss": 5.664297103881836,
1482
+ "step": 970
1483
+ },
1484
+ {
1485
+ "epoch": 1.8167832167832167,
1486
+ "grad_norm": 14.292946815490723,
1487
+ "learning_rate": 6.6544082633964955e-06,
1488
+ "loss": 5.576699066162109,
1489
+ "step": 975
1490
+ },
1491
+ {
1492
+ "epoch": 1.8261072261072262,
1493
+ "grad_norm": 14.256867408752441,
1494
+ "learning_rate": 6.6160116679156874e-06,
1495
+ "loss": 5.551004791259766,
1496
+ "step": 980
1497
+ },
1498
+ {
1499
+ "epoch": 1.8354312354312354,
1500
+ "grad_norm": 14.11919116973877,
1501
+ "learning_rate": 6.577508359233653e-06,
1502
+ "loss": 5.580959320068359,
1503
+ "step": 985
1504
+ },
1505
+ {
1506
+ "epoch": 1.8447552447552447,
1507
+ "grad_norm": 14.006019592285156,
1508
+ "learning_rate": 6.538900879913301e-06,
1509
+ "loss": 5.443265533447265,
1510
+ "step": 990
1511
+ },
1512
+ {
1513
+ "epoch": 1.8540792540792541,
1514
+ "grad_norm": 11.976597785949707,
1515
+ "learning_rate": 6.500191779396439e-06,
1516
+ "loss": 5.410481643676758,
1517
+ "step": 995
1518
+ },
1519
+ {
1520
+ "epoch": 1.8634032634032636,
1521
+ "grad_norm": 14.439790725708008,
1522
+ "learning_rate": 6.461383613835427e-06,
1523
+ "loss": 5.3311511993408205,
1524
+ "step": 1000
1525
+ },
1526
+ {
1527
+ "epoch": 1.8634032634032636,
1528
+ "eval_com_accuracy": 0.24,
1529
+ "eval_rew_accuracy": 0.356,
1530
+ "step": 1000
1531
+ },
1532
+ {
1533
+ "epoch": 1.8727272727272726,
1534
+ "grad_norm": 15.29392147064209,
1535
+ "learning_rate": 6.4224789459243705e-06,
1536
+ "loss": 5.477576446533203,
1537
+ "step": 1005
1538
+ },
1539
+ {
1540
+ "epoch": 1.882051282051282,
1541
+ "grad_norm": 14.032716751098633,
1542
+ "learning_rate": 6.383480344729903e-06,
1543
+ "loss": 5.458187103271484,
1544
+ "step": 1010
1545
+ },
1546
+ {
1547
+ "epoch": 1.8913752913752915,
1548
+ "grad_norm": 11.861150741577148,
1549
+ "learning_rate": 6.344390385521534e-06,
1550
+ "loss": 5.806562423706055,
1551
+ "step": 1015
1552
+ },
1553
+ {
1554
+ "epoch": 1.9006993006993007,
1555
+ "grad_norm": 14.015438079833984,
1556
+ "learning_rate": 6.305211649601595e-06,
1557
+ "loss": 5.2158203125,
1558
+ "step": 1020
1559
+ },
1560
+ {
1561
+ "epoch": 1.91002331002331,
1562
+ "grad_norm": 15.672555923461914,
1563
+ "learning_rate": 6.265946724134782e-06,
1564
+ "loss": 5.469319915771484,
1565
+ "step": 1025
1566
+ },
1567
+ {
1568
+ "epoch": 1.9193473193473194,
1569
+ "grad_norm": 13.891338348388672,
1570
+ "learning_rate": 6.226598201977299e-06,
1571
+ "loss": 5.495826721191406,
1572
+ "step": 1030
1573
+ },
1574
+ {
1575
+ "epoch": 1.9286713286713286,
1576
+ "grad_norm": 12.441986083984375,
1577
+ "learning_rate": 6.187168681505666e-06,
1578
+ "loss": 5.466391372680664,
1579
+ "step": 1035
1580
+ },
1581
+ {
1582
+ "epoch": 1.9379953379953379,
1583
+ "grad_norm": 13.905447006225586,
1584
+ "learning_rate": 6.1476607664451105e-06,
1585
+ "loss": 5.558423233032227,
1586
+ "step": 1040
1587
+ },
1588
+ {
1589
+ "epoch": 1.9473193473193473,
1590
+ "grad_norm": 14.817802429199219,
1591
+ "learning_rate": 6.1080770656976444e-06,
1592
+ "loss": 5.50462646484375,
1593
+ "step": 1045
1594
+ },
1595
+ {
1596
+ "epoch": 1.9566433566433568,
1597
+ "grad_norm": 14.293425559997559,
1598
+ "learning_rate": 6.068420193169779e-06,
1599
+ "loss": 5.567475128173828,
1600
+ "step": 1050
1601
+ },
1602
+ {
1603
+ "epoch": 1.9566433566433568,
1604
+ "eval_com_accuracy": 0.26,
1605
+ "eval_rew_accuracy": 0.384,
1606
+ "step": 1050
1607
+ },
1608
+ {
1609
+ "epoch": 1.965967365967366,
1610
+ "grad_norm": 13.285664558410645,
1611
+ "learning_rate": 6.0286927675999205e-06,
1612
+ "loss": 5.3831031799316404,
1613
+ "step": 1055
1614
+ },
1615
+ {
1616
+ "epoch": 1.9752913752913752,
1617
+ "grad_norm": 12.634699821472168,
1618
+ "learning_rate": 5.98889741238544e-06,
1619
+ "loss": 5.4307403564453125,
1620
+ "step": 1060
1621
+ },
1622
+ {
1623
+ "epoch": 1.9846153846153847,
1624
+ "grad_norm": 13.824172019958496,
1625
+ "learning_rate": 5.949036755409432e-06,
1626
+ "loss": 5.559865570068359,
1627
+ "step": 1065
1628
+ },
1629
+ {
1630
+ "epoch": 1.993939393939394,
1631
+ "grad_norm": 14.028116226196289,
1632
+ "learning_rate": 5.909113428867195e-06,
1633
+ "loss": 5.506551361083984,
1634
+ "step": 1070
1635
+ }
1636
+ ],
1637
+ "logging_steps": 5,
1638
+ "max_steps": 2148,
1639
+ "num_input_tokens_seen": 0,
1640
+ "num_train_epochs": 4,
1641
+ "save_steps": 500,
1642
+ "stateful_callbacks": {
1643
+ "TrainerControl": {
1644
+ "args": {
1645
+ "should_epoch_stop": false,
1646
+ "should_evaluate": false,
1647
+ "should_log": false,
1648
+ "should_save": true,
1649
+ "should_training_stop": false
1650
+ },
1651
+ "attributes": {}
1652
+ }
1653
+ },
1654
+ "total_flos": 0.0,
1655
+ "train_batch_size": 8,
1656
+ "trial_name": null,
1657
+ "trial_params": null
1658
+ }
checkpoint-1074/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6ca094dca60606350f327809d196d6faa38b81cdd561be5d924e82822f09231
3
+ size 5201
checkpoint-1611/chat_template.jinja ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {%- if messages[0].content is string %}
5
+ {{- messages[0].content }}
6
+ {%- else %}
7
+ {%- for content in messages[0].content %}
8
+ {%- if 'text' in content %}
9
+ {{- content.text }}
10
+ {%- endif %}
11
+ {%- endfor %}
12
+ {%- endif %}
13
+ {{- '\n\n' }}
14
+ {%- endif %}
15
+ {{- "# 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>" }}
16
+ {%- for tool in tools %}
17
+ {{- "\n" }}
18
+ {{- tool | tojson }}
19
+ {%- endfor %}
20
+ {{- "\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" }}
21
+ {%- else %}
22
+ {%- if messages[0].role == 'system' %}
23
+ {{- '<|im_start|>system\n' }}
24
+ {%- if messages[0].content is string %}
25
+ {{- messages[0].content }}
26
+ {%- else %}
27
+ {%- for content in messages[0].content %}
28
+ {%- if 'text' in content %}
29
+ {{- content.text }}
30
+ {%- endif %}
31
+ {%- endfor %}
32
+ {%- endif %}
33
+ {{- '<|im_end|>\n' }}
34
+ {%- endif %}
35
+ {%- endif %}
36
+ {%- set image_count = namespace(value=0) %}
37
+ {%- set video_count = namespace(value=0) %}
38
+ {%- for message in messages %}
39
+ {%- if message.role == "user" %}
40
+ {{- '<|im_start|>' + message.role + '\n' }}
41
+ {%- if message.content is string %}
42
+ {{- message.content }}
43
+ {%- else %}
44
+ {%- for content in message.content %}
45
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
46
+ {%- set image_count.value = image_count.value + 1 %}
47
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
48
+ <|vision_start|><|image_pad|><|vision_end|>
49
+ {%- elif content.type == 'video' or 'video' in content %}
50
+ {%- set video_count.value = video_count.value + 1 %}
51
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
52
+ <|vision_start|><|video_pad|><|vision_end|>
53
+ {%- elif 'text' in content %}
54
+ {{- content.text }}
55
+ {%- endif %}
56
+ {%- endfor %}
57
+ {%- endif %}
58
+ {{- '<|im_end|>\n' }}
59
+ {%- elif message.role == "assistant" %}
60
+ {{- '<|im_start|>' + message.role + '\n' }}
61
+ {%- if message.content is string %}
62
+ {{- message.content }}
63
+ {%- else %}
64
+ {%- for content_item in message.content %}
65
+ {%- if 'text' in content_item %}
66
+ {{- content_item.text }}
67
+ {%- endif %}
68
+ {%- endfor %}
69
+ {%- endif %}
70
+ {%- if message.tool_calls %}
71
+ {%- for tool_call in message.tool_calls %}
72
+ {%- if (loop.first and message.content) or (not loop.first) %}
73
+ {{- '\n' }}
74
+ {%- endif %}
75
+ {%- if tool_call.function %}
76
+ {%- set tool_call = tool_call.function %}
77
+ {%- endif %}
78
+ {{- '<tool_call>\n{"name": "' }}
79
+ {{- tool_call.name }}
80
+ {{- '", "arguments": ' }}
81
+ {%- if tool_call.arguments is string %}
82
+ {{- tool_call.arguments }}
83
+ {%- else %}
84
+ {{- tool_call.arguments | tojson }}
85
+ {%- endif %}
86
+ {{- '}\n</tool_call>' }}
87
+ {%- endfor %}
88
+ {%- endif %}
89
+ {{- '<|im_end|>\n' }}
90
+ {%- elif message.role == "tool" %}
91
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
92
+ {{- '<|im_start|>user' }}
93
+ {%- endif %}
94
+ {{- '\n<tool_response>\n' }}
95
+ {%- if message.content is string %}
96
+ {{- message.content }}
97
+ {%- else %}
98
+ {%- for content in message.content %}
99
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
100
+ {%- set image_count.value = image_count.value + 1 %}
101
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
102
+ <|vision_start|><|image_pad|><|vision_end|>
103
+ {%- elif content.type == 'video' or 'video' in content %}
104
+ {%- set video_count.value = video_count.value + 1 %}
105
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
106
+ <|vision_start|><|video_pad|><|vision_end|>
107
+ {%- elif 'text' in content %}
108
+ {{- content.text }}
109
+ {%- endif %}
110
+ {%- endfor %}
111
+ {%- endif %}
112
+ {{- '\n</tool_response>' }}
113
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
114
+ {{- '<|im_end|>\n' }}
115
+ {%- endif %}
116
+ {%- endif %}
117
+ {%- endfor %}
118
+ {%- if add_generation_prompt %}
119
+ {{- '<|im_start|>assistant\n' }}
120
+ {%- endif %}
checkpoint-1611/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e3149394644aa537fa2ade1cc32141f45f23bf2f62008931aa4dc5d1228e108
3
+ size 4885870044
checkpoint-1611/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:338233802a6165498d51ce8433326c5847271032e988b86ee66ad9b84b19532c
3
+ size 8527467778
checkpoint-1611/processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.5,
10
+ 0.5,
11
+ 0.5
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 16,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 16777216,
25
+ "shortest_edge": 65536
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "Qwen3VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": true,
38
+ "fps": 2,
39
+ "image_mean": [
40
+ 0.5,
41
+ 0.5,
42
+ 0.5
43
+ ],
44
+ "image_std": [
45
+ 0.5,
46
+ 0.5,
47
+ 0.5
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 16,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 25165824,
58
+ "shortest_edge": 4096
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen3VLVideoProcessor"
62
+ }
63
+ }
checkpoint-1611/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:659b1cdee2219458dd84ce6a632a595465680b8080e5c44bd600ff97eca8d752
3
+ size 15429
checkpoint-1611/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86accf27064cdd503053e90476a6bd10de333d4ff0594535ad55ea13a473c91d
3
+ size 15429
checkpoint-1611/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18ca8d714ef40be035404c1957b5a4dee84e1f43980408393f8aa710552ee6f6
3
+ size 15429
checkpoint-1611/rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cfdebe99e40accc9c9d8f09c63136a14abda997d9b501969ec8e16e9d183179
3
+ size 15429
checkpoint-1611/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b84dfa67996ae63f368c737005548dbc693f441e40d5fb4a97bef193cc88674
3
+ size 1465
checkpoint-1611/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8579e1ca7cc5d82a9e0202eed555529996f4ffe7f563c2979a0290cf3db452d3
3
+ size 11422818
checkpoint-1611/tokenizer_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": false,
24
+ "model_max_length": 262144,
25
+ "pad_token": "<|endoftext|>",
26
+ "processor_class": "Qwen3VLProcessor",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }
checkpoint-1611/trainer_state.json ADDED
@@ -0,0 +1,2480 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 3.0,
6
+ "eval_steps": 50,
7
+ "global_step": 1611,
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.009324009324009324,
14
+ "grad_norm": 269.7618103027344,
15
+ "learning_rate": 1.8604651162790698e-07,
16
+ "loss": 13.883856201171875,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.018648018648018648,
21
+ "grad_norm": 256.5934143066406,
22
+ "learning_rate": 4.186046511627907e-07,
23
+ "loss": 13.883564758300782,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.027972027972027972,
28
+ "grad_norm": 247.4810028076172,
29
+ "learning_rate": 6.511627906976745e-07,
30
+ "loss": 13.845947265625,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.037296037296037296,
35
+ "grad_norm": 243.70272827148438,
36
+ "learning_rate": 8.837209302325582e-07,
37
+ "loss": 13.705046081542969,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.046620046620046623,
42
+ "grad_norm": 238.2322235107422,
43
+ "learning_rate": 1.116279069767442e-06,
44
+ "loss": 13.556683349609376,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.055944055944055944,
49
+ "grad_norm": 241.71214294433594,
50
+ "learning_rate": 1.3488372093023258e-06,
51
+ "loss": 13.285650634765625,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.06526806526806526,
56
+ "grad_norm": 221.19960021972656,
57
+ "learning_rate": 1.5813953488372093e-06,
58
+ "loss": 13.05435791015625,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.07459207459207459,
63
+ "grad_norm": 205.08326721191406,
64
+ "learning_rate": 1.8139534883720933e-06,
65
+ "loss": 12.770874786376954,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.08391608391608392,
70
+ "grad_norm": 170.5838623046875,
71
+ "learning_rate": 2.0465116279069768e-06,
72
+ "loss": 12.280790710449219,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.09324009324009325,
77
+ "grad_norm": 96.90670776367188,
78
+ "learning_rate": 2.2790697674418607e-06,
79
+ "loss": 11.730733489990234,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.09324009324009325,
84
+ "eval_com_accuracy": 0.2,
85
+ "eval_rew_accuracy": 0.276,
86
+ "step": 50
87
+ },
88
+ {
89
+ "epoch": 0.10256410256410256,
90
+ "grad_norm": 61.14415740966797,
91
+ "learning_rate": 2.5116279069767446e-06,
92
+ "loss": 11.25308609008789,
93
+ "step": 55
94
+ },
95
+ {
96
+ "epoch": 0.11188811188811189,
97
+ "grad_norm": 56.027095794677734,
98
+ "learning_rate": 2.744186046511628e-06,
99
+ "loss": 11.197045135498048,
100
+ "step": 60
101
+ },
102
+ {
103
+ "epoch": 0.12121212121212122,
104
+ "grad_norm": 46.54409408569336,
105
+ "learning_rate": 2.9767441860465116e-06,
106
+ "loss": 10.874276733398437,
107
+ "step": 65
108
+ },
109
+ {
110
+ "epoch": 0.13053613053613053,
111
+ "grad_norm": 40.62468719482422,
112
+ "learning_rate": 3.2093023255813956e-06,
113
+ "loss": 10.69852294921875,
114
+ "step": 70
115
+ },
116
+ {
117
+ "epoch": 0.13986013986013987,
118
+ "grad_norm": 37.44975662231445,
119
+ "learning_rate": 3.4418604651162795e-06,
120
+ "loss": 10.560739135742187,
121
+ "step": 75
122
+ },
123
+ {
124
+ "epoch": 0.14918414918414918,
125
+ "grad_norm": 32.19042205810547,
126
+ "learning_rate": 3.674418604651163e-06,
127
+ "loss": 10.408053588867187,
128
+ "step": 80
129
+ },
130
+ {
131
+ "epoch": 0.1585081585081585,
132
+ "grad_norm": 27.208942413330078,
133
+ "learning_rate": 3.906976744186047e-06,
134
+ "loss": 10.108213806152344,
135
+ "step": 85
136
+ },
137
+ {
138
+ "epoch": 0.16783216783216784,
139
+ "grad_norm": 24.76529312133789,
140
+ "learning_rate": 4.1395348837209304e-06,
141
+ "loss": 9.929393005371093,
142
+ "step": 90
143
+ },
144
+ {
145
+ "epoch": 0.17715617715617715,
146
+ "grad_norm": 23.917495727539062,
147
+ "learning_rate": 4.372093023255815e-06,
148
+ "loss": 9.677659606933593,
149
+ "step": 95
150
+ },
151
+ {
152
+ "epoch": 0.1864801864801865,
153
+ "grad_norm": 22.98892593383789,
154
+ "learning_rate": 4.604651162790698e-06,
155
+ "loss": 9.481817626953125,
156
+ "step": 100
157
+ },
158
+ {
159
+ "epoch": 0.1864801864801865,
160
+ "eval_com_accuracy": 0.176,
161
+ "eval_rew_accuracy": 0.264,
162
+ "step": 100
163
+ },
164
+ {
165
+ "epoch": 0.1958041958041958,
166
+ "grad_norm": 25.177200317382812,
167
+ "learning_rate": 4.837209302325582e-06,
168
+ "loss": 9.42150650024414,
169
+ "step": 105
170
+ },
171
+ {
172
+ "epoch": 0.20512820512820512,
173
+ "grad_norm": 18.95603370666504,
174
+ "learning_rate": 5.069767441860466e-06,
175
+ "loss": 9.267645263671875,
176
+ "step": 110
177
+ },
178
+ {
179
+ "epoch": 0.21445221445221446,
180
+ "grad_norm": 22.155452728271484,
181
+ "learning_rate": 5.302325581395349e-06,
182
+ "loss": 9.06854248046875,
183
+ "step": 115
184
+ },
185
+ {
186
+ "epoch": 0.22377622377622378,
187
+ "grad_norm": 20.26909065246582,
188
+ "learning_rate": 5.534883720930233e-06,
189
+ "loss": 9.045303344726562,
190
+ "step": 120
191
+ },
192
+ {
193
+ "epoch": 0.2331002331002331,
194
+ "grad_norm": 26.49457359313965,
195
+ "learning_rate": 5.7674418604651175e-06,
196
+ "loss": 8.91327362060547,
197
+ "step": 125
198
+ },
199
+ {
200
+ "epoch": 0.24242424242424243,
201
+ "grad_norm": 19.886178970336914,
202
+ "learning_rate": 6e-06,
203
+ "loss": 8.950289154052735,
204
+ "step": 130
205
+ },
206
+ {
207
+ "epoch": 0.2517482517482518,
208
+ "grad_norm": 18.22088050842285,
209
+ "learning_rate": 6.2325581395348845e-06,
210
+ "loss": 8.710862731933593,
211
+ "step": 135
212
+ },
213
+ {
214
+ "epoch": 0.26107226107226106,
215
+ "grad_norm": 21.09984016418457,
216
+ "learning_rate": 6.465116279069767e-06,
217
+ "loss": 8.762718200683594,
218
+ "step": 140
219
+ },
220
+ {
221
+ "epoch": 0.2703962703962704,
222
+ "grad_norm": 17.96813201904297,
223
+ "learning_rate": 6.6976744186046515e-06,
224
+ "loss": 8.533232116699219,
225
+ "step": 145
226
+ },
227
+ {
228
+ "epoch": 0.27972027972027974,
229
+ "grad_norm": 20.52909278869629,
230
+ "learning_rate": 6.930232558139536e-06,
231
+ "loss": 8.279258728027344,
232
+ "step": 150
233
+ },
234
+ {
235
+ "epoch": 0.27972027972027974,
236
+ "eval_com_accuracy": 0.152,
237
+ "eval_rew_accuracy": 0.252,
238
+ "step": 150
239
+ },
240
+ {
241
+ "epoch": 0.289044289044289,
242
+ "grad_norm": 19.475040435791016,
243
+ "learning_rate": 7.1627906976744185e-06,
244
+ "loss": 8.369435882568359,
245
+ "step": 155
246
+ },
247
+ {
248
+ "epoch": 0.29836829836829837,
249
+ "grad_norm": 16.741973876953125,
250
+ "learning_rate": 7.395348837209303e-06,
251
+ "loss": 8.280664825439453,
252
+ "step": 160
253
+ },
254
+ {
255
+ "epoch": 0.3076923076923077,
256
+ "grad_norm": 19.79235076904297,
257
+ "learning_rate": 7.627906976744187e-06,
258
+ "loss": 8.200827026367188,
259
+ "step": 165
260
+ },
261
+ {
262
+ "epoch": 0.317016317016317,
263
+ "grad_norm": 32.991554260253906,
264
+ "learning_rate": 7.86046511627907e-06,
265
+ "loss": 7.973581695556641,
266
+ "step": 170
267
+ },
268
+ {
269
+ "epoch": 0.32634032634032634,
270
+ "grad_norm": 17.949445724487305,
271
+ "learning_rate": 8.093023255813955e-06,
272
+ "loss": 8.141377258300782,
273
+ "step": 175
274
+ },
275
+ {
276
+ "epoch": 0.3356643356643357,
277
+ "grad_norm": 16.19559097290039,
278
+ "learning_rate": 8.325581395348837e-06,
279
+ "loss": 7.837094116210937,
280
+ "step": 180
281
+ },
282
+ {
283
+ "epoch": 0.34498834498834496,
284
+ "grad_norm": 23.260622024536133,
285
+ "learning_rate": 8.558139534883722e-06,
286
+ "loss": 7.763467407226562,
287
+ "step": 185
288
+ },
289
+ {
290
+ "epoch": 0.3543123543123543,
291
+ "grad_norm": 24.858335494995117,
292
+ "learning_rate": 8.790697674418606e-06,
293
+ "loss": 7.886874389648438,
294
+ "step": 190
295
+ },
296
+ {
297
+ "epoch": 0.36363636363636365,
298
+ "grad_norm": 18.59360122680664,
299
+ "learning_rate": 9.023255813953489e-06,
300
+ "loss": 7.7624969482421875,
301
+ "step": 195
302
+ },
303
+ {
304
+ "epoch": 0.372960372960373,
305
+ "grad_norm": 18.056495666503906,
306
+ "learning_rate": 9.255813953488373e-06,
307
+ "loss": 7.4621437072753904,
308
+ "step": 200
309
+ },
310
+ {
311
+ "epoch": 0.372960372960373,
312
+ "eval_com_accuracy": 0.144,
313
+ "eval_rew_accuracy": 0.332,
314
+ "step": 200
315
+ },
316
+ {
317
+ "epoch": 0.3822843822843823,
318
+ "grad_norm": 16.496261596679688,
319
+ "learning_rate": 9.488372093023258e-06,
320
+ "loss": 7.526261901855468,
321
+ "step": 205
322
+ },
323
+ {
324
+ "epoch": 0.3916083916083916,
325
+ "grad_norm": 16.77888298034668,
326
+ "learning_rate": 9.72093023255814e-06,
327
+ "loss": 7.624967193603515,
328
+ "step": 210
329
+ },
330
+ {
331
+ "epoch": 0.40093240093240096,
332
+ "grad_norm": 17.096778869628906,
333
+ "learning_rate": 9.953488372093025e-06,
334
+ "loss": 7.337849426269531,
335
+ "step": 215
336
+ },
337
+ {
338
+ "epoch": 0.41025641025641024,
339
+ "grad_norm": 18.3544979095459,
340
+ "learning_rate": 9.999894343918674e-06,
341
+ "loss": 7.354197692871094,
342
+ "step": 220
343
+ },
344
+ {
345
+ "epoch": 0.4195804195804196,
346
+ "grad_norm": 15.287137985229492,
347
+ "learning_rate": 9.999465123741172e-06,
348
+ "loss": 7.085916137695312,
349
+ "step": 225
350
+ },
351
+ {
352
+ "epoch": 0.4289044289044289,
353
+ "grad_norm": 17.03432273864746,
354
+ "learning_rate": 9.998705764284132e-06,
355
+ "loss": 7.059596252441406,
356
+ "step": 230
357
+ },
358
+ {
359
+ "epoch": 0.4382284382284382,
360
+ "grad_norm": 15.470928192138672,
361
+ "learning_rate": 9.99761631569179e-06,
362
+ "loss": 7.118296813964844,
363
+ "step": 235
364
+ },
365
+ {
366
+ "epoch": 0.44755244755244755,
367
+ "grad_norm": 15.732117652893066,
368
+ "learning_rate": 9.9961968499058e-06,
369
+ "loss": 6.981436157226563,
370
+ "step": 240
371
+ },
372
+ {
373
+ "epoch": 0.4568764568764569,
374
+ "grad_norm": 20.92630958557129,
375
+ "learning_rate": 9.994447460660473e-06,
376
+ "loss": 6.96953125,
377
+ "step": 245
378
+ },
379
+ {
380
+ "epoch": 0.4662004662004662,
381
+ "grad_norm": 14.848095893859863,
382
+ "learning_rate": 9.992368263476585e-06,
383
+ "loss": 6.831211090087891,
384
+ "step": 250
385
+ },
386
+ {
387
+ "epoch": 0.4662004662004662,
388
+ "eval_com_accuracy": 0.132,
389
+ "eval_rew_accuracy": 0.312,
390
+ "step": 250
391
+ },
392
+ {
393
+ "epoch": 0.4755244755244755,
394
+ "grad_norm": 18.59755516052246,
395
+ "learning_rate": 9.989959395653756e-06,
396
+ "loss": 6.873024749755859,
397
+ "step": 255
398
+ },
399
+ {
400
+ "epoch": 0.48484848484848486,
401
+ "grad_norm": 15.705364227294922,
402
+ "learning_rate": 9.98722101626138e-06,
403
+ "loss": 6.633563232421875,
404
+ "step": 260
405
+ },
406
+ {
407
+ "epoch": 0.49417249417249415,
408
+ "grad_norm": 39.2294807434082,
409
+ "learning_rate": 9.984153306128124e-06,
410
+ "loss": 6.63948974609375,
411
+ "step": 265
412
+ },
413
+ {
414
+ "epoch": 0.5034965034965035,
415
+ "grad_norm": 13.209358215332031,
416
+ "learning_rate": 9.980756467829977e-06,
417
+ "loss": 6.688297271728516,
418
+ "step": 270
419
+ },
420
+ {
421
+ "epoch": 0.5128205128205128,
422
+ "grad_norm": 14.645393371582031,
423
+ "learning_rate": 9.977030725676887e-06,
424
+ "loss": 6.4885505676269535,
425
+ "step": 275
426
+ },
427
+ {
428
+ "epoch": 0.5221445221445221,
429
+ "grad_norm": 17.008819580078125,
430
+ "learning_rate": 9.972976325697938e-06,
431
+ "loss": 6.78935546875,
432
+ "step": 280
433
+ },
434
+ {
435
+ "epoch": 0.5314685314685315,
436
+ "grad_norm": 16.029518127441406,
437
+ "learning_rate": 9.96859353562511e-06,
438
+ "loss": 6.681609344482422,
439
+ "step": 285
440
+ },
441
+ {
442
+ "epoch": 0.5407925407925408,
443
+ "grad_norm": 13.878348350524902,
444
+ "learning_rate": 9.963882644875594e-06,
445
+ "loss": 6.528868103027344,
446
+ "step": 290
447
+ },
448
+ {
449
+ "epoch": 0.5501165501165501,
450
+ "grad_norm": 13.996464729309082,
451
+ "learning_rate": 9.958843964532683e-06,
452
+ "loss": 6.431344604492187,
453
+ "step": 295
454
+ },
455
+ {
456
+ "epoch": 0.5594405594405595,
457
+ "grad_norm": 15.72003173828125,
458
+ "learning_rate": 9.953477827325229e-06,
459
+ "loss": 6.5927978515625,
460
+ "step": 300
461
+ },
462
+ {
463
+ "epoch": 0.5594405594405595,
464
+ "eval_com_accuracy": 0.148,
465
+ "eval_rew_accuracy": 0.368,
466
+ "step": 300
467
+ },
468
+ {
469
+ "epoch": 0.5687645687645687,
470
+ "grad_norm": 16.416725158691406,
471
+ "learning_rate": 9.947784587605678e-06,
472
+ "loss": 6.411885833740234,
473
+ "step": 305
474
+ },
475
+ {
476
+ "epoch": 0.578088578088578,
477
+ "grad_norm": 14.880790710449219,
478
+ "learning_rate": 9.941764621326655e-06,
479
+ "loss": 6.5298927307128904,
480
+ "step": 310
481
+ },
482
+ {
483
+ "epoch": 0.5874125874125874,
484
+ "grad_norm": 17.828296661376953,
485
+ "learning_rate": 9.935418326016153e-06,
486
+ "loss": 6.045618057250977,
487
+ "step": 315
488
+ },
489
+ {
490
+ "epoch": 0.5967365967365967,
491
+ "grad_norm": 13.30245590209961,
492
+ "learning_rate": 9.928746120751275e-06,
493
+ "loss": 6.1650840759277346,
494
+ "step": 320
495
+ },
496
+ {
497
+ "epoch": 0.6060606060606061,
498
+ "grad_norm": 13.527432441711426,
499
+ "learning_rate": 9.921748446130564e-06,
500
+ "loss": 6.349945831298828,
501
+ "step": 325
502
+ },
503
+ {
504
+ "epoch": 0.6153846153846154,
505
+ "grad_norm": 14.491817474365234,
506
+ "learning_rate": 9.9144257642449e-06,
507
+ "loss": 6.232943725585938,
508
+ "step": 330
509
+ },
510
+ {
511
+ "epoch": 0.6247086247086248,
512
+ "grad_norm": 15.7533597946167,
513
+ "learning_rate": 9.906778558647e-06,
514
+ "loss": 6.564260864257813,
515
+ "step": 335
516
+ },
517
+ {
518
+ "epoch": 0.634032634032634,
519
+ "grad_norm": 16.538602828979492,
520
+ "learning_rate": 9.898807334319471e-06,
521
+ "loss": 6.122506332397461,
522
+ "step": 340
523
+ },
524
+ {
525
+ "epoch": 0.6433566433566433,
526
+ "grad_norm": 16.459688186645508,
527
+ "learning_rate": 9.890512617641474e-06,
528
+ "loss": 6.332431030273438,
529
+ "step": 345
530
+ },
531
+ {
532
+ "epoch": 0.6526806526806527,
533
+ "grad_norm": 14.879058837890625,
534
+ "learning_rate": 9.881894956353963e-06,
535
+ "loss": 6.118003082275391,
536
+ "step": 350
537
+ },
538
+ {
539
+ "epoch": 0.6526806526806527,
540
+ "eval_com_accuracy": 0.164,
541
+ "eval_rew_accuracy": 0.364,
542
+ "step": 350
543
+ },
544
+ {
545
+ "epoch": 0.662004662004662,
546
+ "grad_norm": 16.02516746520996,
547
+ "learning_rate": 9.87295491952351e-06,
548
+ "loss": 6.241584014892578,
549
+ "step": 355
550
+ },
551
+ {
552
+ "epoch": 0.6713286713286714,
553
+ "grad_norm": 14.9837646484375,
554
+ "learning_rate": 9.863693097504733e-06,
555
+ "loss": 6.083467864990235,
556
+ "step": 360
557
+ },
558
+ {
559
+ "epoch": 0.6806526806526807,
560
+ "grad_norm": 14.138517379760742,
561
+ "learning_rate": 9.854110101901308e-06,
562
+ "loss": 6.143560791015625,
563
+ "step": 365
564
+ },
565
+ {
566
+ "epoch": 0.6899766899766899,
567
+ "grad_norm": 12.696243286132812,
568
+ "learning_rate": 9.844206565525585e-06,
569
+ "loss": 6.061418914794922,
570
+ "step": 370
571
+ },
572
+ {
573
+ "epoch": 0.6993006993006993,
574
+ "grad_norm": 15.22846508026123,
575
+ "learning_rate": 9.833983142356792e-06,
576
+ "loss": 6.193332672119141,
577
+ "step": 375
578
+ },
579
+ {
580
+ "epoch": 0.7086247086247086,
581
+ "grad_norm": 15.284857749938965,
582
+ "learning_rate": 9.823440507497863e-06,
583
+ "loss": 6.0868377685546875,
584
+ "step": 380
585
+ },
586
+ {
587
+ "epoch": 0.717948717948718,
588
+ "grad_norm": 14.117541313171387,
589
+ "learning_rate": 9.812579357130848e-06,
590
+ "loss": 6.289948272705078,
591
+ "step": 385
592
+ },
593
+ {
594
+ "epoch": 0.7272727272727273,
595
+ "grad_norm": 12.648367881774902,
596
+ "learning_rate": 9.801400408470943e-06,
597
+ "loss": 6.194795227050781,
598
+ "step": 390
599
+ },
600
+ {
601
+ "epoch": 0.7365967365967366,
602
+ "grad_norm": 12.394021034240723,
603
+ "learning_rate": 9.789904399719124e-06,
604
+ "loss": 6.031880950927734,
605
+ "step": 395
606
+ },
607
+ {
608
+ "epoch": 0.745920745920746,
609
+ "grad_norm": 15.566425323486328,
610
+ "learning_rate": 9.778092090013416e-06,
611
+ "loss": 6.0966644287109375,
612
+ "step": 400
613
+ },
614
+ {
615
+ "epoch": 0.745920745920746,
616
+ "eval_com_accuracy": 0.184,
617
+ "eval_rew_accuracy": 0.364,
618
+ "step": 400
619
+ },
620
+ {
621
+ "epoch": 0.7552447552447552,
622
+ "grad_norm": 14.885455131530762,
623
+ "learning_rate": 9.76596425937874e-06,
624
+ "loss": 6.476510620117187,
625
+ "step": 405
626
+ },
627
+ {
628
+ "epoch": 0.7645687645687645,
629
+ "grad_norm": 16.627117156982422,
630
+ "learning_rate": 9.753521708675426e-06,
631
+ "loss": 5.9605262756347654,
632
+ "step": 410
633
+ },
634
+ {
635
+ "epoch": 0.7738927738927739,
636
+ "grad_norm": 14.517923355102539,
637
+ "learning_rate": 9.740765259546312e-06,
638
+ "loss": 6.1104694366455075,
639
+ "step": 415
640
+ },
641
+ {
642
+ "epoch": 0.7832167832167832,
643
+ "grad_norm": 12.007637977600098,
644
+ "learning_rate": 9.727695754362498e-06,
645
+ "loss": 5.964785766601563,
646
+ "step": 420
647
+ },
648
+ {
649
+ "epoch": 0.7925407925407926,
650
+ "grad_norm": 16.17314338684082,
651
+ "learning_rate": 9.714314056167711e-06,
652
+ "loss": 5.976337432861328,
653
+ "step": 425
654
+ },
655
+ {
656
+ "epoch": 0.8018648018648019,
657
+ "grad_norm": 13.246196746826172,
658
+ "learning_rate": 9.700621048621322e-06,
659
+ "loss": 5.936331939697266,
660
+ "step": 430
661
+ },
662
+ {
663
+ "epoch": 0.8111888111888111,
664
+ "grad_norm": 15.030324935913086,
665
+ "learning_rate": 9.686617635939988e-06,
666
+ "loss": 6.209032821655273,
667
+ "step": 435
668
+ },
669
+ {
670
+ "epoch": 0.8205128205128205,
671
+ "grad_norm": 13.853086471557617,
672
+ "learning_rate": 9.672304742837945e-06,
673
+ "loss": 5.985638427734375,
674
+ "step": 440
675
+ },
676
+ {
677
+ "epoch": 0.8298368298368298,
678
+ "grad_norm": 13.534188270568848,
679
+ "learning_rate": 9.657683314465948e-06,
680
+ "loss": 5.7971649169921875,
681
+ "step": 445
682
+ },
683
+ {
684
+ "epoch": 0.8391608391608392,
685
+ "grad_norm": 26.1879825592041,
686
+ "learning_rate": 9.642754316348846e-06,
687
+ "loss": 5.949985504150391,
688
+ "step": 450
689
+ },
690
+ {
691
+ "epoch": 0.8391608391608392,
692
+ "eval_com_accuracy": 0.176,
693
+ "eval_rew_accuracy": 0.34,
694
+ "step": 450
695
+ },
696
+ {
697
+ "epoch": 0.8484848484848485,
698
+ "grad_norm": 16.848834991455078,
699
+ "learning_rate": 9.627518734321837e-06,
700
+ "loss": 6.1193115234375,
701
+ "step": 455
702
+ },
703
+ {
704
+ "epoch": 0.8578088578088578,
705
+ "grad_norm": 30.765796661376953,
706
+ "learning_rate": 9.61197757446536e-06,
707
+ "loss": 5.74780158996582,
708
+ "step": 460
709
+ },
710
+ {
711
+ "epoch": 0.8671328671328671,
712
+ "grad_norm": 13.27775764465332,
713
+ "learning_rate": 9.596131863038664e-06,
714
+ "loss": 5.994970703125,
715
+ "step": 465
716
+ },
717
+ {
718
+ "epoch": 0.8764568764568764,
719
+ "grad_norm": 14.923792839050293,
720
+ "learning_rate": 9.579982646412039e-06,
721
+ "loss": 5.810473251342773,
722
+ "step": 470
723
+ },
724
+ {
725
+ "epoch": 0.8857808857808858,
726
+ "grad_norm": 14.351722717285156,
727
+ "learning_rate": 9.563530990997707e-06,
728
+ "loss": 6.09692268371582,
729
+ "step": 475
730
+ },
731
+ {
732
+ "epoch": 0.8951048951048951,
733
+ "grad_norm": 11.83583927154541,
734
+ "learning_rate": 9.546777983179421e-06,
735
+ "loss": 5.867227935791016,
736
+ "step": 480
737
+ },
738
+ {
739
+ "epoch": 0.9044289044289044,
740
+ "grad_norm": 19.415884017944336,
741
+ "learning_rate": 9.529724729240712e-06,
742
+ "loss": 5.834615707397461,
743
+ "step": 485
744
+ },
745
+ {
746
+ "epoch": 0.9137529137529138,
747
+ "grad_norm": 12.147261619567871,
748
+ "learning_rate": 9.512372355291838e-06,
749
+ "loss": 6.039286041259766,
750
+ "step": 490
751
+ },
752
+ {
753
+ "epoch": 0.9230769230769231,
754
+ "grad_norm": 12.706372261047363,
755
+ "learning_rate": 9.494722007195427e-06,
756
+ "loss": 6.06304702758789,
757
+ "step": 495
758
+ },
759
+ {
760
+ "epoch": 0.9324009324009324,
761
+ "grad_norm": 12.642041206359863,
762
+ "learning_rate": 9.476774850490803e-06,
763
+ "loss": 5.9729866027832035,
764
+ "step": 500
765
+ },
766
+ {
767
+ "epoch": 0.9324009324009324,
768
+ "eval_com_accuracy": 0.204,
769
+ "eval_rew_accuracy": 0.328,
770
+ "step": 500
771
+ },
772
+ {
773
+ "epoch": 0.9417249417249417,
774
+ "grad_norm": 12.66169548034668,
775
+ "learning_rate": 9.458532070317021e-06,
776
+ "loss": 5.8281097412109375,
777
+ "step": 505
778
+ },
779
+ {
780
+ "epoch": 0.951048951048951,
781
+ "grad_norm": 13.191854476928711,
782
+ "learning_rate": 9.439994871334614e-06,
783
+ "loss": 6.183546447753907,
784
+ "step": 510
785
+ },
786
+ {
787
+ "epoch": 0.9603729603729604,
788
+ "grad_norm": 12.52676010131836,
789
+ "learning_rate": 9.421164477646031e-06,
790
+ "loss": 5.785601043701172,
791
+ "step": 515
792
+ },
793
+ {
794
+ "epoch": 0.9696969696969697,
795
+ "grad_norm": 13.225418090820312,
796
+ "learning_rate": 9.402042132714817e-06,
797
+ "loss": 5.784825134277344,
798
+ "step": 520
799
+ },
800
+ {
801
+ "epoch": 0.9790209790209791,
802
+ "grad_norm": 12.035611152648926,
803
+ "learning_rate": 9.382629099283486e-06,
804
+ "loss": 5.9122272491455075,
805
+ "step": 525
806
+ },
807
+ {
808
+ "epoch": 0.9883449883449883,
809
+ "grad_norm": 12.166351318359375,
810
+ "learning_rate": 9.362926659290149e-06,
811
+ "loss": 5.790053939819336,
812
+ "step": 530
813
+ },
814
+ {
815
+ "epoch": 0.9976689976689976,
816
+ "grad_norm": 13.22154426574707,
817
+ "learning_rate": 9.342936113783855e-06,
818
+ "loss": 5.745006561279297,
819
+ "step": 535
820
+ },
821
+ {
822
+ "epoch": 1.0055944055944055,
823
+ "grad_norm": 13.12752628326416,
824
+ "learning_rate": 9.32265878283868e-06,
825
+ "loss": 5.1531005859375,
826
+ "step": 540
827
+ },
828
+ {
829
+ "epoch": 1.014918414918415,
830
+ "grad_norm": 15.964373588562012,
831
+ "learning_rate": 9.302096005466547e-06,
832
+ "loss": 5.7917236328125,
833
+ "step": 545
834
+ },
835
+ {
836
+ "epoch": 1.0242424242424242,
837
+ "grad_norm": 18.454797744750977,
838
+ "learning_rate": 9.281249139528816e-06,
839
+ "loss": 5.967070007324219,
840
+ "step": 550
841
+ },
842
+ {
843
+ "epoch": 1.0242424242424242,
844
+ "eval_com_accuracy": 0.212,
845
+ "eval_rew_accuracy": 0.352,
846
+ "step": 550
847
+ },
848
+ {
849
+ "epoch": 1.0335664335664336,
850
+ "grad_norm": 15.802419662475586,
851
+ "learning_rate": 9.260119561646614e-06,
852
+ "loss": 6.093529129028321,
853
+ "step": 555
854
+ },
855
+ {
856
+ "epoch": 1.0428904428904429,
857
+ "grad_norm": 21.95537757873535,
858
+ "learning_rate": 9.238708667109924e-06,
859
+ "loss": 5.489861297607422,
860
+ "step": 560
861
+ },
862
+ {
863
+ "epoch": 1.0522144522144523,
864
+ "grad_norm": 13.373199462890625,
865
+ "learning_rate": 9.217017869785453e-06,
866
+ "loss": 5.871435928344726,
867
+ "step": 565
868
+ },
869
+ {
870
+ "epoch": 1.0615384615384615,
871
+ "grad_norm": 13.36340618133545,
872
+ "learning_rate": 9.19504860202327e-06,
873
+ "loss": 5.805611038208008,
874
+ "step": 570
875
+ },
876
+ {
877
+ "epoch": 1.0708624708624708,
878
+ "grad_norm": 14.099553108215332,
879
+ "learning_rate": 9.172802314562214e-06,
880
+ "loss": 5.600634765625,
881
+ "step": 575
882
+ },
883
+ {
884
+ "epoch": 1.0801864801864802,
885
+ "grad_norm": 15.012040138244629,
886
+ "learning_rate": 9.150280476434098e-06,
887
+ "loss": 5.793732452392578,
888
+ "step": 580
889
+ },
890
+ {
891
+ "epoch": 1.0895104895104895,
892
+ "grad_norm": 15.98738956451416,
893
+ "learning_rate": 9.127484574866699e-06,
894
+ "loss": 5.8642620086669925,
895
+ "step": 585
896
+ },
897
+ {
898
+ "epoch": 1.098834498834499,
899
+ "grad_norm": 13.785572052001953,
900
+ "learning_rate": 9.104416115185557e-06,
901
+ "loss": 5.770995330810547,
902
+ "step": 590
903
+ },
904
+ {
905
+ "epoch": 1.1081585081585081,
906
+ "grad_norm": 12.145087242126465,
907
+ "learning_rate": 9.08107662071456e-06,
908
+ "loss": 5.850731277465821,
909
+ "step": 595
910
+ },
911
+ {
912
+ "epoch": 1.1174825174825176,
913
+ "grad_norm": 13.681862831115723,
914
+ "learning_rate": 9.057467632675357e-06,
915
+ "loss": 5.782034301757813,
916
+ "step": 600
917
+ },
918
+ {
919
+ "epoch": 1.1174825174825176,
920
+ "eval_com_accuracy": 0.22,
921
+ "eval_rew_accuracy": 0.348,
922
+ "step": 600
923
+ },
924
+ {
925
+ "epoch": 1.1268065268065268,
926
+ "grad_norm": 13.870027542114258,
927
+ "learning_rate": 9.033590710085584e-06,
928
+ "loss": 5.723427963256836,
929
+ "step": 605
930
+ },
931
+ {
932
+ "epoch": 1.136130536130536,
933
+ "grad_norm": 16.20020294189453,
934
+ "learning_rate": 9.00944742965592e-06,
935
+ "loss": 5.953633117675781,
936
+ "step": 610
937
+ },
938
+ {
939
+ "epoch": 1.1454545454545455,
940
+ "grad_norm": 15.48993968963623,
941
+ "learning_rate": 8.985039385685952e-06,
942
+ "loss": 5.809123992919922,
943
+ "step": 615
944
+ },
945
+ {
946
+ "epoch": 1.1547785547785547,
947
+ "grad_norm": 13.686211585998535,
948
+ "learning_rate": 8.960368189958913e-06,
949
+ "loss": 5.813122177124024,
950
+ "step": 620
951
+ },
952
+ {
953
+ "epoch": 1.1641025641025642,
954
+ "grad_norm": 13.733199119567871,
955
+ "learning_rate": 8.935435471635238e-06,
956
+ "loss": 5.6748512268066404,
957
+ "step": 625
958
+ },
959
+ {
960
+ "epoch": 1.1734265734265734,
961
+ "grad_norm": 12.450380325317383,
962
+ "learning_rate": 8.91024287714499e-06,
963
+ "loss": 5.6834667205810545,
964
+ "step": 630
965
+ },
966
+ {
967
+ "epoch": 1.1827505827505829,
968
+ "grad_norm": 14.111934661865234,
969
+ "learning_rate": 8.884792070079128e-06,
970
+ "loss": 5.680038833618164,
971
+ "step": 635
972
+ },
973
+ {
974
+ "epoch": 1.192074592074592,
975
+ "grad_norm": 13.175325393676758,
976
+ "learning_rate": 8.859084731079664e-06,
977
+ "loss": 5.445759201049805,
978
+ "step": 640
979
+ },
980
+ {
981
+ "epoch": 1.2013986013986013,
982
+ "grad_norm": 14.951041221618652,
983
+ "learning_rate": 8.833122557728667e-06,
984
+ "loss": 5.673246765136719,
985
+ "step": 645
986
+ },
987
+ {
988
+ "epoch": 1.2107226107226108,
989
+ "grad_norm": 12.364238739013672,
990
+ "learning_rate": 8.806907264436183e-06,
991
+ "loss": 5.234909439086914,
992
+ "step": 650
993
+ },
994
+ {
995
+ "epoch": 1.2107226107226108,
996
+ "eval_com_accuracy": 0.224,
997
+ "eval_rew_accuracy": 0.348,
998
+ "step": 650
999
+ },
1000
+ {
1001
+ "epoch": 1.22004662004662,
1002
+ "grad_norm": 13.065054893493652,
1003
+ "learning_rate": 8.780440582327005e-06,
1004
+ "loss": 5.442026519775391,
1005
+ "step": 655
1006
+ },
1007
+ {
1008
+ "epoch": 1.2293706293706295,
1009
+ "grad_norm": 13.872124671936035,
1010
+ "learning_rate": 8.75372425912637e-06,
1011
+ "loss": 5.736603546142578,
1012
+ "step": 660
1013
+ },
1014
+ {
1015
+ "epoch": 1.2386946386946387,
1016
+ "grad_norm": 13.677570343017578,
1017
+ "learning_rate": 8.726760059044542e-06,
1018
+ "loss": 5.951699447631836,
1019
+ "step": 665
1020
+ },
1021
+ {
1022
+ "epoch": 1.248018648018648,
1023
+ "grad_norm": 15.023405075073242,
1024
+ "learning_rate": 8.699549762660318e-06,
1025
+ "loss": 5.936520004272461,
1026
+ "step": 670
1027
+ },
1028
+ {
1029
+ "epoch": 1.2573426573426574,
1030
+ "grad_norm": 12.804817199707031,
1031
+ "learning_rate": 8.672095166803445e-06,
1032
+ "loss": 5.778074645996094,
1033
+ "step": 675
1034
+ },
1035
+ {
1036
+ "epoch": 1.2666666666666666,
1037
+ "grad_norm": 13.148968696594238,
1038
+ "learning_rate": 8.644398084435959e-06,
1039
+ "loss": 5.7417655944824215,
1040
+ "step": 680
1041
+ },
1042
+ {
1043
+ "epoch": 1.275990675990676,
1044
+ "grad_norm": 14.131410598754883,
1045
+ "learning_rate": 8.616460344532483e-06,
1046
+ "loss": 5.58878173828125,
1047
+ "step": 685
1048
+ },
1049
+ {
1050
+ "epoch": 1.2853146853146853,
1051
+ "grad_norm": 14.100456237792969,
1052
+ "learning_rate": 8.588283791959437e-06,
1053
+ "loss": 5.546084976196289,
1054
+ "step": 690
1055
+ },
1056
+ {
1057
+ "epoch": 1.2946386946386945,
1058
+ "grad_norm": 13.94593620300293,
1059
+ "learning_rate": 8.559870287353214e-06,
1060
+ "loss": 6.0555156707763675,
1061
+ "step": 695
1062
+ },
1063
+ {
1064
+ "epoch": 1.303962703962704,
1065
+ "grad_norm": 18.369823455810547,
1066
+ "learning_rate": 8.531221706997316e-06,
1067
+ "loss": 5.930012512207031,
1068
+ "step": 700
1069
+ },
1070
+ {
1071
+ "epoch": 1.303962703962704,
1072
+ "eval_com_accuracy": 0.24,
1073
+ "eval_rew_accuracy": 0.364,
1074
+ "step": 700
1075
+ },
1076
+ {
1077
+ "epoch": 1.3132867132867134,
1078
+ "grad_norm": 14.022618293762207,
1079
+ "learning_rate": 8.502339942698463e-06,
1080
+ "loss": 5.831372833251953,
1081
+ "step": 705
1082
+ },
1083
+ {
1084
+ "epoch": 1.3226107226107227,
1085
+ "grad_norm": 12.844898223876953,
1086
+ "learning_rate": 8.473226901661643e-06,
1087
+ "loss": 5.503532409667969,
1088
+ "step": 710
1089
+ },
1090
+ {
1091
+ "epoch": 1.3319347319347319,
1092
+ "grad_norm": 13.991181373596191,
1093
+ "learning_rate": 8.443884506364192e-06,
1094
+ "loss": 5.344602966308594,
1095
+ "step": 715
1096
+ },
1097
+ {
1098
+ "epoch": 1.3412587412587413,
1099
+ "grad_norm": 13.290801048278809,
1100
+ "learning_rate": 8.414314694428842e-06,
1101
+ "loss": 5.7142791748046875,
1102
+ "step": 720
1103
+ },
1104
+ {
1105
+ "epoch": 1.3505827505827506,
1106
+ "grad_norm": 13.986117362976074,
1107
+ "learning_rate": 8.384519418495755e-06,
1108
+ "loss": 5.509880065917969,
1109
+ "step": 725
1110
+ },
1111
+ {
1112
+ "epoch": 1.3599067599067598,
1113
+ "grad_norm": 17.483638763427734,
1114
+ "learning_rate": 8.354500646093592e-06,
1115
+ "loss": 5.769047546386719,
1116
+ "step": 730
1117
+ },
1118
+ {
1119
+ "epoch": 1.3692307692307693,
1120
+ "grad_norm": 12.383395195007324,
1121
+ "learning_rate": 8.324260359509594e-06,
1122
+ "loss": 5.693521881103516,
1123
+ "step": 735
1124
+ },
1125
+ {
1126
+ "epoch": 1.3785547785547785,
1127
+ "grad_norm": 12.225541114807129,
1128
+ "learning_rate": 8.29380055565866e-06,
1129
+ "loss": 5.618255233764648,
1130
+ "step": 740
1131
+ },
1132
+ {
1133
+ "epoch": 1.387878787878788,
1134
+ "grad_norm": 11.737737655639648,
1135
+ "learning_rate": 8.263123245951504e-06,
1136
+ "loss": 5.702220916748047,
1137
+ "step": 745
1138
+ },
1139
+ {
1140
+ "epoch": 1.3972027972027972,
1141
+ "grad_norm": 14.235527992248535,
1142
+ "learning_rate": 8.232230456161819e-06,
1143
+ "loss": 5.744013977050781,
1144
+ "step": 750
1145
+ },
1146
+ {
1147
+ "epoch": 1.3972027972027972,
1148
+ "eval_com_accuracy": 0.24,
1149
+ "eval_rew_accuracy": 0.368,
1150
+ "step": 750
1151
+ },
1152
+ {
1153
+ "epoch": 1.4065268065268066,
1154
+ "grad_norm": 12.433022499084473,
1155
+ "learning_rate": 8.201124226292505e-06,
1156
+ "loss": 5.6122283935546875,
1157
+ "step": 755
1158
+ },
1159
+ {
1160
+ "epoch": 1.4158508158508158,
1161
+ "grad_norm": 13.874029159545898,
1162
+ "learning_rate": 8.169806610440966e-06,
1163
+ "loss": 5.530184936523438,
1164
+ "step": 760
1165
+ },
1166
+ {
1167
+ "epoch": 1.425174825174825,
1168
+ "grad_norm": 12.640862464904785,
1169
+ "learning_rate": 8.138279676663458e-06,
1170
+ "loss": 5.602608489990234,
1171
+ "step": 765
1172
+ },
1173
+ {
1174
+ "epoch": 1.4344988344988345,
1175
+ "grad_norm": 13.672120094299316,
1176
+ "learning_rate": 8.106545506838533e-06,
1177
+ "loss": 5.971489715576172,
1178
+ "step": 770
1179
+ },
1180
+ {
1181
+ "epoch": 1.4438228438228438,
1182
+ "grad_norm": 12.973994255065918,
1183
+ "learning_rate": 8.074606196529554e-06,
1184
+ "loss": 5.967403411865234,
1185
+ "step": 775
1186
+ },
1187
+ {
1188
+ "epoch": 1.4531468531468532,
1189
+ "grad_norm": 12.31808090209961,
1190
+ "learning_rate": 8.042463854846325e-06,
1191
+ "loss": 5.71468505859375,
1192
+ "step": 780
1193
+ },
1194
+ {
1195
+ "epoch": 1.4624708624708624,
1196
+ "grad_norm": 12.416245460510254,
1197
+ "learning_rate": 8.010120604305806e-06,
1198
+ "loss": 5.836771392822266,
1199
+ "step": 785
1200
+ },
1201
+ {
1202
+ "epoch": 1.471794871794872,
1203
+ "grad_norm": 13.020674705505371,
1204
+ "learning_rate": 7.977578580691963e-06,
1205
+ "loss": 5.71131591796875,
1206
+ "step": 790
1207
+ },
1208
+ {
1209
+ "epoch": 1.4811188811188811,
1210
+ "grad_norm": 13.946771621704102,
1211
+ "learning_rate": 7.944839932914718e-06,
1212
+ "loss": 5.564648818969727,
1213
+ "step": 795
1214
+ },
1215
+ {
1216
+ "epoch": 1.4904428904428904,
1217
+ "grad_norm": 12.287398338317871,
1218
+ "learning_rate": 7.91190682286806e-06,
1219
+ "loss": 5.753592300415039,
1220
+ "step": 800
1221
+ },
1222
+ {
1223
+ "epoch": 1.4904428904428904,
1224
+ "eval_com_accuracy": 0.236,
1225
+ "eval_rew_accuracy": 0.384,
1226
+ "step": 800
1227
+ },
1228
+ {
1229
+ "epoch": 1.4997668997668998,
1230
+ "grad_norm": 20.467731475830078,
1231
+ "learning_rate": 7.878781425287277e-06,
1232
+ "loss": 5.64927978515625,
1233
+ "step": 805
1234
+ },
1235
+ {
1236
+ "epoch": 1.509090909090909,
1237
+ "grad_norm": 13.811100006103516,
1238
+ "learning_rate": 7.84546592760535e-06,
1239
+ "loss": 5.415856170654297,
1240
+ "step": 810
1241
+ },
1242
+ {
1243
+ "epoch": 1.5184149184149183,
1244
+ "grad_norm": 12.4107666015625,
1245
+ "learning_rate": 7.811962529808499e-06,
1246
+ "loss": 5.767454147338867,
1247
+ "step": 815
1248
+ },
1249
+ {
1250
+ "epoch": 1.5277389277389277,
1251
+ "grad_norm": 14.148603439331055,
1252
+ "learning_rate": 7.778273444290921e-06,
1253
+ "loss": 5.463053131103516,
1254
+ "step": 820
1255
+ },
1256
+ {
1257
+ "epoch": 1.5370629370629372,
1258
+ "grad_norm": 13.375722885131836,
1259
+ "learning_rate": 7.744400895708683e-06,
1260
+ "loss": 5.625373077392578,
1261
+ "step": 825
1262
+ },
1263
+ {
1264
+ "epoch": 1.5463869463869464,
1265
+ "grad_norm": 12.991719245910645,
1266
+ "learning_rate": 7.710347120832821e-06,
1267
+ "loss": 5.6271202087402346,
1268
+ "step": 830
1269
+ },
1270
+ {
1271
+ "epoch": 1.5557109557109556,
1272
+ "grad_norm": 12.906146049499512,
1273
+ "learning_rate": 7.676114368401635e-06,
1274
+ "loss": 5.5160057067871096,
1275
+ "step": 835
1276
+ },
1277
+ {
1278
+ "epoch": 1.565034965034965,
1279
+ "grad_norm": 12.344596862792969,
1280
+ "learning_rate": 7.641704898972194e-06,
1281
+ "loss": 5.506198120117188,
1282
+ "step": 840
1283
+ },
1284
+ {
1285
+ "epoch": 1.5743589743589743,
1286
+ "grad_norm": 13.285745620727539,
1287
+ "learning_rate": 7.607120984771058e-06,
1288
+ "loss": 5.7151634216308596,
1289
+ "step": 845
1290
+ },
1291
+ {
1292
+ "epoch": 1.5836829836829835,
1293
+ "grad_norm": 12.432035446166992,
1294
+ "learning_rate": 7.572364909544235e-06,
1295
+ "loss": 5.852275085449219,
1296
+ "step": 850
1297
+ },
1298
+ {
1299
+ "epoch": 1.5836829836829835,
1300
+ "eval_com_accuracy": 0.228,
1301
+ "eval_rew_accuracy": 0.332,
1302
+ "step": 850
1303
+ },
1304
+ {
1305
+ "epoch": 1.593006993006993,
1306
+ "grad_norm": 12.581634521484375,
1307
+ "learning_rate": 7.537438968406372e-06,
1308
+ "loss": 5.735688018798828,
1309
+ "step": 855
1310
+ },
1311
+ {
1312
+ "epoch": 1.6023310023310025,
1313
+ "grad_norm": 13.161237716674805,
1314
+ "learning_rate": 7.502345467689202e-06,
1315
+ "loss": 5.648350524902344,
1316
+ "step": 860
1317
+ },
1318
+ {
1319
+ "epoch": 1.6116550116550117,
1320
+ "grad_norm": 12.48270034790039,
1321
+ "learning_rate": 7.4670867247892346e-06,
1322
+ "loss": 5.635168075561523,
1323
+ "step": 865
1324
+ },
1325
+ {
1326
+ "epoch": 1.620979020979021,
1327
+ "grad_norm": 13.835477828979492,
1328
+ "learning_rate": 7.431665068014737e-06,
1329
+ "loss": 5.548571014404297,
1330
+ "step": 870
1331
+ },
1332
+ {
1333
+ "epoch": 1.6303030303030304,
1334
+ "grad_norm": 12.403617858886719,
1335
+ "learning_rate": 7.396082836431981e-06,
1336
+ "loss": 5.7486827850341795,
1337
+ "step": 875
1338
+ },
1339
+ {
1340
+ "epoch": 1.6396270396270396,
1341
+ "grad_norm": 13.730851173400879,
1342
+ "learning_rate": 7.3603423797107845e-06,
1343
+ "loss": 5.288154602050781,
1344
+ "step": 880
1345
+ },
1346
+ {
1347
+ "epoch": 1.6489510489510488,
1348
+ "grad_norm": 14.688888549804688,
1349
+ "learning_rate": 7.324446057969346e-06,
1350
+ "loss": 5.648311614990234,
1351
+ "step": 885
1352
+ },
1353
+ {
1354
+ "epoch": 1.6582750582750583,
1355
+ "grad_norm": 13.311734199523926,
1356
+ "learning_rate": 7.288396241618401e-06,
1357
+ "loss": 5.636775207519531,
1358
+ "step": 890
1359
+ },
1360
+ {
1361
+ "epoch": 1.6675990675990677,
1362
+ "grad_norm": 12.776606559753418,
1363
+ "learning_rate": 7.252195311204689e-06,
1364
+ "loss": 5.666929626464844,
1365
+ "step": 895
1366
+ },
1367
+ {
1368
+ "epoch": 1.676923076923077,
1369
+ "grad_norm": 14.130080223083496,
1370
+ "learning_rate": 7.215845657253755e-06,
1371
+ "loss": 5.534748840332031,
1372
+ "step": 900
1373
+ },
1374
+ {
1375
+ "epoch": 1.676923076923077,
1376
+ "eval_com_accuracy": 0.264,
1377
+ "eval_rew_accuracy": 0.364,
1378
+ "step": 900
1379
+ },
1380
+ {
1381
+ "epoch": 1.6862470862470862,
1382
+ "grad_norm": 14.159326553344727,
1383
+ "learning_rate": 7.1793496801120885e-06,
1384
+ "loss": 5.652375793457031,
1385
+ "step": 905
1386
+ },
1387
+ {
1388
+ "epoch": 1.6955710955710956,
1389
+ "grad_norm": 13.113655090332031,
1390
+ "learning_rate": 7.1427097897886225e-06,
1391
+ "loss": 5.383832168579102,
1392
+ "step": 910
1393
+ },
1394
+ {
1395
+ "epoch": 1.7048951048951049,
1396
+ "grad_norm": 14.203001022338867,
1397
+ "learning_rate": 7.105928405795584e-06,
1398
+ "loss": 5.6499076843261715,
1399
+ "step": 915
1400
+ },
1401
+ {
1402
+ "epoch": 1.714219114219114,
1403
+ "grad_norm": 12.1084623336792,
1404
+ "learning_rate": 7.069007956988718e-06,
1405
+ "loss": 5.560025787353515,
1406
+ "step": 920
1407
+ },
1408
+ {
1409
+ "epoch": 1.7235431235431236,
1410
+ "grad_norm": 13.819426536560059,
1411
+ "learning_rate": 7.031950881406913e-06,
1412
+ "loss": 5.535141372680664,
1413
+ "step": 925
1414
+ },
1415
+ {
1416
+ "epoch": 1.732867132867133,
1417
+ "grad_norm": 17.341110229492188,
1418
+ "learning_rate": 6.994759626111189e-06,
1419
+ "loss": 5.697111511230469,
1420
+ "step": 930
1421
+ },
1422
+ {
1423
+ "epoch": 1.7421911421911422,
1424
+ "grad_norm": 16.404672622680664,
1425
+ "learning_rate": 6.957436647023117e-06,
1426
+ "loss": 5.4155632019042965,
1427
+ "step": 935
1428
+ },
1429
+ {
1430
+ "epoch": 1.7515151515151515,
1431
+ "grad_norm": 13.115015029907227,
1432
+ "learning_rate": 6.919984408762632e-06,
1433
+ "loss": 5.758349990844726,
1434
+ "step": 940
1435
+ },
1436
+ {
1437
+ "epoch": 1.760839160839161,
1438
+ "grad_norm": 13.850481986999512,
1439
+ "learning_rate": 6.882405384485294e-06,
1440
+ "loss": 5.69927864074707,
1441
+ "step": 945
1442
+ },
1443
+ {
1444
+ "epoch": 1.7701631701631702,
1445
+ "grad_norm": 12.921819686889648,
1446
+ "learning_rate": 6.844702055718964e-06,
1447
+ "loss": 5.631483459472657,
1448
+ "step": 950
1449
+ },
1450
+ {
1451
+ "epoch": 1.7701631701631702,
1452
+ "eval_com_accuracy": 0.26,
1453
+ "eval_rew_accuracy": 0.352,
1454
+ "step": 950
1455
+ },
1456
+ {
1457
+ "epoch": 1.7794871794871794,
1458
+ "grad_norm": 13.401888847351074,
1459
+ "learning_rate": 6.806876912199945e-06,
1460
+ "loss": 5.824296569824218,
1461
+ "step": 955
1462
+ },
1463
+ {
1464
+ "epoch": 1.7888111888111888,
1465
+ "grad_norm": 13.481993675231934,
1466
+ "learning_rate": 6.768932451708557e-06,
1467
+ "loss": 5.752721786499023,
1468
+ "step": 960
1469
+ },
1470
+ {
1471
+ "epoch": 1.7981351981351983,
1472
+ "grad_norm": 14.022424697875977,
1473
+ "learning_rate": 6.730871179904218e-06,
1474
+ "loss": 5.453369522094727,
1475
+ "step": 965
1476
+ },
1477
+ {
1478
+ "epoch": 1.8074592074592073,
1479
+ "grad_norm": 13.432122230529785,
1480
+ "learning_rate": 6.692695610159966e-06,
1481
+ "loss": 5.664297103881836,
1482
+ "step": 970
1483
+ },
1484
+ {
1485
+ "epoch": 1.8167832167832167,
1486
+ "grad_norm": 14.292946815490723,
1487
+ "learning_rate": 6.6544082633964955e-06,
1488
+ "loss": 5.576699066162109,
1489
+ "step": 975
1490
+ },
1491
+ {
1492
+ "epoch": 1.8261072261072262,
1493
+ "grad_norm": 14.256867408752441,
1494
+ "learning_rate": 6.6160116679156874e-06,
1495
+ "loss": 5.551004791259766,
1496
+ "step": 980
1497
+ },
1498
+ {
1499
+ "epoch": 1.8354312354312354,
1500
+ "grad_norm": 14.11919116973877,
1501
+ "learning_rate": 6.577508359233653e-06,
1502
+ "loss": 5.580959320068359,
1503
+ "step": 985
1504
+ },
1505
+ {
1506
+ "epoch": 1.8447552447552447,
1507
+ "grad_norm": 14.006019592285156,
1508
+ "learning_rate": 6.538900879913301e-06,
1509
+ "loss": 5.443265533447265,
1510
+ "step": 990
1511
+ },
1512
+ {
1513
+ "epoch": 1.8540792540792541,
1514
+ "grad_norm": 11.976597785949707,
1515
+ "learning_rate": 6.500191779396439e-06,
1516
+ "loss": 5.410481643676758,
1517
+ "step": 995
1518
+ },
1519
+ {
1520
+ "epoch": 1.8634032634032636,
1521
+ "grad_norm": 14.439790725708008,
1522
+ "learning_rate": 6.461383613835427e-06,
1523
+ "loss": 5.3311511993408205,
1524
+ "step": 1000
1525
+ },
1526
+ {
1527
+ "epoch": 1.8634032634032636,
1528
+ "eval_com_accuracy": 0.24,
1529
+ "eval_rew_accuracy": 0.356,
1530
+ "step": 1000
1531
+ },
1532
+ {
1533
+ "epoch": 1.8727272727272726,
1534
+ "grad_norm": 15.29392147064209,
1535
+ "learning_rate": 6.4224789459243705e-06,
1536
+ "loss": 5.477576446533203,
1537
+ "step": 1005
1538
+ },
1539
+ {
1540
+ "epoch": 1.882051282051282,
1541
+ "grad_norm": 14.032716751098633,
1542
+ "learning_rate": 6.383480344729903e-06,
1543
+ "loss": 5.458187103271484,
1544
+ "step": 1010
1545
+ },
1546
+ {
1547
+ "epoch": 1.8913752913752915,
1548
+ "grad_norm": 11.861150741577148,
1549
+ "learning_rate": 6.344390385521534e-06,
1550
+ "loss": 5.806562423706055,
1551
+ "step": 1015
1552
+ },
1553
+ {
1554
+ "epoch": 1.9006993006993007,
1555
+ "grad_norm": 14.015438079833984,
1556
+ "learning_rate": 6.305211649601595e-06,
1557
+ "loss": 5.2158203125,
1558
+ "step": 1020
1559
+ },
1560
+ {
1561
+ "epoch": 1.91002331002331,
1562
+ "grad_norm": 15.672555923461914,
1563
+ "learning_rate": 6.265946724134782e-06,
1564
+ "loss": 5.469319915771484,
1565
+ "step": 1025
1566
+ },
1567
+ {
1568
+ "epoch": 1.9193473193473194,
1569
+ "grad_norm": 13.891338348388672,
1570
+ "learning_rate": 6.226598201977299e-06,
1571
+ "loss": 5.495826721191406,
1572
+ "step": 1030
1573
+ },
1574
+ {
1575
+ "epoch": 1.9286713286713286,
1576
+ "grad_norm": 12.441986083984375,
1577
+ "learning_rate": 6.187168681505666e-06,
1578
+ "loss": 5.466391372680664,
1579
+ "step": 1035
1580
+ },
1581
+ {
1582
+ "epoch": 1.9379953379953379,
1583
+ "grad_norm": 13.905447006225586,
1584
+ "learning_rate": 6.1476607664451105e-06,
1585
+ "loss": 5.558423233032227,
1586
+ "step": 1040
1587
+ },
1588
+ {
1589
+ "epoch": 1.9473193473193473,
1590
+ "grad_norm": 14.817802429199219,
1591
+ "learning_rate": 6.1080770656976444e-06,
1592
+ "loss": 5.50462646484375,
1593
+ "step": 1045
1594
+ },
1595
+ {
1596
+ "epoch": 1.9566433566433568,
1597
+ "grad_norm": 14.293425559997559,
1598
+ "learning_rate": 6.068420193169779e-06,
1599
+ "loss": 5.567475128173828,
1600
+ "step": 1050
1601
+ },
1602
+ {
1603
+ "epoch": 1.9566433566433568,
1604
+ "eval_com_accuracy": 0.26,
1605
+ "eval_rew_accuracy": 0.384,
1606
+ "step": 1050
1607
+ },
1608
+ {
1609
+ "epoch": 1.965967365967366,
1610
+ "grad_norm": 13.285664558410645,
1611
+ "learning_rate": 6.0286927675999205e-06,
1612
+ "loss": 5.3831031799316404,
1613
+ "step": 1055
1614
+ },
1615
+ {
1616
+ "epoch": 1.9752913752913752,
1617
+ "grad_norm": 12.634699821472168,
1618
+ "learning_rate": 5.98889741238544e-06,
1619
+ "loss": 5.4307403564453125,
1620
+ "step": 1060
1621
+ },
1622
+ {
1623
+ "epoch": 1.9846153846153847,
1624
+ "grad_norm": 13.824172019958496,
1625
+ "learning_rate": 5.949036755409432e-06,
1626
+ "loss": 5.559865570068359,
1627
+ "step": 1065
1628
+ },
1629
+ {
1630
+ "epoch": 1.993939393939394,
1631
+ "grad_norm": 14.028116226196289,
1632
+ "learning_rate": 5.909113428867195e-06,
1633
+ "loss": 5.506551361083984,
1634
+ "step": 1070
1635
+ },
1636
+ {
1637
+ "epoch": 2.001864801864802,
1638
+ "grad_norm": 15.495360374450684,
1639
+ "learning_rate": 5.869130069092401e-06,
1640
+ "loss": 4.655789947509765,
1641
+ "step": 1075
1642
+ },
1643
+ {
1644
+ "epoch": 2.011188811188811,
1645
+ "grad_norm": 14.094182014465332,
1646
+ "learning_rate": 5.829089316383018e-06,
1647
+ "loss": 5.403445434570313,
1648
+ "step": 1080
1649
+ },
1650
+ {
1651
+ "epoch": 2.0205128205128204,
1652
+ "grad_norm": 13.709051132202148,
1653
+ "learning_rate": 5.7889938148269445e-06,
1654
+ "loss": 5.5024055480957035,
1655
+ "step": 1085
1656
+ },
1657
+ {
1658
+ "epoch": 2.02983682983683,
1659
+ "grad_norm": 13.718189239501953,
1660
+ "learning_rate": 5.748846212127421e-06,
1661
+ "loss": 5.404336547851562,
1662
+ "step": 1090
1663
+ },
1664
+ {
1665
+ "epoch": 2.0391608391608393,
1666
+ "grad_norm": 14.198376655578613,
1667
+ "learning_rate": 5.708649159428181e-06,
1668
+ "loss": 5.498197937011719,
1669
+ "step": 1095
1670
+ },
1671
+ {
1672
+ "epoch": 2.0484848484848484,
1673
+ "grad_norm": 12.810367584228516,
1674
+ "learning_rate": 5.668405311138382e-06,
1675
+ "loss": 5.639860534667969,
1676
+ "step": 1100
1677
+ },
1678
+ {
1679
+ "epoch": 2.0484848484848484,
1680
+ "eval_com_accuracy": 0.264,
1681
+ "eval_rew_accuracy": 0.392,
1682
+ "step": 1100
1683
+ },
1684
+ {
1685
+ "epoch": 2.057808857808858,
1686
+ "grad_norm": 13.649062156677246,
1687
+ "learning_rate": 5.628117324757326e-06,
1688
+ "loss": 5.567802429199219,
1689
+ "step": 1105
1690
+ },
1691
+ {
1692
+ "epoch": 2.0671328671328673,
1693
+ "grad_norm": 15.412623405456543,
1694
+ "learning_rate": 5.587787860698975e-06,
1695
+ "loss": 5.585782623291015,
1696
+ "step": 1110
1697
+ },
1698
+ {
1699
+ "epoch": 2.0764568764568763,
1700
+ "grad_norm": 13.465250968933105,
1701
+ "learning_rate": 5.547419582116259e-06,
1702
+ "loss": 5.357003021240234,
1703
+ "step": 1115
1704
+ },
1705
+ {
1706
+ "epoch": 2.0857808857808857,
1707
+ "grad_norm": 14.019501686096191,
1708
+ "learning_rate": 5.507015154725226e-06,
1709
+ "loss": 5.621536636352539,
1710
+ "step": 1120
1711
+ },
1712
+ {
1713
+ "epoch": 2.095104895104895,
1714
+ "grad_norm": 15.479727745056152,
1715
+ "learning_rate": 5.466577246629006e-06,
1716
+ "loss": 5.355072784423828,
1717
+ "step": 1125
1718
+ },
1719
+ {
1720
+ "epoch": 2.1044289044289046,
1721
+ "grad_norm": 13.079503059387207,
1722
+ "learning_rate": 5.426108528141627e-06,
1723
+ "loss": 5.450039672851562,
1724
+ "step": 1130
1725
+ },
1726
+ {
1727
+ "epoch": 2.1137529137529136,
1728
+ "grad_norm": 16.310596466064453,
1729
+ "learning_rate": 5.385611671611676e-06,
1730
+ "loss": 5.359495162963867,
1731
+ "step": 1135
1732
+ },
1733
+ {
1734
+ "epoch": 2.123076923076923,
1735
+ "grad_norm": 15.107529640197754,
1736
+ "learning_rate": 5.345089351245834e-06,
1737
+ "loss": 5.5543464660644535,
1738
+ "step": 1140
1739
+ },
1740
+ {
1741
+ "epoch": 2.1324009324009325,
1742
+ "grad_norm": 14.484854698181152,
1743
+ "learning_rate": 5.304544242932288e-06,
1744
+ "loss": 5.393303680419922,
1745
+ "step": 1145
1746
+ },
1747
+ {
1748
+ "epoch": 2.1417249417249415,
1749
+ "grad_norm": 13.286919593811035,
1750
+ "learning_rate": 5.26397902406402e-06,
1751
+ "loss": 5.56396369934082,
1752
+ "step": 1150
1753
+ },
1754
+ {
1755
+ "epoch": 2.1417249417249415,
1756
+ "eval_com_accuracy": 0.272,
1757
+ "eval_rew_accuracy": 0.372,
1758
+ "step": 1150
1759
+ },
1760
+ {
1761
+ "epoch": 2.151048951048951,
1762
+ "grad_norm": 14.213571548461914,
1763
+ "learning_rate": 5.223396373362013e-06,
1764
+ "loss": 5.63990478515625,
1765
+ "step": 1155
1766
+ },
1767
+ {
1768
+ "epoch": 2.1603729603729604,
1769
+ "grad_norm": 14.445123672485352,
1770
+ "learning_rate": 5.182798970698361e-06,
1771
+ "loss": 5.836676788330078,
1772
+ "step": 1160
1773
+ },
1774
+ {
1775
+ "epoch": 2.16969696969697,
1776
+ "grad_norm": 14.63541030883789,
1777
+ "learning_rate": 5.142189496919302e-06,
1778
+ "loss": 5.595640182495117,
1779
+ "step": 1165
1780
+ },
1781
+ {
1782
+ "epoch": 2.179020979020979,
1783
+ "grad_norm": 13.398268699645996,
1784
+ "learning_rate": 5.101570633668185e-06,
1785
+ "loss": 5.657070159912109,
1786
+ "step": 1170
1787
+ },
1788
+ {
1789
+ "epoch": 2.1883449883449884,
1790
+ "grad_norm": 13.70476245880127,
1791
+ "learning_rate": 5.060945063208399e-06,
1792
+ "loss": 5.337051010131836,
1793
+ "step": 1175
1794
+ },
1795
+ {
1796
+ "epoch": 2.197668997668998,
1797
+ "grad_norm": 13.812256813049316,
1798
+ "learning_rate": 5.02031546824624e-06,
1799
+ "loss": 5.393893051147461,
1800
+ "step": 1180
1801
+ },
1802
+ {
1803
+ "epoch": 2.206993006993007,
1804
+ "grad_norm": 14.151784896850586,
1805
+ "learning_rate": 4.979684531753761e-06,
1806
+ "loss": 5.489350128173828,
1807
+ "step": 1185
1808
+ },
1809
+ {
1810
+ "epoch": 2.2163170163170163,
1811
+ "grad_norm": 14.830500602722168,
1812
+ "learning_rate": 4.9390549367916004e-06,
1813
+ "loss": 5.4119518280029295,
1814
+ "step": 1190
1815
+ },
1816
+ {
1817
+ "epoch": 2.2256410256410257,
1818
+ "grad_norm": 14.537983894348145,
1819
+ "learning_rate": 4.898429366331815e-06,
1820
+ "loss": 5.393406677246094,
1821
+ "step": 1195
1822
+ },
1823
+ {
1824
+ "epoch": 2.234965034965035,
1825
+ "grad_norm": 12.427031517028809,
1826
+ "learning_rate": 4.857810503080701e-06,
1827
+ "loss": 5.359439849853516,
1828
+ "step": 1200
1829
+ },
1830
+ {
1831
+ "epoch": 2.234965034965035,
1832
+ "eval_com_accuracy": 0.256,
1833
+ "eval_rew_accuracy": 0.368,
1834
+ "step": 1200
1835
+ },
1836
+ {
1837
+ "epoch": 2.244289044289044,
1838
+ "grad_norm": 13.743568420410156,
1839
+ "learning_rate": 4.81720102930164e-06,
1840
+ "loss": 5.248456954956055,
1841
+ "step": 1205
1842
+ },
1843
+ {
1844
+ "epoch": 2.2536130536130536,
1845
+ "grad_norm": 15.313255310058594,
1846
+ "learning_rate": 4.776603626637988e-06,
1847
+ "loss": 5.48780517578125,
1848
+ "step": 1210
1849
+ },
1850
+ {
1851
+ "epoch": 2.262937062937063,
1852
+ "grad_norm": 14.26356029510498,
1853
+ "learning_rate": 4.736020975935981e-06,
1854
+ "loss": 5.3895729064941404,
1855
+ "step": 1215
1856
+ },
1857
+ {
1858
+ "epoch": 2.272261072261072,
1859
+ "grad_norm": 14.363275527954102,
1860
+ "learning_rate": 4.695455757067712e-06,
1861
+ "loss": 5.294971084594726,
1862
+ "step": 1220
1863
+ },
1864
+ {
1865
+ "epoch": 2.2815850815850816,
1866
+ "grad_norm": 14.772239685058594,
1867
+ "learning_rate": 4.6549106487541666e-06,
1868
+ "loss": 5.744273376464844,
1869
+ "step": 1225
1870
+ },
1871
+ {
1872
+ "epoch": 2.290909090909091,
1873
+ "grad_norm": 13.530016899108887,
1874
+ "learning_rate": 4.614388328388327e-06,
1875
+ "loss": 5.28902587890625,
1876
+ "step": 1230
1877
+ },
1878
+ {
1879
+ "epoch": 2.3002331002331005,
1880
+ "grad_norm": 13.482331275939941,
1881
+ "learning_rate": 4.573891471858375e-06,
1882
+ "loss": 5.445513153076172,
1883
+ "step": 1235
1884
+ },
1885
+ {
1886
+ "epoch": 2.3095571095571095,
1887
+ "grad_norm": 13.693358421325684,
1888
+ "learning_rate": 4.533422753370995e-06,
1889
+ "loss": 5.312195205688477,
1890
+ "step": 1240
1891
+ },
1892
+ {
1893
+ "epoch": 2.318881118881119,
1894
+ "grad_norm": 14.169803619384766,
1895
+ "learning_rate": 4.492984845274774e-06,
1896
+ "loss": 5.5245819091796875,
1897
+ "step": 1245
1898
+ },
1899
+ {
1900
+ "epoch": 2.3282051282051284,
1901
+ "grad_norm": 26.758739471435547,
1902
+ "learning_rate": 4.4525804178837425e-06,
1903
+ "loss": 5.587922668457031,
1904
+ "step": 1250
1905
+ },
1906
+ {
1907
+ "epoch": 2.3282051282051284,
1908
+ "eval_com_accuracy": 0.26,
1909
+ "eval_rew_accuracy": 0.336,
1910
+ "step": 1250
1911
+ },
1912
+ {
1913
+ "epoch": 2.3375291375291374,
1914
+ "grad_norm": 15.485888481140137,
1915
+ "learning_rate": 4.412212139301027e-06,
1916
+ "loss": 5.402701187133789,
1917
+ "step": 1255
1918
+ },
1919
+ {
1920
+ "epoch": 2.346853146853147,
1921
+ "grad_norm": 16.002370834350586,
1922
+ "learning_rate": 4.371882675242674e-06,
1923
+ "loss": 5.409712219238282,
1924
+ "step": 1260
1925
+ },
1926
+ {
1927
+ "epoch": 2.3561771561771563,
1928
+ "grad_norm": 16.42519760131836,
1929
+ "learning_rate": 4.331594688861619e-06,
1930
+ "loss": 5.624014282226563,
1931
+ "step": 1265
1932
+ },
1933
+ {
1934
+ "epoch": 2.3655011655011657,
1935
+ "grad_norm": 16.416702270507812,
1936
+ "learning_rate": 4.291350840571821e-06,
1937
+ "loss": 5.3733673095703125,
1938
+ "step": 1270
1939
+ },
1940
+ {
1941
+ "epoch": 2.3748251748251747,
1942
+ "grad_norm": 13.191758155822754,
1943
+ "learning_rate": 4.251153787872579e-06,
1944
+ "loss": 5.316907501220703,
1945
+ "step": 1275
1946
+ },
1947
+ {
1948
+ "epoch": 2.384149184149184,
1949
+ "grad_norm": 14.480209350585938,
1950
+ "learning_rate": 4.211006185173056e-06,
1951
+ "loss": 5.500685501098633,
1952
+ "step": 1280
1953
+ },
1954
+ {
1955
+ "epoch": 2.3934731934731936,
1956
+ "grad_norm": 15.625597953796387,
1957
+ "learning_rate": 4.170910683616985e-06,
1958
+ "loss": 5.321009826660156,
1959
+ "step": 1285
1960
+ },
1961
+ {
1962
+ "epoch": 2.4027972027972027,
1963
+ "grad_norm": 13.146830558776855,
1964
+ "learning_rate": 4.130869930907599e-06,
1965
+ "loss": 5.352607345581054,
1966
+ "step": 1290
1967
+ },
1968
+ {
1969
+ "epoch": 2.412121212121212,
1970
+ "grad_norm": 13.852392196655273,
1971
+ "learning_rate": 4.090886571132807e-06,
1972
+ "loss": 5.265444946289063,
1973
+ "step": 1295
1974
+ },
1975
+ {
1976
+ "epoch": 2.4214452214452216,
1977
+ "grad_norm": 15.4178466796875,
1978
+ "learning_rate": 4.050963244590571e-06,
1979
+ "loss": 5.396755599975586,
1980
+ "step": 1300
1981
+ },
1982
+ {
1983
+ "epoch": 2.4214452214452216,
1984
+ "eval_com_accuracy": 0.26,
1985
+ "eval_rew_accuracy": 0.372,
1986
+ "step": 1300
1987
+ },
1988
+ {
1989
+ "epoch": 2.430769230769231,
1990
+ "grad_norm": 14.469849586486816,
1991
+ "learning_rate": 4.011102587614563e-06,
1992
+ "loss": 5.381956100463867,
1993
+ "step": 1305
1994
+ },
1995
+ {
1996
+ "epoch": 2.44009324009324,
1997
+ "grad_norm": 14.326638221740723,
1998
+ "learning_rate": 3.97130723240008e-06,
1999
+ "loss": 5.4776451110839846,
2000
+ "step": 1310
2001
+ },
2002
+ {
2003
+ "epoch": 2.4494172494172495,
2004
+ "grad_norm": 13.75566577911377,
2005
+ "learning_rate": 3.9315798068302214e-06,
2006
+ "loss": 5.416980743408203,
2007
+ "step": 1315
2008
+ },
2009
+ {
2010
+ "epoch": 2.458741258741259,
2011
+ "grad_norm": 13.778778076171875,
2012
+ "learning_rate": 3.891922934302356e-06,
2013
+ "loss": 5.254080200195313,
2014
+ "step": 1320
2015
+ },
2016
+ {
2017
+ "epoch": 2.468065268065268,
2018
+ "grad_norm": 13.458685874938965,
2019
+ "learning_rate": 3.852339233554891e-06,
2020
+ "loss": 5.272119140625,
2021
+ "step": 1325
2022
+ },
2023
+ {
2024
+ "epoch": 2.4773892773892774,
2025
+ "grad_norm": 15.419684410095215,
2026
+ "learning_rate": 3.812831318494335e-06,
2027
+ "loss": 5.448992538452148,
2028
+ "step": 1330
2029
+ },
2030
+ {
2031
+ "epoch": 2.486713286713287,
2032
+ "grad_norm": 13.448263168334961,
2033
+ "learning_rate": 3.773401798022701e-06,
2034
+ "loss": 5.6390220642089846,
2035
+ "step": 1335
2036
+ },
2037
+ {
2038
+ "epoch": 2.496037296037296,
2039
+ "grad_norm": 18.160816192626953,
2040
+ "learning_rate": 3.7340532758652217e-06,
2041
+ "loss": 5.633776092529297,
2042
+ "step": 1340
2043
+ },
2044
+ {
2045
+ "epoch": 2.5053613053613053,
2046
+ "grad_norm": 20.26373863220215,
2047
+ "learning_rate": 3.6947883503984037e-06,
2048
+ "loss": 5.412459182739258,
2049
+ "step": 1345
2050
+ },
2051
+ {
2052
+ "epoch": 2.5146853146853148,
2053
+ "grad_norm": 15.404874801635742,
2054
+ "learning_rate": 3.655609614478467e-06,
2055
+ "loss": 5.253081893920898,
2056
+ "step": 1350
2057
+ },
2058
+ {
2059
+ "epoch": 2.5146853146853148,
2060
+ "eval_com_accuracy": 0.26,
2061
+ "eval_rew_accuracy": 0.36,
2062
+ "step": 1350
2063
+ },
2064
+ {
2065
+ "epoch": 2.5240093240093238,
2066
+ "grad_norm": 14.836410522460938,
2067
+ "learning_rate": 3.6165196552701e-06,
2068
+ "loss": 5.615703582763672,
2069
+ "step": 1355
2070
+ },
2071
+ {
2072
+ "epoch": 2.533333333333333,
2073
+ "grad_norm": 13.233349800109863,
2074
+ "learning_rate": 3.577521054075631e-06,
2075
+ "loss": 5.440980911254883,
2076
+ "step": 1360
2077
+ },
2078
+ {
2079
+ "epoch": 2.5426573426573427,
2080
+ "grad_norm": 14.456931114196777,
2081
+ "learning_rate": 3.538616386164575e-06,
2082
+ "loss": 5.664167022705078,
2083
+ "step": 1365
2084
+ },
2085
+ {
2086
+ "epoch": 2.551981351981352,
2087
+ "grad_norm": 14.075837135314941,
2088
+ "learning_rate": 3.4998082206035606e-06,
2089
+ "loss": 5.418301010131836,
2090
+ "step": 1370
2091
+ },
2092
+ {
2093
+ "epoch": 2.5613053613053616,
2094
+ "grad_norm": 13.708165168762207,
2095
+ "learning_rate": 3.4610991200867006e-06,
2096
+ "loss": 5.395311737060547,
2097
+ "step": 1375
2098
+ },
2099
+ {
2100
+ "epoch": 2.5706293706293706,
2101
+ "grad_norm": 13.784794807434082,
2102
+ "learning_rate": 3.4224916407663484e-06,
2103
+ "loss": 5.168692016601563,
2104
+ "step": 1380
2105
+ },
2106
+ {
2107
+ "epoch": 2.57995337995338,
2108
+ "grad_norm": 13.721598625183105,
2109
+ "learning_rate": 3.3839883320843125e-06,
2110
+ "loss": 5.642356109619141,
2111
+ "step": 1385
2112
+ },
2113
+ {
2114
+ "epoch": 2.589277389277389,
2115
+ "grad_norm": 14.451462745666504,
2116
+ "learning_rate": 3.3455917366035058e-06,
2117
+ "loss": 5.229490661621094,
2118
+ "step": 1390
2119
+ },
2120
+ {
2121
+ "epoch": 2.5986013986013985,
2122
+ "grad_norm": 13.549321174621582,
2123
+ "learning_rate": 3.307304389840036e-06,
2124
+ "loss": 5.413081359863281,
2125
+ "step": 1395
2126
+ },
2127
+ {
2128
+ "epoch": 2.607925407925408,
2129
+ "grad_norm": 14.325213432312012,
2130
+ "learning_rate": 3.2691288200957826e-06,
2131
+ "loss": 5.3188224792480465,
2132
+ "step": 1400
2133
+ },
2134
+ {
2135
+ "epoch": 2.607925407925408,
2136
+ "eval_com_accuracy": 0.26,
2137
+ "eval_rew_accuracy": 0.348,
2138
+ "step": 1400
2139
+ },
2140
+ {
2141
+ "epoch": 2.6172494172494174,
2142
+ "grad_norm": 13.765854835510254,
2143
+ "learning_rate": 3.2310675482914444e-06,
2144
+ "loss": 5.554658508300781,
2145
+ "step": 1405
2146
+ },
2147
+ {
2148
+ "epoch": 2.626573426573427,
2149
+ "grad_norm": 14.936039924621582,
2150
+ "learning_rate": 3.1931230878000586e-06,
2151
+ "loss": 5.512041473388672,
2152
+ "step": 1410
2153
+ },
2154
+ {
2155
+ "epoch": 2.635897435897436,
2156
+ "grad_norm": 16.414018630981445,
2157
+ "learning_rate": 3.155297944281036e-06,
2158
+ "loss": 5.256567001342773,
2159
+ "step": 1415
2160
+ },
2161
+ {
2162
+ "epoch": 2.6452214452214453,
2163
+ "grad_norm": 13.871015548706055,
2164
+ "learning_rate": 3.1175946155147064e-06,
2165
+ "loss": 5.480235290527344,
2166
+ "step": 1420
2167
+ },
2168
+ {
2169
+ "epoch": 2.6545454545454543,
2170
+ "grad_norm": 13.673002243041992,
2171
+ "learning_rate": 3.0800155912373696e-06,
2172
+ "loss": 5.272347259521484,
2173
+ "step": 1425
2174
+ },
2175
+ {
2176
+ "epoch": 2.6638694638694638,
2177
+ "grad_norm": 15.32669734954834,
2178
+ "learning_rate": 3.042563352976884e-06,
2179
+ "loss": 5.1510368347167965,
2180
+ "step": 1430
2181
+ },
2182
+ {
2183
+ "epoch": 2.6731934731934732,
2184
+ "grad_norm": 13.43411922454834,
2185
+ "learning_rate": 3.005240373888812e-06,
2186
+ "loss": 5.218346405029297,
2187
+ "step": 1435
2188
+ },
2189
+ {
2190
+ "epoch": 2.6825174825174827,
2191
+ "grad_norm": 13.674540519714355,
2192
+ "learning_rate": 2.9680491185930877e-06,
2193
+ "loss": 5.514698791503906,
2194
+ "step": 1440
2195
+ },
2196
+ {
2197
+ "epoch": 2.6918414918414917,
2198
+ "grad_norm": 14.424562454223633,
2199
+ "learning_rate": 2.9309920430112825e-06,
2200
+ "loss": 5.328684997558594,
2201
+ "step": 1445
2202
+ },
2203
+ {
2204
+ "epoch": 2.701165501165501,
2205
+ "grad_norm": 14.4567232131958,
2206
+ "learning_rate": 2.8940715942044204e-06,
2207
+ "loss": 5.470043182373047,
2208
+ "step": 1450
2209
+ },
2210
+ {
2211
+ "epoch": 2.701165501165501,
2212
+ "eval_com_accuracy": 0.244,
2213
+ "eval_rew_accuracy": 0.364,
2214
+ "step": 1450
2215
+ },
2216
+ {
2217
+ "epoch": 2.7104895104895106,
2218
+ "grad_norm": 14.073286056518555,
2219
+ "learning_rate": 2.8572902102113788e-06,
2220
+ "loss": 5.592926025390625,
2221
+ "step": 1455
2222
+ },
2223
+ {
2224
+ "epoch": 2.7198135198135196,
2225
+ "grad_norm": 15.481256484985352,
2226
+ "learning_rate": 2.820650319887911e-06,
2227
+ "loss": 5.42064094543457,
2228
+ "step": 1460
2229
+ },
2230
+ {
2231
+ "epoch": 2.729137529137529,
2232
+ "grad_norm": 13.80669116973877,
2233
+ "learning_rate": 2.784154342746246e-06,
2234
+ "loss": 5.514656066894531,
2235
+ "step": 1465
2236
+ },
2237
+ {
2238
+ "epoch": 2.7384615384615385,
2239
+ "grad_norm": 15.876877784729004,
2240
+ "learning_rate": 2.747804688795311e-06,
2241
+ "loss": 5.645168304443359,
2242
+ "step": 1470
2243
+ },
2244
+ {
2245
+ "epoch": 2.747785547785548,
2246
+ "grad_norm": 14.138867378234863,
2247
+ "learning_rate": 2.7116037583816e-06,
2248
+ "loss": 5.482178497314453,
2249
+ "step": 1475
2250
+ },
2251
+ {
2252
+ "epoch": 2.757109557109557,
2253
+ "grad_norm": 13.498207092285156,
2254
+ "learning_rate": 2.6755539420306565e-06,
2255
+ "loss": 5.522509384155273,
2256
+ "step": 1480
2257
+ },
2258
+ {
2259
+ "epoch": 2.7664335664335664,
2260
+ "grad_norm": 12.95719051361084,
2261
+ "learning_rate": 2.6396576202892176e-06,
2262
+ "loss": 5.203734970092773,
2263
+ "step": 1485
2264
+ },
2265
+ {
2266
+ "epoch": 2.775757575757576,
2267
+ "grad_norm": 14.70195198059082,
2268
+ "learning_rate": 2.603917163568021e-06,
2269
+ "loss": 5.4792030334472654,
2270
+ "step": 1490
2271
+ },
2272
+ {
2273
+ "epoch": 2.785081585081585,
2274
+ "grad_norm": 16.21117401123047,
2275
+ "learning_rate": 2.5683349319852647e-06,
2276
+ "loss": 5.337226867675781,
2277
+ "step": 1495
2278
+ },
2279
+ {
2280
+ "epoch": 2.7944055944055943,
2281
+ "grad_norm": 15.80867862701416,
2282
+ "learning_rate": 2.5329132752107675e-06,
2283
+ "loss": 5.441407012939453,
2284
+ "step": 1500
2285
+ },
2286
+ {
2287
+ "epoch": 2.7944055944055943,
2288
+ "eval_com_accuracy": 0.252,
2289
+ "eval_rew_accuracy": 0.364,
2290
+ "step": 1500
2291
+ },
2292
+ {
2293
+ "epoch": 2.803729603729604,
2294
+ "grad_norm": 17.126665115356445,
2295
+ "learning_rate": 2.497654532310799e-06,
2296
+ "loss": 5.372947692871094,
2297
+ "step": 1505
2298
+ },
2299
+ {
2300
+ "epoch": 2.8130536130536132,
2301
+ "grad_norm": 14.965190887451172,
2302
+ "learning_rate": 2.4625610315936267e-06,
2303
+ "loss": 5.591331481933594,
2304
+ "step": 1510
2305
+ },
2306
+ {
2307
+ "epoch": 2.8223776223776222,
2308
+ "grad_norm": 13.920053482055664,
2309
+ "learning_rate": 2.427635090455766e-06,
2310
+ "loss": 5.381235504150391,
2311
+ "step": 1515
2312
+ },
2313
+ {
2314
+ "epoch": 2.8317016317016317,
2315
+ "grad_norm": 14.707354545593262,
2316
+ "learning_rate": 2.3928790152289443e-06,
2317
+ "loss": 5.375308990478516,
2318
+ "step": 1520
2319
+ },
2320
+ {
2321
+ "epoch": 2.841025641025641,
2322
+ "grad_norm": 13.846839904785156,
2323
+ "learning_rate": 2.358295101027807e-06,
2324
+ "loss": 5.24262580871582,
2325
+ "step": 1525
2326
+ },
2327
+ {
2328
+ "epoch": 2.85034965034965,
2329
+ "grad_norm": 17.17586898803711,
2330
+ "learning_rate": 2.323885631598366e-06,
2331
+ "loss": 5.628063583374024,
2332
+ "step": 1530
2333
+ },
2334
+ {
2335
+ "epoch": 2.8596736596736596,
2336
+ "grad_norm": 14.309005737304688,
2337
+ "learning_rate": 2.2896528791671807e-06,
2338
+ "loss": 5.600907897949218,
2339
+ "step": 1535
2340
+ },
2341
+ {
2342
+ "epoch": 2.868997668997669,
2343
+ "grad_norm": 18.62157440185547,
2344
+ "learning_rate": 2.2555991042913177e-06,
2345
+ "loss": 5.567650604248047,
2346
+ "step": 1540
2347
+ },
2348
+ {
2349
+ "epoch": 2.8783216783216785,
2350
+ "grad_norm": 14.592391967773438,
2351
+ "learning_rate": 2.221726555709079e-06,
2352
+ "loss": 5.777060699462891,
2353
+ "step": 1545
2354
+ },
2355
+ {
2356
+ "epoch": 2.8876456876456875,
2357
+ "grad_norm": 13.5873441696167,
2358
+ "learning_rate": 2.188037470191502e-06,
2359
+ "loss": 5.495726776123047,
2360
+ "step": 1550
2361
+ },
2362
+ {
2363
+ "epoch": 2.8876456876456875,
2364
+ "eval_com_accuracy": 0.26,
2365
+ "eval_rew_accuracy": 0.344,
2366
+ "step": 1550
2367
+ },
2368
+ {
2369
+ "epoch": 2.896969696969697,
2370
+ "grad_norm": 13.62496280670166,
2371
+ "learning_rate": 2.154534072394651e-06,
2372
+ "loss": 5.313283920288086,
2373
+ "step": 1555
2374
+ },
2375
+ {
2376
+ "epoch": 2.9062937062937064,
2377
+ "grad_norm": 14.277817726135254,
2378
+ "learning_rate": 2.1212185747127235e-06,
2379
+ "loss": 5.38345947265625,
2380
+ "step": 1560
2381
+ },
2382
+ {
2383
+ "epoch": 2.9156177156177154,
2384
+ "grad_norm": 13.139540672302246,
2385
+ "learning_rate": 2.0880931771319395e-06,
2386
+ "loss": 5.48463134765625,
2387
+ "step": 1565
2388
+ },
2389
+ {
2390
+ "epoch": 2.924941724941725,
2391
+ "grad_norm": 15.709213256835938,
2392
+ "learning_rate": 2.055160067085283e-06,
2393
+ "loss": 5.492628479003907,
2394
+ "step": 1570
2395
+ },
2396
+ {
2397
+ "epoch": 2.9342657342657343,
2398
+ "grad_norm": 14.224997520446777,
2399
+ "learning_rate": 2.0224214193080394e-06,
2400
+ "loss": 5.611021423339844,
2401
+ "step": 1575
2402
+ },
2403
+ {
2404
+ "epoch": 2.943589743589744,
2405
+ "grad_norm": 14.523746490478516,
2406
+ "learning_rate": 1.989879395694194e-06,
2407
+ "loss": 5.288306427001953,
2408
+ "step": 1580
2409
+ },
2410
+ {
2411
+ "epoch": 2.952913752913753,
2412
+ "grad_norm": 14.50571346282959,
2413
+ "learning_rate": 1.9575361451536772e-06,
2414
+ "loss": 5.350891876220703,
2415
+ "step": 1585
2416
+ },
2417
+ {
2418
+ "epoch": 2.9622377622377623,
2419
+ "grad_norm": 15.541993141174316,
2420
+ "learning_rate": 1.925393803470447e-06,
2421
+ "loss": 5.3829093933105465,
2422
+ "step": 1590
2423
+ },
2424
+ {
2425
+ "epoch": 2.9715617715617717,
2426
+ "grad_norm": 14.223262786865234,
2427
+ "learning_rate": 1.893454493161468e-06,
2428
+ "loss": 5.267041397094727,
2429
+ "step": 1595
2430
+ },
2431
+ {
2432
+ "epoch": 2.9808857808857807,
2433
+ "grad_norm": 16.193429946899414,
2434
+ "learning_rate": 1.8617203233365427e-06,
2435
+ "loss": 5.335537719726562,
2436
+ "step": 1600
2437
+ },
2438
+ {
2439
+ "epoch": 2.9808857808857807,
2440
+ "eval_com_accuracy": 0.26,
2441
+ "eval_rew_accuracy": 0.356,
2442
+ "step": 1600
2443
+ },
2444
+ {
2445
+ "epoch": 2.99020979020979,
2446
+ "grad_norm": 13.891239166259766,
2447
+ "learning_rate": 1.8301933895590362e-06,
2448
+ "loss": 5.594977569580078,
2449
+ "step": 1605
2450
+ },
2451
+ {
2452
+ "epoch": 2.9995337995337996,
2453
+ "grad_norm": 14.599571228027344,
2454
+ "learning_rate": 1.7988757737074959e-06,
2455
+ "loss": 5.364975357055664,
2456
+ "step": 1610
2457
+ }
2458
+ ],
2459
+ "logging_steps": 5,
2460
+ "max_steps": 2148,
2461
+ "num_input_tokens_seen": 0,
2462
+ "num_train_epochs": 4,
2463
+ "save_steps": 500,
2464
+ "stateful_callbacks": {
2465
+ "TrainerControl": {
2466
+ "args": {
2467
+ "should_epoch_stop": false,
2468
+ "should_evaluate": false,
2469
+ "should_log": false,
2470
+ "should_save": true,
2471
+ "should_training_stop": false
2472
+ },
2473
+ "attributes": {}
2474
+ }
2475
+ },
2476
+ "total_flos": 0.0,
2477
+ "train_batch_size": 8,
2478
+ "trial_name": null,
2479
+ "trial_params": null
2480
+ }
checkpoint-1611/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6ca094dca60606350f327809d196d6faa38b81cdd561be5d924e82822f09231
3
+ size 5201
checkpoint-2148/chat_template.jinja ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {%- if messages[0].content is string %}
5
+ {{- messages[0].content }}
6
+ {%- else %}
7
+ {%- for content in messages[0].content %}
8
+ {%- if 'text' in content %}
9
+ {{- content.text }}
10
+ {%- endif %}
11
+ {%- endfor %}
12
+ {%- endif %}
13
+ {{- '\n\n' }}
14
+ {%- endif %}
15
+ {{- "# 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>" }}
16
+ {%- for tool in tools %}
17
+ {{- "\n" }}
18
+ {{- tool | tojson }}
19
+ {%- endfor %}
20
+ {{- "\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" }}
21
+ {%- else %}
22
+ {%- if messages[0].role == 'system' %}
23
+ {{- '<|im_start|>system\n' }}
24
+ {%- if messages[0].content is string %}
25
+ {{- messages[0].content }}
26
+ {%- else %}
27
+ {%- for content in messages[0].content %}
28
+ {%- if 'text' in content %}
29
+ {{- content.text }}
30
+ {%- endif %}
31
+ {%- endfor %}
32
+ {%- endif %}
33
+ {{- '<|im_end|>\n' }}
34
+ {%- endif %}
35
+ {%- endif %}
36
+ {%- set image_count = namespace(value=0) %}
37
+ {%- set video_count = namespace(value=0) %}
38
+ {%- for message in messages %}
39
+ {%- if message.role == "user" %}
40
+ {{- '<|im_start|>' + message.role + '\n' }}
41
+ {%- if message.content is string %}
42
+ {{- message.content }}
43
+ {%- else %}
44
+ {%- for content in message.content %}
45
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
46
+ {%- set image_count.value = image_count.value + 1 %}
47
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
48
+ <|vision_start|><|image_pad|><|vision_end|>
49
+ {%- elif content.type == 'video' or 'video' in content %}
50
+ {%- set video_count.value = video_count.value + 1 %}
51
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
52
+ <|vision_start|><|video_pad|><|vision_end|>
53
+ {%- elif 'text' in content %}
54
+ {{- content.text }}
55
+ {%- endif %}
56
+ {%- endfor %}
57
+ {%- endif %}
58
+ {{- '<|im_end|>\n' }}
59
+ {%- elif message.role == "assistant" %}
60
+ {{- '<|im_start|>' + message.role + '\n' }}
61
+ {%- if message.content is string %}
62
+ {{- message.content }}
63
+ {%- else %}
64
+ {%- for content_item in message.content %}
65
+ {%- if 'text' in content_item %}
66
+ {{- content_item.text }}
67
+ {%- endif %}
68
+ {%- endfor %}
69
+ {%- endif %}
70
+ {%- if message.tool_calls %}
71
+ {%- for tool_call in message.tool_calls %}
72
+ {%- if (loop.first and message.content) or (not loop.first) %}
73
+ {{- '\n' }}
74
+ {%- endif %}
75
+ {%- if tool_call.function %}
76
+ {%- set tool_call = tool_call.function %}
77
+ {%- endif %}
78
+ {{- '<tool_call>\n{"name": "' }}
79
+ {{- tool_call.name }}
80
+ {{- '", "arguments": ' }}
81
+ {%- if tool_call.arguments is string %}
82
+ {{- tool_call.arguments }}
83
+ {%- else %}
84
+ {{- tool_call.arguments | tojson }}
85
+ {%- endif %}
86
+ {{- '}\n</tool_call>' }}
87
+ {%- endfor %}
88
+ {%- endif %}
89
+ {{- '<|im_end|>\n' }}
90
+ {%- elif message.role == "tool" %}
91
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
92
+ {{- '<|im_start|>user' }}
93
+ {%- endif %}
94
+ {{- '\n<tool_response>\n' }}
95
+ {%- if message.content is string %}
96
+ {{- message.content }}
97
+ {%- else %}
98
+ {%- for content in message.content %}
99
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
100
+ {%- set image_count.value = image_count.value + 1 %}
101
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
102
+ <|vision_start|><|image_pad|><|vision_end|>
103
+ {%- elif content.type == 'video' or 'video' in content %}
104
+ {%- set video_count.value = video_count.value + 1 %}
105
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
106
+ <|vision_start|><|video_pad|><|vision_end|>
107
+ {%- elif 'text' in content %}
108
+ {{- content.text }}
109
+ {%- endif %}
110
+ {%- endfor %}
111
+ {%- endif %}
112
+ {{- '\n</tool_response>' }}
113
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
114
+ {{- '<|im_end|>\n' }}
115
+ {%- endif %}
116
+ {%- endif %}
117
+ {%- endfor %}
118
+ {%- if add_generation_prompt %}
119
+ {{- '<|im_start|>assistant\n' }}
120
+ {%- endif %}
checkpoint-2148/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a6c776684566ca7d3f365368ab34e3caca855fd649ad7fdc68dc39174b2ec57
3
+ size 4885870044
checkpoint-2148/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e04d17c502e7b6494cb8f097e1882687b6bd69314ebafff62978a2801e2cc7e9
3
+ size 8527467778
checkpoint-2148/processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.5,
10
+ 0.5,
11
+ 0.5
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 16,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 16777216,
25
+ "shortest_edge": 65536
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "Qwen3VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": true,
38
+ "fps": 2,
39
+ "image_mean": [
40
+ 0.5,
41
+ 0.5,
42
+ 0.5
43
+ ],
44
+ "image_std": [
45
+ 0.5,
46
+ 0.5,
47
+ 0.5
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 16,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 25165824,
58
+ "shortest_edge": 4096
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen3VLVideoProcessor"
62
+ }
63
+ }
checkpoint-2148/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:659b1cdee2219458dd84ce6a632a595465680b8080e5c44bd600ff97eca8d752
3
+ size 15429
checkpoint-2148/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86accf27064cdd503053e90476a6bd10de333d4ff0594535ad55ea13a473c91d
3
+ size 15429
checkpoint-2148/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18ca8d714ef40be035404c1957b5a4dee84e1f43980408393f8aa710552ee6f6
3
+ size 15429
checkpoint-2148/rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cfdebe99e40accc9c9d8f09c63136a14abda997d9b501969ec8e16e9d183179
3
+ size 15429
checkpoint-2148/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0648e142616ff430dea19a2fe2dd565cd4ea971c97c5d1264c371e82312a23b
3
+ size 1465
checkpoint-2148/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8579e1ca7cc5d82a9e0202eed555529996f4ffe7f563c2979a0290cf3db452d3
3
+ size 11422818
checkpoint-2148/tokenizer_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": false,
24
+ "model_max_length": 262144,
25
+ "pad_token": "<|endoftext|>",
26
+ "processor_class": "Qwen3VLProcessor",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }
checkpoint-2148/trainer_state.json ADDED
@@ -0,0 +1,3289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 4.0,
6
+ "eval_steps": 50,
7
+ "global_step": 2148,
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.009324009324009324,
14
+ "grad_norm": 269.7618103027344,
15
+ "learning_rate": 1.8604651162790698e-07,
16
+ "loss": 13.883856201171875,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.018648018648018648,
21
+ "grad_norm": 256.5934143066406,
22
+ "learning_rate": 4.186046511627907e-07,
23
+ "loss": 13.883564758300782,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.027972027972027972,
28
+ "grad_norm": 247.4810028076172,
29
+ "learning_rate": 6.511627906976745e-07,
30
+ "loss": 13.845947265625,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.037296037296037296,
35
+ "grad_norm": 243.70272827148438,
36
+ "learning_rate": 8.837209302325582e-07,
37
+ "loss": 13.705046081542969,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.046620046620046623,
42
+ "grad_norm": 238.2322235107422,
43
+ "learning_rate": 1.116279069767442e-06,
44
+ "loss": 13.556683349609376,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.055944055944055944,
49
+ "grad_norm": 241.71214294433594,
50
+ "learning_rate": 1.3488372093023258e-06,
51
+ "loss": 13.285650634765625,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.06526806526806526,
56
+ "grad_norm": 221.19960021972656,
57
+ "learning_rate": 1.5813953488372093e-06,
58
+ "loss": 13.05435791015625,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.07459207459207459,
63
+ "grad_norm": 205.08326721191406,
64
+ "learning_rate": 1.8139534883720933e-06,
65
+ "loss": 12.770874786376954,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.08391608391608392,
70
+ "grad_norm": 170.5838623046875,
71
+ "learning_rate": 2.0465116279069768e-06,
72
+ "loss": 12.280790710449219,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.09324009324009325,
77
+ "grad_norm": 96.90670776367188,
78
+ "learning_rate": 2.2790697674418607e-06,
79
+ "loss": 11.730733489990234,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.09324009324009325,
84
+ "eval_com_accuracy": 0.2,
85
+ "eval_rew_accuracy": 0.276,
86
+ "step": 50
87
+ },
88
+ {
89
+ "epoch": 0.10256410256410256,
90
+ "grad_norm": 61.14415740966797,
91
+ "learning_rate": 2.5116279069767446e-06,
92
+ "loss": 11.25308609008789,
93
+ "step": 55
94
+ },
95
+ {
96
+ "epoch": 0.11188811188811189,
97
+ "grad_norm": 56.027095794677734,
98
+ "learning_rate": 2.744186046511628e-06,
99
+ "loss": 11.197045135498048,
100
+ "step": 60
101
+ },
102
+ {
103
+ "epoch": 0.12121212121212122,
104
+ "grad_norm": 46.54409408569336,
105
+ "learning_rate": 2.9767441860465116e-06,
106
+ "loss": 10.874276733398437,
107
+ "step": 65
108
+ },
109
+ {
110
+ "epoch": 0.13053613053613053,
111
+ "grad_norm": 40.62468719482422,
112
+ "learning_rate": 3.2093023255813956e-06,
113
+ "loss": 10.69852294921875,
114
+ "step": 70
115
+ },
116
+ {
117
+ "epoch": 0.13986013986013987,
118
+ "grad_norm": 37.44975662231445,
119
+ "learning_rate": 3.4418604651162795e-06,
120
+ "loss": 10.560739135742187,
121
+ "step": 75
122
+ },
123
+ {
124
+ "epoch": 0.14918414918414918,
125
+ "grad_norm": 32.19042205810547,
126
+ "learning_rate": 3.674418604651163e-06,
127
+ "loss": 10.408053588867187,
128
+ "step": 80
129
+ },
130
+ {
131
+ "epoch": 0.1585081585081585,
132
+ "grad_norm": 27.208942413330078,
133
+ "learning_rate": 3.906976744186047e-06,
134
+ "loss": 10.108213806152344,
135
+ "step": 85
136
+ },
137
+ {
138
+ "epoch": 0.16783216783216784,
139
+ "grad_norm": 24.76529312133789,
140
+ "learning_rate": 4.1395348837209304e-06,
141
+ "loss": 9.929393005371093,
142
+ "step": 90
143
+ },
144
+ {
145
+ "epoch": 0.17715617715617715,
146
+ "grad_norm": 23.917495727539062,
147
+ "learning_rate": 4.372093023255815e-06,
148
+ "loss": 9.677659606933593,
149
+ "step": 95
150
+ },
151
+ {
152
+ "epoch": 0.1864801864801865,
153
+ "grad_norm": 22.98892593383789,
154
+ "learning_rate": 4.604651162790698e-06,
155
+ "loss": 9.481817626953125,
156
+ "step": 100
157
+ },
158
+ {
159
+ "epoch": 0.1864801864801865,
160
+ "eval_com_accuracy": 0.176,
161
+ "eval_rew_accuracy": 0.264,
162
+ "step": 100
163
+ },
164
+ {
165
+ "epoch": 0.1958041958041958,
166
+ "grad_norm": 25.177200317382812,
167
+ "learning_rate": 4.837209302325582e-06,
168
+ "loss": 9.42150650024414,
169
+ "step": 105
170
+ },
171
+ {
172
+ "epoch": 0.20512820512820512,
173
+ "grad_norm": 18.95603370666504,
174
+ "learning_rate": 5.069767441860466e-06,
175
+ "loss": 9.267645263671875,
176
+ "step": 110
177
+ },
178
+ {
179
+ "epoch": 0.21445221445221446,
180
+ "grad_norm": 22.155452728271484,
181
+ "learning_rate": 5.302325581395349e-06,
182
+ "loss": 9.06854248046875,
183
+ "step": 115
184
+ },
185
+ {
186
+ "epoch": 0.22377622377622378,
187
+ "grad_norm": 20.26909065246582,
188
+ "learning_rate": 5.534883720930233e-06,
189
+ "loss": 9.045303344726562,
190
+ "step": 120
191
+ },
192
+ {
193
+ "epoch": 0.2331002331002331,
194
+ "grad_norm": 26.49457359313965,
195
+ "learning_rate": 5.7674418604651175e-06,
196
+ "loss": 8.91327362060547,
197
+ "step": 125
198
+ },
199
+ {
200
+ "epoch": 0.24242424242424243,
201
+ "grad_norm": 19.886178970336914,
202
+ "learning_rate": 6e-06,
203
+ "loss": 8.950289154052735,
204
+ "step": 130
205
+ },
206
+ {
207
+ "epoch": 0.2517482517482518,
208
+ "grad_norm": 18.22088050842285,
209
+ "learning_rate": 6.2325581395348845e-06,
210
+ "loss": 8.710862731933593,
211
+ "step": 135
212
+ },
213
+ {
214
+ "epoch": 0.26107226107226106,
215
+ "grad_norm": 21.09984016418457,
216
+ "learning_rate": 6.465116279069767e-06,
217
+ "loss": 8.762718200683594,
218
+ "step": 140
219
+ },
220
+ {
221
+ "epoch": 0.2703962703962704,
222
+ "grad_norm": 17.96813201904297,
223
+ "learning_rate": 6.6976744186046515e-06,
224
+ "loss": 8.533232116699219,
225
+ "step": 145
226
+ },
227
+ {
228
+ "epoch": 0.27972027972027974,
229
+ "grad_norm": 20.52909278869629,
230
+ "learning_rate": 6.930232558139536e-06,
231
+ "loss": 8.279258728027344,
232
+ "step": 150
233
+ },
234
+ {
235
+ "epoch": 0.27972027972027974,
236
+ "eval_com_accuracy": 0.152,
237
+ "eval_rew_accuracy": 0.252,
238
+ "step": 150
239
+ },
240
+ {
241
+ "epoch": 0.289044289044289,
242
+ "grad_norm": 19.475040435791016,
243
+ "learning_rate": 7.1627906976744185e-06,
244
+ "loss": 8.369435882568359,
245
+ "step": 155
246
+ },
247
+ {
248
+ "epoch": 0.29836829836829837,
249
+ "grad_norm": 16.741973876953125,
250
+ "learning_rate": 7.395348837209303e-06,
251
+ "loss": 8.280664825439453,
252
+ "step": 160
253
+ },
254
+ {
255
+ "epoch": 0.3076923076923077,
256
+ "grad_norm": 19.79235076904297,
257
+ "learning_rate": 7.627906976744187e-06,
258
+ "loss": 8.200827026367188,
259
+ "step": 165
260
+ },
261
+ {
262
+ "epoch": 0.317016317016317,
263
+ "grad_norm": 32.991554260253906,
264
+ "learning_rate": 7.86046511627907e-06,
265
+ "loss": 7.973581695556641,
266
+ "step": 170
267
+ },
268
+ {
269
+ "epoch": 0.32634032634032634,
270
+ "grad_norm": 17.949445724487305,
271
+ "learning_rate": 8.093023255813955e-06,
272
+ "loss": 8.141377258300782,
273
+ "step": 175
274
+ },
275
+ {
276
+ "epoch": 0.3356643356643357,
277
+ "grad_norm": 16.19559097290039,
278
+ "learning_rate": 8.325581395348837e-06,
279
+ "loss": 7.837094116210937,
280
+ "step": 180
281
+ },
282
+ {
283
+ "epoch": 0.34498834498834496,
284
+ "grad_norm": 23.260622024536133,
285
+ "learning_rate": 8.558139534883722e-06,
286
+ "loss": 7.763467407226562,
287
+ "step": 185
288
+ },
289
+ {
290
+ "epoch": 0.3543123543123543,
291
+ "grad_norm": 24.858335494995117,
292
+ "learning_rate": 8.790697674418606e-06,
293
+ "loss": 7.886874389648438,
294
+ "step": 190
295
+ },
296
+ {
297
+ "epoch": 0.36363636363636365,
298
+ "grad_norm": 18.59360122680664,
299
+ "learning_rate": 9.023255813953489e-06,
300
+ "loss": 7.7624969482421875,
301
+ "step": 195
302
+ },
303
+ {
304
+ "epoch": 0.372960372960373,
305
+ "grad_norm": 18.056495666503906,
306
+ "learning_rate": 9.255813953488373e-06,
307
+ "loss": 7.4621437072753904,
308
+ "step": 200
309
+ },
310
+ {
311
+ "epoch": 0.372960372960373,
312
+ "eval_com_accuracy": 0.144,
313
+ "eval_rew_accuracy": 0.332,
314
+ "step": 200
315
+ },
316
+ {
317
+ "epoch": 0.3822843822843823,
318
+ "grad_norm": 16.496261596679688,
319
+ "learning_rate": 9.488372093023258e-06,
320
+ "loss": 7.526261901855468,
321
+ "step": 205
322
+ },
323
+ {
324
+ "epoch": 0.3916083916083916,
325
+ "grad_norm": 16.77888298034668,
326
+ "learning_rate": 9.72093023255814e-06,
327
+ "loss": 7.624967193603515,
328
+ "step": 210
329
+ },
330
+ {
331
+ "epoch": 0.40093240093240096,
332
+ "grad_norm": 17.096778869628906,
333
+ "learning_rate": 9.953488372093025e-06,
334
+ "loss": 7.337849426269531,
335
+ "step": 215
336
+ },
337
+ {
338
+ "epoch": 0.41025641025641024,
339
+ "grad_norm": 18.3544979095459,
340
+ "learning_rate": 9.999894343918674e-06,
341
+ "loss": 7.354197692871094,
342
+ "step": 220
343
+ },
344
+ {
345
+ "epoch": 0.4195804195804196,
346
+ "grad_norm": 15.287137985229492,
347
+ "learning_rate": 9.999465123741172e-06,
348
+ "loss": 7.085916137695312,
349
+ "step": 225
350
+ },
351
+ {
352
+ "epoch": 0.4289044289044289,
353
+ "grad_norm": 17.03432273864746,
354
+ "learning_rate": 9.998705764284132e-06,
355
+ "loss": 7.059596252441406,
356
+ "step": 230
357
+ },
358
+ {
359
+ "epoch": 0.4382284382284382,
360
+ "grad_norm": 15.470928192138672,
361
+ "learning_rate": 9.99761631569179e-06,
362
+ "loss": 7.118296813964844,
363
+ "step": 235
364
+ },
365
+ {
366
+ "epoch": 0.44755244755244755,
367
+ "grad_norm": 15.732117652893066,
368
+ "learning_rate": 9.9961968499058e-06,
369
+ "loss": 6.981436157226563,
370
+ "step": 240
371
+ },
372
+ {
373
+ "epoch": 0.4568764568764569,
374
+ "grad_norm": 20.92630958557129,
375
+ "learning_rate": 9.994447460660473e-06,
376
+ "loss": 6.96953125,
377
+ "step": 245
378
+ },
379
+ {
380
+ "epoch": 0.4662004662004662,
381
+ "grad_norm": 14.848095893859863,
382
+ "learning_rate": 9.992368263476585e-06,
383
+ "loss": 6.831211090087891,
384
+ "step": 250
385
+ },
386
+ {
387
+ "epoch": 0.4662004662004662,
388
+ "eval_com_accuracy": 0.132,
389
+ "eval_rew_accuracy": 0.312,
390
+ "step": 250
391
+ },
392
+ {
393
+ "epoch": 0.4755244755244755,
394
+ "grad_norm": 18.59755516052246,
395
+ "learning_rate": 9.989959395653756e-06,
396
+ "loss": 6.873024749755859,
397
+ "step": 255
398
+ },
399
+ {
400
+ "epoch": 0.48484848484848486,
401
+ "grad_norm": 15.705364227294922,
402
+ "learning_rate": 9.98722101626138e-06,
403
+ "loss": 6.633563232421875,
404
+ "step": 260
405
+ },
406
+ {
407
+ "epoch": 0.49417249417249415,
408
+ "grad_norm": 39.2294807434082,
409
+ "learning_rate": 9.984153306128124e-06,
410
+ "loss": 6.63948974609375,
411
+ "step": 265
412
+ },
413
+ {
414
+ "epoch": 0.5034965034965035,
415
+ "grad_norm": 13.209358215332031,
416
+ "learning_rate": 9.980756467829977e-06,
417
+ "loss": 6.688297271728516,
418
+ "step": 270
419
+ },
420
+ {
421
+ "epoch": 0.5128205128205128,
422
+ "grad_norm": 14.645393371582031,
423
+ "learning_rate": 9.977030725676887e-06,
424
+ "loss": 6.4885505676269535,
425
+ "step": 275
426
+ },
427
+ {
428
+ "epoch": 0.5221445221445221,
429
+ "grad_norm": 17.008819580078125,
430
+ "learning_rate": 9.972976325697938e-06,
431
+ "loss": 6.78935546875,
432
+ "step": 280
433
+ },
434
+ {
435
+ "epoch": 0.5314685314685315,
436
+ "grad_norm": 16.029518127441406,
437
+ "learning_rate": 9.96859353562511e-06,
438
+ "loss": 6.681609344482422,
439
+ "step": 285
440
+ },
441
+ {
442
+ "epoch": 0.5407925407925408,
443
+ "grad_norm": 13.878348350524902,
444
+ "learning_rate": 9.963882644875594e-06,
445
+ "loss": 6.528868103027344,
446
+ "step": 290
447
+ },
448
+ {
449
+ "epoch": 0.5501165501165501,
450
+ "grad_norm": 13.996464729309082,
451
+ "learning_rate": 9.958843964532683e-06,
452
+ "loss": 6.431344604492187,
453
+ "step": 295
454
+ },
455
+ {
456
+ "epoch": 0.5594405594405595,
457
+ "grad_norm": 15.72003173828125,
458
+ "learning_rate": 9.953477827325229e-06,
459
+ "loss": 6.5927978515625,
460
+ "step": 300
461
+ },
462
+ {
463
+ "epoch": 0.5594405594405595,
464
+ "eval_com_accuracy": 0.148,
465
+ "eval_rew_accuracy": 0.368,
466
+ "step": 300
467
+ },
468
+ {
469
+ "epoch": 0.5687645687645687,
470
+ "grad_norm": 16.416725158691406,
471
+ "learning_rate": 9.947784587605678e-06,
472
+ "loss": 6.411885833740234,
473
+ "step": 305
474
+ },
475
+ {
476
+ "epoch": 0.578088578088578,
477
+ "grad_norm": 14.880790710449219,
478
+ "learning_rate": 9.941764621326655e-06,
479
+ "loss": 6.5298927307128904,
480
+ "step": 310
481
+ },
482
+ {
483
+ "epoch": 0.5874125874125874,
484
+ "grad_norm": 17.828296661376953,
485
+ "learning_rate": 9.935418326016153e-06,
486
+ "loss": 6.045618057250977,
487
+ "step": 315
488
+ },
489
+ {
490
+ "epoch": 0.5967365967365967,
491
+ "grad_norm": 13.30245590209961,
492
+ "learning_rate": 9.928746120751275e-06,
493
+ "loss": 6.1650840759277346,
494
+ "step": 320
495
+ },
496
+ {
497
+ "epoch": 0.6060606060606061,
498
+ "grad_norm": 13.527432441711426,
499
+ "learning_rate": 9.921748446130564e-06,
500
+ "loss": 6.349945831298828,
501
+ "step": 325
502
+ },
503
+ {
504
+ "epoch": 0.6153846153846154,
505
+ "grad_norm": 14.491817474365234,
506
+ "learning_rate": 9.9144257642449e-06,
507
+ "loss": 6.232943725585938,
508
+ "step": 330
509
+ },
510
+ {
511
+ "epoch": 0.6247086247086248,
512
+ "grad_norm": 15.7533597946167,
513
+ "learning_rate": 9.906778558647e-06,
514
+ "loss": 6.564260864257813,
515
+ "step": 335
516
+ },
517
+ {
518
+ "epoch": 0.634032634032634,
519
+ "grad_norm": 16.538602828979492,
520
+ "learning_rate": 9.898807334319471e-06,
521
+ "loss": 6.122506332397461,
522
+ "step": 340
523
+ },
524
+ {
525
+ "epoch": 0.6433566433566433,
526
+ "grad_norm": 16.459688186645508,
527
+ "learning_rate": 9.890512617641474e-06,
528
+ "loss": 6.332431030273438,
529
+ "step": 345
530
+ },
531
+ {
532
+ "epoch": 0.6526806526806527,
533
+ "grad_norm": 14.879058837890625,
534
+ "learning_rate": 9.881894956353963e-06,
535
+ "loss": 6.118003082275391,
536
+ "step": 350
537
+ },
538
+ {
539
+ "epoch": 0.6526806526806527,
540
+ "eval_com_accuracy": 0.164,
541
+ "eval_rew_accuracy": 0.364,
542
+ "step": 350
543
+ },
544
+ {
545
+ "epoch": 0.662004662004662,
546
+ "grad_norm": 16.02516746520996,
547
+ "learning_rate": 9.87295491952351e-06,
548
+ "loss": 6.241584014892578,
549
+ "step": 355
550
+ },
551
+ {
552
+ "epoch": 0.6713286713286714,
553
+ "grad_norm": 14.9837646484375,
554
+ "learning_rate": 9.863693097504733e-06,
555
+ "loss": 6.083467864990235,
556
+ "step": 360
557
+ },
558
+ {
559
+ "epoch": 0.6806526806526807,
560
+ "grad_norm": 14.138517379760742,
561
+ "learning_rate": 9.854110101901308e-06,
562
+ "loss": 6.143560791015625,
563
+ "step": 365
564
+ },
565
+ {
566
+ "epoch": 0.6899766899766899,
567
+ "grad_norm": 12.696243286132812,
568
+ "learning_rate": 9.844206565525585e-06,
569
+ "loss": 6.061418914794922,
570
+ "step": 370
571
+ },
572
+ {
573
+ "epoch": 0.6993006993006993,
574
+ "grad_norm": 15.22846508026123,
575
+ "learning_rate": 9.833983142356792e-06,
576
+ "loss": 6.193332672119141,
577
+ "step": 375
578
+ },
579
+ {
580
+ "epoch": 0.7086247086247086,
581
+ "grad_norm": 15.284857749938965,
582
+ "learning_rate": 9.823440507497863e-06,
583
+ "loss": 6.0868377685546875,
584
+ "step": 380
585
+ },
586
+ {
587
+ "epoch": 0.717948717948718,
588
+ "grad_norm": 14.117541313171387,
589
+ "learning_rate": 9.812579357130848e-06,
590
+ "loss": 6.289948272705078,
591
+ "step": 385
592
+ },
593
+ {
594
+ "epoch": 0.7272727272727273,
595
+ "grad_norm": 12.648367881774902,
596
+ "learning_rate": 9.801400408470943e-06,
597
+ "loss": 6.194795227050781,
598
+ "step": 390
599
+ },
600
+ {
601
+ "epoch": 0.7365967365967366,
602
+ "grad_norm": 12.394021034240723,
603
+ "learning_rate": 9.789904399719124e-06,
604
+ "loss": 6.031880950927734,
605
+ "step": 395
606
+ },
607
+ {
608
+ "epoch": 0.745920745920746,
609
+ "grad_norm": 15.566425323486328,
610
+ "learning_rate": 9.778092090013416e-06,
611
+ "loss": 6.0966644287109375,
612
+ "step": 400
613
+ },
614
+ {
615
+ "epoch": 0.745920745920746,
616
+ "eval_com_accuracy": 0.184,
617
+ "eval_rew_accuracy": 0.364,
618
+ "step": 400
619
+ },
620
+ {
621
+ "epoch": 0.7552447552447552,
622
+ "grad_norm": 14.885455131530762,
623
+ "learning_rate": 9.76596425937874e-06,
624
+ "loss": 6.476510620117187,
625
+ "step": 405
626
+ },
627
+ {
628
+ "epoch": 0.7645687645687645,
629
+ "grad_norm": 16.627117156982422,
630
+ "learning_rate": 9.753521708675426e-06,
631
+ "loss": 5.9605262756347654,
632
+ "step": 410
633
+ },
634
+ {
635
+ "epoch": 0.7738927738927739,
636
+ "grad_norm": 14.517923355102539,
637
+ "learning_rate": 9.740765259546312e-06,
638
+ "loss": 6.1104694366455075,
639
+ "step": 415
640
+ },
641
+ {
642
+ "epoch": 0.7832167832167832,
643
+ "grad_norm": 12.007637977600098,
644
+ "learning_rate": 9.727695754362498e-06,
645
+ "loss": 5.964785766601563,
646
+ "step": 420
647
+ },
648
+ {
649
+ "epoch": 0.7925407925407926,
650
+ "grad_norm": 16.17314338684082,
651
+ "learning_rate": 9.714314056167711e-06,
652
+ "loss": 5.976337432861328,
653
+ "step": 425
654
+ },
655
+ {
656
+ "epoch": 0.8018648018648019,
657
+ "grad_norm": 13.246196746826172,
658
+ "learning_rate": 9.700621048621322e-06,
659
+ "loss": 5.936331939697266,
660
+ "step": 430
661
+ },
662
+ {
663
+ "epoch": 0.8111888111888111,
664
+ "grad_norm": 15.030324935913086,
665
+ "learning_rate": 9.686617635939988e-06,
666
+ "loss": 6.209032821655273,
667
+ "step": 435
668
+ },
669
+ {
670
+ "epoch": 0.8205128205128205,
671
+ "grad_norm": 13.853086471557617,
672
+ "learning_rate": 9.672304742837945e-06,
673
+ "loss": 5.985638427734375,
674
+ "step": 440
675
+ },
676
+ {
677
+ "epoch": 0.8298368298368298,
678
+ "grad_norm": 13.534188270568848,
679
+ "learning_rate": 9.657683314465948e-06,
680
+ "loss": 5.7971649169921875,
681
+ "step": 445
682
+ },
683
+ {
684
+ "epoch": 0.8391608391608392,
685
+ "grad_norm": 26.1879825592041,
686
+ "learning_rate": 9.642754316348846e-06,
687
+ "loss": 5.949985504150391,
688
+ "step": 450
689
+ },
690
+ {
691
+ "epoch": 0.8391608391608392,
692
+ "eval_com_accuracy": 0.176,
693
+ "eval_rew_accuracy": 0.34,
694
+ "step": 450
695
+ },
696
+ {
697
+ "epoch": 0.8484848484848485,
698
+ "grad_norm": 16.848834991455078,
699
+ "learning_rate": 9.627518734321837e-06,
700
+ "loss": 6.1193115234375,
701
+ "step": 455
702
+ },
703
+ {
704
+ "epoch": 0.8578088578088578,
705
+ "grad_norm": 30.765796661376953,
706
+ "learning_rate": 9.61197757446536e-06,
707
+ "loss": 5.74780158996582,
708
+ "step": 460
709
+ },
710
+ {
711
+ "epoch": 0.8671328671328671,
712
+ "grad_norm": 13.27775764465332,
713
+ "learning_rate": 9.596131863038664e-06,
714
+ "loss": 5.994970703125,
715
+ "step": 465
716
+ },
717
+ {
718
+ "epoch": 0.8764568764568764,
719
+ "grad_norm": 14.923792839050293,
720
+ "learning_rate": 9.579982646412039e-06,
721
+ "loss": 5.810473251342773,
722
+ "step": 470
723
+ },
724
+ {
725
+ "epoch": 0.8857808857808858,
726
+ "grad_norm": 14.351722717285156,
727
+ "learning_rate": 9.563530990997707e-06,
728
+ "loss": 6.09692268371582,
729
+ "step": 475
730
+ },
731
+ {
732
+ "epoch": 0.8951048951048951,
733
+ "grad_norm": 11.83583927154541,
734
+ "learning_rate": 9.546777983179421e-06,
735
+ "loss": 5.867227935791016,
736
+ "step": 480
737
+ },
738
+ {
739
+ "epoch": 0.9044289044289044,
740
+ "grad_norm": 19.415884017944336,
741
+ "learning_rate": 9.529724729240712e-06,
742
+ "loss": 5.834615707397461,
743
+ "step": 485
744
+ },
745
+ {
746
+ "epoch": 0.9137529137529138,
747
+ "grad_norm": 12.147261619567871,
748
+ "learning_rate": 9.512372355291838e-06,
749
+ "loss": 6.039286041259766,
750
+ "step": 490
751
+ },
752
+ {
753
+ "epoch": 0.9230769230769231,
754
+ "grad_norm": 12.706372261047363,
755
+ "learning_rate": 9.494722007195427e-06,
756
+ "loss": 6.06304702758789,
757
+ "step": 495
758
+ },
759
+ {
760
+ "epoch": 0.9324009324009324,
761
+ "grad_norm": 12.642041206359863,
762
+ "learning_rate": 9.476774850490803e-06,
763
+ "loss": 5.9729866027832035,
764
+ "step": 500
765
+ },
766
+ {
767
+ "epoch": 0.9324009324009324,
768
+ "eval_com_accuracy": 0.204,
769
+ "eval_rew_accuracy": 0.328,
770
+ "step": 500
771
+ },
772
+ {
773
+ "epoch": 0.9417249417249417,
774
+ "grad_norm": 12.66169548034668,
775
+ "learning_rate": 9.458532070317021e-06,
776
+ "loss": 5.8281097412109375,
777
+ "step": 505
778
+ },
779
+ {
780
+ "epoch": 0.951048951048951,
781
+ "grad_norm": 13.191854476928711,
782
+ "learning_rate": 9.439994871334614e-06,
783
+ "loss": 6.183546447753907,
784
+ "step": 510
785
+ },
786
+ {
787
+ "epoch": 0.9603729603729604,
788
+ "grad_norm": 12.52676010131836,
789
+ "learning_rate": 9.421164477646031e-06,
790
+ "loss": 5.785601043701172,
791
+ "step": 515
792
+ },
793
+ {
794
+ "epoch": 0.9696969696969697,
795
+ "grad_norm": 13.225418090820312,
796
+ "learning_rate": 9.402042132714817e-06,
797
+ "loss": 5.784825134277344,
798
+ "step": 520
799
+ },
800
+ {
801
+ "epoch": 0.9790209790209791,
802
+ "grad_norm": 12.035611152648926,
803
+ "learning_rate": 9.382629099283486e-06,
804
+ "loss": 5.9122272491455075,
805
+ "step": 525
806
+ },
807
+ {
808
+ "epoch": 0.9883449883449883,
809
+ "grad_norm": 12.166351318359375,
810
+ "learning_rate": 9.362926659290149e-06,
811
+ "loss": 5.790053939819336,
812
+ "step": 530
813
+ },
814
+ {
815
+ "epoch": 0.9976689976689976,
816
+ "grad_norm": 13.22154426574707,
817
+ "learning_rate": 9.342936113783855e-06,
818
+ "loss": 5.745006561279297,
819
+ "step": 535
820
+ },
821
+ {
822
+ "epoch": 1.0055944055944055,
823
+ "grad_norm": 13.12752628326416,
824
+ "learning_rate": 9.32265878283868e-06,
825
+ "loss": 5.1531005859375,
826
+ "step": 540
827
+ },
828
+ {
829
+ "epoch": 1.014918414918415,
830
+ "grad_norm": 15.964373588562012,
831
+ "learning_rate": 9.302096005466547e-06,
832
+ "loss": 5.7917236328125,
833
+ "step": 545
834
+ },
835
+ {
836
+ "epoch": 1.0242424242424242,
837
+ "grad_norm": 18.454797744750977,
838
+ "learning_rate": 9.281249139528816e-06,
839
+ "loss": 5.967070007324219,
840
+ "step": 550
841
+ },
842
+ {
843
+ "epoch": 1.0242424242424242,
844
+ "eval_com_accuracy": 0.212,
845
+ "eval_rew_accuracy": 0.352,
846
+ "step": 550
847
+ },
848
+ {
849
+ "epoch": 1.0335664335664336,
850
+ "grad_norm": 15.802419662475586,
851
+ "learning_rate": 9.260119561646614e-06,
852
+ "loss": 6.093529129028321,
853
+ "step": 555
854
+ },
855
+ {
856
+ "epoch": 1.0428904428904429,
857
+ "grad_norm": 21.95537757873535,
858
+ "learning_rate": 9.238708667109924e-06,
859
+ "loss": 5.489861297607422,
860
+ "step": 560
861
+ },
862
+ {
863
+ "epoch": 1.0522144522144523,
864
+ "grad_norm": 13.373199462890625,
865
+ "learning_rate": 9.217017869785453e-06,
866
+ "loss": 5.871435928344726,
867
+ "step": 565
868
+ },
869
+ {
870
+ "epoch": 1.0615384615384615,
871
+ "grad_norm": 13.36340618133545,
872
+ "learning_rate": 9.19504860202327e-06,
873
+ "loss": 5.805611038208008,
874
+ "step": 570
875
+ },
876
+ {
877
+ "epoch": 1.0708624708624708,
878
+ "grad_norm": 14.099553108215332,
879
+ "learning_rate": 9.172802314562214e-06,
880
+ "loss": 5.600634765625,
881
+ "step": 575
882
+ },
883
+ {
884
+ "epoch": 1.0801864801864802,
885
+ "grad_norm": 15.012040138244629,
886
+ "learning_rate": 9.150280476434098e-06,
887
+ "loss": 5.793732452392578,
888
+ "step": 580
889
+ },
890
+ {
891
+ "epoch": 1.0895104895104895,
892
+ "grad_norm": 15.98738956451416,
893
+ "learning_rate": 9.127484574866699e-06,
894
+ "loss": 5.8642620086669925,
895
+ "step": 585
896
+ },
897
+ {
898
+ "epoch": 1.098834498834499,
899
+ "grad_norm": 13.785572052001953,
900
+ "learning_rate": 9.104416115185557e-06,
901
+ "loss": 5.770995330810547,
902
+ "step": 590
903
+ },
904
+ {
905
+ "epoch": 1.1081585081585081,
906
+ "grad_norm": 12.145087242126465,
907
+ "learning_rate": 9.08107662071456e-06,
908
+ "loss": 5.850731277465821,
909
+ "step": 595
910
+ },
911
+ {
912
+ "epoch": 1.1174825174825176,
913
+ "grad_norm": 13.681862831115723,
914
+ "learning_rate": 9.057467632675357e-06,
915
+ "loss": 5.782034301757813,
916
+ "step": 600
917
+ },
918
+ {
919
+ "epoch": 1.1174825174825176,
920
+ "eval_com_accuracy": 0.22,
921
+ "eval_rew_accuracy": 0.348,
922
+ "step": 600
923
+ },
924
+ {
925
+ "epoch": 1.1268065268065268,
926
+ "grad_norm": 13.870027542114258,
927
+ "learning_rate": 9.033590710085584e-06,
928
+ "loss": 5.723427963256836,
929
+ "step": 605
930
+ },
931
+ {
932
+ "epoch": 1.136130536130536,
933
+ "grad_norm": 16.20020294189453,
934
+ "learning_rate": 9.00944742965592e-06,
935
+ "loss": 5.953633117675781,
936
+ "step": 610
937
+ },
938
+ {
939
+ "epoch": 1.1454545454545455,
940
+ "grad_norm": 15.48993968963623,
941
+ "learning_rate": 8.985039385685952e-06,
942
+ "loss": 5.809123992919922,
943
+ "step": 615
944
+ },
945
+ {
946
+ "epoch": 1.1547785547785547,
947
+ "grad_norm": 13.686211585998535,
948
+ "learning_rate": 8.960368189958913e-06,
949
+ "loss": 5.813122177124024,
950
+ "step": 620
951
+ },
952
+ {
953
+ "epoch": 1.1641025641025642,
954
+ "grad_norm": 13.733199119567871,
955
+ "learning_rate": 8.935435471635238e-06,
956
+ "loss": 5.6748512268066404,
957
+ "step": 625
958
+ },
959
+ {
960
+ "epoch": 1.1734265734265734,
961
+ "grad_norm": 12.450380325317383,
962
+ "learning_rate": 8.91024287714499e-06,
963
+ "loss": 5.6834667205810545,
964
+ "step": 630
965
+ },
966
+ {
967
+ "epoch": 1.1827505827505829,
968
+ "grad_norm": 14.111934661865234,
969
+ "learning_rate": 8.884792070079128e-06,
970
+ "loss": 5.680038833618164,
971
+ "step": 635
972
+ },
973
+ {
974
+ "epoch": 1.192074592074592,
975
+ "grad_norm": 13.175325393676758,
976
+ "learning_rate": 8.859084731079664e-06,
977
+ "loss": 5.445759201049805,
978
+ "step": 640
979
+ },
980
+ {
981
+ "epoch": 1.2013986013986013,
982
+ "grad_norm": 14.951041221618652,
983
+ "learning_rate": 8.833122557728667e-06,
984
+ "loss": 5.673246765136719,
985
+ "step": 645
986
+ },
987
+ {
988
+ "epoch": 1.2107226107226108,
989
+ "grad_norm": 12.364238739013672,
990
+ "learning_rate": 8.806907264436183e-06,
991
+ "loss": 5.234909439086914,
992
+ "step": 650
993
+ },
994
+ {
995
+ "epoch": 1.2107226107226108,
996
+ "eval_com_accuracy": 0.224,
997
+ "eval_rew_accuracy": 0.348,
998
+ "step": 650
999
+ },
1000
+ {
1001
+ "epoch": 1.22004662004662,
1002
+ "grad_norm": 13.065054893493652,
1003
+ "learning_rate": 8.780440582327005e-06,
1004
+ "loss": 5.442026519775391,
1005
+ "step": 655
1006
+ },
1007
+ {
1008
+ "epoch": 1.2293706293706295,
1009
+ "grad_norm": 13.872124671936035,
1010
+ "learning_rate": 8.75372425912637e-06,
1011
+ "loss": 5.736603546142578,
1012
+ "step": 660
1013
+ },
1014
+ {
1015
+ "epoch": 1.2386946386946387,
1016
+ "grad_norm": 13.677570343017578,
1017
+ "learning_rate": 8.726760059044542e-06,
1018
+ "loss": 5.951699447631836,
1019
+ "step": 665
1020
+ },
1021
+ {
1022
+ "epoch": 1.248018648018648,
1023
+ "grad_norm": 15.023405075073242,
1024
+ "learning_rate": 8.699549762660318e-06,
1025
+ "loss": 5.936520004272461,
1026
+ "step": 670
1027
+ },
1028
+ {
1029
+ "epoch": 1.2573426573426574,
1030
+ "grad_norm": 12.804817199707031,
1031
+ "learning_rate": 8.672095166803445e-06,
1032
+ "loss": 5.778074645996094,
1033
+ "step": 675
1034
+ },
1035
+ {
1036
+ "epoch": 1.2666666666666666,
1037
+ "grad_norm": 13.148968696594238,
1038
+ "learning_rate": 8.644398084435959e-06,
1039
+ "loss": 5.7417655944824215,
1040
+ "step": 680
1041
+ },
1042
+ {
1043
+ "epoch": 1.275990675990676,
1044
+ "grad_norm": 14.131410598754883,
1045
+ "learning_rate": 8.616460344532483e-06,
1046
+ "loss": 5.58878173828125,
1047
+ "step": 685
1048
+ },
1049
+ {
1050
+ "epoch": 1.2853146853146853,
1051
+ "grad_norm": 14.100456237792969,
1052
+ "learning_rate": 8.588283791959437e-06,
1053
+ "loss": 5.546084976196289,
1054
+ "step": 690
1055
+ },
1056
+ {
1057
+ "epoch": 1.2946386946386945,
1058
+ "grad_norm": 13.94593620300293,
1059
+ "learning_rate": 8.559870287353214e-06,
1060
+ "loss": 6.0555156707763675,
1061
+ "step": 695
1062
+ },
1063
+ {
1064
+ "epoch": 1.303962703962704,
1065
+ "grad_norm": 18.369823455810547,
1066
+ "learning_rate": 8.531221706997316e-06,
1067
+ "loss": 5.930012512207031,
1068
+ "step": 700
1069
+ },
1070
+ {
1071
+ "epoch": 1.303962703962704,
1072
+ "eval_com_accuracy": 0.24,
1073
+ "eval_rew_accuracy": 0.364,
1074
+ "step": 700
1075
+ },
1076
+ {
1077
+ "epoch": 1.3132867132867134,
1078
+ "grad_norm": 14.022618293762207,
1079
+ "learning_rate": 8.502339942698463e-06,
1080
+ "loss": 5.831372833251953,
1081
+ "step": 705
1082
+ },
1083
+ {
1084
+ "epoch": 1.3226107226107227,
1085
+ "grad_norm": 12.844898223876953,
1086
+ "learning_rate": 8.473226901661643e-06,
1087
+ "loss": 5.503532409667969,
1088
+ "step": 710
1089
+ },
1090
+ {
1091
+ "epoch": 1.3319347319347319,
1092
+ "grad_norm": 13.991181373596191,
1093
+ "learning_rate": 8.443884506364192e-06,
1094
+ "loss": 5.344602966308594,
1095
+ "step": 715
1096
+ },
1097
+ {
1098
+ "epoch": 1.3412587412587413,
1099
+ "grad_norm": 13.290801048278809,
1100
+ "learning_rate": 8.414314694428842e-06,
1101
+ "loss": 5.7142791748046875,
1102
+ "step": 720
1103
+ },
1104
+ {
1105
+ "epoch": 1.3505827505827506,
1106
+ "grad_norm": 13.986117362976074,
1107
+ "learning_rate": 8.384519418495755e-06,
1108
+ "loss": 5.509880065917969,
1109
+ "step": 725
1110
+ },
1111
+ {
1112
+ "epoch": 1.3599067599067598,
1113
+ "grad_norm": 17.483638763427734,
1114
+ "learning_rate": 8.354500646093592e-06,
1115
+ "loss": 5.769047546386719,
1116
+ "step": 730
1117
+ },
1118
+ {
1119
+ "epoch": 1.3692307692307693,
1120
+ "grad_norm": 12.383395195007324,
1121
+ "learning_rate": 8.324260359509594e-06,
1122
+ "loss": 5.693521881103516,
1123
+ "step": 735
1124
+ },
1125
+ {
1126
+ "epoch": 1.3785547785547785,
1127
+ "grad_norm": 12.225541114807129,
1128
+ "learning_rate": 8.29380055565866e-06,
1129
+ "loss": 5.618255233764648,
1130
+ "step": 740
1131
+ },
1132
+ {
1133
+ "epoch": 1.387878787878788,
1134
+ "grad_norm": 11.737737655639648,
1135
+ "learning_rate": 8.263123245951504e-06,
1136
+ "loss": 5.702220916748047,
1137
+ "step": 745
1138
+ },
1139
+ {
1140
+ "epoch": 1.3972027972027972,
1141
+ "grad_norm": 14.235527992248535,
1142
+ "learning_rate": 8.232230456161819e-06,
1143
+ "loss": 5.744013977050781,
1144
+ "step": 750
1145
+ },
1146
+ {
1147
+ "epoch": 1.3972027972027972,
1148
+ "eval_com_accuracy": 0.24,
1149
+ "eval_rew_accuracy": 0.368,
1150
+ "step": 750
1151
+ },
1152
+ {
1153
+ "epoch": 1.4065268065268066,
1154
+ "grad_norm": 12.433022499084473,
1155
+ "learning_rate": 8.201124226292505e-06,
1156
+ "loss": 5.6122283935546875,
1157
+ "step": 755
1158
+ },
1159
+ {
1160
+ "epoch": 1.4158508158508158,
1161
+ "grad_norm": 13.874029159545898,
1162
+ "learning_rate": 8.169806610440966e-06,
1163
+ "loss": 5.530184936523438,
1164
+ "step": 760
1165
+ },
1166
+ {
1167
+ "epoch": 1.425174825174825,
1168
+ "grad_norm": 12.640862464904785,
1169
+ "learning_rate": 8.138279676663458e-06,
1170
+ "loss": 5.602608489990234,
1171
+ "step": 765
1172
+ },
1173
+ {
1174
+ "epoch": 1.4344988344988345,
1175
+ "grad_norm": 13.672120094299316,
1176
+ "learning_rate": 8.106545506838533e-06,
1177
+ "loss": 5.971489715576172,
1178
+ "step": 770
1179
+ },
1180
+ {
1181
+ "epoch": 1.4438228438228438,
1182
+ "grad_norm": 12.973994255065918,
1183
+ "learning_rate": 8.074606196529554e-06,
1184
+ "loss": 5.967403411865234,
1185
+ "step": 775
1186
+ },
1187
+ {
1188
+ "epoch": 1.4531468531468532,
1189
+ "grad_norm": 12.31808090209961,
1190
+ "learning_rate": 8.042463854846325e-06,
1191
+ "loss": 5.71468505859375,
1192
+ "step": 780
1193
+ },
1194
+ {
1195
+ "epoch": 1.4624708624708624,
1196
+ "grad_norm": 12.416245460510254,
1197
+ "learning_rate": 8.010120604305806e-06,
1198
+ "loss": 5.836771392822266,
1199
+ "step": 785
1200
+ },
1201
+ {
1202
+ "epoch": 1.471794871794872,
1203
+ "grad_norm": 13.020674705505371,
1204
+ "learning_rate": 7.977578580691963e-06,
1205
+ "loss": 5.71131591796875,
1206
+ "step": 790
1207
+ },
1208
+ {
1209
+ "epoch": 1.4811188811188811,
1210
+ "grad_norm": 13.946771621704102,
1211
+ "learning_rate": 7.944839932914718e-06,
1212
+ "loss": 5.564648818969727,
1213
+ "step": 795
1214
+ },
1215
+ {
1216
+ "epoch": 1.4904428904428904,
1217
+ "grad_norm": 12.287398338317871,
1218
+ "learning_rate": 7.91190682286806e-06,
1219
+ "loss": 5.753592300415039,
1220
+ "step": 800
1221
+ },
1222
+ {
1223
+ "epoch": 1.4904428904428904,
1224
+ "eval_com_accuracy": 0.236,
1225
+ "eval_rew_accuracy": 0.384,
1226
+ "step": 800
1227
+ },
1228
+ {
1229
+ "epoch": 1.4997668997668998,
1230
+ "grad_norm": 20.467731475830078,
1231
+ "learning_rate": 7.878781425287277e-06,
1232
+ "loss": 5.64927978515625,
1233
+ "step": 805
1234
+ },
1235
+ {
1236
+ "epoch": 1.509090909090909,
1237
+ "grad_norm": 13.811100006103516,
1238
+ "learning_rate": 7.84546592760535e-06,
1239
+ "loss": 5.415856170654297,
1240
+ "step": 810
1241
+ },
1242
+ {
1243
+ "epoch": 1.5184149184149183,
1244
+ "grad_norm": 12.4107666015625,
1245
+ "learning_rate": 7.811962529808499e-06,
1246
+ "loss": 5.767454147338867,
1247
+ "step": 815
1248
+ },
1249
+ {
1250
+ "epoch": 1.5277389277389277,
1251
+ "grad_norm": 14.148603439331055,
1252
+ "learning_rate": 7.778273444290921e-06,
1253
+ "loss": 5.463053131103516,
1254
+ "step": 820
1255
+ },
1256
+ {
1257
+ "epoch": 1.5370629370629372,
1258
+ "grad_norm": 13.375722885131836,
1259
+ "learning_rate": 7.744400895708683e-06,
1260
+ "loss": 5.625373077392578,
1261
+ "step": 825
1262
+ },
1263
+ {
1264
+ "epoch": 1.5463869463869464,
1265
+ "grad_norm": 12.991719245910645,
1266
+ "learning_rate": 7.710347120832821e-06,
1267
+ "loss": 5.6271202087402346,
1268
+ "step": 830
1269
+ },
1270
+ {
1271
+ "epoch": 1.5557109557109556,
1272
+ "grad_norm": 12.906146049499512,
1273
+ "learning_rate": 7.676114368401635e-06,
1274
+ "loss": 5.5160057067871096,
1275
+ "step": 835
1276
+ },
1277
+ {
1278
+ "epoch": 1.565034965034965,
1279
+ "grad_norm": 12.344596862792969,
1280
+ "learning_rate": 7.641704898972194e-06,
1281
+ "loss": 5.506198120117188,
1282
+ "step": 840
1283
+ },
1284
+ {
1285
+ "epoch": 1.5743589743589743,
1286
+ "grad_norm": 13.285745620727539,
1287
+ "learning_rate": 7.607120984771058e-06,
1288
+ "loss": 5.7151634216308596,
1289
+ "step": 845
1290
+ },
1291
+ {
1292
+ "epoch": 1.5836829836829835,
1293
+ "grad_norm": 12.432035446166992,
1294
+ "learning_rate": 7.572364909544235e-06,
1295
+ "loss": 5.852275085449219,
1296
+ "step": 850
1297
+ },
1298
+ {
1299
+ "epoch": 1.5836829836829835,
1300
+ "eval_com_accuracy": 0.228,
1301
+ "eval_rew_accuracy": 0.332,
1302
+ "step": 850
1303
+ },
1304
+ {
1305
+ "epoch": 1.593006993006993,
1306
+ "grad_norm": 12.581634521484375,
1307
+ "learning_rate": 7.537438968406372e-06,
1308
+ "loss": 5.735688018798828,
1309
+ "step": 855
1310
+ },
1311
+ {
1312
+ "epoch": 1.6023310023310025,
1313
+ "grad_norm": 13.161237716674805,
1314
+ "learning_rate": 7.502345467689202e-06,
1315
+ "loss": 5.648350524902344,
1316
+ "step": 860
1317
+ },
1318
+ {
1319
+ "epoch": 1.6116550116550117,
1320
+ "grad_norm": 12.48270034790039,
1321
+ "learning_rate": 7.4670867247892346e-06,
1322
+ "loss": 5.635168075561523,
1323
+ "step": 865
1324
+ },
1325
+ {
1326
+ "epoch": 1.620979020979021,
1327
+ "grad_norm": 13.835477828979492,
1328
+ "learning_rate": 7.431665068014737e-06,
1329
+ "loss": 5.548571014404297,
1330
+ "step": 870
1331
+ },
1332
+ {
1333
+ "epoch": 1.6303030303030304,
1334
+ "grad_norm": 12.403617858886719,
1335
+ "learning_rate": 7.396082836431981e-06,
1336
+ "loss": 5.7486827850341795,
1337
+ "step": 875
1338
+ },
1339
+ {
1340
+ "epoch": 1.6396270396270396,
1341
+ "grad_norm": 13.730851173400879,
1342
+ "learning_rate": 7.3603423797107845e-06,
1343
+ "loss": 5.288154602050781,
1344
+ "step": 880
1345
+ },
1346
+ {
1347
+ "epoch": 1.6489510489510488,
1348
+ "grad_norm": 14.688888549804688,
1349
+ "learning_rate": 7.324446057969346e-06,
1350
+ "loss": 5.648311614990234,
1351
+ "step": 885
1352
+ },
1353
+ {
1354
+ "epoch": 1.6582750582750583,
1355
+ "grad_norm": 13.311734199523926,
1356
+ "learning_rate": 7.288396241618401e-06,
1357
+ "loss": 5.636775207519531,
1358
+ "step": 890
1359
+ },
1360
+ {
1361
+ "epoch": 1.6675990675990677,
1362
+ "grad_norm": 12.776606559753418,
1363
+ "learning_rate": 7.252195311204689e-06,
1364
+ "loss": 5.666929626464844,
1365
+ "step": 895
1366
+ },
1367
+ {
1368
+ "epoch": 1.676923076923077,
1369
+ "grad_norm": 14.130080223083496,
1370
+ "learning_rate": 7.215845657253755e-06,
1371
+ "loss": 5.534748840332031,
1372
+ "step": 900
1373
+ },
1374
+ {
1375
+ "epoch": 1.676923076923077,
1376
+ "eval_com_accuracy": 0.264,
1377
+ "eval_rew_accuracy": 0.364,
1378
+ "step": 900
1379
+ },
1380
+ {
1381
+ "epoch": 1.6862470862470862,
1382
+ "grad_norm": 14.159326553344727,
1383
+ "learning_rate": 7.1793496801120885e-06,
1384
+ "loss": 5.652375793457031,
1385
+ "step": 905
1386
+ },
1387
+ {
1388
+ "epoch": 1.6955710955710956,
1389
+ "grad_norm": 13.113655090332031,
1390
+ "learning_rate": 7.1427097897886225e-06,
1391
+ "loss": 5.383832168579102,
1392
+ "step": 910
1393
+ },
1394
+ {
1395
+ "epoch": 1.7048951048951049,
1396
+ "grad_norm": 14.203001022338867,
1397
+ "learning_rate": 7.105928405795584e-06,
1398
+ "loss": 5.6499076843261715,
1399
+ "step": 915
1400
+ },
1401
+ {
1402
+ "epoch": 1.714219114219114,
1403
+ "grad_norm": 12.1084623336792,
1404
+ "learning_rate": 7.069007956988718e-06,
1405
+ "loss": 5.560025787353515,
1406
+ "step": 920
1407
+ },
1408
+ {
1409
+ "epoch": 1.7235431235431236,
1410
+ "grad_norm": 13.819426536560059,
1411
+ "learning_rate": 7.031950881406913e-06,
1412
+ "loss": 5.535141372680664,
1413
+ "step": 925
1414
+ },
1415
+ {
1416
+ "epoch": 1.732867132867133,
1417
+ "grad_norm": 17.341110229492188,
1418
+ "learning_rate": 6.994759626111189e-06,
1419
+ "loss": 5.697111511230469,
1420
+ "step": 930
1421
+ },
1422
+ {
1423
+ "epoch": 1.7421911421911422,
1424
+ "grad_norm": 16.404672622680664,
1425
+ "learning_rate": 6.957436647023117e-06,
1426
+ "loss": 5.4155632019042965,
1427
+ "step": 935
1428
+ },
1429
+ {
1430
+ "epoch": 1.7515151515151515,
1431
+ "grad_norm": 13.115015029907227,
1432
+ "learning_rate": 6.919984408762632e-06,
1433
+ "loss": 5.758349990844726,
1434
+ "step": 940
1435
+ },
1436
+ {
1437
+ "epoch": 1.760839160839161,
1438
+ "grad_norm": 13.850481986999512,
1439
+ "learning_rate": 6.882405384485294e-06,
1440
+ "loss": 5.69927864074707,
1441
+ "step": 945
1442
+ },
1443
+ {
1444
+ "epoch": 1.7701631701631702,
1445
+ "grad_norm": 12.921819686889648,
1446
+ "learning_rate": 6.844702055718964e-06,
1447
+ "loss": 5.631483459472657,
1448
+ "step": 950
1449
+ },
1450
+ {
1451
+ "epoch": 1.7701631701631702,
1452
+ "eval_com_accuracy": 0.26,
1453
+ "eval_rew_accuracy": 0.352,
1454
+ "step": 950
1455
+ },
1456
+ {
1457
+ "epoch": 1.7794871794871794,
1458
+ "grad_norm": 13.401888847351074,
1459
+ "learning_rate": 6.806876912199945e-06,
1460
+ "loss": 5.824296569824218,
1461
+ "step": 955
1462
+ },
1463
+ {
1464
+ "epoch": 1.7888111888111888,
1465
+ "grad_norm": 13.481993675231934,
1466
+ "learning_rate": 6.768932451708557e-06,
1467
+ "loss": 5.752721786499023,
1468
+ "step": 960
1469
+ },
1470
+ {
1471
+ "epoch": 1.7981351981351983,
1472
+ "grad_norm": 14.022424697875977,
1473
+ "learning_rate": 6.730871179904218e-06,
1474
+ "loss": 5.453369522094727,
1475
+ "step": 965
1476
+ },
1477
+ {
1478
+ "epoch": 1.8074592074592073,
1479
+ "grad_norm": 13.432122230529785,
1480
+ "learning_rate": 6.692695610159966e-06,
1481
+ "loss": 5.664297103881836,
1482
+ "step": 970
1483
+ },
1484
+ {
1485
+ "epoch": 1.8167832167832167,
1486
+ "grad_norm": 14.292946815490723,
1487
+ "learning_rate": 6.6544082633964955e-06,
1488
+ "loss": 5.576699066162109,
1489
+ "step": 975
1490
+ },
1491
+ {
1492
+ "epoch": 1.8261072261072262,
1493
+ "grad_norm": 14.256867408752441,
1494
+ "learning_rate": 6.6160116679156874e-06,
1495
+ "loss": 5.551004791259766,
1496
+ "step": 980
1497
+ },
1498
+ {
1499
+ "epoch": 1.8354312354312354,
1500
+ "grad_norm": 14.11919116973877,
1501
+ "learning_rate": 6.577508359233653e-06,
1502
+ "loss": 5.580959320068359,
1503
+ "step": 985
1504
+ },
1505
+ {
1506
+ "epoch": 1.8447552447552447,
1507
+ "grad_norm": 14.006019592285156,
1508
+ "learning_rate": 6.538900879913301e-06,
1509
+ "loss": 5.443265533447265,
1510
+ "step": 990
1511
+ },
1512
+ {
1513
+ "epoch": 1.8540792540792541,
1514
+ "grad_norm": 11.976597785949707,
1515
+ "learning_rate": 6.500191779396439e-06,
1516
+ "loss": 5.410481643676758,
1517
+ "step": 995
1518
+ },
1519
+ {
1520
+ "epoch": 1.8634032634032636,
1521
+ "grad_norm": 14.439790725708008,
1522
+ "learning_rate": 6.461383613835427e-06,
1523
+ "loss": 5.3311511993408205,
1524
+ "step": 1000
1525
+ },
1526
+ {
1527
+ "epoch": 1.8634032634032636,
1528
+ "eval_com_accuracy": 0.24,
1529
+ "eval_rew_accuracy": 0.356,
1530
+ "step": 1000
1531
+ },
1532
+ {
1533
+ "epoch": 1.8727272727272726,
1534
+ "grad_norm": 15.29392147064209,
1535
+ "learning_rate": 6.4224789459243705e-06,
1536
+ "loss": 5.477576446533203,
1537
+ "step": 1005
1538
+ },
1539
+ {
1540
+ "epoch": 1.882051282051282,
1541
+ "grad_norm": 14.032716751098633,
1542
+ "learning_rate": 6.383480344729903e-06,
1543
+ "loss": 5.458187103271484,
1544
+ "step": 1010
1545
+ },
1546
+ {
1547
+ "epoch": 1.8913752913752915,
1548
+ "grad_norm": 11.861150741577148,
1549
+ "learning_rate": 6.344390385521534e-06,
1550
+ "loss": 5.806562423706055,
1551
+ "step": 1015
1552
+ },
1553
+ {
1554
+ "epoch": 1.9006993006993007,
1555
+ "grad_norm": 14.015438079833984,
1556
+ "learning_rate": 6.305211649601595e-06,
1557
+ "loss": 5.2158203125,
1558
+ "step": 1020
1559
+ },
1560
+ {
1561
+ "epoch": 1.91002331002331,
1562
+ "grad_norm": 15.672555923461914,
1563
+ "learning_rate": 6.265946724134782e-06,
1564
+ "loss": 5.469319915771484,
1565
+ "step": 1025
1566
+ },
1567
+ {
1568
+ "epoch": 1.9193473193473194,
1569
+ "grad_norm": 13.891338348388672,
1570
+ "learning_rate": 6.226598201977299e-06,
1571
+ "loss": 5.495826721191406,
1572
+ "step": 1030
1573
+ },
1574
+ {
1575
+ "epoch": 1.9286713286713286,
1576
+ "grad_norm": 12.441986083984375,
1577
+ "learning_rate": 6.187168681505666e-06,
1578
+ "loss": 5.466391372680664,
1579
+ "step": 1035
1580
+ },
1581
+ {
1582
+ "epoch": 1.9379953379953379,
1583
+ "grad_norm": 13.905447006225586,
1584
+ "learning_rate": 6.1476607664451105e-06,
1585
+ "loss": 5.558423233032227,
1586
+ "step": 1040
1587
+ },
1588
+ {
1589
+ "epoch": 1.9473193473193473,
1590
+ "grad_norm": 14.817802429199219,
1591
+ "learning_rate": 6.1080770656976444e-06,
1592
+ "loss": 5.50462646484375,
1593
+ "step": 1045
1594
+ },
1595
+ {
1596
+ "epoch": 1.9566433566433568,
1597
+ "grad_norm": 14.293425559997559,
1598
+ "learning_rate": 6.068420193169779e-06,
1599
+ "loss": 5.567475128173828,
1600
+ "step": 1050
1601
+ },
1602
+ {
1603
+ "epoch": 1.9566433566433568,
1604
+ "eval_com_accuracy": 0.26,
1605
+ "eval_rew_accuracy": 0.384,
1606
+ "step": 1050
1607
+ },
1608
+ {
1609
+ "epoch": 1.965967365967366,
1610
+ "grad_norm": 13.285664558410645,
1611
+ "learning_rate": 6.0286927675999205e-06,
1612
+ "loss": 5.3831031799316404,
1613
+ "step": 1055
1614
+ },
1615
+ {
1616
+ "epoch": 1.9752913752913752,
1617
+ "grad_norm": 12.634699821472168,
1618
+ "learning_rate": 5.98889741238544e-06,
1619
+ "loss": 5.4307403564453125,
1620
+ "step": 1060
1621
+ },
1622
+ {
1623
+ "epoch": 1.9846153846153847,
1624
+ "grad_norm": 13.824172019958496,
1625
+ "learning_rate": 5.949036755409432e-06,
1626
+ "loss": 5.559865570068359,
1627
+ "step": 1065
1628
+ },
1629
+ {
1630
+ "epoch": 1.993939393939394,
1631
+ "grad_norm": 14.028116226196289,
1632
+ "learning_rate": 5.909113428867195e-06,
1633
+ "loss": 5.506551361083984,
1634
+ "step": 1070
1635
+ },
1636
+ {
1637
+ "epoch": 2.001864801864802,
1638
+ "grad_norm": 15.495360374450684,
1639
+ "learning_rate": 5.869130069092401e-06,
1640
+ "loss": 4.655789947509765,
1641
+ "step": 1075
1642
+ },
1643
+ {
1644
+ "epoch": 2.011188811188811,
1645
+ "grad_norm": 14.094182014465332,
1646
+ "learning_rate": 5.829089316383018e-06,
1647
+ "loss": 5.403445434570313,
1648
+ "step": 1080
1649
+ },
1650
+ {
1651
+ "epoch": 2.0205128205128204,
1652
+ "grad_norm": 13.709051132202148,
1653
+ "learning_rate": 5.7889938148269445e-06,
1654
+ "loss": 5.5024055480957035,
1655
+ "step": 1085
1656
+ },
1657
+ {
1658
+ "epoch": 2.02983682983683,
1659
+ "grad_norm": 13.718189239501953,
1660
+ "learning_rate": 5.748846212127421e-06,
1661
+ "loss": 5.404336547851562,
1662
+ "step": 1090
1663
+ },
1664
+ {
1665
+ "epoch": 2.0391608391608393,
1666
+ "grad_norm": 14.198376655578613,
1667
+ "learning_rate": 5.708649159428181e-06,
1668
+ "loss": 5.498197937011719,
1669
+ "step": 1095
1670
+ },
1671
+ {
1672
+ "epoch": 2.0484848484848484,
1673
+ "grad_norm": 12.810367584228516,
1674
+ "learning_rate": 5.668405311138382e-06,
1675
+ "loss": 5.639860534667969,
1676
+ "step": 1100
1677
+ },
1678
+ {
1679
+ "epoch": 2.0484848484848484,
1680
+ "eval_com_accuracy": 0.264,
1681
+ "eval_rew_accuracy": 0.392,
1682
+ "step": 1100
1683
+ },
1684
+ {
1685
+ "epoch": 2.057808857808858,
1686
+ "grad_norm": 13.649062156677246,
1687
+ "learning_rate": 5.628117324757326e-06,
1688
+ "loss": 5.567802429199219,
1689
+ "step": 1105
1690
+ },
1691
+ {
1692
+ "epoch": 2.0671328671328673,
1693
+ "grad_norm": 15.412623405456543,
1694
+ "learning_rate": 5.587787860698975e-06,
1695
+ "loss": 5.585782623291015,
1696
+ "step": 1110
1697
+ },
1698
+ {
1699
+ "epoch": 2.0764568764568763,
1700
+ "grad_norm": 13.465250968933105,
1701
+ "learning_rate": 5.547419582116259e-06,
1702
+ "loss": 5.357003021240234,
1703
+ "step": 1115
1704
+ },
1705
+ {
1706
+ "epoch": 2.0857808857808857,
1707
+ "grad_norm": 14.019501686096191,
1708
+ "learning_rate": 5.507015154725226e-06,
1709
+ "loss": 5.621536636352539,
1710
+ "step": 1120
1711
+ },
1712
+ {
1713
+ "epoch": 2.095104895104895,
1714
+ "grad_norm": 15.479727745056152,
1715
+ "learning_rate": 5.466577246629006e-06,
1716
+ "loss": 5.355072784423828,
1717
+ "step": 1125
1718
+ },
1719
+ {
1720
+ "epoch": 2.1044289044289046,
1721
+ "grad_norm": 13.079503059387207,
1722
+ "learning_rate": 5.426108528141627e-06,
1723
+ "loss": 5.450039672851562,
1724
+ "step": 1130
1725
+ },
1726
+ {
1727
+ "epoch": 2.1137529137529136,
1728
+ "grad_norm": 16.310596466064453,
1729
+ "learning_rate": 5.385611671611676e-06,
1730
+ "loss": 5.359495162963867,
1731
+ "step": 1135
1732
+ },
1733
+ {
1734
+ "epoch": 2.123076923076923,
1735
+ "grad_norm": 15.107529640197754,
1736
+ "learning_rate": 5.345089351245834e-06,
1737
+ "loss": 5.5543464660644535,
1738
+ "step": 1140
1739
+ },
1740
+ {
1741
+ "epoch": 2.1324009324009325,
1742
+ "grad_norm": 14.484854698181152,
1743
+ "learning_rate": 5.304544242932288e-06,
1744
+ "loss": 5.393303680419922,
1745
+ "step": 1145
1746
+ },
1747
+ {
1748
+ "epoch": 2.1417249417249415,
1749
+ "grad_norm": 13.286919593811035,
1750
+ "learning_rate": 5.26397902406402e-06,
1751
+ "loss": 5.56396369934082,
1752
+ "step": 1150
1753
+ },
1754
+ {
1755
+ "epoch": 2.1417249417249415,
1756
+ "eval_com_accuracy": 0.272,
1757
+ "eval_rew_accuracy": 0.372,
1758
+ "step": 1150
1759
+ },
1760
+ {
1761
+ "epoch": 2.151048951048951,
1762
+ "grad_norm": 14.213571548461914,
1763
+ "learning_rate": 5.223396373362013e-06,
1764
+ "loss": 5.63990478515625,
1765
+ "step": 1155
1766
+ },
1767
+ {
1768
+ "epoch": 2.1603729603729604,
1769
+ "grad_norm": 14.445123672485352,
1770
+ "learning_rate": 5.182798970698361e-06,
1771
+ "loss": 5.836676788330078,
1772
+ "step": 1160
1773
+ },
1774
+ {
1775
+ "epoch": 2.16969696969697,
1776
+ "grad_norm": 14.63541030883789,
1777
+ "learning_rate": 5.142189496919302e-06,
1778
+ "loss": 5.595640182495117,
1779
+ "step": 1165
1780
+ },
1781
+ {
1782
+ "epoch": 2.179020979020979,
1783
+ "grad_norm": 13.398268699645996,
1784
+ "learning_rate": 5.101570633668185e-06,
1785
+ "loss": 5.657070159912109,
1786
+ "step": 1170
1787
+ },
1788
+ {
1789
+ "epoch": 2.1883449883449884,
1790
+ "grad_norm": 13.70476245880127,
1791
+ "learning_rate": 5.060945063208399e-06,
1792
+ "loss": 5.337051010131836,
1793
+ "step": 1175
1794
+ },
1795
+ {
1796
+ "epoch": 2.197668997668998,
1797
+ "grad_norm": 13.812256813049316,
1798
+ "learning_rate": 5.02031546824624e-06,
1799
+ "loss": 5.393893051147461,
1800
+ "step": 1180
1801
+ },
1802
+ {
1803
+ "epoch": 2.206993006993007,
1804
+ "grad_norm": 14.151784896850586,
1805
+ "learning_rate": 4.979684531753761e-06,
1806
+ "loss": 5.489350128173828,
1807
+ "step": 1185
1808
+ },
1809
+ {
1810
+ "epoch": 2.2163170163170163,
1811
+ "grad_norm": 14.830500602722168,
1812
+ "learning_rate": 4.9390549367916004e-06,
1813
+ "loss": 5.4119518280029295,
1814
+ "step": 1190
1815
+ },
1816
+ {
1817
+ "epoch": 2.2256410256410257,
1818
+ "grad_norm": 14.537983894348145,
1819
+ "learning_rate": 4.898429366331815e-06,
1820
+ "loss": 5.393406677246094,
1821
+ "step": 1195
1822
+ },
1823
+ {
1824
+ "epoch": 2.234965034965035,
1825
+ "grad_norm": 12.427031517028809,
1826
+ "learning_rate": 4.857810503080701e-06,
1827
+ "loss": 5.359439849853516,
1828
+ "step": 1200
1829
+ },
1830
+ {
1831
+ "epoch": 2.234965034965035,
1832
+ "eval_com_accuracy": 0.256,
1833
+ "eval_rew_accuracy": 0.368,
1834
+ "step": 1200
1835
+ },
1836
+ {
1837
+ "epoch": 2.244289044289044,
1838
+ "grad_norm": 13.743568420410156,
1839
+ "learning_rate": 4.81720102930164e-06,
1840
+ "loss": 5.248456954956055,
1841
+ "step": 1205
1842
+ },
1843
+ {
1844
+ "epoch": 2.2536130536130536,
1845
+ "grad_norm": 15.313255310058594,
1846
+ "learning_rate": 4.776603626637988e-06,
1847
+ "loss": 5.48780517578125,
1848
+ "step": 1210
1849
+ },
1850
+ {
1851
+ "epoch": 2.262937062937063,
1852
+ "grad_norm": 14.26356029510498,
1853
+ "learning_rate": 4.736020975935981e-06,
1854
+ "loss": 5.3895729064941404,
1855
+ "step": 1215
1856
+ },
1857
+ {
1858
+ "epoch": 2.272261072261072,
1859
+ "grad_norm": 14.363275527954102,
1860
+ "learning_rate": 4.695455757067712e-06,
1861
+ "loss": 5.294971084594726,
1862
+ "step": 1220
1863
+ },
1864
+ {
1865
+ "epoch": 2.2815850815850816,
1866
+ "grad_norm": 14.772239685058594,
1867
+ "learning_rate": 4.6549106487541666e-06,
1868
+ "loss": 5.744273376464844,
1869
+ "step": 1225
1870
+ },
1871
+ {
1872
+ "epoch": 2.290909090909091,
1873
+ "grad_norm": 13.530016899108887,
1874
+ "learning_rate": 4.614388328388327e-06,
1875
+ "loss": 5.28902587890625,
1876
+ "step": 1230
1877
+ },
1878
+ {
1879
+ "epoch": 2.3002331002331005,
1880
+ "grad_norm": 13.482331275939941,
1881
+ "learning_rate": 4.573891471858375e-06,
1882
+ "loss": 5.445513153076172,
1883
+ "step": 1235
1884
+ },
1885
+ {
1886
+ "epoch": 2.3095571095571095,
1887
+ "grad_norm": 13.693358421325684,
1888
+ "learning_rate": 4.533422753370995e-06,
1889
+ "loss": 5.312195205688477,
1890
+ "step": 1240
1891
+ },
1892
+ {
1893
+ "epoch": 2.318881118881119,
1894
+ "grad_norm": 14.169803619384766,
1895
+ "learning_rate": 4.492984845274774e-06,
1896
+ "loss": 5.5245819091796875,
1897
+ "step": 1245
1898
+ },
1899
+ {
1900
+ "epoch": 2.3282051282051284,
1901
+ "grad_norm": 26.758739471435547,
1902
+ "learning_rate": 4.4525804178837425e-06,
1903
+ "loss": 5.587922668457031,
1904
+ "step": 1250
1905
+ },
1906
+ {
1907
+ "epoch": 2.3282051282051284,
1908
+ "eval_com_accuracy": 0.26,
1909
+ "eval_rew_accuracy": 0.336,
1910
+ "step": 1250
1911
+ },
1912
+ {
1913
+ "epoch": 2.3375291375291374,
1914
+ "grad_norm": 15.485888481140137,
1915
+ "learning_rate": 4.412212139301027e-06,
1916
+ "loss": 5.402701187133789,
1917
+ "step": 1255
1918
+ },
1919
+ {
1920
+ "epoch": 2.346853146853147,
1921
+ "grad_norm": 16.002370834350586,
1922
+ "learning_rate": 4.371882675242674e-06,
1923
+ "loss": 5.409712219238282,
1924
+ "step": 1260
1925
+ },
1926
+ {
1927
+ "epoch": 2.3561771561771563,
1928
+ "grad_norm": 16.42519760131836,
1929
+ "learning_rate": 4.331594688861619e-06,
1930
+ "loss": 5.624014282226563,
1931
+ "step": 1265
1932
+ },
1933
+ {
1934
+ "epoch": 2.3655011655011657,
1935
+ "grad_norm": 16.416702270507812,
1936
+ "learning_rate": 4.291350840571821e-06,
1937
+ "loss": 5.3733673095703125,
1938
+ "step": 1270
1939
+ },
1940
+ {
1941
+ "epoch": 2.3748251748251747,
1942
+ "grad_norm": 13.191758155822754,
1943
+ "learning_rate": 4.251153787872579e-06,
1944
+ "loss": 5.316907501220703,
1945
+ "step": 1275
1946
+ },
1947
+ {
1948
+ "epoch": 2.384149184149184,
1949
+ "grad_norm": 14.480209350585938,
1950
+ "learning_rate": 4.211006185173056e-06,
1951
+ "loss": 5.500685501098633,
1952
+ "step": 1280
1953
+ },
1954
+ {
1955
+ "epoch": 2.3934731934731936,
1956
+ "grad_norm": 15.625597953796387,
1957
+ "learning_rate": 4.170910683616985e-06,
1958
+ "loss": 5.321009826660156,
1959
+ "step": 1285
1960
+ },
1961
+ {
1962
+ "epoch": 2.4027972027972027,
1963
+ "grad_norm": 13.146830558776855,
1964
+ "learning_rate": 4.130869930907599e-06,
1965
+ "loss": 5.352607345581054,
1966
+ "step": 1290
1967
+ },
1968
+ {
1969
+ "epoch": 2.412121212121212,
1970
+ "grad_norm": 13.852392196655273,
1971
+ "learning_rate": 4.090886571132807e-06,
1972
+ "loss": 5.265444946289063,
1973
+ "step": 1295
1974
+ },
1975
+ {
1976
+ "epoch": 2.4214452214452216,
1977
+ "grad_norm": 15.4178466796875,
1978
+ "learning_rate": 4.050963244590571e-06,
1979
+ "loss": 5.396755599975586,
1980
+ "step": 1300
1981
+ },
1982
+ {
1983
+ "epoch": 2.4214452214452216,
1984
+ "eval_com_accuracy": 0.26,
1985
+ "eval_rew_accuracy": 0.372,
1986
+ "step": 1300
1987
+ },
1988
+ {
1989
+ "epoch": 2.430769230769231,
1990
+ "grad_norm": 14.469849586486816,
1991
+ "learning_rate": 4.011102587614563e-06,
1992
+ "loss": 5.381956100463867,
1993
+ "step": 1305
1994
+ },
1995
+ {
1996
+ "epoch": 2.44009324009324,
1997
+ "grad_norm": 14.326638221740723,
1998
+ "learning_rate": 3.97130723240008e-06,
1999
+ "loss": 5.4776451110839846,
2000
+ "step": 1310
2001
+ },
2002
+ {
2003
+ "epoch": 2.4494172494172495,
2004
+ "grad_norm": 13.75566577911377,
2005
+ "learning_rate": 3.9315798068302214e-06,
2006
+ "loss": 5.416980743408203,
2007
+ "step": 1315
2008
+ },
2009
+ {
2010
+ "epoch": 2.458741258741259,
2011
+ "grad_norm": 13.778778076171875,
2012
+ "learning_rate": 3.891922934302356e-06,
2013
+ "loss": 5.254080200195313,
2014
+ "step": 1320
2015
+ },
2016
+ {
2017
+ "epoch": 2.468065268065268,
2018
+ "grad_norm": 13.458685874938965,
2019
+ "learning_rate": 3.852339233554891e-06,
2020
+ "loss": 5.272119140625,
2021
+ "step": 1325
2022
+ },
2023
+ {
2024
+ "epoch": 2.4773892773892774,
2025
+ "grad_norm": 15.419684410095215,
2026
+ "learning_rate": 3.812831318494335e-06,
2027
+ "loss": 5.448992538452148,
2028
+ "step": 1330
2029
+ },
2030
+ {
2031
+ "epoch": 2.486713286713287,
2032
+ "grad_norm": 13.448263168334961,
2033
+ "learning_rate": 3.773401798022701e-06,
2034
+ "loss": 5.6390220642089846,
2035
+ "step": 1335
2036
+ },
2037
+ {
2038
+ "epoch": 2.496037296037296,
2039
+ "grad_norm": 18.160816192626953,
2040
+ "learning_rate": 3.7340532758652217e-06,
2041
+ "loss": 5.633776092529297,
2042
+ "step": 1340
2043
+ },
2044
+ {
2045
+ "epoch": 2.5053613053613053,
2046
+ "grad_norm": 20.26373863220215,
2047
+ "learning_rate": 3.6947883503984037e-06,
2048
+ "loss": 5.412459182739258,
2049
+ "step": 1345
2050
+ },
2051
+ {
2052
+ "epoch": 2.5146853146853148,
2053
+ "grad_norm": 15.404874801635742,
2054
+ "learning_rate": 3.655609614478467e-06,
2055
+ "loss": 5.253081893920898,
2056
+ "step": 1350
2057
+ },
2058
+ {
2059
+ "epoch": 2.5146853146853148,
2060
+ "eval_com_accuracy": 0.26,
2061
+ "eval_rew_accuracy": 0.36,
2062
+ "step": 1350
2063
+ },
2064
+ {
2065
+ "epoch": 2.5240093240093238,
2066
+ "grad_norm": 14.836410522460938,
2067
+ "learning_rate": 3.6165196552701e-06,
2068
+ "loss": 5.615703582763672,
2069
+ "step": 1355
2070
+ },
2071
+ {
2072
+ "epoch": 2.533333333333333,
2073
+ "grad_norm": 13.233349800109863,
2074
+ "learning_rate": 3.577521054075631e-06,
2075
+ "loss": 5.440980911254883,
2076
+ "step": 1360
2077
+ },
2078
+ {
2079
+ "epoch": 2.5426573426573427,
2080
+ "grad_norm": 14.456931114196777,
2081
+ "learning_rate": 3.538616386164575e-06,
2082
+ "loss": 5.664167022705078,
2083
+ "step": 1365
2084
+ },
2085
+ {
2086
+ "epoch": 2.551981351981352,
2087
+ "grad_norm": 14.075837135314941,
2088
+ "learning_rate": 3.4998082206035606e-06,
2089
+ "loss": 5.418301010131836,
2090
+ "step": 1370
2091
+ },
2092
+ {
2093
+ "epoch": 2.5613053613053616,
2094
+ "grad_norm": 13.708165168762207,
2095
+ "learning_rate": 3.4610991200867006e-06,
2096
+ "loss": 5.395311737060547,
2097
+ "step": 1375
2098
+ },
2099
+ {
2100
+ "epoch": 2.5706293706293706,
2101
+ "grad_norm": 13.784794807434082,
2102
+ "learning_rate": 3.4224916407663484e-06,
2103
+ "loss": 5.168692016601563,
2104
+ "step": 1380
2105
+ },
2106
+ {
2107
+ "epoch": 2.57995337995338,
2108
+ "grad_norm": 13.721598625183105,
2109
+ "learning_rate": 3.3839883320843125e-06,
2110
+ "loss": 5.642356109619141,
2111
+ "step": 1385
2112
+ },
2113
+ {
2114
+ "epoch": 2.589277389277389,
2115
+ "grad_norm": 14.451462745666504,
2116
+ "learning_rate": 3.3455917366035058e-06,
2117
+ "loss": 5.229490661621094,
2118
+ "step": 1390
2119
+ },
2120
+ {
2121
+ "epoch": 2.5986013986013985,
2122
+ "grad_norm": 13.549321174621582,
2123
+ "learning_rate": 3.307304389840036e-06,
2124
+ "loss": 5.413081359863281,
2125
+ "step": 1395
2126
+ },
2127
+ {
2128
+ "epoch": 2.607925407925408,
2129
+ "grad_norm": 14.325213432312012,
2130
+ "learning_rate": 3.2691288200957826e-06,
2131
+ "loss": 5.3188224792480465,
2132
+ "step": 1400
2133
+ },
2134
+ {
2135
+ "epoch": 2.607925407925408,
2136
+ "eval_com_accuracy": 0.26,
2137
+ "eval_rew_accuracy": 0.348,
2138
+ "step": 1400
2139
+ },
2140
+ {
2141
+ "epoch": 2.6172494172494174,
2142
+ "grad_norm": 13.765854835510254,
2143
+ "learning_rate": 3.2310675482914444e-06,
2144
+ "loss": 5.554658508300781,
2145
+ "step": 1405
2146
+ },
2147
+ {
2148
+ "epoch": 2.626573426573427,
2149
+ "grad_norm": 14.936039924621582,
2150
+ "learning_rate": 3.1931230878000586e-06,
2151
+ "loss": 5.512041473388672,
2152
+ "step": 1410
2153
+ },
2154
+ {
2155
+ "epoch": 2.635897435897436,
2156
+ "grad_norm": 16.414018630981445,
2157
+ "learning_rate": 3.155297944281036e-06,
2158
+ "loss": 5.256567001342773,
2159
+ "step": 1415
2160
+ },
2161
+ {
2162
+ "epoch": 2.6452214452214453,
2163
+ "grad_norm": 13.871015548706055,
2164
+ "learning_rate": 3.1175946155147064e-06,
2165
+ "loss": 5.480235290527344,
2166
+ "step": 1420
2167
+ },
2168
+ {
2169
+ "epoch": 2.6545454545454543,
2170
+ "grad_norm": 13.673002243041992,
2171
+ "learning_rate": 3.0800155912373696e-06,
2172
+ "loss": 5.272347259521484,
2173
+ "step": 1425
2174
+ },
2175
+ {
2176
+ "epoch": 2.6638694638694638,
2177
+ "grad_norm": 15.32669734954834,
2178
+ "learning_rate": 3.042563352976884e-06,
2179
+ "loss": 5.1510368347167965,
2180
+ "step": 1430
2181
+ },
2182
+ {
2183
+ "epoch": 2.6731934731934732,
2184
+ "grad_norm": 13.43411922454834,
2185
+ "learning_rate": 3.005240373888812e-06,
2186
+ "loss": 5.218346405029297,
2187
+ "step": 1435
2188
+ },
2189
+ {
2190
+ "epoch": 2.6825174825174827,
2191
+ "grad_norm": 13.674540519714355,
2192
+ "learning_rate": 2.9680491185930877e-06,
2193
+ "loss": 5.514698791503906,
2194
+ "step": 1440
2195
+ },
2196
+ {
2197
+ "epoch": 2.6918414918414917,
2198
+ "grad_norm": 14.424562454223633,
2199
+ "learning_rate": 2.9309920430112825e-06,
2200
+ "loss": 5.328684997558594,
2201
+ "step": 1445
2202
+ },
2203
+ {
2204
+ "epoch": 2.701165501165501,
2205
+ "grad_norm": 14.4567232131958,
2206
+ "learning_rate": 2.8940715942044204e-06,
2207
+ "loss": 5.470043182373047,
2208
+ "step": 1450
2209
+ },
2210
+ {
2211
+ "epoch": 2.701165501165501,
2212
+ "eval_com_accuracy": 0.244,
2213
+ "eval_rew_accuracy": 0.364,
2214
+ "step": 1450
2215
+ },
2216
+ {
2217
+ "epoch": 2.7104895104895106,
2218
+ "grad_norm": 14.073286056518555,
2219
+ "learning_rate": 2.8572902102113788e-06,
2220
+ "loss": 5.592926025390625,
2221
+ "step": 1455
2222
+ },
2223
+ {
2224
+ "epoch": 2.7198135198135196,
2225
+ "grad_norm": 15.481256484985352,
2226
+ "learning_rate": 2.820650319887911e-06,
2227
+ "loss": 5.42064094543457,
2228
+ "step": 1460
2229
+ },
2230
+ {
2231
+ "epoch": 2.729137529137529,
2232
+ "grad_norm": 13.80669116973877,
2233
+ "learning_rate": 2.784154342746246e-06,
2234
+ "loss": 5.514656066894531,
2235
+ "step": 1465
2236
+ },
2237
+ {
2238
+ "epoch": 2.7384615384615385,
2239
+ "grad_norm": 15.876877784729004,
2240
+ "learning_rate": 2.747804688795311e-06,
2241
+ "loss": 5.645168304443359,
2242
+ "step": 1470
2243
+ },
2244
+ {
2245
+ "epoch": 2.747785547785548,
2246
+ "grad_norm": 14.138867378234863,
2247
+ "learning_rate": 2.7116037583816e-06,
2248
+ "loss": 5.482178497314453,
2249
+ "step": 1475
2250
+ },
2251
+ {
2252
+ "epoch": 2.757109557109557,
2253
+ "grad_norm": 13.498207092285156,
2254
+ "learning_rate": 2.6755539420306565e-06,
2255
+ "loss": 5.522509384155273,
2256
+ "step": 1480
2257
+ },
2258
+ {
2259
+ "epoch": 2.7664335664335664,
2260
+ "grad_norm": 12.95719051361084,
2261
+ "learning_rate": 2.6396576202892176e-06,
2262
+ "loss": 5.203734970092773,
2263
+ "step": 1485
2264
+ },
2265
+ {
2266
+ "epoch": 2.775757575757576,
2267
+ "grad_norm": 14.70195198059082,
2268
+ "learning_rate": 2.603917163568021e-06,
2269
+ "loss": 5.4792030334472654,
2270
+ "step": 1490
2271
+ },
2272
+ {
2273
+ "epoch": 2.785081585081585,
2274
+ "grad_norm": 16.21117401123047,
2275
+ "learning_rate": 2.5683349319852647e-06,
2276
+ "loss": 5.337226867675781,
2277
+ "step": 1495
2278
+ },
2279
+ {
2280
+ "epoch": 2.7944055944055943,
2281
+ "grad_norm": 15.80867862701416,
2282
+ "learning_rate": 2.5329132752107675e-06,
2283
+ "loss": 5.441407012939453,
2284
+ "step": 1500
2285
+ },
2286
+ {
2287
+ "epoch": 2.7944055944055943,
2288
+ "eval_com_accuracy": 0.252,
2289
+ "eval_rew_accuracy": 0.364,
2290
+ "step": 1500
2291
+ },
2292
+ {
2293
+ "epoch": 2.803729603729604,
2294
+ "grad_norm": 17.126665115356445,
2295
+ "learning_rate": 2.497654532310799e-06,
2296
+ "loss": 5.372947692871094,
2297
+ "step": 1505
2298
+ },
2299
+ {
2300
+ "epoch": 2.8130536130536132,
2301
+ "grad_norm": 14.965190887451172,
2302
+ "learning_rate": 2.4625610315936267e-06,
2303
+ "loss": 5.591331481933594,
2304
+ "step": 1510
2305
+ },
2306
+ {
2307
+ "epoch": 2.8223776223776222,
2308
+ "grad_norm": 13.920053482055664,
2309
+ "learning_rate": 2.427635090455766e-06,
2310
+ "loss": 5.381235504150391,
2311
+ "step": 1515
2312
+ },
2313
+ {
2314
+ "epoch": 2.8317016317016317,
2315
+ "grad_norm": 14.707354545593262,
2316
+ "learning_rate": 2.3928790152289443e-06,
2317
+ "loss": 5.375308990478516,
2318
+ "step": 1520
2319
+ },
2320
+ {
2321
+ "epoch": 2.841025641025641,
2322
+ "grad_norm": 13.846839904785156,
2323
+ "learning_rate": 2.358295101027807e-06,
2324
+ "loss": 5.24262580871582,
2325
+ "step": 1525
2326
+ },
2327
+ {
2328
+ "epoch": 2.85034965034965,
2329
+ "grad_norm": 17.17586898803711,
2330
+ "learning_rate": 2.323885631598366e-06,
2331
+ "loss": 5.628063583374024,
2332
+ "step": 1530
2333
+ },
2334
+ {
2335
+ "epoch": 2.8596736596736596,
2336
+ "grad_norm": 14.309005737304688,
2337
+ "learning_rate": 2.2896528791671807e-06,
2338
+ "loss": 5.600907897949218,
2339
+ "step": 1535
2340
+ },
2341
+ {
2342
+ "epoch": 2.868997668997669,
2343
+ "grad_norm": 18.62157440185547,
2344
+ "learning_rate": 2.2555991042913177e-06,
2345
+ "loss": 5.567650604248047,
2346
+ "step": 1540
2347
+ },
2348
+ {
2349
+ "epoch": 2.8783216783216785,
2350
+ "grad_norm": 14.592391967773438,
2351
+ "learning_rate": 2.221726555709079e-06,
2352
+ "loss": 5.777060699462891,
2353
+ "step": 1545
2354
+ },
2355
+ {
2356
+ "epoch": 2.8876456876456875,
2357
+ "grad_norm": 13.5873441696167,
2358
+ "learning_rate": 2.188037470191502e-06,
2359
+ "loss": 5.495726776123047,
2360
+ "step": 1550
2361
+ },
2362
+ {
2363
+ "epoch": 2.8876456876456875,
2364
+ "eval_com_accuracy": 0.26,
2365
+ "eval_rew_accuracy": 0.344,
2366
+ "step": 1550
2367
+ },
2368
+ {
2369
+ "epoch": 2.896969696969697,
2370
+ "grad_norm": 13.62496280670166,
2371
+ "learning_rate": 2.154534072394651e-06,
2372
+ "loss": 5.313283920288086,
2373
+ "step": 1555
2374
+ },
2375
+ {
2376
+ "epoch": 2.9062937062937064,
2377
+ "grad_norm": 14.277817726135254,
2378
+ "learning_rate": 2.1212185747127235e-06,
2379
+ "loss": 5.38345947265625,
2380
+ "step": 1560
2381
+ },
2382
+ {
2383
+ "epoch": 2.9156177156177154,
2384
+ "grad_norm": 13.139540672302246,
2385
+ "learning_rate": 2.0880931771319395e-06,
2386
+ "loss": 5.48463134765625,
2387
+ "step": 1565
2388
+ },
2389
+ {
2390
+ "epoch": 2.924941724941725,
2391
+ "grad_norm": 15.709213256835938,
2392
+ "learning_rate": 2.055160067085283e-06,
2393
+ "loss": 5.492628479003907,
2394
+ "step": 1570
2395
+ },
2396
+ {
2397
+ "epoch": 2.9342657342657343,
2398
+ "grad_norm": 14.224997520446777,
2399
+ "learning_rate": 2.0224214193080394e-06,
2400
+ "loss": 5.611021423339844,
2401
+ "step": 1575
2402
+ },
2403
+ {
2404
+ "epoch": 2.943589743589744,
2405
+ "grad_norm": 14.523746490478516,
2406
+ "learning_rate": 1.989879395694194e-06,
2407
+ "loss": 5.288306427001953,
2408
+ "step": 1580
2409
+ },
2410
+ {
2411
+ "epoch": 2.952913752913753,
2412
+ "grad_norm": 14.50571346282959,
2413
+ "learning_rate": 1.9575361451536772e-06,
2414
+ "loss": 5.350891876220703,
2415
+ "step": 1585
2416
+ },
2417
+ {
2418
+ "epoch": 2.9622377622377623,
2419
+ "grad_norm": 15.541993141174316,
2420
+ "learning_rate": 1.925393803470447e-06,
2421
+ "loss": 5.3829093933105465,
2422
+ "step": 1590
2423
+ },
2424
+ {
2425
+ "epoch": 2.9715617715617717,
2426
+ "grad_norm": 14.223262786865234,
2427
+ "learning_rate": 1.893454493161468e-06,
2428
+ "loss": 5.267041397094727,
2429
+ "step": 1595
2430
+ },
2431
+ {
2432
+ "epoch": 2.9808857808857807,
2433
+ "grad_norm": 16.193429946899414,
2434
+ "learning_rate": 1.8617203233365427e-06,
2435
+ "loss": 5.335537719726562,
2436
+ "step": 1600
2437
+ },
2438
+ {
2439
+ "epoch": 2.9808857808857807,
2440
+ "eval_com_accuracy": 0.26,
2441
+ "eval_rew_accuracy": 0.356,
2442
+ "step": 1600
2443
+ },
2444
+ {
2445
+ "epoch": 2.99020979020979,
2446
+ "grad_norm": 13.891239166259766,
2447
+ "learning_rate": 1.8301933895590362e-06,
2448
+ "loss": 5.594977569580078,
2449
+ "step": 1605
2450
+ },
2451
+ {
2452
+ "epoch": 2.9995337995337996,
2453
+ "grad_norm": 14.599571228027344,
2454
+ "learning_rate": 1.7988757737074959e-06,
2455
+ "loss": 5.364975357055664,
2456
+ "step": 1610
2457
+ },
2458
+ {
2459
+ "epoch": 3.0074592074592075,
2460
+ "grad_norm": 14.290489196777344,
2461
+ "learning_rate": 1.7677695438381831e-06,
2462
+ "loss": 4.734904479980469,
2463
+ "step": 1615
2464
+ },
2465
+ {
2466
+ "epoch": 3.016783216783217,
2467
+ "grad_norm": 17.73172950744629,
2468
+ "learning_rate": 1.7368767540484965e-06,
2469
+ "loss": 5.451268005371094,
2470
+ "step": 1620
2471
+ },
2472
+ {
2473
+ "epoch": 3.026107226107226,
2474
+ "grad_norm": 16.327598571777344,
2475
+ "learning_rate": 1.706199444341341e-06,
2476
+ "loss": 5.246796035766602,
2477
+ "step": 1625
2478
+ },
2479
+ {
2480
+ "epoch": 3.0354312354312354,
2481
+ "grad_norm": 14.45212459564209,
2482
+ "learning_rate": 1.6757396404904087e-06,
2483
+ "loss": 5.129561996459961,
2484
+ "step": 1630
2485
+ },
2486
+ {
2487
+ "epoch": 3.044755244755245,
2488
+ "grad_norm": 19.204496383666992,
2489
+ "learning_rate": 1.6454993539064075e-06,
2490
+ "loss": 5.312553787231446,
2491
+ "step": 1635
2492
+ },
2493
+ {
2494
+ "epoch": 3.0540792540792543,
2495
+ "grad_norm": 15.517951011657715,
2496
+ "learning_rate": 1.6154805815042457e-06,
2497
+ "loss": 5.416378402709961,
2498
+ "step": 1640
2499
+ },
2500
+ {
2501
+ "epoch": 3.0634032634032633,
2502
+ "grad_norm": 15.498330116271973,
2503
+ "learning_rate": 1.585685305571159e-06,
2504
+ "loss": 5.478387451171875,
2505
+ "step": 1645
2506
+ },
2507
+ {
2508
+ "epoch": 3.0727272727272728,
2509
+ "grad_norm": 13.686599731445312,
2510
+ "learning_rate": 1.5561154936358069e-06,
2511
+ "loss": 5.502795028686523,
2512
+ "step": 1650
2513
+ },
2514
+ {
2515
+ "epoch": 3.0727272727272728,
2516
+ "eval_com_accuracy": 0.256,
2517
+ "eval_rew_accuracy": 0.348,
2518
+ "step": 1650
2519
+ },
2520
+ {
2521
+ "epoch": 3.082051282051282,
2522
+ "grad_norm": 15.222505569458008,
2523
+ "learning_rate": 1.526773098338359e-06,
2524
+ "loss": 5.323673248291016,
2525
+ "step": 1655
2526
+ },
2527
+ {
2528
+ "epoch": 3.091375291375291,
2529
+ "grad_norm": 14.830018043518066,
2530
+ "learning_rate": 1.4976600573015398e-06,
2531
+ "loss": 5.360482406616211,
2532
+ "step": 1660
2533
+ },
2534
+ {
2535
+ "epoch": 3.1006993006993007,
2536
+ "grad_norm": 19.069103240966797,
2537
+ "learning_rate": 1.4687782930026833e-06,
2538
+ "loss": 5.443345642089843,
2539
+ "step": 1665
2540
+ },
2541
+ {
2542
+ "epoch": 3.11002331002331,
2543
+ "grad_norm": 25.908740997314453,
2544
+ "learning_rate": 1.4401297126467884e-06,
2545
+ "loss": 5.528006362915039,
2546
+ "step": 1670
2547
+ },
2548
+ {
2549
+ "epoch": 3.1193473193473196,
2550
+ "grad_norm": 17.149354934692383,
2551
+ "learning_rate": 1.411716208040566e-06,
2552
+ "loss": 5.359912872314453,
2553
+ "step": 1675
2554
+ },
2555
+ {
2556
+ "epoch": 3.1286713286713286,
2557
+ "grad_norm": 13.994576454162598,
2558
+ "learning_rate": 1.3835396554675179e-06,
2559
+ "loss": 5.480604553222657,
2560
+ "step": 1680
2561
+ },
2562
+ {
2563
+ "epoch": 3.137995337995338,
2564
+ "grad_norm": 13.94813346862793,
2565
+ "learning_rate": 1.3556019155640416e-06,
2566
+ "loss": 5.426166534423828,
2567
+ "step": 1685
2568
+ },
2569
+ {
2570
+ "epoch": 3.1473193473193475,
2571
+ "grad_norm": 18.871957778930664,
2572
+ "learning_rate": 1.327904833196556e-06,
2573
+ "loss": 5.287055969238281,
2574
+ "step": 1690
2575
+ },
2576
+ {
2577
+ "epoch": 3.1566433566433565,
2578
+ "grad_norm": 14.017885208129883,
2579
+ "learning_rate": 1.3004502373396821e-06,
2580
+ "loss": 5.530019378662109,
2581
+ "step": 1695
2582
+ },
2583
+ {
2584
+ "epoch": 3.165967365967366,
2585
+ "grad_norm": 14.46150016784668,
2586
+ "learning_rate": 1.273239940955459e-06,
2587
+ "loss": 5.436450958251953,
2588
+ "step": 1700
2589
+ },
2590
+ {
2591
+ "epoch": 3.165967365967366,
2592
+ "eval_com_accuracy": 0.252,
2593
+ "eval_rew_accuracy": 0.344,
2594
+ "step": 1700
2595
+ },
2596
+ {
2597
+ "epoch": 3.1752913752913754,
2598
+ "grad_norm": 14.199810028076172,
2599
+ "learning_rate": 1.246275740873631e-06,
2600
+ "loss": 5.5229228973388675,
2601
+ "step": 1705
2602
+ },
2603
+ {
2604
+ "epoch": 3.184615384615385,
2605
+ "grad_norm": 14.207246780395508,
2606
+ "learning_rate": 1.2195594176729963e-06,
2607
+ "loss": 5.065603637695313,
2608
+ "step": 1710
2609
+ },
2610
+ {
2611
+ "epoch": 3.193939393939394,
2612
+ "grad_norm": 14.264204978942871,
2613
+ "learning_rate": 1.1930927355638189e-06,
2614
+ "loss": 5.147642517089844,
2615
+ "step": 1715
2616
+ },
2617
+ {
2618
+ "epoch": 3.2032634032634033,
2619
+ "grad_norm": 15.168913841247559,
2620
+ "learning_rate": 1.1668774422713336e-06,
2621
+ "loss": 5.345111846923828,
2622
+ "step": 1720
2623
+ },
2624
+ {
2625
+ "epoch": 3.2125874125874128,
2626
+ "grad_norm": 13.536885261535645,
2627
+ "learning_rate": 1.140915268920339e-06,
2628
+ "loss": 5.612071228027344,
2629
+ "step": 1725
2630
+ },
2631
+ {
2632
+ "epoch": 3.2219114219114218,
2633
+ "grad_norm": 14.979183197021484,
2634
+ "learning_rate": 1.1152079299208724e-06,
2635
+ "loss": 5.372085189819336,
2636
+ "step": 1730
2637
+ },
2638
+ {
2639
+ "epoch": 3.231235431235431,
2640
+ "grad_norm": 15.19270133972168,
2641
+ "learning_rate": 1.0897571228550097e-06,
2642
+ "loss": 5.345587158203125,
2643
+ "step": 1735
2644
+ },
2645
+ {
2646
+ "epoch": 3.2405594405594407,
2647
+ "grad_norm": 13.973429679870605,
2648
+ "learning_rate": 1.0645645283647616e-06,
2649
+ "loss": 5.468335723876953,
2650
+ "step": 1740
2651
+ },
2652
+ {
2653
+ "epoch": 3.2498834498834497,
2654
+ "grad_norm": 14.033141136169434,
2655
+ "learning_rate": 1.0396318100410868e-06,
2656
+ "loss": 5.231144714355469,
2657
+ "step": 1745
2658
+ },
2659
+ {
2660
+ "epoch": 3.259207459207459,
2661
+ "grad_norm": 13.720804214477539,
2662
+ "learning_rate": 1.0149606143140484e-06,
2663
+ "loss": 5.193565750122071,
2664
+ "step": 1750
2665
+ },
2666
+ {
2667
+ "epoch": 3.259207459207459,
2668
+ "eval_com_accuracy": 0.26,
2669
+ "eval_rew_accuracy": 0.356,
2670
+ "step": 1750
2671
+ },
2672
+ {
2673
+ "epoch": 3.2685314685314686,
2674
+ "grad_norm": 14.3617582321167,
2675
+ "learning_rate": 9.905525703440815e-07,
2676
+ "loss": 5.266670989990234,
2677
+ "step": 1755
2678
+ },
2679
+ {
2680
+ "epoch": 3.277855477855478,
2681
+ "grad_norm": 14.0305757522583,
2682
+ "learning_rate": 9.664092899144156e-07,
2683
+ "loss": 5.1834564208984375,
2684
+ "step": 1760
2685
+ },
2686
+ {
2687
+ "epoch": 3.287179487179487,
2688
+ "grad_norm": 13.830121040344238,
2689
+ "learning_rate": 9.425323673246461e-07,
2690
+ "loss": 5.506520462036133,
2691
+ "step": 1765
2692
+ },
2693
+ {
2694
+ "epoch": 3.2965034965034965,
2695
+ "grad_norm": 14.764183044433594,
2696
+ "learning_rate": 9.189233792854424e-07,
2697
+ "loss": 5.4712566375732425,
2698
+ "step": 1770
2699
+ },
2700
+ {
2701
+ "epoch": 3.305827505827506,
2702
+ "grad_norm": 13.076425552368164,
2703
+ "learning_rate": 8.955838848144449e-07,
2704
+ "loss": 5.39610481262207,
2705
+ "step": 1775
2706
+ },
2707
+ {
2708
+ "epoch": 3.315151515151515,
2709
+ "grad_norm": 24.025074005126953,
2710
+ "learning_rate": 8.725154251333012e-07,
2711
+ "loss": 5.462095642089844,
2712
+ "step": 1780
2713
+ },
2714
+ {
2715
+ "epoch": 3.3244755244755244,
2716
+ "grad_norm": 15.28011417388916,
2717
+ "learning_rate": 8.49719523565904e-07,
2718
+ "loss": 5.121075057983399,
2719
+ "step": 1785
2720
+ },
2721
+ {
2722
+ "epoch": 3.333799533799534,
2723
+ "grad_norm": 13.63133716583252,
2724
+ "learning_rate": 8.271976854377861e-07,
2725
+ "loss": 5.500334930419922,
2726
+ "step": 1790
2727
+ },
2728
+ {
2729
+ "epoch": 3.3431235431235433,
2730
+ "grad_norm": 15.102256774902344,
2731
+ "learning_rate": 8.049513979767304e-07,
2732
+ "loss": 5.435873794555664,
2733
+ "step": 1795
2734
+ },
2735
+ {
2736
+ "epoch": 3.3524475524475523,
2737
+ "grad_norm": 16.562448501586914,
2738
+ "learning_rate": 7.829821302145485e-07,
2739
+ "loss": 5.118262100219726,
2740
+ "step": 1800
2741
+ },
2742
+ {
2743
+ "epoch": 3.3524475524475523,
2744
+ "eval_com_accuracy": 0.236,
2745
+ "eval_rew_accuracy": 0.344,
2746
+ "step": 1800
2747
+ },
2748
+ {
2749
+ "epoch": 3.361771561771562,
2750
+ "grad_norm": 15.783401489257812,
2751
+ "learning_rate": 7.612913328900784e-07,
2752
+ "loss": 5.411731719970703,
2753
+ "step": 1805
2754
+ },
2755
+ {
2756
+ "epoch": 3.3710955710955712,
2757
+ "grad_norm": 15.205412864685059,
2758
+ "learning_rate": 7.398804383533886e-07,
2759
+ "loss": 5.4931282043457035,
2760
+ "step": 1810
2761
+ },
2762
+ {
2763
+ "epoch": 3.3804195804195802,
2764
+ "grad_norm": 15.897871971130371,
2765
+ "learning_rate": 7.187508604711851e-07,
2766
+ "loss": 5.3865409851074215,
2767
+ "step": 1815
2768
+ },
2769
+ {
2770
+ "epoch": 3.3897435897435897,
2771
+ "grad_norm": 14.67023754119873,
2772
+ "learning_rate": 6.979039945334543e-07,
2773
+ "loss": 5.469716644287109,
2774
+ "step": 1820
2775
+ },
2776
+ {
2777
+ "epoch": 3.399067599067599,
2778
+ "grad_norm": 14.824798583984375,
2779
+ "learning_rate": 6.77341217161322e-07,
2780
+ "loss": 5.260548782348633,
2781
+ "step": 1825
2782
+ },
2783
+ {
2784
+ "epoch": 3.408391608391608,
2785
+ "grad_norm": 15.626496315002441,
2786
+ "learning_rate": 6.570638862161449e-07,
2787
+ "loss": 5.215817642211914,
2788
+ "step": 1830
2789
+ },
2790
+ {
2791
+ "epoch": 3.4177156177156176,
2792
+ "grad_norm": 97.59706115722656,
2793
+ "learning_rate": 6.370733407098517e-07,
2794
+ "loss": 5.424036026000977,
2795
+ "step": 1835
2796
+ },
2797
+ {
2798
+ "epoch": 3.427039627039627,
2799
+ "grad_norm": 14.15798282623291,
2800
+ "learning_rate": 6.173709007165158e-07,
2801
+ "loss": 5.179172515869141,
2802
+ "step": 1840
2803
+ },
2804
+ {
2805
+ "epoch": 3.4363636363636365,
2806
+ "grad_norm": 13.659977912902832,
2807
+ "learning_rate": 5.979578672851843e-07,
2808
+ "loss": 5.505921936035156,
2809
+ "step": 1845
2810
+ },
2811
+ {
2812
+ "epoch": 3.4456876456876455,
2813
+ "grad_norm": 13.775196075439453,
2814
+ "learning_rate": 5.788355223539698e-07,
2815
+ "loss": 5.567048645019531,
2816
+ "step": 1850
2817
+ },
2818
+ {
2819
+ "epoch": 3.4456876456876455,
2820
+ "eval_com_accuracy": 0.248,
2821
+ "eval_rew_accuracy": 0.348,
2822
+ "step": 1850
2823
+ },
2824
+ {
2825
+ "epoch": 3.455011655011655,
2826
+ "grad_norm": 13.840899467468262,
2827
+ "learning_rate": 5.600051286653884e-07,
2828
+ "loss": 5.582321548461914,
2829
+ "step": 1855
2830
+ },
2831
+ {
2832
+ "epoch": 3.4643356643356644,
2833
+ "grad_norm": 17.72808837890625,
2834
+ "learning_rate": 5.414679296829806e-07,
2835
+ "loss": 5.374624633789063,
2836
+ "step": 1860
2837
+ },
2838
+ {
2839
+ "epoch": 3.4736596736596734,
2840
+ "grad_norm": 13.779251098632812,
2841
+ "learning_rate": 5.232251495091989e-07,
2842
+ "loss": 5.559833908081055,
2843
+ "step": 1865
2844
+ },
2845
+ {
2846
+ "epoch": 3.482983682983683,
2847
+ "grad_norm": 15.004316329956055,
2848
+ "learning_rate": 5.052779928045737e-07,
2849
+ "loss": 5.440023422241211,
2850
+ "step": 1870
2851
+ },
2852
+ {
2853
+ "epoch": 3.4923076923076923,
2854
+ "grad_norm": 14.249396324157715,
2855
+ "learning_rate": 4.87627644708163e-07,
2856
+ "loss": 5.40099868774414,
2857
+ "step": 1875
2858
+ },
2859
+ {
2860
+ "epoch": 3.501631701631702,
2861
+ "grad_norm": 14.191717147827148,
2862
+ "learning_rate": 4.7027527075929e-07,
2863
+ "loss": 5.396835708618164,
2864
+ "step": 1880
2865
+ },
2866
+ {
2867
+ "epoch": 3.510955710955711,
2868
+ "grad_norm": 14.725996971130371,
2869
+ "learning_rate": 4.532220168205798e-07,
2870
+ "loss": 5.4339447021484375,
2871
+ "step": 1885
2872
+ },
2873
+ {
2874
+ "epoch": 3.5202797202797202,
2875
+ "grad_norm": 13.92712688446045,
2876
+ "learning_rate": 4.364690090022938e-07,
2877
+ "loss": 5.301970291137695,
2878
+ "step": 1890
2879
+ },
2880
+ {
2881
+ "epoch": 3.5296037296037297,
2882
+ "grad_norm": 16.015522003173828,
2883
+ "learning_rate": 4.2001735358796316e-07,
2884
+ "loss": 5.519898986816406,
2885
+ "step": 1895
2886
+ },
2887
+ {
2888
+ "epoch": 3.5389277389277387,
2889
+ "grad_norm": 13.642130851745605,
2890
+ "learning_rate": 4.0386813696133564e-07,
2891
+ "loss": 5.369457244873047,
2892
+ "step": 1900
2893
+ },
2894
+ {
2895
+ "epoch": 3.5389277389277387,
2896
+ "eval_com_accuracy": 0.252,
2897
+ "eval_rew_accuracy": 0.348,
2898
+ "step": 1900
2899
+ },
2900
+ {
2901
+ "epoch": 3.548251748251748,
2902
+ "grad_norm": 14.768367767333984,
2903
+ "learning_rate": 3.8802242553464096e-07,
2904
+ "loss": 5.300347900390625,
2905
+ "step": 1905
2906
+ },
2907
+ {
2908
+ "epoch": 3.5575757575757576,
2909
+ "grad_norm": 13.686610221862793,
2910
+ "learning_rate": 3.7248126567816454e-07,
2911
+ "loss": 5.458771514892578,
2912
+ "step": 1910
2913
+ },
2914
+ {
2915
+ "epoch": 3.566899766899767,
2916
+ "grad_norm": 14.974004745483398,
2917
+ "learning_rate": 3.572456836511551e-07,
2918
+ "loss": 5.505842208862305,
2919
+ "step": 1915
2920
+ },
2921
+ {
2922
+ "epoch": 3.576223776223776,
2923
+ "grad_norm": 19.55851936340332,
2924
+ "learning_rate": 3.4231668553405316e-07,
2925
+ "loss": 5.585261535644531,
2926
+ "step": 1920
2927
+ },
2928
+ {
2929
+ "epoch": 3.5855477855477855,
2930
+ "grad_norm": 13.967267990112305,
2931
+ "learning_rate": 3.276952571620556e-07,
2932
+ "loss": 5.267148971557617,
2933
+ "step": 1925
2934
+ },
2935
+ {
2936
+ "epoch": 3.594871794871795,
2937
+ "grad_norm": 16.652421951293945,
2938
+ "learning_rate": 3.133823640600137e-07,
2939
+ "loss": 5.403562927246094,
2940
+ "step": 1930
2941
+ },
2942
+ {
2943
+ "epoch": 3.604195804195804,
2944
+ "grad_norm": 14.056427955627441,
2945
+ "learning_rate": 2.9937895137868046e-07,
2946
+ "loss": 5.545249176025391,
2947
+ "step": 1935
2948
+ },
2949
+ {
2950
+ "epoch": 3.6135198135198134,
2951
+ "grad_norm": 14.697785377502441,
2952
+ "learning_rate": 2.8568594383229067e-07,
2953
+ "loss": 5.691058349609375,
2954
+ "step": 1940
2955
+ },
2956
+ {
2957
+ "epoch": 3.622843822843823,
2958
+ "grad_norm": 14.570009231567383,
2959
+ "learning_rate": 2.723042456375036e-07,
2960
+ "loss": 5.311951446533203,
2961
+ "step": 1945
2962
+ },
2963
+ {
2964
+ "epoch": 3.6321678321678323,
2965
+ "grad_norm": 14.328276634216309,
2966
+ "learning_rate": 2.592347404536888e-07,
2967
+ "loss": 5.5065868377685545,
2968
+ "step": 1950
2969
+ },
2970
+ {
2971
+ "epoch": 3.6321678321678323,
2972
+ "eval_com_accuracy": 0.26,
2973
+ "eval_rew_accuracy": 0.348,
2974
+ "step": 1950
2975
+ },
2976
+ {
2977
+ "epoch": 3.6414918414918414,
2978
+ "grad_norm": 16.094568252563477,
2979
+ "learning_rate": 2.4647829132457446e-07,
2980
+ "loss": 5.409658813476563,
2981
+ "step": 1955
2982
+ },
2983
+ {
2984
+ "epoch": 3.650815850815851,
2985
+ "grad_norm": 13.347336769104004,
2986
+ "learning_rate": 2.340357406212601e-07,
2987
+ "loss": 5.344178009033203,
2988
+ "step": 1960
2989
+ },
2990
+ {
2991
+ "epoch": 3.6601398601398603,
2992
+ "grad_norm": 13.901823043823242,
2993
+ "learning_rate": 2.2190790998658561e-07,
2994
+ "loss": 5.574573135375976,
2995
+ "step": 1965
2996
+ },
2997
+ {
2998
+ "epoch": 3.6694638694638693,
2999
+ "grad_norm": 12.91339111328125,
3000
+ "learning_rate": 2.1009560028087627e-07,
3001
+ "loss": 5.605550384521484,
3002
+ "step": 1970
3003
+ },
3004
+ {
3005
+ "epoch": 3.6787878787878787,
3006
+ "grad_norm": 14.216018676757812,
3007
+ "learning_rate": 1.985995915290595e-07,
3008
+ "loss": 5.501739501953125,
3009
+ "step": 1975
3010
+ },
3011
+ {
3012
+ "epoch": 3.688111888111888,
3013
+ "grad_norm": 13.566910743713379,
3014
+ "learning_rate": 1.8742064286915329e-07,
3015
+ "loss": 5.589977645874024,
3016
+ "step": 1980
3017
+ },
3018
+ {
3019
+ "epoch": 3.6974358974358976,
3020
+ "grad_norm": 13.63309383392334,
3021
+ "learning_rate": 1.7655949250213743e-07,
3022
+ "loss": 5.244425201416016,
3023
+ "step": 1985
3024
+ },
3025
+ {
3026
+ "epoch": 3.7067599067599066,
3027
+ "grad_norm": 14.691123008728027,
3028
+ "learning_rate": 1.660168576432092e-07,
3029
+ "loss": 5.428138351440429,
3030
+ "step": 1990
3031
+ },
3032
+ {
3033
+ "epoch": 3.716083916083916,
3034
+ "grad_norm": 13.5573148727417,
3035
+ "learning_rate": 1.5579343447441663e-07,
3036
+ "loss": 5.335743713378906,
3037
+ "step": 1995
3038
+ },
3039
+ {
3040
+ "epoch": 3.7254079254079255,
3041
+ "grad_norm": 16.859336853027344,
3042
+ "learning_rate": 1.458898980986917e-07,
3043
+ "loss": 5.435336303710938,
3044
+ "step": 2000
3045
+ },
3046
+ {
3047
+ "epoch": 3.7254079254079255,
3048
+ "eval_com_accuracy": 0.26,
3049
+ "eval_rew_accuracy": 0.352,
3050
+ "step": 2000
3051
+ },
3052
+ {
3053
+ "epoch": 3.7347319347319345,
3054
+ "grad_norm": 14.824188232421875,
3055
+ "learning_rate": 1.363069024952668e-07,
3056
+ "loss": 5.184574890136719,
3057
+ "step": 2005
3058
+ },
3059
+ {
3060
+ "epoch": 3.744055944055944,
3061
+ "grad_norm": 14.50694465637207,
3062
+ "learning_rate": 1.2704508047649e-07,
3063
+ "loss": 5.404220962524414,
3064
+ "step": 2010
3065
+ },
3066
+ {
3067
+ "epoch": 3.7533799533799534,
3068
+ "grad_norm": 13.273224830627441,
3069
+ "learning_rate": 1.1810504364603737e-07,
3070
+ "loss": 5.528971099853516,
3071
+ "step": 2015
3072
+ },
3073
+ {
3074
+ "epoch": 3.762703962703963,
3075
+ "grad_norm": 14.738325119018555,
3076
+ "learning_rate": 1.094873823585263e-07,
3077
+ "loss": 5.249575424194336,
3078
+ "step": 2020
3079
+ },
3080
+ {
3081
+ "epoch": 3.772027972027972,
3082
+ "grad_norm": 27.92183494567871,
3083
+ "learning_rate": 1.011926656805301e-07,
3084
+ "loss": 5.55212631225586,
3085
+ "step": 2025
3086
+ },
3087
+ {
3088
+ "epoch": 3.7813519813519814,
3089
+ "grad_norm": 14.745790481567383,
3090
+ "learning_rate": 9.322144135300137e-08,
3091
+ "loss": 5.203295135498047,
3092
+ "step": 2030
3093
+ },
3094
+ {
3095
+ "epoch": 3.790675990675991,
3096
+ "grad_norm": 14.700698852539062,
3097
+ "learning_rate": 8.557423575510037e-08,
3098
+ "loss": 5.222881317138672,
3099
+ "step": 2035
3100
+ },
3101
+ {
3102
+ "epoch": 3.8,
3103
+ "grad_norm": 14.061659812927246,
3104
+ "learning_rate": 7.825155386943784e-08,
3105
+ "loss": 5.428164291381836,
3106
+ "step": 2040
3107
+ },
3108
+ {
3109
+ "epoch": 3.8093240093240093,
3110
+ "grad_norm": 14.425374984741211,
3111
+ "learning_rate": 7.125387924872552e-08,
3112
+ "loss": 5.418885040283203,
3113
+ "step": 2045
3114
+ },
3115
+ {
3116
+ "epoch": 3.8186480186480187,
3117
+ "grad_norm": 14.355052947998047,
3118
+ "learning_rate": 6.458167398384896e-08,
3119
+ "loss": 5.363260650634766,
3120
+ "step": 2050
3121
+ },
3122
+ {
3123
+ "epoch": 3.8186480186480187,
3124
+ "eval_com_accuracy": 0.264,
3125
+ "eval_rew_accuracy": 0.328,
3126
+ "step": 2050
3127
+ },
3128
+ {
3129
+ "epoch": 3.827972027972028,
3130
+ "grad_norm": 14.03409481048584,
3131
+ "learning_rate": 5.823537867334694e-08,
3132
+ "loss": 5.503321838378906,
3133
+ "step": 2055
3134
+ },
3135
+ {
3136
+ "epoch": 3.837296037296037,
3137
+ "grad_norm": 14.262378692626953,
3138
+ "learning_rate": 5.221541239432415e-08,
3139
+ "loss": 5.388937759399414,
3140
+ "step": 2060
3141
+ },
3142
+ {
3143
+ "epoch": 3.8466200466200466,
3144
+ "grad_norm": 14.72974967956543,
3145
+ "learning_rate": 4.65221726747711e-08,
3146
+ "loss": 5.465239334106445,
3147
+ "step": 2065
3148
+ },
3149
+ {
3150
+ "epoch": 3.855944055944056,
3151
+ "grad_norm": 20.170591354370117,
3152
+ "learning_rate": 4.11560354673185e-08,
3153
+ "loss": 5.374723052978515,
3154
+ "step": 2070
3155
+ },
3156
+ {
3157
+ "epoch": 3.865268065268065,
3158
+ "grad_norm": 14.229021072387695,
3159
+ "learning_rate": 3.611735512440706e-08,
3160
+ "loss": 5.41649169921875,
3161
+ "step": 2075
3162
+ },
3163
+ {
3164
+ "epoch": 3.8745920745920746,
3165
+ "grad_norm": 14.37116527557373,
3166
+ "learning_rate": 3.1406464374890144e-08,
3167
+ "loss": 5.885035705566406,
3168
+ "step": 2080
3169
+ },
3170
+ {
3171
+ "epoch": 3.883916083916084,
3172
+ "grad_norm": 13.708508491516113,
3173
+ "learning_rate": 2.7023674302061875e-08,
3174
+ "loss": 5.252231597900391,
3175
+ "step": 2085
3176
+ },
3177
+ {
3178
+ "epoch": 3.8932400932400935,
3179
+ "grad_norm": 13.693293571472168,
3180
+ "learning_rate": 2.296927432311358e-08,
3181
+ "loss": 5.494184494018555,
3182
+ "step": 2090
3183
+ },
3184
+ {
3185
+ "epoch": 3.9025641025641025,
3186
+ "grad_norm": 14.291114807128906,
3187
+ "learning_rate": 1.9243532170023504e-08,
3188
+ "loss": 5.161873245239258,
3189
+ "step": 2095
3190
+ },
3191
+ {
3192
+ "epoch": 3.911888111888112,
3193
+ "grad_norm": 15.632975578308105,
3194
+ "learning_rate": 1.584669387187765e-08,
3195
+ "loss": 5.218763732910157,
3196
+ "step": 2100
3197
+ },
3198
+ {
3199
+ "epoch": 3.911888111888112,
3200
+ "eval_com_accuracy": 0.256,
3201
+ "eval_rew_accuracy": 0.348,
3202
+ "step": 2100
3203
+ },
3204
+ {
3205
+ "epoch": 3.9212121212121214,
3206
+ "grad_norm": 13.507603645324707,
3207
+ "learning_rate": 1.2778983738620521e-08,
3208
+ "loss": 5.341087341308594,
3209
+ "step": 2105
3210
+ },
3211
+ {
3212
+ "epoch": 3.9305361305361304,
3213
+ "grad_norm": 15.44629955291748,
3214
+ "learning_rate": 1.0040604346245319e-08,
3215
+ "loss": 5.3995521545410154,
3216
+ "step": 2110
3217
+ },
3218
+ {
3219
+ "epoch": 3.93986013986014,
3220
+ "grad_norm": 16.452760696411133,
3221
+ "learning_rate": 7.631736523416867e-09,
3222
+ "loss": 5.533244323730469,
3223
+ "step": 2115
3224
+ },
3225
+ {
3226
+ "epoch": 3.9491841491841493,
3227
+ "grad_norm": 13.974261283874512,
3228
+ "learning_rate": 5.552539339528373e-09,
3229
+ "loss": 5.49418830871582,
3230
+ "step": 2120
3231
+ },
3232
+ {
3233
+ "epoch": 3.9585081585081587,
3234
+ "grad_norm": 14.339764595031738,
3235
+ "learning_rate": 3.803150094200403e-09,
3236
+ "loss": 5.264930343627929,
3237
+ "step": 2125
3238
+ },
3239
+ {
3240
+ "epoch": 3.9678321678321677,
3241
+ "grad_norm": 15.614706993103027,
3242
+ "learning_rate": 2.3836843082108987e-09,
3243
+ "loss": 5.345928192138672,
3244
+ "step": 2130
3245
+ },
3246
+ {
3247
+ "epoch": 3.977156177156177,
3248
+ "grad_norm": 13.78399658203125,
3249
+ "learning_rate": 1.2942357158701734e-09,
3250
+ "loss": 5.354546356201172,
3251
+ "step": 2135
3252
+ },
3253
+ {
3254
+ "epoch": 3.986480186480186,
3255
+ "grad_norm": 15.413246154785156,
3256
+ "learning_rate": 5.348762588286427e-10,
3257
+ "loss": 5.361167907714844,
3258
+ "step": 2140
3259
+ },
3260
+ {
3261
+ "epoch": 3.9958041958041957,
3262
+ "grad_norm": 13.466837882995605,
3263
+ "learning_rate": 1.0565608132728778e-10,
3264
+ "loss": 5.534800338745117,
3265
+ "step": 2145
3266
+ }
3267
+ ],
3268
+ "logging_steps": 5,
3269
+ "max_steps": 2148,
3270
+ "num_input_tokens_seen": 0,
3271
+ "num_train_epochs": 4,
3272
+ "save_steps": 500,
3273
+ "stateful_callbacks": {
3274
+ "TrainerControl": {
3275
+ "args": {
3276
+ "should_epoch_stop": false,
3277
+ "should_evaluate": false,
3278
+ "should_log": false,
3279
+ "should_save": true,
3280
+ "should_training_stop": true
3281
+ },
3282
+ "attributes": {}
3283
+ }
3284
+ },
3285
+ "total_flos": 0.0,
3286
+ "train_batch_size": 8,
3287
+ "trial_name": null,
3288
+ "trial_params": null
3289
+ }
checkpoint-2148/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6ca094dca60606350f327809d196d6faa38b81cdd561be5d924e82822f09231
3
+ size 5201
checkpoint-537/chat_template.jinja ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {%- if messages[0].content is string %}
5
+ {{- messages[0].content }}
6
+ {%- else %}
7
+ {%- for content in messages[0].content %}
8
+ {%- if 'text' in content %}
9
+ {{- content.text }}
10
+ {%- endif %}
11
+ {%- endfor %}
12
+ {%- endif %}
13
+ {{- '\n\n' }}
14
+ {%- endif %}
15
+ {{- "# 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>" }}
16
+ {%- for tool in tools %}
17
+ {{- "\n" }}
18
+ {{- tool | tojson }}
19
+ {%- endfor %}
20
+ {{- "\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" }}
21
+ {%- else %}
22
+ {%- if messages[0].role == 'system' %}
23
+ {{- '<|im_start|>system\n' }}
24
+ {%- if messages[0].content is string %}
25
+ {{- messages[0].content }}
26
+ {%- else %}
27
+ {%- for content in messages[0].content %}
28
+ {%- if 'text' in content %}
29
+ {{- content.text }}
30
+ {%- endif %}
31
+ {%- endfor %}
32
+ {%- endif %}
33
+ {{- '<|im_end|>\n' }}
34
+ {%- endif %}
35
+ {%- endif %}
36
+ {%- set image_count = namespace(value=0) %}
37
+ {%- set video_count = namespace(value=0) %}
38
+ {%- for message in messages %}
39
+ {%- if message.role == "user" %}
40
+ {{- '<|im_start|>' + message.role + '\n' }}
41
+ {%- if message.content is string %}
42
+ {{- message.content }}
43
+ {%- else %}
44
+ {%- for content in message.content %}
45
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
46
+ {%- set image_count.value = image_count.value + 1 %}
47
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
48
+ <|vision_start|><|image_pad|><|vision_end|>
49
+ {%- elif content.type == 'video' or 'video' in content %}
50
+ {%- set video_count.value = video_count.value + 1 %}
51
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
52
+ <|vision_start|><|video_pad|><|vision_end|>
53
+ {%- elif 'text' in content %}
54
+ {{- content.text }}
55
+ {%- endif %}
56
+ {%- endfor %}
57
+ {%- endif %}
58
+ {{- '<|im_end|>\n' }}
59
+ {%- elif message.role == "assistant" %}
60
+ {{- '<|im_start|>' + message.role + '\n' }}
61
+ {%- if message.content is string %}
62
+ {{- message.content }}
63
+ {%- else %}
64
+ {%- for content_item in message.content %}
65
+ {%- if 'text' in content_item %}
66
+ {{- content_item.text }}
67
+ {%- endif %}
68
+ {%- endfor %}
69
+ {%- endif %}
70
+ {%- if message.tool_calls %}
71
+ {%- for tool_call in message.tool_calls %}
72
+ {%- if (loop.first and message.content) or (not loop.first) %}
73
+ {{- '\n' }}
74
+ {%- endif %}
75
+ {%- if tool_call.function %}
76
+ {%- set tool_call = tool_call.function %}
77
+ {%- endif %}
78
+ {{- '<tool_call>\n{"name": "' }}
79
+ {{- tool_call.name }}
80
+ {{- '", "arguments": ' }}
81
+ {%- if tool_call.arguments is string %}
82
+ {{- tool_call.arguments }}
83
+ {%- else %}
84
+ {{- tool_call.arguments | tojson }}
85
+ {%- endif %}
86
+ {{- '}\n</tool_call>' }}
87
+ {%- endfor %}
88
+ {%- endif %}
89
+ {{- '<|im_end|>\n' }}
90
+ {%- elif message.role == "tool" %}
91
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
92
+ {{- '<|im_start|>user' }}
93
+ {%- endif %}
94
+ {{- '\n<tool_response>\n' }}
95
+ {%- if message.content is string %}
96
+ {{- message.content }}
97
+ {%- else %}
98
+ {%- for content in message.content %}
99
+ {%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
100
+ {%- set image_count.value = image_count.value + 1 %}
101
+ {%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
102
+ <|vision_start|><|image_pad|><|vision_end|>
103
+ {%- elif content.type == 'video' or 'video' in content %}
104
+ {%- set video_count.value = video_count.value + 1 %}
105
+ {%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
106
+ <|vision_start|><|video_pad|><|vision_end|>
107
+ {%- elif 'text' in content %}
108
+ {{- content.text }}
109
+ {%- endif %}
110
+ {%- endfor %}
111
+ {%- endif %}
112
+ {{- '\n</tool_response>' }}
113
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
114
+ {{- '<|im_end|>\n' }}
115
+ {%- endif %}
116
+ {%- endif %}
117
+ {%- endfor %}
118
+ {%- if add_generation_prompt %}
119
+ {{- '<|im_start|>assistant\n' }}
120
+ {%- endif %}
checkpoint-537/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4229d15b27ff28c9f42527317e0829421f5cdb985fc8f221b1eb944128d6f59e
3
+ size 4885870044
checkpoint-537/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4cbcf2233432062b1fa0687277ea1a8485b14d8ad6abcd77c80693607bebb7f7
3
+ size 8527467778
checkpoint-537/processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.5,
10
+ 0.5,
11
+ 0.5
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 16,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 16777216,
25
+ "shortest_edge": 65536
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "Qwen3VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": true,
38
+ "fps": 2,
39
+ "image_mean": [
40
+ 0.5,
41
+ 0.5,
42
+ 0.5
43
+ ],
44
+ "image_std": [
45
+ 0.5,
46
+ 0.5,
47
+ 0.5
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 16,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 25165824,
58
+ "shortest_edge": 4096
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen3VLVideoProcessor"
62
+ }
63
+ }
checkpoint-537/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:659b1cdee2219458dd84ce6a632a595465680b8080e5c44bd600ff97eca8d752
3
+ size 15429
checkpoint-537/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86accf27064cdd503053e90476a6bd10de333d4ff0594535ad55ea13a473c91d
3
+ size 15429
checkpoint-537/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18ca8d714ef40be035404c1957b5a4dee84e1f43980408393f8aa710552ee6f6
3
+ size 15429
checkpoint-537/rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cfdebe99e40accc9c9d8f09c63136a14abda997d9b501969ec8e16e9d183179
3
+ size 15429
checkpoint-537/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f7fe019d7b5610635791b26be1530136e4922aac9ed7000c5d71f6ed8f98dac
3
+ size 1465