Upload LLaVA-OneVision weather satellite DoRA adapter
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +7 -0
- README.md +62 -0
- adapter_config.json +38 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +7 -0
- chat_template.jinja +6 -0
- checkpoint-100/README.md +209 -0
- checkpoint-100/adapter_config.json +38 -0
- checkpoint-100/adapter_model.safetensors +3 -0
- checkpoint-100/added_tokens.json +7 -0
- checkpoint-100/chat_template.jinja +6 -0
- checkpoint-100/merges.txt +0 -0
- checkpoint-100/optimizer.pt +3 -0
- checkpoint-100/rng_state.pth +3 -0
- checkpoint-100/scheduler.pt +3 -0
- checkpoint-100/special_tokens_map.json +20 -0
- checkpoint-100/tokenizer.json +3 -0
- checkpoint-100/tokenizer_config.json +64 -0
- checkpoint-100/trainer_state.json +164 -0
- checkpoint-100/training_args.bin +3 -0
- checkpoint-100/vocab.json +0 -0
- checkpoint-150/README.md +209 -0
- checkpoint-150/adapter_config.json +38 -0
- checkpoint-150/adapter_model.safetensors +3 -0
- checkpoint-150/added_tokens.json +7 -0
- checkpoint-150/chat_template.jinja +6 -0
- checkpoint-150/merges.txt +0 -0
- checkpoint-150/optimizer.pt +3 -0
- checkpoint-150/rng_state.pth +3 -0
- checkpoint-150/scheduler.pt +3 -0
- checkpoint-150/special_tokens_map.json +20 -0
- checkpoint-150/tokenizer.json +3 -0
- checkpoint-150/tokenizer_config.json +64 -0
- checkpoint-150/trainer_state.json +229 -0
- checkpoint-150/training_args.bin +3 -0
- checkpoint-150/vocab.json +0 -0
- checkpoint-200/README.md +209 -0
- checkpoint-200/adapter_config.json +38 -0
- checkpoint-200/adapter_model.safetensors +3 -0
- checkpoint-200/added_tokens.json +7 -0
- checkpoint-200/chat_template.jinja +6 -0
- checkpoint-200/merges.txt +0 -0
- checkpoint-200/optimizer.pt +3 -0
- checkpoint-200/rng_state.pth +3 -0
- checkpoint-200/scheduler.pt +3 -0
- checkpoint-200/special_tokens_map.json +20 -0
- checkpoint-200/tokenizer.json +3 -0
- checkpoint-200/tokenizer_config.json +64 -0
- checkpoint-200/trainer_state.json +294 -0
- 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: llava-hf/llava-onevision-qwen2-7b-ov-hf
|
3 |
+
library_name: peft
|
4 |
+
model_name: llava_dora_weather_model
|
5 |
+
tags:
|
6 |
+
- base_model:adapter:llava-hf/llava-onevision-qwen2-7b-ov-hf
|
7 |
+
- lora
|
8 |
+
- sft
|
9 |
+
- transformers
|
10 |
+
- trl
|
11 |
+
licence: license
|
12 |
+
pipeline_tag: text-generation
|
13 |
+
---
|
14 |
+
|
15 |
+
# Model Card for llava_dora_weather_model
|
16 |
+
|
17 |
+
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).
|
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/llava-onevision-dora-weather/runs/09qiypsh)
|
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.3
|
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": "llava-hf/llava-onevision-qwen2-7b-ov-hf",
|
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 |
+
"v_proj",
|
29 |
+
"q_proj",
|
30 |
+
"o_proj",
|
31 |
+
"k_proj"
|
32 |
+
],
|
33 |
+
"task_type": "CAUSAL_LM",
|
34 |
+
"trainable_token_indices": null,
|
35 |
+
"use_dora": true,
|
36 |
+
"use_qalora": false,
|
37 |
+
"use_rslora": false
|
38 |
+
}
|
adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c2008d98e89dbe34b1e38956e0b4601cf086ac0d8044ad98ffeeb8b8fcf16382
|
3 |
+
size 53239112
|
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-100/README.md
ADDED
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
- 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": "llava-hf/llava-onevision-qwen2-7b-ov-hf",
|
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 |
+
"v_proj",
|
29 |
+
"q_proj",
|
30 |
+
"o_proj",
|
31 |
+
"k_proj"
|
32 |
+
],
|
33 |
+
"task_type": "CAUSAL_LM",
|
34 |
+
"trainable_token_indices": null,
|
35 |
+
"use_dora": true,
|
36 |
+
"use_qalora": false,
|
37 |
+
"use_rslora": false
|
38 |
+
}
|
checkpoint-100/adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:60c0f47bf8e97bfb2329957b30552eaf288993a553aad4d0cc6037649dc07a29
|
3 |
+
size 53239112
|
checkpoint-100/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-100/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-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:68e1f19a0041ad4b7898317dee489e82becfc9ebb5207821b50fe6ab9bc3b49b
|
3 |
+
size 106775296
|
checkpoint-100/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:90e1a02341c12a5fdd53d49cd47f95d0762f9f640033fdb1c0b669e3b9e3d061
|
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,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-100/tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:22acdce2f613a63fdd5803fbf73706de47621ed05578ba2553482f4d59a3d611
|
3 |
+
size 11418802
|
checkpoint-100/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-100/trainer_state.json
ADDED
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_global_step": 100,
|
3 |
+
"best_metric": 0.26103895902633667,
|
4 |
+
"best_model_checkpoint": "./llava_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": 0.5152251720428467,
|
15 |
+
"learning_rate": 0.0001,
|
16 |
+
"loss": 2.0854,
|
17 |
+
"mean_token_accuracy": 0.5449784517288208,
|
18 |
+
"num_tokens": 645254.0,
|
19 |
+
"step": 10
|
20 |
+
},
|
21 |
+
{
|
22 |
+
"epoch": 0.20565552699228792,
|
23 |
+
"grad_norm": 0.8606380820274353,
|
24 |
+
"learning_rate": 0.0001,
|
25 |
+
"loss": 1.4846,
|
26 |
+
"mean_token_accuracy": 0.6233440130949021,
|
27 |
+
"num_tokens": 1290816.0,
|
28 |
+
"step": 20
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"epoch": 0.2570694087403599,
|
32 |
+
"eval_loss": 0.7531503438949585,
|
33 |
+
"eval_mean_token_accuracy": 0.7884166170389224,
|
34 |
+
"eval_num_tokens": 1613469.0,
|
35 |
+
"eval_runtime": 262.0989,
|
36 |
+
"eval_samples_per_second": 0.744,
|
37 |
+
"eval_steps_per_second": 0.744,
|
38 |
+
"step": 25
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"epoch": 0.30848329048843187,
|
42 |
+
"grad_norm": 0.7467573881149292,
|
43 |
+
"learning_rate": 0.0001,
|
44 |
+
"loss": 0.8003,
|
45 |
+
"mean_token_accuracy": 0.7741554424166679,
|
46 |
+
"num_tokens": 1936067.0,
|
47 |
+
"step": 30
|
48 |
+
},
|
49 |
+
{
|
50 |
+
"epoch": 0.41131105398457585,
|
51 |
+
"grad_norm": 0.35523706674575806,
|
52 |
+
"learning_rate": 0.0001,
|
53 |
+
"loss": 0.4382,
|
54 |
+
"mean_token_accuracy": 0.8741505913436413,
|
55 |
+
"num_tokens": 2581570.0,
|
56 |
+
"step": 40
|
57 |
+
},
|
58 |
+
{
|
59 |
+
"epoch": 0.5141388174807198,
|
60 |
+
"grad_norm": 0.3796336352825165,
|
61 |
+
"learning_rate": 0.0001,
|
62 |
+
"loss": 0.3519,
|
63 |
+
"mean_token_accuracy": 0.8941524222493171,
|
64 |
+
"num_tokens": 3226740.0,
|
65 |
+
"step": 50
|
66 |
+
},
|
67 |
+
{
|
68 |
+
"epoch": 0.5141388174807198,
|
69 |
+
"eval_loss": 0.33243268728256226,
|
70 |
+
"eval_mean_token_accuracy": 0.9004789113998413,
|
71 |
+
"eval_num_tokens": 3226740.0,
|
72 |
+
"eval_runtime": 262.0578,
|
73 |
+
"eval_samples_per_second": 0.744,
|
74 |
+
"eval_steps_per_second": 0.744,
|
75 |
+
"step": 50
|
76 |
+
},
|
77 |
+
{
|
78 |
+
"epoch": 0.6169665809768637,
|
79 |
+
"grad_norm": 0.37023383378982544,
|
80 |
+
"learning_rate": 0.0001,
|
81 |
+
"loss": 0.3303,
|
82 |
+
"mean_token_accuracy": 0.8990803204476834,
|
83 |
+
"num_tokens": 3872000.0,
|
84 |
+
"step": 60
|
85 |
+
},
|
86 |
+
{
|
87 |
+
"epoch": 0.7197943444730077,
|
88 |
+
"grad_norm": 0.4363132417201996,
|
89 |
+
"learning_rate": 0.0001,
|
90 |
+
"loss": 0.2998,
|
91 |
+
"mean_token_accuracy": 0.9075073637068272,
|
92 |
+
"num_tokens": 4517650.0,
|
93 |
+
"step": 70
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"epoch": 0.7712082262210797,
|
97 |
+
"eval_loss": 0.28144383430480957,
|
98 |
+
"eval_mean_token_accuracy": 0.9120607966031784,
|
99 |
+
"eval_num_tokens": 4840076.0,
|
100 |
+
"eval_runtime": 262.1457,
|
101 |
+
"eval_samples_per_second": 0.744,
|
102 |
+
"eval_steps_per_second": 0.744,
|
103 |
+
"step": 75
|
104 |
+
},
|
105 |
+
{
|
106 |
+
"epoch": 0.8226221079691517,
|
107 |
+
"grad_norm": 0.37328270077705383,
|
108 |
+
"learning_rate": 0.0001,
|
109 |
+
"loss": 0.2725,
|
110 |
+
"mean_token_accuracy": 0.9144053891301155,
|
111 |
+
"num_tokens": 5162524.0,
|
112 |
+
"step": 80
|
113 |
+
},
|
114 |
+
{
|
115 |
+
"epoch": 0.9254498714652957,
|
116 |
+
"grad_norm": 0.37761208415031433,
|
117 |
+
"learning_rate": 0.0001,
|
118 |
+
"loss": 0.2699,
|
119 |
+
"mean_token_accuracy": 0.914168405532837,
|
120 |
+
"num_tokens": 5808159.0,
|
121 |
+
"step": 90
|
122 |
+
},
|
123 |
+
{
|
124 |
+
"epoch": 1.0205655526992288,
|
125 |
+
"grad_norm": 0.4116646647453308,
|
126 |
+
"learning_rate": 0.0001,
|
127 |
+
"loss": 0.2577,
|
128 |
+
"mean_token_accuracy": 0.9184043850447681,
|
129 |
+
"num_tokens": 6405024.0,
|
130 |
+
"step": 100
|
131 |
+
},
|
132 |
+
{
|
133 |
+
"epoch": 1.0205655526992288,
|
134 |
+
"eval_loss": 0.26103895902633667,
|
135 |
+
"eval_mean_token_accuracy": 0.9167074130131648,
|
136 |
+
"eval_num_tokens": 6405024.0,
|
137 |
+
"eval_runtime": 262.2039,
|
138 |
+
"eval_samples_per_second": 0.744,
|
139 |
+
"eval_steps_per_second": 0.744,
|
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": 2.8815030313461965e+17,
|
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:89f1fe3f434674752ff42761b7dcdbf6116320f5a4ad9e8d736732e4ab05e75c
|
3 |
+
size 5816
|
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: 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 |
+
- 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": "llava-hf/llava-onevision-qwen2-7b-ov-hf",
|
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 |
+
"v_proj",
|
29 |
+
"q_proj",
|
30 |
+
"o_proj",
|
31 |
+
"k_proj"
|
32 |
+
],
|
33 |
+
"task_type": "CAUSAL_LM",
|
34 |
+
"trainable_token_indices": null,
|
35 |
+
"use_dora": true,
|
36 |
+
"use_qalora": false,
|
37 |
+
"use_rslora": false
|
38 |
+
}
|
checkpoint-150/adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c131a6b721cf32f852977ee09a79625cf5ca40854ed9f7c3f77ad41a45b1cf0f
|
3 |
+
size 53239112
|
checkpoint-150/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-150/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-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:4df92ab984e1913680d611d7dcea29cbe38afbc547cd76e2c8c40f7b0707348e
|
3 |
+
size 106775296
|
checkpoint-150/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7069701bb19b2602f94eff91aadf457a861795f0497bf873d0cbb12cab6d880c
|
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,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-150/tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:22acdce2f613a63fdd5803fbf73706de47621ed05578ba2553482f4d59a3d611
|
3 |
+
size 11418802
|
checkpoint-150/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-150/trainer_state.json
ADDED
@@ -0,0 +1,229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_global_step": 150,
|
3 |
+
"best_metric": 0.22957810759544373,
|
4 |
+
"best_model_checkpoint": "./llava_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": 0.5152251720428467,
|
15 |
+
"learning_rate": 0.0001,
|
16 |
+
"loss": 2.0854,
|
17 |
+
"mean_token_accuracy": 0.5449784517288208,
|
18 |
+
"num_tokens": 645254.0,
|
19 |
+
"step": 10
|
20 |
+
},
|
21 |
+
{
|
22 |
+
"epoch": 0.20565552699228792,
|
23 |
+
"grad_norm": 0.8606380820274353,
|
24 |
+
"learning_rate": 0.0001,
|
25 |
+
"loss": 1.4846,
|
26 |
+
"mean_token_accuracy": 0.6233440130949021,
|
27 |
+
"num_tokens": 1290816.0,
|
28 |
+
"step": 20
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"epoch": 0.2570694087403599,
|
32 |
+
"eval_loss": 0.7531503438949585,
|
33 |
+
"eval_mean_token_accuracy": 0.7884166170389224,
|
34 |
+
"eval_num_tokens": 1613469.0,
|
35 |
+
"eval_runtime": 262.0989,
|
36 |
+
"eval_samples_per_second": 0.744,
|
37 |
+
"eval_steps_per_second": 0.744,
|
38 |
+
"step": 25
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"epoch": 0.30848329048843187,
|
42 |
+
"grad_norm": 0.7467573881149292,
|
43 |
+
"learning_rate": 0.0001,
|
44 |
+
"loss": 0.8003,
|
45 |
+
"mean_token_accuracy": 0.7741554424166679,
|
46 |
+
"num_tokens": 1936067.0,
|
47 |
+
"step": 30
|
48 |
+
},
|
49 |
+
{
|
50 |
+
"epoch": 0.41131105398457585,
|
51 |
+
"grad_norm": 0.35523706674575806,
|
52 |
+
"learning_rate": 0.0001,
|
53 |
+
"loss": 0.4382,
|
54 |
+
"mean_token_accuracy": 0.8741505913436413,
|
55 |
+
"num_tokens": 2581570.0,
|
56 |
+
"step": 40
|
57 |
+
},
|
58 |
+
{
|
59 |
+
"epoch": 0.5141388174807198,
|
60 |
+
"grad_norm": 0.3796336352825165,
|
61 |
+
"learning_rate": 0.0001,
|
62 |
+
"loss": 0.3519,
|
63 |
+
"mean_token_accuracy": 0.8941524222493171,
|
64 |
+
"num_tokens": 3226740.0,
|
65 |
+
"step": 50
|
66 |
+
},
|
67 |
+
{
|
68 |
+
"epoch": 0.5141388174807198,
|
69 |
+
"eval_loss": 0.33243268728256226,
|
70 |
+
"eval_mean_token_accuracy": 0.9004789113998413,
|
71 |
+
"eval_num_tokens": 3226740.0,
|
72 |
+
"eval_runtime": 262.0578,
|
73 |
+
"eval_samples_per_second": 0.744,
|
74 |
+
"eval_steps_per_second": 0.744,
|
75 |
+
"step": 50
|
76 |
+
},
|
77 |
+
{
|
78 |
+
"epoch": 0.6169665809768637,
|
79 |
+
"grad_norm": 0.37023383378982544,
|
80 |
+
"learning_rate": 0.0001,
|
81 |
+
"loss": 0.3303,
|
82 |
+
"mean_token_accuracy": 0.8990803204476834,
|
83 |
+
"num_tokens": 3872000.0,
|
84 |
+
"step": 60
|
85 |
+
},
|
86 |
+
{
|
87 |
+
"epoch": 0.7197943444730077,
|
88 |
+
"grad_norm": 0.4363132417201996,
|
89 |
+
"learning_rate": 0.0001,
|
90 |
+
"loss": 0.2998,
|
91 |
+
"mean_token_accuracy": 0.9075073637068272,
|
92 |
+
"num_tokens": 4517650.0,
|
93 |
+
"step": 70
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"epoch": 0.7712082262210797,
|
97 |
+
"eval_loss": 0.28144383430480957,
|
98 |
+
"eval_mean_token_accuracy": 0.9120607966031784,
|
99 |
+
"eval_num_tokens": 4840076.0,
|
100 |
+
"eval_runtime": 262.1457,
|
101 |
+
"eval_samples_per_second": 0.744,
|
102 |
+
"eval_steps_per_second": 0.744,
|
103 |
+
"step": 75
|
104 |
+
},
|
105 |
+
{
|
106 |
+
"epoch": 0.8226221079691517,
|
107 |
+
"grad_norm": 0.37328270077705383,
|
108 |
+
"learning_rate": 0.0001,
|
109 |
+
"loss": 0.2725,
|
110 |
+
"mean_token_accuracy": 0.9144053891301155,
|
111 |
+
"num_tokens": 5162524.0,
|
112 |
+
"step": 80
|
113 |
+
},
|
114 |
+
{
|
115 |
+
"epoch": 0.9254498714652957,
|
116 |
+
"grad_norm": 0.37761208415031433,
|
117 |
+
"learning_rate": 0.0001,
|
118 |
+
"loss": 0.2699,
|
119 |
+
"mean_token_accuracy": 0.914168405532837,
|
120 |
+
"num_tokens": 5808159.0,
|
121 |
+
"step": 90
|
122 |
+
},
|
123 |
+
{
|
124 |
+
"epoch": 1.0205655526992288,
|
125 |
+
"grad_norm": 0.4116646647453308,
|
126 |
+
"learning_rate": 0.0001,
|
127 |
+
"loss": 0.2577,
|
128 |
+
"mean_token_accuracy": 0.9184043850447681,
|
129 |
+
"num_tokens": 6405024.0,
|
130 |
+
"step": 100
|
131 |
+
},
|
132 |
+
{
|
133 |
+
"epoch": 1.0205655526992288,
|
134 |
+
"eval_loss": 0.26103895902633667,
|
135 |
+
"eval_mean_token_accuracy": 0.9167074130131648,
|
136 |
+
"eval_num_tokens": 6405024.0,
|
137 |
+
"eval_runtime": 262.2039,
|
138 |
+
"eval_samples_per_second": 0.744,
|
139 |
+
"eval_steps_per_second": 0.744,
|
140 |
+
"step": 100
|
141 |
+
},
|
142 |
+
{
|
143 |
+
"epoch": 1.1233933161953726,
|
144 |
+
"grad_norm": 0.47321799397468567,
|
145 |
+
"learning_rate": 0.0001,
|
146 |
+
"loss": 0.2496,
|
147 |
+
"mean_token_accuracy": 0.9199652373790741,
|
148 |
+
"num_tokens": 7050233.0,
|
149 |
+
"step": 110
|
150 |
+
},
|
151 |
+
{
|
152 |
+
"epoch": 1.2262210796915167,
|
153 |
+
"grad_norm": 0.43690064549446106,
|
154 |
+
"learning_rate": 0.0001,
|
155 |
+
"loss": 0.2435,
|
156 |
+
"mean_token_accuracy": 0.9212526880204678,
|
157 |
+
"num_tokens": 7695653.0,
|
158 |
+
"step": 120
|
159 |
+
},
|
160 |
+
{
|
161 |
+
"epoch": 1.2776349614395888,
|
162 |
+
"eval_loss": 0.23867399990558624,
|
163 |
+
"eval_mean_token_accuracy": 0.9220352160624968,
|
164 |
+
"eval_num_tokens": 8018413.0,
|
165 |
+
"eval_runtime": 262.0533,
|
166 |
+
"eval_samples_per_second": 0.744,
|
167 |
+
"eval_steps_per_second": 0.744,
|
168 |
+
"step": 125
|
169 |
+
},
|
170 |
+
{
|
171 |
+
"epoch": 1.3290488431876606,
|
172 |
+
"grad_norm": 0.4848271608352661,
|
173 |
+
"learning_rate": 0.0001,
|
174 |
+
"loss": 0.2325,
|
175 |
+
"mean_token_accuracy": 0.9234701178967952,
|
176 |
+
"num_tokens": 8341317.0,
|
177 |
+
"step": 130
|
178 |
+
},
|
179 |
+
{
|
180 |
+
"epoch": 1.4318766066838047,
|
181 |
+
"grad_norm": 0.471851110458374,
|
182 |
+
"learning_rate": 0.0001,
|
183 |
+
"loss": 0.2214,
|
184 |
+
"mean_token_accuracy": 0.9266947895288468,
|
185 |
+
"num_tokens": 8986431.0,
|
186 |
+
"step": 140
|
187 |
+
},
|
188 |
+
{
|
189 |
+
"epoch": 1.5347043701799485,
|
190 |
+
"grad_norm": 0.4235078692436218,
|
191 |
+
"learning_rate": 0.0001,
|
192 |
+
"loss": 0.2204,
|
193 |
+
"mean_token_accuracy": 0.9253557249903679,
|
194 |
+
"num_tokens": 9631882.0,
|
195 |
+
"step": 150
|
196 |
+
},
|
197 |
+
{
|
198 |
+
"epoch": 1.5347043701799485,
|
199 |
+
"eval_loss": 0.22957810759544373,
|
200 |
+
"eval_mean_token_accuracy": 0.9235361132866297,
|
201 |
+
"eval_num_tokens": 9631882.0,
|
202 |
+
"eval_runtime": 262.1591,
|
203 |
+
"eval_samples_per_second": 0.744,
|
204 |
+
"eval_steps_per_second": 0.744,
|
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": 4.3332073666810406e+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:89f1fe3f434674752ff42761b7dcdbf6116320f5a4ad9e8d736732e4ab05e75c
|
3 |
+
size 5816
|
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: 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 |
+
- 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": "llava-hf/llava-onevision-qwen2-7b-ov-hf",
|
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 |
+
"v_proj",
|
29 |
+
"q_proj",
|
30 |
+
"o_proj",
|
31 |
+
"k_proj"
|
32 |
+
],
|
33 |
+
"task_type": "CAUSAL_LM",
|
34 |
+
"trainable_token_indices": null,
|
35 |
+
"use_dora": true,
|
36 |
+
"use_qalora": false,
|
37 |
+
"use_rslora": false
|
38 |
+
}
|
checkpoint-200/adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:db5ae50cc079c6d79fc0fc743fc1ba954dc7b62d1a88d112d8a401e356a64d92
|
3 |
+
size 53239112
|
checkpoint-200/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-200/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-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:417a627da803614520c1a2b0841c170633bdc9f59a2a35b16e4db374db9cf683
|
3 |
+
size 106775296
|
checkpoint-200/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1e27bc1caa861384209f0c7f33514d4f9a979391846e9df83276b128300dab0f
|
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,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-200/tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:22acdce2f613a63fdd5803fbf73706de47621ed05578ba2553482f4d59a3d611
|
3 |
+
size 11418802
|
checkpoint-200/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-200/trainer_state.json
ADDED
@@ -0,0 +1,294 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_global_step": 200,
|
3 |
+
"best_metric": 0.21981394290924072,
|
4 |
+
"best_model_checkpoint": "./llava_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": 0.5152251720428467,
|
15 |
+
"learning_rate": 0.0001,
|
16 |
+
"loss": 2.0854,
|
17 |
+
"mean_token_accuracy": 0.5449784517288208,
|
18 |
+
"num_tokens": 645254.0,
|
19 |
+
"step": 10
|
20 |
+
},
|
21 |
+
{
|
22 |
+
"epoch": 0.20565552699228792,
|
23 |
+
"grad_norm": 0.8606380820274353,
|
24 |
+
"learning_rate": 0.0001,
|
25 |
+
"loss": 1.4846,
|
26 |
+
"mean_token_accuracy": 0.6233440130949021,
|
27 |
+
"num_tokens": 1290816.0,
|
28 |
+
"step": 20
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"epoch": 0.2570694087403599,
|
32 |
+
"eval_loss": 0.7531503438949585,
|
33 |
+
"eval_mean_token_accuracy": 0.7884166170389224,
|
34 |
+
"eval_num_tokens": 1613469.0,
|
35 |
+
"eval_runtime": 262.0989,
|
36 |
+
"eval_samples_per_second": 0.744,
|
37 |
+
"eval_steps_per_second": 0.744,
|
38 |
+
"step": 25
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"epoch": 0.30848329048843187,
|
42 |
+
"grad_norm": 0.7467573881149292,
|
43 |
+
"learning_rate": 0.0001,
|
44 |
+
"loss": 0.8003,
|
45 |
+
"mean_token_accuracy": 0.7741554424166679,
|
46 |
+
"num_tokens": 1936067.0,
|
47 |
+
"step": 30
|
48 |
+
},
|
49 |
+
{
|
50 |
+
"epoch": 0.41131105398457585,
|
51 |
+
"grad_norm": 0.35523706674575806,
|
52 |
+
"learning_rate": 0.0001,
|
53 |
+
"loss": 0.4382,
|
54 |
+
"mean_token_accuracy": 0.8741505913436413,
|
55 |
+
"num_tokens": 2581570.0,
|
56 |
+
"step": 40
|
57 |
+
},
|
58 |
+
{
|
59 |
+
"epoch": 0.5141388174807198,
|
60 |
+
"grad_norm": 0.3796336352825165,
|
61 |
+
"learning_rate": 0.0001,
|
62 |
+
"loss": 0.3519,
|
63 |
+
"mean_token_accuracy": 0.8941524222493171,
|
64 |
+
"num_tokens": 3226740.0,
|
65 |
+
"step": 50
|
66 |
+
},
|
67 |
+
{
|
68 |
+
"epoch": 0.5141388174807198,
|
69 |
+
"eval_loss": 0.33243268728256226,
|
70 |
+
"eval_mean_token_accuracy": 0.9004789113998413,
|
71 |
+
"eval_num_tokens": 3226740.0,
|
72 |
+
"eval_runtime": 262.0578,
|
73 |
+
"eval_samples_per_second": 0.744,
|
74 |
+
"eval_steps_per_second": 0.744,
|
75 |
+
"step": 50
|
76 |
+
},
|
77 |
+
{
|
78 |
+
"epoch": 0.6169665809768637,
|
79 |
+
"grad_norm": 0.37023383378982544,
|
80 |
+
"learning_rate": 0.0001,
|
81 |
+
"loss": 0.3303,
|
82 |
+
"mean_token_accuracy": 0.8990803204476834,
|
83 |
+
"num_tokens": 3872000.0,
|
84 |
+
"step": 60
|
85 |
+
},
|
86 |
+
{
|
87 |
+
"epoch": 0.7197943444730077,
|
88 |
+
"grad_norm": 0.4363132417201996,
|
89 |
+
"learning_rate": 0.0001,
|
90 |
+
"loss": 0.2998,
|
91 |
+
"mean_token_accuracy": 0.9075073637068272,
|
92 |
+
"num_tokens": 4517650.0,
|
93 |
+
"step": 70
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"epoch": 0.7712082262210797,
|
97 |
+
"eval_loss": 0.28144383430480957,
|
98 |
+
"eval_mean_token_accuracy": 0.9120607966031784,
|
99 |
+
"eval_num_tokens": 4840076.0,
|
100 |
+
"eval_runtime": 262.1457,
|
101 |
+
"eval_samples_per_second": 0.744,
|
102 |
+
"eval_steps_per_second": 0.744,
|
103 |
+
"step": 75
|
104 |
+
},
|
105 |
+
{
|
106 |
+
"epoch": 0.8226221079691517,
|
107 |
+
"grad_norm": 0.37328270077705383,
|
108 |
+
"learning_rate": 0.0001,
|
109 |
+
"loss": 0.2725,
|
110 |
+
"mean_token_accuracy": 0.9144053891301155,
|
111 |
+
"num_tokens": 5162524.0,
|
112 |
+
"step": 80
|
113 |
+
},
|
114 |
+
{
|
115 |
+
"epoch": 0.9254498714652957,
|
116 |
+
"grad_norm": 0.37761208415031433,
|
117 |
+
"learning_rate": 0.0001,
|
118 |
+
"loss": 0.2699,
|
119 |
+
"mean_token_accuracy": 0.914168405532837,
|
120 |
+
"num_tokens": 5808159.0,
|
121 |
+
"step": 90
|
122 |
+
},
|
123 |
+
{
|
124 |
+
"epoch": 1.0205655526992288,
|
125 |
+
"grad_norm": 0.4116646647453308,
|
126 |
+
"learning_rate": 0.0001,
|
127 |
+
"loss": 0.2577,
|
128 |
+
"mean_token_accuracy": 0.9184043850447681,
|
129 |
+
"num_tokens": 6405024.0,
|
130 |
+
"step": 100
|
131 |
+
},
|
132 |
+
{
|
133 |
+
"epoch": 1.0205655526992288,
|
134 |
+
"eval_loss": 0.26103895902633667,
|
135 |
+
"eval_mean_token_accuracy": 0.9167074130131648,
|
136 |
+
"eval_num_tokens": 6405024.0,
|
137 |
+
"eval_runtime": 262.2039,
|
138 |
+
"eval_samples_per_second": 0.744,
|
139 |
+
"eval_steps_per_second": 0.744,
|
140 |
+
"step": 100
|
141 |
+
},
|
142 |
+
{
|
143 |
+
"epoch": 1.1233933161953726,
|
144 |
+
"grad_norm": 0.47321799397468567,
|
145 |
+
"learning_rate": 0.0001,
|
146 |
+
"loss": 0.2496,
|
147 |
+
"mean_token_accuracy": 0.9199652373790741,
|
148 |
+
"num_tokens": 7050233.0,
|
149 |
+
"step": 110
|
150 |
+
},
|
151 |
+
{
|
152 |
+
"epoch": 1.2262210796915167,
|
153 |
+
"grad_norm": 0.43690064549446106,
|
154 |
+
"learning_rate": 0.0001,
|
155 |
+
"loss": 0.2435,
|
156 |
+
"mean_token_accuracy": 0.9212526880204678,
|
157 |
+
"num_tokens": 7695653.0,
|
158 |
+
"step": 120
|
159 |
+
},
|
160 |
+
{
|
161 |
+
"epoch": 1.2776349614395888,
|
162 |
+
"eval_loss": 0.23867399990558624,
|
163 |
+
"eval_mean_token_accuracy": 0.9220352160624968,
|
164 |
+
"eval_num_tokens": 8018413.0,
|
165 |
+
"eval_runtime": 262.0533,
|
166 |
+
"eval_samples_per_second": 0.744,
|
167 |
+
"eval_steps_per_second": 0.744,
|
168 |
+
"step": 125
|
169 |
+
},
|
170 |
+
{
|
171 |
+
"epoch": 1.3290488431876606,
|
172 |
+
"grad_norm": 0.4848271608352661,
|
173 |
+
"learning_rate": 0.0001,
|
174 |
+
"loss": 0.2325,
|
175 |
+
"mean_token_accuracy": 0.9234701178967952,
|
176 |
+
"num_tokens": 8341317.0,
|
177 |
+
"step": 130
|
178 |
+
},
|
179 |
+
{
|
180 |
+
"epoch": 1.4318766066838047,
|
181 |
+
"grad_norm": 0.471851110458374,
|
182 |
+
"learning_rate": 0.0001,
|
183 |
+
"loss": 0.2214,
|
184 |
+
"mean_token_accuracy": 0.9266947895288468,
|
185 |
+
"num_tokens": 8986431.0,
|
186 |
+
"step": 140
|
187 |
+
},
|
188 |
+
{
|
189 |
+
"epoch": 1.5347043701799485,
|
190 |
+
"grad_norm": 0.4235078692436218,
|
191 |
+
"learning_rate": 0.0001,
|
192 |
+
"loss": 0.2204,
|
193 |
+
"mean_token_accuracy": 0.9253557249903679,
|
194 |
+
"num_tokens": 9631882.0,
|
195 |
+
"step": 150
|
196 |
+
},
|
197 |
+
{
|
198 |
+
"epoch": 1.5347043701799485,
|
199 |
+
"eval_loss": 0.22957810759544373,
|
200 |
+
"eval_mean_token_accuracy": 0.9235361132866297,
|
201 |
+
"eval_num_tokens": 9631882.0,
|
202 |
+
"eval_runtime": 262.1591,
|
203 |
+
"eval_samples_per_second": 0.744,
|
204 |
+
"eval_steps_per_second": 0.744,
|
205 |
+
"step": 150
|
206 |
+
},
|
207 |
+
{
|
208 |
+
"epoch": 1.6375321336760926,
|
209 |
+
"grad_norm": 0.4376716613769531,
|
210 |
+
"learning_rate": 0.0001,
|
211 |
+
"loss": 0.2201,
|
212 |
+
"mean_token_accuracy": 0.9248783186078071,
|
213 |
+
"num_tokens": 10277533.0,
|
214 |
+
"step": 160
|
215 |
+
},
|
216 |
+
{
|
217 |
+
"epoch": 1.7403598971722365,
|
218 |
+
"grad_norm": 0.43904566764831543,
|
219 |
+
"learning_rate": 0.0001,
|
220 |
+
"loss": 0.2287,
|
221 |
+
"mean_token_accuracy": 0.9224192254245281,
|
222 |
+
"num_tokens": 10922895.0,
|
223 |
+
"step": 170
|
224 |
+
},
|
225 |
+
{
|
226 |
+
"epoch": 1.7917737789203085,
|
227 |
+
"eval_loss": 0.22500084340572357,
|
228 |
+
"eval_mean_token_accuracy": 0.9243928493597569,
|
229 |
+
"eval_num_tokens": 11245730.0,
|
230 |
+
"eval_runtime": 262.5112,
|
231 |
+
"eval_samples_per_second": 0.743,
|
232 |
+
"eval_steps_per_second": 0.743,
|
233 |
+
"step": 175
|
234 |
+
},
|
235 |
+
{
|
236 |
+
"epoch": 1.8431876606683804,
|
237 |
+
"grad_norm": 0.39153727889060974,
|
238 |
+
"learning_rate": 0.0001,
|
239 |
+
"loss": 0.2142,
|
240 |
+
"mean_token_accuracy": 0.9261229902505874,
|
241 |
+
"num_tokens": 11568708.0,
|
242 |
+
"step": 180
|
243 |
+
},
|
244 |
+
{
|
245 |
+
"epoch": 1.9460154241645244,
|
246 |
+
"grad_norm": 0.44200599193573,
|
247 |
+
"learning_rate": 0.0001,
|
248 |
+
"loss": 0.2144,
|
249 |
+
"mean_token_accuracy": 0.9287430047988892,
|
250 |
+
"num_tokens": 12213156.0,
|
251 |
+
"step": 190
|
252 |
+
},
|
253 |
+
{
|
254 |
+
"epoch": 2.0411311053984575,
|
255 |
+
"grad_norm": 0.40645667910575867,
|
256 |
+
"learning_rate": 0.0001,
|
257 |
+
"loss": 0.2113,
|
258 |
+
"mean_token_accuracy": 0.9269847950419864,
|
259 |
+
"num_tokens": 12809961.0,
|
260 |
+
"step": 200
|
261 |
+
},
|
262 |
+
{
|
263 |
+
"epoch": 2.0411311053984575,
|
264 |
+
"eval_loss": 0.21981394290924072,
|
265 |
+
"eval_mean_token_accuracy": 0.9264772112552936,
|
266 |
+
"eval_num_tokens": 12809961.0,
|
267 |
+
"eval_runtime": 262.3645,
|
268 |
+
"eval_samples_per_second": 0.743,
|
269 |
+
"eval_steps_per_second": 0.743,
|
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": 5.762966922985231e+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:89f1fe3f434674752ff42761b7dcdbf6116320f5a4ad9e8d736732e4ab05e75c
|
3 |
+
size 5816
|