azdin shr commited on
Commit
35ef0c6
·
verified ·
1 Parent(s): 0507a67

Upload Qwen2-VL weather satellite DoRA adapter

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 +7 -0
  2. README.md +62 -0
  3. adapter_config.json +38 -0
  4. adapter_model.safetensors +3 -0
  5. added_tokens.json +16 -0
  6. chat_template.jinja +7 -0
  7. checkpoint-100/README.md +209 -0
  8. checkpoint-100/adapter_config.json +38 -0
  9. checkpoint-100/adapter_model.safetensors +3 -0
  10. checkpoint-100/added_tokens.json +16 -0
  11. checkpoint-100/chat_template.jinja +7 -0
  12. checkpoint-100/merges.txt +0 -0
  13. checkpoint-100/optimizer.pt +3 -0
  14. checkpoint-100/rng_state.pth +3 -0
  15. checkpoint-100/scheduler.pt +3 -0
  16. checkpoint-100/special_tokens_map.json +31 -0
  17. checkpoint-100/tokenizer.json +3 -0
  18. checkpoint-100/tokenizer_config.json +143 -0
  19. checkpoint-100/trainer_state.json +164 -0
  20. checkpoint-100/training_args.bin +3 -0
  21. checkpoint-100/vocab.json +0 -0
  22. checkpoint-150/README.md +209 -0
  23. checkpoint-150/adapter_config.json +38 -0
  24. checkpoint-150/adapter_model.safetensors +3 -0
  25. checkpoint-150/added_tokens.json +16 -0
  26. checkpoint-150/chat_template.jinja +7 -0
  27. checkpoint-150/merges.txt +0 -0
  28. checkpoint-150/optimizer.pt +3 -0
  29. checkpoint-150/rng_state.pth +3 -0
  30. checkpoint-150/scheduler.pt +3 -0
  31. checkpoint-150/special_tokens_map.json +31 -0
  32. checkpoint-150/tokenizer.json +3 -0
  33. checkpoint-150/tokenizer_config.json +143 -0
  34. checkpoint-150/trainer_state.json +229 -0
  35. checkpoint-150/training_args.bin +3 -0
  36. checkpoint-150/vocab.json +0 -0
  37. checkpoint-200/README.md +209 -0
  38. checkpoint-200/adapter_config.json +38 -0
  39. checkpoint-200/adapter_model.safetensors +3 -0
  40. checkpoint-200/added_tokens.json +16 -0
  41. checkpoint-200/chat_template.jinja +7 -0
  42. checkpoint-200/merges.txt +0 -0
  43. checkpoint-200/optimizer.pt +3 -0
  44. checkpoint-200/rng_state.pth +3 -0
  45. checkpoint-200/scheduler.pt +3 -0
  46. checkpoint-200/special_tokens_map.json +31 -0
  47. checkpoint-200/tokenizer.json +3 -0
  48. checkpoint-200/tokenizer_config.json +143 -0
  49. checkpoint-200/trainer_state.json +294 -0
  50. checkpoint-200/training_args.bin +3 -0
