Instructions to use harshith0214/svg-lora-checkpoint800 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use harshith0214/svg-lora-checkpoint800 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/qwen2.5-7b-instruct-bnb-4bit") model = PeftModel.from_pretrained(base_model, "harshith0214/svg-lora-checkpoint800") - Transformers
How to use harshith0214/svg-lora-checkpoint800 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="harshith0214/svg-lora-checkpoint800") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("harshith0214/svg-lora-checkpoint800", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use harshith0214/svg-lora-checkpoint800 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "harshith0214/svg-lora-checkpoint800" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "harshith0214/svg-lora-checkpoint800", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/harshith0214/svg-lora-checkpoint800
- SGLang
How to use harshith0214/svg-lora-checkpoint800 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 "harshith0214/svg-lora-checkpoint800" \ --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": "harshith0214/svg-lora-checkpoint800", "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 "harshith0214/svg-lora-checkpoint800" \ --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": "harshith0214/svg-lora-checkpoint800", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio new
How to use harshith0214/svg-lora-checkpoint800 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for harshith0214/svg-lora-checkpoint800 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for harshith0214/svg-lora-checkpoint800 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for harshith0214/svg-lora-checkpoint800 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="harshith0214/svg-lora-checkpoint800", max_seq_length=2048, ) - Docker Model Runner
How to use harshith0214/svg-lora-checkpoint800 with Docker Model Runner:
docker model run hf.co/harshith0214/svg-lora-checkpoint800
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +210 -0
- adapter_config.json +50 -0
- adapter_model.safetensors +3 -0
- chat_template.jinja +54 -0
- optimizer.pt +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- tokenizer.json +3 -0
- tokenizer_config.json +15 -0
- trainer_state.json +346 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ 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 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/qwen2.5-7b-instruct-bnb-4bit
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/qwen2.5-7b-instruct-bnb-4bit
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- unsloth
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Model Card for Model ID
|
| 15 |
+
|
| 16 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## Model Details
|
| 21 |
+
|
| 22 |
+
### Model Description
|
| 23 |
+
|
| 24 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
- **Developed by:** [More Information Needed]
|
| 29 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 30 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 31 |
+
- **Model type:** [More Information Needed]
|
| 32 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
+
- **License:** [More Information Needed]
|
| 34 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
### Model Sources [optional]
|
| 37 |
+
|
| 38 |
+
<!-- Provide the basic links for the model. -->
|
| 39 |
+
|
| 40 |
+
- **Repository:** [More Information Needed]
|
| 41 |
+
- **Paper [optional]:** [More Information Needed]
|
| 42 |
+
- **Demo [optional]:** [More Information Needed]
|
| 43 |
+
|
| 44 |
+
## Uses
|
| 45 |
+
|
| 46 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 47 |
+
|
| 48 |
+
### Direct Use
|
| 49 |
+
|
| 50 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 51 |
+
|
| 52 |
+
[More Information Needed]
|
| 53 |
+
|
| 54 |
+
### Downstream Use [optional]
|
| 55 |
+
|
| 56 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 57 |
+
|
| 58 |
+
[More Information Needed]
|
| 59 |
+
|
| 60 |
+
### Out-of-Scope Use
|
| 61 |
+
|
| 62 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 63 |
+
|
| 64 |
+
[More Information Needed]
|
| 65 |
+
|
| 66 |
+
## Bias, Risks, and Limitations
|
| 67 |
+
|
| 68 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 69 |
+
|
| 70 |
+
[More Information Needed]
|
| 71 |
+
|
| 72 |
+
### Recommendations
|
| 73 |
+
|
| 74 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 75 |
+
|
| 76 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 77 |
+
|
| 78 |
+
## How to Get Started with the Model
|
| 79 |
+
|
| 80 |
+
Use the code below to get started with the model.
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
## Training Details
|
| 85 |
+
|
| 86 |
+
### Training Data
|
| 87 |
+
|
| 88 |
+
<!-- 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. -->
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
### Training Procedure
|
| 93 |
+
|
| 94 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 95 |
+
|
| 96 |
+
#### Preprocessing [optional]
|
| 97 |
+
|
| 98 |
+
[More Information Needed]
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
#### Training Hyperparameters
|
| 102 |
+
|
| 103 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 104 |
+
|
| 105 |
+
#### Speeds, Sizes, Times [optional]
|
| 106 |
+
|
| 107 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 108 |
+
|
| 109 |
+
[More Information Needed]
|
| 110 |
+
|
| 111 |
+
## Evaluation
|
| 112 |
+
|
| 113 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 114 |
+
|
| 115 |
+
### Testing Data, Factors & Metrics
|
| 116 |
+
|
| 117 |
+
#### Testing Data
|
| 118 |
+
|
| 119 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 120 |
+
|
| 121 |
+
[More Information Needed]
|
| 122 |
+
|
| 123 |
+
#### Factors
|
| 124 |
+
|
| 125 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 126 |
+
|
| 127 |
+
[More Information Needed]
|
| 128 |
+
|
| 129 |
+
#### Metrics
|
| 130 |
+
|
| 131 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
### Results
|
| 136 |
+
|
| 137 |
+
[More Information Needed]
|
| 138 |
+
|
| 139 |
+
#### Summary
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
|
| 143 |
+
## Model Examination [optional]
|
| 144 |
+
|
| 145 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 146 |
+
|
| 147 |
+
[More Information Needed]
|
| 148 |
+
|
| 149 |
+
## Environmental Impact
|
| 150 |
+
|
| 151 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 152 |
+
|
| 153 |
+
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).
|
| 154 |
+
|
| 155 |
+
- **Hardware Type:** [More Information Needed]
|
| 156 |
+
- **Hours used:** [More Information Needed]
|
| 157 |
+
- **Cloud Provider:** [More Information Needed]
|
| 158 |
+
- **Compute Region:** [More Information Needed]
|
| 159 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
+
|
| 161 |
+
## Technical Specifications [optional]
|
| 162 |
+
|
| 163 |
+
### Model Architecture and Objective
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
### Compute Infrastructure
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Hardware
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
#### Software
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
## Citation [optional]
|
| 180 |
+
|
| 181 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 182 |
+
|
| 183 |
+
**BibTeX:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
**APA:**
|
| 188 |
+
|
| 189 |
+
[More Information Needed]
|
| 190 |
+
|
| 191 |
+
## Glossary [optional]
|
| 192 |
+
|
| 193 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## More Information [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Authors [optional]
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
|
| 205 |
+
## Model Card Contact
|
| 206 |
+
|
| 207 |
+
[More Information Needed]
|
| 208 |
+
### Framework versions
|
| 209 |
+
|
| 210 |
+
- PEFT 0.18.1
|
adapter_config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "Qwen2ForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.qwen2.modeling_qwen2",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/qwen2.5-7b-instruct-bnb-4bit",
|
| 11 |
+
"bias": "none",
|
| 12 |
+
"corda_config": null,
|
| 13 |
+
"ensure_weight_tying": false,
|
| 14 |
+
"eva_config": null,
|
| 15 |
+
"exclude_modules": null,
|
| 16 |
+
"fan_in_fan_out": false,
|
| 17 |
+
"inference_mode": true,
|
| 18 |
+
"init_lora_weights": true,
|
| 19 |
+
"layer_replication": null,
|
| 20 |
+
"layers_pattern": null,
|
| 21 |
+
"layers_to_transform": null,
|
| 22 |
+
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 32,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0,
|
| 26 |
+
"megatron_config": null,
|
| 27 |
+
"megatron_core": "megatron.core",
|
| 28 |
+
"modules_to_save": null,
|
| 29 |
+
"peft_type": "LORA",
|
| 30 |
+
"peft_version": "0.18.1",
|
| 31 |
+
"qalora_group_size": 16,
|
| 32 |
+
"r": 32,
|
| 33 |
+
"rank_pattern": {},
|
| 34 |
+
"revision": null,
|
| 35 |
+
"target_modules": [
|
| 36 |
+
"down_proj",
|
| 37 |
+
"v_proj",
|
| 38 |
+
"up_proj",
|
| 39 |
+
"gate_proj",
|
| 40 |
+
"q_proj",
|
| 41 |
+
"o_proj",
|
| 42 |
+
"k_proj"
|
| 43 |
+
],
|
| 44 |
+
"target_parameters": null,
|
| 45 |
+
"task_type": "CAUSAL_LM",
|
| 46 |
+
"trainable_token_indices": null,
|
| 47 |
+
"use_dora": false,
|
| 48 |
+
"use_qalora": false,
|
| 49 |
+
"use_rslora": false
|
| 50 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c36a1ad4987f8f2b5ebabb4c8fafab3db26882f667eaa2a6e7e34dbd2d687910
|
| 3 |
+
size 323014168
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 4 |
+
{{- messages[0]['content'] }}
|
| 5 |
+
{%- else %}
|
| 6 |
+
{{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
+
{%- for tool in tools %}
|
| 10 |
+
{{- "\n" }}
|
| 11 |
+
{{- tool | tojson }}
|
| 12 |
+
{%- endfor %}
|
| 13 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
+
{%- else %}
|
| 15 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 16 |
+
{{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endif %}
|
| 21 |
+
{%- for message in messages %}
|
| 22 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
|
| 23 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 24 |
+
{%- elif message.role == "assistant" %}
|
| 25 |
+
{{- '<|im_start|>' + message.role }}
|
| 26 |
+
{%- if message.content %}
|
| 27 |
+
{{- '\n' + message.content }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{%- for tool_call in message.tool_calls %}
|
| 30 |
+
{%- if tool_call.function is defined %}
|
| 31 |
+
{%- set tool_call = tool_call.function %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '\n<tool_call>\n{"name": "' }}
|
| 34 |
+
{{- tool_call.name }}
|
| 35 |
+
{{- '", "arguments": ' }}
|
| 36 |
+
{{- tool_call.arguments | tojson }}
|
| 37 |
+
{{- '}\n</tool_call>' }}
|
| 38 |
+
{%- endfor %}
|
| 39 |
+
{{- '<|im_end|>\n' }}
|
| 40 |
+
{%- elif message.role == "tool" %}
|
| 41 |
+
{%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
|
| 42 |
+
{{- '<|im_start|>user' }}
|
| 43 |
+
{%- endif %}
|
| 44 |
+
{{- '\n<tool_response>\n' }}
|
| 45 |
+
{{- message.content }}
|
| 46 |
+
{{- '\n</tool_response>' }}
|
| 47 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 48 |
+
{{- '<|im_end|>\n' }}
|
| 49 |
+
{%- endif %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{%- if add_generation_prompt %}
|
| 53 |
+
{{- '<|im_start|>assistant\n' }}
|
| 54 |
+
{%- endif %}
|
optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7377d06ee92cbeaf2973793674ad9a31a640539270a606fd1f4ef967a74ff8fe
|
| 3 |
+
size 164477509
|
rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:718a0f3db00824213036a2c0441849791319b7d9cf189065873bb26a7020738e
|
| 3 |
+
size 14645
|
scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8fbef07fe83f65b9a9b2dfe4cd16e244a21721410982d88a578d50c235f4409a
|
| 3 |
+
size 1465
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bd5948af71b4f56cf697f7580814c7ce8b80595ef985544efcacf716126a2e31
|
| 3 |
+
size 11422356
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"is_local": false,
|
| 9 |
+
"model_max_length": 32768,
|
| 10 |
+
"pad_token": "<|PAD_TOKEN|>",
|
| 11 |
+
"padding_side": "right",
|
| 12 |
+
"split_special_tokens": false,
|
| 13 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 14 |
+
"unk_token": null
|
| 15 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,346 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.8764721993974254,
|
| 6 |
+
"eval_steps": 200,
|
| 7 |
+
"global_step": 800,
|
| 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.021911804984935633,
|
| 14 |
+
"grad_norm": 0.14338380098342896,
|
| 15 |
+
"learning_rate": 7.6e-05,
|
| 16 |
+
"loss": 0.578131914138794,
|
| 17 |
+
"step": 20
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.043823609969871266,
|
| 21 |
+
"grad_norm": 0.043006837368011475,
|
| 22 |
+
"learning_rate": 0.00015600000000000002,
|
| 23 |
+
"loss": 0.3712817430496216,
|
| 24 |
+
"step": 40
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.0657354149548069,
|
| 28 |
+
"grad_norm": 0.05703941732645035,
|
| 29 |
+
"learning_rate": 0.00019994633460515538,
|
| 30 |
+
"loss": 0.3367295265197754,
|
| 31 |
+
"step": 60
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.08764721993974253,
|
| 35 |
+
"grad_norm": 0.04901430010795593,
|
| 36 |
+
"learning_rate": 0.00019944327493951773,
|
| 37 |
+
"loss": 0.3087886571884155,
|
| 38 |
+
"step": 80
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.10955902492467817,
|
| 42 |
+
"grad_norm": 0.06868838518857956,
|
| 43 |
+
"learning_rate": 0.00019841332314076855,
|
| 44 |
+
"loss": 0.3139586210250854,
|
| 45 |
+
"step": 100
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.1314708299096138,
|
| 49 |
+
"grad_norm": 0.07925613969564438,
|
| 50 |
+
"learning_rate": 0.00019686193632504338,
|
| 51 |
+
"loss": 0.28915910720825194,
|
| 52 |
+
"step": 120
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.15338263489454945,
|
| 56 |
+
"grad_norm": 0.07879550755023956,
|
| 57 |
+
"learning_rate": 0.00019479733438965667,
|
| 58 |
+
"loss": 0.2889900207519531,
|
| 59 |
+
"step": 140
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.17529443987948506,
|
| 63 |
+
"grad_norm": 0.06741970777511597,
|
| 64 |
+
"learning_rate": 0.00019223045646064212,
|
| 65 |
+
"loss": 0.27687640190124513,
|
| 66 |
+
"step": 160
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.1972062448644207,
|
| 70 |
+
"grad_norm": 0.062402546405792236,
|
| 71 |
+
"learning_rate": 0.00018917490293267973,
|
| 72 |
+
"loss": 0.2929875135421753,
|
| 73 |
+
"step": 180
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.21911804984935634,
|
| 77 |
+
"grad_norm": 0.07164579629898071,
|
| 78 |
+
"learning_rate": 0.00018564686340850708,
|
| 79 |
+
"loss": 0.2802800893783569,
|
| 80 |
+
"step": 200
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.21911804984935634,
|
| 84 |
+
"eval_loss": 0.2665560841560364,
|
| 85 |
+
"eval_runtime": 78.0807,
|
| 86 |
+
"eval_samples_per_second": 4.278,
|
| 87 |
+
"eval_steps_per_second": 1.076,
|
| 88 |
+
"step": 200
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"epoch": 0.24102985483429198,
|
| 92 |
+
"grad_norm": 0.06281758099794388,
|
| 93 |
+
"learning_rate": 0.0001816650309196209,
|
| 94 |
+
"loss": 0.2850670576095581,
|
| 95 |
+
"step": 220
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"epoch": 0.2629416598192276,
|
| 99 |
+
"grad_norm": 0.05580520257353783,
|
| 100 |
+
"learning_rate": 0.000177250502882765,
|
| 101 |
+
"loss": 0.2707890510559082,
|
| 102 |
+
"step": 240
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"epoch": 0.28485346480416324,
|
| 106 |
+
"grad_norm": 0.0578630194067955,
|
| 107 |
+
"learning_rate": 0.0001724266693169772,
|
| 108 |
+
"loss": 0.2684861898422241,
|
| 109 |
+
"step": 260
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.3067652697890989,
|
| 113 |
+
"grad_norm": 0.056395046412944794,
|
| 114 |
+
"learning_rate": 0.0001672190889134691,
|
| 115 |
+
"loss": 0.27494494915008544,
|
| 116 |
+
"step": 280
|
| 117 |
+
},
|
| 118 |
+
{
|
| 119 |
+
"epoch": 0.3286770747740345,
|
| 120 |
+
"grad_norm": 0.06928149610757828,
|
| 121 |
+
"learning_rate": 0.00016165535361497218,
|
| 122 |
+
"loss": 0.27622313499450685,
|
| 123 |
+
"step": 300
|
| 124 |
+
},
|
| 125 |
+
{
|
| 126 |
+
"epoch": 0.35058887975897013,
|
| 127 |
+
"grad_norm": 0.06063492223620415,
|
| 128 |
+
"learning_rate": 0.00015576494242206508,
|
| 129 |
+
"loss": 0.26791768074035643,
|
| 130 |
+
"step": 320
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"epoch": 0.3725006847439058,
|
| 134 |
+
"grad_norm": 0.052748970687389374,
|
| 135 |
+
"learning_rate": 0.00014957906520107845,
|
| 136 |
+
"loss": 0.2828014373779297,
|
| 137 |
+
"step": 340
|
| 138 |
+
},
|
| 139 |
+
{
|
| 140 |
+
"epoch": 0.3944124897288414,
|
| 141 |
+
"grad_norm": 0.05597842484712601,
|
| 142 |
+
"learning_rate": 0.00014313049732114715,
|
| 143 |
+
"loss": 0.27218098640441896,
|
| 144 |
+
"step": 360
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"epoch": 0.416324294713777,
|
| 148 |
+
"grad_norm": 0.054700642824172974,
|
| 149 |
+
"learning_rate": 0.0001364534059965735,
|
| 150 |
+
"loss": 0.258621072769165,
|
| 151 |
+
"step": 380
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"epoch": 0.4382360996987127,
|
| 155 |
+
"grad_norm": 0.06639006733894348,
|
| 156 |
+
"learning_rate": 0.00012958316925461085,
|
| 157 |
+
"loss": 0.26321959495544434,
|
| 158 |
+
"step": 400
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"epoch": 0.4382360996987127,
|
| 162 |
+
"eval_loss": 0.25228193402290344,
|
| 163 |
+
"eval_runtime": 76.7593,
|
| 164 |
+
"eval_samples_per_second": 4.351,
|
| 165 |
+
"eval_steps_per_second": 1.094,
|
| 166 |
+
"step": 400
|
| 167 |
+
},
|
| 168 |
+
{
|
| 169 |
+
"epoch": 0.4601479046836483,
|
| 170 |
+
"grad_norm": 0.04828259348869324,
|
| 171 |
+
"learning_rate": 0.00012255618848785378,
|
| 172 |
+
"loss": 0.2582087993621826,
|
| 173 |
+
"step": 420
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"epoch": 0.48205970966858397,
|
| 177 |
+
"grad_norm": 0.09414570778608322,
|
| 178 |
+
"learning_rate": 0.0001154096955844091,
|
| 179 |
+
"loss": 0.26802127361297606,
|
| 180 |
+
"step": 440
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"epoch": 0.5039715146535196,
|
| 184 |
+
"grad_norm": 0.06418801099061966,
|
| 185 |
+
"learning_rate": 0.00010818155565775443,
|
| 186 |
+
"loss": 0.2587978601455688,
|
| 187 |
+
"step": 460
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"epoch": 0.5258833196384552,
|
| 191 |
+
"grad_norm": 0.059086013585329056,
|
| 192 |
+
"learning_rate": 0.0001009100664215028,
|
| 193 |
+
"loss": 0.26389484405517577,
|
| 194 |
+
"step": 480
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"epoch": 0.5477951246233909,
|
| 198 |
+
"grad_norm": 0.05814081430435181,
|
| 199 |
+
"learning_rate": 9.363375527207111e-05,
|
| 200 |
+
"loss": 0.2642557144165039,
|
| 201 |
+
"step": 500
|
| 202 |
+
},
|
| 203 |
+
{
|
| 204 |
+
"epoch": 0.5697069296083265,
|
| 205 |
+
"grad_norm": 0.060968417674303055,
|
| 206 |
+
"learning_rate": 8.639117515439248e-05,
|
| 207 |
+
"loss": 0.2558141708374023,
|
| 208 |
+
"step": 520
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.5916187345932621,
|
| 212 |
+
"grad_norm": 0.04676595702767372,
|
| 213 |
+
"learning_rate": 7.92207002922618e-05,
|
| 214 |
+
"loss": 0.25071308612823484,
|
| 215 |
+
"step": 540
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"epoch": 0.6135305395781978,
|
| 219 |
+
"grad_norm": 0.055148206651210785,
|
| 220 |
+
"learning_rate": 7.216032286562122e-05,
|
| 221 |
+
"loss": 0.25150718688964846,
|
| 222 |
+
"step": 560
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"epoch": 0.6354423445631334,
|
| 226 |
+
"grad_norm": 0.05283847823739052,
|
| 227 |
+
"learning_rate": 6.524745171207339e-05,
|
| 228 |
+
"loss": 0.2621228933334351,
|
| 229 |
+
"step": 580
|
| 230 |
+
},
|
| 231 |
+
{
|
| 232 |
+
"epoch": 0.657354149548069,
|
| 233 |
+
"grad_norm": 0.05972014740109444,
|
| 234 |
+
"learning_rate": 5.851871411918743e-05,
|
| 235 |
+
"loss": 0.262609076499939,
|
| 236 |
+
"step": 600
|
| 237 |
+
},
|
| 238 |
+
{
|
| 239 |
+
"epoch": 0.657354149548069,
|
| 240 |
+
"eval_loss": 0.24315646290779114,
|
| 241 |
+
"eval_runtime": 76.7442,
|
| 242 |
+
"eval_samples_per_second": 4.352,
|
| 243 |
+
"eval_steps_per_second": 1.095,
|
| 244 |
+
"step": 600
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 0.6792659545330046,
|
| 248 |
+
"grad_norm": 0.0542420968413353,
|
| 249 |
+
"learning_rate": 5.20097617577839e-05,
|
| 250 |
+
"loss": 0.24464335441589355,
|
| 251 |
+
"step": 620
|
| 252 |
+
},
|
| 253 |
+
{
|
| 254 |
+
"epoch": 0.7011777595179403,
|
| 255 |
+
"grad_norm": 0.05391804128885269,
|
| 256 |
+
"learning_rate": 4.5755081784446306e-05,
|
| 257 |
+
"loss": 0.23991961479187013,
|
| 258 |
+
"step": 640
|
| 259 |
+
},
|
| 260 |
+
{
|
| 261 |
+
"epoch": 0.7230895645028759,
|
| 262 |
+
"grad_norm": 0.067460797727108,
|
| 263 |
+
"learning_rate": 3.978781411411705e-05,
|
| 264 |
+
"loss": 0.25521044731140136,
|
| 265 |
+
"step": 660
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"epoch": 0.7450013694878116,
|
| 269 |
+
"grad_norm": 0.060182541608810425,
|
| 270 |
+
"learning_rate": 3.413957583094358e-05,
|
| 271 |
+
"loss": 0.25919690132141116,
|
| 272 |
+
"step": 680
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"epoch": 0.7669131744727472,
|
| 276 |
+
"grad_norm": 0.05970674753189087,
|
| 277 |
+
"learning_rate": 2.8840293667720653e-05,
|
| 278 |
+
"loss": 0.25497357845306395,
|
| 279 |
+
"step": 700
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"epoch": 0.7888249794576828,
|
| 283 |
+
"grad_norm": 0.05807078629732132,
|
| 284 |
+
"learning_rate": 2.3918045441521718e-05,
|
| 285 |
+
"loss": 0.2616193532943726,
|
| 286 |
+
"step": 720
|
| 287 |
+
},
|
| 288 |
+
{
|
| 289 |
+
"epoch": 0.8107367844426184,
|
| 290 |
+
"grad_norm": 0.07185934484004974,
|
| 291 |
+
"learning_rate": 1.9398911285660816e-05,
|
| 292 |
+
"loss": 0.25238714218139646,
|
| 293 |
+
"step": 740
|
| 294 |
+
},
|
| 295 |
+
{
|
| 296 |
+
"epoch": 0.832648589427554,
|
| 297 |
+
"grad_norm": 0.05691298842430115,
|
| 298 |
+
"learning_rate": 1.5306835466219738e-05,
|
| 299 |
+
"loss": 0.25438358783721926,
|
| 300 |
+
"step": 760
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"epoch": 0.8545603944124898,
|
| 304 |
+
"grad_norm": 0.05606130138039589,
|
| 305 |
+
"learning_rate": 1.1663499515294762e-05,
|
| 306 |
+
"loss": 0.23820433616638184,
|
| 307 |
+
"step": 780
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.8764721993974254,
|
| 311 |
+
"grad_norm": 0.05140916630625725,
|
| 312 |
+
"learning_rate": 8.488207353155986e-06,
|
| 313 |
+
"loss": 0.26239197254180907,
|
| 314 |
+
"step": 800
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"epoch": 0.8764721993974254,
|
| 318 |
+
"eval_loss": 0.23945921659469604,
|
| 319 |
+
"eval_runtime": 76.7615,
|
| 320 |
+
"eval_samples_per_second": 4.351,
|
| 321 |
+
"eval_steps_per_second": 1.094,
|
| 322 |
+
"step": 800
|
| 323 |
+
}
|
| 324 |
+
],
|
| 325 |
+
"logging_steps": 20,
|
| 326 |
+
"max_steps": 913,
|
| 327 |
+
"num_input_tokens_seen": 0,
|
| 328 |
+
"num_train_epochs": 1,
|
| 329 |
+
"save_steps": 200,
|
| 330 |
+
"stateful_callbacks": {
|
| 331 |
+
"TrainerControl": {
|
| 332 |
+
"args": {
|
| 333 |
+
"should_epoch_stop": false,
|
| 334 |
+
"should_evaluate": false,
|
| 335 |
+
"should_log": false,
|
| 336 |
+
"should_save": true,
|
| 337 |
+
"should_training_stop": false
|
| 338 |
+
},
|
| 339 |
+
"attributes": {}
|
| 340 |
+
}
|
| 341 |
+
},
|
| 342 |
+
"total_flos": 4.475205602097205e+18,
|
| 343 |
+
"train_batch_size": 2,
|
| 344 |
+
"trial_name": null,
|
| 345 |
+
"trial_params": null
|
| 346 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c8a97d3e6475c1d773d3dbe9946a270643635d978dff4a6385add4e04eb83b6
|
| 3 |
+
size 5713
|