Instructions to use khj0816/belramoteu_jadongsaengseongpeuriset-finetuned with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use khj0816/belramoteu_jadongsaengseongpeuriset-finetuned with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct") model = PeftModel.from_pretrained(base_model, "khj0816/belramoteu_jadongsaengseongpeuriset-finetuned") - Transformers
How to use khj0816/belramoteu_jadongsaengseongpeuriset-finetuned with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="khj0816/belramoteu_jadongsaengseongpeuriset-finetuned")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("khj0816/belramoteu_jadongsaengseongpeuriset-finetuned", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use khj0816/belramoteu_jadongsaengseongpeuriset-finetuned with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "khj0816/belramoteu_jadongsaengseongpeuriset-finetuned" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "khj0816/belramoteu_jadongsaengseongpeuriset-finetuned", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/khj0816/belramoteu_jadongsaengseongpeuriset-finetuned
- SGLang
How to use khj0816/belramoteu_jadongsaengseongpeuriset-finetuned 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 "khj0816/belramoteu_jadongsaengseongpeuriset-finetuned" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "khj0816/belramoteu_jadongsaengseongpeuriset-finetuned", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "khj0816/belramoteu_jadongsaengseongpeuriset-finetuned" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "khj0816/belramoteu_jadongsaengseongpeuriset-finetuned", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use khj0816/belramoteu_jadongsaengseongpeuriset-finetuned with Docker Model Runner:
docker model run hf.co/khj0816/belramoteu_jadongsaengseongpeuriset-finetuned
Upload folder using huggingface_hub
Browse files- README.md +207 -0
- adapter_config.json +37 -0
- adapter_model.safetensors +3 -0
- checkpoint-800/README.md +207 -0
- checkpoint-800/adapter_config.json +37 -0
- checkpoint-800/adapter_model.safetensors +3 -0
- checkpoint-800/optimizer.pt +3 -0
- checkpoint-800/rng_state.pth +3 -0
- checkpoint-800/scheduler.pt +3 -0
- checkpoint-800/trainer_state.json +1179 -0
- checkpoint-800/training_args.bin +3 -0
- training_args.bin +3 -0
README.md
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct
|
| 7 |
+
- lora
|
| 8 |
+
- transformers
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Model Card for Model ID
|
| 12 |
+
|
| 13 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
## Model Details
|
| 18 |
+
|
| 19 |
+
### Model Description
|
| 20 |
+
|
| 21 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
- **Developed by:** [More Information Needed]
|
| 26 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 27 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 28 |
+
- **Model type:** [More Information Needed]
|
| 29 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 30 |
+
- **License:** [More Information Needed]
|
| 31 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 32 |
+
|
| 33 |
+
### Model Sources [optional]
|
| 34 |
+
|
| 35 |
+
<!-- Provide the basic links for the model. -->
|
| 36 |
+
|
| 37 |
+
- **Repository:** [More Information Needed]
|
| 38 |
+
- **Paper [optional]:** [More Information Needed]
|
| 39 |
+
- **Demo [optional]:** [More Information Needed]
|
| 40 |
+
|
| 41 |
+
## Uses
|
| 42 |
+
|
| 43 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 44 |
+
|
| 45 |
+
### Direct Use
|
| 46 |
+
|
| 47 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 48 |
+
|
| 49 |
+
[More Information Needed]
|
| 50 |
+
|
| 51 |
+
### Downstream Use [optional]
|
| 52 |
+
|
| 53 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 54 |
+
|
| 55 |
+
[More Information Needed]
|
| 56 |
+
|
| 57 |
+
### Out-of-Scope Use
|
| 58 |
+
|
| 59 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 60 |
+
|
| 61 |
+
[More Information Needed]
|
| 62 |
+
|
| 63 |
+
## Bias, Risks, and Limitations
|
| 64 |
+
|
| 65 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 66 |
+
|
| 67 |
+
[More Information Needed]
|
| 68 |
+
|
| 69 |
+
### Recommendations
|
| 70 |
+
|
| 71 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 72 |
+
|
| 73 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 74 |
+
|
| 75 |
+
## How to Get Started with the Model
|
| 76 |
+
|
| 77 |
+
Use the code below to get started with the model.
|
| 78 |
+
|
| 79 |
+
[More Information Needed]
|
| 80 |
+
|
| 81 |
+
## Training Details
|
| 82 |
+
|
| 83 |
+
### Training Data
|
| 84 |
+
|
| 85 |
+
<!-- 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. -->
|
| 86 |
+
|
| 87 |
+
[More Information Needed]
|
| 88 |
+
|
| 89 |
+
### Training Procedure
|
| 90 |
+
|
| 91 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 92 |
+
|
| 93 |
+
#### Preprocessing [optional]
|
| 94 |
+
|
| 95 |
+
[More Information Needed]
|
| 96 |
+
|
| 97 |
+
|
| 98 |
+
#### Training Hyperparameters
|
| 99 |
+
|
| 100 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 101 |
+
|
| 102 |
+
#### Speeds, Sizes, Times [optional]
|
| 103 |
+
|
| 104 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 105 |
+
|
| 106 |
+
[More Information Needed]
|
| 107 |
+
|
| 108 |
+
## Evaluation
|
| 109 |
+
|
| 110 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 111 |
+
|
| 112 |
+
### Testing Data, Factors & Metrics
|
| 113 |
+
|
| 114 |
+
#### Testing Data
|
| 115 |
+
|
| 116 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 117 |
+
|
| 118 |
+
[More Information Needed]
|
| 119 |
+
|
| 120 |
+
#### Factors
|
| 121 |
+
|
| 122 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 123 |
+
|
| 124 |
+
[More Information Needed]
|
| 125 |
+
|
| 126 |
+
#### Metrics
|
| 127 |
+
|
| 128 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 129 |
+
|
| 130 |
+
[More Information Needed]
|
| 131 |
+
|
| 132 |
+
### Results
|
| 133 |
+
|
| 134 |
+
[More Information Needed]
|
| 135 |
+
|
| 136 |
+
#### Summary
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
## Model Examination [optional]
|
| 141 |
+
|
| 142 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 143 |
+
|
| 144 |
+
[More Information Needed]
|
| 145 |
+
|
| 146 |
+
## Environmental Impact
|
| 147 |
+
|
| 148 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 149 |
+
|
| 150 |
+
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).
|
| 151 |
+
|
| 152 |
+
- **Hardware Type:** [More Information Needed]
|
| 153 |
+
- **Hours used:** [More Information Needed]
|
| 154 |
+
- **Cloud Provider:** [More Information Needed]
|
| 155 |
+
- **Compute Region:** [More Information Needed]
|
| 156 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 157 |
+
|
| 158 |
+
## Technical Specifications [optional]
|
| 159 |
+
|
| 160 |
+
### Model Architecture and Objective
|
| 161 |
+
|
| 162 |
+
[More Information Needed]
|
| 163 |
+
|
| 164 |
+
### Compute Infrastructure
|
| 165 |
+
|
| 166 |
+
[More Information Needed]
|
| 167 |
+
|
| 168 |
+
#### Hardware
|
| 169 |
+
|
| 170 |
+
[More Information Needed]
|
| 171 |
+
|
| 172 |
+
#### Software
|
| 173 |
+
|
| 174 |
+
[More Information Needed]
|
| 175 |
+
|
| 176 |
+
## Citation [optional]
|
| 177 |
+
|
| 178 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 179 |
+
|
| 180 |
+
**BibTeX:**
|
| 181 |
+
|
| 182 |
+
[More Information Needed]
|
| 183 |
+
|
| 184 |
+
**APA:**
|
| 185 |
+
|
| 186 |
+
[More Information Needed]
|
| 187 |
+
|
| 188 |
+
## Glossary [optional]
|
| 189 |
+
|
| 190 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 191 |
+
|
| 192 |
+
[More Information Needed]
|
| 193 |
+
|
| 194 |
+
## More Information [optional]
|
| 195 |
+
|
| 196 |
+
[More Information Needed]
|
| 197 |
+
|
| 198 |
+
## Model Card Authors [optional]
|
| 199 |
+
|
| 200 |
+
[More Information Needed]
|
| 201 |
+
|
| 202 |
+
## Model Card Contact
|
| 203 |
+
|
| 204 |
+
[More Information Needed]
|
| 205 |
+
### Framework versions
|
| 206 |
+
|
| 207 |
+
- PEFT 0.16.0
|
adapter_config.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "LGAI-EXAONE/EXAONE-3.5-2.4B-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": 16,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"qalora_group_size": 16,
|
| 24 |
+
"r": 8,
|
| 25 |
+
"rank_pattern": {},
|
| 26 |
+
"revision": null,
|
| 27 |
+
"target_modules": [
|
| 28 |
+
"k_proj",
|
| 29 |
+
"v_proj",
|
| 30 |
+
"q_proj"
|
| 31 |
+
],
|
| 32 |
+
"task_type": "CAUSAL_LM",
|
| 33 |
+
"trainable_token_indices": null,
|
| 34 |
+
"use_dora": false,
|
| 35 |
+
"use_qalora": false,
|
| 36 |
+
"use_rslora": false
|
| 37 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b5e253cf1ec51c4624e2f5cc07545a96ccf4aa952439652f31d6d4cbfb33d5e
|
| 3 |
+
size 11083960
|
checkpoint-800/README.md
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct
|
| 7 |
+
- lora
|
| 8 |
+
- transformers
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Model Card for Model ID
|
| 12 |
+
|
| 13 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
## Model Details
|
| 18 |
+
|
| 19 |
+
### Model Description
|
| 20 |
+
|
| 21 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
- **Developed by:** [More Information Needed]
|
| 26 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 27 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 28 |
+
- **Model type:** [More Information Needed]
|
| 29 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 30 |
+
- **License:** [More Information Needed]
|
| 31 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 32 |
+
|
| 33 |
+
### Model Sources [optional]
|
| 34 |
+
|
| 35 |
+
<!-- Provide the basic links for the model. -->
|
| 36 |
+
|
| 37 |
+
- **Repository:** [More Information Needed]
|
| 38 |
+
- **Paper [optional]:** [More Information Needed]
|
| 39 |
+
- **Demo [optional]:** [More Information Needed]
|
| 40 |
+
|
| 41 |
+
## Uses
|
| 42 |
+
|
| 43 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 44 |
+
|
| 45 |
+
### Direct Use
|
| 46 |
+
|
| 47 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 48 |
+
|
| 49 |
+
[More Information Needed]
|
| 50 |
+
|
| 51 |
+
### Downstream Use [optional]
|
| 52 |
+
|
| 53 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 54 |
+
|
| 55 |
+
[More Information Needed]
|
| 56 |
+
|
| 57 |
+
### Out-of-Scope Use
|
| 58 |
+
|
| 59 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 60 |
+
|
| 61 |
+
[More Information Needed]
|
| 62 |
+
|
| 63 |
+
## Bias, Risks, and Limitations
|
| 64 |
+
|
| 65 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 66 |
+
|
| 67 |
+
[More Information Needed]
|
| 68 |
+
|
| 69 |
+
### Recommendations
|
| 70 |
+
|
| 71 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 72 |
+
|
| 73 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 74 |
+
|
| 75 |
+
## How to Get Started with the Model
|
| 76 |
+
|
| 77 |
+
Use the code below to get started with the model.
|
| 78 |
+
|
| 79 |
+
[More Information Needed]
|
| 80 |
+
|
| 81 |
+
## Training Details
|
| 82 |
+
|
| 83 |
+
### Training Data
|
| 84 |
+
|
| 85 |
+
<!-- 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. -->
|
| 86 |
+
|
| 87 |
+
[More Information Needed]
|
| 88 |
+
|
| 89 |
+
### Training Procedure
|
| 90 |
+
|
| 91 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 92 |
+
|
| 93 |
+
#### Preprocessing [optional]
|
| 94 |
+
|
| 95 |
+
[More Information Needed]
|
| 96 |
+
|
| 97 |
+
|
| 98 |
+
#### Training Hyperparameters
|
| 99 |
+
|
| 100 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 101 |
+
|
| 102 |
+
#### Speeds, Sizes, Times [optional]
|
| 103 |
+
|
| 104 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 105 |
+
|
| 106 |
+
[More Information Needed]
|
| 107 |
+
|
| 108 |
+
## Evaluation
|
| 109 |
+
|
| 110 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 111 |
+
|
| 112 |
+
### Testing Data, Factors & Metrics
|
| 113 |
+
|
| 114 |
+
#### Testing Data
|
| 115 |
+
|
| 116 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 117 |
+
|
| 118 |
+
[More Information Needed]
|
| 119 |
+
|
| 120 |
+
#### Factors
|
| 121 |
+
|
| 122 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 123 |
+
|
| 124 |
+
[More Information Needed]
|
| 125 |
+
|
| 126 |
+
#### Metrics
|
| 127 |
+
|
| 128 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 129 |
+
|
| 130 |
+
[More Information Needed]
|
| 131 |
+
|
| 132 |
+
### Results
|
| 133 |
+
|
| 134 |
+
[More Information Needed]
|
| 135 |
+
|
| 136 |
+
#### Summary
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
## Model Examination [optional]
|
| 141 |
+
|
| 142 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 143 |
+
|
| 144 |
+
[More Information Needed]
|
| 145 |
+
|
| 146 |
+
## Environmental Impact
|
| 147 |
+
|
| 148 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 149 |
+
|
| 150 |
+
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).
|
| 151 |
+
|
| 152 |
+
- **Hardware Type:** [More Information Needed]
|
| 153 |
+
- **Hours used:** [More Information Needed]
|
| 154 |
+
- **Cloud Provider:** [More Information Needed]
|
| 155 |
+
- **Compute Region:** [More Information Needed]
|
| 156 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 157 |
+
|
| 158 |
+
## Technical Specifications [optional]
|
| 159 |
+
|
| 160 |
+
### Model Architecture and Objective
|
| 161 |
+
|
| 162 |
+
[More Information Needed]
|
| 163 |
+
|
| 164 |
+
### Compute Infrastructure
|
| 165 |
+
|
| 166 |
+
[More Information Needed]
|
| 167 |
+
|
| 168 |
+
#### Hardware
|
| 169 |
+
|
| 170 |
+
[More Information Needed]
|
| 171 |
+
|
| 172 |
+
#### Software
|
| 173 |
+
|
| 174 |
+
[More Information Needed]
|
| 175 |
+
|
| 176 |
+
## Citation [optional]
|
| 177 |
+
|
| 178 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 179 |
+
|
| 180 |
+
**BibTeX:**
|
| 181 |
+
|
| 182 |
+
[More Information Needed]
|
| 183 |
+
|
| 184 |
+
**APA:**
|
| 185 |
+
|
| 186 |
+
[More Information Needed]
|
| 187 |
+
|
| 188 |
+
## Glossary [optional]
|
| 189 |
+
|
| 190 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 191 |
+
|
| 192 |
+
[More Information Needed]
|
| 193 |
+
|
| 194 |
+
## More Information [optional]
|
| 195 |
+
|
| 196 |
+
[More Information Needed]
|
| 197 |
+
|
| 198 |
+
## Model Card Authors [optional]
|
| 199 |
+
|
| 200 |
+
[More Information Needed]
|
| 201 |
+
|
| 202 |
+
## Model Card Contact
|
| 203 |
+
|
| 204 |
+
[More Information Needed]
|
| 205 |
+
### Framework versions
|
| 206 |
+
|
| 207 |
+
- PEFT 0.16.0
|
checkpoint-800/adapter_config.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "LGAI-EXAONE/EXAONE-3.5-2.4B-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": 16,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"qalora_group_size": 16,
|
| 24 |
+
"r": 8,
|
| 25 |
+
"rank_pattern": {},
|
| 26 |
+
"revision": null,
|
| 27 |
+
"target_modules": [
|
| 28 |
+
"k_proj",
|
| 29 |
+
"v_proj",
|
| 30 |
+
"q_proj"
|
| 31 |
+
],
|
| 32 |
+
"task_type": "CAUSAL_LM",
|
| 33 |
+
"trainable_token_indices": null,
|
| 34 |
+
"use_dora": false,
|
| 35 |
+
"use_qalora": false,
|
| 36 |
+
"use_rslora": false
|
| 37 |
+
}
|
checkpoint-800/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b5e253cf1ec51c4624e2f5cc07545a96ccf4aa952439652f31d6d4cbfb33d5e
|
| 3 |
+
size 11083960
|
checkpoint-800/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ebe00cdfff0797a7038c43ffa0ffa88cd4638feae628d1f71d79b10ef2d7dfb
|
| 3 |
+
size 22270027
|
checkpoint-800/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25450de4bf098d33160cadc1eca1855d20fbf24a47c75d1abb2faa2e936baa39
|
| 3 |
+
size 14645
|
checkpoint-800/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e748c5aaf9fec0191428bfcf3e6e7726b6330b26ea79785616afaf6d08ed577d
|
| 3 |
+
size 1465
|
checkpoint-800/trainer_state.json
ADDED
|
@@ -0,0 +1,1179 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": 800,
|
| 3 |
+
"best_metric": 0.5232270359992981,
|
| 4 |
+
"best_model_checkpoint": "./exaone-lora-results-system-custom/checkpoint-800",
|
| 5 |
+
"epoch": 2.0,
|
| 6 |
+
"eval_steps": 500,
|
| 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.0125,
|
| 14 |
+
"grad_norm": 1.4204977750778198,
|
| 15 |
+
"learning_rate": 8e-05,
|
| 16 |
+
"loss": 3.1159,
|
| 17 |
+
"step": 5
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.025,
|
| 21 |
+
"grad_norm": 1.3447633981704712,
|
| 22 |
+
"learning_rate": 0.00018,
|
| 23 |
+
"loss": 2.9296,
|
| 24 |
+
"step": 10
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.0375,
|
| 28 |
+
"grad_norm": 1.305059790611267,
|
| 29 |
+
"learning_rate": 0.00019959798994974876,
|
| 30 |
+
"loss": 2.5285,
|
| 31 |
+
"step": 15
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.05,
|
| 35 |
+
"grad_norm": 1.3643401861190796,
|
| 36 |
+
"learning_rate": 0.0001990954773869347,
|
| 37 |
+
"loss": 2.1402,
|
| 38 |
+
"step": 20
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.0625,
|
| 42 |
+
"grad_norm": 1.3797638416290283,
|
| 43 |
+
"learning_rate": 0.00019859296482412062,
|
| 44 |
+
"loss": 1.773,
|
| 45 |
+
"step": 25
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.075,
|
| 49 |
+
"grad_norm": 1.8258603811264038,
|
| 50 |
+
"learning_rate": 0.00019809045226130653,
|
| 51 |
+
"loss": 1.37,
|
| 52 |
+
"step": 30
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.0875,
|
| 56 |
+
"grad_norm": 1.6069886684417725,
|
| 57 |
+
"learning_rate": 0.00019758793969849249,
|
| 58 |
+
"loss": 1.0568,
|
| 59 |
+
"step": 35
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.1,
|
| 63 |
+
"grad_norm": 1.1830629110336304,
|
| 64 |
+
"learning_rate": 0.0001970854271356784,
|
| 65 |
+
"loss": 0.76,
|
| 66 |
+
"step": 40
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.1125,
|
| 70 |
+
"grad_norm": 0.8522692322731018,
|
| 71 |
+
"learning_rate": 0.00019658291457286432,
|
| 72 |
+
"loss": 0.6618,
|
| 73 |
+
"step": 45
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.125,
|
| 77 |
+
"grad_norm": 0.6791490316390991,
|
| 78 |
+
"learning_rate": 0.00019608040201005026,
|
| 79 |
+
"loss": 0.6323,
|
| 80 |
+
"step": 50
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.1375,
|
| 84 |
+
"grad_norm": 0.6827747821807861,
|
| 85 |
+
"learning_rate": 0.0001955778894472362,
|
| 86 |
+
"loss": 0.6331,
|
| 87 |
+
"step": 55
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.15,
|
| 91 |
+
"grad_norm": 0.6210057139396667,
|
| 92 |
+
"learning_rate": 0.00019507537688442212,
|
| 93 |
+
"loss": 0.551,
|
| 94 |
+
"step": 60
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.1625,
|
| 98 |
+
"grad_norm": 0.6427358388900757,
|
| 99 |
+
"learning_rate": 0.00019457286432160805,
|
| 100 |
+
"loss": 0.5756,
|
| 101 |
+
"step": 65
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.175,
|
| 105 |
+
"grad_norm": 0.8321182131767273,
|
| 106 |
+
"learning_rate": 0.00019407035175879398,
|
| 107 |
+
"loss": 0.5466,
|
| 108 |
+
"step": 70
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.1875,
|
| 112 |
+
"grad_norm": 0.689738929271698,
|
| 113 |
+
"learning_rate": 0.00019356783919597992,
|
| 114 |
+
"loss": 0.5025,
|
| 115 |
+
"step": 75
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.2,
|
| 119 |
+
"grad_norm": 0.6590372323989868,
|
| 120 |
+
"learning_rate": 0.00019306532663316582,
|
| 121 |
+
"loss": 0.5308,
|
| 122 |
+
"step": 80
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.2125,
|
| 126 |
+
"grad_norm": 0.7442909479141235,
|
| 127 |
+
"learning_rate": 0.00019256281407035178,
|
| 128 |
+
"loss": 0.4907,
|
| 129 |
+
"step": 85
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.225,
|
| 133 |
+
"grad_norm": 0.6165861487388611,
|
| 134 |
+
"learning_rate": 0.0001920603015075377,
|
| 135 |
+
"loss": 0.519,
|
| 136 |
+
"step": 90
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.2375,
|
| 140 |
+
"grad_norm": 0.4800119996070862,
|
| 141 |
+
"learning_rate": 0.00019155778894472362,
|
| 142 |
+
"loss": 0.4944,
|
| 143 |
+
"step": 95
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.25,
|
| 147 |
+
"grad_norm": 0.5565855503082275,
|
| 148 |
+
"learning_rate": 0.00019105527638190955,
|
| 149 |
+
"loss": 0.4891,
|
| 150 |
+
"step": 100
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.2625,
|
| 154 |
+
"grad_norm": 0.5599360466003418,
|
| 155 |
+
"learning_rate": 0.00019055276381909548,
|
| 156 |
+
"loss": 0.4887,
|
| 157 |
+
"step": 105
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.275,
|
| 161 |
+
"grad_norm": 0.5745482444763184,
|
| 162 |
+
"learning_rate": 0.00019005025125628142,
|
| 163 |
+
"loss": 0.4915,
|
| 164 |
+
"step": 110
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.2875,
|
| 168 |
+
"grad_norm": 0.5511234998703003,
|
| 169 |
+
"learning_rate": 0.00018954773869346732,
|
| 170 |
+
"loss": 0.5147,
|
| 171 |
+
"step": 115
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.3,
|
| 175 |
+
"grad_norm": 0.579424262046814,
|
| 176 |
+
"learning_rate": 0.00018904522613065328,
|
| 177 |
+
"loss": 0.4726,
|
| 178 |
+
"step": 120
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.3125,
|
| 182 |
+
"grad_norm": 0.604240357875824,
|
| 183 |
+
"learning_rate": 0.00018854271356783921,
|
| 184 |
+
"loss": 0.5083,
|
| 185 |
+
"step": 125
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.325,
|
| 189 |
+
"grad_norm": 0.631528913974762,
|
| 190 |
+
"learning_rate": 0.00018804020100502512,
|
| 191 |
+
"loss": 0.4827,
|
| 192 |
+
"step": 130
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.3375,
|
| 196 |
+
"grad_norm": 0.5906082391738892,
|
| 197 |
+
"learning_rate": 0.00018753768844221108,
|
| 198 |
+
"loss": 0.4704,
|
| 199 |
+
"step": 135
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.35,
|
| 203 |
+
"grad_norm": 0.5601592659950256,
|
| 204 |
+
"learning_rate": 0.00018703517587939698,
|
| 205 |
+
"loss": 0.4645,
|
| 206 |
+
"step": 140
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.3625,
|
| 210 |
+
"grad_norm": 0.5383768081665039,
|
| 211 |
+
"learning_rate": 0.00018653266331658292,
|
| 212 |
+
"loss": 0.4808,
|
| 213 |
+
"step": 145
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.375,
|
| 217 |
+
"grad_norm": 0.6543328166007996,
|
| 218 |
+
"learning_rate": 0.00018603015075376885,
|
| 219 |
+
"loss": 0.4504,
|
| 220 |
+
"step": 150
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.3875,
|
| 224 |
+
"grad_norm": 0.6863328814506531,
|
| 225 |
+
"learning_rate": 0.00018552763819095478,
|
| 226 |
+
"loss": 0.4411,
|
| 227 |
+
"step": 155
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.4,
|
| 231 |
+
"grad_norm": 0.6257234811782837,
|
| 232 |
+
"learning_rate": 0.00018502512562814071,
|
| 233 |
+
"loss": 0.4852,
|
| 234 |
+
"step": 160
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.4125,
|
| 238 |
+
"grad_norm": 0.5948039293289185,
|
| 239 |
+
"learning_rate": 0.00018452261306532662,
|
| 240 |
+
"loss": 0.4746,
|
| 241 |
+
"step": 165
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.425,
|
| 245 |
+
"grad_norm": 0.6108356714248657,
|
| 246 |
+
"learning_rate": 0.00018402010050251258,
|
| 247 |
+
"loss": 0.4325,
|
| 248 |
+
"step": 170
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.4375,
|
| 252 |
+
"grad_norm": 0.6409158706665039,
|
| 253 |
+
"learning_rate": 0.0001835175879396985,
|
| 254 |
+
"loss": 0.4792,
|
| 255 |
+
"step": 175
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.45,
|
| 259 |
+
"grad_norm": 0.5427626371383667,
|
| 260 |
+
"learning_rate": 0.00018301507537688442,
|
| 261 |
+
"loss": 0.4591,
|
| 262 |
+
"step": 180
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.4625,
|
| 266 |
+
"grad_norm": 0.5712430477142334,
|
| 267 |
+
"learning_rate": 0.00018251256281407038,
|
| 268 |
+
"loss": 0.4663,
|
| 269 |
+
"step": 185
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 0.475,
|
| 273 |
+
"grad_norm": 0.5315428376197815,
|
| 274 |
+
"learning_rate": 0.00018201005025125628,
|
| 275 |
+
"loss": 0.4662,
|
| 276 |
+
"step": 190
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.4875,
|
| 280 |
+
"grad_norm": 0.6806014180183411,
|
| 281 |
+
"learning_rate": 0.00018150753768844221,
|
| 282 |
+
"loss": 0.4589,
|
| 283 |
+
"step": 195
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"epoch": 0.5,
|
| 287 |
+
"grad_norm": 0.4812653362751007,
|
| 288 |
+
"learning_rate": 0.00018100502512562815,
|
| 289 |
+
"loss": 0.4747,
|
| 290 |
+
"step": 200
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.5125,
|
| 294 |
+
"grad_norm": 0.620926558971405,
|
| 295 |
+
"learning_rate": 0.00018050251256281408,
|
| 296 |
+
"loss": 0.4689,
|
| 297 |
+
"step": 205
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 0.525,
|
| 301 |
+
"grad_norm": 0.5241305828094482,
|
| 302 |
+
"learning_rate": 0.00018,
|
| 303 |
+
"loss": 0.412,
|
| 304 |
+
"step": 210
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.5375,
|
| 308 |
+
"grad_norm": 0.5892027020454407,
|
| 309 |
+
"learning_rate": 0.00017949748743718592,
|
| 310 |
+
"loss": 0.4878,
|
| 311 |
+
"step": 215
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"epoch": 0.55,
|
| 315 |
+
"grad_norm": 0.5710367560386658,
|
| 316 |
+
"learning_rate": 0.00017899497487437188,
|
| 317 |
+
"loss": 0.4329,
|
| 318 |
+
"step": 220
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.5625,
|
| 322 |
+
"grad_norm": 0.5636909604072571,
|
| 323 |
+
"learning_rate": 0.0001784924623115578,
|
| 324 |
+
"loss": 0.4335,
|
| 325 |
+
"step": 225
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.575,
|
| 329 |
+
"grad_norm": 0.5712817311286926,
|
| 330 |
+
"learning_rate": 0.00017798994974874371,
|
| 331 |
+
"loss": 0.4728,
|
| 332 |
+
"step": 230
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.5875,
|
| 336 |
+
"grad_norm": 0.5080311298370361,
|
| 337 |
+
"learning_rate": 0.00017748743718592967,
|
| 338 |
+
"loss": 0.4576,
|
| 339 |
+
"step": 235
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 0.6,
|
| 343 |
+
"grad_norm": 0.5396429896354675,
|
| 344 |
+
"learning_rate": 0.00017698492462311558,
|
| 345 |
+
"loss": 0.4731,
|
| 346 |
+
"step": 240
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.6125,
|
| 350 |
+
"grad_norm": 0.594582736492157,
|
| 351 |
+
"learning_rate": 0.0001764824120603015,
|
| 352 |
+
"loss": 0.4421,
|
| 353 |
+
"step": 245
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"epoch": 0.625,
|
| 357 |
+
"grad_norm": 0.5550448298454285,
|
| 358 |
+
"learning_rate": 0.00017597989949748744,
|
| 359 |
+
"loss": 0.4473,
|
| 360 |
+
"step": 250
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.6375,
|
| 364 |
+
"grad_norm": 0.5841835737228394,
|
| 365 |
+
"learning_rate": 0.00017547738693467338,
|
| 366 |
+
"loss": 0.4141,
|
| 367 |
+
"step": 255
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 0.65,
|
| 371 |
+
"grad_norm": 0.5154719352722168,
|
| 372 |
+
"learning_rate": 0.0001749748743718593,
|
| 373 |
+
"loss": 0.4178,
|
| 374 |
+
"step": 260
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.6625,
|
| 378 |
+
"grad_norm": 0.6086138486862183,
|
| 379 |
+
"learning_rate": 0.00017447236180904521,
|
| 380 |
+
"loss": 0.4309,
|
| 381 |
+
"step": 265
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 0.675,
|
| 385 |
+
"grad_norm": 0.5762608051300049,
|
| 386 |
+
"learning_rate": 0.00017396984924623117,
|
| 387 |
+
"loss": 0.4395,
|
| 388 |
+
"step": 270
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.6875,
|
| 392 |
+
"grad_norm": 0.6579628586769104,
|
| 393 |
+
"learning_rate": 0.0001734673366834171,
|
| 394 |
+
"loss": 0.4308,
|
| 395 |
+
"step": 275
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 0.7,
|
| 399 |
+
"grad_norm": 0.5988358855247498,
|
| 400 |
+
"learning_rate": 0.000172964824120603,
|
| 401 |
+
"loss": 0.4157,
|
| 402 |
+
"step": 280
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.7125,
|
| 406 |
+
"grad_norm": 0.5210469365119934,
|
| 407 |
+
"learning_rate": 0.00017246231155778897,
|
| 408 |
+
"loss": 0.4433,
|
| 409 |
+
"step": 285
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 0.725,
|
| 413 |
+
"grad_norm": 0.5271325707435608,
|
| 414 |
+
"learning_rate": 0.00017195979899497488,
|
| 415 |
+
"loss": 0.429,
|
| 416 |
+
"step": 290
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.7375,
|
| 420 |
+
"grad_norm": 0.5668110847473145,
|
| 421 |
+
"learning_rate": 0.0001714572864321608,
|
| 422 |
+
"loss": 0.4789,
|
| 423 |
+
"step": 295
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 0.75,
|
| 427 |
+
"grad_norm": 0.5577985644340515,
|
| 428 |
+
"learning_rate": 0.00017095477386934674,
|
| 429 |
+
"loss": 0.4278,
|
| 430 |
+
"step": 300
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.7625,
|
| 434 |
+
"grad_norm": 0.53072190284729,
|
| 435 |
+
"learning_rate": 0.00017045226130653267,
|
| 436 |
+
"loss": 0.4445,
|
| 437 |
+
"step": 305
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 0.775,
|
| 441 |
+
"grad_norm": 0.5304411053657532,
|
| 442 |
+
"learning_rate": 0.0001699497487437186,
|
| 443 |
+
"loss": 0.4329,
|
| 444 |
+
"step": 310
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.7875,
|
| 448 |
+
"grad_norm": 0.5181726813316345,
|
| 449 |
+
"learning_rate": 0.0001694472361809045,
|
| 450 |
+
"loss": 0.429,
|
| 451 |
+
"step": 315
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.8,
|
| 455 |
+
"grad_norm": 0.5597214698791504,
|
| 456 |
+
"learning_rate": 0.00016894472361809047,
|
| 457 |
+
"loss": 0.4225,
|
| 458 |
+
"step": 320
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.8125,
|
| 462 |
+
"grad_norm": 0.5509529709815979,
|
| 463 |
+
"learning_rate": 0.0001684422110552764,
|
| 464 |
+
"loss": 0.4209,
|
| 465 |
+
"step": 325
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 0.825,
|
| 469 |
+
"grad_norm": 0.600302517414093,
|
| 470 |
+
"learning_rate": 0.0001679396984924623,
|
| 471 |
+
"loss": 0.4367,
|
| 472 |
+
"step": 330
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.8375,
|
| 476 |
+
"grad_norm": 0.5333036184310913,
|
| 477 |
+
"learning_rate": 0.00016743718592964827,
|
| 478 |
+
"loss": 0.4362,
|
| 479 |
+
"step": 335
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 0.85,
|
| 483 |
+
"grad_norm": 0.5863168835639954,
|
| 484 |
+
"learning_rate": 0.00016693467336683417,
|
| 485 |
+
"loss": 0.4548,
|
| 486 |
+
"step": 340
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.8625,
|
| 490 |
+
"grad_norm": 0.526488184928894,
|
| 491 |
+
"learning_rate": 0.0001664321608040201,
|
| 492 |
+
"loss": 0.4399,
|
| 493 |
+
"step": 345
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"epoch": 0.875,
|
| 497 |
+
"grad_norm": 0.5802232623100281,
|
| 498 |
+
"learning_rate": 0.00016592964824120604,
|
| 499 |
+
"loss": 0.4961,
|
| 500 |
+
"step": 350
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.8875,
|
| 504 |
+
"grad_norm": 0.5905202031135559,
|
| 505 |
+
"learning_rate": 0.00016542713567839197,
|
| 506 |
+
"loss": 0.4453,
|
| 507 |
+
"step": 355
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 0.9,
|
| 511 |
+
"grad_norm": 0.5512250065803528,
|
| 512 |
+
"learning_rate": 0.0001649246231155779,
|
| 513 |
+
"loss": 0.4135,
|
| 514 |
+
"step": 360
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.9125,
|
| 518 |
+
"grad_norm": 0.5865863561630249,
|
| 519 |
+
"learning_rate": 0.0001644221105527638,
|
| 520 |
+
"loss": 0.4645,
|
| 521 |
+
"step": 365
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"epoch": 0.925,
|
| 525 |
+
"grad_norm": 0.538692831993103,
|
| 526 |
+
"learning_rate": 0.00016391959798994977,
|
| 527 |
+
"loss": 0.4821,
|
| 528 |
+
"step": 370
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.9375,
|
| 532 |
+
"grad_norm": 0.5884225368499756,
|
| 533 |
+
"learning_rate": 0.0001634170854271357,
|
| 534 |
+
"loss": 0.4484,
|
| 535 |
+
"step": 375
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 0.95,
|
| 539 |
+
"grad_norm": 0.5514518618583679,
|
| 540 |
+
"learning_rate": 0.0001629145728643216,
|
| 541 |
+
"loss": 0.4529,
|
| 542 |
+
"step": 380
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.9625,
|
| 546 |
+
"grad_norm": 0.577700674533844,
|
| 547 |
+
"learning_rate": 0.00016241206030150756,
|
| 548 |
+
"loss": 0.4651,
|
| 549 |
+
"step": 385
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 0.975,
|
| 553 |
+
"grad_norm": 0.5781076550483704,
|
| 554 |
+
"learning_rate": 0.00016190954773869347,
|
| 555 |
+
"loss": 0.4349,
|
| 556 |
+
"step": 390
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.9875,
|
| 560 |
+
"grad_norm": 0.47729212045669556,
|
| 561 |
+
"learning_rate": 0.0001614070351758794,
|
| 562 |
+
"loss": 0.4509,
|
| 563 |
+
"step": 395
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 1.0,
|
| 567 |
+
"grad_norm": 0.5096570253372192,
|
| 568 |
+
"learning_rate": 0.00016090452261306533,
|
| 569 |
+
"loss": 0.4153,
|
| 570 |
+
"step": 400
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 1.0,
|
| 574 |
+
"eval_loss": 0.5257100462913513,
|
| 575 |
+
"eval_runtime": 17.864,
|
| 576 |
+
"eval_samples_per_second": 22.391,
|
| 577 |
+
"eval_steps_per_second": 2.799,
|
| 578 |
+
"step": 400
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"epoch": 1.0125,
|
| 582 |
+
"grad_norm": 0.49858036637306213,
|
| 583 |
+
"learning_rate": 0.00016040201005025127,
|
| 584 |
+
"loss": 0.427,
|
| 585 |
+
"step": 405
|
| 586 |
+
},
|
| 587 |
+
{
|
| 588 |
+
"epoch": 1.025,
|
| 589 |
+
"grad_norm": 0.5483050346374512,
|
| 590 |
+
"learning_rate": 0.0001598994974874372,
|
| 591 |
+
"loss": 0.4414,
|
| 592 |
+
"step": 410
|
| 593 |
+
},
|
| 594 |
+
{
|
| 595 |
+
"epoch": 1.0375,
|
| 596 |
+
"grad_norm": 0.5298231244087219,
|
| 597 |
+
"learning_rate": 0.0001593969849246231,
|
| 598 |
+
"loss": 0.399,
|
| 599 |
+
"step": 415
|
| 600 |
+
},
|
| 601 |
+
{
|
| 602 |
+
"epoch": 1.05,
|
| 603 |
+
"grad_norm": 0.5137779712677002,
|
| 604 |
+
"learning_rate": 0.00015889447236180906,
|
| 605 |
+
"loss": 0.4153,
|
| 606 |
+
"step": 420
|
| 607 |
+
},
|
| 608 |
+
{
|
| 609 |
+
"epoch": 1.0625,
|
| 610 |
+
"grad_norm": 0.5221366882324219,
|
| 611 |
+
"learning_rate": 0.000158391959798995,
|
| 612 |
+
"loss": 0.4176,
|
| 613 |
+
"step": 425
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"epoch": 1.075,
|
| 617 |
+
"grad_norm": 0.6192128658294678,
|
| 618 |
+
"learning_rate": 0.0001578894472361809,
|
| 619 |
+
"loss": 0.4107,
|
| 620 |
+
"step": 430
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"epoch": 1.0875,
|
| 624 |
+
"grad_norm": 0.5545984506607056,
|
| 625 |
+
"learning_rate": 0.00015738693467336686,
|
| 626 |
+
"loss": 0.4102,
|
| 627 |
+
"step": 435
|
| 628 |
+
},
|
| 629 |
+
{
|
| 630 |
+
"epoch": 1.1,
|
| 631 |
+
"grad_norm": 0.5551674365997314,
|
| 632 |
+
"learning_rate": 0.00015688442211055277,
|
| 633 |
+
"loss": 0.4129,
|
| 634 |
+
"step": 440
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"epoch": 1.1125,
|
| 638 |
+
"grad_norm": 0.505490779876709,
|
| 639 |
+
"learning_rate": 0.0001563819095477387,
|
| 640 |
+
"loss": 0.4172,
|
| 641 |
+
"step": 445
|
| 642 |
+
},
|
| 643 |
+
{
|
| 644 |
+
"epoch": 1.125,
|
| 645 |
+
"grad_norm": 0.5239485502243042,
|
| 646 |
+
"learning_rate": 0.00015587939698492463,
|
| 647 |
+
"loss": 0.4188,
|
| 648 |
+
"step": 450
|
| 649 |
+
},
|
| 650 |
+
{
|
| 651 |
+
"epoch": 1.1375,
|
| 652 |
+
"grad_norm": 0.5464276671409607,
|
| 653 |
+
"learning_rate": 0.00015537688442211056,
|
| 654 |
+
"loss": 0.4155,
|
| 655 |
+
"step": 455
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"epoch": 1.15,
|
| 659 |
+
"grad_norm": 0.496952623128891,
|
| 660 |
+
"learning_rate": 0.0001548743718592965,
|
| 661 |
+
"loss": 0.4166,
|
| 662 |
+
"step": 460
|
| 663 |
+
},
|
| 664 |
+
{
|
| 665 |
+
"epoch": 1.1625,
|
| 666 |
+
"grad_norm": 0.5454787015914917,
|
| 667 |
+
"learning_rate": 0.0001543718592964824,
|
| 668 |
+
"loss": 0.4146,
|
| 669 |
+
"step": 465
|
| 670 |
+
},
|
| 671 |
+
{
|
| 672 |
+
"epoch": 1.175,
|
| 673 |
+
"grad_norm": 0.5375080704689026,
|
| 674 |
+
"learning_rate": 0.00015386934673366836,
|
| 675 |
+
"loss": 0.4166,
|
| 676 |
+
"step": 470
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"epoch": 1.1875,
|
| 680 |
+
"grad_norm": 0.5614022612571716,
|
| 681 |
+
"learning_rate": 0.00015336683417085427,
|
| 682 |
+
"loss": 0.3995,
|
| 683 |
+
"step": 475
|
| 684 |
+
},
|
| 685 |
+
{
|
| 686 |
+
"epoch": 1.2,
|
| 687 |
+
"grad_norm": 0.530121386051178,
|
| 688 |
+
"learning_rate": 0.0001528643216080402,
|
| 689 |
+
"loss": 0.4187,
|
| 690 |
+
"step": 480
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"epoch": 1.2125,
|
| 694 |
+
"grad_norm": 0.4971998333930969,
|
| 695 |
+
"learning_rate": 0.00015236180904522613,
|
| 696 |
+
"loss": 0.3899,
|
| 697 |
+
"step": 485
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"epoch": 1.225,
|
| 701 |
+
"grad_norm": 0.5462106466293335,
|
| 702 |
+
"learning_rate": 0.00015185929648241206,
|
| 703 |
+
"loss": 0.4359,
|
| 704 |
+
"step": 490
|
| 705 |
+
},
|
| 706 |
+
{
|
| 707 |
+
"epoch": 1.2375,
|
| 708 |
+
"grad_norm": 0.5236663222312927,
|
| 709 |
+
"learning_rate": 0.000151356783919598,
|
| 710 |
+
"loss": 0.4127,
|
| 711 |
+
"step": 495
|
| 712 |
+
},
|
| 713 |
+
{
|
| 714 |
+
"epoch": 1.25,
|
| 715 |
+
"grad_norm": 0.5054829716682434,
|
| 716 |
+
"learning_rate": 0.00015085427135678393,
|
| 717 |
+
"loss": 0.4064,
|
| 718 |
+
"step": 500
|
| 719 |
+
},
|
| 720 |
+
{
|
| 721 |
+
"epoch": 1.2625,
|
| 722 |
+
"grad_norm": 0.5926477909088135,
|
| 723 |
+
"learning_rate": 0.00015035175879396986,
|
| 724 |
+
"loss": 0.4085,
|
| 725 |
+
"step": 505
|
| 726 |
+
},
|
| 727 |
+
{
|
| 728 |
+
"epoch": 1.275,
|
| 729 |
+
"grad_norm": 0.5047740936279297,
|
| 730 |
+
"learning_rate": 0.0001498492462311558,
|
| 731 |
+
"loss": 0.398,
|
| 732 |
+
"step": 510
|
| 733 |
+
},
|
| 734 |
+
{
|
| 735 |
+
"epoch": 1.2875,
|
| 736 |
+
"grad_norm": 0.5045680403709412,
|
| 737 |
+
"learning_rate": 0.0001493467336683417,
|
| 738 |
+
"loss": 0.4198,
|
| 739 |
+
"step": 515
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"epoch": 1.3,
|
| 743 |
+
"grad_norm": 0.6037045121192932,
|
| 744 |
+
"learning_rate": 0.00014884422110552766,
|
| 745 |
+
"loss": 0.4625,
|
| 746 |
+
"step": 520
|
| 747 |
+
},
|
| 748 |
+
{
|
| 749 |
+
"epoch": 1.3125,
|
| 750 |
+
"grad_norm": 0.5416387915611267,
|
| 751 |
+
"learning_rate": 0.00014834170854271356,
|
| 752 |
+
"loss": 0.437,
|
| 753 |
+
"step": 525
|
| 754 |
+
},
|
| 755 |
+
{
|
| 756 |
+
"epoch": 1.325,
|
| 757 |
+
"grad_norm": 0.5217929482460022,
|
| 758 |
+
"learning_rate": 0.0001478391959798995,
|
| 759 |
+
"loss": 0.4255,
|
| 760 |
+
"step": 530
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"epoch": 1.3375,
|
| 764 |
+
"grad_norm": 0.6118584275245667,
|
| 765 |
+
"learning_rate": 0.00014733668341708543,
|
| 766 |
+
"loss": 0.4395,
|
| 767 |
+
"step": 535
|
| 768 |
+
},
|
| 769 |
+
{
|
| 770 |
+
"epoch": 1.35,
|
| 771 |
+
"grad_norm": 0.5826886892318726,
|
| 772 |
+
"learning_rate": 0.00014683417085427136,
|
| 773 |
+
"loss": 0.4571,
|
| 774 |
+
"step": 540
|
| 775 |
+
},
|
| 776 |
+
{
|
| 777 |
+
"epoch": 1.3625,
|
| 778 |
+
"grad_norm": 0.5662903785705566,
|
| 779 |
+
"learning_rate": 0.0001463316582914573,
|
| 780 |
+
"loss": 0.4338,
|
| 781 |
+
"step": 545
|
| 782 |
+
},
|
| 783 |
+
{
|
| 784 |
+
"epoch": 1.375,
|
| 785 |
+
"grad_norm": 0.5721105933189392,
|
| 786 |
+
"learning_rate": 0.00014582914572864323,
|
| 787 |
+
"loss": 0.4413,
|
| 788 |
+
"step": 550
|
| 789 |
+
},
|
| 790 |
+
{
|
| 791 |
+
"epoch": 1.3875,
|
| 792 |
+
"grad_norm": 0.5065754055976868,
|
| 793 |
+
"learning_rate": 0.00014532663316582916,
|
| 794 |
+
"loss": 0.3901,
|
| 795 |
+
"step": 555
|
| 796 |
+
},
|
| 797 |
+
{
|
| 798 |
+
"epoch": 1.4,
|
| 799 |
+
"grad_norm": 0.5614690780639648,
|
| 800 |
+
"learning_rate": 0.0001448241206030151,
|
| 801 |
+
"loss": 0.4349,
|
| 802 |
+
"step": 560
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"epoch": 1.4125,
|
| 806 |
+
"grad_norm": 0.5476651787757874,
|
| 807 |
+
"learning_rate": 0.000144321608040201,
|
| 808 |
+
"loss": 0.4219,
|
| 809 |
+
"step": 565
|
| 810 |
+
},
|
| 811 |
+
{
|
| 812 |
+
"epoch": 1.425,
|
| 813 |
+
"grad_norm": 0.6010956764221191,
|
| 814 |
+
"learning_rate": 0.00014381909547738696,
|
| 815 |
+
"loss": 0.4107,
|
| 816 |
+
"step": 570
|
| 817 |
+
},
|
| 818 |
+
{
|
| 819 |
+
"epoch": 1.4375,
|
| 820 |
+
"grad_norm": 0.5348302721977234,
|
| 821 |
+
"learning_rate": 0.00014331658291457286,
|
| 822 |
+
"loss": 0.406,
|
| 823 |
+
"step": 575
|
| 824 |
+
},
|
| 825 |
+
{
|
| 826 |
+
"epoch": 1.45,
|
| 827 |
+
"grad_norm": 0.5349542498588562,
|
| 828 |
+
"learning_rate": 0.0001428140703517588,
|
| 829 |
+
"loss": 0.4016,
|
| 830 |
+
"step": 580
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"epoch": 1.4625,
|
| 834 |
+
"grad_norm": 0.5250505208969116,
|
| 835 |
+
"learning_rate": 0.00014231155778894473,
|
| 836 |
+
"loss": 0.4373,
|
| 837 |
+
"step": 585
|
| 838 |
+
},
|
| 839 |
+
{
|
| 840 |
+
"epoch": 1.475,
|
| 841 |
+
"grad_norm": 0.5296792984008789,
|
| 842 |
+
"learning_rate": 0.00014180904522613066,
|
| 843 |
+
"loss": 0.4394,
|
| 844 |
+
"step": 590
|
| 845 |
+
},
|
| 846 |
+
{
|
| 847 |
+
"epoch": 1.4875,
|
| 848 |
+
"grad_norm": 0.5652737021446228,
|
| 849 |
+
"learning_rate": 0.0001413065326633166,
|
| 850 |
+
"loss": 0.3933,
|
| 851 |
+
"step": 595
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"epoch": 1.5,
|
| 855 |
+
"grad_norm": 0.5297503471374512,
|
| 856 |
+
"learning_rate": 0.00014080402010050252,
|
| 857 |
+
"loss": 0.4161,
|
| 858 |
+
"step": 600
|
| 859 |
+
},
|
| 860 |
+
{
|
| 861 |
+
"epoch": 1.5125,
|
| 862 |
+
"grad_norm": 0.5393604040145874,
|
| 863 |
+
"learning_rate": 0.00014030150753768846,
|
| 864 |
+
"loss": 0.4245,
|
| 865 |
+
"step": 605
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 1.525,
|
| 869 |
+
"grad_norm": 0.4794439375400543,
|
| 870 |
+
"learning_rate": 0.0001397989949748744,
|
| 871 |
+
"loss": 0.4124,
|
| 872 |
+
"step": 610
|
| 873 |
+
},
|
| 874 |
+
{
|
| 875 |
+
"epoch": 1.5375,
|
| 876 |
+
"grad_norm": 0.49562177062034607,
|
| 877 |
+
"learning_rate": 0.0001392964824120603,
|
| 878 |
+
"loss": 0.4092,
|
| 879 |
+
"step": 615
|
| 880 |
+
},
|
| 881 |
+
{
|
| 882 |
+
"epoch": 1.55,
|
| 883 |
+
"grad_norm": 0.562262237071991,
|
| 884 |
+
"learning_rate": 0.00013879396984924625,
|
| 885 |
+
"loss": 0.4007,
|
| 886 |
+
"step": 620
|
| 887 |
+
},
|
| 888 |
+
{
|
| 889 |
+
"epoch": 1.5625,
|
| 890 |
+
"grad_norm": 0.6310052871704102,
|
| 891 |
+
"learning_rate": 0.00013829145728643216,
|
| 892 |
+
"loss": 0.4124,
|
| 893 |
+
"step": 625
|
| 894 |
+
},
|
| 895 |
+
{
|
| 896 |
+
"epoch": 1.575,
|
| 897 |
+
"grad_norm": 0.5664736032485962,
|
| 898 |
+
"learning_rate": 0.0001377889447236181,
|
| 899 |
+
"loss": 0.3917,
|
| 900 |
+
"step": 630
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"epoch": 1.5875,
|
| 904 |
+
"grad_norm": 0.5304264426231384,
|
| 905 |
+
"learning_rate": 0.00013728643216080402,
|
| 906 |
+
"loss": 0.4028,
|
| 907 |
+
"step": 635
|
| 908 |
+
},
|
| 909 |
+
{
|
| 910 |
+
"epoch": 1.6,
|
| 911 |
+
"grad_norm": 0.48095929622650146,
|
| 912 |
+
"learning_rate": 0.00013678391959798996,
|
| 913 |
+
"loss": 0.4264,
|
| 914 |
+
"step": 640
|
| 915 |
+
},
|
| 916 |
+
{
|
| 917 |
+
"epoch": 1.6125,
|
| 918 |
+
"grad_norm": 0.5145896077156067,
|
| 919 |
+
"learning_rate": 0.0001362814070351759,
|
| 920 |
+
"loss": 0.42,
|
| 921 |
+
"step": 645
|
| 922 |
+
},
|
| 923 |
+
{
|
| 924 |
+
"epoch": 1.625,
|
| 925 |
+
"grad_norm": 0.5223731398582458,
|
| 926 |
+
"learning_rate": 0.0001357788944723618,
|
| 927 |
+
"loss": 0.4678,
|
| 928 |
+
"step": 650
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"epoch": 1.6375,
|
| 932 |
+
"grad_norm": 0.5224917531013489,
|
| 933 |
+
"learning_rate": 0.00013527638190954775,
|
| 934 |
+
"loss": 0.3959,
|
| 935 |
+
"step": 655
|
| 936 |
+
},
|
| 937 |
+
{
|
| 938 |
+
"epoch": 1.65,
|
| 939 |
+
"grad_norm": 0.542758047580719,
|
| 940 |
+
"learning_rate": 0.00013477386934673368,
|
| 941 |
+
"loss": 0.4055,
|
| 942 |
+
"step": 660
|
| 943 |
+
},
|
| 944 |
+
{
|
| 945 |
+
"epoch": 1.6625,
|
| 946 |
+
"grad_norm": 0.5222824215888977,
|
| 947 |
+
"learning_rate": 0.0001342713567839196,
|
| 948 |
+
"loss": 0.4452,
|
| 949 |
+
"step": 665
|
| 950 |
+
},
|
| 951 |
+
{
|
| 952 |
+
"epoch": 1.675,
|
| 953 |
+
"grad_norm": 0.5793522596359253,
|
| 954 |
+
"learning_rate": 0.00013376884422110555,
|
| 955 |
+
"loss": 0.4131,
|
| 956 |
+
"step": 670
|
| 957 |
+
},
|
| 958 |
+
{
|
| 959 |
+
"epoch": 1.6875,
|
| 960 |
+
"grad_norm": 0.5987710952758789,
|
| 961 |
+
"learning_rate": 0.00013326633165829146,
|
| 962 |
+
"loss": 0.4091,
|
| 963 |
+
"step": 675
|
| 964 |
+
},
|
| 965 |
+
{
|
| 966 |
+
"epoch": 1.7,
|
| 967 |
+
"grad_norm": 0.6028478741645813,
|
| 968 |
+
"learning_rate": 0.0001327638190954774,
|
| 969 |
+
"loss": 0.4376,
|
| 970 |
+
"step": 680
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"epoch": 1.7125,
|
| 974 |
+
"grad_norm": 0.5682055950164795,
|
| 975 |
+
"learning_rate": 0.00013226130653266332,
|
| 976 |
+
"loss": 0.4102,
|
| 977 |
+
"step": 685
|
| 978 |
+
},
|
| 979 |
+
{
|
| 980 |
+
"epoch": 1.725,
|
| 981 |
+
"grad_norm": 0.5360214710235596,
|
| 982 |
+
"learning_rate": 0.00013175879396984925,
|
| 983 |
+
"loss": 0.4456,
|
| 984 |
+
"step": 690
|
| 985 |
+
},
|
| 986 |
+
{
|
| 987 |
+
"epoch": 1.7375,
|
| 988 |
+
"grad_norm": 0.5613261461257935,
|
| 989 |
+
"learning_rate": 0.00013125628140703518,
|
| 990 |
+
"loss": 0.4042,
|
| 991 |
+
"step": 695
|
| 992 |
+
},
|
| 993 |
+
{
|
| 994 |
+
"epoch": 1.75,
|
| 995 |
+
"grad_norm": 0.5854392647743225,
|
| 996 |
+
"learning_rate": 0.0001307537688442211,
|
| 997 |
+
"loss": 0.3754,
|
| 998 |
+
"step": 700
|
| 999 |
+
},
|
| 1000 |
+
{
|
| 1001 |
+
"epoch": 1.7625,
|
| 1002 |
+
"grad_norm": 0.5785875916481018,
|
| 1003 |
+
"learning_rate": 0.00013025125628140705,
|
| 1004 |
+
"loss": 0.4128,
|
| 1005 |
+
"step": 705
|
| 1006 |
+
},
|
| 1007 |
+
{
|
| 1008 |
+
"epoch": 1.775,
|
| 1009 |
+
"grad_norm": 0.5500577092170715,
|
| 1010 |
+
"learning_rate": 0.00012974874371859298,
|
| 1011 |
+
"loss": 0.4176,
|
| 1012 |
+
"step": 710
|
| 1013 |
+
},
|
| 1014 |
+
{
|
| 1015 |
+
"epoch": 1.7875,
|
| 1016 |
+
"grad_norm": 0.5343199372291565,
|
| 1017 |
+
"learning_rate": 0.0001292462311557789,
|
| 1018 |
+
"loss": 0.4008,
|
| 1019 |
+
"step": 715
|
| 1020 |
+
},
|
| 1021 |
+
{
|
| 1022 |
+
"epoch": 1.8,
|
| 1023 |
+
"grad_norm": 0.5914020538330078,
|
| 1024 |
+
"learning_rate": 0.00012874371859296485,
|
| 1025 |
+
"loss": 0.3919,
|
| 1026 |
+
"step": 720
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"epoch": 1.8125,
|
| 1030 |
+
"grad_norm": 0.5501930117607117,
|
| 1031 |
+
"learning_rate": 0.00012824120603015075,
|
| 1032 |
+
"loss": 0.3797,
|
| 1033 |
+
"step": 725
|
| 1034 |
+
},
|
| 1035 |
+
{
|
| 1036 |
+
"epoch": 1.825,
|
| 1037 |
+
"grad_norm": 0.5344274640083313,
|
| 1038 |
+
"learning_rate": 0.00012773869346733668,
|
| 1039 |
+
"loss": 0.4045,
|
| 1040 |
+
"step": 730
|
| 1041 |
+
},
|
| 1042 |
+
{
|
| 1043 |
+
"epoch": 1.8375,
|
| 1044 |
+
"grad_norm": 0.5303798913955688,
|
| 1045 |
+
"learning_rate": 0.00012723618090452262,
|
| 1046 |
+
"loss": 0.4098,
|
| 1047 |
+
"step": 735
|
| 1048 |
+
},
|
| 1049 |
+
{
|
| 1050 |
+
"epoch": 1.85,
|
| 1051 |
+
"grad_norm": 0.5791289806365967,
|
| 1052 |
+
"learning_rate": 0.00012673366834170855,
|
| 1053 |
+
"loss": 0.4166,
|
| 1054 |
+
"step": 740
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"epoch": 1.8625,
|
| 1058 |
+
"grad_norm": 0.5153045058250427,
|
| 1059 |
+
"learning_rate": 0.00012623115577889448,
|
| 1060 |
+
"loss": 0.4011,
|
| 1061 |
+
"step": 745
|
| 1062 |
+
},
|
| 1063 |
+
{
|
| 1064 |
+
"epoch": 1.875,
|
| 1065 |
+
"grad_norm": 0.5780820846557617,
|
| 1066 |
+
"learning_rate": 0.0001257286432160804,
|
| 1067 |
+
"loss": 0.3839,
|
| 1068 |
+
"step": 750
|
| 1069 |
+
},
|
| 1070 |
+
{
|
| 1071 |
+
"epoch": 1.8875,
|
| 1072 |
+
"grad_norm": 0.5261033177375793,
|
| 1073 |
+
"learning_rate": 0.00012522613065326635,
|
| 1074 |
+
"loss": 0.402,
|
| 1075 |
+
"step": 755
|
| 1076 |
+
},
|
| 1077 |
+
{
|
| 1078 |
+
"epoch": 1.9,
|
| 1079 |
+
"grad_norm": 0.5911995768547058,
|
| 1080 |
+
"learning_rate": 0.00012472361809045228,
|
| 1081 |
+
"loss": 0.4032,
|
| 1082 |
+
"step": 760
|
| 1083 |
+
},
|
| 1084 |
+
{
|
| 1085 |
+
"epoch": 1.9125,
|
| 1086 |
+
"grad_norm": 0.519932746887207,
|
| 1087 |
+
"learning_rate": 0.00012422110552763818,
|
| 1088 |
+
"loss": 0.4091,
|
| 1089 |
+
"step": 765
|
| 1090 |
+
},
|
| 1091 |
+
{
|
| 1092 |
+
"epoch": 1.925,
|
| 1093 |
+
"grad_norm": 0.5260487794876099,
|
| 1094 |
+
"learning_rate": 0.00012371859296482414,
|
| 1095 |
+
"loss": 0.3896,
|
| 1096 |
+
"step": 770
|
| 1097 |
+
},
|
| 1098 |
+
{
|
| 1099 |
+
"epoch": 1.9375,
|
| 1100 |
+
"grad_norm": 0.5135574340820312,
|
| 1101 |
+
"learning_rate": 0.00012321608040201005,
|
| 1102 |
+
"loss": 0.4313,
|
| 1103 |
+
"step": 775
|
| 1104 |
+
},
|
| 1105 |
+
{
|
| 1106 |
+
"epoch": 1.95,
|
| 1107 |
+
"grad_norm": 0.6207651495933533,
|
| 1108 |
+
"learning_rate": 0.00012271356783919598,
|
| 1109 |
+
"loss": 0.4357,
|
| 1110 |
+
"step": 780
|
| 1111 |
+
},
|
| 1112 |
+
{
|
| 1113 |
+
"epoch": 1.9625,
|
| 1114 |
+
"grad_norm": 0.5082093477249146,
|
| 1115 |
+
"learning_rate": 0.00012221105527638191,
|
| 1116 |
+
"loss": 0.4082,
|
| 1117 |
+
"step": 785
|
| 1118 |
+
},
|
| 1119 |
+
{
|
| 1120 |
+
"epoch": 1.975,
|
| 1121 |
+
"grad_norm": 0.5137083530426025,
|
| 1122 |
+
"learning_rate": 0.00012170854271356785,
|
| 1123 |
+
"loss": 0.402,
|
| 1124 |
+
"step": 790
|
| 1125 |
+
},
|
| 1126 |
+
{
|
| 1127 |
+
"epoch": 1.9875,
|
| 1128 |
+
"grad_norm": 0.5387287139892578,
|
| 1129 |
+
"learning_rate": 0.00012120603015075378,
|
| 1130 |
+
"loss": 0.3952,
|
| 1131 |
+
"step": 795
|
| 1132 |
+
},
|
| 1133 |
+
{
|
| 1134 |
+
"epoch": 2.0,
|
| 1135 |
+
"grad_norm": 0.5328527092933655,
|
| 1136 |
+
"learning_rate": 0.0001207035175879397,
|
| 1137 |
+
"loss": 0.394,
|
| 1138 |
+
"step": 800
|
| 1139 |
+
},
|
| 1140 |
+
{
|
| 1141 |
+
"epoch": 2.0,
|
| 1142 |
+
"eval_loss": 0.5232270359992981,
|
| 1143 |
+
"eval_runtime": 17.3583,
|
| 1144 |
+
"eval_samples_per_second": 23.044,
|
| 1145 |
+
"eval_steps_per_second": 2.88,
|
| 1146 |
+
"step": 800
|
| 1147 |
+
}
|
| 1148 |
+
],
|
| 1149 |
+
"logging_steps": 5,
|
| 1150 |
+
"max_steps": 2000,
|
| 1151 |
+
"num_input_tokens_seen": 0,
|
| 1152 |
+
"num_train_epochs": 5,
|
| 1153 |
+
"save_steps": 500,
|
| 1154 |
+
"stateful_callbacks": {
|
| 1155 |
+
"EarlyStoppingCallback": {
|
| 1156 |
+
"args": {
|
| 1157 |
+
"early_stopping_patience": 2,
|
| 1158 |
+
"early_stopping_threshold": 0.01
|
| 1159 |
+
},
|
| 1160 |
+
"attributes": {
|
| 1161 |
+
"early_stopping_patience_counter": 1
|
| 1162 |
+
}
|
| 1163 |
+
},
|
| 1164 |
+
"TrainerControl": {
|
| 1165 |
+
"args": {
|
| 1166 |
+
"should_epoch_stop": false,
|
| 1167 |
+
"should_evaluate": false,
|
| 1168 |
+
"should_log": false,
|
| 1169 |
+
"should_save": true,
|
| 1170 |
+
"should_training_stop": false
|
| 1171 |
+
},
|
| 1172 |
+
"attributes": {}
|
| 1173 |
+
}
|
| 1174 |
+
},
|
| 1175 |
+
"total_flos": 1.747212965907456e+16,
|
| 1176 |
+
"train_batch_size": 1,
|
| 1177 |
+
"trial_name": null,
|
| 1178 |
+
"trial_params": null
|
| 1179 |
+
}
|
checkpoint-800/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70074cd0f36e0bbd26ec8acd16a12c18f0120870f7f2a1624c8b0f6e58a06a26
|
| 3 |
+
size 5777
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70074cd0f36e0bbd26ec8acd16a12c18f0120870f7f2a1624c8b0f6e58a06a26
|
| 3 |
+
size 5777
|