Instructions to use chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-VL-8B-Instruct") model = PeftModel.from_pretrained(base_model, "chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b") - Transformers
How to use chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b
- SGLang
How to use chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b with Docker Model Runner:
docker model run hf.co/chancharikm/dpo_all_20251113_ep5_lr5e6_qwen3-vl-8b
Training in progress, step 39, checkpoint
Browse files- .gitattributes +1 -0
- checkpoint-39/README.md +208 -0
- checkpoint-39/adapter_config.json +48 -0
- checkpoint-39/adapter_model.safetensors +3 -0
- checkpoint-39/added_tokens.json +28 -0
- checkpoint-39/chat_template.jinja +120 -0
- checkpoint-39/merges.txt +0 -0
- checkpoint-39/optimizer.pt +3 -0
- checkpoint-39/preprocessor_config.json +39 -0
- checkpoint-39/rng_state_0.pth +3 -0
- checkpoint-39/rng_state_1.pth +3 -0
- checkpoint-39/rng_state_2.pth +3 -0
- checkpoint-39/rng_state_3.pth +3 -0
- checkpoint-39/rng_state_4.pth +3 -0
- checkpoint-39/rng_state_5.pth +3 -0
- checkpoint-39/rng_state_6.pth +3 -0
- checkpoint-39/rng_state_7.pth +3 -0
- checkpoint-39/scheduler.pt +3 -0
- checkpoint-39/special_tokens_map.json +31 -0
- checkpoint-39/tokenizer.json +3 -0
- checkpoint-39/tokenizer_config.json +241 -0
- checkpoint-39/trainer_state.json +619 -0
- checkpoint-39/training_args.bin +3 -0
- checkpoint-39/video_preprocessor_config.json +41 -0
- checkpoint-39/vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -35,3 +35,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
checkpoint-20/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
checkpoint-20/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
checkpoint-39/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
checkpoint-39/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3-VL-8B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:Qwen/Qwen3-VL-8B-Instruct
|
| 7 |
+
- llama-factory
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 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.17.1
|
checkpoint-39/adapter_config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "Qwen/Qwen3-VL-8B-Instruct",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
+
"fan_in_fan_out": false,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 32,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.0,
|
| 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 |
+
"gate_proj",
|
| 29 |
+
"k_proj",
|
| 30 |
+
"0.linear_fc2",
|
| 31 |
+
"1.linear_fc2",
|
| 32 |
+
"down_proj",
|
| 33 |
+
"0.linear_fc1",
|
| 34 |
+
"q_proj",
|
| 35 |
+
"2.linear_fc2",
|
| 36 |
+
"v_proj",
|
| 37 |
+
"up_proj",
|
| 38 |
+
"o_proj",
|
| 39 |
+
"2.linear_fc1",
|
| 40 |
+
"1.linear_fc1"
|
| 41 |
+
],
|
| 42 |
+
"target_parameters": null,
|
| 43 |
+
"task_type": "CAUSAL_LM",
|
| 44 |
+
"trainable_token_indices": null,
|
| 45 |
+
"use_dora": false,
|
| 46 |
+
"use_qalora": false,
|
| 47 |
+
"use_rslora": false
|
| 48 |
+
}
|
checkpoint-39/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5da2cc47f53d04e801165f0ac586543e0e2f8217546eef4478e1af5c53d1cca9
|
| 3 |
+
size 178105560
|
checkpoint-39/added_tokens.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|box_end|>": 151649,
|
| 9 |
+
"<|box_start|>": 151648,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|image_pad|>": 151655,
|
| 19 |
+
"<|object_ref_end|>": 151647,
|
| 20 |
+
"<|object_ref_start|>": 151646,
|
| 21 |
+
"<|quad_end|>": 151651,
|
| 22 |
+
"<|quad_start|>": 151650,
|
| 23 |
+
"<|repo_name|>": 151663,
|
| 24 |
+
"<|video_pad|>": 151656,
|
| 25 |
+
"<|vision_end|>": 151653,
|
| 26 |
+
"<|vision_pad|>": 151654,
|
| 27 |
+
"<|vision_start|>": 151652
|
| 28 |
+
}
|
checkpoint-39/chat_template.jinja
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{%- if messages[0].content is string %}
|
| 5 |
+
{{- messages[0].content }}
|
| 6 |
+
{%- else %}
|
| 7 |
+
{%- for content in messages[0].content %}
|
| 8 |
+
{%- if 'text' in content %}
|
| 9 |
+
{{- content.text }}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{%- endfor %}
|
| 12 |
+
{%- endif %}
|
| 13 |
+
{{- '\n\n' }}
|
| 14 |
+
{%- endif %}
|
| 15 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 16 |
+
{%- for tool in tools %}
|
| 17 |
+
{{- "\n" }}
|
| 18 |
+
{{- tool | tojson }}
|
| 19 |
+
{%- endfor %}
|
| 20 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 21 |
+
{%- else %}
|
| 22 |
+
{%- if messages[0].role == 'system' %}
|
| 23 |
+
{{- '<|im_start|>system\n' }}
|
| 24 |
+
{%- if messages[0].content is string %}
|
| 25 |
+
{{- messages[0].content }}
|
| 26 |
+
{%- else %}
|
| 27 |
+
{%- for content in messages[0].content %}
|
| 28 |
+
{%- if 'text' in content %}
|
| 29 |
+
{{- content.text }}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- endfor %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '<|im_end|>\n' }}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{%- endif %}
|
| 36 |
+
{%- set image_count = namespace(value=0) %}
|
| 37 |
+
{%- set video_count = namespace(value=0) %}
|
| 38 |
+
{%- for message in messages %}
|
| 39 |
+
{%- if message.role == "user" %}
|
| 40 |
+
{{- '<|im_start|>' + message.role + '\n' }}
|
| 41 |
+
{%- if message.content is string %}
|
| 42 |
+
{{- message.content }}
|
| 43 |
+
{%- else %}
|
| 44 |
+
{%- for content in message.content %}
|
| 45 |
+
{%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
|
| 46 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 47 |
+
{%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
|
| 48 |
+
<|vision_start|><|image_pad|><|vision_end|>
|
| 49 |
+
{%- elif content.type == 'video' or 'video' in content %}
|
| 50 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 51 |
+
{%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
|
| 52 |
+
<|vision_start|><|video_pad|><|vision_end|>
|
| 53 |
+
{%- elif 'text' in content %}
|
| 54 |
+
{{- content.text }}
|
| 55 |
+
{%- endif %}
|
| 56 |
+
{%- endfor %}
|
| 57 |
+
{%- endif %}
|
| 58 |
+
{{- '<|im_end|>\n' }}
|
| 59 |
+
{%- elif message.role == "assistant" %}
|
| 60 |
+
{{- '<|im_start|>' + message.role + '\n' }}
|
| 61 |
+
{%- if message.content is string %}
|
| 62 |
+
{{- message.content }}
|
| 63 |
+
{%- else %}
|
| 64 |
+
{%- for content_item in message.content %}
|
| 65 |
+
{%- if 'text' in content_item %}
|
| 66 |
+
{{- content_item.text }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{%- endfor %}
|
| 69 |
+
{%- endif %}
|
| 70 |
+
{%- if message.tool_calls %}
|
| 71 |
+
{%- for tool_call in message.tool_calls %}
|
| 72 |
+
{%- if (loop.first and message.content) or (not loop.first) %}
|
| 73 |
+
{{- '\n' }}
|
| 74 |
+
{%- endif %}
|
| 75 |
+
{%- if tool_call.function %}
|
| 76 |
+
{%- set tool_call = tool_call.function %}
|
| 77 |
+
{%- endif %}
|
| 78 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 79 |
+
{{- tool_call.name }}
|
| 80 |
+
{{- '", "arguments": ' }}
|
| 81 |
+
{%- if tool_call.arguments is string %}
|
| 82 |
+
{{- tool_call.arguments }}
|
| 83 |
+
{%- else %}
|
| 84 |
+
{{- tool_call.arguments | tojson }}
|
| 85 |
+
{%- endif %}
|
| 86 |
+
{{- '}\n</tool_call>' }}
|
| 87 |
+
{%- endfor %}
|
| 88 |
+
{%- endif %}
|
| 89 |
+
{{- '<|im_end|>\n' }}
|
| 90 |
+
{%- elif message.role == "tool" %}
|
| 91 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 92 |
+
{{- '<|im_start|>user' }}
|
| 93 |
+
{%- endif %}
|
| 94 |
+
{{- '\n<tool_response>\n' }}
|
| 95 |
+
{%- if message.content is string %}
|
| 96 |
+
{{- message.content }}
|
| 97 |
+
{%- else %}
|
| 98 |
+
{%- for content in message.content %}
|
| 99 |
+
{%- if content.type == 'image' or 'image' in content or 'image_url' in content %}
|
| 100 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 101 |
+
{%- if add_vision_id %}Picture {{ image_count.value }}: {% endif -%}
|
| 102 |
+
<|vision_start|><|image_pad|><|vision_end|>
|
| 103 |
+
{%- elif content.type == 'video' or 'video' in content %}
|
| 104 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 105 |
+
{%- if add_vision_id %}Video {{ video_count.value }}: {% endif -%}
|
| 106 |
+
<|vision_start|><|video_pad|><|vision_end|>
|
| 107 |
+
{%- elif 'text' in content %}
|
| 108 |
+
{{- content.text }}
|
| 109 |
+
{%- endif %}
|
| 110 |
+
{%- endfor %}
|
| 111 |
+
{%- endif %}
|
| 112 |
+
{{- '\n</tool_response>' }}
|
| 113 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 114 |
+
{{- '<|im_end|>\n' }}
|
| 115 |
+
{%- endif %}
|
| 116 |
+
{%- endif %}
|
| 117 |
+
{%- endfor %}
|
| 118 |
+
{%- if add_generation_prompt %}
|
| 119 |
+
{{- '<|im_start|>assistant\n' }}
|
| 120 |
+
{%- endif %}
|
checkpoint-39/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-39/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d4b52e9cc89537965f8b6128c8eb959523a039a910e8e807196553b941ee17f
|
| 3 |
+
size 356500527
|
checkpoint-39/preprocessor_config.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"crop_size": null,
|
| 3 |
+
"data_format": "channels_first",
|
| 4 |
+
"default_to_square": true,
|
| 5 |
+
"device": null,
|
| 6 |
+
"disable_grouping": null,
|
| 7 |
+
"do_center_crop": null,
|
| 8 |
+
"do_convert_rgb": true,
|
| 9 |
+
"do_normalize": true,
|
| 10 |
+
"do_pad": null,
|
| 11 |
+
"do_rescale": true,
|
| 12 |
+
"do_resize": true,
|
| 13 |
+
"image_mean": [
|
| 14 |
+
0.5,
|
| 15 |
+
0.5,
|
| 16 |
+
0.5
|
| 17 |
+
],
|
| 18 |
+
"image_processor_type": "Qwen2VLImageProcessorFast",
|
| 19 |
+
"image_std": [
|
| 20 |
+
0.5,
|
| 21 |
+
0.5,
|
| 22 |
+
0.5
|
| 23 |
+
],
|
| 24 |
+
"input_data_format": null,
|
| 25 |
+
"max_pixels": null,
|
| 26 |
+
"merge_size": 2,
|
| 27 |
+
"min_pixels": null,
|
| 28 |
+
"pad_size": null,
|
| 29 |
+
"patch_size": 16,
|
| 30 |
+
"processor_class": "Qwen3VLProcessor",
|
| 31 |
+
"resample": 3,
|
| 32 |
+
"rescale_factor": 0.00392156862745098,
|
| 33 |
+
"return_tensors": null,
|
| 34 |
+
"size": {
|
| 35 |
+
"longest_edge": 16777216,
|
| 36 |
+
"shortest_edge": 65536
|
| 37 |
+
},
|
| 38 |
+
"temporal_patch_size": 2
|
| 39 |
+
}
|
checkpoint-39/rng_state_0.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0d51a89f706019e82a1bece244691bbef31c0dc9544212f828d427b8052b077
|
| 3 |
+
size 16389
|
checkpoint-39/rng_state_1.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9db2a9d890a3bdfb6477301adcccedc994df442a5cf1f4f617b4737086e632ef
|
| 3 |
+
size 16389
|
checkpoint-39/rng_state_2.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:74f99367832c29a5aff6042c0dc14d87a3ffc16ce9cc6466678227421d213c43
|
| 3 |
+
size 16389
|
checkpoint-39/rng_state_3.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2984cd1dfb7f3fdddf5cc99bb1dab2759a14eef425d83154d76b310151f5d01c
|
| 3 |
+
size 16389
|
checkpoint-39/rng_state_4.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4cb1eac572046e66de7e9c52bba4d61d758728542e4fdc6d8b194a6c29e10f96
|
| 3 |
+
size 16389
|
checkpoint-39/rng_state_5.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:41da76e42d56dcd9ee4821dcdf66fd5f2e82e821081ec3e07cb7e1e952647992
|
| 3 |
+
size 16389
|
checkpoint-39/rng_state_6.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1ef332606e64d74e7d5d444ae550c6edf2fe161722c5d652fd47845e2aa1894
|
| 3 |
+
size 16389
|
checkpoint-39/rng_state_7.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f4b125a8a8f1fcea8543fd480628a947fbdff2ec9452d6a7be7e77a426d76b0c
|
| 3 |
+
size 16389
|
checkpoint-39/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1891a5a28a0a89a9312b2a7418246b38c0015388f2fd854ee7971b5aca8b893e
|
| 3 |
+
size 1465
|
checkpoint-39/special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
checkpoint-39/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
|
| 3 |
+
size 11422654
|
checkpoint-39/tokenizer_config.json
ADDED
|
@@ -0,0 +1,241 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"clean_up_tokenization_spaces": false,
|
| 231 |
+
"eos_token": "<|im_end|>",
|
| 232 |
+
"errors": "replace",
|
| 233 |
+
"extra_special_tokens": {},
|
| 234 |
+
"model_max_length": 262144,
|
| 235 |
+
"pad_token": "<|endoftext|>",
|
| 236 |
+
"padding_side": "right",
|
| 237 |
+
"processor_class": "Qwen3VLProcessor",
|
| 238 |
+
"split_special_tokens": false,
|
| 239 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 240 |
+
"unk_token": null
|
| 241 |
+
}
|
checkpoint-39/trainer_state.json
ADDED
|
@@ -0,0 +1,619 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 3.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 39,
|
| 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.08163265306122448,
|
| 14 |
+
"grad_norm": 1.025234580039978,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"logits/chosen": -2.375152349472046,
|
| 17 |
+
"logits/rejected": -2.394904375076294,
|
| 18 |
+
"logps/chosen": -84.37759399414062,
|
| 19 |
+
"logps/rejected": -96.84375,
|
| 20 |
+
"loss": 0.6931,
|
| 21 |
+
"rewards/accuracies": 0.0,
|
| 22 |
+
"rewards/chosen": 0.0,
|
| 23 |
+
"rewards/margins": 0.0,
|
| 24 |
+
"rewards/rejected": 0.0,
|
| 25 |
+
"step": 1
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"epoch": 0.16326530612244897,
|
| 29 |
+
"grad_norm": 1.1001588106155396,
|
| 30 |
+
"learning_rate": 2.5e-06,
|
| 31 |
+
"logits/chosen": -2.3984360694885254,
|
| 32 |
+
"logits/rejected": -2.4267055988311768,
|
| 33 |
+
"logps/chosen": -89.42276000976562,
|
| 34 |
+
"logps/rejected": -96.12063598632812,
|
| 35 |
+
"loss": 0.6931,
|
| 36 |
+
"rewards/accuracies": 0.0,
|
| 37 |
+
"rewards/chosen": 0.0,
|
| 38 |
+
"rewards/margins": 0.0,
|
| 39 |
+
"rewards/rejected": 0.0,
|
| 40 |
+
"step": 2
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"epoch": 0.24489795918367346,
|
| 44 |
+
"grad_norm": 1.0922303199768066,
|
| 45 |
+
"learning_rate": 5e-06,
|
| 46 |
+
"logits/chosen": -2.426487922668457,
|
| 47 |
+
"logits/rejected": -2.437016487121582,
|
| 48 |
+
"logps/chosen": -90.65304565429688,
|
| 49 |
+
"logps/rejected": -98.02507019042969,
|
| 50 |
+
"loss": 0.6942,
|
| 51 |
+
"rewards/accuracies": 0.48681640625,
|
| 52 |
+
"rewards/chosen": -0.004277409985661507,
|
| 53 |
+
"rewards/margins": -0.0012883469462394714,
|
| 54 |
+
"rewards/rejected": -0.0029890630394220352,
|
| 55 |
+
"step": 3
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"epoch": 0.32653061224489793,
|
| 59 |
+
"grad_norm": 1.0690197944641113,
|
| 60 |
+
"learning_rate": 7.500000000000001e-06,
|
| 61 |
+
"logits/chosen": -2.4016366004943848,
|
| 62 |
+
"logits/rejected": -2.404703378677368,
|
| 63 |
+
"logps/chosen": -88.64875793457031,
|
| 64 |
+
"logps/rejected": -100.15958404541016,
|
| 65 |
+
"loss": 0.6925,
|
| 66 |
+
"rewards/accuracies": 0.48828125,
|
| 67 |
+
"rewards/chosen": 0.0017670390661805868,
|
| 68 |
+
"rewards/margins": 0.0021676155738532543,
|
| 69 |
+
"rewards/rejected": -0.0004005763039458543,
|
| 70 |
+
"step": 4
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"epoch": 0.40816326530612246,
|
| 74 |
+
"grad_norm": 1.0020982027053833,
|
| 75 |
+
"learning_rate": 1e-05,
|
| 76 |
+
"logits/chosen": -2.405047655105591,
|
| 77 |
+
"logits/rejected": -2.4170143604278564,
|
| 78 |
+
"logps/chosen": -86.40444946289062,
|
| 79 |
+
"logps/rejected": -99.32535552978516,
|
| 80 |
+
"loss": 0.692,
|
| 81 |
+
"rewards/accuracies": 0.52099609375,
|
| 82 |
+
"rewards/chosen": 0.002238229615613818,
|
| 83 |
+
"rewards/margins": 0.003263898193836212,
|
| 84 |
+
"rewards/rejected": -0.001025668578222394,
|
| 85 |
+
"step": 5
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"epoch": 0.4897959183673469,
|
| 89 |
+
"grad_norm": 0.9774695038795471,
|
| 90 |
+
"learning_rate": 9.979871469976197e-06,
|
| 91 |
+
"logits/chosen": -2.387697696685791,
|
| 92 |
+
"logits/rejected": -2.40444278717041,
|
| 93 |
+
"logps/chosen": -88.27230072021484,
|
| 94 |
+
"logps/rejected": -96.35655212402344,
|
| 95 |
+
"loss": 0.6868,
|
| 96 |
+
"rewards/accuracies": 0.56005859375,
|
| 97 |
+
"rewards/chosen": 0.026464153081178665,
|
| 98 |
+
"rewards/margins": 0.013977548107504845,
|
| 99 |
+
"rewards/rejected": 0.01248660497367382,
|
| 100 |
+
"step": 6
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.5714285714285714,
|
| 104 |
+
"grad_norm": 0.9563448429107666,
|
| 105 |
+
"learning_rate": 9.91964794299315e-06,
|
| 106 |
+
"logits/chosen": -2.3706889152526855,
|
| 107 |
+
"logits/rejected": -2.395195722579956,
|
| 108 |
+
"logps/chosen": -85.99250793457031,
|
| 109 |
+
"logps/rejected": -96.60533905029297,
|
| 110 |
+
"loss": 0.6829,
|
| 111 |
+
"rewards/accuracies": 0.59912109375,
|
| 112 |
+
"rewards/chosen": 0.03764727711677551,
|
| 113 |
+
"rewards/margins": 0.02200627699494362,
|
| 114 |
+
"rewards/rejected": 0.015641000121831894,
|
| 115 |
+
"step": 7
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.6530612244897959,
|
| 119 |
+
"grad_norm": 1.0272670984268188,
|
| 120 |
+
"learning_rate": 9.819814303479268e-06,
|
| 121 |
+
"logits/chosen": -2.3650197982788086,
|
| 122 |
+
"logits/rejected": -2.365727424621582,
|
| 123 |
+
"logps/chosen": -89.17411804199219,
|
| 124 |
+
"logps/rejected": -104.6484146118164,
|
| 125 |
+
"loss": 0.6763,
|
| 126 |
+
"rewards/accuracies": 0.65966796875,
|
| 127 |
+
"rewards/chosen": 0.053641848266124725,
|
| 128 |
+
"rewards/margins": 0.03600878268480301,
|
| 129 |
+
"rewards/rejected": 0.017633063718676567,
|
| 130 |
+
"step": 8
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"epoch": 0.7346938775510204,
|
| 134 |
+
"grad_norm": 0.9614192247390747,
|
| 135 |
+
"learning_rate": 9.681174353198687e-06,
|
| 136 |
+
"logits/chosen": -2.3682937622070312,
|
| 137 |
+
"logits/rejected": -2.3996546268463135,
|
| 138 |
+
"logps/chosen": -84.27474975585938,
|
| 139 |
+
"logps/rejected": -93.97203063964844,
|
| 140 |
+
"loss": 0.6699,
|
| 141 |
+
"rewards/accuracies": 0.6728515625,
|
| 142 |
+
"rewards/chosen": 0.07653943449258804,
|
| 143 |
+
"rewards/margins": 0.05041676014661789,
|
| 144 |
+
"rewards/rejected": 0.026122674345970154,
|
| 145 |
+
"step": 9
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.8163265306122449,
|
| 149 |
+
"grad_norm": 0.9354036450386047,
|
| 150 |
+
"learning_rate": 9.504844339512096e-06,
|
| 151 |
+
"logits/chosen": -2.3933653831481934,
|
| 152 |
+
"logits/rejected": -2.3978521823883057,
|
| 153 |
+
"logps/chosen": -84.89434051513672,
|
| 154 |
+
"logps/rejected": -97.98092651367188,
|
| 155 |
+
"loss": 0.6657,
|
| 156 |
+
"rewards/accuracies": 0.68896484375,
|
| 157 |
+
"rewards/chosen": 0.10172732174396515,
|
| 158 |
+
"rewards/margins": 0.060384318232536316,
|
| 159 |
+
"rewards/rejected": 0.04134300351142883,
|
| 160 |
+
"step": 10
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"epoch": 0.8979591836734694,
|
| 164 |
+
"grad_norm": 0.9544646143913269,
|
| 165 |
+
"learning_rate": 9.292243968009332e-06,
|
| 166 |
+
"logits/chosen": -2.388801336288452,
|
| 167 |
+
"logits/rejected": -2.4009108543395996,
|
| 168 |
+
"logps/chosen": -87.04521179199219,
|
| 169 |
+
"logps/rejected": -99.57186889648438,
|
| 170 |
+
"loss": 0.6578,
|
| 171 |
+
"rewards/accuracies": 0.71240234375,
|
| 172 |
+
"rewards/chosen": 0.12685298919677734,
|
| 173 |
+
"rewards/margins": 0.07852301746606827,
|
| 174 |
+
"rewards/rejected": 0.048329971730709076,
|
| 175 |
+
"step": 11
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"epoch": 0.9795918367346939,
|
| 179 |
+
"grad_norm": 0.945184051990509,
|
| 180 |
+
"learning_rate": 9.045084971874738e-06,
|
| 181 |
+
"logits/chosen": -2.4180715084075928,
|
| 182 |
+
"logits/rejected": -2.4203011989593506,
|
| 183 |
+
"logps/chosen": -87.21138763427734,
|
| 184 |
+
"logps/rejected": -101.43778991699219,
|
| 185 |
+
"loss": 0.648,
|
| 186 |
+
"rewards/accuracies": 0.7294921875,
|
| 187 |
+
"rewards/chosen": 0.15163584053516388,
|
| 188 |
+
"rewards/margins": 0.10153679549694061,
|
| 189 |
+
"rewards/rejected": 0.05009904503822327,
|
| 190 |
+
"step": 12
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 1.0,
|
| 194 |
+
"grad_norm": 0.9313170909881592,
|
| 195 |
+
"learning_rate": 8.765357330018056e-06,
|
| 196 |
+
"logits/chosen": -2.4016616344451904,
|
| 197 |
+
"logits/rejected": -2.461811065673828,
|
| 198 |
+
"logps/chosen": -91.43336486816406,
|
| 199 |
+
"logps/rejected": -93.41850280761719,
|
| 200 |
+
"loss": 0.6428,
|
| 201 |
+
"rewards/accuracies": 0.71875,
|
| 202 |
+
"rewards/chosen": 0.1737888753414154,
|
| 203 |
+
"rewards/margins": 0.11637693643569946,
|
| 204 |
+
"rewards/rejected": 0.05741193890571594,
|
| 205 |
+
"step": 13
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"epoch": 1.0816326530612246,
|
| 209 |
+
"grad_norm": 0.879965603351593,
|
| 210 |
+
"learning_rate": 8.455313244934324e-06,
|
| 211 |
+
"logits/chosen": -2.3858630657196045,
|
| 212 |
+
"logits/rejected": -2.3951520919799805,
|
| 213 |
+
"logps/chosen": -84.2239761352539,
|
| 214 |
+
"logps/rejected": -97.90269470214844,
|
| 215 |
+
"loss": 0.6378,
|
| 216 |
+
"rewards/accuracies": 0.7109375,
|
| 217 |
+
"rewards/chosen": 0.19609522819519043,
|
| 218 |
+
"rewards/margins": 0.13054177165031433,
|
| 219 |
+
"rewards/rejected": 0.0655534565448761,
|
| 220 |
+
"step": 14
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 1.163265306122449,
|
| 224 |
+
"grad_norm": 0.8709496855735779,
|
| 225 |
+
"learning_rate": 8.117449009293668e-06,
|
| 226 |
+
"logits/chosen": -2.3995306491851807,
|
| 227 |
+
"logits/rejected": -2.4127840995788574,
|
| 228 |
+
"logps/chosen": -85.27073669433594,
|
| 229 |
+
"logps/rejected": -98.00736236572266,
|
| 230 |
+
"loss": 0.6306,
|
| 231 |
+
"rewards/accuracies": 0.7041015625,
|
| 232 |
+
"rewards/chosen": 0.21614021062850952,
|
| 233 |
+
"rewards/margins": 0.15087103843688965,
|
| 234 |
+
"rewards/rejected": 0.06526917964220047,
|
| 235 |
+
"step": 15
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 1.2448979591836735,
|
| 239 |
+
"grad_norm": 0.9011364579200745,
|
| 240 |
+
"learning_rate": 7.754484907260513e-06,
|
| 241 |
+
"logits/chosen": -2.3790643215179443,
|
| 242 |
+
"logits/rejected": -2.3908865451812744,
|
| 243 |
+
"logps/chosen": -93.4906234741211,
|
| 244 |
+
"logps/rejected": -104.75448608398438,
|
| 245 |
+
"loss": 0.6132,
|
| 246 |
+
"rewards/accuracies": 0.7509765625,
|
| 247 |
+
"rewards/chosen": 0.2497057020664215,
|
| 248 |
+
"rewards/margins": 0.19358570873737335,
|
| 249 |
+
"rewards/rejected": 0.05611998587846756,
|
| 250 |
+
"step": 16
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"epoch": 1.3265306122448979,
|
| 254 |
+
"grad_norm": 0.8256746530532837,
|
| 255 |
+
"learning_rate": 7.369343312364994e-06,
|
| 256 |
+
"logits/chosen": -2.4009318351745605,
|
| 257 |
+
"logits/rejected": -2.4279661178588867,
|
| 258 |
+
"logps/chosen": -86.41546630859375,
|
| 259 |
+
"logps/rejected": -96.96250915527344,
|
| 260 |
+
"loss": 0.6066,
|
| 261 |
+
"rewards/accuracies": 0.75,
|
| 262 |
+
"rewards/chosen": 0.27642762660980225,
|
| 263 |
+
"rewards/margins": 0.2144363969564438,
|
| 264 |
+
"rewards/rejected": 0.06199120730161667,
|
| 265 |
+
"step": 17
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"epoch": 1.4081632653061225,
|
| 269 |
+
"grad_norm": 0.8295791745185852,
|
| 270 |
+
"learning_rate": 6.965125158269619e-06,
|
| 271 |
+
"logits/chosen": -2.3977432250976562,
|
| 272 |
+
"logits/rejected": -2.4250879287719727,
|
| 273 |
+
"logps/chosen": -84.85093688964844,
|
| 274 |
+
"logps/rejected": -95.09344482421875,
|
| 275 |
+
"loss": 0.6024,
|
| 276 |
+
"rewards/accuracies": 0.76025390625,
|
| 277 |
+
"rewards/chosen": 0.27905529737472534,
|
| 278 |
+
"rewards/margins": 0.2258065789937973,
|
| 279 |
+
"rewards/rejected": 0.05324871465563774,
|
| 280 |
+
"step": 18
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 1.489795918367347,
|
| 284 |
+
"grad_norm": 0.7997666001319885,
|
| 285 |
+
"learning_rate": 6.545084971874738e-06,
|
| 286 |
+
"logits/chosen": -2.403979778289795,
|
| 287 |
+
"logits/rejected": -2.417026996612549,
|
| 288 |
+
"logps/chosen": -87.35746002197266,
|
| 289 |
+
"logps/rejected": -98.11820220947266,
|
| 290 |
+
"loss": 0.5982,
|
| 291 |
+
"rewards/accuracies": 0.74658203125,
|
| 292 |
+
"rewards/chosen": 0.2821013629436493,
|
| 293 |
+
"rewards/margins": 0.24028602242469788,
|
| 294 |
+
"rewards/rejected": 0.04181533679366112,
|
| 295 |
+
"step": 19
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"epoch": 1.5714285714285714,
|
| 299 |
+
"grad_norm": 0.8002594113349915,
|
| 300 |
+
"learning_rate": 6.112604669781572e-06,
|
| 301 |
+
"logits/chosen": -2.4007248878479004,
|
| 302 |
+
"logits/rejected": -2.4198200702667236,
|
| 303 |
+
"logps/chosen": -84.9500503540039,
|
| 304 |
+
"logps/rejected": -97.81690979003906,
|
| 305 |
+
"loss": 0.595,
|
| 306 |
+
"rewards/accuracies": 0.76416015625,
|
| 307 |
+
"rewards/chosen": 0.27880722284317017,
|
| 308 |
+
"rewards/margins": 0.24656042456626892,
|
| 309 |
+
"rewards/rejected": 0.03224681317806244,
|
| 310 |
+
"step": 20
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"epoch": 1.6530612244897958,
|
| 314 |
+
"grad_norm": 0.8049229383468628,
|
| 315 |
+
"learning_rate": 5.671166329088278e-06,
|
| 316 |
+
"logits/chosen": -2.4079902172088623,
|
| 317 |
+
"logits/rejected": -2.4213085174560547,
|
| 318 |
+
"logps/chosen": -84.05070495605469,
|
| 319 |
+
"logps/rejected": -98.56086730957031,
|
| 320 |
+
"loss": 0.5807,
|
| 321 |
+
"rewards/accuracies": 0.77001953125,
|
| 322 |
+
"rewards/chosen": 0.31120967864990234,
|
| 323 |
+
"rewards/margins": 0.29048869013786316,
|
| 324 |
+
"rewards/rejected": 0.0207209512591362,
|
| 325 |
+
"step": 21
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 1.7346938775510203,
|
| 329 |
+
"grad_norm": 0.7420709133148193,
|
| 330 |
+
"learning_rate": 5.224324151752575e-06,
|
| 331 |
+
"logits/chosen": -2.374910831451416,
|
| 332 |
+
"logits/rejected": -2.3909456729888916,
|
| 333 |
+
"logps/chosen": -85.0665283203125,
|
| 334 |
+
"logps/rejected": -94.95793151855469,
|
| 335 |
+
"loss": 0.573,
|
| 336 |
+
"rewards/accuracies": 0.76904296875,
|
| 337 |
+
"rewards/chosen": 0.3096790611743927,
|
| 338 |
+
"rewards/margins": 0.3134555518627167,
|
| 339 |
+
"rewards/rejected": -0.003776476252824068,
|
| 340 |
+
"step": 22
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"epoch": 1.816326530612245,
|
| 344 |
+
"grad_norm": 0.8085404634475708,
|
| 345 |
+
"learning_rate": 4.775675848247427e-06,
|
| 346 |
+
"logits/chosen": -2.3943331241607666,
|
| 347 |
+
"logits/rejected": -2.3917038440704346,
|
| 348 |
+
"logps/chosen": -81.59529876708984,
|
| 349 |
+
"logps/rejected": -101.07594299316406,
|
| 350 |
+
"loss": 0.5658,
|
| 351 |
+
"rewards/accuracies": 0.7763671875,
|
| 352 |
+
"rewards/chosen": 0.31912654638290405,
|
| 353 |
+
"rewards/margins": 0.33659279346466064,
|
| 354 |
+
"rewards/rejected": -0.017466213554143906,
|
| 355 |
+
"step": 23
|
| 356 |
+
},
|
| 357 |
+
{
|
| 358 |
+
"epoch": 1.8979591836734695,
|
| 359 |
+
"grad_norm": 0.7618703246116638,
|
| 360 |
+
"learning_rate": 4.3288336709117246e-06,
|
| 361 |
+
"logits/chosen": -2.415018320083618,
|
| 362 |
+
"logits/rejected": -2.427827835083008,
|
| 363 |
+
"logps/chosen": -77.54719543457031,
|
| 364 |
+
"logps/rejected": -92.66371154785156,
|
| 365 |
+
"loss": 0.5677,
|
| 366 |
+
"rewards/accuracies": 0.76513671875,
|
| 367 |
+
"rewards/chosen": 0.3132694661617279,
|
| 368 |
+
"rewards/margins": 0.33800169825553894,
|
| 369 |
+
"rewards/rejected": -0.024732256308197975,
|
| 370 |
+
"step": 24
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 1.9795918367346939,
|
| 374 |
+
"grad_norm": 0.7504754662513733,
|
| 375 |
+
"learning_rate": 3.887395330218429e-06,
|
| 376 |
+
"logits/chosen": -2.4105377197265625,
|
| 377 |
+
"logits/rejected": -2.4160754680633545,
|
| 378 |
+
"logps/chosen": -86.68771362304688,
|
| 379 |
+
"logps/rejected": -102.70646667480469,
|
| 380 |
+
"loss": 0.5621,
|
| 381 |
+
"rewards/accuracies": 0.76171875,
|
| 382 |
+
"rewards/chosen": 0.32979467511177063,
|
| 383 |
+
"rewards/margins": 0.35629236698150635,
|
| 384 |
+
"rewards/rejected": -0.026497643440961838,
|
| 385 |
+
"step": 25
|
| 386 |
+
},
|
| 387 |
+
{
|
| 388 |
+
"epoch": 2.0,
|
| 389 |
+
"grad_norm": 0.8305085897445679,
|
| 390 |
+
"learning_rate": 3.4549150281252635e-06,
|
| 391 |
+
"logits/chosen": -2.418914794921875,
|
| 392 |
+
"logits/rejected": -2.3890023231506348,
|
| 393 |
+
"logps/chosen": -82.30009460449219,
|
| 394 |
+
"logps/rejected": -107.8130874633789,
|
| 395 |
+
"loss": 0.5472,
|
| 396 |
+
"rewards/accuracies": 0.775390625,
|
| 397 |
+
"rewards/chosen": 0.33478865027427673,
|
| 398 |
+
"rewards/margins": 0.4053373336791992,
|
| 399 |
+
"rewards/rejected": -0.07054867595434189,
|
| 400 |
+
"step": 26
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"epoch": 2.0816326530612246,
|
| 404 |
+
"grad_norm": 0.6879741549491882,
|
| 405 |
+
"learning_rate": 3.0348748417303826e-06,
|
| 406 |
+
"logits/chosen": -2.4019358158111572,
|
| 407 |
+
"logits/rejected": -2.42034649848938,
|
| 408 |
+
"logps/chosen": -85.02958679199219,
|
| 409 |
+
"logps/rejected": -92.58648681640625,
|
| 410 |
+
"loss": 0.5549,
|
| 411 |
+
"rewards/accuracies": 0.7685546875,
|
| 412 |
+
"rewards/chosen": 0.3364284038543701,
|
| 413 |
+
"rewards/margins": 0.37677001953125,
|
| 414 |
+
"rewards/rejected": -0.04034162312746048,
|
| 415 |
+
"step": 27
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 2.163265306122449,
|
| 419 |
+
"grad_norm": 0.6818104982376099,
|
| 420 |
+
"learning_rate": 2.6306566876350072e-06,
|
| 421 |
+
"logits/chosen": -2.426608085632324,
|
| 422 |
+
"logits/rejected": -2.4133074283599854,
|
| 423 |
+
"logps/chosen": -84.07209014892578,
|
| 424 |
+
"logps/rejected": -100.91854858398438,
|
| 425 |
+
"loss": 0.5487,
|
| 426 |
+
"rewards/accuracies": 0.765625,
|
| 427 |
+
"rewards/chosen": 0.3244452476501465,
|
| 428 |
+
"rewards/margins": 0.40365907549858093,
|
| 429 |
+
"rewards/rejected": -0.07921378314495087,
|
| 430 |
+
"step": 28
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 2.2448979591836733,
|
| 434 |
+
"grad_norm": 0.6256771087646484,
|
| 435 |
+
"learning_rate": 2.245515092739488e-06,
|
| 436 |
+
"logits/chosen": -2.408965587615967,
|
| 437 |
+
"logits/rejected": -2.4255988597869873,
|
| 438 |
+
"logps/chosen": -84.29199981689453,
|
| 439 |
+
"logps/rejected": -94.82685089111328,
|
| 440 |
+
"loss": 0.5534,
|
| 441 |
+
"rewards/accuracies": 0.76171875,
|
| 442 |
+
"rewards/chosen": 0.31452280282974243,
|
| 443 |
+
"rewards/margins": 0.3928295075893402,
|
| 444 |
+
"rewards/rejected": -0.07830668240785599,
|
| 445 |
+
"step": 29
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"epoch": 2.326530612244898,
|
| 449 |
+
"grad_norm": 0.6441386938095093,
|
| 450 |
+
"learning_rate": 1.8825509907063328e-06,
|
| 451 |
+
"logits/chosen": -2.4270732402801514,
|
| 452 |
+
"logits/rejected": -2.4363362789154053,
|
| 453 |
+
"logps/chosen": -84.19268798828125,
|
| 454 |
+
"logps/rejected": -99.17901611328125,
|
| 455 |
+
"loss": 0.5486,
|
| 456 |
+
"rewards/accuracies": 0.7568359375,
|
| 457 |
+
"rewards/chosen": 0.3075709939002991,
|
| 458 |
+
"rewards/margins": 0.40655040740966797,
|
| 459 |
+
"rewards/rejected": -0.0989793911576271,
|
| 460 |
+
"step": 30
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 2.4081632653061225,
|
| 464 |
+
"grad_norm": 0.6837542653083801,
|
| 465 |
+
"learning_rate": 1.544686755065677e-06,
|
| 466 |
+
"logits/chosen": -2.4378089904785156,
|
| 467 |
+
"logits/rejected": -2.447333812713623,
|
| 468 |
+
"logps/chosen": -85.46794128417969,
|
| 469 |
+
"logps/rejected": -102.33061981201172,
|
| 470 |
+
"loss": 0.5394,
|
| 471 |
+
"rewards/accuracies": 0.76904296875,
|
| 472 |
+
"rewards/chosen": 0.34899264574050903,
|
| 473 |
+
"rewards/margins": 0.4352303743362427,
|
| 474 |
+
"rewards/rejected": -0.08623772114515305,
|
| 475 |
+
"step": 31
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"epoch": 2.489795918367347,
|
| 479 |
+
"grad_norm": 0.641403079032898,
|
| 480 |
+
"learning_rate": 1.234642669981946e-06,
|
| 481 |
+
"logits/chosen": -2.4003491401672363,
|
| 482 |
+
"logits/rejected": -2.4253716468811035,
|
| 483 |
+
"logps/chosen": -82.20948791503906,
|
| 484 |
+
"logps/rejected": -100.959228515625,
|
| 485 |
+
"loss": 0.5419,
|
| 486 |
+
"rewards/accuracies": 0.7587890625,
|
| 487 |
+
"rewards/chosen": 0.31559956073760986,
|
| 488 |
+
"rewards/margins": 0.4267823100090027,
|
| 489 |
+
"rewards/rejected": -0.11118277907371521,
|
| 490 |
+
"step": 32
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"epoch": 2.571428571428571,
|
| 494 |
+
"grad_norm": 0.6353703737258911,
|
| 495 |
+
"learning_rate": 9.549150281252633e-07,
|
| 496 |
+
"logits/chosen": -2.4461936950683594,
|
| 497 |
+
"logits/rejected": -2.4458184242248535,
|
| 498 |
+
"logps/chosen": -82.81317138671875,
|
| 499 |
+
"logps/rejected": -100.34042358398438,
|
| 500 |
+
"loss": 0.543,
|
| 501 |
+
"rewards/accuracies": 0.767578125,
|
| 502 |
+
"rewards/chosen": 0.3254584074020386,
|
| 503 |
+
"rewards/margins": 0.4274338185787201,
|
| 504 |
+
"rewards/rejected": -0.1019754409790039,
|
| 505 |
+
"step": 33
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 2.6530612244897958,
|
| 509 |
+
"grad_norm": 0.6294788718223572,
|
| 510 |
+
"learning_rate": 7.077560319906696e-07,
|
| 511 |
+
"logits/chosen": -2.4284801483154297,
|
| 512 |
+
"logits/rejected": -2.4406518936157227,
|
| 513 |
+
"logps/chosen": -84.2886734008789,
|
| 514 |
+
"logps/rejected": -101.47149658203125,
|
| 515 |
+
"loss": 0.5405,
|
| 516 |
+
"rewards/accuracies": 0.7626953125,
|
| 517 |
+
"rewards/chosen": 0.3171379864215851,
|
| 518 |
+
"rewards/margins": 0.4382990598678589,
|
| 519 |
+
"rewards/rejected": -0.1211610957980156,
|
| 520 |
+
"step": 34
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"epoch": 2.7346938775510203,
|
| 524 |
+
"grad_norm": 0.6576454043388367,
|
| 525 |
+
"learning_rate": 4.951556604879049e-07,
|
| 526 |
+
"logits/chosen": -2.418337821960449,
|
| 527 |
+
"logits/rejected": -2.4297537803649902,
|
| 528 |
+
"logps/chosen": -86.08992767333984,
|
| 529 |
+
"logps/rejected": -101.49446105957031,
|
| 530 |
+
"loss": 0.5321,
|
| 531 |
+
"rewards/accuracies": 0.779296875,
|
| 532 |
+
"rewards/chosen": 0.343488484621048,
|
| 533 |
+
"rewards/margins": 0.45854640007019043,
|
| 534 |
+
"rewards/rejected": -0.11505790799856186,
|
| 535 |
+
"step": 35
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 2.816326530612245,
|
| 539 |
+
"grad_norm": 0.6390217542648315,
|
| 540 |
+
"learning_rate": 3.18825646801314e-07,
|
| 541 |
+
"logits/chosen": -2.4269332885742188,
|
| 542 |
+
"logits/rejected": -2.4400625228881836,
|
| 543 |
+
"logps/chosen": -83.16020965576172,
|
| 544 |
+
"logps/rejected": -98.95231628417969,
|
| 545 |
+
"loss": 0.5411,
|
| 546 |
+
"rewards/accuracies": 0.76708984375,
|
| 547 |
+
"rewards/chosen": 0.32813936471939087,
|
| 548 |
+
"rewards/margins": 0.43710485100746155,
|
| 549 |
+
"rewards/rejected": -0.10896550118923187,
|
| 550 |
+
"step": 36
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 2.8979591836734695,
|
| 554 |
+
"grad_norm": 0.6718611121177673,
|
| 555 |
+
"learning_rate": 1.801856965207338e-07,
|
| 556 |
+
"logits/chosen": -2.4263319969177246,
|
| 557 |
+
"logits/rejected": -2.4267172813415527,
|
| 558 |
+
"logps/chosen": -84.72743225097656,
|
| 559 |
+
"logps/rejected": -101.02452850341797,
|
| 560 |
+
"loss": 0.5361,
|
| 561 |
+
"rewards/accuracies": 0.78076171875,
|
| 562 |
+
"rewards/chosen": 0.3393610715866089,
|
| 563 |
+
"rewards/margins": 0.4375483989715576,
|
| 564 |
+
"rewards/rejected": -0.09818730503320694,
|
| 565 |
+
"step": 37
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"epoch": 2.979591836734694,
|
| 569 |
+
"grad_norm": 0.6170840263366699,
|
| 570 |
+
"learning_rate": 8.035205700685167e-08,
|
| 571 |
+
"logits/chosen": -2.3982906341552734,
|
| 572 |
+
"logits/rejected": -2.412749767303467,
|
| 573 |
+
"logps/chosen": -87.18891143798828,
|
| 574 |
+
"logps/rejected": -101.30757141113281,
|
| 575 |
+
"loss": 0.5391,
|
| 576 |
+
"rewards/accuracies": 0.76416015625,
|
| 577 |
+
"rewards/chosen": 0.3484157621860504,
|
| 578 |
+
"rewards/margins": 0.4502694010734558,
|
| 579 |
+
"rewards/rejected": -0.1018536388874054,
|
| 580 |
+
"step": 38
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"epoch": 3.0,
|
| 584 |
+
"grad_norm": 0.7517494559288025,
|
| 585 |
+
"learning_rate": 2.012853002380466e-08,
|
| 586 |
+
"logits/chosen": -2.395568370819092,
|
| 587 |
+
"logits/rejected": -2.403677225112915,
|
| 588 |
+
"logps/chosen": -87.5918960571289,
|
| 589 |
+
"logps/rejected": -93.06141662597656,
|
| 590 |
+
"loss": 0.5331,
|
| 591 |
+
"rewards/accuracies": 0.798828125,
|
| 592 |
+
"rewards/chosen": 0.3457682132720947,
|
| 593 |
+
"rewards/margins": 0.44890642166137695,
|
| 594 |
+
"rewards/rejected": -0.10313821583986282,
|
| 595 |
+
"step": 39
|
| 596 |
+
}
|
| 597 |
+
],
|
| 598 |
+
"logging_steps": 1,
|
| 599 |
+
"max_steps": 39,
|
| 600 |
+
"num_input_tokens_seen": 0,
|
| 601 |
+
"num_train_epochs": 3,
|
| 602 |
+
"save_steps": 20,
|
| 603 |
+
"stateful_callbacks": {
|
| 604 |
+
"TrainerControl": {
|
| 605 |
+
"args": {
|
| 606 |
+
"should_epoch_stop": false,
|
| 607 |
+
"should_evaluate": false,
|
| 608 |
+
"should_log": false,
|
| 609 |
+
"should_save": true,
|
| 610 |
+
"should_training_stop": true
|
| 611 |
+
},
|
| 612 |
+
"attributes": {}
|
| 613 |
+
}
|
| 614 |
+
},
|
| 615 |
+
"total_flos": 7.297453798761431e+18,
|
| 616 |
+
"train_batch_size": 4,
|
| 617 |
+
"trial_name": null,
|
| 618 |
+
"trial_params": null
|
| 619 |
+
}
|
checkpoint-39/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d112b9ff7d213109bf7a0da3ac50415104a57c74a650d111677bfe8f40f67f5a
|
| 3 |
+
size 6289
|
checkpoint-39/video_preprocessor_config.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"crop_size": null,
|
| 3 |
+
"data_format": "channels_first",
|
| 4 |
+
"default_to_square": true,
|
| 5 |
+
"device": null,
|
| 6 |
+
"do_center_crop": null,
|
| 7 |
+
"do_convert_rgb": true,
|
| 8 |
+
"do_normalize": true,
|
| 9 |
+
"do_rescale": true,
|
| 10 |
+
"do_resize": true,
|
| 11 |
+
"do_sample_frames": true,
|
| 12 |
+
"fps": 2,
|
| 13 |
+
"image_mean": [
|
| 14 |
+
0.5,
|
| 15 |
+
0.5,
|
| 16 |
+
0.5
|
| 17 |
+
],
|
| 18 |
+
"image_std": [
|
| 19 |
+
0.5,
|
| 20 |
+
0.5,
|
| 21 |
+
0.5
|
| 22 |
+
],
|
| 23 |
+
"input_data_format": null,
|
| 24 |
+
"max_frames": 768,
|
| 25 |
+
"merge_size": 2,
|
| 26 |
+
"min_frames": 4,
|
| 27 |
+
"num_frames": null,
|
| 28 |
+
"pad_size": null,
|
| 29 |
+
"patch_size": 16,
|
| 30 |
+
"processor_class": "Qwen3VLProcessor",
|
| 31 |
+
"resample": 3,
|
| 32 |
+
"rescale_factor": 0.00392156862745098,
|
| 33 |
+
"return_metadata": false,
|
| 34 |
+
"size": {
|
| 35 |
+
"longest_edge": 25165824,
|
| 36 |
+
"shortest_edge": 4096
|
| 37 |
+
},
|
| 38 |
+
"temporal_patch_size": 2,
|
| 39 |
+
"video_metadata": null,
|
| 40 |
+
"video_processor_type": "Qwen3VLVideoProcessor"
|
| 41 |
+
}
|
checkpoint-39/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|