eoinedge commited on
Commit
7ad688e
·
verified ·
1 Parent(s): 338bb27

Push trained edgeai-0.5b adapter

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ 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-1944/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,166 +1,207 @@
1
  ---
2
- license: apache-2.0
3
- base_model: Qwen/Qwen1.5-0.5B
4
  library_name: peft
5
- language:
6
- - en
7
- tags:
8
- - lora
9
- - peft
10
- - qwen
11
- - edge-ai
12
- - edge-impulse
13
- - documentation
14
- - code-generation
15
- - conversational
16
  pipeline_tag: text-generation
 
 
 
 
17
  ---
18
 
19
- # edgeai-docs-embedding-qwen1.5-0.5b-instruct
20
 
21
- A LoRA adapter fine-tuned on **1,794 Edge Impulse / Edge AI MDX documentation files** from the [Edge Impulse documentation](https://docs.edgeimpulse.com), built on top of [`Qwen/Qwen1.5-0.5B`](https://huggingface.co/Qwen/Qwen1.5-0.5B).
22
 
23
- Optimized for:
24
- - Answering developer questions about Edge Impulse Studio, SDK, and APIs
25
- - Summarizing technical documentation
26
- - Generating code snippets for edge ML workflows
27
- - Lightweight local/edge deployment
28
 
29
- > **Larger variants in training:** [1.5B](https://huggingface.co/eoinedge/edgeai-qwen2.5coder-1.5b-lora) · [7B](https://huggingface.co/eoinedge/edgeai-qwen2.5coder-7b-lora) (Qwen2.5-Coder base)
30
-
31
- ---
32
 
33
  ## Model Details
34
 
35
- | Property | Value |
36
- |---|---|
37
- | Base model | `Qwen/Qwen1.5-0.5B` |
38
- | Adapter type | LoRA (PEFT) |
39
- | LoRA rank (`r`) | 8 |
40
- | LoRA alpha | 32 |
41
- | Target modules | `q_proj`, `v_proj` |
42
- | LoRA dropout | 0.05 |
43
- | Trainable parameters | ~786K (0.17% of base) |
44
- | Training epochs | 3 |
45
- | Batch size | 4 (× grad accum 2 = effective 8) |
46
- | Learning rate | 3e-4 (cosine decay) |
47
- | Sequence length | 512 tokens |
48
- | Training hardware | Apple M1 Pro (MPS, fp16) |
49
- | Precision | float16 |
50
 
51
- ---
52
 
53
- ## Training Data
54
 
55
- | Stat | Value |
56
- |---|---|
57
- | Source | [Edge Impulse Mintlify documentation](https://docs.edgeimpulse.com) |
58
- | File format | MDX (Markdown + JSX components) |
59
- | Total files | 1,794 `.mdx` files |
60
- | Preprocessing | Frontmatter, JSX tags, imports stripped; code fences unwrapped; links flattened |
61
- | Chunks generated | ~3,500 × 512-token chunks |
62
 
63
- Topics covered: Studio projects, datasets, DSP blocks, learning blocks, deployment targets, Python SDK, REST API, CLI tools, edge inference, model optimization, and more.
 
 
 
 
 
 
64
 
65
- ---
66
 
67
- ## Usage
68
 
69
- ### Load and chat
 
 
70
 
71
- ```python
72
- import torch
73
- from transformers import AutoModelForCausalLM, AutoTokenizer
74
- from peft import PeftModel
75
 
76
- BASE_MODEL = "Qwen/Qwen1.5-0.5B"
77
- ADAPTER = "eoinedge/edgeai-docs-embedding-qwen1.5-0.5b-instruct"
78
 
79
- device = "cuda" if torch.cuda.is_available() else \
80
- "mps" if torch.backends.mps.is_available() else "cpu"
81
 
82
- tokenizer = AutoTokenizer.from_pretrained(BASE_MODEL)
83
- base = AutoModelForCausalLM.from_pretrained(BASE_MODEL,
84
- dtype=torch.float16 if device != "cpu" else torch.float32,
85
- device_map=device)
86
- model = PeftModel.from_pretrained(base, ADAPTER)
87
- model.eval()
88
- ```
89
 
90
- ### Single question
91
 
92
- ```python
93
- prompt = "How do I collect sensor data using the Edge Impulse data forwarder?"
94
- inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
95
 
96
- with torch.no_grad():
97
- out = model.generate(**inputs, max_new_tokens=512,
98
- do_sample=True, temperature=0.7, top_p=0.95,
99
- pad_token_id=tokenizer.eos_token_id)
100
 
101
- print(tokenizer.decode(out[0], skip_special_tokens=True))
102
- ```
103
 
104
- ### Chat template (multi-turn)
105
 
106
- ```python
107
- messages = [
108
- {"role": "user", "content": "What is an impulse in Edge Impulse?"}
109
- ]
110
- formatted = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
111
- inputs = tokenizer(formatted, return_tensors="pt").to(model.device)
112
 
113
- with torch.no_grad():
114
- out = model.generate(**inputs, max_new_tokens=512,
115
- do_sample=True, temperature=0.7,
116
- pad_token_id=tokenizer.eos_token_id)
117
 
118
- print(tokenizer.decode(out[0], skip_special_tokens=True))
119
- ```
120
 
121
- ---
122
 
123
- ## Example Prompts
124
 
125
- | Task | Prompt |
126
- |---|---|
127
- | Concept explanation | `"What is a DSP block in Edge Impulse?"` |
128
- | API usage | `"How do I use the Edge Impulse Python SDK to upload data?"` |
129
- | Deployment | `"How do I deploy a model to an Arduino Nano 33 BLE Sense?"` |
130
- | Code generation | `"Write Python code to collect IMU data and upload it to Edge Impulse."` |
131
- | Troubleshooting | `"Why is my Edge Impulse model showing high latency on the Cortex-M4?"` |
132
 
133
- ---
134
 
135
- ## Limitations
136
 
137
- - Based on a 0.5B parameter base model — may struggle with complex multi-step reasoning
138
- - Training data covers documentation as of mid-2026; newer APIs may not be represented
139
- - May hallucinate undocumented Edge Impulse features
140
- - Not suitable for safety-critical or production decision-making systems
141
- - Validate generated code before running on real hardware
142
 
143
- ---
144
 
145
- ## Related Models
146
 
147
- | Model | Base | Status |
148
- |---|---|---|
149
- | This model | Qwen1.5-0.5B | ✅ Available |
150
- | [eoinedge/edgeai-qwen2.5coder-1.5b-lora](https://huggingface.co/eoinedge/edgeai-qwen2.5coder-1.5b-lora) | Qwen2.5-Coder-1.5B-Instruct | 🔄 Training |
151
- | [eoinedge/edgeai-qwen2.5coder-7b-lora](https://huggingface.co/eoinedge/edgeai-qwen2.5coder-7b-lora) | Qwen2.5-Coder-7B-Instruct | 🔄 Training |
152
- | [eoinedge/arduino-qwen0.5-lora](https://huggingface.co/eoinedge/arduino-qwen0.5-lora) | Qwen1.5-0.5B | ✅ Available (Arduino docs) |
153
 
154
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
 
156
- ## Citation
157
-
158
- ```bibtex
159
- @misc{edgeai-docs-embedding-qwen1.5-0.5b-instruct,
160
- author = {Jordan, Eoin},
161
- title = {edgeai-docs-embedding-qwen1.5-0.5b-instruct},
162
- year = {2026},
163
- publisher = {Hugging Face},
164
- howpublished = {\url{https://huggingface.co/eoinedge/edgeai-docs-embedding-qwen1.5-0.5b-instruct}}
165
- }
166
- ```
 
1
  ---
2
+ base_model: Qwen/Qwen2.5-Coder-0.5B-Instruct
 
3
  library_name: peft
 
 
 
 
 
 
 
 
 
 
 
4
  pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen2.5-Coder-0.5B-Instruct
7
+ - lora
8
+ - transformers
9
  ---
10
 
11
+ # Model Card for Model ID
12
 
13
+ <!-- Provide a quick summary of what the model is/does. -->
14
 
 
 
 
 
 
15
 
 
 
 
16
 
17
  ## Model Details
18
 
19
+ ### Model Description
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
+ <!-- Provide a longer summary of what this model is. -->
22
 
 
23
 
 
 
 
 
 
 
 
24
 
25
+ - **Developed by:** [More Information Needed]
26
+ - **Funded by [optional]:** [More Information Needed]
27
+ - **Shared by [optional]:** [More Information Needed]
28
+ - **Model type:** [More Information Needed]
29
+ - **Language(s) (NLP):** [More Information Needed]
30
+ - **License:** [More Information Needed]
31
+ - **Finetuned from model [optional]:** [More Information Needed]
32
 
33
+ ### Model Sources [optional]
34
 
35
+ <!-- Provide the basic links for the model. -->
36
 
37
+ - **Repository:** [More Information Needed]
38
+ - **Paper [optional]:** [More Information Needed]
39
+ - **Demo [optional]:** [More Information Needed]
40
 
41
+ ## Uses
 
 
 
42
 
43
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
 
44
 
45
+ ### Direct Use
 
46
 
47
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
 
 
 
 
 
 
48
 
49
+ [More Information Needed]
50
 
51
+ ### Downstream Use [optional]
 
 
52
 
53
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
 
 
 
54
 
55
+ [More Information Needed]
 
56
 
57
+ ### Out-of-Scope Use
58
 
59
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
 
 
 
 
 
60
 
61
+ [More Information Needed]
 
 
 
62
 
63
+ ## Bias, Risks, and Limitations
 
64
 
65
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
66
 
67
+ [More Information Needed]
68
 
69
+ ### Recommendations
 
 
 
 
 
 
70
 
71
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
72
 
73
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
74
 
75
+ ## How to Get Started with the Model
 
 
 
 
76
 
77
+ Use the code below to get started with the model.
78
 
79
+ [More Information Needed]
80
 
81
+ ## Training Details
 
 
 
 
 
82
 
83
+ ### Training Data
84
+
85
+ <!-- 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. -->
86
+
87
+ [More Information Needed]
88
+
89
+ ### Training Procedure
90
+
91
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
92
+
93
+ #### Preprocessing [optional]
94
+
95
+ [More Information Needed]
96
+
97
+
98
+ #### Training Hyperparameters
99
+
100
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
101
+
102
+ #### Speeds, Sizes, Times [optional]
103
+
104
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
105
+
106
+ [More Information Needed]
107
+
108
+ ## Evaluation
109
+
110
+ <!-- This section describes the evaluation protocols and provides the results. -->
111
+
112
+ ### Testing Data, Factors & Metrics
113
+
114
+ #### Testing Data
115
+
116
+ <!-- This should link to a Dataset Card if possible. -->
117
+
118
+ [More Information Needed]
119
+
120
+ #### Factors
121
+
122
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
123
+
124
+ [More Information Needed]
125
+
126
+ #### Metrics
127
+
128
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
129
+
130
+ [More Information Needed]
131
+
132
+ ### Results
133
+
134
+ [More Information Needed]
135
+
136
+ #### Summary
137
+
138
+
139
+
140
+ ## Model Examination [optional]
141
+
142
+ <!-- Relevant interpretability work for the model goes here -->
143
+
144
+ [More Information Needed]
145
+
146
+ ## Environmental Impact
147
+
148
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
149
+
150
+ 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).
151
+
152
+ - **Hardware Type:** [More Information Needed]
153
+ - **Hours used:** [More Information Needed]
154
+ - **Cloud Provider:** [More Information Needed]
155
+ - **Compute Region:** [More Information Needed]
156
+ - **Carbon Emitted:** [More Information Needed]
157
+
158
+ ## Technical Specifications [optional]
159
+
160
+ ### Model Architecture and Objective
161
+
162
+ [More Information Needed]
163
+
164
+ ### Compute Infrastructure
165
+
166
+ [More Information Needed]
167
+
168
+ #### Hardware
169
+
170
+ [More Information Needed]
171
+
172
+ #### Software
173
+
174
+ [More Information Needed]
175
+
176
+ ## Citation [optional]
177
+
178
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
179
+
180
+ **BibTeX:**
181
+
182
+ [More Information Needed]
183
+
184
+ **APA:**
185
+
186
+ [More Information Needed]
187
+
188
+ ## Glossary [optional]
189
+
190
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
191
+
192
+ [More Information Needed]
193
+
194
+ ## More Information [optional]
195
+
196
+ [More Information Needed]
197
+
198
+ ## Model Card Authors [optional]
199
+
200
+ [More Information Needed]
201
+
202
+ ## Model Card Contact
203
+
204
+ [More Information Needed]
205
+ ### Framework versions
206
 
207
+ - PEFT 0.19.1
 
 
 
 
 
 
 
 
 
 
adapter_config.json CHANGED
@@ -3,7 +3,7 @@
3
  "alpha_pattern": {},
4
  "arrow_config": null,
5
  "auto_mapping": null,
6
- "base_model_name_or_path": "Qwen/Qwen1.5-0.5B",
7
  "bias": "none",
8
  "corda_config": null,
9
  "ensure_weight_tying": false,
@@ -16,25 +16,27 @@
16
  "layers_pattern": null,
17
  "layers_to_transform": null,
18
  "loftq_config": {},
19
- "lora_alpha": 16,
20
  "lora_bias": false,
21
  "lora_dropout": 0.05,
 
22
  "megatron_config": null,
23
  "megatron_core": "megatron.core",
24
  "modules_to_save": null,
25
  "peft_type": "LORA",
26
- "peft_version": "0.18.1",
27
  "qalora_group_size": 16,
28
  "r": 8,
29
  "rank_pattern": {},
30
  "revision": null,
31
  "target_modules": [
32
- "v_proj",
33
- "q_proj"
34
  ],
35
  "target_parameters": null,
36
  "task_type": "CAUSAL_LM",
37
  "trainable_token_indices": null,
 
38
  "use_dora": false,
39
  "use_qalora": false,
40
  "use_rslora": false
 
3
  "alpha_pattern": {},
4
  "arrow_config": null,
5
  "auto_mapping": null,
6
+ "base_model_name_or_path": "Qwen/Qwen2.5-Coder-0.5B-Instruct",
7
  "bias": "none",
8
  "corda_config": null,
9
  "ensure_weight_tying": false,
 
16
  "layers_pattern": null,
17
  "layers_to_transform": null,
18
  "loftq_config": {},
19
+ "lora_alpha": 32,
20
  "lora_bias": false,
21
  "lora_dropout": 0.05,
22
+ "lora_ga_config": null,
23
  "megatron_config": null,
24
  "megatron_core": "megatron.core",
25
  "modules_to_save": null,
26
  "peft_type": "LORA",
27
+ "peft_version": "0.19.1",
28
  "qalora_group_size": 16,
29
  "r": 8,
30
  "rank_pattern": {},
31
  "revision": null,
32
  "target_modules": [
33
+ "q_proj",
34
+ "v_proj"
35
  ],
36
  "target_parameters": null,
37
  "task_type": "CAUSAL_LM",
38
  "trainable_token_indices": null,
39
+ "use_bdlora": null,
40
  "use_dora": false,
41
  "use_qalora": false,
42
  "use_rslora": false
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a9486daa2d9aa7e3245c18a8b3b6d04d4bf2ca079b4ea28147beb2f3a1c5b967
3
- size 3158328
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0a76fc6979e968d4aa602c707334dddeb60bee864ea77451c5217c8b34050c8
3
+ size 2175168
chat_template.jinja CHANGED
@@ -1,6 +1,54 @@
1
- {% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system
2
- You are a helpful assistant<|im_end|>
3
- ' }}{% endif %}{{'<|im_start|>' + message['role'] + '
4
- ' + message['content'] + '<|im_end|>' + '
5
- '}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant
6
- ' }}{% endif %}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
7
+ {%- endif %}
8
+ {{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
checkpoint-1944/README.md ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-Coder-0.5B-Instruct
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen2.5-Coder-0.5B-Instruct
7
+ - lora
8
+ - transformers
9
+ ---
10
+
11
+ # Model Card for Model ID
12
+
13
+ <!-- Provide a quick summary of what the model is/does. -->
14
+
15
+
16
+
17
+ ## Model Details
18
+
19
+ ### Model Description
20
+
21
+ <!-- Provide a longer summary of what this model is. -->
22
+
23
+
24
+
25
+ - **Developed by:** [More Information Needed]
26
+ - **Funded by [optional]:** [More Information Needed]
27
+ - **Shared by [optional]:** [More Information Needed]
28
+ - **Model type:** [More Information Needed]
29
+ - **Language(s) (NLP):** [More Information Needed]
30
+ - **License:** [More Information Needed]
31
+ - **Finetuned from model [optional]:** [More Information Needed]
32
+
33
+ ### Model Sources [optional]
34
+
35
+ <!-- Provide the basic links for the model. -->
36
+
37
+ - **Repository:** [More Information Needed]
38
+ - **Paper [optional]:** [More Information Needed]
39
+ - **Demo [optional]:** [More Information Needed]
40
+
41
+ ## Uses
42
+
43
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
44
+
45
+ ### Direct Use
46
+
47
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
48
+
49
+ [More Information Needed]
50
+
51
+ ### Downstream Use [optional]
52
+
53
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
54
+
55
+ [More Information Needed]
56
+
57
+ ### Out-of-Scope Use
58
+
59
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
60
+
61
+ [More Information Needed]
62
+
63
+ ## Bias, Risks, and Limitations
64
+
65
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
66
+
67
+ [More Information Needed]
68
+
69
+ ### Recommendations
70
+
71
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
72
+
73
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
74
+
75
+ ## How to Get Started with the Model
76
+
77
+ Use the code below to get started with the model.
78
+
79
+ [More Information Needed]
80
+
81
+ ## Training Details
82
+
83
+ ### Training Data
84
+
85
+ <!-- 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. -->
86
+
87
+ [More Information Needed]
88
+
89
+ ### Training Procedure
90
+
91
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
92
+
93
+ #### Preprocessing [optional]
94
+
95
+ [More Information Needed]
96
+
97
+
98
+ #### Training Hyperparameters
99
+
100
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
101
+
102
+ #### Speeds, Sizes, Times [optional]
103
+
104
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
105
+
106
+ [More Information Needed]
107
+
108
+ ## Evaluation
109
+
110
+ <!-- This section describes the evaluation protocols and provides the results. -->
111
+
112
+ ### Testing Data, Factors & Metrics
113
+
114
+ #### Testing Data
115
+
116
+ <!-- This should link to a Dataset Card if possible. -->
117
+
118
+ [More Information Needed]
119
+
120
+ #### Factors
121
+
122
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
123
+
124
+ [More Information Needed]
125
+
126
+ #### Metrics
127
+
128
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
129
+
130
+ [More Information Needed]
131
+
132
+ ### Results
133
+
134
+ [More Information Needed]
135
+
136
+ #### Summary
137
+
138
+
139
+
140
+ ## Model Examination [optional]
141
+
142
+ <!-- Relevant interpretability work for the model goes here -->
143
+
144
+ [More Information Needed]
145
+
146
+ ## Environmental Impact
147
+
148
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
149
+
150
+ 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).
151
+
152
+ - **Hardware Type:** [More Information Needed]
153
+ - **Hours used:** [More Information Needed]
154
+ - **Cloud Provider:** [More Information Needed]
155
+ - **Compute Region:** [More Information Needed]
156
+ - **Carbon Emitted:** [More Information Needed]
157
+
158
+ ## Technical Specifications [optional]
159
+
160
+ ### Model Architecture and Objective
161
+
162
+ [More Information Needed]
163
+
164
+ ### Compute Infrastructure
165
+
166
+ [More Information Needed]
167
+
168
+ #### Hardware
169
+
170
+ [More Information Needed]
171
+
172
+ #### Software
173
+
174
+ [More Information Needed]
175
+
176
+ ## Citation [optional]
177
+
178
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
179
+
180
+ **BibTeX:**
181
+
182
+ [More Information Needed]
183
+
184
+ **APA:**
185
+
186
+ [More Information Needed]
187
+
188
+ ## Glossary [optional]
189
+
190
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
191
+
192
+ [More Information Needed]
193
+
194
+ ## More Information [optional]
195
+
196
+ [More Information Needed]
197
+
198
+ ## Model Card Authors [optional]
199
+
200
+ [More Information Needed]
201
+
202
+ ## Model Card Contact
203
+
204
+ [More Information Needed]
205
+ ### Framework versions
206
+
207
+ - PEFT 0.19.1
checkpoint-1944/adapter_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "Qwen/Qwen2.5-Coder-0.5B-Instruct",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "lora_ga_config": null,
23
+ "megatron_config": null,
24
+ "megatron_core": "megatron.core",
25
+ "modules_to_save": null,
26
+ "peft_type": "LORA",
27
+ "peft_version": "0.19.1",
28
+ "qalora_group_size": 16,
29
+ "r": 8,
30
+ "rank_pattern": {},
31
+ "revision": null,
32
+ "target_modules": [
33
+ "q_proj",
34
+ "v_proj"
35
+ ],
36
+ "target_parameters": null,
37
+ "task_type": "CAUSAL_LM",
38
+ "trainable_token_indices": null,
39
+ "use_bdlora": null,
40
+ "use_dora": false,
41
+ "use_qalora": false,
42
+ "use_rslora": false
43
+ }
checkpoint-1944/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0a76fc6979e968d4aa602c707334dddeb60bee864ea77451c5217c8b34050c8
3
+ size 2175168
checkpoint-1944/chat_template.jinja ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
7
+ {%- endif %}
8
+ {{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
checkpoint-1944/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fefd42ceaa17fcbdff926202750256e12d7a031be0f5425e732f5780612ac63
3
+ size 4403979
checkpoint-1944/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dba4fde4ee04d2f472bb4dea96a48e8fdf7891d2b0694a8f012e8133a2e176ae
3
+ size 14455
checkpoint-1944/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5776ba4c7bff0e3c6593b46f4c6eb2ebf40788b48a9d1f1312cafa267c9b1b3
3
+ size 1465
checkpoint-1944/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d429fe753aea0ff87a94e86396d5508abb0d1d0e1f7a0d47c787ff72e0bf2691
3
+ size 11422170
checkpoint-1944/tokenizer_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": false,
24
+ "local_files_only": false,
25
+ "model_max_length": 32768,
26
+ "pad_token": "<|endoftext|>",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }
checkpoint-1944/trainer_state.json ADDED
@@ -0,0 +1,1392 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1944,
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.015444015444015444,
14
+ "grad_norm": 1.4037939310073853,
15
+ "learning_rate": 2.7551020408163265e-05,
16
+ "loss": 2.2456369400024414,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.03088803088803089,
21
+ "grad_norm": 1.1738731861114502,
22
+ "learning_rate": 5.816326530612244e-05,
23
+ "loss": 2.3365745544433594,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.04633204633204633,
28
+ "grad_norm": 1.0949680805206299,
29
+ "learning_rate": 8.877551020408162e-05,
30
+ "loss": 2.1432010650634767,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.06177606177606178,
35
+ "grad_norm": 0.9832558035850525,
36
+ "learning_rate": 0.0001193877551020408,
37
+ "loss": 2.049614906311035,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 0.07722007722007722,
42
+ "grad_norm": 0.9612696766853333,
43
+ "learning_rate": 0.00015,
44
+ "loss": 2.018511962890625,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 0.09266409266409266,
49
+ "grad_norm": 1.1778725385665894,
50
+ "learning_rate": 0.00018061224489795917,
51
+ "loss": 1.9356273651123046,
52
+ "step": 60
53
+ },
54
+ {
55
+ "epoch": 0.10810810810810811,
56
+ "grad_norm": 1.5873501300811768,
57
+ "learning_rate": 0.00021122448979591835,
58
+ "loss": 2.0380990982055662,
59
+ "step": 70
60
+ },
61
+ {
62
+ "epoch": 0.12355212355212356,
63
+ "grad_norm": 1.221228837966919,
64
+ "learning_rate": 0.00024183673469387753,
65
+ "loss": 1.9059919357299804,
66
+ "step": 80
67
+ },
68
+ {
69
+ "epoch": 0.138996138996139,
70
+ "grad_norm": 1.4416429996490479,
71
+ "learning_rate": 0.0002724489795918367,
72
+ "loss": 1.5828887939453125,
73
+ "step": 90
74
+ },
75
+ {
76
+ "epoch": 0.15444015444015444,
77
+ "grad_norm": 1.1282272338867188,
78
+ "learning_rate": 0.00029999978278114975,
79
+ "loss": 1.938743782043457,
80
+ "step": 100
81
+ },
82
+ {
83
+ "epoch": 0.16988416988416988,
84
+ "grad_norm": 0.9919290542602539,
85
+ "learning_rate": 0.00029997371728034936,
86
+ "loss": 1.6106744766235352,
87
+ "step": 110
88
+ },
89
+ {
90
+ "epoch": 0.18532818532818532,
91
+ "grad_norm": 1.0722150802612305,
92
+ "learning_rate": 0.00029990421665949653,
93
+ "loss": 1.7475299835205078,
94
+ "step": 120
95
+ },
96
+ {
97
+ "epoch": 0.20077220077220076,
98
+ "grad_norm": 1.0492802858352661,
99
+ "learning_rate": 0.0002997913010472369,
100
+ "loss": 1.7279144287109376,
101
+ "step": 130
102
+ },
103
+ {
104
+ "epoch": 0.21621621621621623,
105
+ "grad_norm": 1.0410865545272827,
106
+ "learning_rate": 0.0002996350031459883,
107
+ "loss": 1.7799049377441407,
108
+ "step": 140
109
+ },
110
+ {
111
+ "epoch": 0.23166023166023167,
112
+ "grad_norm": 1.0257374048233032,
113
+ "learning_rate": 0.0002994353682224698,
114
+ "loss": 1.946047019958496,
115
+ "step": 150
116
+ },
117
+ {
118
+ "epoch": 0.2471042471042471,
119
+ "grad_norm": 0.9963180422782898,
120
+ "learning_rate": 0.00029919245409459113,
121
+ "loss": 1.6164806365966797,
122
+ "step": 160
123
+ },
124
+ {
125
+ "epoch": 0.2625482625482625,
126
+ "grad_norm": 1.2820403575897217,
127
+ "learning_rate": 0.00029890633111470807,
128
+ "loss": 1.7179590225219727,
129
+ "step": 170
130
+ },
131
+ {
132
+ "epoch": 0.277992277992278,
133
+ "grad_norm": 1.3410162925720215,
134
+ "learning_rate": 0.00029857708214924683,
135
+ "loss": 1.7777984619140625,
136
+ "step": 180
137
+ },
138
+ {
139
+ "epoch": 0.29343629343629346,
140
+ "grad_norm": 0.861699104309082,
141
+ "learning_rate": 0.00029820480255470454,
142
+ "loss": 1.6751325607299805,
143
+ "step": 190
144
+ },
145
+ {
146
+ "epoch": 0.3088803088803089,
147
+ "grad_norm": 1.021099328994751,
148
+ "learning_rate": 0.00029778960015003234,
149
+ "loss": 1.6995296478271484,
150
+ "step": 200
151
+ },
152
+ {
153
+ "epoch": 0.32432432432432434,
154
+ "grad_norm": 1.2420690059661865,
155
+ "learning_rate": 0.0002973315951854088,
156
+ "loss": 1.8540716171264648,
157
+ "step": 210
158
+ },
159
+ {
160
+ "epoch": 0.33976833976833976,
161
+ "grad_norm": 1.000664472579956,
162
+ "learning_rate": 0.0002968309203074134,
163
+ "loss": 1.7613260269165039,
164
+ "step": 220
165
+ },
166
+ {
167
+ "epoch": 0.3552123552123552,
168
+ "grad_norm": 1.1279399394989014,
169
+ "learning_rate": 0.0002962877205206099,
170
+ "loss": 1.5803558349609375,
171
+ "step": 230
172
+ },
173
+ {
174
+ "epoch": 0.37065637065637064,
175
+ "grad_norm": 0.8551195859909058,
176
+ "learning_rate": 0.00029570215314555,
177
+ "loss": 1.734011459350586,
178
+ "step": 240
179
+ },
180
+ {
181
+ "epoch": 0.3861003861003861,
182
+ "grad_norm": 0.8637387156486511,
183
+ "learning_rate": 0.0002950743877732108,
184
+ "loss": 1.7476438522338866,
185
+ "step": 250
186
+ },
187
+ {
188
+ "epoch": 0.4015444015444015,
189
+ "grad_norm": 1.0227371454238892,
190
+ "learning_rate": 0.0002944046062158777,
191
+ "loss": 1.7513925552368164,
192
+ "step": 260
193
+ },
194
+ {
195
+ "epoch": 0.416988416988417,
196
+ "grad_norm": 0.9151001572608948,
197
+ "learning_rate": 0.0002936930024544888,
198
+ "loss": 1.7603607177734375,
199
+ "step": 270
200
+ },
201
+ {
202
+ "epoch": 0.43243243243243246,
203
+ "grad_norm": 1.329811692237854,
204
+ "learning_rate": 0.00029293978258245406,
205
+ "loss": 1.6887689590454102,
206
+ "step": 280
207
+ },
208
+ {
209
+ "epoch": 0.44787644787644787,
210
+ "grad_norm": 0.9269930720329285,
211
+ "learning_rate": 0.0002921451647459671,
212
+ "loss": 1.5464738845825194,
213
+ "step": 290
214
+ },
215
+ {
216
+ "epoch": 0.46332046332046334,
217
+ "grad_norm": 1.0040987730026245,
218
+ "learning_rate": 0.00029130937908082604,
219
+ "loss": 1.6163362503051757,
220
+ "step": 300
221
+ },
222
+ {
223
+ "epoch": 0.47876447876447875,
224
+ "grad_norm": 1.0540329217910767,
225
+ "learning_rate": 0.00029043266764578195,
226
+ "loss": 1.6252431869506836,
227
+ "step": 310
228
+ },
229
+ {
230
+ "epoch": 0.4942084942084942,
231
+ "grad_norm": 0.9336711168289185,
232
+ "learning_rate": 0.0002895152843524344,
233
+ "loss": 1.602645492553711,
234
+ "step": 320
235
+ },
236
+ {
237
+ "epoch": 0.5096525096525096,
238
+ "grad_norm": 1.219923496246338,
239
+ "learning_rate": 0.0002885574948916937,
240
+ "loss": 1.473693561553955,
241
+ "step": 330
242
+ },
243
+ {
244
+ "epoch": 0.525096525096525,
245
+ "grad_norm": 1.0635799169540405,
246
+ "learning_rate": 0.0002875595766568323,
247
+ "loss": 1.5973052978515625,
248
+ "step": 340
249
+ },
250
+ {
251
+ "epoch": 0.5405405405405406,
252
+ "grad_norm": 1.088948369026184,
253
+ "learning_rate": 0.00028652181866314647,
254
+ "loss": 1.8524045944213867,
255
+ "step": 350
256
+ },
257
+ {
258
+ "epoch": 0.555984555984556,
259
+ "grad_norm": 1.0073893070220947,
260
+ "learning_rate": 0.00028544452146425224,
261
+ "loss": 1.711871337890625,
262
+ "step": 360
263
+ },
264
+ {
265
+ "epoch": 0.5714285714285714,
266
+ "grad_norm": 1.1476589441299438,
267
+ "learning_rate": 0.0002843279970650397,
268
+ "loss": 1.4864485740661622,
269
+ "step": 370
270
+ },
271
+ {
272
+ "epoch": 0.5868725868725869,
273
+ "grad_norm": 1.370861530303955,
274
+ "learning_rate": 0.0002831725688313105,
275
+ "loss": 1.6705432891845704,
276
+ "step": 380
277
+ },
278
+ {
279
+ "epoch": 0.6023166023166023,
280
+ "grad_norm": 0.8961737751960754,
281
+ "learning_rate": 0.0002819785713961253,
282
+ "loss": 1.801691436767578,
283
+ "step": 390
284
+ },
285
+ {
286
+ "epoch": 0.6177606177606177,
287
+ "grad_norm": 0.9400205016136169,
288
+ "learning_rate": 0.0002807463505628882,
289
+ "loss": 1.8878303527832032,
290
+ "step": 400
291
+ },
292
+ {
293
+ "epoch": 0.6332046332046332,
294
+ "grad_norm": 0.800969123840332,
295
+ "learning_rate": 0.00027947626320519534,
296
+ "loss": 1.5196457862854005,
297
+ "step": 410
298
+ },
299
+ {
300
+ "epoch": 0.6486486486486487,
301
+ "grad_norm": 1.1550366878509521,
302
+ "learning_rate": 0.00027816867716347804,
303
+ "loss": 1.5222931861877442,
304
+ "step": 420
305
+ },
306
+ {
307
+ "epoch": 0.6640926640926641,
308
+ "grad_norm": 1.0254504680633545,
309
+ "learning_rate": 0.0002768239711384696,
310
+ "loss": 1.433454990386963,
311
+ "step": 430
312
+ },
313
+ {
314
+ "epoch": 0.6795366795366795,
315
+ "grad_norm": 1.223831057548523,
316
+ "learning_rate": 0.00027544253458152654,
317
+ "loss": 1.777733612060547,
318
+ "step": 440
319
+ },
320
+ {
321
+ "epoch": 0.694980694980695,
322
+ "grad_norm": 0.9708006978034973,
323
+ "learning_rate": 0.0002740247675818363,
324
+ "loss": 1.6670234680175782,
325
+ "step": 450
326
+ },
327
+ {
328
+ "epoch": 0.7104247104247104,
329
+ "grad_norm": 0.9971620440483093,
330
+ "learning_rate": 0.0002725710807505443,
331
+ "loss": 1.570652389526367,
332
+ "step": 460
333
+ },
334
+ {
335
+ "epoch": 0.7258687258687259,
336
+ "grad_norm": 1.3415018320083618,
337
+ "learning_rate": 0.00027108189510183353,
338
+ "loss": 1.676083755493164,
339
+ "step": 470
340
+ },
341
+ {
342
+ "epoch": 0.7413127413127413,
343
+ "grad_norm": 0.9999040365219116,
344
+ "learning_rate": 0.0002695576419309909,
345
+ "loss": 1.6934436798095702,
346
+ "step": 480
347
+ },
348
+ {
349
+ "epoch": 0.7567567567567568,
350
+ "grad_norm": 0.9617835283279419,
351
+ "learning_rate": 0.0002679987626894965,
352
+ "loss": 1.6680171966552735,
353
+ "step": 490
354
+ },
355
+ {
356
+ "epoch": 0.7722007722007722,
357
+ "grad_norm": 0.9319403171539307,
358
+ "learning_rate": 0.00026640570885717114,
359
+ "loss": 1.588079071044922,
360
+ "step": 500
361
+ },
362
+ {
363
+ "epoch": 0.7876447876447876,
364
+ "grad_norm": 1.0308598279953003,
365
+ "learning_rate": 0.0002647789418114195,
366
+ "loss": 1.6546548843383788,
367
+ "step": 510
368
+ },
369
+ {
370
+ "epoch": 0.803088803088803,
371
+ "grad_norm": 0.8231996297836304,
372
+ "learning_rate": 0.000263118932693607,
373
+ "loss": 1.5137727737426758,
374
+ "step": 520
375
+ },
376
+ {
377
+ "epoch": 0.8185328185328186,
378
+ "grad_norm": 1.1175258159637451,
379
+ "learning_rate": 0.0002614261622726085,
380
+ "loss": 1.5433481216430665,
381
+ "step": 530
382
+ },
383
+ {
384
+ "epoch": 0.833976833976834,
385
+ "grad_norm": 9.15444564819336,
386
+ "learning_rate": 0.000259701120805569,
387
+ "loss": 1.9183786392211915,
388
+ "step": 540
389
+ },
390
+ {
391
+ "epoch": 0.8494208494208494,
392
+ "grad_norm": 1.0551954507827759,
393
+ "learning_rate": 0.00025794430789591614,
394
+ "loss": 1.679318618774414,
395
+ "step": 550
396
+ },
397
+ {
398
+ "epoch": 0.8648648648648649,
399
+ "grad_norm": 0.751406729221344,
400
+ "learning_rate": 0.0002561562323486662,
401
+ "loss": 1.6797428131103516,
402
+ "step": 560
403
+ },
404
+ {
405
+ "epoch": 0.8803088803088803,
406
+ "grad_norm": 0.9122493267059326,
407
+ "learning_rate": 0.0002543374120230644,
408
+ "loss": 1.607935905456543,
409
+ "step": 570
410
+ },
411
+ {
412
+ "epoch": 0.8957528957528957,
413
+ "grad_norm": 1.00667405128479,
414
+ "learning_rate": 0.000252488373682604,
415
+ "loss": 1.5823253631591796,
416
+ "step": 580
417
+ },
418
+ {
419
+ "epoch": 0.9111969111969112,
420
+ "grad_norm": 1.0590976476669312,
421
+ "learning_rate": 0.0002506096528424656,
422
+ "loss": 1.8240434646606445,
423
+ "step": 590
424
+ },
425
+ {
426
+ "epoch": 0.9266409266409267,
427
+ "grad_norm": 0.9452527761459351,
428
+ "learning_rate": 0.0002487017936144223,
429
+ "loss": 1.6304161071777343,
430
+ "step": 600
431
+ },
432
+ {
433
+ "epoch": 0.9420849420849421,
434
+ "grad_norm": 1.163418173789978,
435
+ "learning_rate": 0.0002467653485492552,
436
+ "loss": 1.5960216522216797,
437
+ "step": 610
438
+ },
439
+ {
440
+ "epoch": 0.9575289575289575,
441
+ "grad_norm": 0.9150944352149963,
442
+ "learning_rate": 0.00024480087847672435,
443
+ "loss": 1.5339275360107423,
444
+ "step": 620
445
+ },
446
+ {
447
+ "epoch": 0.972972972972973,
448
+ "grad_norm": 0.8981226682662964,
449
+ "learning_rate": 0.00024280895234314235,
450
+ "loss": 1.4849534034729004,
451
+ "step": 630
452
+ },
453
+ {
454
+ "epoch": 0.9884169884169884,
455
+ "grad_norm": 0.812420666217804,
456
+ "learning_rate": 0.0002407901470465972,
457
+ "loss": 1.7769981384277345,
458
+ "step": 640
459
+ },
460
+ {
461
+ "epoch": 1.003088803088803,
462
+ "grad_norm": 0.9379829168319702,
463
+ "learning_rate": 0.00023874504726987208,
464
+ "loss": 1.9014230728149415,
465
+ "step": 650
466
+ },
467
+ {
468
+ "epoch": 1.0185328185328186,
469
+ "grad_norm": 1.0105115175247192,
470
+ "learning_rate": 0.00023667424531111049,
471
+ "loss": 1.810800552368164,
472
+ "step": 660
473
+ },
474
+ {
475
+ "epoch": 1.033976833976834,
476
+ "grad_norm": 1.0180754661560059,
477
+ "learning_rate": 0.00023457834091227596,
478
+ "loss": 1.5104179382324219,
479
+ "step": 670
480
+ },
481
+ {
482
+ "epoch": 1.0494208494208495,
483
+ "grad_norm": 1.0410679578781128,
484
+ "learning_rate": 0.00023245794108545594,
485
+ "loss": 1.8401165008544922,
486
+ "step": 680
487
+ },
488
+ {
489
+ "epoch": 1.0648648648648649,
490
+ "grad_norm": 0.9695636630058289,
491
+ "learning_rate": 0.0002303136599370599,
492
+ "loss": 1.4369486808776855,
493
+ "step": 690
494
+ },
495
+ {
496
+ "epoch": 1.0803088803088803,
497
+ "grad_norm": 1.0368708372116089,
498
+ "learning_rate": 0.000228146118489963,
499
+ "loss": 1.5943896293640136,
500
+ "step": 700
501
+ },
502
+ {
503
+ "epoch": 1.0957528957528957,
504
+ "grad_norm": 1.1737443208694458,
505
+ "learning_rate": 0.00022595594450364656,
506
+ "loss": 1.4527687072753905,
507
+ "step": 710
508
+ },
509
+ {
510
+ "epoch": 1.111196911196911,
511
+ "grad_norm": 1.3451679944992065,
512
+ "learning_rate": 0.00022374377229238755,
513
+ "loss": 1.6292633056640624,
514
+ "step": 720
515
+ },
516
+ {
517
+ "epoch": 1.1266409266409267,
518
+ "grad_norm": 0.9475099444389343,
519
+ "learning_rate": 0.0002215102425415494,
520
+ "loss": 1.369598388671875,
521
+ "step": 730
522
+ },
523
+ {
524
+ "epoch": 1.1420849420849422,
525
+ "grad_norm": 0.866262674331665,
526
+ "learning_rate": 0.00021925600212202817,
527
+ "loss": 1.546749973297119,
528
+ "step": 740
529
+ },
530
+ {
531
+ "epoch": 1.1575289575289576,
532
+ "grad_norm": 0.9328863024711609,
533
+ "learning_rate": 0.0002169817039029066,
534
+ "loss": 1.4935519218444824,
535
+ "step": 750
536
+ },
537
+ {
538
+ "epoch": 1.172972972972973,
539
+ "grad_norm": 1.123698115348816,
540
+ "learning_rate": 0.00021468800656237165,
541
+ "loss": 1.6987241744995116,
542
+ "step": 760
543
+ },
544
+ {
545
+ "epoch": 1.1884169884169884,
546
+ "grad_norm": 0.8614839315414429,
547
+ "learning_rate": 0.00021237557439694908,
548
+ "loss": 1.528928279876709,
549
+ "step": 770
550
+ },
551
+ {
552
+ "epoch": 1.2038610038610038,
553
+ "grad_norm": 1.0668120384216309,
554
+ "learning_rate": 0.00021004507712911127,
555
+ "loss": 1.5347437858581543,
556
+ "step": 780
557
+ },
558
+ {
559
+ "epoch": 1.2193050193050192,
560
+ "grad_norm": 0.7914558053016663,
561
+ "learning_rate": 0.0002076971897133131,
562
+ "loss": 1.8475896835327148,
563
+ "step": 790
564
+ },
565
+ {
566
+ "epoch": 1.2347490347490346,
567
+ "grad_norm": 0.9910914897918701,
568
+ "learning_rate": 0.00020533259214051326,
569
+ "loss": 1.3885992050170899,
570
+ "step": 800
571
+ },
572
+ {
573
+ "epoch": 1.2501930501930503,
574
+ "grad_norm": 0.8978257179260254,
575
+ "learning_rate": 0.00020295196924123603,
576
+ "loss": 1.6902772903442382,
577
+ "step": 810
578
+ },
579
+ {
580
+ "epoch": 1.2656370656370657,
581
+ "grad_norm": 0.9229074120521545,
582
+ "learning_rate": 0.00020055601048723232,
583
+ "loss": 1.6268653869628906,
584
+ "step": 820
585
+ },
586
+ {
587
+ "epoch": 1.281081081081081,
588
+ "grad_norm": 0.7003966569900513,
589
+ "learning_rate": 0.00019814540979179581,
590
+ "loss": 1.5038365364074706,
591
+ "step": 830
592
+ },
593
+ {
594
+ "epoch": 1.2965250965250965,
595
+ "grad_norm": 0.7772660851478577,
596
+ "learning_rate": 0.00019572086530879297,
597
+ "loss": 1.4350035667419434,
598
+ "step": 840
599
+ },
600
+ {
601
+ "epoch": 1.311969111969112,
602
+ "grad_norm": 1.0731922388076782,
603
+ "learning_rate": 0.00019328307923046533,
604
+ "loss": 1.6524709701538085,
605
+ "step": 850
606
+ },
607
+ {
608
+ "epoch": 1.3274131274131273,
609
+ "grad_norm": 1.0146722793579102,
610
+ "learning_rate": 0.00019083275758406145,
611
+ "loss": 1.5885674476623535,
612
+ "step": 860
613
+ },
614
+ {
615
+ "epoch": 1.342857142857143,
616
+ "grad_norm": 0.9527891278266907,
617
+ "learning_rate": 0.00018837061002735872,
618
+ "loss": 1.46776123046875,
619
+ "step": 870
620
+ },
621
+ {
622
+ "epoch": 1.3583011583011584,
623
+ "grad_norm": 1.019037127494812,
624
+ "learning_rate": 0.00018589734964313365,
625
+ "loss": 1.5841195106506347,
626
+ "step": 880
627
+ },
628
+ {
629
+ "epoch": 1.3737451737451738,
630
+ "grad_norm": 1.1725468635559082,
631
+ "learning_rate": 0.00018341369273263997,
632
+ "loss": 1.7548282623291016,
633
+ "step": 890
634
+ },
635
+ {
636
+ "epoch": 1.3891891891891892,
637
+ "grad_norm": 1.1900367736816406,
638
+ "learning_rate": 0.0001809203586081546,
639
+ "loss": 1.4810908317565918,
640
+ "step": 900
641
+ },
642
+ {
643
+ "epoch": 1.4046332046332046,
644
+ "grad_norm": 0.9505715370178223,
645
+ "learning_rate": 0.0001784180693846522,
646
+ "loss": 1.6618982315063477,
647
+ "step": 910
648
+ },
649
+ {
650
+ "epoch": 1.42007722007722,
651
+ "grad_norm": 1.0159474611282349,
652
+ "learning_rate": 0.0001759075497706669,
653
+ "loss": 1.5740554809570313,
654
+ "step": 920
655
+ },
656
+ {
657
+ "epoch": 1.4355212355212355,
658
+ "grad_norm": 1.158629059791565,
659
+ "learning_rate": 0.00017338952685840405,
660
+ "loss": 1.725178337097168,
661
+ "step": 930
662
+ },
663
+ {
664
+ "epoch": 1.4509652509652509,
665
+ "grad_norm": 0.8140237331390381,
666
+ "learning_rate": 0.00017086472991316068,
667
+ "loss": 1.700775146484375,
668
+ "step": 940
669
+ },
670
+ {
671
+ "epoch": 1.4664092664092663,
672
+ "grad_norm": 0.7738586068153381,
673
+ "learning_rate": 0.0001683338901621172,
674
+ "loss": 1.485694694519043,
675
+ "step": 950
676
+ },
677
+ {
678
+ "epoch": 1.481853281853282,
679
+ "grad_norm": 1.1436389684677124,
680
+ "learning_rate": 0.00016579774058256077,
681
+ "loss": 1.5233821868896484,
682
+ "step": 960
683
+ },
684
+ {
685
+ "epoch": 1.4972972972972973,
686
+ "grad_norm": 0.9745578169822693,
687
+ "learning_rate": 0.00016325701568960135,
688
+ "loss": 1.490543270111084,
689
+ "step": 970
690
+ },
691
+ {
692
+ "epoch": 1.5127413127413127,
693
+ "grad_norm": 0.8578734397888184,
694
+ "learning_rate": 0.0001607124513234432,
695
+ "loss": 1.6233924865722655,
696
+ "step": 980
697
+ },
698
+ {
699
+ "epoch": 1.5281853281853282,
700
+ "grad_norm": 1.2539509534835815,
701
+ "learning_rate": 0.00015816478443627188,
702
+ "loss": 1.669431495666504,
703
+ "step": 990
704
+ },
705
+ {
706
+ "epoch": 1.5436293436293438,
707
+ "grad_norm": 1.2309154272079468,
708
+ "learning_rate": 0.00015561475287881947,
709
+ "loss": 1.6164697647094726,
710
+ "step": 1000
711
+ },
712
+ {
713
+ "epoch": 1.5590733590733592,
714
+ "grad_norm": 0.9187259674072266,
715
+ "learning_rate": 0.00015306309518666974,
716
+ "loss": 1.6707098007202148,
717
+ "step": 1010
718
+ },
719
+ {
720
+ "epoch": 1.5745173745173746,
721
+ "grad_norm": 0.8718892335891724,
722
+ "learning_rate": 0.00015051055036636465,
723
+ "loss": 1.2345098495483398,
724
+ "step": 1020
725
+ },
726
+ {
727
+ "epoch": 1.58996138996139,
728
+ "grad_norm": 1.2842097282409668,
729
+ "learning_rate": 0.0001479578576813746,
730
+ "loss": 1.753472900390625,
731
+ "step": 1030
732
+ },
733
+ {
734
+ "epoch": 1.6054054054054054,
735
+ "grad_norm": 1.0187697410583496,
736
+ "learning_rate": 0.0001454057564379944,
737
+ "loss": 1.6391351699829102,
738
+ "step": 1040
739
+ },
740
+ {
741
+ "epoch": 1.6208494208494209,
742
+ "grad_norm": 1.0413615703582764,
743
+ "learning_rate": 0.00014285498577122638,
744
+ "loss": 1.7782896041870118,
745
+ "step": 1050
746
+ },
747
+ {
748
+ "epoch": 1.6362934362934363,
749
+ "grad_norm": 1.0046789646148682,
750
+ "learning_rate": 0.00014030628443071385,
751
+ "loss": 1.8010427474975585,
752
+ "step": 1060
753
+ },
754
+ {
755
+ "epoch": 1.6517374517374517,
756
+ "grad_norm": 0.8883569240570068,
757
+ "learning_rate": 0.00013776039056678555,
758
+ "loss": 1.575053882598877,
759
+ "step": 1070
760
+ },
761
+ {
762
+ "epoch": 1.667181467181467,
763
+ "grad_norm": 1.074205756187439,
764
+ "learning_rate": 0.0001352180415166737,
765
+ "loss": 1.6065851211547852,
766
+ "step": 1080
767
+ },
768
+ {
769
+ "epoch": 1.6826254826254825,
770
+ "grad_norm": 0.9384350180625916,
771
+ "learning_rate": 0.00013267997359096804,
772
+ "loss": 1.464041042327881,
773
+ "step": 1090
774
+ },
775
+ {
776
+ "epoch": 1.698069498069498,
777
+ "grad_norm": 1.0514397621154785,
778
+ "learning_rate": 0.00013014692186036662,
779
+ "loss": 1.5748456954956054,
780
+ "step": 1100
781
+ },
782
+ {
783
+ "epoch": 1.7135135135135136,
784
+ "grad_norm": 1.2348086833953857,
785
+ "learning_rate": 0.0001276196199427861,
786
+ "loss": 1.709708023071289,
787
+ "step": 1110
788
+ },
789
+ {
790
+ "epoch": 1.728957528957529,
791
+ "grad_norm": 1.117504358291626,
792
+ "learning_rate": 0.00012509879979089242,
793
+ "loss": 1.7617485046386718,
794
+ "step": 1120
795
+ },
796
+ {
797
+ "epoch": 1.7444015444015444,
798
+ "grad_norm": 0.8500325679779053,
799
+ "learning_rate": 0.0001225851914801143,
800
+ "loss": 1.5750893592834472,
801
+ "step": 1130
802
+ },
803
+ {
804
+ "epoch": 1.7598455598455598,
805
+ "grad_norm": 0.8368387222290039,
806
+ "learning_rate": 0.00012007952299719986,
807
+ "loss": 1.6241008758544921,
808
+ "step": 1140
809
+ },
810
+ {
811
+ "epoch": 1.7752895752895754,
812
+ "grad_norm": 1.2200509309768677,
813
+ "learning_rate": 0.00011758252002937834,
814
+ "loss": 1.4780939102172852,
815
+ "step": 1150
816
+ },
817
+ {
818
+ "epoch": 1.7907335907335908,
819
+ "grad_norm": 0.8207224011421204,
820
+ "learning_rate": 0.00011509490575418814,
821
+ "loss": 1.6319391250610351,
822
+ "step": 1160
823
+ },
824
+ {
825
+ "epoch": 1.8061776061776063,
826
+ "grad_norm": 1.4380273818969727,
827
+ "learning_rate": 0.00011261740063003128,
828
+ "loss": 1.4929610252380372,
829
+ "step": 1170
830
+ },
831
+ {
832
+ "epoch": 1.8216216216216217,
833
+ "grad_norm": 0.9477491974830627,
834
+ "learning_rate": 0.00011015072218751532,
835
+ "loss": 1.594242763519287,
836
+ "step": 1180
837
+ },
838
+ {
839
+ "epoch": 1.837065637065637,
840
+ "grad_norm": 0.966899573802948,
841
+ "learning_rate": 0.00010769558482164385,
842
+ "loss": 1.6516223907470704,
843
+ "step": 1190
844
+ },
845
+ {
846
+ "epoch": 1.8525096525096525,
847
+ "grad_norm": 1.068708896636963,
848
+ "learning_rate": 0.00010525269958491437,
849
+ "loss": 1.6268886566162108,
850
+ "step": 1200
851
+ },
852
+ {
853
+ "epoch": 1.867953667953668,
854
+ "grad_norm": 0.8693376779556274,
855
+ "learning_rate": 0.00010282277398138458,
856
+ "loss": 1.393889808654785,
857
+ "step": 1210
858
+ },
859
+ {
860
+ "epoch": 1.8833976833976833,
861
+ "grad_norm": 0.8814224600791931,
862
+ "learning_rate": 0.00010040651176176646,
863
+ "loss": 1.5280723571777344,
864
+ "step": 1220
865
+ },
866
+ {
867
+ "epoch": 1.8988416988416987,
868
+ "grad_norm": 0.7888350486755371,
869
+ "learning_rate": 9.800461271960711e-05,
870
+ "loss": 1.6518722534179688,
871
+ "step": 1230
872
+ },
873
+ {
874
+ "epoch": 1.9142857142857141,
875
+ "grad_norm": 1.0544885396957397,
876
+ "learning_rate": 9.56177724886158e-05,
877
+ "loss": 1.3362659454345702,
878
+ "step": 1240
879
+ },
880
+ {
881
+ "epoch": 1.9297297297297298,
882
+ "grad_norm": 0.8018820285797119,
883
+ "learning_rate": 9.324668234119587e-05,
884
+ "loss": 1.2466923713684082,
885
+ "step": 1250
886
+ },
887
+ {
888
+ "epoch": 1.9451737451737452,
889
+ "grad_norm": 0.9429293274879456,
890
+ "learning_rate": 9.08920289882396e-05,
891
+ "loss": 1.402803611755371,
892
+ "step": 1260
893
+ },
894
+ {
895
+ "epoch": 1.9606177606177606,
896
+ "grad_norm": 1.095495343208313,
897
+ "learning_rate": 8.855449438024415e-05,
898
+ "loss": 1.6724166870117188,
899
+ "step": 1270
900
+ },
901
+ {
902
+ "epoch": 1.976061776061776,
903
+ "grad_norm": 1.1005257368087769,
904
+ "learning_rate": 8.62347555098064e-05,
905
+ "loss": 1.6115205764770508,
906
+ "step": 1280
907
+ },
908
+ {
909
+ "epoch": 1.9915057915057917,
910
+ "grad_norm": 0.8671514987945557,
911
+ "learning_rate": 8.39334842155536e-05,
912
+ "loss": 1.5330801010131836,
913
+ "step": 1290
914
+ },
915
+ {
916
+ "epoch": 2.006177606177606,
917
+ "grad_norm": 1.1035128831863403,
918
+ "learning_rate": 8.165134698756636e-05,
919
+ "loss": 1.4652727127075196,
920
+ "step": 1300
921
+ },
922
+ {
923
+ "epoch": 2.0216216216216214,
924
+ "grad_norm": 0.9234292507171631,
925
+ "learning_rate": 7.938900477435141e-05,
926
+ "loss": 1.5485057830810547,
927
+ "step": 1310
928
+ },
929
+ {
930
+ "epoch": 2.0370656370656373,
931
+ "grad_norm": 1.0101984739303589,
932
+ "learning_rate": 7.714711279141858e-05,
933
+ "loss": 1.4976489067077636,
934
+ "step": 1320
935
+ },
936
+ {
937
+ "epoch": 2.0525096525096527,
938
+ "grad_norm": 1.2837384939193726,
939
+ "learning_rate": 7.492632033151853e-05,
940
+ "loss": 1.546705436706543,
941
+ "step": 1330
942
+ },
943
+ {
944
+ "epoch": 2.067953667953668,
945
+ "grad_norm": 1.346710205078125,
946
+ "learning_rate": 7.272727057659582e-05,
947
+ "loss": 1.6582311630249023,
948
+ "step": 1340
949
+ },
950
+ {
951
+ "epoch": 2.0833976833976835,
952
+ "grad_norm": 0.949862003326416,
953
+ "learning_rate": 7.05506004115116e-05,
954
+ "loss": 1.4894072532653808,
955
+ "step": 1350
956
+ },
957
+ {
958
+ "epoch": 2.098841698841699,
959
+ "grad_norm": 0.7249529957771301,
960
+ "learning_rate": 6.839694023959015e-05,
961
+ "loss": 1.2924116134643555,
962
+ "step": 1360
963
+ },
964
+ {
965
+ "epoch": 2.1142857142857143,
966
+ "grad_norm": 0.762852132320404,
967
+ "learning_rate": 6.626691380004272e-05,
968
+ "loss": 1.4510489463806153,
969
+ "step": 1370
970
+ },
971
+ {
972
+ "epoch": 2.1297297297297297,
973
+ "grad_norm": 1.1951225996017456,
974
+ "learning_rate": 6.416113798732117e-05,
975
+ "loss": 1.5453474998474122,
976
+ "step": 1380
977
+ },
978
+ {
979
+ "epoch": 2.145173745173745,
980
+ "grad_norm": 0.9965503215789795,
981
+ "learning_rate": 6.208022267245422e-05,
982
+ "loss": 1.6365432739257812,
983
+ "step": 1390
984
+ },
985
+ {
986
+ "epoch": 2.1606177606177606,
987
+ "grad_norm": 1.0295554399490356,
988
+ "learning_rate": 6.0024770526417444e-05,
989
+ "loss": 1.5544926643371582,
990
+ "step": 1400
991
+ },
992
+ {
993
+ "epoch": 2.176061776061776,
994
+ "grad_norm": 1.002946376800537,
995
+ "learning_rate": 5.7995376845589107e-05,
996
+ "loss": 1.3583968162536622,
997
+ "step": 1410
998
+ },
999
+ {
1000
+ "epoch": 2.1915057915057914,
1001
+ "grad_norm": 0.992790937423706,
1002
+ "learning_rate": 5.5992629379341296e-05,
1003
+ "loss": 1.6194375991821288,
1004
+ "step": 1420
1005
+ },
1006
+ {
1007
+ "epoch": 2.206949806949807,
1008
+ "grad_norm": 1.195660948753357,
1009
+ "learning_rate": 5.401710815981702e-05,
1010
+ "loss": 1.606805419921875,
1011
+ "step": 1430
1012
+ },
1013
+ {
1014
+ "epoch": 2.222393822393822,
1015
+ "grad_norm": 0.782896876335144,
1016
+ "learning_rate": 5.2069385333942406e-05,
1017
+ "loss": 1.394899272918701,
1018
+ "step": 1440
1019
+ },
1020
+ {
1021
+ "epoch": 2.237837837837838,
1022
+ "grad_norm": 0.7933727502822876,
1023
+ "learning_rate": 5.015002499772246e-05,
1024
+ "loss": 1.5172779083251953,
1025
+ "step": 1450
1026
+ },
1027
+ {
1028
+ "epoch": 2.2532818532818535,
1029
+ "grad_norm": 1.006704568862915,
1030
+ "learning_rate": 4.8259583032868485e-05,
1031
+ "loss": 1.427571964263916,
1032
+ "step": 1460
1033
+ },
1034
+ {
1035
+ "epoch": 2.268725868725869,
1036
+ "grad_norm": 0.7473268508911133,
1037
+ "learning_rate": 4.639860694580485e-05,
1038
+ "loss": 1.4064525604248046,
1039
+ "step": 1470
1040
+ },
1041
+ {
1042
+ "epoch": 2.2841698841698843,
1043
+ "grad_norm": 0.9260905981063843,
1044
+ "learning_rate": 4.456763570910117e-05,
1045
+ "loss": 1.6425491333007813,
1046
+ "step": 1480
1047
+ },
1048
+ {
1049
+ "epoch": 2.2996138996138997,
1050
+ "grad_norm": 0.7761160731315613,
1051
+ "learning_rate": 4.2767199605375643e-05,
1052
+ "loss": 1.6033275604248047,
1053
+ "step": 1490
1054
+ },
1055
+ {
1056
+ "epoch": 2.315057915057915,
1057
+ "grad_norm": 0.9308245182037354,
1058
+ "learning_rate": 4.099782007371594e-05,
1059
+ "loss": 1.3362360954284669,
1060
+ "step": 1500
1061
+ },
1062
+ {
1063
+ "epoch": 2.3305019305019306,
1064
+ "grad_norm": 0.8437192440032959,
1065
+ "learning_rate": 3.926000955866083e-05,
1066
+ "loss": 1.4915573120117187,
1067
+ "step": 1510
1068
+ },
1069
+ {
1070
+ "epoch": 2.345945945945946,
1071
+ "grad_norm": 0.9186447262763977,
1072
+ "learning_rate": 3.755427136178689e-05,
1073
+ "loss": 1.6013120651245116,
1074
+ "step": 1520
1075
+ },
1076
+ {
1077
+ "epoch": 2.3613899613899614,
1078
+ "grad_norm": 0.9576182961463928,
1079
+ "learning_rate": 3.588109949594315e-05,
1080
+ "loss": 1.5789580345153809,
1081
+ "step": 1530
1082
+ },
1083
+ {
1084
+ "epoch": 2.376833976833977,
1085
+ "grad_norm": 0.981865406036377,
1086
+ "learning_rate": 3.424097854217616e-05,
1087
+ "loss": 1.465921974182129,
1088
+ "step": 1540
1089
+ },
1090
+ {
1091
+ "epoch": 2.392277992277992,
1092
+ "grad_norm": 1.1132752895355225,
1093
+ "learning_rate": 3.263438350938614e-05,
1094
+ "loss": 1.5865941047668457,
1095
+ "step": 1550
1096
+ },
1097
+ {
1098
+ "epoch": 2.4077220077220076,
1099
+ "grad_norm": 0.7558214664459229,
1100
+ "learning_rate": 3.106177969675619e-05,
1101
+ "loss": 1.4505680084228516,
1102
+ "step": 1560
1103
+ },
1104
+ {
1105
+ "epoch": 2.423166023166023,
1106
+ "grad_norm": 0.902375340461731,
1107
+ "learning_rate": 2.952362255899287e-05,
1108
+ "loss": 1.4275928497314454,
1109
+ "step": 1570
1110
+ },
1111
+ {
1112
+ "epoch": 2.4386100386100384,
1113
+ "grad_norm": 1.0461152791976929,
1114
+ "learning_rate": 2.8020357574418283e-05,
1115
+ "loss": 1.555190372467041,
1116
+ "step": 1580
1117
+ },
1118
+ {
1119
+ "epoch": 2.454054054054054,
1120
+ "grad_norm": 0.8644481301307678,
1121
+ "learning_rate": 2.6552420115951544e-05,
1122
+ "loss": 1.2840497970581055,
1123
+ "step": 1590
1124
+ },
1125
+ {
1126
+ "epoch": 2.4694980694980693,
1127
+ "grad_norm": 0.8659661412239075,
1128
+ "learning_rate": 2.5120235325016685e-05,
1129
+ "loss": 1.7860893249511718,
1130
+ "step": 1600
1131
+ },
1132
+ {
1133
+ "epoch": 2.484942084942085,
1134
+ "grad_norm": 1.214887261390686,
1135
+ "learning_rate": 2.3724217988414146e-05,
1136
+ "loss": 1.7073328018188476,
1137
+ "step": 1610
1138
+ },
1139
+ {
1140
+ "epoch": 2.5003861003861005,
1141
+ "grad_norm": 0.928382933139801,
1142
+ "learning_rate": 2.236477241819067e-05,
1143
+ "loss": 1.5463509559631348,
1144
+ "step": 1620
1145
+ },
1146
+ {
1147
+ "epoch": 2.515830115830116,
1148
+ "grad_norm": 1.0704848766326904,
1149
+ "learning_rate": 2.1042292334543616e-05,
1150
+ "loss": 1.4896145820617677,
1151
+ "step": 1630
1152
+ },
1153
+ {
1154
+ "epoch": 2.5312741312741314,
1155
+ "grad_norm": 1.0650928020477295,
1156
+ "learning_rate": 1.975716075179203e-05,
1157
+ "loss": 1.8084712982177735,
1158
+ "step": 1640
1159
+ },
1160
+ {
1161
+ "epoch": 2.546718146718147,
1162
+ "grad_norm": 1.2896536588668823,
1163
+ "learning_rate": 1.8509749867448787e-05,
1164
+ "loss": 1.811726188659668,
1165
+ "step": 1650
1166
+ },
1167
+ {
1168
+ "epoch": 2.562162162162162,
1169
+ "grad_norm": 0.8543244004249573,
1170
+ "learning_rate": 1.7300420954425608e-05,
1171
+ "loss": 1.4926864624023437,
1172
+ "step": 1660
1173
+ },
1174
+ {
1175
+ "epoch": 2.5776061776061776,
1176
+ "grad_norm": 0.9594419002532959,
1177
+ "learning_rate": 1.6129524256401655e-05,
1178
+ "loss": 1.376392936706543,
1179
+ "step": 1670
1180
+ },
1181
+ {
1182
+ "epoch": 2.593050193050193,
1183
+ "grad_norm": 1.1329569816589355,
1184
+ "learning_rate": 1.499739888638668e-05,
1185
+ "loss": 1.4569954872131348,
1186
+ "step": 1680
1187
+ },
1188
+ {
1189
+ "epoch": 2.6084942084942084,
1190
+ "grad_norm": 0.9847956895828247,
1191
+ "learning_rate": 1.3904372728507651e-05,
1192
+ "loss": 1.6048946380615234,
1193
+ "step": 1690
1194
+ },
1195
+ {
1196
+ "epoch": 2.623938223938224,
1197
+ "grad_norm": 0.8900959491729736,
1198
+ "learning_rate": 1.2850762343047622e-05,
1199
+ "loss": 1.6340343475341796,
1200
+ "step": 1700
1201
+ },
1202
+ {
1203
+ "epoch": 2.6393822393822393,
1204
+ "grad_norm": 0.885271430015564,
1205
+ "learning_rate": 1.183687287476397e-05,
1206
+ "loss": 1.6251859664916992,
1207
+ "step": 1710
1208
+ },
1209
+ {
1210
+ "epoch": 2.6548262548262547,
1211
+ "grad_norm": 1.1215860843658447,
1212
+ "learning_rate": 1.0862997964513093e-05,
1213
+ "loss": 1.4557311058044433,
1214
+ "step": 1720
1215
+ },
1216
+ {
1217
+ "epoch": 2.6702702702702705,
1218
+ "grad_norm": 0.9503166079521179,
1219
+ "learning_rate": 9.929419664206534e-06,
1220
+ "loss": 1.5105344772338867,
1221
+ "step": 1730
1222
+ },
1223
+ {
1224
+ "epoch": 2.685714285714286,
1225
+ "grad_norm": 1.2249915599822998,
1226
+ "learning_rate": 9.036408355123709e-06,
1227
+ "loss": 1.6314336776733398,
1228
+ "step": 1740
1229
+ },
1230
+ {
1231
+ "epoch": 2.7011583011583014,
1232
+ "grad_norm": 1.1309216022491455,
1233
+ "learning_rate": 8.184222669604462e-06,
1234
+ "loss": 1.8404197692871094,
1235
+ "step": 1750
1236
+ },
1237
+ {
1238
+ "epoch": 2.7166023166023168,
1239
+ "grad_norm": 0.8724149465560913,
1240
+ "learning_rate": 7.373109416144518e-06,
1241
+ "loss": 1.5153246879577638,
1242
+ "step": 1760
1243
+ },
1244
+ {
1245
+ "epoch": 2.732046332046332,
1246
+ "grad_norm": 0.9593127369880676,
1247
+ "learning_rate": 6.603303507915125e-06,
1248
+ "loss": 1.5859388351440429,
1249
+ "step": 1770
1250
+ },
1251
+ {
1252
+ "epoch": 2.7474903474903476,
1253
+ "grad_norm": 0.8905647397041321,
1254
+ "learning_rate": 5.875027894728162e-06,
1255
+ "loss": 1.6143461227416993,
1256
+ "step": 1780
1257
+ },
1258
+ {
1259
+ "epoch": 2.762934362934363,
1260
+ "grad_norm": 1.177042841911316,
1261
+ "learning_rate": 5.18849349846554e-06,
1262
+ "loss": 1.2935724258422852,
1263
+ "step": 1790
1264
+ },
1265
+ {
1266
+ "epoch": 2.7783783783783784,
1267
+ "grad_norm": 0.8054224252700806,
1268
+ "learning_rate": 4.54389915199248e-06,
1269
+ "loss": 1.6330890655517578,
1270
+ "step": 1800
1271
+ },
1272
+ {
1273
+ "epoch": 2.793822393822394,
1274
+ "grad_norm": 0.9084711670875549,
1275
+ "learning_rate": 3.941431541572016e-06,
1276
+ "loss": 1.260177993774414,
1277
+ "step": 1810
1278
+ },
1279
+ {
1280
+ "epoch": 2.8092664092664092,
1281
+ "grad_norm": 1.0490775108337402,
1282
+ "learning_rate": 3.381265152797069e-06,
1283
+ "loss": 1.851993942260742,
1284
+ "step": 1820
1285
+ },
1286
+ {
1287
+ "epoch": 2.8247104247104247,
1288
+ "grad_norm": 0.9670169949531555,
1289
+ "learning_rate": 2.8635622200563647e-06,
1290
+ "loss": 1.5050697326660156,
1291
+ "step": 1830
1292
+ },
1293
+ {
1294
+ "epoch": 2.84015444015444,
1295
+ "grad_norm": 1.1649209260940552,
1296
+ "learning_rate": 2.3884726795483422e-06,
1297
+ "loss": 1.6184980392456054,
1298
+ "step": 1840
1299
+ },
1300
+ {
1301
+ "epoch": 2.8555984555984555,
1302
+ "grad_norm": 1.1266100406646729,
1303
+ "learning_rate": 1.956134125856895e-06,
1304
+ "loss": 1.5376657485961913,
1305
+ "step": 1850
1306
+ },
1307
+ {
1308
+ "epoch": 2.871042471042471,
1309
+ "grad_norm": 0.7636029720306396,
1310
+ "learning_rate": 1.5666717721015631e-06,
1311
+ "loss": 1.404861831665039,
1312
+ "step": 1860
1313
+ },
1314
+ {
1315
+ "epoch": 2.8864864864864863,
1316
+ "grad_norm": 1.0238325595855713,
1317
+ "learning_rate": 1.2201984136733732e-06,
1318
+ "loss": 1.456043815612793,
1319
+ "step": 1870
1320
+ },
1321
+ {
1322
+ "epoch": 2.9019305019305017,
1323
+ "grad_norm": 1.040889859199524,
1324
+ "learning_rate": 9.16814395567389e-07,
1325
+ "loss": 1.609665298461914,
1326
+ "step": 1880
1327
+ },
1328
+ {
1329
+ "epoch": 2.917374517374517,
1330
+ "grad_norm": 1.006292462348938,
1331
+ "learning_rate": 6.566075833209228e-07,
1332
+ "loss": 1.458909034729004,
1333
+ "step": 1890
1334
+ },
1335
+ {
1336
+ "epoch": 2.9328185328185326,
1337
+ "grad_norm": 1.2026900053024292,
1338
+ "learning_rate": 4.3965333756602604e-07,
1339
+ "loss": 1.3858765602111816,
1340
+ "step": 1900
1341
+ },
1342
+ {
1343
+ "epoch": 2.9482625482625484,
1344
+ "grad_norm": 0.7086095809936523,
1345
+ "learning_rate": 2.660144922037477e-07,
1346
+ "loss": 1.5188705444335937,
1347
+ "step": 1910
1348
+ },
1349
+ {
1350
+ "epoch": 2.963706563706564,
1351
+ "grad_norm": 0.9145845770835876,
1352
+ "learning_rate": 1.357413362062576e-07,
1353
+ "loss": 1.8552032470703126,
1354
+ "step": 1920
1355
+ },
1356
+ {
1357
+ "epoch": 2.9791505791505792,
1358
+ "grad_norm": 0.9814688563346863,
1359
+ "learning_rate": 4.887159905224702e-08,
1360
+ "loss": 1.5360636711120605,
1361
+ "step": 1930
1362
+ },
1363
+ {
1364
+ "epoch": 2.9945945945945946,
1365
+ "grad_norm": 0.9121321439743042,
1366
+ "learning_rate": 5.430439799769537e-09,
1367
+ "loss": 1.291543197631836,
1368
+ "step": 1940
1369
+ }
1370
+ ],
1371
+ "logging_steps": 10,
1372
+ "max_steps": 1944,
1373
+ "num_input_tokens_seen": 0,
1374
+ "num_train_epochs": 3,
1375
+ "save_steps": 500,
1376
+ "stateful_callbacks": {
1377
+ "TrainerControl": {
1378
+ "args": {
1379
+ "should_epoch_stop": false,
1380
+ "should_evaluate": false,
1381
+ "should_log": false,
1382
+ "should_save": true,
1383
+ "should_training_stop": true
1384
+ },
1385
+ "attributes": {}
1386
+ }
1387
+ },
1388
+ "total_flos": 1.711146609672192e+16,
1389
+ "train_batch_size": 4,
1390
+ "trial_name": null,
1391
+ "trial_params": null
1392
+ }
checkpoint-1944/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7570db415703be7995e3d0ae838659cb434c102b69b2fd0ea62841d5e7025e78
3
+ size 5265
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d429fe753aea0ff87a94e86396d5508abb0d1d0e1f7a0d47c787ff72e0bf2691
3
+ size 11422170
tokenizer_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": false,
24
+ "local_files_only": false,
25
+ "model_max_length": 32768,
26
+ "pad_token": "<|endoftext|>",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3ad4a31930d967cd0d9fd5ef32dc371f074554d6506080177824a755dfbe92e9
3
- size 5201
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7570db415703be7995e3d0ae838659cb434c102b69b2fd0ea62841d5e7025e78
3
+ size 5265