azdin commited on
Commit
d04e6d6
·
verified ·
1 Parent(s): 2b5329f

Upload LLaVA-OneVision weather satellite QLoRA 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 +4 -0
  2. README.md +61 -0
  3. adapter_config.json +46 -0
  4. adapter_model.safetensors +3 -0
  5. added_tokens.json +7 -0
  6. chat_template.jinja +6 -0
  7. checkpoint-124/README.md +208 -0
  8. checkpoint-124/adapter_config.json +46 -0
  9. checkpoint-124/adapter_model.safetensors +3 -0
  10. checkpoint-124/added_tokens.json +7 -0
  11. checkpoint-124/chat_template.jinja +6 -0
  12. checkpoint-124/merges.txt +0 -0
  13. checkpoint-124/optimizer.pt +3 -0
  14. checkpoint-124/rng_state.pth +3 -0
  15. checkpoint-124/scheduler.pt +3 -0
  16. checkpoint-124/special_tokens_map.json +20 -0
  17. checkpoint-124/tokenizer.json +3 -0
  18. checkpoint-124/tokenizer_config.json +64 -0
  19. checkpoint-124/trainer_state.json +182 -0
  20. checkpoint-124/training_args.bin +3 -0
  21. checkpoint-124/vocab.json +0 -0
  22. checkpoint-147/README.md +208 -0
  23. checkpoint-147/adapter_config.json +46 -0
  24. checkpoint-147/adapter_model.safetensors +3 -0
  25. checkpoint-147/added_tokens.json +7 -0
  26. checkpoint-147/chat_template.jinja +6 -0
  27. checkpoint-147/merges.txt +0 -0
  28. checkpoint-147/optimizer.pt +3 -0
  29. checkpoint-147/rng_state.pth +3 -0
  30. checkpoint-147/scheduler.pt +3 -0
  31. checkpoint-147/special_tokens_map.json +20 -0
  32. checkpoint-147/tokenizer.json +3 -0
  33. checkpoint-147/tokenizer_config.json +64 -0
  34. checkpoint-147/trainer_state.json +200 -0
  35. checkpoint-147/training_args.bin +3 -0
  36. checkpoint-147/vocab.json +0 -0
  37. checkpoint-62/README.md +208 -0
  38. checkpoint-62/adapter_config.json +46 -0
  39. checkpoint-62/adapter_model.safetensors +3 -0
  40. checkpoint-62/added_tokens.json +7 -0
  41. checkpoint-62/chat_template.jinja +6 -0
  42. checkpoint-62/merges.txt +0 -0
  43. checkpoint-62/optimizer.pt +3 -0
  44. checkpoint-62/rng_state.pth +3 -0
  45. checkpoint-62/scheduler.pt +3 -0
  46. checkpoint-62/special_tokens_map.json +20 -0
  47. checkpoint-62/tokenizer.json +3 -0
  48. checkpoint-62/tokenizer_config.json +64 -0
  49. checkpoint-62/trainer_state.json +108 -0
  50. checkpoint-62/training_args.bin +3 -0