.gitattributes CHANGED
@@ -33,3 +33,10 @@ 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-100/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-150/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ checkpoint-200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ checkpoint-250/tokenizer.json filter=lfs diff=lfs merge=lfs -text
40
+ checkpoint-294/tokenizer.json filter=lfs diff=lfs merge=lfs -text
41
+ checkpoint-50/tokenizer.json filter=lfs diff=lfs merge=lfs -text
42
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2-VL-7B-Instruct
3
+ library_name: peft
4
+ model_name: dora_weather_model
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen2-VL-7B-Instruct
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ licence: license
12
+ pipeline_tag: text-generation
13
+ ---
14
+
15
+ # Model Card for dora_weather_model
16
+
17
+ This model is a fine-tuned version of [Qwen/Qwen2-VL-7B-Instruct](https://huggingface.co/Qwen/Qwen2-VL-7B-Instruct).
18
+ It has been trained using [TRL](https://github.com/huggingface/trl).
19
+
20
+ ## Quick start
21
+
22
+ ```python
23
+ from transformers import pipeline
24
+
25
+ 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?"
26
+ generator = pipeline("text-generation", model="None", device="cuda")
27
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
28
+ print(output["generated_text"])
29
+ ```
30
+
31
+ ## Training procedure
32
+
33
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/azdinsahir11-university-mohamed-v/qwen2vl-dora-weather/runs/4jvr2049)
34
+
35
+
36
+ This model was trained with SFT.
37
+
38
+ ### Framework versions
39
+
40
+ - PEFT 0.16.0
41
+ - TRL: 0.19.1
42
+ - Transformers: 4.53.2
43
+ - Pytorch: 2.6.0+cu124
44
+ - Datasets: 4.0.0
45
+ - Tokenizers: 0.21.2
46
+
47
+ ## Citations
48
+
49
+
50
+
51
+ Cite TRL as:
52
+
53
+ ```bibtex
54
+ @misc{vonwerra2022trl,
55
+ title = {{TRL: Transformer Reinforcement Learning}},
56
+ 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},
57
+ year = 2020,
58
+ journal = {GitHub repository},
59
+ publisher = {GitHub},
60
+ howpublished = {\url{https://github.com/huggingface/trl}}
61
+ }
62
+ ```
adapter_config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen2-VL-7B-Instruct",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 16,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "k_proj",
30
+ "o_proj",
31
+ "v_proj"
32
+ ],
33
+ "task_type": "CAUSAL_LM",
34
+ "trainable_token_indices": null,
35
+ "use_dora": true,
36
+ "use_qalora": false,
37
+ "use_rslora": true
38
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ae0566adc584bf3f8101d856bbc3bbcdb391abb4e9b4971879f6fee926e0b2a
3
+ size 41338272
added_tokens.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<|box_end|>": 151649,
3
+ "<|box_start|>": 151648,
4
+ "<|endoftext|>": 151643,
5
+ "<|im_end|>": 151645,
6
+ "<|im_start|>": 151644,
7
+ "<|image_pad|>": 151655,
8
+ "<|object_ref_end|>": 151647,
9
+ "<|object_ref_start|>": 151646,
10
+ "<|quad_end|>": 151651,
11
+ "<|quad_start|>": 151650,
12
+ "<|video_pad|>": 151656,
13
+ "<|vision_end|>": 151653,
14
+ "<|vision_pad|>": 151654,
15
+ "<|vision_start|>": 151652
16
+ }
chat_template.jinja ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system
2
+ You are a helpful assistant.<|im_end|>
3
+ {% endif %}<|im_start|>{{ message['role'] }}
4
+ {% if message['content'] is string %}{{ message['content'] }}<|im_end|>
5
+ {% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>
6
+ {% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
7
+ {% endif %}
checkpoint-100/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2-VL-7B-Instruct
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen2-VL-7B-Instruct
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- 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. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ 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).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.16.0
checkpoint-100/adapter_config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen2-VL-7B-Instruct",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 16,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "k_proj",
30
+ "o_proj",
31
+ "v_proj"
32
+ ],
33
+ "task_type": "CAUSAL_LM",
34
+ "trainable_token_indices": null,
35
+ "use_dora": true,
36
+ "use_qalora": false,
37
+ "use_rslora": true
38
+ }
checkpoint-100/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:890f4369a570b5bd11475b67c9d19ea464f8c393e2484aa8608f99a95abed036
3
+ size 41338272
checkpoint-100/added_tokens.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<|box_end|>": 151649,
3
+ "<|box_start|>": 151648,
4
+ "<|endoftext|>": 151643,
5
+ "<|im_end|>": 151645,
6
+ "<|im_start|>": 151644,
7
+ "<|image_pad|>": 151655,
8
+ "<|object_ref_end|>": 151647,
9
+ "<|object_ref_start|>": 151646,
10
+ "<|quad_end|>": 151651,
11
+ "<|quad_start|>": 151650,
12
+ "<|video_pad|>": 151656,
13
+ "<|vision_end|>": 151653,
14
+ "<|vision_pad|>": 151654,
15
+ "<|vision_start|>": 151652
16
+ }
checkpoint-100/chat_template.jinja ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system
2
+ You are a helpful assistant.<|im_end|>
3
+ {% endif %}<|im_start|>{{ message['role'] }}
4
+ {% if message['content'] is string %}{{ message['content'] }}<|im_end|>
5
+ {% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>
6
+ {% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
7
+ {% endif %}
checkpoint-100/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-100/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d35e69e91b29c6193390436df653aedbea546e0ffed119da353ac344163f696
3
+ size 82856258
checkpoint-100/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb249db3ae450805114647bca32d2fe321ec7bb09f3a40ea4e26478fff9cfc7d
3
+ size 14244
checkpoint-100/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9721d5ba1fb05d41f214a5bebb8206b88b746e805209d13e654bce65e0ffa08
3
+ size 1064
checkpoint-100/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
checkpoint-100/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88a3a6fcb80132f76da8aa40cdc3fccd7e5d8468ef15421f5b0c2715e85217d2
3
+ size 11420538
checkpoint-100/tokenizer_config.json ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "151643": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "151644": {
13
+ "content": "<|im_start|>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "151645": {
21
+ "content": "<|im_end|>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "151646": {
29
+ "content": "<|object_ref_start|>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "151647": {
37
+ "content": "<|object_ref_end|>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ },
44
+ "151648": {
45
+ "content": "<|box_start|>",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": true
51
+ },
52
+ "151649": {
53
+ "content": "<|box_end|>",
54
+ "lstrip": false,
55
+ "normalized": false,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": true
59
+ },
60
+ "151650": {
61
+ "content": "<|quad_start|>",
62
+ "lstrip": false,
63
+ "normalized": false,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": true
67
+ },
68
+ "151651": {
69
+ "content": "<|quad_end|>",
70
+ "lstrip": false,
71
+ "normalized": false,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": true
75
+ },
76
+ "151652": {
77
+ "content": "<|vision_start|>",
78
+ "lstrip": false,
79
+ "normalized": false,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": true
83
+ },
84
+ "151653": {
85
+ "content": "<|vision_end|>",
86
+ "lstrip": false,
87
+ "normalized": false,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": true
91
+ },
92
+ "151654": {
93
+ "content": "<|vision_pad|>",
94
+ "lstrip": false,
95
+ "normalized": false,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": true
99
+ },
100
+ "151655": {
101
+ "content": "<|image_pad|>",
102
+ "lstrip": false,
103
+ "normalized": false,
104
+ "rstrip": false,
105
+ "single_word": false,
106
+ "special": true
107
+ },
108
+ "151656": {
109
+ "content": "<|video_pad|>",
110
+ "lstrip": false,
111
+ "normalized": false,
112
+ "rstrip": false,
113
+ "single_word": false,
114
+ "special": true
115
+ }
116
+ },
117
+ "additional_special_tokens": [
118
+ "<|im_start|>",
119
+ "<|im_end|>",
120
+ "<|object_ref_start|>",
121
+ "<|object_ref_end|>",
122
+ "<|box_start|>",
123
+ "<|box_end|>",
124
+ "<|quad_start|>",
125
+ "<|quad_end|>",
126
+ "<|vision_start|>",
127
+ "<|vision_end|>",
128
+ "<|vision_pad|>",
129
+ "<|image_pad|>",
130
+ "<|video_pad|>"
131
+ ],
132
+ "bos_token": null,
133
+ "clean_up_tokenization_spaces": false,
134
+ "eos_token": "<|im_end|>",
135
+ "errors": "replace",
136
+ "extra_special_tokens": {},
137
+ "model_max_length": 32768,
138
+ "pad_token": "<|endoftext|>",
139
+ "padding_side": "left",
140
+ "split_special_tokens": false,
141
+ "tokenizer_class": "Qwen2Tokenizer",
142
+ "unk_token": null
143
+ }
checkpoint-100/trainer_state.json ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 100,
3
+ "best_metric": 0.22464126348495483,
4
+ "best_model_checkpoint": "./dora_weather_model/checkpoint-100",
5
+ "epoch": 1.0205655526992288,
6
+ "eval_steps": 25,
7
+ "global_step": 100,
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.10282776349614396,
14
+ "grad_norm": 18.158021926879883,
15
+ "learning_rate": 0.0001,
16
+ "loss": 12.1979,
17
+ "mean_token_accuracy": 0.615905399620533,
18
+ "num_tokens": 171254.0,
19
+ "step": 10
20
+ },
21
+ {
22
+ "epoch": 0.20565552699228792,
23
+ "grad_norm": 7.034078598022461,
24
+ "learning_rate": 0.0001,
25
+ "loss": 4.2501,
26
+ "mean_token_accuracy": 0.8467875950038433,
27
+ "num_tokens": 342816.0,
28
+ "step": 20
29
+ },
30
+ {
31
+ "epoch": 0.2570694087403599,
32
+ "eval_loss": 0.3218275308609009,
33
+ "eval_mean_token_accuracy": 0.9006080529628656,
34
+ "eval_num_tokens": 428469.0,
35
+ "eval_runtime": 133.9929,
36
+ "eval_samples_per_second": 1.455,
37
+ "eval_steps_per_second": 1.455,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.30848329048843187,
42
+ "grad_norm": 7.133749008178711,
43
+ "learning_rate": 0.0001,
44
+ "loss": 2.5798,
45
+ "mean_token_accuracy": 0.8995884403586387,
46
+ "num_tokens": 514067.0,
47
+ "step": 30
48
+ },
49
+ {
50
+ "epoch": 0.41131105398457585,
51
+ "grad_norm": 5.986148834228516,
52
+ "learning_rate": 0.0001,
53
+ "loss": 2.2895,
54
+ "mean_token_accuracy": 0.9077658534049988,
55
+ "num_tokens": 685570.0,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.5141388174807198,
60
+ "grad_norm": 5.834242343902588,
61
+ "learning_rate": 0.0001,
62
+ "loss": 2.0929,
63
+ "mean_token_accuracy": 0.9145211182534695,
64
+ "num_tokens": 856740.0,
65
+ "step": 50
66
+ },
67
+ {
68
+ "epoch": 0.5141388174807198,
69
+ "eval_loss": 0.25579357147216797,
70
+ "eval_mean_token_accuracy": 0.9177517074805039,
71
+ "eval_num_tokens": 856740.0,
72
+ "eval_runtime": 133.8597,
73
+ "eval_samples_per_second": 1.457,
74
+ "eval_steps_per_second": 1.457,
75
+ "step": 50
76
+ },
77
+ {
78
+ "epoch": 0.6169665809768637,
79
+ "grad_norm": 5.7353739738464355,
80
+ "learning_rate": 0.0001,
81
+ "loss": 2.1152,
82
+ "mean_token_accuracy": 0.9142912536859512,
83
+ "num_tokens": 1028000.0,
84
+ "step": 60
85
+ },
86
+ {
87
+ "epoch": 0.7197943444730077,
88
+ "grad_norm": 5.386626720428467,
89
+ "learning_rate": 0.0001,
90
+ "loss": 1.9346,
91
+ "mean_token_accuracy": 0.9206269770860672,
92
+ "num_tokens": 1199650.0,
93
+ "step": 70
94
+ },
95
+ {
96
+ "epoch": 0.7712082262210797,
97
+ "eval_loss": 0.23230257630348206,
98
+ "eval_mean_token_accuracy": 0.9229834336500902,
99
+ "eval_num_tokens": 1285076.0,
100
+ "eval_runtime": 133.8858,
101
+ "eval_samples_per_second": 1.456,
102
+ "eval_steps_per_second": 1.456,
103
+ "step": 75
104
+ },
105
+ {
106
+ "epoch": 0.8226221079691517,
107
+ "grad_norm": 5.34901237487793,
108
+ "learning_rate": 0.0001,
109
+ "loss": 1.8041,
110
+ "mean_token_accuracy": 0.9239558480679989,
111
+ "num_tokens": 1370524.0,
112
+ "step": 80
113
+ },
114
+ {
115
+ "epoch": 0.9254498714652957,
116
+ "grad_norm": 5.087592601776123,
117
+ "learning_rate": 0.0001,
118
+ "loss": 1.8039,
119
+ "mean_token_accuracy": 0.9247349828481675,
120
+ "num_tokens": 1542159.0,
121
+ "step": 90
122
+ },
123
+ {
124
+ "epoch": 1.0205655526992288,
125
+ "grad_norm": 5.261311054229736,
126
+ "learning_rate": 0.0001,
127
+ "loss": 1.6074,
128
+ "mean_token_accuracy": 0.9265569303486798,
129
+ "num_tokens": 1700574.0,
130
+ "step": 100
131
+ },
132
+ {
133
+ "epoch": 1.0205655526992288,
134
+ "eval_loss": 0.22464126348495483,
135
+ "eval_mean_token_accuracy": 0.9246747863598359,
136
+ "eval_num_tokens": 1700574.0,
137
+ "eval_runtime": 133.7804,
138
+ "eval_samples_per_second": 1.458,
139
+ "eval_steps_per_second": 1.458,
140
+ "step": 100
141
+ }
142
+ ],
143
+ "logging_steps": 10,
144
+ "max_steps": 294,
145
+ "num_input_tokens_seen": 0,
146
+ "num_train_epochs": 3,
147
+ "save_steps": 50,
148
+ "stateful_callbacks": {
149
+ "TrainerControl": {
150
+ "args": {
151
+ "should_epoch_stop": false,
152
+ "should_evaluate": false,
153
+ "should_log": false,
154
+ "should_save": true,
155
+ "should_training_stop": false
156
+ },
157
+ "attributes": {}
158
+ }
159
+ },
160
+ "total_flos": 7.914505570735104e+16,
161
+ "train_batch_size": 1,
162
+ "trial_name": null,
163
+ "trial_params": null
164
+ }
checkpoint-100/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27e3dc8a742175f8c36087d59cc03fe76f544e4a592cf9bbf2020761587cf8e8
3
+ size 5752
checkpoint-100/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-150/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2-VL-7B-Instruct
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen2-VL-7B-Instruct
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- 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. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ 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).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.16.0
checkpoint-150/adapter_config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen2-VL-7B-Instruct",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 16,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "k_proj",
30
+ "o_proj",
31
+ "v_proj"
32
+ ],
33
+ "task_type": "CAUSAL_LM",
34
+ "trainable_token_indices": null,
35
+ "use_dora": true,
36
+ "use_qalora": false,
37
+ "use_rslora": true
38
+ }
checkpoint-150/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afa6f62cc9b62b0d620a283bea8f19a37252b0c595824057503bb1baf3f0d0fa
3
+ size 41338272
checkpoint-150/added_tokens.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<|box_end|>": 151649,
3
+ "<|box_start|>": 151648,
4
+ "<|endoftext|>": 151643,
5
+ "<|im_end|>": 151645,
6
+ "<|im_start|>": 151644,
7
+ "<|image_pad|>": 151655,
8
+ "<|object_ref_end|>": 151647,
9
+ "<|object_ref_start|>": 151646,
10
+ "<|quad_end|>": 151651,
11
+ "<|quad_start|>": 151650,
12
+ "<|video_pad|>": 151656,
13
+ "<|vision_end|>": 151653,
14
+ "<|vision_pad|>": 151654,
15
+ "<|vision_start|>": 151652
16
+ }
checkpoint-150/chat_template.jinja ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system
2
+ You are a helpful assistant.<|im_end|>
3
+ {% endif %}<|im_start|>{{ message['role'] }}
4
+ {% if message['content'] is string %}{{ message['content'] }}<|im_end|>
5
+ {% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>
6
+ {% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
7
+ {% endif %}
checkpoint-150/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-150/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bd1efdea984301a883e57924aca93d0f5c615f9cb303bf64a677ccfae43e49e
3
+ size 82856258
checkpoint-150/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a678c19a8a3d1225523b7256cf228029f9576bce9458a5f8635efdce9a4768c5
3
+ size 14244
checkpoint-150/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa625c3d289d110f65fab1387b954cea711ff0d79423e66f88e963a9e2a838b7
3
+ size 1064
checkpoint-150/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
checkpoint-150/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88a3a6fcb80132f76da8aa40cdc3fccd7e5d8468ef15421f5b0c2715e85217d2
3
+ size 11420538
checkpoint-150/tokenizer_config.json ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "151643": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "151644": {
13
+ "content": "<|im_start|>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "151645": {
21
+ "content": "<|im_end|>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "151646": {
29
+ "content": "<|object_ref_start|>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "151647": {
37
+ "content": "<|object_ref_end|>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ },
44
+ "151648": {
45
+ "content": "<|box_start|>",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": true
51
+ },
52
+ "151649": {
53
+ "content": "<|box_end|>",
54
+ "lstrip": false,
55
+ "normalized": false,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": true
59
+ },
60
+ "151650": {
61
+ "content": "<|quad_start|>",
62
+ "lstrip": false,
63
+ "normalized": false,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": true
67
+ },
68
+ "151651": {
69
+ "content": "<|quad_end|>",
70
+ "lstrip": false,
71
+ "normalized": false,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": true
75
+ },
76
+ "151652": {
77
+ "content": "<|vision_start|>",
78
+ "lstrip": false,
79
+ "normalized": false,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": true
83
+ },
84
+ "151653": {
85
+ "content": "<|vision_end|>",
86
+ "lstrip": false,
87
+ "normalized": false,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": true
91
+ },
92
+ "151654": {
93
+ "content": "<|vision_pad|>",
94
+ "lstrip": false,
95
+ "normalized": false,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": true
99
+ },
100
+ "151655": {
101
+ "content": "<|image_pad|>",
102
+ "lstrip": false,
103
+ "normalized": false,
104
+ "rstrip": false,
105
+ "single_word": false,
106
+ "special": true
107
+ },
108
+ "151656": {
109
+ "content": "<|video_pad|>",
110
+ "lstrip": false,
111
+ "normalized": false,
112
+ "rstrip": false,
113
+ "single_word": false,
114
+ "special": true
115
+ }
116
+ },
117
+ "additional_special_tokens": [
118
+ "<|im_start|>",
119
+ "<|im_end|>",
120
+ "<|object_ref_start|>",
121
+ "<|object_ref_end|>",
122
+ "<|box_start|>",
123
+ "<|box_end|>",
124
+ "<|quad_start|>",
125
+ "<|quad_end|>",
126
+ "<|vision_start|>",
127
+ "<|vision_end|>",
128
+ "<|vision_pad|>",
129
+ "<|image_pad|>",
130
+ "<|video_pad|>"
131
+ ],
132
+ "bos_token": null,
133
+ "clean_up_tokenization_spaces": false,
134
+ "eos_token": "<|im_end|>",
135
+ "errors": "replace",
136
+ "extra_special_tokens": {},
137
+ "model_max_length": 32768,
138
+ "pad_token": "<|endoftext|>",
139
+ "padding_side": "left",
140
+ "split_special_tokens": false,
141
+ "tokenizer_class": "Qwen2Tokenizer",
142
+ "unk_token": null
143
+ }
checkpoint-150/trainer_state.json ADDED
@@ -0,0 +1,229 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 150,
3
+ "best_metric": 0.21437418460845947,
4
+ "best_model_checkpoint": "./dora_weather_model/checkpoint-150",
5
+ "epoch": 1.5347043701799485,
6
+ "eval_steps": 25,
7
+ "global_step": 150,
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.10282776349614396,
14
+ "grad_norm": 18.158021926879883,
15
+ "learning_rate": 0.0001,
16
+ "loss": 12.1979,
17
+ "mean_token_accuracy": 0.615905399620533,
18
+ "num_tokens": 171254.0,
19
+ "step": 10
20
+ },
21
+ {
22
+ "epoch": 0.20565552699228792,
23
+ "grad_norm": 7.034078598022461,
24
+ "learning_rate": 0.0001,
25
+ "loss": 4.2501,
26
+ "mean_token_accuracy": 0.8467875950038433,
27
+ "num_tokens": 342816.0,
28
+ "step": 20
29
+ },
30
+ {
31
+ "epoch": 0.2570694087403599,
32
+ "eval_loss": 0.3218275308609009,
33
+ "eval_mean_token_accuracy": 0.9006080529628656,
34
+ "eval_num_tokens": 428469.0,
35
+ "eval_runtime": 133.9929,
36
+ "eval_samples_per_second": 1.455,
37
+ "eval_steps_per_second": 1.455,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.30848329048843187,
42
+ "grad_norm": 7.133749008178711,
43
+ "learning_rate": 0.0001,
44
+ "loss": 2.5798,
45
+ "mean_token_accuracy": 0.8995884403586387,
46
+ "num_tokens": 514067.0,
47
+ "step": 30
48
+ },
49
+ {
50
+ "epoch": 0.41131105398457585,
51
+ "grad_norm": 5.986148834228516,
52
+ "learning_rate": 0.0001,
53
+ "loss": 2.2895,
54
+ "mean_token_accuracy": 0.9077658534049988,
55
+ "num_tokens": 685570.0,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.5141388174807198,
60
+ "grad_norm": 5.834242343902588,
61
+ "learning_rate": 0.0001,
62
+ "loss": 2.0929,
63
+ "mean_token_accuracy": 0.9145211182534695,
64
+ "num_tokens": 856740.0,
65
+ "step": 50
66
+ },
67
+ {
68
+ "epoch": 0.5141388174807198,
69
+ "eval_loss": 0.25579357147216797,
70
+ "eval_mean_token_accuracy": 0.9177517074805039,
71
+ "eval_num_tokens": 856740.0,
72
+ "eval_runtime": 133.8597,
73
+ "eval_samples_per_second": 1.457,
74
+ "eval_steps_per_second": 1.457,
75
+ "step": 50
76
+ },
77
+ {
78
+ "epoch": 0.6169665809768637,
79
+ "grad_norm": 5.7353739738464355,
80
+ "learning_rate": 0.0001,
81
+ "loss": 2.1152,
82
+ "mean_token_accuracy": 0.9142912536859512,
83
+ "num_tokens": 1028000.0,
84
+ "step": 60
85
+ },
86
+ {
87
+ "epoch": 0.7197943444730077,
88
+ "grad_norm": 5.386626720428467,
89
+ "learning_rate": 0.0001,
90
+ "loss": 1.9346,
91
+ "mean_token_accuracy": 0.9206269770860672,
92
+ "num_tokens": 1199650.0,
93
+ "step": 70
94
+ },
95
+ {
96
+ "epoch": 0.7712082262210797,
97
+ "eval_loss": 0.23230257630348206,
98
+ "eval_mean_token_accuracy": 0.9229834336500902,
99
+ "eval_num_tokens": 1285076.0,
100
+ "eval_runtime": 133.8858,
101
+ "eval_samples_per_second": 1.456,
102
+ "eval_steps_per_second": 1.456,
103
+ "step": 75
104
+ },
105
+ {
106
+ "epoch": 0.8226221079691517,
107
+ "grad_norm": 5.34901237487793,
108
+ "learning_rate": 0.0001,
109
+ "loss": 1.8041,
110
+ "mean_token_accuracy": 0.9239558480679989,
111
+ "num_tokens": 1370524.0,
112
+ "step": 80
113
+ },
114
+ {
115
+ "epoch": 0.9254498714652957,
116
+ "grad_norm": 5.087592601776123,
117
+ "learning_rate": 0.0001,
118
+ "loss": 1.8039,
119
+ "mean_token_accuracy": 0.9247349828481675,
120
+ "num_tokens": 1542159.0,
121
+ "step": 90
122
+ },
123
+ {
124
+ "epoch": 1.0205655526992288,
125
+ "grad_norm": 5.261311054229736,
126
+ "learning_rate": 0.0001,
127
+ "loss": 1.6074,
128
+ "mean_token_accuracy": 0.9265569303486798,
129
+ "num_tokens": 1700574.0,
130
+ "step": 100
131
+ },
132
+ {
133
+ "epoch": 1.0205655526992288,
134
+ "eval_loss": 0.22464126348495483,
135
+ "eval_mean_token_accuracy": 0.9246747863598359,
136
+ "eval_num_tokens": 1700574.0,
137
+ "eval_runtime": 133.7804,
138
+ "eval_samples_per_second": 1.458,
139
+ "eval_steps_per_second": 1.458,
140
+ "step": 100
141
+ },
142
+ {
143
+ "epoch": 1.1233933161953726,
144
+ "grad_norm": 5.311674118041992,
145
+ "learning_rate": 0.0001,
146
+ "loss": 1.6489,
147
+ "mean_token_accuracy": 0.9300300016999244,
148
+ "num_tokens": 1871783.0,
149
+ "step": 110
150
+ },
151
+ {
152
+ "epoch": 1.2262210796915167,
153
+ "grad_norm": 5.830325126647949,
154
+ "learning_rate": 0.0001,
155
+ "loss": 1.649,
156
+ "mean_token_accuracy": 0.9298087596893311,
157
+ "num_tokens": 2043203.0,
158
+ "step": 120
159
+ },
160
+ {
161
+ "epoch": 1.2776349614395888,
162
+ "eval_loss": 0.21555578708648682,
163
+ "eval_mean_token_accuracy": 0.9271895112135471,
164
+ "eval_num_tokens": 2128963.0,
165
+ "eval_runtime": 134.043,
166
+ "eval_samples_per_second": 1.455,
167
+ "eval_steps_per_second": 1.455,
168
+ "step": 125
169
+ },
170
+ {
171
+ "epoch": 1.3290488431876606,
172
+ "grad_norm": 5.271592140197754,
173
+ "learning_rate": 0.0001,
174
+ "loss": 1.6119,
175
+ "mean_token_accuracy": 0.9305527195334434,
176
+ "num_tokens": 2214867.0,
177
+ "step": 130
178
+ },
179
+ {
180
+ "epoch": 1.4318766066838047,
181
+ "grad_norm": 5.680342197418213,
182
+ "learning_rate": 0.0001,
183
+ "loss": 1.5448,
184
+ "mean_token_accuracy": 0.9328176341950893,
185
+ "num_tokens": 2385981.0,
186
+ "step": 140
187
+ },
188
+ {
189
+ "epoch": 1.5347043701799485,
190
+ "grad_norm": 5.75166654586792,
191
+ "learning_rate": 0.0001,
192
+ "loss": 1.5601,
193
+ "mean_token_accuracy": 0.9319623775780201,
194
+ "num_tokens": 2557432.0,
195
+ "step": 150
196
+ },
197
+ {
198
+ "epoch": 1.5347043701799485,
199
+ "eval_loss": 0.21437418460845947,
200
+ "eval_mean_token_accuracy": 0.9275352300741734,
201
+ "eval_num_tokens": 2557432.0,
202
+ "eval_runtime": 133.9121,
203
+ "eval_samples_per_second": 1.456,
204
+ "eval_steps_per_second": 1.456,
205
+ "step": 150
206
+ }
207
+ ],
208
+ "logging_steps": 10,
209
+ "max_steps": 294,
210
+ "num_input_tokens_seen": 0,
211
+ "num_train_epochs": 3,
212
+ "save_steps": 50,
213
+ "stateful_callbacks": {
214
+ "TrainerControl": {
215
+ "args": {
216
+ "should_epoch_stop": false,
217
+ "should_evaluate": false,
218
+ "should_log": false,
219
+ "should_save": true,
220
+ "should_training_stop": false
221
+ },
222
+ "attributes": {}
223
+ }
224
+ },
225
+ "total_flos": 1.1902339922153472e+17,
226
+ "train_batch_size": 1,
227
+ "trial_name": null,
228
+ "trial_params": null
229
+ }
checkpoint-150/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27e3dc8a742175f8c36087d59cc03fe76f544e4a592cf9bbf2020761587cf8e8
3
+ size 5752
checkpoint-150/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-200/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2-VL-7B-Instruct
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen2-VL-7B-Instruct
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- 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. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ 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).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.16.0
checkpoint-200/adapter_config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen2-VL-7B-Instruct",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 16,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "k_proj",
30
+ "o_proj",
31
+ "v_proj"
32
+ ],
33
+ "task_type": "CAUSAL_LM",
34
+ "trainable_token_indices": null,
35
+ "use_dora": true,
36
+ "use_qalora": false,
37
+ "use_rslora": true
38
+ }
checkpoint-200/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2820e3d2e8426494323ad2ca002dca9a6525d5c8453232fb905f393d1fc2f225
3
+ size 41338272
checkpoint-200/added_tokens.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<|box_end|>": 151649,
3
+ "<|box_start|>": 151648,
4
+ "<|endoftext|>": 151643,
5
+ "<|im_end|>": 151645,
6
+ "<|im_start|>": 151644,
7
+ "<|image_pad|>": 151655,
8
+ "<|object_ref_end|>": 151647,
9
+ "<|object_ref_start|>": 151646,
10
+ "<|quad_end|>": 151651,
11
+ "<|quad_start|>": 151650,
12
+ "<|video_pad|>": 151656,
13
+ "<|vision_end|>": 151653,
14
+ "<|vision_pad|>": 151654,
15
+ "<|vision_start|>": 151652
16
+ }
checkpoint-200/chat_template.jinja ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system
2
+ You are a helpful assistant.<|im_end|>
3
+ {% endif %}<|im_start|>{{ message['role'] }}
4
+ {% if message['content'] is string %}{{ message['content'] }}<|im_end|>
5
+ {% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>
6
+ {% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
7
+ {% endif %}
checkpoint-200/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-200/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d987f463c742c04748d62de9a1aab0988ffb3924328b06aaa4112e414d8779e8
3
+ size 82856258
checkpoint-200/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c68b393cd56ef764139125d36928914f60a246189bb4929d3055c49ae1cfc97
3
+ size 14244
checkpoint-200/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da963d3b7106f3b4c395d03ef6897e64220165c23480563310345c76ab7b120d
3
+ size 1064
checkpoint-200/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
checkpoint-200/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88a3a6fcb80132f76da8aa40cdc3fccd7e5d8468ef15421f5b0c2715e85217d2
3
+ size 11420538
checkpoint-200/tokenizer_config.json ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "151643": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "151644": {
13
+ "content": "<|im_start|>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "151645": {
21
+ "content": "<|im_end|>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "151646": {
29
+ "content": "<|object_ref_start|>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "151647": {
37
+ "content": "<|object_ref_end|>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ },
44
+ "151648": {
45
+ "content": "<|box_start|>",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": true
51
+ },
52
+ "151649": {
53
+ "content": "<|box_end|>",
54
+ "lstrip": false,
55
+ "normalized": false,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": true
59
+ },
60
+ "151650": {
61
+ "content": "<|quad_start|>",
62
+ "lstrip": false,
63
+ "normalized": false,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": true
67
+ },
68
+ "151651": {
69
+ "content": "<|quad_end|>",
70
+ "lstrip": false,
71
+ "normalized": false,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": true
75
+ },
76
+ "151652": {
77
+ "content": "<|vision_start|>",
78
+ "lstrip": false,
79
+ "normalized": false,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": true
83
+ },
84
+ "151653": {
85
+ "content": "<|vision_end|>",
86
+ "lstrip": false,
87
+ "normalized": false,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": true
91
+ },
92
+ "151654": {
93
+ "content": "<|vision_pad|>",
94
+ "lstrip": false,
95
+ "normalized": false,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": true
99
+ },
100
+ "151655": {
101
+ "content": "<|image_pad|>",
102
+ "lstrip": false,
103
+ "normalized": false,
104
+ "rstrip": false,
105
+ "single_word": false,
106
+ "special": true
107
+ },
108
+ "151656": {
109
+ "content": "<|video_pad|>",
110
+ "lstrip": false,
111
+ "normalized": false,
112
+ "rstrip": false,
113
+ "single_word": false,
114
+ "special": true
115
+ }
116
+ },
117
+ "additional_special_tokens": [
118
+ "<|im_start|>",
119
+ "<|im_end|>",
120
+ "<|object_ref_start|>",
121
+ "<|object_ref_end|>",
122
+ "<|box_start|>",
123
+ "<|box_end|>",
124
+ "<|quad_start|>",
125
+ "<|quad_end|>",
126
+ "<|vision_start|>",
127
+ "<|vision_end|>",
128
+ "<|vision_pad|>",
129
+ "<|image_pad|>",
130
+ "<|video_pad|>"
131
+ ],
132
+ "bos_token": null,
133
+ "clean_up_tokenization_spaces": false,
134
+ "eos_token": "<|im_end|>",
135
+ "errors": "replace",
136
+ "extra_special_tokens": {},
137
+ "model_max_length": 32768,
138
+ "pad_token": "<|endoftext|>",
139
+ "padding_side": "left",
140
+ "split_special_tokens": false,
141
+ "tokenizer_class": "Qwen2Tokenizer",
142
+ "unk_token": null
143
+ }
checkpoint-200/trainer_state.json ADDED
@@ -0,0 +1,294 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 200,
3
+ "best_metric": 0.2047508805990219,
4
+ "best_model_checkpoint": "./dora_weather_model/checkpoint-200",
5
+ "epoch": 2.0411311053984575,
6
+ "eval_steps": 25,
7
+ "global_step": 200,
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.10282776349614396,
14
+ "grad_norm": 18.158021926879883,
15
+ "learning_rate": 0.0001,
16
+ "loss": 12.1979,
17
+ "mean_token_accuracy": 0.615905399620533,
18
+ "num_tokens": 171254.0,
19
+ "step": 10
20
+ },
21
+ {
22
+ "epoch": 0.20565552699228792,
23
+ "grad_norm": 7.034078598022461,
24
+ "learning_rate": 0.0001,
25
+ "loss": 4.2501,
26
+ "mean_token_accuracy": 0.8467875950038433,
27
+ "num_tokens": 342816.0,
28
+ "step": 20
29
+ },
30
+ {
31
+ "epoch": 0.2570694087403599,
32
+ "eval_loss": 0.3218275308609009,
33
+ "eval_mean_token_accuracy": 0.9006080529628656,
34
+ "eval_num_tokens": 428469.0,
35
+ "eval_runtime": 133.9929,
36
+ "eval_samples_per_second": 1.455,
37
+ "eval_steps_per_second": 1.455,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.30848329048843187,
42
+ "grad_norm": 7.133749008178711,
43
+ "learning_rate": 0.0001,
44
+ "loss": 2.5798,
45
+ "mean_token_accuracy": 0.8995884403586387,
46
+ "num_tokens": 514067.0,
47
+ "step": 30
48
+ },
49
+ {
50
+ "epoch": 0.41131105398457585,
51
+ "grad_norm": 5.986148834228516,
52
+ "learning_rate": 0.0001,
53
+ "loss": 2.2895,
54
+ "mean_token_accuracy": 0.9077658534049988,
55
+ "num_tokens": 685570.0,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.5141388174807198,
60
+ "grad_norm": 5.834242343902588,
61
+ "learning_rate": 0.0001,
62
+ "loss": 2.0929,
63
+ "mean_token_accuracy": 0.9145211182534695,
64
+ "num_tokens": 856740.0,
65
+ "step": 50
66
+ },
67
+ {
68
+ "epoch": 0.5141388174807198,
69
+ "eval_loss": 0.25579357147216797,
70
+ "eval_mean_token_accuracy": 0.9177517074805039,
71
+ "eval_num_tokens": 856740.0,
72
+ "eval_runtime": 133.8597,
73
+ "eval_samples_per_second": 1.457,
74
+ "eval_steps_per_second": 1.457,
75
+ "step": 50
76
+ },
77
+ {
78
+ "epoch": 0.6169665809768637,
79
+ "grad_norm": 5.7353739738464355,
80
+ "learning_rate": 0.0001,
81
+ "loss": 2.1152,
82
+ "mean_token_accuracy": 0.9142912536859512,
83
+ "num_tokens": 1028000.0,
84
+ "step": 60
85
+ },
86
+ {
87
+ "epoch": 0.7197943444730077,
88
+ "grad_norm": 5.386626720428467,
89
+ "learning_rate": 0.0001,
90
+ "loss": 1.9346,
91
+ "mean_token_accuracy": 0.9206269770860672,
92
+ "num_tokens": 1199650.0,
93
+ "step": 70
94
+ },
95
+ {
96
+ "epoch": 0.7712082262210797,
97
+ "eval_loss": 0.23230257630348206,
98
+ "eval_mean_token_accuracy": 0.9229834336500902,
99
+ "eval_num_tokens": 1285076.0,
100
+ "eval_runtime": 133.8858,
101
+ "eval_samples_per_second": 1.456,
102
+ "eval_steps_per_second": 1.456,
103
+ "step": 75
104
+ },
105
+ {
106
+ "epoch": 0.8226221079691517,
107
+ "grad_norm": 5.34901237487793,
108
+ "learning_rate": 0.0001,
109
+ "loss": 1.8041,
110
+ "mean_token_accuracy": 0.9239558480679989,
111
+ "num_tokens": 1370524.0,
112
+ "step": 80
113
+ },
114
+ {
115
+ "epoch": 0.9254498714652957,
116
+ "grad_norm": 5.087592601776123,
117
+ "learning_rate": 0.0001,
118
+ "loss": 1.8039,
119
+ "mean_token_accuracy": 0.9247349828481675,
120
+ "num_tokens": 1542159.0,
121
+ "step": 90
122
+ },
123
+ {
124
+ "epoch": 1.0205655526992288,
125
+ "grad_norm": 5.261311054229736,
126
+ "learning_rate": 0.0001,
127
+ "loss": 1.6074,
128
+ "mean_token_accuracy": 0.9265569303486798,
129
+ "num_tokens": 1700574.0,
130
+ "step": 100
131
+ },
132
+ {
133
+ "epoch": 1.0205655526992288,
134
+ "eval_loss": 0.22464126348495483,
135
+ "eval_mean_token_accuracy": 0.9246747863598359,
136
+ "eval_num_tokens": 1700574.0,
137
+ "eval_runtime": 133.7804,
138
+ "eval_samples_per_second": 1.458,
139
+ "eval_steps_per_second": 1.458,
140
+ "step": 100
141
+ },
142
+ {
143
+ "epoch": 1.1233933161953726,
144
+ "grad_norm": 5.311674118041992,
145
+ "learning_rate": 0.0001,
146
+ "loss": 1.6489,
147
+ "mean_token_accuracy": 0.9300300016999244,
148
+ "num_tokens": 1871783.0,
149
+ "step": 110
150
+ },
151
+ {
152
+ "epoch": 1.2262210796915167,
153
+ "grad_norm": 5.830325126647949,
154
+ "learning_rate": 0.0001,
155
+ "loss": 1.649,
156
+ "mean_token_accuracy": 0.9298087596893311,
157
+ "num_tokens": 2043203.0,
158
+ "step": 120
159
+ },
160
+ {
161
+ "epoch": 1.2776349614395888,
162
+ "eval_loss": 0.21555578708648682,
163
+ "eval_mean_token_accuracy": 0.9271895112135471,
164
+ "eval_num_tokens": 2128963.0,
165
+ "eval_runtime": 134.043,
166
+ "eval_samples_per_second": 1.455,
167
+ "eval_steps_per_second": 1.455,
168
+ "step": 125
169
+ },
170
+ {
171
+ "epoch": 1.3290488431876606,
172
+ "grad_norm": 5.271592140197754,
173
+ "learning_rate": 0.0001,
174
+ "loss": 1.6119,
175
+ "mean_token_accuracy": 0.9305527195334434,
176
+ "num_tokens": 2214867.0,
177
+ "step": 130
178
+ },
179
+ {
180
+ "epoch": 1.4318766066838047,
181
+ "grad_norm": 5.680342197418213,
182
+ "learning_rate": 0.0001,
183
+ "loss": 1.5448,
184
+ "mean_token_accuracy": 0.9328176341950893,
185
+ "num_tokens": 2385981.0,
186
+ "step": 140
187
+ },
188
+ {
189
+ "epoch": 1.5347043701799485,
190
+ "grad_norm": 5.75166654586792,
191
+ "learning_rate": 0.0001,
192
+ "loss": 1.5601,
193
+ "mean_token_accuracy": 0.9319623775780201,
194
+ "num_tokens": 2557432.0,
195
+ "step": 150
196
+ },
197
+ {
198
+ "epoch": 1.5347043701799485,
199
+ "eval_loss": 0.21437418460845947,
200
+ "eval_mean_token_accuracy": 0.9275352300741734,
201
+ "eval_num_tokens": 2557432.0,
202
+ "eval_runtime": 133.9121,
203
+ "eval_samples_per_second": 1.456,
204
+ "eval_steps_per_second": 1.456,
205
+ "step": 150
206
+ },
207
+ {
208
+ "epoch": 1.6375321336760926,
209
+ "grad_norm": 5.1881279945373535,
210
+ "learning_rate": 0.0001,
211
+ "loss": 1.5801,
212
+ "mean_token_accuracy": 0.9312322027981281,
213
+ "num_tokens": 2729083.0,
214
+ "step": 160
215
+ },
216
+ {
217
+ "epoch": 1.7403598971722365,
218
+ "grad_norm": 4.914985179901123,
219
+ "learning_rate": 0.0001,
220
+ "loss": 1.618,
221
+ "mean_token_accuracy": 0.9298858948051929,
222
+ "num_tokens": 2900445.0,
223
+ "step": 170
224
+ },
225
+ {
226
+ "epoch": 1.7917737789203085,
227
+ "eval_loss": 0.20662951469421387,
228
+ "eval_mean_token_accuracy": 0.9307488389504261,
229
+ "eval_num_tokens": 2986280.0,
230
+ "eval_runtime": 134.1279,
231
+ "eval_samples_per_second": 1.454,
232
+ "eval_steps_per_second": 1.454,
233
+ "step": 175
234
+ },
235
+ {
236
+ "epoch": 1.8431876606683804,
237
+ "grad_norm": 4.635578155517578,
238
+ "learning_rate": 0.0001,
239
+ "loss": 1.5242,
240
+ "mean_token_accuracy": 0.9346732541918754,
241
+ "num_tokens": 3072258.0,
242
+ "step": 180
243
+ },
244
+ {
245
+ "epoch": 1.9460154241645244,
246
+ "grad_norm": 4.892042636871338,
247
+ "learning_rate": 0.0001,
248
+ "loss": 1.5347,
249
+ "mean_token_accuracy": 0.9339244142174721,
250
+ "num_tokens": 3242706.0,
251
+ "step": 190
252
+ },
253
+ {
254
+ "epoch": 2.0411311053984575,
255
+ "grad_norm": 4.989599704742432,
256
+ "learning_rate": 0.0001,
257
+ "loss": 1.4122,
258
+ "mean_token_accuracy": 0.9334916754348858,
259
+ "num_tokens": 3401061.0,
260
+ "step": 200
261
+ },
262
+ {
263
+ "epoch": 2.0411311053984575,
264
+ "eval_loss": 0.2047508805990219,
265
+ "eval_mean_token_accuracy": 0.9310440222422282,
266
+ "eval_num_tokens": 3401061.0,
267
+ "eval_runtime": 134.0638,
268
+ "eval_samples_per_second": 1.455,
269
+ "eval_steps_per_second": 1.455,
270
+ "step": 200
271
+ }
272
+ ],
273
+ "logging_steps": 10,
274
+ "max_steps": 294,
275
+ "num_input_tokens_seen": 0,
276
+ "num_train_epochs": 3,
277
+ "save_steps": 50,
278
+ "stateful_callbacks": {
279
+ "TrainerControl": {
280
+ "args": {
281
+ "should_epoch_stop": false,
282
+ "should_evaluate": false,
283
+ "should_log": false,
284
+ "should_save": true,
285
+ "should_training_stop": false
286
+ },
287
+ "attributes": {}
288
+ }
289
+ },
290
+ "total_flos": 1.5828606241721856e+17,
291
+ "train_batch_size": 1,
292
+ "trial_name": null,
293
+ "trial_params": null
294
+ }
checkpoint-200/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27e3dc8a742175f8c36087d59cc03fe76f544e4a592cf9bbf2020761587cf8e8
3
+ size 5752