danym commited on
Commit
43d27aa
·
verified ·
1 Parent(s): 1144f20

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -63,3 +63,4 @@ stage2_v3pf_qwen3_5_9b_b300/latest/__7_0.distcp filter=lfs diff=lfs merge=lfs -t
63
  qwen3_5_9b_stage2_v3pf_b300/vllm_compat/tokenizer.json filter=lfs diff=lfs merge=lfs -text
64
  qwen3_6_35b_a3b_allretr_stage1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
65
  qwen3_6_35b_a3b_allretr_stage1/vllm_compat/tokenizer.json filter=lfs diff=lfs merge=lfs -text
 
 
63
  qwen3_5_9b_stage2_v3pf_b300/vllm_compat/tokenizer.json filter=lfs diff=lfs merge=lfs -text
64
  qwen3_6_35b_a3b_allretr_stage1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
65
  qwen3_6_35b_a3b_allretr_stage1/vllm_compat/tokenizer.json filter=lfs diff=lfs merge=lfs -text
66
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
chat_template.jinja ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- set image_count = namespace(value=0) %}
2
+ {%- set video_count = namespace(value=0) %}
3
+ {%- macro render_content(content, do_vision_count, is_system_content=false) %}
4
+ {%- if content is string %}
5
+ {{- content }}
6
+ {%- elif content is iterable and content is not mapping %}
7
+ {%- for item in content %}
8
+ {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
9
+ {%- if is_system_content %}
10
+ {{- raise_exception('System message cannot contain images.') }}
11
+ {%- endif %}
12
+ {%- if do_vision_count %}
13
+ {%- set image_count.value = image_count.value + 1 %}
14
+ {%- endif %}
15
+ {%- if add_vision_id %}
16
+ {{- 'Picture ' ~ image_count.value ~ ': ' }}
17
+ {%- endif %}
18
+ {{- '<|vision_start|><|image_pad|><|vision_end|>' }}
19
+ {%- elif 'video' in item or item.type == 'video' %}
20
+ {%- if is_system_content %}
21
+ {{- raise_exception('System message cannot contain videos.') }}
22
+ {%- endif %}
23
+ {%- if do_vision_count %}
24
+ {%- set video_count.value = video_count.value + 1 %}
25
+ {%- endif %}
26
+ {%- if add_vision_id %}
27
+ {{- 'Video ' ~ video_count.value ~ ': ' }}
28
+ {%- endif %}
29
+ {{- '<|vision_start|><|video_pad|><|vision_end|>' }}
30
+ {%- elif 'text' in item %}
31
+ {{- item.text }}
32
+ {%- else %}
33
+ {{- raise_exception('Unexpected item type in content.') }}
34
+ {%- endif %}
35
+ {%- endfor %}
36
+ {%- elif content is none or content is undefined %}
37
+ {{- '' }}
38
+ {%- else %}
39
+ {{- raise_exception('Unexpected content type.') }}
40
+ {%- endif %}
41
+ {%- endmacro %}
42
+ {%- if not messages %}
43
+ {{- raise_exception('No messages provided.') }}
44
+ {%- endif %}
45
+ {%- if tools and tools is iterable and tools is not mapping %}
46
+ {{- '<|im_start|>system\n' }}
47
+ {{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
48
+ {%- for tool in tools %}
49
+ {{- "\n" }}
50
+ {{- tool | tojson }}
51
+ {%- endfor %}
52
+ {{- "\n</tools>" }}
53
+ {{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
54
+ {%- if messages[0].role == 'system' %}
55
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
56
+ {%- if content %}
57
+ {{- '\n\n' + content }}
58
+ {%- endif %}
59
+ {%- endif %}
60
+ {{- '<|im_end|>\n' }}
61
+ {%- else %}
62
+ {%- if messages[0].role == 'system' %}
63
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
64
+ {{- '<|im_start|>system\n' + content + '<|im_end|>\n' }}
65
+ {%- endif %}
66
+ {%- endif %}
67
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
68
+ {%- for message in messages[::-1] %}
69
+ {%- set index = (messages|length - 1) - loop.index0 %}
70
+ {%- if ns.multi_step_tool and message.role == "user" %}
71
+ {%- set content = render_content(message.content, false)|trim %}
72
+ {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
73
+ {%- set ns.multi_step_tool = false %}
74
+ {%- set ns.last_query_index = index %}
75
+ {%- endif %}
76
+ {%- endif %}
77
+ {%- endfor %}
78
+ {%- if ns.multi_step_tool %}
79
+ {{- raise_exception('No user query found in messages.') }}
80
+ {%- endif %}
81
+ {%- for message in messages %}
82
+ {%- set content = render_content(message.content, true)|trim %}
83
+ {%- if message.role == "system" %}
84
+ {%- if not loop.first %}
85
+ {{- raise_exception('System message must be at the beginning.') }}
86
+ {%- endif %}
87
+ {%- elif message.role == "user" %}
88
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
89
+ {%- elif message.role == "assistant" %}
90
+ {%- set reasoning_content = '' %}
91
+ {%- if message.reasoning_content is string %}
92
+ {%- set reasoning_content = message.reasoning_content %}
93
+ {%- else %}
94
+ {%- if '</think>' in content %}
95
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
96
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
97
+ {%- endif %}
98
+ {%- endif %}
99
+ {%- set reasoning_content = reasoning_content|trim %}
100
+ {%- if loop.index0 > ns.last_query_index %}
101
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
102
+ {%- else %}
103
+ {{- '<|im_start|>' + message.role + '\n' + content }}
104
+ {%- endif %}
105
+ {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
106
+ {%- for tool_call in message.tool_calls %}
107
+ {%- if tool_call.function is defined %}
108
+ {%- set tool_call = tool_call.function %}
109
+ {%- endif %}
110
+ {%- if loop.first %}
111
+ {%- if content|trim %}
112
+ {{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
113
+ {%- else %}
114
+ {{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
115
+ {%- endif %}
116
+ {%- else %}
117
+ {{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
118
+ {%- endif %}
119
+ {%- if tool_call.arguments is defined %}
120
+ {%- for args_name, args_value in tool_call.arguments|items %}
121
+ {{- '<parameter=' + args_name + '>\n' }}
122
+ {%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
123
+ {{- args_value }}
124
+ {{- '\n</parameter>\n' }}
125
+ {%- endfor %}
126
+ {%- endif %}
127
+ {{- '</function>\n</tool_call>' }}
128
+ {%- endfor %}
129
+ {%- endif %}
130
+ {{- '<|im_end|>\n' }}
131
+ {%- elif message.role == "tool" %}
132
+ {%- if loop.previtem and loop.previtem.role != "tool" %}
133
+ {{- '<|im_start|>user' }}
134
+ {%- endif %}
135
+ {{- '\n<tool_response>\n' }}
136
+ {{- content }}
137
+ {{- '\n</tool_response>' }}
138
+ {%- if not loop.last and loop.nextitem.role != "tool" %}
139
+ {{- '<|im_end|>\n' }}
140
+ {%- elif loop.last %}
141
+ {{- '<|im_end|>\n' }}
142
+ {%- endif %}
143
+ {%- else %}
144
+ {{- raise_exception('Unexpected message role.') }}
145
+ {%- endif %}
146
+ {%- endfor %}
147
+ {%- if add_generation_prompt %}
148
+ {{- '<|im_start|>assistant\n' }}
149
+ {%- if enable_thinking is defined and enable_thinking is false %}
150
+ {{- '<think>\n\n</think>\n\n' }}
151
+ {%- else %}
152
+ {{- '<think>\n' }}
153
+ {%- endif %}
154
+ {%- endif %}
ckpt.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:791d475d204071d7f0213aa4529b706ed4a6002f0a6b1d7bd4527fa7459b1a1b
3
+ size 6598666
loss_curve.csv ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ step,loss,distill_kl,agree_kl,lr,tok_per_s
2
+ 1,38.789196,38.789196,0.000000,2.000e-05,15216.2
3
+ 7,37.839962,37.839962,0.000000,8.000e-05,7445.3
4
+ 10,37.053440,37.053440,0.000000,1.100e-04,39654.8
5
+ 17,39.608994,39.608994,0.000000,1.800e-04,7494.5
6
+ 23,40.573605,40.573605,0.000000,2.400e-04,5058.3
7
+ 26,38.859566,38.859566,0.000000,2.700e-04,18584.9
8
+ 30,30.389381,30.389381,0.000000,3.100e-04,42489.1
9
+ 38,36.713814,36.713814,0.000000,3.900e-04,4424.7
10
+ 40,35.190712,35.190712,0.000000,4.100e-04,68411.4
11
+ 46,35.047192,35.047192,0.000000,4.700e-04,17683.3
12
+ 51,35.109936,35.109936,0.000000,5.200e-04,15793.2
13
+ 57,31.554787,31.554787,0.000000,5.800e-04,11639.5
14
+ 61,29.545170,29.545170,0.000000,6.200e-04,27695.4
15
+ 66,30.060705,30.060705,0.000000,6.700e-04,13943.4
16
+ 72,26.739662,26.739662,0.000000,7.300e-04,6812.6
17
+ 77,25.327383,25.327383,0.000000,7.800e-04,6649.2
18
+ 81,25.097601,25.097601,0.000000,8.200e-04,13981.2
19
+ 86,21.446486,21.446486,0.000000,8.700e-04,12738.9
20
+ 91,22.065109,22.065109,0.000000,9.200e-04,17261.7
21
+ 98,20.093021,20.093021,0.000000,9.900e-04,4244.4
22
+ 102,20.581947,20.581947,0.000000,1.000e-03,7410.7
23
+ 107,15.226495,15.226495,0.000000,9.995e-04,7855.8
24
+ 113,13.259332,13.259332,0.000000,9.983e-04,4252.2
25
+ 118,11.778306,11.778306,0.000000,9.968e-04,4244.0
26
+ 123,10.824446,10.824446,0.000000,9.948e-04,4237.4
27
+ 128,11.554870,11.554870,0.000000,9.923e-04,6084.8
28
+ 130,9.023664,9.023664,0.000000,9.911e-04,38039.2
29
+ 136,8.738180,8.738180,0.000000,9.873e-04,16595.4
30
+ 141,6.847273,6.847273,0.000000,9.835e-04,20890.9
31
+ 148,7.188715,7.188715,0.000000,9.774e-04,4558.4
32
+ 150,7.429653,7.429653,0.000000,9.755e-04,67745.7
33
+ 155,5.146590,5.146590,0.000000,9.704e-04,43204.8
34
+ 161,6.125732,6.125732,0.000000,9.637e-04,19938.2
35
+ 165,4.732550,4.732550,0.000000,9.589e-04,48386.1
36
+ 171,4.825805,4.825805,0.000000,9.511e-04,27331.1
37
+ 178,6.297479,6.297479,0.000000,9.411e-04,4337.8
38
+ 181,4.748247,4.748247,0.000000,9.366e-04,13750.5
39
+ 186,4.462758,4.462758,0.000000,9.288e-04,20161.5
40
+ 193,5.449700,5.449700,0.000000,9.170e-04,4248.7
41
+ 198,4.322855,4.322855,0.000000,9.082e-04,4238.2
42
+ 203,4.213812,4.213812,0.000000,8.989e-04,4238.0
43
+ 207,3.799648,3.799648,0.000000,8.912e-04,7402.3
44
+ 213,3.698510,3.698510,0.000000,8.792e-04,4141.1
45
+ 216,3.461662,3.461662,0.000000,8.730e-04,21524.2
46
+ 220,3.459363,3.459363,0.000000,8.645e-04,38688.9
47
+ 226,3.435270,3.435270,0.000000,8.513e-04,31606.8
48
+ 232,4.484162,4.484162,0.000000,8.377e-04,8023.5
49
+ 238,4.498869,4.498869,0.000000,8.235e-04,4578.3
50
+ 243,4.061327,4.061327,0.000000,8.114e-04,4768.6
51
+ 248,3.419380,3.419380,0.000000,7.990e-04,4244.5
52
+ 251,3.500835,3.500835,0.000000,7.913e-04,23952.4
53
+ 256,2.942934,2.942934,0.000000,7.784e-04,13313.2
54
+ 263,3.399804,3.399804,0.000000,7.599e-04,4228.8
55
+ 268,3.223961,3.223961,0.000000,7.464e-04,4223.0
56
+ 272,3.108742,3.108742,0.000000,7.354e-04,8646.8
57
+ 278,3.738605,3.738605,0.000000,7.186e-04,4239.0
58
+ 283,2.970390,2.970390,0.000000,7.043e-04,5598.0
59
+ 286,2.732635,2.732635,0.000000,6.957e-04,27332.0
60
+ 293,3.430861,3.430861,0.000000,6.753e-04,4226.6
61
+ 296,2.607919,2.607919,0.000000,6.664e-04,15970.0
62
+ 303,2.842535,2.842535,0.000000,6.455e-04,5802.0
63
+ 308,3.380185,3.380185,0.000000,6.304e-04,5188.5
64
+ 311,2.785544,2.785544,0.000000,6.213e-04,15352.5
65
+ 316,2.626540,2.626540,0.000000,6.060e-04,13395.3
66
+ 322,2.905012,2.905012,0.000000,5.875e-04,7611.9
67
+ 326,2.531753,2.531753,0.000000,5.751e-04,23859.9
68
+ 333,2.860965,2.860965,0.000000,5.533e-04,4530.5
69
+ 337,2.684601,2.684601,0.000000,5.408e-04,7667.4
70
+ 343,2.976162,2.976162,0.000000,5.220e-04,4239.1
71
+ 346,3.125975,3.125975,0.000000,5.126e-04,31237.3
72
+ 353,3.071309,3.071309,0.000000,4.906e-04,4228.0
73
+ 358,3.240630,3.240630,0.000000,4.749e-04,4227.4
74
+ 363,3.261945,3.261945,0.000000,4.592e-04,5125.1
75
+ 367,3.260708,3.260708,0.000000,4.467e-04,11573.6
76
+ 373,2.963808,2.963808,0.000000,4.280e-04,4394.7
77
+ 376,2.565841,2.565841,0.000000,4.187e-04,13676.1
78
+ 381,2.394880,2.394880,0.000000,4.032e-04,12541.4
79
+ 386,2.355356,2.355356,0.000000,3.879e-04,17428.2
80
+ 393,2.955215,2.955215,0.000000,3.665e-04,4401.0
81
+ 397,2.899159,2.899159,0.000000,3.545e-04,8377.9
82
+ 403,3.015910,3.015910,0.000000,3.366e-04,4296.0
83
+ 407,2.538303,2.538303,0.000000,3.247e-04,8043.7
84
+ 413,3.127864,3.127864,0.000000,3.072e-04,4298.1
85
+ 418,2.998759,2.998759,0.000000,2.928e-04,4798.8
86
+ 423,3.147634,3.147634,0.000000,2.786e-04,4244.1
87
+ 428,3.075955,3.075955,0.000000,2.646e-04,4927.6
88
+ 433,2.858573,2.858573,0.000000,2.509e-04,5693.6
89
+ 435,1.998581,1.998581,0.000000,2.455e-04,36566.3
90
+ 442,3.579702,3.579702,0.000000,2.268e-04,12106.0
91
+ 445,2.221598,2.221598,0.000000,2.190e-04,55121.3
92
+ 453,2.799558,2.799558,0.000000,1.985e-04,4292.6
93
+ 458,2.736555,2.736555,0.000000,1.862e-04,4260.5
94
+ 463,2.676741,2.676741,0.000000,1.741e-04,4284.6
95
+ 467,2.582446,2.582446,0.000000,1.647e-04,11607.7
96
+ 473,2.945476,2.945476,0.000000,1.509e-04,4287.6
97
+ 476,2.599123,2.599123,0.000000,1.442e-04,24064.8
98
+ 483,3.524433,3.524433,0.000000,1.291e-04,4280.2
99
+ 488,2.868298,2.868298,0.000000,1.188e-04,4551.5
100
+ 491,2.431671,2.431671,0.000000,1.127e-04,28452.6
101
+ 496,2.452458,2.452458,0.000000,1.030e-04,18471.7
102
+ 503,2.572148,2.572148,0.000000,9.002e-05,4284.7
103
+ 508,2.780742,2.780742,0.000000,8.124e-05,5854.9
104
+ 511,2.827664,2.827664,0.000000,7.616e-05,23118.3
105
+ 517,2.799655,2.799655,0.000000,6.646e-05,11999.8
106
+ 521,2.634980,2.634980,0.000000,6.034e-05,31520.5
107
+ 528,3.433747,3.433747,0.000000,5.030e-05,5737.2
108
+ 533,2.586520,2.586520,0.000000,4.365e-05,4283.5
109
+ 536,2.465654,2.465654,0.000000,3.988e-05,12816.6
110
+ 540,2.351502,2.351502,0.000000,3.511e-05,37026.2
111
+ 546,2.347608,2.347608,0.000000,2.850e-05,26273.9
112
+ 553,2.781969,2.781969,0.000000,2.164e-05,4250.9
113
+ 558,2.570587,2.570587,0.000000,1.731e-05,4256.8
114
+ 560,2.042787,2.042787,0.000000,1.571e-05,48395.1
115
+ 568,2.783283,2.783283,0.000000,1.007e-05,4967.6
116
+ 573,2.862680,2.862680,0.000000,7.178e-06,4233.9
117
+ 577,2.632743,2.632743,0.000000,5.212e-06,6726.3
118
+ 583,2.652764,2.652764,0.000000,2.850e-06,4228.9
119
+ 586,2.522513,2.522513,0.000000,1.933e-06,17763.5
120
+ 591,2.335135,2.335135,0.000000,7.992e-07,16899.3
121
+ 596,2.357494,2.357494,0.000000,1.579e-07,13673.2
stage1_summary.json ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": "Qwen/Qwen3.5-9B",
3
+ "probe": "probe_results/mi300x_9b_allretr.json",
4
+ "steps": 600,
5
+ "lr": 0.001,
6
+ "seq_len": 131072,
7
+ "batch_size": 1,
8
+ "d_idx": 16,
9
+ "group_agree_loss": 0.0,
10
+ "init_from": null,
11
+ "chunked_teacher": true,
12
+ "cq": 4096,
13
+ "elapsed_min": 174.15655491059977,
14
+ "final_per_head_kl": {
15
+ "3": [
16
+ 4.593803726739482,
17
+ 3.410243195254239,
18
+ 3.5888593552131702,
19
+ 4.6822851397609755,
20
+ 0.8305473322269198,
21
+ 1.1673379760931124,
22
+ 1.5762652097513894,
23
+ 1.0128812176677704,
24
+ 3.3167540997212255,
25
+ 1.799044251458729,
26
+ 1.7019176598556,
27
+ 2.2712551432016848,
28
+ 1.5196908843723618,
29
+ 2.024793378777086,
30
+ 0.6604239991299291,
31
+ 2.072595749019453
32
+ ],
33
+ "7": [
34
+ 5.075489091960391,
35
+ 4.540986425685064,
36
+ 4.601246872581609,
37
+ 3.2168032301450156,
38
+ 3.2345920711424476,
39
+ 2.9049126370237968,
40
+ 1.3735442423897655,
41
+ 4.060737014068436,
42
+ 3.7775711611351483,
43
+ 1.4299579887127127,
44
+ 2.266692423897654,
45
+ 2.159260964651928,
46
+ 3.1257064173086393,
47
+ 3.891731070049775,
48
+ 3.299265084159983,
49
+ 3.5663830966608625
50
+ ],
51
+ "11": [
52
+ 2.8785906569337447,
53
+ 3.115237226227223,
54
+ 2.5582499881828653,
55
+ 2.9077316762962573,
56
+ 2.446724132292546,
57
+ 3.140160868301059,
58
+ 3.124129585597826,
59
+ 2.898979817158699,
60
+ 3.175635906115889,
61
+ 1.4351075455426867,
62
+ 3.2905795589955327,
63
+ 2.2393125698035385,
64
+ 3.3401959624423982,
65
+ 3.11980162878588,
66
+ 2.9127986162410298,
67
+ 3.0960572955141057
68
+ ],
69
+ "15": [
70
+ 1.529403555555922,
71
+ 2.7887688235960146,
72
+ 2.5803037498241173,
73
+ 2.01445731939571,
74
+ 1.7256206159805034,
75
+ 1.8691750801916245,
76
+ 2.399475312357095,
77
+ 2.83946223518626,
78
+ 2.396328656771053,
79
+ 2.177124830712678,
80
+ 2.4256641435710393,
81
+ 2.4409239803736633,
82
+ 2.36247424963944,
83
+ 2.753803468411425,
84
+ 2.031825037567495,
85
+ 2.1247666631215263
86
+ ],
87
+ "19": [
88
+ 2.460418164419762,
89
+ 2.0898832549555015,
90
+ 2.4441304773792565,
91
+ 2.5005181676076402,
92
+ 2.0902674148836535,
93
+ 1.8442892426425972,
94
+ 1.5240928872117718,
95
+ 2.337066242459019,
96
+ 1.8528365176388595,
97
+ 2.329931544439021,
98
+ 2.356586808944966,
99
+ 2.132457247393635,
100
+ 2.6984642053499193,
101
+ 3.890836643505083,
102
+ 2.3112759303657486,
103
+ 2.4218452854030357
104
+ ],
105
+ "23": [
106
+ 2.4067274946795414,
107
+ 2.042321143546855,
108
+ 2.9173936952564374,
109
+ 2.2469329039591246,
110
+ 1.5838642627592074,
111
+ 1.5878576641262576,
112
+ 1.72485078463025,
113
+ 1.7928821997953162,
114
+ 2.2872549593490574,
115
+ 2.1080817966936207,
116
+ 2.5997792806607922,
117
+ 2.074354939040075,
118
+ 1.8014794571483221,
119
+ 1.8537860450084425,
120
+ 2.1193633814208264,
121
+ 2.286988489836165
122
+ ],
123
+ "27": [
124
+ 1.370882810713689,
125
+ 2.225345129032116,
126
+ 3.11398069382519,
127
+ 1.9831379109065006,
128
+ 1.4017502138076896,
129
+ 1.3009589364194192,
130
+ 1.3352709655203496,
131
+ 1.7207389886291684,
132
+ 1.395687748984276,
133
+ 1.9375296630687615,
134
+ 1.46587096472338,
135
+ 1.380170975386283,
136
+ 1.2181396140853649,
137
+ 2.0743062448884024,
138
+ 1.3117177847050003,
139
+ 1.139523241143195
140
+ ],
141
+ "31": [
142
+ 1.5005077245585339,
143
+ 1.3716400004781817,
144
+ 1.9651338881340579,
145
+ 1.302182336187034,
146
+ 1.0163908550906018,
147
+ 1.0520073120580942,
148
+ 0.8861319897663615,
149
+ 1.7970688490990396,
150
+ 2.420727604331557,
151
+ 4.982886384572429,
152
+ 2.9604456461279374,
153
+ 1.8760843595003165,
154
+ 2.8927373471467392,
155
+ 3.1637061309492402,
156
+ 2.557191186671152,
157
+ 2.0281517293964137
158
+ ]
159
+ },
160
+ "final_mean_kl": 2.3574943174134333,
161
+ "final_max_kl": 5.075489091960391
162
+ }
state_dict.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:728eeb74dd52260d3fc2b8e81ec7c99d91ed041cb352e4a6b6649c4d98efe6ac
3
+ size 2186238
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bce2bd5fb5e17086c178d80777938100a5a396f34c20991113fc7d6d557e3ea3
3
+ size 19989444
tokenizer_config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "audio_bos_token": "<|audio_start|>",
4
+ "audio_eos_token": "<|audio_end|>",
5
+ "audio_token": "<|audio_pad|>",
6
+ "backend": "tokenizers",
7
+ "bos_token": null,
8
+ "clean_up_tokenization_spaces": false,
9
+ "eos_token": "<|im_end|>",
10
+ "errors": "replace",
11
+ "image_token": "<|image_pad|>",
12
+ "is_local": false,
13
+ "model_max_length": 262144,
14
+ "model_specific_special_tokens": {
15
+ "audio_bos_token": "<|audio_start|>",
16
+ "audio_eos_token": "<|audio_end|>",
17
+ "audio_token": "<|audio_pad|>",
18
+ "image_token": "<|image_pad|>",
19
+ "video_token": "<|video_pad|>",
20
+ "vision_bos_token": "<|vision_start|>",
21
+ "vision_eos_token": "<|vision_end|>"
22
+ },
23
+ "pad_token": "<|endoftext|>",
24
+ "pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
25
+ "split_special_tokens": false,
26
+ "tokenizer_class": "TokenizersBackend",
27
+ "unk_token": null,
28
+ "video_token": "<|video_pad|>",
29
+ "vision_bos_token": "<|vision_start|>",
30
+ "vision_eos_token": "<|vision_end|>"
31
+ }