likhithv commited on
Commit
84d98c3
·
verified ·
1 Parent(s): 1e44281

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. README.md +63 -0
  3. adapter_config.json +50 -0
  4. adapter_model.safetensors +3 -0
  5. chat_template.jinja +154 -0
  6. checkpoint-1000/README.md +210 -0
  7. checkpoint-1000/adapter_config.json +50 -0
  8. checkpoint-1000/adapter_model.safetensors +3 -0
  9. checkpoint-1000/chat_template.jinja +154 -0
  10. checkpoint-1000/optimizer.pt +3 -0
  11. checkpoint-1000/processor_config.json +63 -0
  12. checkpoint-1000/rng_state.pth +3 -0
  13. checkpoint-1000/scheduler.pt +3 -0
  14. checkpoint-1000/tokenizer.json +3 -0
  15. checkpoint-1000/tokenizer_config.json +33 -0
  16. checkpoint-1000/trainer_state.json +734 -0
  17. checkpoint-1000/training_args.bin +3 -0
  18. checkpoint-1500/README.md +210 -0
  19. checkpoint-1500/adapter_config.json +50 -0
  20. checkpoint-1500/adapter_model.safetensors +3 -0
  21. checkpoint-1500/chat_template.jinja +154 -0
  22. checkpoint-1500/optimizer.pt +3 -0
  23. checkpoint-1500/processor_config.json +63 -0
  24. checkpoint-1500/rng_state.pth +3 -0
  25. checkpoint-1500/scheduler.pt +3 -0
  26. checkpoint-1500/tokenizer.json +3 -0
  27. checkpoint-1500/tokenizer_config.json +33 -0
  28. checkpoint-1500/trainer_state.json +1084 -0
  29. checkpoint-1500/training_args.bin +3 -0
  30. checkpoint-1638/README.md +210 -0
  31. checkpoint-1638/adapter_config.json +50 -0
  32. checkpoint-1638/adapter_model.safetensors +3 -0
  33. checkpoint-1638/chat_template.jinja +154 -0
  34. checkpoint-1638/optimizer.pt +3 -0
  35. checkpoint-1638/processor_config.json +63 -0
  36. checkpoint-1638/rng_state.pth +3 -0
  37. checkpoint-1638/scheduler.pt +3 -0
  38. checkpoint-1638/tokenizer.json +3 -0
  39. checkpoint-1638/tokenizer_config.json +33 -0
  40. checkpoint-1638/trainer_state.json +1175 -0
  41. checkpoint-1638/training_args.bin +3 -0
  42. checkpoint-500/README.md +210 -0
  43. checkpoint-500/adapter_config.json +50 -0
  44. checkpoint-500/adapter_model.safetensors +3 -0
  45. checkpoint-500/chat_template.jinja +154 -0
  46. checkpoint-500/optimizer.pt +3 -0
  47. checkpoint-500/processor_config.json +63 -0
  48. checkpoint-500/rng_state.pth +3 -0
  49. checkpoint-500/scheduler.pt +3 -0
  50. checkpoint-500/tokenizer.json +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-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-1500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ checkpoint-1638/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