.gitattributes CHANGED
@@ -33,3 +33,7 @@ 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-124/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-147/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ checkpoint-62/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: llava-hf/llava-onevision-qwen2-7b-ov-hf
3
+ library_name: peft
4
+ model_name: llava_qlora_weather_model
5
+ tags:
6
+ - base_model:adapter:llava-hf/llava-onevision-qwen2-7b-ov-hf
7
+ - lora
8
+ - sft
9
+ - trl
10
+ licence: license
11
+ pipeline_tag: text-generation
12
+ ---
13
+
14
+ # Model Card for llava_qlora_weather_model
15
+
16
+ This model is a fine-tuned version of [llava-hf/llava-onevision-qwen2-7b-ov-hf](https://huggingface.co/llava-hf/llava-onevision-qwen2-7b-ov-hf).
17
+ It has been trained using [TRL](https://github.com/huggingface/trl).
18
+
19
+ ## Quick start
20
+
21
+ ```python
22
+ from transformers import pipeline
23
+
24
+ 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?"
25
+ generator = pipeline("text-generation", model="None", device="cuda")
26
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
27
+ print(output["generated_text"])
28
+ ```
29
+
30
+ ## Training procedure
31
+
32
+ [<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/llava-onevision-qlora-weather/runs/7e65t9r9)
33
+
34
+
35
+ This model was trained with SFT.
36
+
37
+ ### Framework versions
38
+
39
+ - PEFT 0.16.0
40
+ - TRL: 0.20.0
41
+ - Transformers: 4.53.3
42
+ - Pytorch: 2.6.0+cu124
43
+ - Datasets: 4.0.0
44
+ - Tokenizers: 0.21.2
45
+
46
+ ## Citations
47
+
48
+
49
+
50
+ Cite TRL as:
51
+
52
+ ```bibtex
53
+ @misc{vonwerra2022trl,
54
+ title = {{TRL: Transformer Reinforcement Learning}},
55
+ 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},
56
+ year = 2020,
57
+ journal = {GitHub repository},
58
+ publisher = {GitHub},
59
+ howpublished = {\url{https://github.com/huggingface/trl}}
60
+ }
61
+ ```
adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": null,
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": 64,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.1,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": [
22
+ "embed_tokens",
23
+ "lm_head"
24
+ ],
25
+ "peft_type": "LORA",
26
+ "qalora_group_size": 16,
27
+ "r": 32,
28
+ "rank_pattern": {},
29
+ "revision": null,
30
+ "target_modules": [
31
+ "k_proj",
32
+ "up_proj",
33
+ "down_proj",
34
+ "v_proj",
35
+ "lm_head",
36
+ "gate_proj",
37
+ "o_proj",
38
+ "q_proj",
39
+ "embed_tokens"
40
+ ],
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94d2744f2d9ffc902b1424b194d7447ed4f2ea36074f932cfe5f522d1db179ba
3
+ size 2526966408
added_tokens.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "<image>": 151646,
3
+ "<video>": 151647,
4
+ "<|endoftext|>": 151643,
5
+ "<|im_end|>": 151645,
6
+ "<|im_start|>": 151644
7
+ }
chat_template.jinja ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
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 %}
checkpoint-124/README.md ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: llava-hf/llava-onevision-qwen2-7b-ov-hf
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:llava-hf/llava-onevision-qwen2-7b-ov-hf
7
+ - lora
8
+ - sft
9
+ - trl
10
+ ---
11
+
12
+ # Model Card for Model ID
13
+
14
+ <!-- Provide a quick summary of what the model is/does. -->
15
+
16
+
17
+
18
+ ## Model Details
19
+
20
+ ### Model Description
21
+
22
+ <!-- Provide a longer summary of what this model is. -->
23
+
24
+
25
+
26
+ - **Developed by:** [More Information Needed]
27
+ - **Funded by [optional]:** [More Information Needed]
28
+ - **Shared by [optional]:** [More Information Needed]
29
+ - **Model type:** [More Information Needed]
30
+ - **Language(s) (NLP):** [More Information Needed]
31
+ - **License:** [More Information Needed]
32
+ - **Finetuned from model [optional]:** [More Information Needed]
33
+
34
+ ### Model Sources [optional]
35
+
36
+ <!-- Provide the basic links for the model. -->
37
+
38
+ - **Repository:** [More Information Needed]
39
+ - **Paper [optional]:** [More Information Needed]
40
+ - **Demo [optional]:** [More Information Needed]
41
+
42
+ ## Uses
43
+
44
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
45
+
46
+ ### Direct Use
47
+
48
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Downstream Use [optional]
53
+
54
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
55
+
56
+ [More Information Needed]
57
+
58
+ ### Out-of-Scope Use
59
+
60
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ## Bias, Risks, and Limitations
65
+
66
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
67
+
68
+ [More Information Needed]
69
+
70
+ ### Recommendations
71
+
72
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
73
+
74
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
75
+
76
+ ## How to Get Started with the Model
77
+
78
+ Use the code below to get started with the model.
79
+
80
+ [More Information Needed]
81
+
82
+ ## Training Details
83
+
84
+ ### Training Data
85
+
86
+ <!-- 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. -->
87
+
88
+ [More Information Needed]
89
+
90
+ ### Training Procedure
91
+
92
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
93
+
94
+ #### Preprocessing [optional]
95
+
96
+ [More Information Needed]
97
+
98
+
99
+ #### Training Hyperparameters
100
+
101
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
102
+
103
+ #### Speeds, Sizes, Times [optional]
104
+
105
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
106
+
107
+ [More Information Needed]
108
+
109
+ ## Evaluation
110
+
111
+ <!-- This section describes the evaluation protocols and provides the results. -->
112
+
113
+ ### Testing Data, Factors & Metrics
114
+
115
+ #### Testing Data
116
+
117
+ <!-- This should link to a Dataset Card if possible. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Factors
122
+
123
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
124
+
125
+ [More Information Needed]
126
+
127
+ #### Metrics
128
+
129
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
130
+
131
+ [More Information Needed]
132
+
133
+ ### Results
134
+
135
+ [More Information Needed]
136
+
137
+ #### Summary
138
+
139
+
140
+
141
+ ## Model Examination [optional]
142
+
143
+ <!-- Relevant interpretability work for the model goes here -->
144
+
145
+ [More Information Needed]
146
+
147
+ ## Environmental Impact
148
+
149
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
150
+
151
+ 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).
152
+
153
+ - **Hardware Type:** [More Information Needed]
154
+ - **Hours used:** [More Information Needed]
155
+ - **Cloud Provider:** [More Information Needed]
156
+ - **Compute Region:** [More Information Needed]
157
+ - **Carbon Emitted:** [More Information Needed]
158
+
159
+ ## Technical Specifications [optional]
160
+
161
+ ### Model Architecture and Objective
162
+
163
+ [More Information Needed]
164
+
165
+ ### Compute Infrastructure
166
+
167
+ [More Information Needed]
168
+
169
+ #### Hardware
170
+
171
+ [More Information Needed]
172
+
173
+ #### Software
174
+
175
+ [More Information Needed]
176
+
177
+ ## Citation [optional]
178
+
179
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
180
+
181
+ **BibTeX:**
182
+
183
+ [More Information Needed]
184
+
185
+ **APA:**
186
+
187
+ [More Information Needed]
188
+
189
+ ## Glossary [optional]
190
+
191
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
192
+
193
+ [More Information Needed]
194
+
195
+ ## More Information [optional]
196
+
197
+ [More Information Needed]
198
+
199
+ ## Model Card Authors [optional]
200
+
201
+ [More Information Needed]
202
+
203
+ ## Model Card Contact
204
+
205
+ [More Information Needed]
206
+ ### Framework versions
207
+
208
+ - PEFT 0.16.0
checkpoint-124/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": null,
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": 64,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.1,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": [
22
+ "embed_tokens",
23
+ "lm_head"
24
+ ],
25
+ "peft_type": "LORA",
26
+ "qalora_group_size": 16,
27
+ "r": 32,
28
+ "rank_pattern": {},
29
+ "revision": null,
30
+ "target_modules": [
31
+ "k_proj",
32
+ "up_proj",
33
+ "down_proj",
34
+ "v_proj",
35
+ "lm_head",
36
+ "gate_proj",
37
+ "o_proj",
38
+ "q_proj",
39
+ "embed_tokens"
40
+ ],
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-124/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94d2744f2d9ffc902b1424b194d7447ed4f2ea36074f932cfe5f522d1db179ba
3
+ size 2526966408
checkpoint-124/added_tokens.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "<image>": 151646,
3
+ "<video>": 151647,
4
+ "<|endoftext|>": 151643,
5
+ "<|im_end|>": 151645,
6
+ "<|im_start|>": 151644
7
+ }
checkpoint-124/chat_template.jinja ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
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 %}
checkpoint-124/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-124/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59c68119d019b904c3865da747377e8539e575f28190954a3e004b7a616e97d2
3
+ size 9415913858
checkpoint-124/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c17e4a4810055d820bd45f1c22b68b15d62c4009d45e02176ed32387db7a237f
3
+ size 14244
checkpoint-124/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e48158ab734cf4986c4b1230ae3898188781c08ee539377b69e959715553080
3
+ size 1064
checkpoint-124/special_tokens_map.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>"
5
+ ],
6
+ "eos_token": {
7
+ "content": "<|im_end|>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false
12
+ },
13
+ "pad_token": {
14
+ "content": "<|endoftext|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false
19
+ }
20
+ }
checkpoint-124/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22acdce2f613a63fdd5803fbf73706de47621ed05578ba2553482f4d59a3d611
3
+ size 11418802
checkpoint-124/tokenizer_config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "<image>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "151647": {
37
+ "content": "<video>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ }
44
+ },
45
+ "additional_special_tokens": [
46
+ "<|im_start|>",
47
+ "<|im_end|>"
48
+ ],
49
+ "bos_token": null,
50
+ "clean_up_tokenization_spaces": false,
51
+ "eos_token": "<|im_end|>",
52
+ "errors": "replace",
53
+ "extra_special_tokens": {},
54
+ "max_length": null,
55
+ "model_max_length": 131072,
56
+ "pad_to_multiple_of": null,
57
+ "pad_token": "<|endoftext|>",
58
+ "pad_token_type_id": 0,
59
+ "padding_side": "right",
60
+ "processor_class": "LlavaOnevisionProcessor",
61
+ "split_special_tokens": false,
62
+ "tokenizer_class": "Qwen2Tokenizer",
63
+ "unk_token": null
64
+ }
checkpoint-124/trainer_state.json ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 124,
3
+ "best_metric": 0.19054362177848816,
4
+ "best_model_checkpoint": "./llava_qlora_weather_model/checkpoint-124",
5
+ "epoch": 2.5347043701799485,
6
+ "eval_steps": 31,
7
+ "global_step": 124,
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.20565552699228792,
14
+ "grad_norm": 2.331812620162964,
15
+ "learning_rate": 0.0001999744599547812,
16
+ "loss": 1.3843,
17
+ "mean_token_accuracy": 0.6790310423821211,
18
+ "num_tokens": 1290816.0,
19
+ "step": 10
20
+ },
21
+ {
22
+ "epoch": 0.41131105398457585,
23
+ "grad_norm": 0.9054113030433655,
24
+ "learning_rate": 0.00019692540862655585,
25
+ "loss": 0.2958,
26
+ "mean_token_accuracy": 0.9068963050842285,
27
+ "num_tokens": 2581570.0,
28
+ "step": 20
29
+ },
30
+ {
31
+ "epoch": 0.6169665809768637,
32
+ "grad_norm": 0.7487640380859375,
33
+ "learning_rate": 0.00018894622845670283,
34
+ "loss": 0.2476,
35
+ "mean_token_accuracy": 0.917157232388854,
36
+ "num_tokens": 3872000.0,
37
+ "step": 30
38
+ },
39
+ {
40
+ "epoch": 0.6375321336760925,
41
+ "eval_loss": 0.23227548599243164,
42
+ "eval_mean_token_accuracy": 0.9232641770289495,
43
+ "eval_num_tokens": 4001060.0,
44
+ "eval_runtime": 276.5084,
45
+ "eval_samples_per_second": 0.705,
46
+ "eval_steps_per_second": 0.705,
47
+ "step": 31
48
+ },
49
+ {
50
+ "epoch": 0.8226221079691517,
51
+ "grad_norm": 0.6455361843109131,
52
+ "learning_rate": 0.0001764427819207624,
53
+ "loss": 0.2208,
54
+ "mean_token_accuracy": 0.9249804724007845,
55
+ "num_tokens": 5162524.0,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 1.0205655526992288,
60
+ "grad_norm": 0.5358895659446716,
61
+ "learning_rate": 0.00016005105914000507,
62
+ "loss": 0.2077,
63
+ "mean_token_accuracy": 0.929297363990313,
64
+ "num_tokens": 6405024.0,
65
+ "step": 50
66
+ },
67
+ {
68
+ "epoch": 1.2262210796915167,
69
+ "grad_norm": 0.5378326177597046,
70
+ "learning_rate": 0.00014060482812625055,
71
+ "loss": 0.1782,
72
+ "mean_token_accuracy": 0.9367100398987531,
73
+ "num_tokens": 7695653.0,
74
+ "step": 60
75
+ },
76
+ {
77
+ "epoch": 1.2673521850899743,
78
+ "eval_loss": 0.20991797745227814,
79
+ "eval_mean_token_accuracy": 0.9294621323927855,
80
+ "eval_num_tokens": 7953894.0,
81
+ "eval_runtime": 276.7899,
82
+ "eval_samples_per_second": 0.705,
83
+ "eval_steps_per_second": 0.705,
84
+ "step": 62
85
+ },
86
+ {
87
+ "epoch": 1.4318766066838047,
88
+ "grad_norm": 0.5556976199150085,
89
+ "learning_rate": 0.00011909322501769406,
90
+ "loss": 0.1738,
91
+ "mean_token_accuracy": 0.9374068416655064,
92
+ "num_tokens": 8986431.0,
93
+ "step": 70
94
+ },
95
+ {
96
+ "epoch": 1.6375321336760926,
97
+ "grad_norm": 0.5379733443260193,
98
+ "learning_rate": 9.661044148624037e-05,
99
+ "loss": 0.17,
100
+ "mean_token_accuracy": 0.9386381138116121,
101
+ "num_tokens": 10277533.0,
102
+ "step": 80
103
+ },
104
+ {
105
+ "epoch": 1.8431876606683804,
106
+ "grad_norm": 0.532435417175293,
107
+ "learning_rate": 7.430006847567972e-05,
108
+ "loss": 0.1691,
109
+ "mean_token_accuracy": 0.9383826002478599,
110
+ "num_tokens": 11568708.0,
111
+ "step": 90
112
+ },
113
+ {
114
+ "epoch": 1.904884318766067,
115
+ "eval_loss": 0.19236187636852264,
116
+ "eval_mean_token_accuracy": 0.934929045347067,
117
+ "eval_num_tokens": 11955105.0,
118
+ "eval_runtime": 277.3902,
119
+ "eval_samples_per_second": 0.703,
120
+ "eval_steps_per_second": 0.703,
121
+ "step": 93
122
+ },
123
+ {
124
+ "epoch": 2.0411311053984575,
125
+ "grad_norm": 0.4640503525733948,
126
+ "learning_rate": 5.329692723675994e-05,
127
+ "loss": 0.1587,
128
+ "mean_token_accuracy": 0.9431061984656693,
129
+ "num_tokens": 12809961.0,
130
+ "step": 100
131
+ },
132
+ {
133
+ "epoch": 2.2467866323907453,
134
+ "grad_norm": 0.4997648596763611,
135
+ "learning_rate": 3.466934643431795e-05,
136
+ "loss": 0.1347,
137
+ "mean_token_accuracy": 0.950631283223629,
138
+ "num_tokens": 14099963.0,
139
+ "step": 110
140
+ },
141
+ {
142
+ "epoch": 2.4524421593830334,
143
+ "grad_norm": 0.44113558530807495,
144
+ "learning_rate": 1.9364821412094857e-05,
145
+ "loss": 0.131,
146
+ "mean_token_accuracy": 0.9509662713855505,
147
+ "num_tokens": 15390859.0,
148
+ "step": 120
149
+ },
150
+ {
151
+ "epoch": 2.5347043701799485,
152
+ "eval_loss": 0.19054362177848816,
153
+ "eval_mean_token_accuracy": 0.9369476150243711,
154
+ "eval_num_tokens": 15906771.0,
155
+ "eval_runtime": 277.9929,
156
+ "eval_samples_per_second": 0.701,
157
+ "eval_steps_per_second": 0.701,
158
+ "step": 124
159
+ }
160
+ ],
161
+ "logging_steps": 10,
162
+ "max_steps": 147,
163
+ "num_input_tokens_seen": 0,
164
+ "num_train_epochs": 3,
165
+ "save_steps": 62,
166
+ "stateful_callbacks": {
167
+ "TrainerControl": {
168
+ "args": {
169
+ "should_epoch_stop": false,
170
+ "should_evaluate": false,
171
+ "should_log": false,
172
+ "should_save": true,
173
+ "should_training_stop": false
174
+ },
175
+ "attributes": {}
176
+ }
177
+ },
178
+ "total_flos": 7.74639919464559e+17,
179
+ "train_batch_size": 1,
180
+ "trial_name": null,
181
+ "trial_params": null
182
+ }
checkpoint-124/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49fff2d1203219cc878018833c87f658db4d4ce0e3b67c7202208dbe4d946cd8
3
+ size 5752
checkpoint-124/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-147/README.md ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: llava-hf/llava-onevision-qwen2-7b-ov-hf
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:llava-hf/llava-onevision-qwen2-7b-ov-hf
7
+ - lora
8
+ - sft
9
+ - trl
10
+ ---
11
+
12
+ # Model Card for Model ID
13
+
14
+ <!-- Provide a quick summary of what the model is/does. -->
15
+
16
+
17
+
18
+ ## Model Details
19
+
20
+ ### Model Description
21
+
22
+ <!-- Provide a longer summary of what this model is. -->
23
+
24
+
25
+
26
+ - **Developed by:** [More Information Needed]
27
+ - **Funded by [optional]:** [More Information Needed]
28
+ - **Shared by [optional]:** [More Information Needed]
29
+ - **Model type:** [More Information Needed]
30
+ - **Language(s) (NLP):** [More Information Needed]
31
+ - **License:** [More Information Needed]
32
+ - **Finetuned from model [optional]:** [More Information Needed]
33
+
34
+ ### Model Sources [optional]
35
+
36
+ <!-- Provide the basic links for the model. -->
37
+
38
+ - **Repository:** [More Information Needed]
39
+ - **Paper [optional]:** [More Information Needed]
40
+ - **Demo [optional]:** [More Information Needed]
41
+
42
+ ## Uses
43
+
44
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
45
+
46
+ ### Direct Use
47
+
48
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Downstream Use [optional]
53
+
54
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
55
+
56
+ [More Information Needed]
57
+
58
+ ### Out-of-Scope Use
59
+
60
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ## Bias, Risks, and Limitations
65
+
66
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
67
+
68
+ [More Information Needed]
69
+
70
+ ### Recommendations
71
+
72
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
73
+
74
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
75
+
76
+ ## How to Get Started with the Model
77
+
78
+ Use the code below to get started with the model.
79
+
80
+ [More Information Needed]
81
+
82
+ ## Training Details
83
+
84
+ ### Training Data
85
+
86
+ <!-- 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. -->
87
+
88
+ [More Information Needed]
89
+
90
+ ### Training Procedure
91
+
92
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
93
+
94
+ #### Preprocessing [optional]
95
+
96
+ [More Information Needed]
97
+
98
+
99
+ #### Training Hyperparameters
100
+
101
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
102
+
103
+ #### Speeds, Sizes, Times [optional]
104
+
105
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
106
+
107
+ [More Information Needed]
108
+
109
+ ## Evaluation
110
+
111
+ <!-- This section describes the evaluation protocols and provides the results. -->
112
+
113
+ ### Testing Data, Factors & Metrics
114
+
115
+ #### Testing Data
116
+
117
+ <!-- This should link to a Dataset Card if possible. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Factors
122
+
123
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
124
+
125
+ [More Information Needed]
126
+
127
+ #### Metrics
128
+
129
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
130
+
131
+ [More Information Needed]
132
+
133
+ ### Results
134
+
135
+ [More Information Needed]
136
+
137
+ #### Summary
138
+
139
+
140
+
141
+ ## Model Examination [optional]
142
+
143
+ <!-- Relevant interpretability work for the model goes here -->
144
+
145
+ [More Information Needed]
146
+
147
+ ## Environmental Impact
148
+
149
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
150
+
151
+ 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).
152
+
153
+ - **Hardware Type:** [More Information Needed]
154
+ - **Hours used:** [More Information Needed]
155
+ - **Cloud Provider:** [More Information Needed]
156
+ - **Compute Region:** [More Information Needed]
157
+ - **Carbon Emitted:** [More Information Needed]
158
+
159
+ ## Technical Specifications [optional]
160
+
161
+ ### Model Architecture and Objective
162
+
163
+ [More Information Needed]
164
+
165
+ ### Compute Infrastructure
166
+
167
+ [More Information Needed]
168
+
169
+ #### Hardware
170
+
171
+ [More Information Needed]
172
+
173
+ #### Software
174
+
175
+ [More Information Needed]
176
+
177
+ ## Citation [optional]
178
+
179
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
180
+
181
+ **BibTeX:**
182
+
183
+ [More Information Needed]
184
+
185
+ **APA:**
186
+
187
+ [More Information Needed]
188
+
189
+ ## Glossary [optional]
190
+
191
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
192
+
193
+ [More Information Needed]
194
+
195
+ ## More Information [optional]
196
+
197
+ [More Information Needed]
198
+
199
+ ## Model Card Authors [optional]
200
+
201
+ [More Information Needed]
202
+
203
+ ## Model Card Contact
204
+
205
+ [More Information Needed]
206
+ ### Framework versions
207
+
208
+ - PEFT 0.16.0
checkpoint-147/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": null,
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": 64,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.1,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": [
22
+ "embed_tokens",
23
+ "lm_head"
24
+ ],
25
+ "peft_type": "LORA",
26
+ "qalora_group_size": 16,
27
+ "r": 32,
28
+ "rank_pattern": {},
29
+ "revision": null,
30
+ "target_modules": [
31
+ "k_proj",
32
+ "up_proj",
33
+ "down_proj",
34
+ "v_proj",
35
+ "lm_head",
36
+ "gate_proj",
37
+ "o_proj",
38
+ "q_proj",
39
+ "embed_tokens"
40
+ ],
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-147/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06768588a1dc0d8ada082ac83bd50d1b627121dbbc04c89dfdcbf5234b73c80f
3
+ size 2526966408
checkpoint-147/added_tokens.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "<image>": 151646,
3
+ "<video>": 151647,
4
+ "<|endoftext|>": 151643,
5
+ "<|im_end|>": 151645,
6
+ "<|im_start|>": 151644
7
+ }
checkpoint-147/chat_template.jinja ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
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 %}
checkpoint-147/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-147/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49718654eb47775861d656a7e75c028abcf826f69f6d8a3030a341dda19454a3
3
+ size 9415913858
checkpoint-147/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10f5a8e5c6d873225df490f02b63a1f405cb473321d3536455236518dece1c99
3
+ size 14244
checkpoint-147/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a2b69bb4306abd607226c01acaffda59e24b3e5c1c98b4f97c58d439a57aaa8
3
+ size 1064
checkpoint-147/special_tokens_map.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>"
5
+ ],
6
+ "eos_token": {
7
+ "content": "<|im_end|>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false
12
+ },
13
+ "pad_token": {
14
+ "content": "<|endoftext|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false
19
+ }
20
+ }
checkpoint-147/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22acdce2f613a63fdd5803fbf73706de47621ed05578ba2553482f4d59a3d611
3
+ size 11418802
checkpoint-147/tokenizer_config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "<image>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "151647": {
37
+ "content": "<video>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ }
44
+ },
45
+ "additional_special_tokens": [
46
+ "<|im_start|>",
47
+ "<|im_end|>"
48
+ ],
49
+ "bos_token": null,
50
+ "clean_up_tokenization_spaces": false,
51
+ "eos_token": "<|im_end|>",
52
+ "errors": "replace",
53
+ "extra_special_tokens": {},
54
+ "max_length": null,
55
+ "model_max_length": 131072,
56
+ "pad_to_multiple_of": null,
57
+ "pad_token": "<|endoftext|>",
58
+ "pad_token_type_id": 0,
59
+ "padding_side": "right",
60
+ "processor_class": "LlavaOnevisionProcessor",
61
+ "split_special_tokens": false,
62
+ "tokenizer_class": "Qwen2Tokenizer",
63
+ "unk_token": null
64
+ }
checkpoint-147/trainer_state.json ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 124,
3
+ "best_metric": 0.19054362177848816,
4
+ "best_model_checkpoint": "./llava_qlora_weather_model/checkpoint-124",
5
+ "epoch": 3.0,
6
+ "eval_steps": 31,
7
+ "global_step": 147,
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.20565552699228792,
14
+ "grad_norm": 2.331812620162964,
15
+ "learning_rate": 0.0001999744599547812,
16
+ "loss": 1.3843,
17
+ "mean_token_accuracy": 0.6790310423821211,
18
+ "num_tokens": 1290816.0,
19
+ "step": 10
20
+ },
21
+ {
22
+ "epoch": 0.41131105398457585,
23
+ "grad_norm": 0.9054113030433655,
24
+ "learning_rate": 0.00019692540862655585,
25
+ "loss": 0.2958,
26
+ "mean_token_accuracy": 0.9068963050842285,
27
+ "num_tokens": 2581570.0,
28
+ "step": 20
29
+ },
30
+ {
31
+ "epoch": 0.6169665809768637,
32
+ "grad_norm": 0.7487640380859375,
33
+ "learning_rate": 0.00018894622845670283,
34
+ "loss": 0.2476,
35
+ "mean_token_accuracy": 0.917157232388854,
36
+ "num_tokens": 3872000.0,
37
+ "step": 30
38
+ },
39
+ {
40
+ "epoch": 0.6375321336760925,
41
+ "eval_loss": 0.23227548599243164,
42
+ "eval_mean_token_accuracy": 0.9232641770289495,
43
+ "eval_num_tokens": 4001060.0,
44
+ "eval_runtime": 276.5084,
45
+ "eval_samples_per_second": 0.705,
46
+ "eval_steps_per_second": 0.705,
47
+ "step": 31
48
+ },
49
+ {
50
+ "epoch": 0.8226221079691517,
51
+ "grad_norm": 0.6455361843109131,
52
+ "learning_rate": 0.0001764427819207624,
53
+ "loss": 0.2208,
54
+ "mean_token_accuracy": 0.9249804724007845,
55
+ "num_tokens": 5162524.0,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 1.0205655526992288,
60
+ "grad_norm": 0.5358895659446716,
61
+ "learning_rate": 0.00016005105914000507,
62
+ "loss": 0.2077,
63
+ "mean_token_accuracy": 0.929297363990313,
64
+ "num_tokens": 6405024.0,
65
+ "step": 50
66
+ },
67
+ {
68
+ "epoch": 1.2262210796915167,
69
+ "grad_norm": 0.5378326177597046,
70
+ "learning_rate": 0.00014060482812625055,
71
+ "loss": 0.1782,
72
+ "mean_token_accuracy": 0.9367100398987531,
73
+ "num_tokens": 7695653.0,
74
+ "step": 60
75
+ },
76
+ {
77
+ "epoch": 1.2673521850899743,
78
+ "eval_loss": 0.20991797745227814,
79
+ "eval_mean_token_accuracy": 0.9294621323927855,
80
+ "eval_num_tokens": 7953894.0,
81
+ "eval_runtime": 276.7899,
82
+ "eval_samples_per_second": 0.705,
83
+ "eval_steps_per_second": 0.705,
84
+ "step": 62
85
+ },
86
+ {
87
+ "epoch": 1.4318766066838047,
88
+ "grad_norm": 0.5556976199150085,
89
+ "learning_rate": 0.00011909322501769406,
90
+ "loss": 0.1738,
91
+ "mean_token_accuracy": 0.9374068416655064,
92
+ "num_tokens": 8986431.0,
93
+ "step": 70
94
+ },
95
+ {
96
+ "epoch": 1.6375321336760926,
97
+ "grad_norm": 0.5379733443260193,
98
+ "learning_rate": 9.661044148624037e-05,
99
+ "loss": 0.17,
100
+ "mean_token_accuracy": 0.9386381138116121,
101
+ "num_tokens": 10277533.0,
102
+ "step": 80
103
+ },
104
+ {
105
+ "epoch": 1.8431876606683804,
106
+ "grad_norm": 0.532435417175293,
107
+ "learning_rate": 7.430006847567972e-05,
108
+ "loss": 0.1691,
109
+ "mean_token_accuracy": 0.9383826002478599,
110
+ "num_tokens": 11568708.0,
111
+ "step": 90
112
+ },
113
+ {
114
+ "epoch": 1.904884318766067,
115
+ "eval_loss": 0.19236187636852264,
116
+ "eval_mean_token_accuracy": 0.934929045347067,
117
+ "eval_num_tokens": 11955105.0,
118
+ "eval_runtime": 277.3902,
119
+ "eval_samples_per_second": 0.703,
120
+ "eval_steps_per_second": 0.703,
121
+ "step": 93
122
+ },
123
+ {
124
+ "epoch": 2.0411311053984575,
125
+ "grad_norm": 0.4640503525733948,
126
+ "learning_rate": 5.329692723675994e-05,
127
+ "loss": 0.1587,
128
+ "mean_token_accuracy": 0.9431061984656693,
129
+ "num_tokens": 12809961.0,
130
+ "step": 100
131
+ },
132
+ {
133
+ "epoch": 2.2467866323907453,
134
+ "grad_norm": 0.4997648596763611,
135
+ "learning_rate": 3.466934643431795e-05,
136
+ "loss": 0.1347,
137
+ "mean_token_accuracy": 0.950631283223629,
138
+ "num_tokens": 14099963.0,
139
+ "step": 110
140
+ },
141
+ {
142
+ "epoch": 2.4524421593830334,
143
+ "grad_norm": 0.44113558530807495,
144
+ "learning_rate": 1.9364821412094857e-05,
145
+ "loss": 0.131,
146
+ "mean_token_accuracy": 0.9509662713855505,
147
+ "num_tokens": 15390859.0,
148
+ "step": 120
149
+ },
150
+ {
151
+ "epoch": 2.5347043701799485,
152
+ "eval_loss": 0.19054362177848816,
153
+ "eval_mean_token_accuracy": 0.9369476150243711,
154
+ "eval_num_tokens": 15906771.0,
155
+ "eval_runtime": 277.9929,
156
+ "eval_samples_per_second": 0.701,
157
+ "eval_steps_per_second": 0.701,
158
+ "step": 124
159
+ },
160
+ {
161
+ "epoch": 2.658097686375321,
162
+ "grad_norm": 0.44858983159065247,
163
+ "learning_rate": 8.161819666783888e-06,
164
+ "loss": 0.1324,
165
+ "mean_token_accuracy": 0.9513279229402543,
166
+ "num_tokens": 16681649.0,
167
+ "step": 130
168
+ },
169
+ {
170
+ "epoch": 2.8637532133676094,
171
+ "grad_norm": 0.4972115159034729,
172
+ "learning_rate": 1.6301839547892328e-06,
173
+ "loss": 0.1297,
174
+ "mean_token_accuracy": 0.9516113791614771,
175
+ "num_tokens": 17972810.0,
176
+ "step": 140
177
+ }
178
+ ],
179
+ "logging_steps": 10,
180
+ "max_steps": 147,
181
+ "num_input_tokens_seen": 0,
182
+ "num_train_epochs": 3,
183
+ "save_steps": 62,
184
+ "stateful_callbacks": {
185
+ "TrainerControl": {
186
+ "args": {
187
+ "should_epoch_stop": false,
188
+ "should_evaluate": false,
189
+ "should_log": false,
190
+ "should_save": true,
191
+ "should_training_stop": true
192
+ },
193
+ "attributes": {}
194
+ }
195
+ },
196
+ "total_flos": 9.168897575363267e+17,
197
+ "train_batch_size": 1,
198
+ "trial_name": null,
199
+ "trial_params": null
200
+ }
checkpoint-147/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49fff2d1203219cc878018833c87f658db4d4ce0e3b67c7202208dbe4d946cd8
3
+ size 5752
checkpoint-147/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-62/README.md ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: llava-hf/llava-onevision-qwen2-7b-ov-hf
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:llava-hf/llava-onevision-qwen2-7b-ov-hf
7
+ - lora
8
+ - sft
9
+ - trl
10
+ ---
11
+
12
+ # Model Card for Model ID
13
+
14
+ <!-- Provide a quick summary of what the model is/does. -->
15
+
16
+
17
+
18
+ ## Model Details
19
+
20
+ ### Model Description
21
+
22
+ <!-- Provide a longer summary of what this model is. -->
23
+
24
+
25
+
26
+ - **Developed by:** [More Information Needed]
27
+ - **Funded by [optional]:** [More Information Needed]
28
+ - **Shared by [optional]:** [More Information Needed]
29
+ - **Model type:** [More Information Needed]
30
+ - **Language(s) (NLP):** [More Information Needed]
31
+ - **License:** [More Information Needed]
32
+ - **Finetuned from model [optional]:** [More Information Needed]
33
+
34
+ ### Model Sources [optional]
35
+
36
+ <!-- Provide the basic links for the model. -->
37
+
38
+ - **Repository:** [More Information Needed]
39
+ - **Paper [optional]:** [More Information Needed]
40
+ - **Demo [optional]:** [More Information Needed]
41
+
42
+ ## Uses
43
+
44
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
45
+
46
+ ### Direct Use
47
+
48
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Downstream Use [optional]
53
+
54
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
55
+
56
+ [More Information Needed]
57
+
58
+ ### Out-of-Scope Use
59
+
60
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ## Bias, Risks, and Limitations
65
+
66
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
67
+
68
+ [More Information Needed]
69
+
70
+ ### Recommendations
71
+
72
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
73
+
74
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
75
+
76
+ ## How to Get Started with the Model
77
+
78
+ Use the code below to get started with the model.
79
+
80
+ [More Information Needed]
81
+
82
+ ## Training Details
83
+
84
+ ### Training Data
85
+
86
+ <!-- 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. -->
87
+
88
+ [More Information Needed]
89
+
90
+ ### Training Procedure
91
+
92
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
93
+
94
+ #### Preprocessing [optional]
95
+
96
+ [More Information Needed]
97
+
98
+
99
+ #### Training Hyperparameters
100
+
101
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
102
+
103
+ #### Speeds, Sizes, Times [optional]
104
+
105
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
106
+
107
+ [More Information Needed]
108
+
109
+ ## Evaluation
110
+
111
+ <!-- This section describes the evaluation protocols and provides the results. -->
112
+
113
+ ### Testing Data, Factors & Metrics
114
+
115
+ #### Testing Data
116
+
117
+ <!-- This should link to a Dataset Card if possible. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Factors
122
+
123
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
124
+
125
+ [More Information Needed]
126
+
127
+ #### Metrics
128
+
129
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
130
+
131
+ [More Information Needed]
132
+
133
+ ### Results
134
+
135
+ [More Information Needed]
136
+
137
+ #### Summary
138
+
139
+
140
+
141
+ ## Model Examination [optional]
142
+
143
+ <!-- Relevant interpretability work for the model goes here -->
144
+
145
+ [More Information Needed]
146
+
147
+ ## Environmental Impact
148
+
149
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
150
+
151
+ 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).
152
+
153
+ - **Hardware Type:** [More Information Needed]
154
+ - **Hours used:** [More Information Needed]
155
+ - **Cloud Provider:** [More Information Needed]
156
+ - **Compute Region:** [More Information Needed]
157
+ - **Carbon Emitted:** [More Information Needed]
158
+
159
+ ## Technical Specifications [optional]
160
+
161
+ ### Model Architecture and Objective
162
+
163
+ [More Information Needed]
164
+
165
+ ### Compute Infrastructure
166
+
167
+ [More Information Needed]
168
+
169
+ #### Hardware
170
+
171
+ [More Information Needed]
172
+
173
+ #### Software
174
+
175
+ [More Information Needed]
176
+
177
+ ## Citation [optional]
178
+
179
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
180
+
181
+ **BibTeX:**
182
+
183
+ [More Information Needed]
184
+
185
+ **APA:**
186
+
187
+ [More Information Needed]
188
+
189
+ ## Glossary [optional]
190
+
191
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
192
+
193
+ [More Information Needed]
194
+
195
+ ## More Information [optional]
196
+
197
+ [More Information Needed]
198
+
199
+ ## Model Card Authors [optional]
200
+
201
+ [More Information Needed]
202
+
203
+ ## Model Card Contact
204
+
205
+ [More Information Needed]
206
+ ### Framework versions
207
+
208
+ - PEFT 0.16.0
checkpoint-62/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": null,
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": 64,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.1,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": [
22
+ "embed_tokens",
23
+ "lm_head"
24
+ ],
25
+ "peft_type": "LORA",
26
+ "qalora_group_size": 16,
27
+ "r": 32,
28
+ "rank_pattern": {},
29
+ "revision": null,
30
+ "target_modules": [
31
+ "k_proj",
32
+ "up_proj",
33
+ "down_proj",
34
+ "v_proj",
35
+ "lm_head",
36
+ "gate_proj",
37
+ "o_proj",
38
+ "q_proj",
39
+ "embed_tokens"
40
+ ],
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-62/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:065ec5086f99883c5df6e78a61ae7344b0c41795aefb9a3a862ec63dd5eb3002
3
+ size 2526966408
checkpoint-62/added_tokens.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "<image>": 151646,
3
+ "<video>": 151647,
4
+ "<|endoftext|>": 151643,
5
+ "<|im_end|>": 151645,
6
+ "<|im_start|>": 151644
7
+ }
checkpoint-62/chat_template.jinja ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
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 %}
checkpoint-62/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-62/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a39a4b6c5928154f3656e3186e45a7fa62f0eae22c77d24c3d49cfede73ccb2
3
+ size 9415913858
checkpoint-62/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:436ebb50e412d70300dc810eb548298a1f57bbdf0b1bcbf824884d07b71aac2b
3
+ size 14244
checkpoint-62/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e74f9b9ed0178bca9e7569779772c62079dd9a735258cb31079a11af41bdd6c
3
+ size 1064
checkpoint-62/special_tokens_map.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>"
5
+ ],
6
+ "eos_token": {
7
+ "content": "<|im_end|>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false
12
+ },
13
+ "pad_token": {
14
+ "content": "<|endoftext|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false
19
+ }
20
+ }
checkpoint-62/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22acdce2f613a63fdd5803fbf73706de47621ed05578ba2553482f4d59a3d611
3
+ size 11418802
checkpoint-62/tokenizer_config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "<image>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "151647": {
37
+ "content": "<video>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ }
44
+ },
45
+ "additional_special_tokens": [
46
+ "<|im_start|>",
47
+ "<|im_end|>"
48
+ ],
49
+ "bos_token": null,
50
+ "clean_up_tokenization_spaces": false,
51
+ "eos_token": "<|im_end|>",
52
+ "errors": "replace",
53
+ "extra_special_tokens": {},
54
+ "max_length": null,
55
+ "model_max_length": 131072,
56
+ "pad_to_multiple_of": null,
57
+ "pad_token": "<|endoftext|>",
58
+ "pad_token_type_id": 0,
59
+ "padding_side": "right",
60
+ "processor_class": "LlavaOnevisionProcessor",
61
+ "split_special_tokens": false,
62
+ "tokenizer_class": "Qwen2Tokenizer",
63
+ "unk_token": null
64
+ }
checkpoint-62/trainer_state.json ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 62,
3
+ "best_metric": 0.20991797745227814,
4
+ "best_model_checkpoint": "./llava_qlora_weather_model/checkpoint-62",
5
+ "epoch": 1.2673521850899743,
6
+ "eval_steps": 31,
7
+ "global_step": 62,
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.20565552699228792,
14
+ "grad_norm": 2.331812620162964,
15
+ "learning_rate": 0.0001999744599547812,
16
+ "loss": 1.3843,
17
+ "mean_token_accuracy": 0.6790310423821211,
18
+ "num_tokens": 1290816.0,
19
+ "step": 10
20
+ },
21
+ {
22
+ "epoch": 0.41131105398457585,
23
+ "grad_norm": 0.9054113030433655,
24
+ "learning_rate": 0.00019692540862655585,
25
+ "loss": 0.2958,
26
+ "mean_token_accuracy": 0.9068963050842285,
27
+ "num_tokens": 2581570.0,
28
+ "step": 20
29
+ },
30
+ {
31
+ "epoch": 0.6169665809768637,
32
+ "grad_norm": 0.7487640380859375,
33
+ "learning_rate": 0.00018894622845670283,
34
+ "loss": 0.2476,
35
+ "mean_token_accuracy": 0.917157232388854,
36
+ "num_tokens": 3872000.0,
37
+ "step": 30
38
+ },
39
+ {
40
+ "epoch": 0.6375321336760925,
41
+ "eval_loss": 0.23227548599243164,
42
+ "eval_mean_token_accuracy": 0.9232641770289495,
43
+ "eval_num_tokens": 4001060.0,
44
+ "eval_runtime": 276.5084,
45
+ "eval_samples_per_second": 0.705,
46
+ "eval_steps_per_second": 0.705,
47
+ "step": 31
48
+ },
49
+ {
50
+ "epoch": 0.8226221079691517,
51
+ "grad_norm": 0.6455361843109131,
52
+ "learning_rate": 0.0001764427819207624,
53
+ "loss": 0.2208,
54
+ "mean_token_accuracy": 0.9249804724007845,
55
+ "num_tokens": 5162524.0,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 1.0205655526992288,
60
+ "grad_norm": 0.5358895659446716,
61
+ "learning_rate": 0.00016005105914000507,
62
+ "loss": 0.2077,
63
+ "mean_token_accuracy": 0.929297363990313,
64
+ "num_tokens": 6405024.0,
65
+ "step": 50
66
+ },
67
+ {
68
+ "epoch": 1.2262210796915167,
69
+ "grad_norm": 0.5378326177597046,
70
+ "learning_rate": 0.00014060482812625055,
71
+ "loss": 0.1782,
72
+ "mean_token_accuracy": 0.9367100398987531,
73
+ "num_tokens": 7695653.0,
74
+ "step": 60
75
+ },
76
+ {
77
+ "epoch": 1.2673521850899743,
78
+ "eval_loss": 0.20991797745227814,
79
+ "eval_mean_token_accuracy": 0.9294621323927855,
80
+ "eval_num_tokens": 7953894.0,
81
+ "eval_runtime": 276.7899,
82
+ "eval_samples_per_second": 0.705,
83
+ "eval_steps_per_second": 0.705,
84
+ "step": 62
85
+ }
86
+ ],
87
+ "logging_steps": 10,
88
+ "max_steps": 147,
89
+ "num_input_tokens_seen": 0,
90
+ "num_train_epochs": 3,
91
+ "save_steps": 62,
92
+ "stateful_callbacks": {
93
+ "TrainerControl": {
94
+ "args": {
95
+ "should_epoch_stop": false,
96
+ "should_evaluate": false,
97
+ "should_log": false,
98
+ "should_save": true,
99
+ "should_training_stop": false
100
+ },
101
+ "attributes": {}
102
+ }
103
+ },
104
+ "total_flos": 3.8734472304842e+17,
105
+ "train_batch_size": 1,
106
+ "trial_name": null,
107
+ "trial_params": null
108
+ }
checkpoint-62/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49fff2d1203219cc878018833c87f658db4d4ce0e3b67c7202208dbe4d946cd8
3
+ size 5752