40
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3.5-4B
3
+ library_name: peft
4
+ model_name: km_full_model
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen3.5-4B
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ licence: license
13
+ pipeline_tag: text-generation
14
+ ---
15
+
16
+ # Model Card for km_full_model
17
+
18
+ This model is a fine-tuned version of [Qwen/Qwen3.5-4B](https://huggingface.co/Qwen/Qwen3.5-4B).
19
+ It has been trained using [TRL](https://github.com/huggingface/trl).
20
+
21
+ ## Quick start
22
+
23
+ ```python
24
+ from transformers import pipeline
25
+
26
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
27
+ generator = pipeline("text-generation", model="None", device="cuda")
28
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
29
+ print(output["generated_text"])
30
+ ```
31
+
32
+ ## Training procedure
33
+
34
+
35
+
36
+
37
+ This model was trained with SFT.
38
+
39
+ ### Framework versions
40
+
41
+ - PEFT 0.18.1
42
+ - TRL: 0.24.0
43
+ - Transformers: 5.2.0
44
+ - Pytorch: 2.9.0+cu126
45
+ - Datasets: 4.3.0
46
+ - Tokenizers: 0.22.2
47
+
48
+ ## Citations
49
+
50
+
51
+
52
+ Cite TRL as:
53
+
54
+ ```bibtex
55
+ @misc{vonwerra2022trl,
56
+ title = {{TRL: Transformer Reinforcement Learning}},
57
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
58
+ year = 2020,
59
+ journal = {GitHub repository},
60
+ publisher = {GitHub},
61
+ howpublished = {\url{https://github.com/huggingface/trl}}
62
+ }
63
+ ```
adapter_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Qwen3_5ForConditionalGeneration",
7
+ "parent_library": "transformers.models.qwen3_5.modeling_qwen3_5",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "Qwen/Qwen3.5-4B",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 16,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0,
26
+ "megatron_config": null,
27
+ "megatron_core": "megatron.core",
28
+ "modules_to_save": null,
29
+ "peft_type": "LORA",
30
+ "peft_version": "0.18.1",
31
+ "qalora_group_size": 16,
32
+ "r": 16,
33
+ "rank_pattern": {},
34
+ "revision": null,
35
+ "target_modules": [
36
+ "k_proj",
37
+ "q_proj",
38
+ "down_proj",
39
+ "v_proj",
40
+ "o_proj",
41
+ "up_proj",
42
+ "gate_proj"
43
+ ],
44
+ "target_parameters": null,
45
+ "task_type": "CAUSAL_LM",
46
+ "trainable_token_indices": null,
47
+ "use_dora": false,
48
+ "use_qalora": false,
49
+ "use_rslora": false
50
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cae7c6d0daab67837abb33f93468f20937e3666d8f09a8ea2decd15b8e7c76ab
3
+ size 84972248
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 %}
checkpoint-1000/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3.5-4B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen3.5-4B
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.18.1
checkpoint-1000/adapter_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Qwen3_5ForConditionalGeneration",
7
+ "parent_library": "transformers.models.qwen3_5.modeling_qwen3_5",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "Qwen/Qwen3.5-4B",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 16,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0,
26
+ "megatron_config": null,
27
+ "megatron_core": "megatron.core",
28
+ "modules_to_save": null,
29
+ "peft_type": "LORA",
30
+ "peft_version": "0.18.1",
31
+ "qalora_group_size": 16,
32
+ "r": 16,
33
+ "rank_pattern": {},
34
+ "revision": null,
35
+ "target_modules": [
36
+ "k_proj",
37
+ "q_proj",
38
+ "down_proj",
39
+ "v_proj",
40
+ "o_proj",
41
+ "up_proj",
42
+ "gate_proj"
43
+ ],
44
+ "target_parameters": null,
45
+ "task_type": "CAUSAL_LM",
46
+ "trainable_token_indices": null,
47
+ "use_dora": false,
48
+ "use_qalora": false,
49
+ "use_rslora": false
50
+ }
checkpoint-1000/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42b767baac65782780ee33853bf9be44bf627a24033838b00082417abd536180
3
+ size 84972248
checkpoint-1000/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 %}
checkpoint-1000/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf457645153c16cc8c9e1ece00490c651f215adf22ed1062cf0554c765f7352b
3
+ size 43434405
checkpoint-1000/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-1000/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:098b29492211804ab324a36f37466821d948280bb74fce4ba895c03f13ecd878
3
+ size 14645
checkpoint-1000/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b75b69f57bec77f6eb803b4451664f594e6da317e27b8e1452ada7d5843e7e09
3
+ size 1465
checkpoint-1000/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87a7830d63fcf43bf241c3c5242e96e62dd3fdc29224ca26fed8ea333db72de4
3
+ size 19989343
checkpoint-1000/tokenizer_config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "padding_side": "right",
25
+ "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+",
26
+ "processor_class": "Qwen3VLProcessor",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "TokenizersBackend",
29
+ "unk_token": null,
30
+ "video_token": "<|video_pad|>",
31
+ "vision_bos_token": "<|vision_start|>",
32
+ "vision_eos_token": "<|vision_end|>"
33
+ }
checkpoint-1000/trainer_state.json ADDED
@@ -0,0 +1,734 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.832263978001833,
6
+ "eval_steps": 500,
7
+ "global_step": 1000,
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.01833180568285976,
14
+ "grad_norm": 0.6833510994911194,
15
+ "learning_rate": 0.00018,
16
+ "loss": 1.8247451782226562,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.03666361136571952,
21
+ "grad_norm": 0.9012069702148438,
22
+ "learning_rate": 0.0001988943488943489,
23
+ "loss": 1.4739965438842773,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.054995417048579284,
28
+ "grad_norm": 0.8267062306404114,
29
+ "learning_rate": 0.00019766584766584767,
30
+ "loss": 1.3358205795288085,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.07332722273143905,
35
+ "grad_norm": 0.7565646767616272,
36
+ "learning_rate": 0.00019643734643734644,
37
+ "loss": 1.2644735336303712,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 0.09165902841429881,
42
+ "grad_norm": 0.8591431975364685,
43
+ "learning_rate": 0.0001952088452088452,
44
+ "loss": 1.244968318939209,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 0.10999083409715857,
49
+ "grad_norm": 0.8081830143928528,
50
+ "learning_rate": 0.000193980343980344,
51
+ "loss": 1.209956455230713,
52
+ "step": 60
53
+ },
54
+ {
55
+ "epoch": 0.12832263978001834,
56
+ "grad_norm": 0.8808525800704956,
57
+ "learning_rate": 0.00019275184275184277,
58
+ "loss": 1.1500988960266114,
59
+ "step": 70
60
+ },
61
+ {
62
+ "epoch": 0.1466544454628781,
63
+ "grad_norm": 0.82117760181427,
64
+ "learning_rate": 0.00019152334152334154,
65
+ "loss": 1.1469905853271485,
66
+ "step": 80
67
+ },
68
+ {
69
+ "epoch": 0.16498625114573787,
70
+ "grad_norm": 0.8583332896232605,
71
+ "learning_rate": 0.0001902948402948403,
72
+ "loss": 1.1948189735412598,
73
+ "step": 90
74
+ },
75
+ {
76
+ "epoch": 0.18331805682859761,
77
+ "grad_norm": 0.6712405681610107,
78
+ "learning_rate": 0.00018906633906633907,
79
+ "loss": 1.1391284942626954,
80
+ "step": 100
81
+ },
82
+ {
83
+ "epoch": 0.2016498625114574,
84
+ "grad_norm": 0.8613548874855042,
85
+ "learning_rate": 0.00018783783783783784,
86
+ "loss": 1.1040291786193848,
87
+ "step": 110
88
+ },
89
+ {
90
+ "epoch": 0.21998166819431714,
91
+ "grad_norm": 0.8608964085578918,
92
+ "learning_rate": 0.0001866093366093366,
93
+ "loss": 1.1578070640563964,
94
+ "step": 120
95
+ },
96
+ {
97
+ "epoch": 0.2383134738771769,
98
+ "grad_norm": 0.8638626337051392,
99
+ "learning_rate": 0.0001853808353808354,
100
+ "loss": 1.1500712394714356,
101
+ "step": 130
102
+ },
103
+ {
104
+ "epoch": 0.2566452795600367,
105
+ "grad_norm": 0.8131710886955261,
106
+ "learning_rate": 0.00018415233415233417,
107
+ "loss": 1.0960933685302734,
108
+ "step": 140
109
+ },
110
+ {
111
+ "epoch": 0.27497708524289644,
112
+ "grad_norm": 1.023303508758545,
113
+ "learning_rate": 0.00018292383292383292,
114
+ "loss": 1.106197452545166,
115
+ "step": 150
116
+ },
117
+ {
118
+ "epoch": 0.2933088909257562,
119
+ "grad_norm": 0.7958722114562988,
120
+ "learning_rate": 0.0001816953316953317,
121
+ "loss": 1.1257465362548829,
122
+ "step": 160
123
+ },
124
+ {
125
+ "epoch": 0.31164069660861593,
126
+ "grad_norm": 0.8529394865036011,
127
+ "learning_rate": 0.00018046683046683048,
128
+ "loss": 1.062838077545166,
129
+ "step": 170
130
+ },
131
+ {
132
+ "epoch": 0.32997250229147573,
133
+ "grad_norm": 0.8443934917449951,
134
+ "learning_rate": 0.00017923832923832925,
135
+ "loss": 1.023012638092041,
136
+ "step": 180
137
+ },
138
+ {
139
+ "epoch": 0.3483043079743355,
140
+ "grad_norm": 0.8035740852355957,
141
+ "learning_rate": 0.00017800982800982802,
142
+ "loss": 1.0435395240783691,
143
+ "step": 190
144
+ },
145
+ {
146
+ "epoch": 0.36663611365719523,
147
+ "grad_norm": 0.8863442540168762,
148
+ "learning_rate": 0.00017678132678132678,
149
+ "loss": 1.0918319702148438,
150
+ "step": 200
151
+ },
152
+ {
153
+ "epoch": 0.384967919340055,
154
+ "grad_norm": 0.8198781609535217,
155
+ "learning_rate": 0.00017555282555282555,
156
+ "loss": 1.0226572036743165,
157
+ "step": 210
158
+ },
159
+ {
160
+ "epoch": 0.4032997250229148,
161
+ "grad_norm": 0.9801501035690308,
162
+ "learning_rate": 0.00017432432432432432,
163
+ "loss": 1.0847922325134278,
164
+ "step": 220
165
+ },
166
+ {
167
+ "epoch": 0.4216315307057745,
168
+ "grad_norm": 0.6737959980964661,
169
+ "learning_rate": 0.00017309582309582312,
170
+ "loss": 1.0508249282836915,
171
+ "step": 230
172
+ },
173
+ {
174
+ "epoch": 0.4399633363886343,
175
+ "grad_norm": 0.7932195067405701,
176
+ "learning_rate": 0.00017186732186732188,
177
+ "loss": 1.042081069946289,
178
+ "step": 240
179
+ },
180
+ {
181
+ "epoch": 0.458295142071494,
182
+ "grad_norm": 0.864284873008728,
183
+ "learning_rate": 0.00017063882063882065,
184
+ "loss": 1.0485817909240722,
185
+ "step": 250
186
+ },
187
+ {
188
+ "epoch": 0.4766269477543538,
189
+ "grad_norm": 0.8705862164497375,
190
+ "learning_rate": 0.00016941031941031942,
191
+ "loss": 1.0782199859619142,
192
+ "step": 260
193
+ },
194
+ {
195
+ "epoch": 0.49495875343721357,
196
+ "grad_norm": 0.8180854916572571,
197
+ "learning_rate": 0.0001681818181818182,
198
+ "loss": 1.075644302368164,
199
+ "step": 270
200
+ },
201
+ {
202
+ "epoch": 0.5132905591200734,
203
+ "grad_norm": 0.8689812421798706,
204
+ "learning_rate": 0.00016695331695331696,
205
+ "loss": 1.0431486129760743,
206
+ "step": 280
207
+ },
208
+ {
209
+ "epoch": 0.5316223648029331,
210
+ "grad_norm": 0.7797616720199585,
211
+ "learning_rate": 0.00016572481572481573,
212
+ "loss": 1.019082736968994,
213
+ "step": 290
214
+ },
215
+ {
216
+ "epoch": 0.5499541704857929,
217
+ "grad_norm": 0.9403369426727295,
218
+ "learning_rate": 0.0001644963144963145,
219
+ "loss": 1.0104355812072754,
220
+ "step": 300
221
+ },
222
+ {
223
+ "epoch": 0.5682859761686526,
224
+ "grad_norm": 0.8061522245407104,
225
+ "learning_rate": 0.0001632678132678133,
226
+ "loss": 1.015712833404541,
227
+ "step": 310
228
+ },
229
+ {
230
+ "epoch": 0.5866177818515124,
231
+ "grad_norm": 1.0389378070831299,
232
+ "learning_rate": 0.00016203931203931203,
233
+ "loss": 0.983332347869873,
234
+ "step": 320
235
+ },
236
+ {
237
+ "epoch": 0.6049495875343721,
238
+ "grad_norm": 0.8335319757461548,
239
+ "learning_rate": 0.00016081081081081083,
240
+ "loss": 1.0035177230834962,
241
+ "step": 330
242
+ },
243
+ {
244
+ "epoch": 0.6232813932172319,
245
+ "grad_norm": 0.8039399981498718,
246
+ "learning_rate": 0.0001595823095823096,
247
+ "loss": 1.0274381637573242,
248
+ "step": 340
249
+ },
250
+ {
251
+ "epoch": 0.6416131989000916,
252
+ "grad_norm": 0.777919352054596,
253
+ "learning_rate": 0.00015835380835380836,
254
+ "loss": 1.0467321395874023,
255
+ "step": 350
256
+ },
257
+ {
258
+ "epoch": 0.6599450045829515,
259
+ "grad_norm": 0.8876609802246094,
260
+ "learning_rate": 0.00015712530712530713,
261
+ "loss": 0.9848588943481446,
262
+ "step": 360
263
+ },
264
+ {
265
+ "epoch": 0.6782768102658112,
266
+ "grad_norm": 0.8413349986076355,
267
+ "learning_rate": 0.0001558968058968059,
268
+ "loss": 1.0367840766906737,
269
+ "step": 370
270
+ },
271
+ {
272
+ "epoch": 0.696608615948671,
273
+ "grad_norm": 0.9921192526817322,
274
+ "learning_rate": 0.0001546683046683047,
275
+ "loss": 1.0018555641174316,
276
+ "step": 380
277
+ },
278
+ {
279
+ "epoch": 0.7149404216315307,
280
+ "grad_norm": 0.8272864818572998,
281
+ "learning_rate": 0.00015343980343980344,
282
+ "loss": 1.0093633651733398,
283
+ "step": 390
284
+ },
285
+ {
286
+ "epoch": 0.7332722273143905,
287
+ "grad_norm": 0.7949515581130981,
288
+ "learning_rate": 0.00015221130221130223,
289
+ "loss": 1.0220769882202148,
290
+ "step": 400
291
+ },
292
+ {
293
+ "epoch": 0.7516040329972502,
294
+ "grad_norm": 0.8337849378585815,
295
+ "learning_rate": 0.000150982800982801,
296
+ "loss": 0.9723053932189941,
297
+ "step": 410
298
+ },
299
+ {
300
+ "epoch": 0.76993583868011,
301
+ "grad_norm": 0.9521737694740295,
302
+ "learning_rate": 0.00014975429975429974,
303
+ "loss": 1.0630863189697266,
304
+ "step": 420
305
+ },
306
+ {
307
+ "epoch": 0.7882676443629697,
308
+ "grad_norm": 0.8320823311805725,
309
+ "learning_rate": 0.00014852579852579854,
310
+ "loss": 0.9916687965393066,
311
+ "step": 430
312
+ },
313
+ {
314
+ "epoch": 0.8065994500458296,
315
+ "grad_norm": 0.903413712978363,
316
+ "learning_rate": 0.0001472972972972973,
317
+ "loss": 0.9519875526428223,
318
+ "step": 440
319
+ },
320
+ {
321
+ "epoch": 0.8249312557286893,
322
+ "grad_norm": 0.8783673048019409,
323
+ "learning_rate": 0.00014606879606879607,
324
+ "loss": 1.0056891441345215,
325
+ "step": 450
326
+ },
327
+ {
328
+ "epoch": 0.843263061411549,
329
+ "grad_norm": 0.8581491708755493,
330
+ "learning_rate": 0.00014484029484029484,
331
+ "loss": 1.0211298942565918,
332
+ "step": 460
333
+ },
334
+ {
335
+ "epoch": 0.8615948670944088,
336
+ "grad_norm": 0.7977339029312134,
337
+ "learning_rate": 0.0001436117936117936,
338
+ "loss": 0.9528703689575195,
339
+ "step": 470
340
+ },
341
+ {
342
+ "epoch": 0.8799266727772685,
343
+ "grad_norm": 0.8142527937889099,
344
+ "learning_rate": 0.0001423832923832924,
345
+ "loss": 1.0111416816711425,
346
+ "step": 480
347
+ },
348
+ {
349
+ "epoch": 0.8982584784601283,
350
+ "grad_norm": 0.865929126739502,
351
+ "learning_rate": 0.00014115479115479115,
352
+ "loss": 0.978369140625,
353
+ "step": 490
354
+ },
355
+ {
356
+ "epoch": 0.916590284142988,
357
+ "grad_norm": 0.7955005764961243,
358
+ "learning_rate": 0.00013992628992628994,
359
+ "loss": 0.998965835571289,
360
+ "step": 500
361
+ },
362
+ {
363
+ "epoch": 0.9349220898258478,
364
+ "grad_norm": 0.7812423706054688,
365
+ "learning_rate": 0.0001386977886977887,
366
+ "loss": 0.9544276237487793,
367
+ "step": 510
368
+ },
369
+ {
370
+ "epoch": 0.9532538955087076,
371
+ "grad_norm": 0.817484974861145,
372
+ "learning_rate": 0.00013746928746928748,
373
+ "loss": 0.9699355125427246,
374
+ "step": 520
375
+ },
376
+ {
377
+ "epoch": 0.9715857011915674,
378
+ "grad_norm": 0.875234842300415,
379
+ "learning_rate": 0.00013624078624078625,
380
+ "loss": 0.9715826034545898,
381
+ "step": 530
382
+ },
383
+ {
384
+ "epoch": 0.9899175068744271,
385
+ "grad_norm": 0.7700145244598389,
386
+ "learning_rate": 0.00013501228501228501,
387
+ "loss": 0.9811925888061523,
388
+ "step": 540
389
+ },
390
+ {
391
+ "epoch": 1.0073327222731439,
392
+ "grad_norm": 0.7260869145393372,
393
+ "learning_rate": 0.0001337837837837838,
394
+ "loss": 0.882848072052002,
395
+ "step": 550
396
+ },
397
+ {
398
+ "epoch": 1.0256645279560037,
399
+ "grad_norm": 0.7263541221618652,
400
+ "learning_rate": 0.00013255528255528255,
401
+ "loss": 0.8015734672546386,
402
+ "step": 560
403
+ },
404
+ {
405
+ "epoch": 1.0439963336388633,
406
+ "grad_norm": 0.8721809387207031,
407
+ "learning_rate": 0.00013132678132678135,
408
+ "loss": 0.778080940246582,
409
+ "step": 570
410
+ },
411
+ {
412
+ "epoch": 1.0623281393217232,
413
+ "grad_norm": 0.8094732165336609,
414
+ "learning_rate": 0.00013009828009828011,
415
+ "loss": 0.7774394989013672,
416
+ "step": 580
417
+ },
418
+ {
419
+ "epoch": 1.0806599450045828,
420
+ "grad_norm": 0.8383634686470032,
421
+ "learning_rate": 0.00012886977886977886,
422
+ "loss": 0.7659544944763184,
423
+ "step": 590
424
+ },
425
+ {
426
+ "epoch": 1.0989917506874427,
427
+ "grad_norm": 0.9429551959037781,
428
+ "learning_rate": 0.00012764127764127765,
429
+ "loss": 0.7822256565093995,
430
+ "step": 600
431
+ },
432
+ {
433
+ "epoch": 1.1173235563703026,
434
+ "grad_norm": 0.8432884812355042,
435
+ "learning_rate": 0.00012641277641277642,
436
+ "loss": 0.7877971649169921,
437
+ "step": 610
438
+ },
439
+ {
440
+ "epoch": 1.1356553620531622,
441
+ "grad_norm": 0.9461238384246826,
442
+ "learning_rate": 0.0001251842751842752,
443
+ "loss": 0.8412753105163574,
444
+ "step": 620
445
+ },
446
+ {
447
+ "epoch": 1.153987167736022,
448
+ "grad_norm": 0.9495576620101929,
449
+ "learning_rate": 0.00012395577395577396,
450
+ "loss": 0.7389075279235839,
451
+ "step": 630
452
+ },
453
+ {
454
+ "epoch": 1.1723189734188817,
455
+ "grad_norm": 0.8137982487678528,
456
+ "learning_rate": 0.00012272727272727272,
457
+ "loss": 0.7511651992797852,
458
+ "step": 640
459
+ },
460
+ {
461
+ "epoch": 1.1906507791017416,
462
+ "grad_norm": 0.9718158841133118,
463
+ "learning_rate": 0.00012149877149877152,
464
+ "loss": 0.7982583999633789,
465
+ "step": 650
466
+ },
467
+ {
468
+ "epoch": 1.2089825847846012,
469
+ "grad_norm": 1.0837777853012085,
470
+ "learning_rate": 0.00012027027027027027,
471
+ "loss": 0.762714433670044,
472
+ "step": 660
473
+ },
474
+ {
475
+ "epoch": 1.227314390467461,
476
+ "grad_norm": 0.9882314801216125,
477
+ "learning_rate": 0.00011904176904176904,
478
+ "loss": 0.7749518871307373,
479
+ "step": 670
480
+ },
481
+ {
482
+ "epoch": 1.2456461961503207,
483
+ "grad_norm": 0.9463419914245605,
484
+ "learning_rate": 0.00011781326781326782,
485
+ "loss": 0.7641645908355713,
486
+ "step": 680
487
+ },
488
+ {
489
+ "epoch": 1.2639780018331805,
490
+ "grad_norm": 0.9794511198997498,
491
+ "learning_rate": 0.00011658476658476658,
492
+ "loss": 0.8050010681152344,
493
+ "step": 690
494
+ },
495
+ {
496
+ "epoch": 1.2823098075160404,
497
+ "grad_norm": 1.1002216339111328,
498
+ "learning_rate": 0.00011535626535626536,
499
+ "loss": 0.793759822845459,
500
+ "step": 700
501
+ },
502
+ {
503
+ "epoch": 1.3006416131989,
504
+ "grad_norm": 0.9648078083992004,
505
+ "learning_rate": 0.00011412776412776414,
506
+ "loss": 0.7668623447418212,
507
+ "step": 710
508
+ },
509
+ {
510
+ "epoch": 1.31897341888176,
511
+ "grad_norm": 1.0727074146270752,
512
+ "learning_rate": 0.00011289926289926291,
513
+ "loss": 0.8029165267944336,
514
+ "step": 720
515
+ },
516
+ {
517
+ "epoch": 1.3373052245646195,
518
+ "grad_norm": 0.9617047905921936,
519
+ "learning_rate": 0.00011167076167076167,
520
+ "loss": 0.7798116683959961,
521
+ "step": 730
522
+ },
523
+ {
524
+ "epoch": 1.3556370302474794,
525
+ "grad_norm": 0.8710028529167175,
526
+ "learning_rate": 0.00011044226044226045,
527
+ "loss": 0.7962553977966309,
528
+ "step": 740
529
+ },
530
+ {
531
+ "epoch": 1.3739688359303392,
532
+ "grad_norm": 0.8409777283668518,
533
+ "learning_rate": 0.00010921375921375923,
534
+ "loss": 0.7403414726257325,
535
+ "step": 750
536
+ },
537
+ {
538
+ "epoch": 1.3923006416131989,
539
+ "grad_norm": 1.029362440109253,
540
+ "learning_rate": 0.00010798525798525798,
541
+ "loss": 0.7815125465393067,
542
+ "step": 760
543
+ },
544
+ {
545
+ "epoch": 1.4106324472960587,
546
+ "grad_norm": 0.9566736221313477,
547
+ "learning_rate": 0.00010675675675675677,
548
+ "loss": 0.7839052200317382,
549
+ "step": 770
550
+ },
551
+ {
552
+ "epoch": 1.4289642529789184,
553
+ "grad_norm": 0.975339949131012,
554
+ "learning_rate": 0.00010552825552825553,
555
+ "loss": 0.749812650680542,
556
+ "step": 780
557
+ },
558
+ {
559
+ "epoch": 1.4472960586617782,
560
+ "grad_norm": 1.1521857976913452,
561
+ "learning_rate": 0.00010429975429975432,
562
+ "loss": 0.7797944068908691,
563
+ "step": 790
564
+ },
565
+ {
566
+ "epoch": 1.4656278643446379,
567
+ "grad_norm": 0.8301038146018982,
568
+ "learning_rate": 0.00010307125307125307,
569
+ "loss": 0.7280281543731689,
570
+ "step": 800
571
+ },
572
+ {
573
+ "epoch": 1.4839596700274977,
574
+ "grad_norm": 0.9730615615844727,
575
+ "learning_rate": 0.00010184275184275185,
576
+ "loss": 0.7437058448791504,
577
+ "step": 810
578
+ },
579
+ {
580
+ "epoch": 1.5022914757103574,
581
+ "grad_norm": 1.0270700454711914,
582
+ "learning_rate": 0.00010061425061425062,
583
+ "loss": 0.7848101615905761,
584
+ "step": 820
585
+ },
586
+ {
587
+ "epoch": 1.5206232813932172,
588
+ "grad_norm": 1.2335196733474731,
589
+ "learning_rate": 9.938574938574939e-05,
590
+ "loss": 0.7896716117858886,
591
+ "step": 830
592
+ },
593
+ {
594
+ "epoch": 1.538955087076077,
595
+ "grad_norm": 0.968611478805542,
596
+ "learning_rate": 9.815724815724816e-05,
597
+ "loss": 0.7918240070343018,
598
+ "step": 840
599
+ },
600
+ {
601
+ "epoch": 1.5572868927589367,
602
+ "grad_norm": 0.9463298320770264,
603
+ "learning_rate": 9.692874692874694e-05,
604
+ "loss": 0.7453035354614258,
605
+ "step": 850
606
+ },
607
+ {
608
+ "epoch": 1.5756186984417964,
609
+ "grad_norm": 1.004184603691101,
610
+ "learning_rate": 9.570024570024571e-05,
611
+ "loss": 0.8125950813293457,
612
+ "step": 860
613
+ },
614
+ {
615
+ "epoch": 1.5939505041246562,
616
+ "grad_norm": 1.1150691509246826,
617
+ "learning_rate": 9.447174447174448e-05,
618
+ "loss": 0.7995445251464843,
619
+ "step": 870
620
+ },
621
+ {
622
+ "epoch": 1.612282309807516,
623
+ "grad_norm": 1.060056447982788,
624
+ "learning_rate": 9.324324324324324e-05,
625
+ "loss": 0.7746751785278321,
626
+ "step": 880
627
+ },
628
+ {
629
+ "epoch": 1.630614115490376,
630
+ "grad_norm": 1.0525883436203003,
631
+ "learning_rate": 9.201474201474201e-05,
632
+ "loss": 0.7861367225646972,
633
+ "step": 890
634
+ },
635
+ {
636
+ "epoch": 1.6489459211732356,
637
+ "grad_norm": 0.9495214223861694,
638
+ "learning_rate": 9.07862407862408e-05,
639
+ "loss": 0.8055791854858398,
640
+ "step": 900
641
+ },
642
+ {
643
+ "epoch": 1.6672777268560952,
644
+ "grad_norm": 0.8876036405563354,
645
+ "learning_rate": 8.955773955773956e-05,
646
+ "loss": 0.736152982711792,
647
+ "step": 910
648
+ },
649
+ {
650
+ "epoch": 1.685609532538955,
651
+ "grad_norm": 1.0228347778320312,
652
+ "learning_rate": 8.832923832923833e-05,
653
+ "loss": 0.7859257698059082,
654
+ "step": 920
655
+ },
656
+ {
657
+ "epoch": 1.703941338221815,
658
+ "grad_norm": 1.2196885347366333,
659
+ "learning_rate": 8.710073710073711e-05,
660
+ "loss": 0.7442365169525147,
661
+ "step": 930
662
+ },
663
+ {
664
+ "epoch": 1.7222731439046746,
665
+ "grad_norm": 1.1201367378234863,
666
+ "learning_rate": 8.587223587223587e-05,
667
+ "loss": 0.7933924674987793,
668
+ "step": 940
669
+ },
670
+ {
671
+ "epoch": 1.7406049495875344,
672
+ "grad_norm": 1.0457044839859009,
673
+ "learning_rate": 8.464373464373465e-05,
674
+ "loss": 0.7594408512115478,
675
+ "step": 950
676
+ },
677
+ {
678
+ "epoch": 1.758936755270394,
679
+ "grad_norm": 1.2219468355178833,
680
+ "learning_rate": 8.341523341523342e-05,
681
+ "loss": 0.725389051437378,
682
+ "step": 960
683
+ },
684
+ {
685
+ "epoch": 1.777268560953254,
686
+ "grad_norm": 1.0098403692245483,
687
+ "learning_rate": 8.21867321867322e-05,
688
+ "loss": 0.7753002166748046,
689
+ "step": 970
690
+ },
691
+ {
692
+ "epoch": 1.7956003666361138,
693
+ "grad_norm": 1.020544409751892,
694
+ "learning_rate": 8.095823095823097e-05,
695
+ "loss": 0.7580110549926757,
696
+ "step": 980
697
+ },
698
+ {
699
+ "epoch": 1.8139321723189734,
700
+ "grad_norm": 0.9121679067611694,
701
+ "learning_rate": 7.972972972972974e-05,
702
+ "loss": 0.7329069614410401,
703
+ "step": 990
704
+ },
705
+ {
706
+ "epoch": 1.832263978001833,
707
+ "grad_norm": 1.1305643320083618,
708
+ "learning_rate": 7.85012285012285e-05,
709
+ "loss": 0.7436663150787354,
710
+ "step": 1000
711
+ }
712
+ ],
713
+ "logging_steps": 10,
714
+ "max_steps": 1638,
715
+ "num_input_tokens_seen": 0,
716
+ "num_train_epochs": 3,
717
+ "save_steps": 500,
718
+ "stateful_callbacks": {
719
+ "TrainerControl": {
720
+ "args": {
721
+ "should_epoch_stop": false,
722
+ "should_evaluate": false,
723
+ "should_log": false,
724
+ "should_save": true,
725
+ "should_training_stop": false
726
+ },
727
+ "attributes": {}
728
+ }
729
+ },
730
+ "total_flos": 2.734059628397261e+16,
731
+ "train_batch_size": 4,
732
+ "trial_name": null,
733
+ "trial_params": null
734
+ }
checkpoint-1000/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e85e9413c7636d9fff8558d114d2112dff5238aa624b3ebdad9a7bde187c0bf2
3
+ size 5713
checkpoint-1500/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3.5-4B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen3.5-4B
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.18.1
checkpoint-1500/adapter_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Qwen3_5ForConditionalGeneration",
7
+ "parent_library": "transformers.models.qwen3_5.modeling_qwen3_5",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "Qwen/Qwen3.5-4B",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 16,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0,
26
+ "megatron_config": null,
27
+ "megatron_core": "megatron.core",
28
+ "modules_to_save": null,
29
+ "peft_type": "LORA",
30
+ "peft_version": "0.18.1",
31
+ "qalora_group_size": 16,
32
+ "r": 16,
33
+ "rank_pattern": {},
34
+ "revision": null,
35
+ "target_modules": [
36
+ "k_proj",
37
+ "q_proj",
38
+ "down_proj",
39
+ "v_proj",
40
+ "o_proj",
41
+ "up_proj",
42
+ "gate_proj"
43
+ ],
44
+ "target_parameters": null,
45
+ "task_type": "CAUSAL_LM",
46
+ "trainable_token_indices": null,
47
+ "use_dora": false,
48
+ "use_qalora": false,
49
+ "use_rslora": false
50
+ }
checkpoint-1500/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2273f4b1d0643882baac5049c9004b1eed74ac50ac2bb70430b06145ac6436a5
3
+ size 84972248
checkpoint-1500/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 %}
checkpoint-1500/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0264ddc8590e4c498cd75dff8cb9af42a735ebd6211196b5227803b287a2c60
3
+ size 43434405
checkpoint-1500/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-1500/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4a9f217e852f439efa6bd32fde98d6867f11aa6ea13ddc021ba10af6a0b0934
3
+ size 14645
checkpoint-1500/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0931eefd71a9398394398348a2f58bb240814c4c660a1ff40d26a4b95bd14260
3
+ size 1465
checkpoint-1500/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87a7830d63fcf43bf241c3c5242e96e62dd3fdc29224ca26fed8ea333db72de4
3
+ size 19989343
checkpoint-1500/tokenizer_config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "padding_side": "right",
25
+ "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+",
26
+ "processor_class": "Qwen3VLProcessor",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "TokenizersBackend",
29
+ "unk_token": null,
30
+ "video_token": "<|video_pad|>",
31
+ "vision_bos_token": "<|vision_start|>",
32
+ "vision_eos_token": "<|vision_end|>"
33
+ }
checkpoint-1500/trainer_state.json ADDED
@@ -0,0 +1,1084 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 2.7479376718606785,
6
+ "eval_steps": 500,
7
+ "global_step": 1500,
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.01833180568285976,
14
+ "grad_norm": 0.6833510994911194,
15
+ "learning_rate": 0.00018,
16
+ "loss": 1.8247451782226562,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.03666361136571952,
21
+ "grad_norm": 0.9012069702148438,
22
+ "learning_rate": 0.0001988943488943489,
23
+ "loss": 1.4739965438842773,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.054995417048579284,
28
+ "grad_norm": 0.8267062306404114,
29
+ "learning_rate": 0.00019766584766584767,
30
+ "loss": 1.3358205795288085,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.07332722273143905,
35
+ "grad_norm": 0.7565646767616272,
36
+ "learning_rate": 0.00019643734643734644,
37
+ "loss": 1.2644735336303712,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 0.09165902841429881,
42
+ "grad_norm": 0.8591431975364685,
43
+ "learning_rate": 0.0001952088452088452,
44
+ "loss": 1.244968318939209,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 0.10999083409715857,
49
+ "grad_norm": 0.8081830143928528,
50
+ "learning_rate": 0.000193980343980344,
51
+ "loss": 1.209956455230713,
52
+ "step": 60
53
+ },
54
+ {
55
+ "epoch": 0.12832263978001834,
56
+ "grad_norm": 0.8808525800704956,
57
+ "learning_rate": 0.00019275184275184277,
58
+ "loss": 1.1500988960266114,
59
+ "step": 70
60
+ },
61
+ {
62
+ "epoch": 0.1466544454628781,
63
+ "grad_norm": 0.82117760181427,
64
+ "learning_rate": 0.00019152334152334154,
65
+ "loss": 1.1469905853271485,
66
+ "step": 80
67
+ },
68
+ {
69
+ "epoch": 0.16498625114573787,
70
+ "grad_norm": 0.8583332896232605,
71
+ "learning_rate": 0.0001902948402948403,
72
+ "loss": 1.1948189735412598,
73
+ "step": 90
74
+ },
75
+ {
76
+ "epoch": 0.18331805682859761,
77
+ "grad_norm": 0.6712405681610107,
78
+ "learning_rate": 0.00018906633906633907,
79
+ "loss": 1.1391284942626954,
80
+ "step": 100
81
+ },
82
+ {
83
+ "epoch": 0.2016498625114574,
84
+ "grad_norm": 0.8613548874855042,
85
+ "learning_rate": 0.00018783783783783784,
86
+ "loss": 1.1040291786193848,
87
+ "step": 110
88
+ },
89
+ {
90
+ "epoch": 0.21998166819431714,
91
+ "grad_norm": 0.8608964085578918,
92
+ "learning_rate": 0.0001866093366093366,
93
+ "loss": 1.1578070640563964,
94
+ "step": 120
95
+ },
96
+ {
97
+ "epoch": 0.2383134738771769,
98
+ "grad_norm": 0.8638626337051392,
99
+ "learning_rate": 0.0001853808353808354,
100
+ "loss": 1.1500712394714356,
101
+ "step": 130
102
+ },
103
+ {
104
+ "epoch": 0.2566452795600367,
105
+ "grad_norm": 0.8131710886955261,
106
+ "learning_rate": 0.00018415233415233417,
107
+ "loss": 1.0960933685302734,
108
+ "step": 140
109
+ },
110
+ {
111
+ "epoch": 0.27497708524289644,
112
+ "grad_norm": 1.023303508758545,
113
+ "learning_rate": 0.00018292383292383292,
114
+ "loss": 1.106197452545166,
115
+ "step": 150
116
+ },
117
+ {
118
+ "epoch": 0.2933088909257562,
119
+ "grad_norm": 0.7958722114562988,
120
+ "learning_rate": 0.0001816953316953317,
121
+ "loss": 1.1257465362548829,
122
+ "step": 160
123
+ },
124
+ {
125
+ "epoch": 0.31164069660861593,
126
+ "grad_norm": 0.8529394865036011,
127
+ "learning_rate": 0.00018046683046683048,
128
+ "loss": 1.062838077545166,
129
+ "step": 170
130
+ },
131
+ {
132
+ "epoch": 0.32997250229147573,
133
+ "grad_norm": 0.8443934917449951,
134
+ "learning_rate": 0.00017923832923832925,
135
+ "loss": 1.023012638092041,
136
+ "step": 180
137
+ },
138
+ {
139
+ "epoch": 0.3483043079743355,
140
+ "grad_norm": 0.8035740852355957,
141
+ "learning_rate": 0.00017800982800982802,
142
+ "loss": 1.0435395240783691,
143
+ "step": 190
144
+ },
145
+ {
146
+ "epoch": 0.36663611365719523,
147
+ "grad_norm": 0.8863442540168762,
148
+ "learning_rate": 0.00017678132678132678,
149
+ "loss": 1.0918319702148438,
150
+ "step": 200
151
+ },
152
+ {
153
+ "epoch": 0.384967919340055,
154
+ "grad_norm": 0.8198781609535217,
155
+ "learning_rate": 0.00017555282555282555,
156
+ "loss": 1.0226572036743165,
157
+ "step": 210
158
+ },
159
+ {
160
+ "epoch": 0.4032997250229148,
161
+ "grad_norm": 0.9801501035690308,
162
+ "learning_rate": 0.00017432432432432432,
163
+ "loss": 1.0847922325134278,
164
+ "step": 220
165
+ },
166
+ {
167
+ "epoch": 0.4216315307057745,
168
+ "grad_norm": 0.6737959980964661,
169
+ "learning_rate": 0.00017309582309582312,
170
+ "loss": 1.0508249282836915,
171
+ "step": 230
172
+ },
173
+ {
174
+ "epoch": 0.4399633363886343,
175
+ "grad_norm": 0.7932195067405701,
176
+ "learning_rate": 0.00017186732186732188,
177
+ "loss": 1.042081069946289,
178
+ "step": 240
179
+ },
180
+ {
181
+ "epoch": 0.458295142071494,
182
+ "grad_norm": 0.864284873008728,
183
+ "learning_rate": 0.00017063882063882065,
184
+ "loss": 1.0485817909240722,
185
+ "step": 250
186
+ },
187
+ {
188
+ "epoch": 0.4766269477543538,
189
+ "grad_norm": 0.8705862164497375,
190
+ "learning_rate": 0.00016941031941031942,
191
+ "loss": 1.0782199859619142,
192
+ "step": 260
193
+ },
194
+ {
195
+ "epoch": 0.49495875343721357,
196
+ "grad_norm": 0.8180854916572571,
197
+ "learning_rate": 0.0001681818181818182,
198
+ "loss": 1.075644302368164,
199
+ "step": 270
200
+ },
201
+ {
202
+ "epoch": 0.5132905591200734,
203
+ "grad_norm": 0.8689812421798706,
204
+ "learning_rate": 0.00016695331695331696,
205
+ "loss": 1.0431486129760743,
206
+ "step": 280
207
+ },
208
+ {
209
+ "epoch": 0.5316223648029331,
210
+ "grad_norm": 0.7797616720199585,
211
+ "learning_rate": 0.00016572481572481573,
212
+ "loss": 1.019082736968994,
213
+ "step": 290
214
+ },
215
+ {
216
+ "epoch": 0.5499541704857929,
217
+ "grad_norm": 0.9403369426727295,
218
+ "learning_rate": 0.0001644963144963145,
219
+ "loss": 1.0104355812072754,
220
+ "step": 300
221
+ },
222
+ {
223
+ "epoch": 0.5682859761686526,
224
+ "grad_norm": 0.8061522245407104,
225
+ "learning_rate": 0.0001632678132678133,
226
+ "loss": 1.015712833404541,
227
+ "step": 310
228
+ },
229
+ {
230
+ "epoch": 0.5866177818515124,
231
+ "grad_norm": 1.0389378070831299,
232
+ "learning_rate": 0.00016203931203931203,
233
+ "loss": 0.983332347869873,
234
+ "step": 320
235
+ },
236
+ {
237
+ "epoch": 0.6049495875343721,
238
+ "grad_norm": 0.8335319757461548,
239
+ "learning_rate": 0.00016081081081081083,
240
+ "loss": 1.0035177230834962,
241
+ "step": 330
242
+ },
243
+ {
244
+ "epoch": 0.6232813932172319,
245
+ "grad_norm": 0.8039399981498718,
246
+ "learning_rate": 0.0001595823095823096,
247
+ "loss": 1.0274381637573242,
248
+ "step": 340
249
+ },
250
+ {
251
+ "epoch": 0.6416131989000916,
252
+ "grad_norm": 0.777919352054596,
253
+ "learning_rate": 0.00015835380835380836,
254
+ "loss": 1.0467321395874023,
255
+ "step": 350
256
+ },
257
+ {
258
+ "epoch": 0.6599450045829515,
259
+ "grad_norm": 0.8876609802246094,
260
+ "learning_rate": 0.00015712530712530713,
261
+ "loss": 0.9848588943481446,
262
+ "step": 360
263
+ },
264
+ {
265
+ "epoch": 0.6782768102658112,
266
+ "grad_norm": 0.8413349986076355,
267
+ "learning_rate": 0.0001558968058968059,
268
+ "loss": 1.0367840766906737,
269
+ "step": 370
270
+ },
271
+ {
272
+ "epoch": 0.696608615948671,
273
+ "grad_norm": 0.9921192526817322,
274
+ "learning_rate": 0.0001546683046683047,
275
+ "loss": 1.0018555641174316,
276
+ "step": 380
277
+ },
278
+ {
279
+ "epoch": 0.7149404216315307,
280
+ "grad_norm": 0.8272864818572998,
281
+ "learning_rate": 0.00015343980343980344,
282
+ "loss": 1.0093633651733398,
283
+ "step": 390
284
+ },
285
+ {
286
+ "epoch": 0.7332722273143905,
287
+ "grad_norm": 0.7949515581130981,
288
+ "learning_rate": 0.00015221130221130223,
289
+ "loss": 1.0220769882202148,
290
+ "step": 400
291
+ },
292
+ {
293
+ "epoch": 0.7516040329972502,
294
+ "grad_norm": 0.8337849378585815,
295
+ "learning_rate": 0.000150982800982801,
296
+ "loss": 0.9723053932189941,
297
+ "step": 410
298
+ },
299
+ {
300
+ "epoch": 0.76993583868011,
301
+ "grad_norm": 0.9521737694740295,
302
+ "learning_rate": 0.00014975429975429974,
303
+ "loss": 1.0630863189697266,
304
+ "step": 420
305
+ },
306
+ {
307
+ "epoch": 0.7882676443629697,
308
+ "grad_norm": 0.8320823311805725,
309
+ "learning_rate": 0.00014852579852579854,
310
+ "loss": 0.9916687965393066,
311
+ "step": 430
312
+ },
313
+ {
314
+ "epoch": 0.8065994500458296,
315
+ "grad_norm": 0.903413712978363,
316
+ "learning_rate": 0.0001472972972972973,
317
+ "loss": 0.9519875526428223,
318
+ "step": 440
319
+ },
320
+ {
321
+ "epoch": 0.8249312557286893,
322
+ "grad_norm": 0.8783673048019409,
323
+ "learning_rate": 0.00014606879606879607,
324
+ "loss": 1.0056891441345215,
325
+ "step": 450
326
+ },
327
+ {
328
+ "epoch": 0.843263061411549,
329
+ "grad_norm": 0.8581491708755493,
330
+ "learning_rate": 0.00014484029484029484,
331
+ "loss": 1.0211298942565918,
332
+ "step": 460
333
+ },
334
+ {
335
+ "epoch": 0.8615948670944088,
336
+ "grad_norm": 0.7977339029312134,
337
+ "learning_rate": 0.0001436117936117936,
338
+ "loss": 0.9528703689575195,
339
+ "step": 470
340
+ },
341
+ {
342
+ "epoch": 0.8799266727772685,
343
+ "grad_norm": 0.8142527937889099,
344
+ "learning_rate": 0.0001423832923832924,
345
+ "loss": 1.0111416816711425,
346
+ "step": 480
347
+ },
348
+ {
349
+ "epoch": 0.8982584784601283,
350
+ "grad_norm": 0.865929126739502,
351
+ "learning_rate": 0.00014115479115479115,
352
+ "loss": 0.978369140625,
353
+ "step": 490
354
+ },
355
+ {
356
+ "epoch": 0.916590284142988,
357
+ "grad_norm": 0.7955005764961243,
358
+ "learning_rate": 0.00013992628992628994,
359
+ "loss": 0.998965835571289,
360
+ "step": 500
361
+ },
362
+ {
363
+ "epoch": 0.9349220898258478,
364
+ "grad_norm": 0.7812423706054688,
365
+ "learning_rate": 0.0001386977886977887,
366
+ "loss": 0.9544276237487793,
367
+ "step": 510
368
+ },
369
+ {
370
+ "epoch": 0.9532538955087076,
371
+ "grad_norm": 0.817484974861145,
372
+ "learning_rate": 0.00013746928746928748,
373
+ "loss": 0.9699355125427246,
374
+ "step": 520
375
+ },
376
+ {
377
+ "epoch": 0.9715857011915674,
378
+ "grad_norm": 0.875234842300415,
379
+ "learning_rate": 0.00013624078624078625,
380
+ "loss": 0.9715826034545898,
381
+ "step": 530
382
+ },
383
+ {
384
+ "epoch": 0.9899175068744271,
385
+ "grad_norm": 0.7700145244598389,
386
+ "learning_rate": 0.00013501228501228501,
387
+ "loss": 0.9811925888061523,
388
+ "step": 540
389
+ },
390
+ {
391
+ "epoch": 1.0073327222731439,
392
+ "grad_norm": 0.7260869145393372,
393
+ "learning_rate": 0.0001337837837837838,
394
+ "loss": 0.882848072052002,
395
+ "step": 550
396
+ },
397
+ {
398
+ "epoch": 1.0256645279560037,
399
+ "grad_norm": 0.7263541221618652,
400
+ "learning_rate": 0.00013255528255528255,
401
+ "loss": 0.8015734672546386,
402
+ "step": 560
403
+ },
404
+ {
405
+ "epoch": 1.0439963336388633,
406
+ "grad_norm": 0.8721809387207031,
407
+ "learning_rate": 0.00013132678132678135,
408
+ "loss": 0.778080940246582,
409
+ "step": 570
410
+ },
411
+ {
412
+ "epoch": 1.0623281393217232,
413
+ "grad_norm": 0.8094732165336609,
414
+ "learning_rate": 0.00013009828009828011,
415
+ "loss": 0.7774394989013672,
416
+ "step": 580
417
+ },
418
+ {
419
+ "epoch": 1.0806599450045828,
420
+ "grad_norm": 0.8383634686470032,
421
+ "learning_rate": 0.00012886977886977886,
422
+ "loss": 0.7659544944763184,
423
+ "step": 590
424
+ },
425
+ {
426
+ "epoch": 1.0989917506874427,
427
+ "grad_norm": 0.9429551959037781,
428
+ "learning_rate": 0.00012764127764127765,
429
+ "loss": 0.7822256565093995,
430
+ "step": 600
431
+ },
432
+ {
433
+ "epoch": 1.1173235563703026,
434
+ "grad_norm": 0.8432884812355042,
435
+ "learning_rate": 0.00012641277641277642,
436
+ "loss": 0.7877971649169921,
437
+ "step": 610
438
+ },
439
+ {
440
+ "epoch": 1.1356553620531622,
441
+ "grad_norm": 0.9461238384246826,
442
+ "learning_rate": 0.0001251842751842752,
443
+ "loss": 0.8412753105163574,
444
+ "step": 620
445
+ },
446
+ {
447
+ "epoch": 1.153987167736022,
448
+ "grad_norm": 0.9495576620101929,
449
+ "learning_rate": 0.00012395577395577396,
450
+ "loss": 0.7389075279235839,
451
+ "step": 630
452
+ },
453
+ {
454
+ "epoch": 1.1723189734188817,
455
+ "grad_norm": 0.8137982487678528,
456
+ "learning_rate": 0.00012272727272727272,
457
+ "loss": 0.7511651992797852,
458
+ "step": 640
459
+ },
460
+ {
461
+ "epoch": 1.1906507791017416,
462
+ "grad_norm": 0.9718158841133118,
463
+ "learning_rate": 0.00012149877149877152,
464
+ "loss": 0.7982583999633789,
465
+ "step": 650
466
+ },
467
+ {
468
+ "epoch": 1.2089825847846012,
469
+ "grad_norm": 1.0837777853012085,
470
+ "learning_rate": 0.00012027027027027027,
471
+ "loss": 0.762714433670044,
472
+ "step": 660
473
+ },
474
+ {
475
+ "epoch": 1.227314390467461,
476
+ "grad_norm": 0.9882314801216125,
477
+ "learning_rate": 0.00011904176904176904,
478
+ "loss": 0.7749518871307373,
479
+ "step": 670
480
+ },
481
+ {
482
+ "epoch": 1.2456461961503207,
483
+ "grad_norm": 0.9463419914245605,
484
+ "learning_rate": 0.00011781326781326782,
485
+ "loss": 0.7641645908355713,
486
+ "step": 680
487
+ },
488
+ {
489
+ "epoch": 1.2639780018331805,
490
+ "grad_norm": 0.9794511198997498,
491
+ "learning_rate": 0.00011658476658476658,
492
+ "loss": 0.8050010681152344,
493
+ "step": 690
494
+ },
495
+ {
496
+ "epoch": 1.2823098075160404,
497
+ "grad_norm": 1.1002216339111328,
498
+ "learning_rate": 0.00011535626535626536,
499
+ "loss": 0.793759822845459,
500
+ "step": 700
501
+ },
502
+ {
503
+ "epoch": 1.3006416131989,
504
+ "grad_norm": 0.9648078083992004,
505
+ "learning_rate": 0.00011412776412776414,
506
+ "loss": 0.7668623447418212,
507
+ "step": 710
508
+ },
509
+ {
510
+ "epoch": 1.31897341888176,
511
+ "grad_norm": 1.0727074146270752,
512
+ "learning_rate": 0.00011289926289926291,
513
+ "loss": 0.8029165267944336,
514
+ "step": 720
515
+ },
516
+ {
517
+ "epoch": 1.3373052245646195,
518
+ "grad_norm": 0.9617047905921936,
519
+ "learning_rate": 0.00011167076167076167,
520
+ "loss": 0.7798116683959961,
521
+ "step": 730
522
+ },
523
+ {
524
+ "epoch": 1.3556370302474794,
525
+ "grad_norm": 0.8710028529167175,
526
+ "learning_rate": 0.00011044226044226045,
527
+ "loss": 0.7962553977966309,
528
+ "step": 740
529
+ },
530
+ {
531
+ "epoch": 1.3739688359303392,
532
+ "grad_norm": 0.8409777283668518,
533
+ "learning_rate": 0.00010921375921375923,
534
+ "loss": 0.7403414726257325,
535
+ "step": 750
536
+ },
537
+ {
538
+ "epoch": 1.3923006416131989,
539
+ "grad_norm": 1.029362440109253,
540
+ "learning_rate": 0.00010798525798525798,
541
+ "loss": 0.7815125465393067,
542
+ "step": 760
543
+ },
544
+ {
545
+ "epoch": 1.4106324472960587,
546
+ "grad_norm": 0.9566736221313477,
547
+ "learning_rate": 0.00010675675675675677,
548
+ "loss": 0.7839052200317382,
549
+ "step": 770
550
+ },
551
+ {
552
+ "epoch": 1.4289642529789184,
553
+ "grad_norm": 0.975339949131012,
554
+ "learning_rate": 0.00010552825552825553,
555
+ "loss": 0.749812650680542,
556
+ "step": 780
557
+ },
558
+ {
559
+ "epoch": 1.4472960586617782,
560
+ "grad_norm": 1.1521857976913452,
561
+ "learning_rate": 0.00010429975429975432,
562
+ "loss": 0.7797944068908691,
563
+ "step": 790
564
+ },
565
+ {
566
+ "epoch": 1.4656278643446379,
567
+ "grad_norm": 0.8301038146018982,
568
+ "learning_rate": 0.00010307125307125307,
569
+ "loss": 0.7280281543731689,
570
+ "step": 800
571
+ },
572
+ {
573
+ "epoch": 1.4839596700274977,
574
+ "grad_norm": 0.9730615615844727,
575
+ "learning_rate": 0.00010184275184275185,
576
+ "loss": 0.7437058448791504,
577
+ "step": 810
578
+ },
579
+ {
580
+ "epoch": 1.5022914757103574,
581
+ "grad_norm": 1.0270700454711914,
582
+ "learning_rate": 0.00010061425061425062,
583
+ "loss": 0.7848101615905761,
584
+ "step": 820
585
+ },
586
+ {
587
+ "epoch": 1.5206232813932172,
588
+ "grad_norm": 1.2335196733474731,
589
+ "learning_rate": 9.938574938574939e-05,
590
+ "loss": 0.7896716117858886,
591
+ "step": 830
592
+ },
593
+ {
594
+ "epoch": 1.538955087076077,
595
+ "grad_norm": 0.968611478805542,
596
+ "learning_rate": 9.815724815724816e-05,
597
+ "loss": 0.7918240070343018,
598
+ "step": 840
599
+ },
600
+ {
601
+ "epoch": 1.5572868927589367,
602
+ "grad_norm": 0.9463298320770264,
603
+ "learning_rate": 9.692874692874694e-05,
604
+ "loss": 0.7453035354614258,
605
+ "step": 850
606
+ },
607
+ {
608
+ "epoch": 1.5756186984417964,
609
+ "grad_norm": 1.004184603691101,
610
+ "learning_rate": 9.570024570024571e-05,
611
+ "loss": 0.8125950813293457,
612
+ "step": 860
613
+ },
614
+ {
615
+ "epoch": 1.5939505041246562,
616
+ "grad_norm": 1.1150691509246826,
617
+ "learning_rate": 9.447174447174448e-05,
618
+ "loss": 0.7995445251464843,
619
+ "step": 870
620
+ },
621
+ {
622
+ "epoch": 1.612282309807516,
623
+ "grad_norm": 1.060056447982788,
624
+ "learning_rate": 9.324324324324324e-05,
625
+ "loss": 0.7746751785278321,
626
+ "step": 880
627
+ },
628
+ {
629
+ "epoch": 1.630614115490376,
630
+ "grad_norm": 1.0525883436203003,
631
+ "learning_rate": 9.201474201474201e-05,
632
+ "loss": 0.7861367225646972,
633
+ "step": 890
634
+ },
635
+ {
636
+ "epoch": 1.6489459211732356,
637
+ "grad_norm": 0.9495214223861694,
638
+ "learning_rate": 9.07862407862408e-05,
639
+ "loss": 0.8055791854858398,
640
+ "step": 900
641
+ },
642
+ {
643
+ "epoch": 1.6672777268560952,
644
+ "grad_norm": 0.8876036405563354,
645
+ "learning_rate": 8.955773955773956e-05,
646
+ "loss": 0.736152982711792,
647
+ "step": 910
648
+ },
649
+ {
650
+ "epoch": 1.685609532538955,
651
+ "grad_norm": 1.0228347778320312,
652
+ "learning_rate": 8.832923832923833e-05,
653
+ "loss": 0.7859257698059082,
654
+ "step": 920
655
+ },
656
+ {
657
+ "epoch": 1.703941338221815,
658
+ "grad_norm": 1.2196885347366333,
659
+ "learning_rate": 8.710073710073711e-05,
660
+ "loss": 0.7442365169525147,
661
+ "step": 930
662
+ },
663
+ {
664
+ "epoch": 1.7222731439046746,
665
+ "grad_norm": 1.1201367378234863,
666
+ "learning_rate": 8.587223587223587e-05,
667
+ "loss": 0.7933924674987793,
668
+ "step": 940
669
+ },
670
+ {
671
+ "epoch": 1.7406049495875344,
672
+ "grad_norm": 1.0457044839859009,
673
+ "learning_rate": 8.464373464373465e-05,
674
+ "loss": 0.7594408512115478,
675
+ "step": 950
676
+ },
677
+ {
678
+ "epoch": 1.758936755270394,
679
+ "grad_norm": 1.2219468355178833,
680
+ "learning_rate": 8.341523341523342e-05,
681
+ "loss": 0.725389051437378,
682
+ "step": 960
683
+ },
684
+ {
685
+ "epoch": 1.777268560953254,
686
+ "grad_norm": 1.0098403692245483,
687
+ "learning_rate": 8.21867321867322e-05,
688
+ "loss": 0.7753002166748046,
689
+ "step": 970
690
+ },
691
+ {
692
+ "epoch": 1.7956003666361138,
693
+ "grad_norm": 1.020544409751892,
694
+ "learning_rate": 8.095823095823097e-05,
695
+ "loss": 0.7580110549926757,
696
+ "step": 980
697
+ },
698
+ {
699
+ "epoch": 1.8139321723189734,
700
+ "grad_norm": 0.9121679067611694,
701
+ "learning_rate": 7.972972972972974e-05,
702
+ "loss": 0.7329069614410401,
703
+ "step": 990
704
+ },
705
+ {
706
+ "epoch": 1.832263978001833,
707
+ "grad_norm": 1.1305643320083618,
708
+ "learning_rate": 7.85012285012285e-05,
709
+ "loss": 0.7436663150787354,
710
+ "step": 1000
711
+ },
712
+ {
713
+ "epoch": 1.850595783684693,
714
+ "grad_norm": 0.9970649480819702,
715
+ "learning_rate": 7.727272727272727e-05,
716
+ "loss": 0.7684538841247559,
717
+ "step": 1010
718
+ },
719
+ {
720
+ "epoch": 1.8689275893675528,
721
+ "grad_norm": 1.0161981582641602,
722
+ "learning_rate": 7.604422604422605e-05,
723
+ "loss": 0.7405171394348145,
724
+ "step": 1020
725
+ },
726
+ {
727
+ "epoch": 1.8872593950504126,
728
+ "grad_norm": 1.3399347066879272,
729
+ "learning_rate": 7.481572481572482e-05,
730
+ "loss": 0.780091667175293,
731
+ "step": 1030
732
+ },
733
+ {
734
+ "epoch": 1.9055912007332723,
735
+ "grad_norm": 1.2579443454742432,
736
+ "learning_rate": 7.358722358722359e-05,
737
+ "loss": 0.6868968486785889,
738
+ "step": 1040
739
+ },
740
+ {
741
+ "epoch": 1.923923006416132,
742
+ "grad_norm": 1.0092531442642212,
743
+ "learning_rate": 7.235872235872236e-05,
744
+ "loss": 0.742798137664795,
745
+ "step": 1050
746
+ },
747
+ {
748
+ "epoch": 1.9422548120989918,
749
+ "grad_norm": 1.121690273284912,
750
+ "learning_rate": 7.113022113022113e-05,
751
+ "loss": 0.8035343170166016,
752
+ "step": 1060
753
+ },
754
+ {
755
+ "epoch": 1.9605866177818516,
756
+ "grad_norm": 1.0780940055847168,
757
+ "learning_rate": 6.990171990171991e-05,
758
+ "loss": 0.7256640911102294,
759
+ "step": 1070
760
+ },
761
+ {
762
+ "epoch": 1.9789184234647113,
763
+ "grad_norm": 1.0335768461227417,
764
+ "learning_rate": 6.867321867321868e-05,
765
+ "loss": 0.751814889907837,
766
+ "step": 1080
767
+ },
768
+ {
769
+ "epoch": 1.9972502291475709,
770
+ "grad_norm": 1.0326813459396362,
771
+ "learning_rate": 6.744471744471746e-05,
772
+ "loss": 0.781493854522705,
773
+ "step": 1090
774
+ },
775
+ {
776
+ "epoch": 2.0146654445462877,
777
+ "grad_norm": 0.9365840554237366,
778
+ "learning_rate": 6.621621621621621e-05,
779
+ "loss": 0.6172435760498047,
780
+ "step": 1100
781
+ },
782
+ {
783
+ "epoch": 2.0329972502291476,
784
+ "grad_norm": 1.0775729417800903,
785
+ "learning_rate": 6.498771498771498e-05,
786
+ "loss": 0.5551021575927735,
787
+ "step": 1110
788
+ },
789
+ {
790
+ "epoch": 2.0513290559120074,
791
+ "grad_norm": 1.1233711242675781,
792
+ "learning_rate": 6.375921375921376e-05,
793
+ "loss": 0.530482006072998,
794
+ "step": 1120
795
+ },
796
+ {
797
+ "epoch": 2.0696608615948673,
798
+ "grad_norm": 0.9685810208320618,
799
+ "learning_rate": 6.253071253071253e-05,
800
+ "loss": 0.5284864902496338,
801
+ "step": 1130
802
+ },
803
+ {
804
+ "epoch": 2.0879926672777267,
805
+ "grad_norm": 1.3673559427261353,
806
+ "learning_rate": 6.130221130221131e-05,
807
+ "loss": 0.5300433158874511,
808
+ "step": 1140
809
+ },
810
+ {
811
+ "epoch": 2.1063244729605866,
812
+ "grad_norm": 1.291156530380249,
813
+ "learning_rate": 6.0073710073710075e-05,
814
+ "loss": 0.5388914585113526,
815
+ "step": 1150
816
+ },
817
+ {
818
+ "epoch": 2.1246562786434464,
819
+ "grad_norm": 1.0860686302185059,
820
+ "learning_rate": 5.8845208845208844e-05,
821
+ "loss": 0.5599504947662354,
822
+ "step": 1160
823
+ },
824
+ {
825
+ "epoch": 2.1429880843263063,
826
+ "grad_norm": 1.2297484874725342,
827
+ "learning_rate": 5.761670761670762e-05,
828
+ "loss": 0.5693662643432618,
829
+ "step": 1170
830
+ },
831
+ {
832
+ "epoch": 2.1613198900091657,
833
+ "grad_norm": 1.3128403425216675,
834
+ "learning_rate": 5.638820638820639e-05,
835
+ "loss": 0.5087790012359619,
836
+ "step": 1180
837
+ },
838
+ {
839
+ "epoch": 2.1796516956920255,
840
+ "grad_norm": 1.47864830493927,
841
+ "learning_rate": 5.515970515970517e-05,
842
+ "loss": 0.5520669460296631,
843
+ "step": 1190
844
+ },
845
+ {
846
+ "epoch": 2.1979835013748854,
847
+ "grad_norm": 1.3533881902694702,
848
+ "learning_rate": 5.393120393120393e-05,
849
+ "loss": 0.5194924354553223,
850
+ "step": 1200
851
+ },
852
+ {
853
+ "epoch": 2.2163153070577453,
854
+ "grad_norm": 1.0729988813400269,
855
+ "learning_rate": 5.27027027027027e-05,
856
+ "loss": 0.5386343955993652,
857
+ "step": 1210
858
+ },
859
+ {
860
+ "epoch": 2.234647112740605,
861
+ "grad_norm": 1.1851814985275269,
862
+ "learning_rate": 5.147420147420148e-05,
863
+ "loss": 0.5398934364318848,
864
+ "step": 1220
865
+ },
866
+ {
867
+ "epoch": 2.2529789184234645,
868
+ "grad_norm": 1.306754469871521,
869
+ "learning_rate": 5.024570024570024e-05,
870
+ "loss": 0.5412076473236084,
871
+ "step": 1230
872
+ },
873
+ {
874
+ "epoch": 2.2713107241063244,
875
+ "grad_norm": 1.2561992406845093,
876
+ "learning_rate": 4.901719901719902e-05,
877
+ "loss": 0.555613899230957,
878
+ "step": 1240
879
+ },
880
+ {
881
+ "epoch": 2.2896425297891843,
882
+ "grad_norm": 1.4935739040374756,
883
+ "learning_rate": 4.778869778869779e-05,
884
+ "loss": 0.560833215713501,
885
+ "step": 1250
886
+ },
887
+ {
888
+ "epoch": 2.307974335472044,
889
+ "grad_norm": 1.2064818143844604,
890
+ "learning_rate": 4.656019656019656e-05,
891
+ "loss": 0.5313505172729492,
892
+ "step": 1260
893
+ },
894
+ {
895
+ "epoch": 2.3263061411549035,
896
+ "grad_norm": 1.2250595092773438,
897
+ "learning_rate": 4.5331695331695335e-05,
898
+ "loss": 0.5530914306640625,
899
+ "step": 1270
900
+ },
901
+ {
902
+ "epoch": 2.3446379468377634,
903
+ "grad_norm": 1.249531865119934,
904
+ "learning_rate": 4.4103194103194104e-05,
905
+ "loss": 0.5281160831451416,
906
+ "step": 1280
907
+ },
908
+ {
909
+ "epoch": 2.3629697525206232,
910
+ "grad_norm": 1.1765642166137695,
911
+ "learning_rate": 4.287469287469288e-05,
912
+ "loss": 0.5416937351226807,
913
+ "step": 1290
914
+ },
915
+ {
916
+ "epoch": 2.381301558203483,
917
+ "grad_norm": 1.2973071336746216,
918
+ "learning_rate": 4.164619164619165e-05,
919
+ "loss": 0.5341888427734375,
920
+ "step": 1300
921
+ },
922
+ {
923
+ "epoch": 2.399633363886343,
924
+ "grad_norm": 1.3533828258514404,
925
+ "learning_rate": 4.0417690417690415e-05,
926
+ "loss": 0.5386404514312744,
927
+ "step": 1310
928
+ },
929
+ {
930
+ "epoch": 2.4179651695692024,
931
+ "grad_norm": 1.1323643922805786,
932
+ "learning_rate": 3.918918918918919e-05,
933
+ "loss": 0.5549521446228027,
934
+ "step": 1320
935
+ },
936
+ {
937
+ "epoch": 2.4362969752520622,
938
+ "grad_norm": 1.0967226028442383,
939
+ "learning_rate": 3.7960687960687965e-05,
940
+ "loss": 0.5668260097503662,
941
+ "step": 1330
942
+ },
943
+ {
944
+ "epoch": 2.454628780934922,
945
+ "grad_norm": 1.3874995708465576,
946
+ "learning_rate": 3.6732186732186734e-05,
947
+ "loss": 0.5530946254730225,
948
+ "step": 1340
949
+ },
950
+ {
951
+ "epoch": 2.472960586617782,
952
+ "grad_norm": 1.3139115571975708,
953
+ "learning_rate": 3.550368550368551e-05,
954
+ "loss": 0.544743013381958,
955
+ "step": 1350
956
+ },
957
+ {
958
+ "epoch": 2.4912923923006414,
959
+ "grad_norm": 1.3629847764968872,
960
+ "learning_rate": 3.427518427518428e-05,
961
+ "loss": 0.5550421714782715,
962
+ "step": 1360
963
+ },
964
+ {
965
+ "epoch": 2.5096241979835012,
966
+ "grad_norm": 1.3279292583465576,
967
+ "learning_rate": 3.3046683046683045e-05,
968
+ "loss": 0.5361227035522461,
969
+ "step": 1370
970
+ },
971
+ {
972
+ "epoch": 2.527956003666361,
973
+ "grad_norm": 1.3736717700958252,
974
+ "learning_rate": 3.181818181818182e-05,
975
+ "loss": 0.5256178855895997,
976
+ "step": 1380
977
+ },
978
+ {
979
+ "epoch": 2.546287809349221,
980
+ "grad_norm": 1.2405906915664673,
981
+ "learning_rate": 3.058968058968059e-05,
982
+ "loss": 0.5551014900207519,
983
+ "step": 1390
984
+ },
985
+ {
986
+ "epoch": 2.564619615032081,
987
+ "grad_norm": 1.2711869478225708,
988
+ "learning_rate": 2.9361179361179364e-05,
989
+ "loss": 0.549025011062622,
990
+ "step": 1400
991
+ },
992
+ {
993
+ "epoch": 2.5829514207149407,
994
+ "grad_norm": 1.1510083675384521,
995
+ "learning_rate": 2.8132678132678135e-05,
996
+ "loss": 0.5108777046203613,
997
+ "step": 1410
998
+ },
999
+ {
1000
+ "epoch": 2.6012832263978,
1001
+ "grad_norm": 1.2585129737854004,
1002
+ "learning_rate": 2.6904176904176904e-05,
1003
+ "loss": 0.545832633972168,
1004
+ "step": 1420
1005
+ },
1006
+ {
1007
+ "epoch": 2.61961503208066,
1008
+ "grad_norm": 1.2926920652389526,
1009
+ "learning_rate": 2.5675675675675675e-05,
1010
+ "loss": 0.531532621383667,
1011
+ "step": 1430
1012
+ },
1013
+ {
1014
+ "epoch": 2.63794683776352,
1015
+ "grad_norm": 1.1816222667694092,
1016
+ "learning_rate": 2.4447174447174447e-05,
1017
+ "loss": 0.4899789333343506,
1018
+ "step": 1440
1019
+ },
1020
+ {
1021
+ "epoch": 2.656278643446379,
1022
+ "grad_norm": 1.3441561460494995,
1023
+ "learning_rate": 2.3218673218673222e-05,
1024
+ "loss": 0.5534125804901123,
1025
+ "step": 1450
1026
+ },
1027
+ {
1028
+ "epoch": 2.674610449129239,
1029
+ "grad_norm": 1.5367056131362915,
1030
+ "learning_rate": 2.199017199017199e-05,
1031
+ "loss": 0.5469470500946045,
1032
+ "step": 1460
1033
+ },
1034
+ {
1035
+ "epoch": 2.692942254812099,
1036
+ "grad_norm": 1.292490005493164,
1037
+ "learning_rate": 2.0761670761670762e-05,
1038
+ "loss": 0.5418555259704589,
1039
+ "step": 1470
1040
+ },
1041
+ {
1042
+ "epoch": 2.711274060494959,
1043
+ "grad_norm": 1.2457395792007446,
1044
+ "learning_rate": 1.9533169533169534e-05,
1045
+ "loss": 0.5272214889526368,
1046
+ "step": 1480
1047
+ },
1048
+ {
1049
+ "epoch": 2.7296058661778186,
1050
+ "grad_norm": 1.3204960823059082,
1051
+ "learning_rate": 1.8304668304668305e-05,
1052
+ "loss": 0.5287877559661865,
1053
+ "step": 1490
1054
+ },
1055
+ {
1056
+ "epoch": 2.7479376718606785,
1057
+ "grad_norm": 1.0838243961334229,
1058
+ "learning_rate": 1.7076167076167077e-05,
1059
+ "loss": 0.49266462326049804,
1060
+ "step": 1500
1061
+ }
1062
+ ],
1063
+ "logging_steps": 10,
1064
+ "max_steps": 1638,
1065
+ "num_input_tokens_seen": 0,
1066
+ "num_train_epochs": 3,
1067
+ "save_steps": 500,
1068
+ "stateful_callbacks": {
1069
+ "TrainerControl": {
1070
+ "args": {
1071
+ "should_epoch_stop": false,
1072
+ "should_evaluate": false,
1073
+ "should_log": false,
1074
+ "should_save": true,
1075
+ "should_training_stop": false
1076
+ },
1077
+ "attributes": {}
1078
+ }
1079
+ },
1080
+ "total_flos": 4.100994127286784e+16,
1081
+ "train_batch_size": 4,
1082
+ "trial_name": null,
1083
+ "trial_params": null
1084
+ }
checkpoint-1500/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e85e9413c7636d9fff8558d114d2112dff5238aa624b3ebdad9a7bde187c0bf2
3
+ size 5713
checkpoint-1638/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3.5-4B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen3.5-4B
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.18.1
checkpoint-1638/adapter_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Qwen3_5ForConditionalGeneration",
7
+ "parent_library": "transformers.models.qwen3_5.modeling_qwen3_5",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "Qwen/Qwen3.5-4B",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 16,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0,
26
+ "megatron_config": null,
27
+ "megatron_core": "megatron.core",
28
+ "modules_to_save": null,
29
+ "peft_type": "LORA",
30
+ "peft_version": "0.18.1",
31
+ "qalora_group_size": 16,
32
+ "r": 16,
33
+ "rank_pattern": {},
34
+ "revision": null,
35
+ "target_modules": [
36
+ "k_proj",
37
+ "q_proj",
38
+ "down_proj",
39
+ "v_proj",
40
+ "o_proj",
41
+ "up_proj",
42
+ "gate_proj"
43
+ ],
44
+ "target_parameters": null,
45
+ "task_type": "CAUSAL_LM",
46
+ "trainable_token_indices": null,
47
+ "use_dora": false,
48
+ "use_qalora": false,
49
+ "use_rslora": false
50
+ }
checkpoint-1638/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cae7c6d0daab67837abb33f93468f20937e3666d8f09a8ea2decd15b8e7c76ab
3
+ size 84972248
checkpoint-1638/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 %}
checkpoint-1638/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:432ab2a4e17001ab352ca4740f00fd740468093ebd062aca664ad2de39bbf938
3
+ size 43434405
checkpoint-1638/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-1638/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4a9f217e852f439efa6bd32fde98d6867f11aa6ea13ddc021ba10af6a0b0934
3
+ size 14645
checkpoint-1638/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30221d2371277d9c2ee0a99b44f86b7d2fe6174ffcee6c591737073fbc903359
3
+ size 1465
checkpoint-1638/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87a7830d63fcf43bf241c3c5242e96e62dd3fdc29224ca26fed8ea333db72de4
3
+ size 19989343
checkpoint-1638/tokenizer_config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "padding_side": "right",
25
+ "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+",
26
+ "processor_class": "Qwen3VLProcessor",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "TokenizersBackend",
29
+ "unk_token": null,
30
+ "video_token": "<|video_pad|>",
31
+ "vision_bos_token": "<|vision_start|>",
32
+ "vision_eos_token": "<|vision_end|>"
33
+ }
checkpoint-1638/trainer_state.json ADDED
@@ -0,0 +1,1175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 3.0,
6
+ "eval_steps": 500,
7
+ "global_step": 1638,
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.01833180568285976,
14
+ "grad_norm": 0.6833510994911194,
15
+ "learning_rate": 0.00018,
16
+ "loss": 1.8247451782226562,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.03666361136571952,
21
+ "grad_norm": 0.9012069702148438,
22
+ "learning_rate": 0.0001988943488943489,
23
+ "loss": 1.4739965438842773,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.054995417048579284,
28
+ "grad_norm": 0.8267062306404114,
29
+ "learning_rate": 0.00019766584766584767,
30
+ "loss": 1.3358205795288085,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.07332722273143905,
35
+ "grad_norm": 0.7565646767616272,
36
+ "learning_rate": 0.00019643734643734644,
37
+ "loss": 1.2644735336303712,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 0.09165902841429881,
42
+ "grad_norm": 0.8591431975364685,
43
+ "learning_rate": 0.0001952088452088452,
44
+ "loss": 1.244968318939209,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 0.10999083409715857,
49
+ "grad_norm": 0.8081830143928528,
50
+ "learning_rate": 0.000193980343980344,
51
+ "loss": 1.209956455230713,
52
+ "step": 60
53
+ },
54
+ {
55
+ "epoch": 0.12832263978001834,
56
+ "grad_norm": 0.8808525800704956,
57
+ "learning_rate": 0.00019275184275184277,
58
+ "loss": 1.1500988960266114,
59
+ "step": 70
60
+ },
61
+ {
62
+ "epoch": 0.1466544454628781,
63
+ "grad_norm": 0.82117760181427,
64
+ "learning_rate": 0.00019152334152334154,
65
+ "loss": 1.1469905853271485,
66
+ "step": 80
67
+ },
68
+ {
69
+ "epoch": 0.16498625114573787,
70
+ "grad_norm": 0.8583332896232605,
71
+ "learning_rate": 0.0001902948402948403,
72
+ "loss": 1.1948189735412598,
73
+ "step": 90
74
+ },
75
+ {
76
+ "epoch": 0.18331805682859761,
77
+ "grad_norm": 0.6712405681610107,
78
+ "learning_rate": 0.00018906633906633907,
79
+ "loss": 1.1391284942626954,
80
+ "step": 100
81
+ },
82
+ {
83
+ "epoch": 0.2016498625114574,
84
+ "grad_norm": 0.8613548874855042,
85
+ "learning_rate": 0.00018783783783783784,
86
+ "loss": 1.1040291786193848,
87
+ "step": 110
88
+ },
89
+ {
90
+ "epoch": 0.21998166819431714,
91
+ "grad_norm": 0.8608964085578918,
92
+ "learning_rate": 0.0001866093366093366,
93
+ "loss": 1.1578070640563964,
94
+ "step": 120
95
+ },
96
+ {
97
+ "epoch": 0.2383134738771769,
98
+ "grad_norm": 0.8638626337051392,
99
+ "learning_rate": 0.0001853808353808354,
100
+ "loss": 1.1500712394714356,
101
+ "step": 130
102
+ },
103
+ {
104
+ "epoch": 0.2566452795600367,
105
+ "grad_norm": 0.8131710886955261,
106
+ "learning_rate": 0.00018415233415233417,
107
+ "loss": 1.0960933685302734,
108
+ "step": 140
109
+ },
110
+ {
111
+ "epoch": 0.27497708524289644,
112
+ "grad_norm": 1.023303508758545,
113
+ "learning_rate": 0.00018292383292383292,
114
+ "loss": 1.106197452545166,
115
+ "step": 150
116
+ },
117
+ {
118
+ "epoch": 0.2933088909257562,
119
+ "grad_norm": 0.7958722114562988,
120
+ "learning_rate": 0.0001816953316953317,
121
+ "loss": 1.1257465362548829,
122
+ "step": 160
123
+ },
124
+ {
125
+ "epoch": 0.31164069660861593,
126
+ "grad_norm": 0.8529394865036011,
127
+ "learning_rate": 0.00018046683046683048,
128
+ "loss": 1.062838077545166,
129
+ "step": 170
130
+ },
131
+ {
132
+ "epoch": 0.32997250229147573,
133
+ "grad_norm": 0.8443934917449951,
134
+ "learning_rate": 0.00017923832923832925,
135
+ "loss": 1.023012638092041,
136
+ "step": 180
137
+ },
138
+ {
139
+ "epoch": 0.3483043079743355,
140
+ "grad_norm": 0.8035740852355957,
141
+ "learning_rate": 0.00017800982800982802,
142
+ "loss": 1.0435395240783691,
143
+ "step": 190
144
+ },
145
+ {
146
+ "epoch": 0.36663611365719523,
147
+ "grad_norm": 0.8863442540168762,
148
+ "learning_rate": 0.00017678132678132678,
149
+ "loss": 1.0918319702148438,
150
+ "step": 200
151
+ },
152
+ {
153
+ "epoch": 0.384967919340055,
154
+ "grad_norm": 0.8198781609535217,
155
+ "learning_rate": 0.00017555282555282555,
156
+ "loss": 1.0226572036743165,
157
+ "step": 210
158
+ },
159
+ {
160
+ "epoch": 0.4032997250229148,
161
+ "grad_norm": 0.9801501035690308,
162
+ "learning_rate": 0.00017432432432432432,
163
+ "loss": 1.0847922325134278,
164
+ "step": 220
165
+ },
166
+ {
167
+ "epoch": 0.4216315307057745,
168
+ "grad_norm": 0.6737959980964661,
169
+ "learning_rate": 0.00017309582309582312,
170
+ "loss": 1.0508249282836915,
171
+ "step": 230
172
+ },
173
+ {
174
+ "epoch": 0.4399633363886343,
175
+ "grad_norm": 0.7932195067405701,
176
+ "learning_rate": 0.00017186732186732188,
177
+ "loss": 1.042081069946289,
178
+ "step": 240
179
+ },
180
+ {
181
+ "epoch": 0.458295142071494,
182
+ "grad_norm": 0.864284873008728,
183
+ "learning_rate": 0.00017063882063882065,
184
+ "loss": 1.0485817909240722,
185
+ "step": 250
186
+ },
187
+ {
188
+ "epoch": 0.4766269477543538,
189
+ "grad_norm": 0.8705862164497375,
190
+ "learning_rate": 0.00016941031941031942,
191
+ "loss": 1.0782199859619142,
192
+ "step": 260
193
+ },
194
+ {
195
+ "epoch": 0.49495875343721357,
196
+ "grad_norm": 0.8180854916572571,
197
+ "learning_rate": 0.0001681818181818182,
198
+ "loss": 1.075644302368164,
199
+ "step": 270
200
+ },
201
+ {
202
+ "epoch": 0.5132905591200734,
203
+ "grad_norm": 0.8689812421798706,
204
+ "learning_rate": 0.00016695331695331696,
205
+ "loss": 1.0431486129760743,
206
+ "step": 280
207
+ },
208
+ {
209
+ "epoch": 0.5316223648029331,
210
+ "grad_norm": 0.7797616720199585,
211
+ "learning_rate": 0.00016572481572481573,
212
+ "loss": 1.019082736968994,
213
+ "step": 290
214
+ },
215
+ {
216
+ "epoch": 0.5499541704857929,
217
+ "grad_norm": 0.9403369426727295,
218
+ "learning_rate": 0.0001644963144963145,
219
+ "loss": 1.0104355812072754,
220
+ "step": 300
221
+ },
222
+ {
223
+ "epoch": 0.5682859761686526,
224
+ "grad_norm": 0.8061522245407104,
225
+ "learning_rate": 0.0001632678132678133,
226
+ "loss": 1.015712833404541,
227
+ "step": 310
228
+ },
229
+ {
230
+ "epoch": 0.5866177818515124,
231
+ "grad_norm": 1.0389378070831299,
232
+ "learning_rate": 0.00016203931203931203,
233
+ "loss": 0.983332347869873,
234
+ "step": 320
235
+ },
236
+ {
237
+ "epoch": 0.6049495875343721,
238
+ "grad_norm": 0.8335319757461548,
239
+ "learning_rate": 0.00016081081081081083,
240
+ "loss": 1.0035177230834962,
241
+ "step": 330
242
+ },
243
+ {
244
+ "epoch": 0.6232813932172319,
245
+ "grad_norm": 0.8039399981498718,
246
+ "learning_rate": 0.0001595823095823096,
247
+ "loss": 1.0274381637573242,
248
+ "step": 340
249
+ },
250
+ {
251
+ "epoch": 0.6416131989000916,
252
+ "grad_norm": 0.777919352054596,
253
+ "learning_rate": 0.00015835380835380836,
254
+ "loss": 1.0467321395874023,
255
+ "step": 350
256
+ },
257
+ {
258
+ "epoch": 0.6599450045829515,
259
+ "grad_norm": 0.8876609802246094,
260
+ "learning_rate": 0.00015712530712530713,
261
+ "loss": 0.9848588943481446,
262
+ "step": 360
263
+ },
264
+ {
265
+ "epoch": 0.6782768102658112,
266
+ "grad_norm": 0.8413349986076355,
267
+ "learning_rate": 0.0001558968058968059,
268
+ "loss": 1.0367840766906737,
269
+ "step": 370
270
+ },
271
+ {
272
+ "epoch": 0.696608615948671,
273
+ "grad_norm": 0.9921192526817322,
274
+ "learning_rate": 0.0001546683046683047,
275
+ "loss": 1.0018555641174316,
276
+ "step": 380
277
+ },
278
+ {
279
+ "epoch": 0.7149404216315307,
280
+ "grad_norm": 0.8272864818572998,
281
+ "learning_rate": 0.00015343980343980344,
282
+ "loss": 1.0093633651733398,
283
+ "step": 390
284
+ },
285
+ {
286
+ "epoch": 0.7332722273143905,
287
+ "grad_norm": 0.7949515581130981,
288
+ "learning_rate": 0.00015221130221130223,
289
+ "loss": 1.0220769882202148,
290
+ "step": 400
291
+ },
292
+ {
293
+ "epoch": 0.7516040329972502,
294
+ "grad_norm": 0.8337849378585815,
295
+ "learning_rate": 0.000150982800982801,
296
+ "loss": 0.9723053932189941,
297
+ "step": 410
298
+ },
299
+ {
300
+ "epoch": 0.76993583868011,
301
+ "grad_norm": 0.9521737694740295,
302
+ "learning_rate": 0.00014975429975429974,
303
+ "loss": 1.0630863189697266,
304
+ "step": 420
305
+ },
306
+ {
307
+ "epoch": 0.7882676443629697,
308
+ "grad_norm": 0.8320823311805725,
309
+ "learning_rate": 0.00014852579852579854,
310
+ "loss": 0.9916687965393066,
311
+ "step": 430
312
+ },
313
+ {
314
+ "epoch": 0.8065994500458296,
315
+ "grad_norm": 0.903413712978363,
316
+ "learning_rate": 0.0001472972972972973,
317
+ "loss": 0.9519875526428223,
318
+ "step": 440
319
+ },
320
+ {
321
+ "epoch": 0.8249312557286893,
322
+ "grad_norm": 0.8783673048019409,
323
+ "learning_rate": 0.00014606879606879607,
324
+ "loss": 1.0056891441345215,
325
+ "step": 450
326
+ },
327
+ {
328
+ "epoch": 0.843263061411549,
329
+ "grad_norm": 0.8581491708755493,
330
+ "learning_rate": 0.00014484029484029484,
331
+ "loss": 1.0211298942565918,
332
+ "step": 460
333
+ },
334
+ {
335
+ "epoch": 0.8615948670944088,
336
+ "grad_norm": 0.7977339029312134,
337
+ "learning_rate": 0.0001436117936117936,
338
+ "loss": 0.9528703689575195,
339
+ "step": 470
340
+ },
341
+ {
342
+ "epoch": 0.8799266727772685,
343
+ "grad_norm": 0.8142527937889099,
344
+ "learning_rate": 0.0001423832923832924,
345
+ "loss": 1.0111416816711425,
346
+ "step": 480
347
+ },
348
+ {
349
+ "epoch": 0.8982584784601283,
350
+ "grad_norm": 0.865929126739502,
351
+ "learning_rate": 0.00014115479115479115,
352
+ "loss": 0.978369140625,
353
+ "step": 490
354
+ },
355
+ {
356
+ "epoch": 0.916590284142988,
357
+ "grad_norm": 0.7955005764961243,
358
+ "learning_rate": 0.00013992628992628994,
359
+ "loss": 0.998965835571289,
360
+ "step": 500
361
+ },
362
+ {
363
+ "epoch": 0.9349220898258478,
364
+ "grad_norm": 0.7812423706054688,
365
+ "learning_rate": 0.0001386977886977887,
366
+ "loss": 0.9544276237487793,
367
+ "step": 510
368
+ },
369
+ {
370
+ "epoch": 0.9532538955087076,
371
+ "grad_norm": 0.817484974861145,
372
+ "learning_rate": 0.00013746928746928748,
373
+ "loss": 0.9699355125427246,
374
+ "step": 520
375
+ },
376
+ {
377
+ "epoch": 0.9715857011915674,
378
+ "grad_norm": 0.875234842300415,
379
+ "learning_rate": 0.00013624078624078625,
380
+ "loss": 0.9715826034545898,
381
+ "step": 530
382
+ },
383
+ {
384
+ "epoch": 0.9899175068744271,
385
+ "grad_norm": 0.7700145244598389,
386
+ "learning_rate": 0.00013501228501228501,
387
+ "loss": 0.9811925888061523,
388
+ "step": 540
389
+ },
390
+ {
391
+ "epoch": 1.0073327222731439,
392
+ "grad_norm": 0.7260869145393372,
393
+ "learning_rate": 0.0001337837837837838,
394
+ "loss": 0.882848072052002,
395
+ "step": 550
396
+ },
397
+ {
398
+ "epoch": 1.0256645279560037,
399
+ "grad_norm": 0.7263541221618652,
400
+ "learning_rate": 0.00013255528255528255,
401
+ "loss": 0.8015734672546386,
402
+ "step": 560
403
+ },
404
+ {
405
+ "epoch": 1.0439963336388633,
406
+ "grad_norm": 0.8721809387207031,
407
+ "learning_rate": 0.00013132678132678135,
408
+ "loss": 0.778080940246582,
409
+ "step": 570
410
+ },
411
+ {
412
+ "epoch": 1.0623281393217232,
413
+ "grad_norm": 0.8094732165336609,
414
+ "learning_rate": 0.00013009828009828011,
415
+ "loss": 0.7774394989013672,
416
+ "step": 580
417
+ },
418
+ {
419
+ "epoch": 1.0806599450045828,
420
+ "grad_norm": 0.8383634686470032,
421
+ "learning_rate": 0.00012886977886977886,
422
+ "loss": 0.7659544944763184,
423
+ "step": 590
424
+ },
425
+ {
426
+ "epoch": 1.0989917506874427,
427
+ "grad_norm": 0.9429551959037781,
428
+ "learning_rate": 0.00012764127764127765,
429
+ "loss": 0.7822256565093995,
430
+ "step": 600
431
+ },
432
+ {
433
+ "epoch": 1.1173235563703026,
434
+ "grad_norm": 0.8432884812355042,
435
+ "learning_rate": 0.00012641277641277642,
436
+ "loss": 0.7877971649169921,
437
+ "step": 610
438
+ },
439
+ {
440
+ "epoch": 1.1356553620531622,
441
+ "grad_norm": 0.9461238384246826,
442
+ "learning_rate": 0.0001251842751842752,
443
+ "loss": 0.8412753105163574,
444
+ "step": 620
445
+ },
446
+ {
447
+ "epoch": 1.153987167736022,
448
+ "grad_norm": 0.9495576620101929,
449
+ "learning_rate": 0.00012395577395577396,
450
+ "loss": 0.7389075279235839,
451
+ "step": 630
452
+ },
453
+ {
454
+ "epoch": 1.1723189734188817,
455
+ "grad_norm": 0.8137982487678528,
456
+ "learning_rate": 0.00012272727272727272,
457
+ "loss": 0.7511651992797852,
458
+ "step": 640
459
+ },
460
+ {
461
+ "epoch": 1.1906507791017416,
462
+ "grad_norm": 0.9718158841133118,
463
+ "learning_rate": 0.00012149877149877152,
464
+ "loss": 0.7982583999633789,
465
+ "step": 650
466
+ },
467
+ {
468
+ "epoch": 1.2089825847846012,
469
+ "grad_norm": 1.0837777853012085,
470
+ "learning_rate": 0.00012027027027027027,
471
+ "loss": 0.762714433670044,
472
+ "step": 660
473
+ },
474
+ {
475
+ "epoch": 1.227314390467461,
476
+ "grad_norm": 0.9882314801216125,
477
+ "learning_rate": 0.00011904176904176904,
478
+ "loss": 0.7749518871307373,
479
+ "step": 670
480
+ },
481
+ {
482
+ "epoch": 1.2456461961503207,
483
+ "grad_norm": 0.9463419914245605,
484
+ "learning_rate": 0.00011781326781326782,
485
+ "loss": 0.7641645908355713,
486
+ "step": 680
487
+ },
488
+ {
489
+ "epoch": 1.2639780018331805,
490
+ "grad_norm": 0.9794511198997498,
491
+ "learning_rate": 0.00011658476658476658,
492
+ "loss": 0.8050010681152344,
493
+ "step": 690
494
+ },
495
+ {
496
+ "epoch": 1.2823098075160404,
497
+ "grad_norm": 1.1002216339111328,
498
+ "learning_rate": 0.00011535626535626536,
499
+ "loss": 0.793759822845459,
500
+ "step": 700
501
+ },
502
+ {
503
+ "epoch": 1.3006416131989,
504
+ "grad_norm": 0.9648078083992004,
505
+ "learning_rate": 0.00011412776412776414,
506
+ "loss": 0.7668623447418212,
507
+ "step": 710
508
+ },
509
+ {
510
+ "epoch": 1.31897341888176,
511
+ "grad_norm": 1.0727074146270752,
512
+ "learning_rate": 0.00011289926289926291,
513
+ "loss": 0.8029165267944336,
514
+ "step": 720
515
+ },
516
+ {
517
+ "epoch": 1.3373052245646195,
518
+ "grad_norm": 0.9617047905921936,
519
+ "learning_rate": 0.00011167076167076167,
520
+ "loss": 0.7798116683959961,
521
+ "step": 730
522
+ },
523
+ {
524
+ "epoch": 1.3556370302474794,
525
+ "grad_norm": 0.8710028529167175,
526
+ "learning_rate": 0.00011044226044226045,
527
+ "loss": 0.7962553977966309,
528
+ "step": 740
529
+ },
530
+ {
531
+ "epoch": 1.3739688359303392,
532
+ "grad_norm": 0.8409777283668518,
533
+ "learning_rate": 0.00010921375921375923,
534
+ "loss": 0.7403414726257325,
535
+ "step": 750
536
+ },
537
+ {
538
+ "epoch": 1.3923006416131989,
539
+ "grad_norm": 1.029362440109253,
540
+ "learning_rate": 0.00010798525798525798,
541
+ "loss": 0.7815125465393067,
542
+ "step": 760
543
+ },
544
+ {
545
+ "epoch": 1.4106324472960587,
546
+ "grad_norm": 0.9566736221313477,
547
+ "learning_rate": 0.00010675675675675677,
548
+ "loss": 0.7839052200317382,
549
+ "step": 770
550
+ },
551
+ {
552
+ "epoch": 1.4289642529789184,
553
+ "grad_norm": 0.975339949131012,
554
+ "learning_rate": 0.00010552825552825553,
555
+ "loss": 0.749812650680542,
556
+ "step": 780
557
+ },
558
+ {
559
+ "epoch": 1.4472960586617782,
560
+ "grad_norm": 1.1521857976913452,
561
+ "learning_rate": 0.00010429975429975432,
562
+ "loss": 0.7797944068908691,
563
+ "step": 790
564
+ },
565
+ {
566
+ "epoch": 1.4656278643446379,
567
+ "grad_norm": 0.8301038146018982,
568
+ "learning_rate": 0.00010307125307125307,
569
+ "loss": 0.7280281543731689,
570
+ "step": 800
571
+ },
572
+ {
573
+ "epoch": 1.4839596700274977,
574
+ "grad_norm": 0.9730615615844727,
575
+ "learning_rate": 0.00010184275184275185,
576
+ "loss": 0.7437058448791504,
577
+ "step": 810
578
+ },
579
+ {
580
+ "epoch": 1.5022914757103574,
581
+ "grad_norm": 1.0270700454711914,
582
+ "learning_rate": 0.00010061425061425062,
583
+ "loss": 0.7848101615905761,
584
+ "step": 820
585
+ },
586
+ {
587
+ "epoch": 1.5206232813932172,
588
+ "grad_norm": 1.2335196733474731,
589
+ "learning_rate": 9.938574938574939e-05,
590
+ "loss": 0.7896716117858886,
591
+ "step": 830
592
+ },
593
+ {
594
+ "epoch": 1.538955087076077,
595
+ "grad_norm": 0.968611478805542,
596
+ "learning_rate": 9.815724815724816e-05,
597
+ "loss": 0.7918240070343018,
598
+ "step": 840
599
+ },
600
+ {
601
+ "epoch": 1.5572868927589367,
602
+ "grad_norm": 0.9463298320770264,
603
+ "learning_rate": 9.692874692874694e-05,
604
+ "loss": 0.7453035354614258,
605
+ "step": 850
606
+ },
607
+ {
608
+ "epoch": 1.5756186984417964,
609
+ "grad_norm": 1.004184603691101,
610
+ "learning_rate": 9.570024570024571e-05,
611
+ "loss": 0.8125950813293457,
612
+ "step": 860
613
+ },
614
+ {
615
+ "epoch": 1.5939505041246562,
616
+ "grad_norm": 1.1150691509246826,
617
+ "learning_rate": 9.447174447174448e-05,
618
+ "loss": 0.7995445251464843,
619
+ "step": 870
620
+ },
621
+ {
622
+ "epoch": 1.612282309807516,
623
+ "grad_norm": 1.060056447982788,
624
+ "learning_rate": 9.324324324324324e-05,
625
+ "loss": 0.7746751785278321,
626
+ "step": 880
627
+ },
628
+ {
629
+ "epoch": 1.630614115490376,
630
+ "grad_norm": 1.0525883436203003,
631
+ "learning_rate": 9.201474201474201e-05,
632
+ "loss": 0.7861367225646972,
633
+ "step": 890
634
+ },
635
+ {
636
+ "epoch": 1.6489459211732356,
637
+ "grad_norm": 0.9495214223861694,
638
+ "learning_rate": 9.07862407862408e-05,
639
+ "loss": 0.8055791854858398,
640
+ "step": 900
641
+ },
642
+ {
643
+ "epoch": 1.6672777268560952,
644
+ "grad_norm": 0.8876036405563354,
645
+ "learning_rate": 8.955773955773956e-05,
646
+ "loss": 0.736152982711792,
647
+ "step": 910
648
+ },
649
+ {
650
+ "epoch": 1.685609532538955,
651
+ "grad_norm": 1.0228347778320312,
652
+ "learning_rate": 8.832923832923833e-05,
653
+ "loss": 0.7859257698059082,
654
+ "step": 920
655
+ },
656
+ {
657
+ "epoch": 1.703941338221815,
658
+ "grad_norm": 1.2196885347366333,
659
+ "learning_rate": 8.710073710073711e-05,
660
+ "loss": 0.7442365169525147,
661
+ "step": 930
662
+ },
663
+ {
664
+ "epoch": 1.7222731439046746,
665
+ "grad_norm": 1.1201367378234863,
666
+ "learning_rate": 8.587223587223587e-05,
667
+ "loss": 0.7933924674987793,
668
+ "step": 940
669
+ },
670
+ {
671
+ "epoch": 1.7406049495875344,
672
+ "grad_norm": 1.0457044839859009,
673
+ "learning_rate": 8.464373464373465e-05,
674
+ "loss": 0.7594408512115478,
675
+ "step": 950
676
+ },
677
+ {
678
+ "epoch": 1.758936755270394,
679
+ "grad_norm": 1.2219468355178833,
680
+ "learning_rate": 8.341523341523342e-05,
681
+ "loss": 0.725389051437378,
682
+ "step": 960
683
+ },
684
+ {
685
+ "epoch": 1.777268560953254,
686
+ "grad_norm": 1.0098403692245483,
687
+ "learning_rate": 8.21867321867322e-05,
688
+ "loss": 0.7753002166748046,
689
+ "step": 970
690
+ },
691
+ {
692
+ "epoch": 1.7956003666361138,
693
+ "grad_norm": 1.020544409751892,
694
+ "learning_rate": 8.095823095823097e-05,
695
+ "loss": 0.7580110549926757,
696
+ "step": 980
697
+ },
698
+ {
699
+ "epoch": 1.8139321723189734,
700
+ "grad_norm": 0.9121679067611694,
701
+ "learning_rate": 7.972972972972974e-05,
702
+ "loss": 0.7329069614410401,
703
+ "step": 990
704
+ },
705
+ {
706
+ "epoch": 1.832263978001833,
707
+ "grad_norm": 1.1305643320083618,
708
+ "learning_rate": 7.85012285012285e-05,
709
+ "loss": 0.7436663150787354,
710
+ "step": 1000
711
+ },
712
+ {
713
+ "epoch": 1.850595783684693,
714
+ "grad_norm": 0.9970649480819702,
715
+ "learning_rate": 7.727272727272727e-05,
716
+ "loss": 0.7684538841247559,
717
+ "step": 1010
718
+ },
719
+ {
720
+ "epoch": 1.8689275893675528,
721
+ "grad_norm": 1.0161981582641602,
722
+ "learning_rate": 7.604422604422605e-05,
723
+ "loss": 0.7405171394348145,
724
+ "step": 1020
725
+ },
726
+ {
727
+ "epoch": 1.8872593950504126,
728
+ "grad_norm": 1.3399347066879272,
729
+ "learning_rate": 7.481572481572482e-05,
730
+ "loss": 0.780091667175293,
731
+ "step": 1030
732
+ },
733
+ {
734
+ "epoch": 1.9055912007332723,
735
+ "grad_norm": 1.2579443454742432,
736
+ "learning_rate": 7.358722358722359e-05,
737
+ "loss": 0.6868968486785889,
738
+ "step": 1040
739
+ },
740
+ {
741
+ "epoch": 1.923923006416132,
742
+ "grad_norm": 1.0092531442642212,
743
+ "learning_rate": 7.235872235872236e-05,
744
+ "loss": 0.742798137664795,
745
+ "step": 1050
746
+ },
747
+ {
748
+ "epoch": 1.9422548120989918,
749
+ "grad_norm": 1.121690273284912,
750
+ "learning_rate": 7.113022113022113e-05,
751
+ "loss": 0.8035343170166016,
752
+ "step": 1060
753
+ },
754
+ {
755
+ "epoch": 1.9605866177818516,
756
+ "grad_norm": 1.0780940055847168,
757
+ "learning_rate": 6.990171990171991e-05,
758
+ "loss": 0.7256640911102294,
759
+ "step": 1070
760
+ },
761
+ {
762
+ "epoch": 1.9789184234647113,
763
+ "grad_norm": 1.0335768461227417,
764
+ "learning_rate": 6.867321867321868e-05,
765
+ "loss": 0.751814889907837,
766
+ "step": 1080
767
+ },
768
+ {
769
+ "epoch": 1.9972502291475709,
770
+ "grad_norm": 1.0326813459396362,
771
+ "learning_rate": 6.744471744471746e-05,
772
+ "loss": 0.781493854522705,
773
+ "step": 1090
774
+ },
775
+ {
776
+ "epoch": 2.0146654445462877,
777
+ "grad_norm": 0.9365840554237366,
778
+ "learning_rate": 6.621621621621621e-05,
779
+ "loss": 0.6172435760498047,
780
+ "step": 1100
781
+ },
782
+ {
783
+ "epoch": 2.0329972502291476,
784
+ "grad_norm": 1.0775729417800903,
785
+ "learning_rate": 6.498771498771498e-05,
786
+ "loss": 0.5551021575927735,
787
+ "step": 1110
788
+ },
789
+ {
790
+ "epoch": 2.0513290559120074,
791
+ "grad_norm": 1.1233711242675781,
792
+ "learning_rate": 6.375921375921376e-05,
793
+ "loss": 0.530482006072998,
794
+ "step": 1120
795
+ },
796
+ {
797
+ "epoch": 2.0696608615948673,
798
+ "grad_norm": 0.9685810208320618,
799
+ "learning_rate": 6.253071253071253e-05,
800
+ "loss": 0.5284864902496338,
801
+ "step": 1130
802
+ },
803
+ {
804
+ "epoch": 2.0879926672777267,
805
+ "grad_norm": 1.3673559427261353,
806
+ "learning_rate": 6.130221130221131e-05,
807
+ "loss": 0.5300433158874511,
808
+ "step": 1140
809
+ },
810
+ {
811
+ "epoch": 2.1063244729605866,
812
+ "grad_norm": 1.291156530380249,
813
+ "learning_rate": 6.0073710073710075e-05,
814
+ "loss": 0.5388914585113526,
815
+ "step": 1150
816
+ },
817
+ {
818
+ "epoch": 2.1246562786434464,
819
+ "grad_norm": 1.0860686302185059,
820
+ "learning_rate": 5.8845208845208844e-05,
821
+ "loss": 0.5599504947662354,
822
+ "step": 1160
823
+ },
824
+ {
825
+ "epoch": 2.1429880843263063,
826
+ "grad_norm": 1.2297484874725342,
827
+ "learning_rate": 5.761670761670762e-05,
828
+ "loss": 0.5693662643432618,
829
+ "step": 1170
830
+ },
831
+ {
832
+ "epoch": 2.1613198900091657,
833
+ "grad_norm": 1.3128403425216675,
834
+ "learning_rate": 5.638820638820639e-05,
835
+ "loss": 0.5087790012359619,
836
+ "step": 1180
837
+ },
838
+ {
839
+ "epoch": 2.1796516956920255,
840
+ "grad_norm": 1.47864830493927,
841
+ "learning_rate": 5.515970515970517e-05,
842
+ "loss": 0.5520669460296631,
843
+ "step": 1190
844
+ },
845
+ {
846
+ "epoch": 2.1979835013748854,
847
+ "grad_norm": 1.3533881902694702,
848
+ "learning_rate": 5.393120393120393e-05,
849
+ "loss": 0.5194924354553223,
850
+ "step": 1200
851
+ },
852
+ {
853
+ "epoch": 2.2163153070577453,
854
+ "grad_norm": 1.0729988813400269,
855
+ "learning_rate": 5.27027027027027e-05,
856
+ "loss": 0.5386343955993652,
857
+ "step": 1210
858
+ },
859
+ {
860
+ "epoch": 2.234647112740605,
861
+ "grad_norm": 1.1851814985275269,
862
+ "learning_rate": 5.147420147420148e-05,
863
+ "loss": 0.5398934364318848,
864
+ "step": 1220
865
+ },
866
+ {
867
+ "epoch": 2.2529789184234645,
868
+ "grad_norm": 1.306754469871521,
869
+ "learning_rate": 5.024570024570024e-05,
870
+ "loss": 0.5412076473236084,
871
+ "step": 1230
872
+ },
873
+ {
874
+ "epoch": 2.2713107241063244,
875
+ "grad_norm": 1.2561992406845093,
876
+ "learning_rate": 4.901719901719902e-05,
877
+ "loss": 0.555613899230957,
878
+ "step": 1240
879
+ },
880
+ {
881
+ "epoch": 2.2896425297891843,
882
+ "grad_norm": 1.4935739040374756,
883
+ "learning_rate": 4.778869778869779e-05,
884
+ "loss": 0.560833215713501,
885
+ "step": 1250
886
+ },
887
+ {
888
+ "epoch": 2.307974335472044,
889
+ "grad_norm": 1.2064818143844604,
890
+ "learning_rate": 4.656019656019656e-05,
891
+ "loss": 0.5313505172729492,
892
+ "step": 1260
893
+ },
894
+ {
895
+ "epoch": 2.3263061411549035,
896
+ "grad_norm": 1.2250595092773438,
897
+ "learning_rate": 4.5331695331695335e-05,
898
+ "loss": 0.5530914306640625,
899
+ "step": 1270
900
+ },
901
+ {
902
+ "epoch": 2.3446379468377634,
903
+ "grad_norm": 1.249531865119934,
904
+ "learning_rate": 4.4103194103194104e-05,
905
+ "loss": 0.5281160831451416,
906
+ "step": 1280
907
+ },
908
+ {
909
+ "epoch": 2.3629697525206232,
910
+ "grad_norm": 1.1765642166137695,
911
+ "learning_rate": 4.287469287469288e-05,
912
+ "loss": 0.5416937351226807,
913
+ "step": 1290
914
+ },
915
+ {
916
+ "epoch": 2.381301558203483,
917
+ "grad_norm": 1.2973071336746216,
918
+ "learning_rate": 4.164619164619165e-05,
919
+ "loss": 0.5341888427734375,
920
+ "step": 1300
921
+ },
922
+ {
923
+ "epoch": 2.399633363886343,
924
+ "grad_norm": 1.3533828258514404,
925
+ "learning_rate": 4.0417690417690415e-05,
926
+ "loss": 0.5386404514312744,
927
+ "step": 1310
928
+ },
929
+ {
930
+ "epoch": 2.4179651695692024,
931
+ "grad_norm": 1.1323643922805786,
932
+ "learning_rate": 3.918918918918919e-05,
933
+ "loss": 0.5549521446228027,
934
+ "step": 1320
935
+ },
936
+ {
937
+ "epoch": 2.4362969752520622,
938
+ "grad_norm": 1.0967226028442383,
939
+ "learning_rate": 3.7960687960687965e-05,
940
+ "loss": 0.5668260097503662,
941
+ "step": 1330
942
+ },
943
+ {
944
+ "epoch": 2.454628780934922,
945
+ "grad_norm": 1.3874995708465576,
946
+ "learning_rate": 3.6732186732186734e-05,
947
+ "loss": 0.5530946254730225,
948
+ "step": 1340
949
+ },
950
+ {
951
+ "epoch": 2.472960586617782,
952
+ "grad_norm": 1.3139115571975708,
953
+ "learning_rate": 3.550368550368551e-05,
954
+ "loss": 0.544743013381958,
955
+ "step": 1350
956
+ },
957
+ {
958
+ "epoch": 2.4912923923006414,
959
+ "grad_norm": 1.3629847764968872,
960
+ "learning_rate": 3.427518427518428e-05,
961
+ "loss": 0.5550421714782715,
962
+ "step": 1360
963
+ },
964
+ {
965
+ "epoch": 2.5096241979835012,
966
+ "grad_norm": 1.3279292583465576,
967
+ "learning_rate": 3.3046683046683045e-05,
968
+ "loss": 0.5361227035522461,
969
+ "step": 1370
970
+ },
971
+ {
972
+ "epoch": 2.527956003666361,
973
+ "grad_norm": 1.3736717700958252,
974
+ "learning_rate": 3.181818181818182e-05,
975
+ "loss": 0.5256178855895997,
976
+ "step": 1380
977
+ },
978
+ {
979
+ "epoch": 2.546287809349221,
980
+ "grad_norm": 1.2405906915664673,
981
+ "learning_rate": 3.058968058968059e-05,
982
+ "loss": 0.5551014900207519,
983
+ "step": 1390
984
+ },
985
+ {
986
+ "epoch": 2.564619615032081,
987
+ "grad_norm": 1.2711869478225708,
988
+ "learning_rate": 2.9361179361179364e-05,
989
+ "loss": 0.549025011062622,
990
+ "step": 1400
991
+ },
992
+ {
993
+ "epoch": 2.5829514207149407,
994
+ "grad_norm": 1.1510083675384521,
995
+ "learning_rate": 2.8132678132678135e-05,
996
+ "loss": 0.5108777046203613,
997
+ "step": 1410
998
+ },
999
+ {
1000
+ "epoch": 2.6012832263978,
1001
+ "grad_norm": 1.2585129737854004,
1002
+ "learning_rate": 2.6904176904176904e-05,
1003
+ "loss": 0.545832633972168,
1004
+ "step": 1420
1005
+ },
1006
+ {
1007
+ "epoch": 2.61961503208066,
1008
+ "grad_norm": 1.2926920652389526,
1009
+ "learning_rate": 2.5675675675675675e-05,
1010
+ "loss": 0.531532621383667,
1011
+ "step": 1430
1012
+ },
1013
+ {
1014
+ "epoch": 2.63794683776352,
1015
+ "grad_norm": 1.1816222667694092,
1016
+ "learning_rate": 2.4447174447174447e-05,
1017
+ "loss": 0.4899789333343506,
1018
+ "step": 1440
1019
+ },
1020
+ {
1021
+ "epoch": 2.656278643446379,
1022
+ "grad_norm": 1.3441561460494995,
1023
+ "learning_rate": 2.3218673218673222e-05,
1024
+ "loss": 0.5534125804901123,
1025
+ "step": 1450
1026
+ },
1027
+ {
1028
+ "epoch": 2.674610449129239,
1029
+ "grad_norm": 1.5367056131362915,
1030
+ "learning_rate": 2.199017199017199e-05,
1031
+ "loss": 0.5469470500946045,
1032
+ "step": 1460
1033
+ },
1034
+ {
1035
+ "epoch": 2.692942254812099,
1036
+ "grad_norm": 1.292490005493164,
1037
+ "learning_rate": 2.0761670761670762e-05,
1038
+ "loss": 0.5418555259704589,
1039
+ "step": 1470
1040
+ },
1041
+ {
1042
+ "epoch": 2.711274060494959,
1043
+ "grad_norm": 1.2457395792007446,
1044
+ "learning_rate": 1.9533169533169534e-05,
1045
+ "loss": 0.5272214889526368,
1046
+ "step": 1480
1047
+ },
1048
+ {
1049
+ "epoch": 2.7296058661778186,
1050
+ "grad_norm": 1.3204960823059082,
1051
+ "learning_rate": 1.8304668304668305e-05,
1052
+ "loss": 0.5287877559661865,
1053
+ "step": 1490
1054
+ },
1055
+ {
1056
+ "epoch": 2.7479376718606785,
1057
+ "grad_norm": 1.0838243961334229,
1058
+ "learning_rate": 1.7076167076167077e-05,
1059
+ "loss": 0.49266462326049804,
1060
+ "step": 1500
1061
+ },
1062
+ {
1063
+ "epoch": 2.766269477543538,
1064
+ "grad_norm": 1.3524028062820435,
1065
+ "learning_rate": 1.584766584766585e-05,
1066
+ "loss": 0.534552526473999,
1067
+ "step": 1510
1068
+ },
1069
+ {
1070
+ "epoch": 2.7846012832263978,
1071
+ "grad_norm": 1.2434245347976685,
1072
+ "learning_rate": 1.4619164619164619e-05,
1073
+ "loss": 0.5303339004516602,
1074
+ "step": 1520
1075
+ },
1076
+ {
1077
+ "epoch": 2.8029330889092576,
1078
+ "grad_norm": 1.4432783126831055,
1079
+ "learning_rate": 1.339066339066339e-05,
1080
+ "loss": 0.5432450771331787,
1081
+ "step": 1530
1082
+ },
1083
+ {
1084
+ "epoch": 2.8212648945921175,
1085
+ "grad_norm": 1.372916340827942,
1086
+ "learning_rate": 1.2162162162162164e-05,
1087
+ "loss": 0.5449412345886231,
1088
+ "step": 1540
1089
+ },
1090
+ {
1091
+ "epoch": 2.839596700274977,
1092
+ "grad_norm": 1.3015090227127075,
1093
+ "learning_rate": 1.0933660933660935e-05,
1094
+ "loss": 0.5642722129821778,
1095
+ "step": 1550
1096
+ },
1097
+ {
1098
+ "epoch": 2.8579285059578368,
1099
+ "grad_norm": 1.434592366218567,
1100
+ "learning_rate": 9.705159705159705e-06,
1101
+ "loss": 0.5404855728149414,
1102
+ "step": 1560
1103
+ },
1104
+ {
1105
+ "epoch": 2.8762603116406966,
1106
+ "grad_norm": 2.344008445739746,
1107
+ "learning_rate": 8.476658476658477e-06,
1108
+ "loss": 0.5066645622253418,
1109
+ "step": 1570
1110
+ },
1111
+ {
1112
+ "epoch": 2.8945921173235565,
1113
+ "grad_norm": 1.0202550888061523,
1114
+ "learning_rate": 7.2481572481572485e-06,
1115
+ "loss": 0.5348256587982178,
1116
+ "step": 1580
1117
+ },
1118
+ {
1119
+ "epoch": 2.9129239230064163,
1120
+ "grad_norm": 1.2149248123168945,
1121
+ "learning_rate": 6.019656019656019e-06,
1122
+ "loss": 0.4903108596801758,
1123
+ "step": 1590
1124
+ },
1125
+ {
1126
+ "epoch": 2.9312557286892758,
1127
+ "grad_norm": 1.5240399837493896,
1128
+ "learning_rate": 4.791154791154792e-06,
1129
+ "loss": 0.5296618461608886,
1130
+ "step": 1600
1131
+ },
1132
+ {
1133
+ "epoch": 2.9495875343721356,
1134
+ "grad_norm": 1.4258157014846802,
1135
+ "learning_rate": 3.562653562653563e-06,
1136
+ "loss": 0.49115524291992185,
1137
+ "step": 1610
1138
+ },
1139
+ {
1140
+ "epoch": 2.9679193400549955,
1141
+ "grad_norm": 1.1255574226379395,
1142
+ "learning_rate": 2.3341523341523343e-06,
1143
+ "loss": 0.5161442279815673,
1144
+ "step": 1620
1145
+ },
1146
+ {
1147
+ "epoch": 2.9862511457378553,
1148
+ "grad_norm": 1.365963101387024,
1149
+ "learning_rate": 1.1056511056511056e-06,
1150
+ "loss": 0.5332399368286133,
1151
+ "step": 1630
1152
+ }
1153
+ ],
1154
+ "logging_steps": 10,
1155
+ "max_steps": 1638,
1156
+ "num_input_tokens_seen": 0,
1157
+ "num_train_epochs": 3,
1158
+ "save_steps": 500,
1159
+ "stateful_callbacks": {
1160
+ "TrainerControl": {
1161
+ "args": {
1162
+ "should_epoch_stop": false,
1163
+ "should_evaluate": false,
1164
+ "should_log": false,
1165
+ "should_save": true,
1166
+ "should_training_stop": true
1167
+ },
1168
+ "attributes": {}
1169
+ }
1170
+ },
1171
+ "total_flos": 4.469692570628813e+16,
1172
+ "train_batch_size": 4,
1173
+ "trial_name": null,
1174
+ "trial_params": null
1175
+ }
checkpoint-1638/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e85e9413c7636d9fff8558d114d2112dff5238aa624b3ebdad9a7bde187c0bf2
3
+ size 5713
checkpoint-500/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3.5-4B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen3.5-4B
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.18.1
checkpoint-500/adapter_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Qwen3_5ForConditionalGeneration",
7
+ "parent_library": "transformers.models.qwen3_5.modeling_qwen3_5",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "Qwen/Qwen3.5-4B",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 16,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0,
26
+ "megatron_config": null,
27
+ "megatron_core": "megatron.core",
28
+ "modules_to_save": null,
29
+ "peft_type": "LORA",
30
+ "peft_version": "0.18.1",
31
+ "qalora_group_size": 16,
32
+ "r": 16,
33
+ "rank_pattern": {},
34
+ "revision": null,
35
+ "target_modules": [
36
+ "k_proj",
37
+ "q_proj",
38
+ "down_proj",
39
+ "v_proj",
40
+ "o_proj",
41
+ "up_proj",
42
+ "gate_proj"
43
+ ],
44
+ "target_parameters": null,
45
+ "task_type": "CAUSAL_LM",
46
+ "trainable_token_indices": null,
47
+ "use_dora": false,
48
+ "use_qalora": false,
49
+ "use_rslora": false
50
+ }
checkpoint-500/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20f8036c0ba5f313b73cd89593e6a7b013359ebaa8d06e562eb93fbcd952b4bf
3
+ size 84972248
checkpoint-500/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 %}
checkpoint-500/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc88863efebd2a57f93104421dc52326c2a03e9d5ea0e6de71727e82d4dd68ec
3
+ size 43434405
checkpoint-500/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-500/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61c19bab1174704a4a4441475683bf1270277af15d2e2c95e964789128e482c4
3
+ size 14645
checkpoint-500/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52255f5f510483729853e9c8db34e229d7de0649af4856c1ece43967c1b7f0bf
3
+ size 1465
checkpoint-500/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87a7830d63fcf43bf241c3c5242e96e62dd3fdc29224ca26fed8ea333db72de4
3
+ size 19989343