Text Generation
PEFT
Safetensors
Transformers
qwen3
lora
sft
trl
conversational
text-generation-inference
Instructions to use Gege24/zeus-gr-intercode-test_with_augment_and_real_exec with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Gege24/zeus-gr-intercode-test_with_augment_and_real_exec with PEFT:
Base model is not found.
- Transformers
How to use Gege24/zeus-gr-intercode-test_with_augment_and_real_exec with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Gege24/zeus-gr-intercode-test_with_augment_and_real_exec") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Gege24/zeus-gr-intercode-test_with_augment_and_real_exec") model = AutoModelForCausalLM.from_pretrained("Gege24/zeus-gr-intercode-test_with_augment_and_real_exec") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Gege24/zeus-gr-intercode-test_with_augment_and_real_exec with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Gege24/zeus-gr-intercode-test_with_augment_and_real_exec" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Gege24/zeus-gr-intercode-test_with_augment_and_real_exec", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Gege24/zeus-gr-intercode-test_with_augment_and_real_exec
- SGLang
How to use Gege24/zeus-gr-intercode-test_with_augment_and_real_exec 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 "Gege24/zeus-gr-intercode-test_with_augment_and_real_exec" \ --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": "Gege24/zeus-gr-intercode-test_with_augment_and_real_exec", "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 "Gege24/zeus-gr-intercode-test_with_augment_and_real_exec" \ --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": "Gege24/zeus-gr-intercode-test_with_augment_and_real_exec", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Gege24/zeus-gr-intercode-test_with_augment_and_real_exec with Docker Model Runner:
docker model run hf.co/Gege24/zeus-gr-intercode-test_with_augment_and_real_exec
Upload task output zeus-gr-intercode-1780276669
Browse files- README.md +209 -0
- adapter_config.json +46 -0
- adapter_model.safetensors +3 -0
- loss.txt +1 -0
- trainer_state.json +691 -0
- training_args.bin +3 -0
README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: None
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/cache/models/Jordansky--augmented-f560e4e6ee71e78d
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.1
|
adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": null,
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 512,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.1,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.1",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 128,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"v_proj",
|
| 33 |
+
"down_proj",
|
| 34 |
+
"q_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"o_proj",
|
| 37 |
+
"gate_proj",
|
| 38 |
+
"up_proj"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "CAUSAL_LM",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61bceba142966f588fa57d0ea24b1115cb956dd526741f2714386157e8fdd986
|
| 3 |
+
size 1057033224
|
loss.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
368,no_eval
|
trainer_state.json
ADDED
|
@@ -0,0 +1,691 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.9363867684478372,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 368,
|
| 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.01272264631043257,
|
| 14 |
+
"grad_norm": 7.66570520401001,
|
| 15 |
+
"learning_rate": 7.142e-06,
|
| 16 |
+
"loss": 1.8805,
|
| 17 |
+
"mean_token_accuracy": 0.6622064590454102,
|
| 18 |
+
"num_tokens": 204352.0,
|
| 19 |
+
"step": 5
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"epoch": 0.02544529262086514,
|
| 23 |
+
"grad_norm": 1.9406589269638062,
|
| 24 |
+
"learning_rate": 1.6069500000000003e-05,
|
| 25 |
+
"loss": 1.3809,
|
| 26 |
+
"mean_token_accuracy": 0.6968963027000428,
|
| 27 |
+
"num_tokens": 408371.0,
|
| 28 |
+
"step": 10
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"epoch": 0.03816793893129771,
|
| 32 |
+
"grad_norm": 1.4358961582183838,
|
| 33 |
+
"learning_rate": 2.4997e-05,
|
| 34 |
+
"loss": 0.8872,
|
| 35 |
+
"mean_token_accuracy": 0.7816788077354431,
|
| 36 |
+
"num_tokens": 612497.0,
|
| 37 |
+
"step": 15
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"epoch": 0.05089058524173028,
|
| 41 |
+
"grad_norm": 0.9055664539337158,
|
| 42 |
+
"learning_rate": 3.3924500000000004e-05,
|
| 43 |
+
"loss": 0.449,
|
| 44 |
+
"mean_token_accuracy": 0.8871559858322143,
|
| 45 |
+
"num_tokens": 816690.0,
|
| 46 |
+
"step": 20
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 0.06361323155216285,
|
| 50 |
+
"grad_norm": 1.860472321510315,
|
| 51 |
+
"learning_rate": 3.570240107586499e-05,
|
| 52 |
+
"loss": 0.182,
|
| 53 |
+
"mean_token_accuracy": 0.9483001828193665,
|
| 54 |
+
"num_tokens": 1019984.0,
|
| 55 |
+
"step": 25
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"epoch": 0.07633587786259542,
|
| 59 |
+
"grad_norm": 0.7346654534339905,
|
| 60 |
+
"learning_rate": 3.567154522651094e-05,
|
| 61 |
+
"loss": 0.1147,
|
| 62 |
+
"mean_token_accuracy": 0.9639001488685608,
|
| 63 |
+
"num_tokens": 1223779.0,
|
| 64 |
+
"step": 30
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"epoch": 0.089058524173028,
|
| 68 |
+
"grad_norm": 1.6021146774291992,
|
| 69 |
+
"learning_rate": 3.561701219067847e-05,
|
| 70 |
+
"loss": 0.1031,
|
| 71 |
+
"mean_token_accuracy": 0.9666669845581055,
|
| 72 |
+
"num_tokens": 1427505.0,
|
| 73 |
+
"step": 35
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.10178117048346055,
|
| 77 |
+
"grad_norm": 0.35029786825180054,
|
| 78 |
+
"learning_rate": 3.553889866638751e-05,
|
| 79 |
+
"loss": 0.0807,
|
| 80 |
+
"mean_token_accuracy": 0.9725039839744568,
|
| 81 |
+
"num_tokens": 1631635.0,
|
| 82 |
+
"step": 40
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 0.11450381679389313,
|
| 86 |
+
"grad_norm": 0.255508154630661,
|
| 87 |
+
"learning_rate": 3.543734316459772e-05,
|
| 88 |
+
"loss": 0.0784,
|
| 89 |
+
"mean_token_accuracy": 0.9729812264442443,
|
| 90 |
+
"num_tokens": 1836177.0,
|
| 91 |
+
"step": 45
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"epoch": 0.1272264631043257,
|
| 95 |
+
"grad_norm": 0.27013325691223145,
|
| 96 |
+
"learning_rate": 3.53125257636008e-05,
|
| 97 |
+
"loss": 0.0732,
|
| 98 |
+
"mean_token_accuracy": 0.9745353579521179,
|
| 99 |
+
"num_tokens": 2040117.0,
|
| 100 |
+
"step": 50
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.13994910941475827,
|
| 104 |
+
"grad_norm": 0.23351548612117767,
|
| 105 |
+
"learning_rate": 3.516466778970551e-05,
|
| 106 |
+
"loss": 0.0684,
|
| 107 |
+
"mean_token_accuracy": 0.9762374997138977,
|
| 108 |
+
"num_tokens": 2244475.0,
|
| 109 |
+
"step": 55
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.15267175572519084,
|
| 113 |
+
"grad_norm": 0.258129745721817,
|
| 114 |
+
"learning_rate": 3.49940314247817e-05,
|
| 115 |
+
"loss": 0.0689,
|
| 116 |
+
"mean_token_accuracy": 0.9754044890403748,
|
| 117 |
+
"num_tokens": 2448636.0,
|
| 118 |
+
"step": 60
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 0.16539440203562342,
|
| 122 |
+
"grad_norm": 0.20423570275306702,
|
| 123 |
+
"learning_rate": 3.480091924135923e-05,
|
| 124 |
+
"loss": 0.0673,
|
| 125 |
+
"mean_token_accuracy": 0.976031219959259,
|
| 126 |
+
"num_tokens": 2652601.0,
|
| 127 |
+
"step": 65
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"epoch": 0.178117048346056,
|
| 131 |
+
"grad_norm": 0.13115821778774261,
|
| 132 |
+
"learning_rate": 3.458567366610612e-05,
|
| 133 |
+
"loss": 0.0596,
|
| 134 |
+
"mean_token_accuracy": 0.9785127282142639,
|
| 135 |
+
"num_tokens": 2857182.0,
|
| 136 |
+
"step": 70
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.19083969465648856,
|
| 140 |
+
"grad_norm": 0.15491832792758942,
|
| 141 |
+
"learning_rate": 3.434867637263733e-05,
|
| 142 |
+
"loss": 0.056,
|
| 143 |
+
"mean_token_accuracy": 0.9797403216362,
|
| 144 |
+
"num_tokens": 3061762.0,
|
| 145 |
+
"step": 75
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.2035623409669211,
|
| 149 |
+
"grad_norm": 0.18029575049877167,
|
| 150 |
+
"learning_rate": 3.4090347604730814e-05,
|
| 151 |
+
"loss": 0.0567,
|
| 152 |
+
"mean_token_accuracy": 0.9793354153633118,
|
| 153 |
+
"num_tokens": 3265924.0,
|
| 154 |
+
"step": 80
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"epoch": 0.21628498727735368,
|
| 158 |
+
"grad_norm": 0.12074996531009674,
|
| 159 |
+
"learning_rate": 3.381114543115096e-05,
|
| 160 |
+
"loss": 0.0538,
|
| 161 |
+
"mean_token_accuracy": 0.980361008644104,
|
| 162 |
+
"num_tokens": 3470056.0,
|
| 163 |
+
"step": 85
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"epoch": 0.22900763358778625,
|
| 167 |
+
"grad_norm": 0.14074520766735077,
|
| 168 |
+
"learning_rate": 3.351156493340068e-05,
|
| 169 |
+
"loss": 0.0585,
|
| 170 |
+
"mean_token_accuracy": 0.9789868593215942,
|
| 171 |
+
"num_tokens": 3674439.0,
|
| 172 |
+
"step": 90
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"epoch": 0.24173027989821882,
|
| 176 |
+
"grad_norm": 0.11715356260538101,
|
| 177 |
+
"learning_rate": 3.319213732784259e-05,
|
| 178 |
+
"loss": 0.0608,
|
| 179 |
+
"mean_token_accuracy": 0.977981960773468,
|
| 180 |
+
"num_tokens": 3878368.0,
|
| 181 |
+
"step": 95
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"epoch": 0.2544529262086514,
|
| 185 |
+
"grad_norm": 0.160597562789917,
|
| 186 |
+
"learning_rate": 3.285342902374564e-05,
|
| 187 |
+
"loss": 0.0541,
|
| 188 |
+
"mean_token_accuracy": 0.9802710533142089,
|
| 189 |
+
"num_tokens": 4082520.0,
|
| 190 |
+
"step": 100
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 0.26717557251908397,
|
| 194 |
+
"grad_norm": 0.13476158678531647,
|
| 195 |
+
"learning_rate": 3.249604061892791e-05,
|
| 196 |
+
"loss": 0.058,
|
| 197 |
+
"mean_token_accuracy": 0.9789228081703186,
|
| 198 |
+
"num_tokens": 4286416.0,
|
| 199 |
+
"step": 105
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.27989821882951654,
|
| 203 |
+
"grad_norm": 0.13968558609485626,
|
| 204 |
+
"learning_rate": 3.212060583477598e-05,
|
| 205 |
+
"loss": 0.0545,
|
| 206 |
+
"mean_token_accuracy": 0.9799705028533936,
|
| 207 |
+
"num_tokens": 4490360.0,
|
| 208 |
+
"step": 110
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.2926208651399491,
|
| 212 |
+
"grad_norm": 0.18748225271701813,
|
| 213 |
+
"learning_rate": 3.172779039252981e-05,
|
| 214 |
+
"loss": 0.0521,
|
| 215 |
+
"mean_token_accuracy": 0.9808894634246826,
|
| 216 |
+
"num_tokens": 4694687.0,
|
| 217 |
+
"step": 115
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"epoch": 0.3053435114503817,
|
| 221 |
+
"grad_norm": 0.10537264496088028,
|
| 222 |
+
"learning_rate": 3.131829083282526e-05,
|
| 223 |
+
"loss": 0.0647,
|
| 224 |
+
"mean_token_accuracy": 0.9768295168876648,
|
| 225 |
+
"num_tokens": 4898444.0,
|
| 226 |
+
"step": 120
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.31806615776081426,
|
| 230 |
+
"grad_norm": 0.17765143513679504,
|
| 231 |
+
"learning_rate": 3.089283328058774e-05,
|
| 232 |
+
"loss": 0.0556,
|
| 233 |
+
"mean_token_accuracy": 0.9799776554107666,
|
| 234 |
+
"num_tokens": 5102850.0,
|
| 235 |
+
"step": 125
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 0.33078880407124683,
|
| 239 |
+
"grad_norm": 0.1285717487335205,
|
| 240 |
+
"learning_rate": 3.045217215746697e-05,
|
| 241 |
+
"loss": 0.0549,
|
| 242 |
+
"mean_token_accuracy": 0.9798083662986755,
|
| 243 |
+
"num_tokens": 5307181.0,
|
| 244 |
+
"step": 130
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 0.3435114503816794,
|
| 248 |
+
"grad_norm": 0.14681582152843475,
|
| 249 |
+
"learning_rate": 2.9997088844095903e-05,
|
| 250 |
+
"loss": 0.0472,
|
| 251 |
+
"mean_token_accuracy": 0.9827617883682251,
|
| 252 |
+
"num_tokens": 5511359.0,
|
| 253 |
+
"step": 135
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"epoch": 0.356234096692112,
|
| 257 |
+
"grad_norm": 0.10448456555604935,
|
| 258 |
+
"learning_rate": 2.9528390294546044e-05,
|
| 259 |
+
"loss": 0.0597,
|
| 260 |
+
"mean_token_accuracy": 0.9781724691390992,
|
| 261 |
+
"num_tokens": 5715595.0,
|
| 262 |
+
"step": 140
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.36895674300254455,
|
| 266 |
+
"grad_norm": 0.1462472528219223,
|
| 267 |
+
"learning_rate": 2.9046907605435848e-05,
|
| 268 |
+
"loss": 0.054,
|
| 269 |
+
"mean_token_accuracy": 0.9804641366004944,
|
| 270 |
+
"num_tokens": 5919772.0,
|
| 271 |
+
"step": 145
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"epoch": 0.3816793893129771,
|
| 275 |
+
"grad_norm": 0.1421613097190857,
|
| 276 |
+
"learning_rate": 2.8553494542229622e-05,
|
| 277 |
+
"loss": 0.0493,
|
| 278 |
+
"mean_token_accuracy": 0.9818941712379455,
|
| 279 |
+
"num_tokens": 6123654.0,
|
| 280 |
+
"step": 150
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 0.3944020356234097,
|
| 284 |
+
"grad_norm": 0.1263999044895172,
|
| 285 |
+
"learning_rate": 2.804902602533992e-05,
|
| 286 |
+
"loss": 0.0525,
|
| 287 |
+
"mean_token_accuracy": 0.980873703956604,
|
| 288 |
+
"num_tokens": 6327633.0,
|
| 289 |
+
"step": 155
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"epoch": 0.4071246819338422,
|
| 293 |
+
"grad_norm": 0.13942250609397888,
|
| 294 |
+
"learning_rate": 2.753439657871804e-05,
|
| 295 |
+
"loss": 0.0558,
|
| 296 |
+
"mean_token_accuracy": 0.97970951795578,
|
| 297 |
+
"num_tokens": 6531407.0,
|
| 298 |
+
"step": 160
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"epoch": 0.4198473282442748,
|
| 302 |
+
"grad_norm": 0.13747908174991608,
|
| 303 |
+
"learning_rate": 2.7010518743683477e-05,
|
| 304 |
+
"loss": 0.0503,
|
| 305 |
+
"mean_token_accuracy": 0.9813982605934143,
|
| 306 |
+
"num_tokens": 6735388.0,
|
| 307 |
+
"step": 165
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.43256997455470736,
|
| 311 |
+
"grad_norm": 0.08825346827507019,
|
| 312 |
+
"learning_rate": 2.6478321460804976e-05,
|
| 313 |
+
"loss": 0.0501,
|
| 314 |
+
"mean_token_accuracy": 0.9816948294639587,
|
| 315 |
+
"num_tokens": 6938927.0,
|
| 316 |
+
"step": 170
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"epoch": 0.44529262086513993,
|
| 320 |
+
"grad_norm": 0.19031524658203125,
|
| 321 |
+
"learning_rate": 2.5938748422702418e-05,
|
| 322 |
+
"loss": 0.0538,
|
| 323 |
+
"mean_token_accuracy": 0.9802047729492187,
|
| 324 |
+
"num_tokens": 7143289.0,
|
| 325 |
+
"step": 175
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.4580152671755725,
|
| 329 |
+
"grad_norm": 0.10854300111532211,
|
| 330 |
+
"learning_rate": 2.539275640069035e-05,
|
| 331 |
+
"loss": 0.0472,
|
| 332 |
+
"mean_token_accuracy": 0.9826422333717346,
|
| 333 |
+
"num_tokens": 7347460.0,
|
| 334 |
+
"step": 180
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"epoch": 0.4707379134860051,
|
| 338 |
+
"grad_norm": 0.11002419143915176,
|
| 339 |
+
"learning_rate": 2.484131354823041e-05,
|
| 340 |
+
"loss": 0.0535,
|
| 341 |
+
"mean_token_accuracy": 0.9802260994911194,
|
| 342 |
+
"num_tokens": 7551434.0,
|
| 343 |
+
"step": 185
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 0.48346055979643765,
|
| 347 |
+
"grad_norm": 0.1230173334479332,
|
| 348 |
+
"learning_rate": 2.4285397684200836e-05,
|
| 349 |
+
"loss": 0.058,
|
| 350 |
+
"mean_token_accuracy": 0.9790604472160339,
|
| 351 |
+
"num_tokens": 7755531.0,
|
| 352 |
+
"step": 190
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"epoch": 0.4961832061068702,
|
| 356 |
+
"grad_norm": 0.12328363955020905,
|
| 357 |
+
"learning_rate": 2.3725994559027345e-05,
|
| 358 |
+
"loss": 0.0494,
|
| 359 |
+
"mean_token_accuracy": 0.982027554512024,
|
| 360 |
+
"num_tokens": 7959120.0,
|
| 361 |
+
"step": 195
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"epoch": 0.5089058524173028,
|
| 365 |
+
"grad_norm": 0.14120548963546753,
|
| 366 |
+
"learning_rate": 2.3164096106749705e-05,
|
| 367 |
+
"loss": 0.0559,
|
| 368 |
+
"mean_token_accuracy": 0.9795668363571167,
|
| 369 |
+
"num_tokens": 8163304.0,
|
| 370 |
+
"step": 200
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 0.5216284987277354,
|
| 374 |
+
"grad_norm": 0.13413408398628235,
|
| 375 |
+
"learning_rate": 2.260069868612358e-05,
|
| 376 |
+
"loss": 0.0522,
|
| 377 |
+
"mean_token_accuracy": 0.9810293197631836,
|
| 378 |
+
"num_tokens": 8367304.0,
|
| 379 |
+
"step": 205
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"epoch": 0.5343511450381679,
|
| 383 |
+
"grad_norm": 0.1026059240102768,
|
| 384 |
+
"learning_rate": 2.203680131387643e-05,
|
| 385 |
+
"loss": 0.0482,
|
| 386 |
+
"mean_token_accuracy": 0.9819956064224243,
|
| 387 |
+
"num_tokens": 8571809.0,
|
| 388 |
+
"step": 210
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.5470737913486005,
|
| 392 |
+
"grad_norm": 0.11920855939388275,
|
| 393 |
+
"learning_rate": 2.1473403893250302e-05,
|
| 394 |
+
"loss": 0.0543,
|
| 395 |
+
"mean_token_accuracy": 0.9803555488586426,
|
| 396 |
+
"num_tokens": 8775987.0,
|
| 397 |
+
"step": 215
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"epoch": 0.5597964376590331,
|
| 401 |
+
"grad_norm": 0.15539394319057465,
|
| 402 |
+
"learning_rate": 2.0911505440972662e-05,
|
| 403 |
+
"loss": 0.0585,
|
| 404 |
+
"mean_token_accuracy": 0.9789112687110901,
|
| 405 |
+
"num_tokens": 8980105.0,
|
| 406 |
+
"step": 220
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"epoch": 0.5725190839694656,
|
| 410 |
+
"grad_norm": 0.1551484316587448,
|
| 411 |
+
"learning_rate": 2.0352102315799165e-05,
|
| 412 |
+
"loss": 0.0536,
|
| 413 |
+
"mean_token_accuracy": 0.9803162574768066,
|
| 414 |
+
"num_tokens": 9184510.0,
|
| 415 |
+
"step": 225
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 0.5852417302798982,
|
| 419 |
+
"grad_norm": 0.12535728514194489,
|
| 420 |
+
"learning_rate": 1.9796186451769593e-05,
|
| 421 |
+
"loss": 0.0497,
|
| 422 |
+
"mean_token_accuracy": 0.9818916082382202,
|
| 423 |
+
"num_tokens": 9388438.0,
|
| 424 |
+
"step": 230
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"epoch": 0.5979643765903307,
|
| 428 |
+
"grad_norm": 0.13271310925483704,
|
| 429 |
+
"learning_rate": 1.924474359930965e-05,
|
| 430 |
+
"loss": 0.0524,
|
| 431 |
+
"mean_token_accuracy": 0.9809573411941528,
|
| 432 |
+
"num_tokens": 9592608.0,
|
| 433 |
+
"step": 235
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 0.6106870229007634,
|
| 437 |
+
"grad_norm": 0.11600778251886368,
|
| 438 |
+
"learning_rate": 1.869875157729759e-05,
|
| 439 |
+
"loss": 0.0552,
|
| 440 |
+
"mean_token_accuracy": 0.9797375440597534,
|
| 441 |
+
"num_tokens": 9796999.0,
|
| 442 |
+
"step": 240
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"epoch": 0.6234096692111959,
|
| 446 |
+
"grad_norm": 0.12414652854204178,
|
| 447 |
+
"learning_rate": 1.815917853919503e-05,
|
| 448 |
+
"loss": 0.048,
|
| 449 |
+
"mean_token_accuracy": 0.9824962496757508,
|
| 450 |
+
"num_tokens": 10000279.0,
|
| 451 |
+
"step": 245
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.6361323155216285,
|
| 455 |
+
"grad_norm": 0.1270761489868164,
|
| 456 |
+
"learning_rate": 1.7626981256316527e-05,
|
| 457 |
+
"loss": 0.0487,
|
| 458 |
+
"mean_token_accuracy": 0.9822483897209168,
|
| 459 |
+
"num_tokens": 10204018.0,
|
| 460 |
+
"step": 250
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 0.648854961832061,
|
| 464 |
+
"grad_norm": 0.09779980033636093,
|
| 465 |
+
"learning_rate": 1.7103103421281967e-05,
|
| 466 |
+
"loss": 0.0516,
|
| 467 |
+
"mean_token_accuracy": 0.9810034275054932,
|
| 468 |
+
"num_tokens": 10408010.0,
|
| 469 |
+
"step": 255
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"epoch": 0.6615776081424937,
|
| 473 |
+
"grad_norm": 0.11059050261974335,
|
| 474 |
+
"learning_rate": 1.658847397466009e-05,
|
| 475 |
+
"loss": 0.0525,
|
| 476 |
+
"mean_token_accuracy": 0.9808456897735596,
|
| 477 |
+
"num_tokens": 10611936.0,
|
| 478 |
+
"step": 260
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 0.6743002544529262,
|
| 482 |
+
"grad_norm": 0.09004539996385574,
|
| 483 |
+
"learning_rate": 1.6084005457770385e-05,
|
| 484 |
+
"loss": 0.0496,
|
| 485 |
+
"mean_token_accuracy": 0.9818039417266846,
|
| 486 |
+
"num_tokens": 10816288.0,
|
| 487 |
+
"step": 265
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.6870229007633588,
|
| 491 |
+
"grad_norm": 0.10434029996395111,
|
| 492 |
+
"learning_rate": 1.5590592394564157e-05,
|
| 493 |
+
"loss": 0.0482,
|
| 494 |
+
"mean_token_accuracy": 0.9822108745574951,
|
| 495 |
+
"num_tokens": 11020673.0,
|
| 496 |
+
"step": 270
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 0.6997455470737913,
|
| 500 |
+
"grad_norm": 0.09719809144735336,
|
| 501 |
+
"learning_rate": 1.5109109705453962e-05,
|
| 502 |
+
"loss": 0.0527,
|
| 503 |
+
"mean_token_accuracy": 0.9806708216667175,
|
| 504 |
+
"num_tokens": 11224646.0,
|
| 505 |
+
"step": 275
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 0.712468193384224,
|
| 509 |
+
"grad_norm": 0.10297023504972458,
|
| 510 |
+
"learning_rate": 1.46404111559041e-05,
|
| 511 |
+
"loss": 0.0488,
|
| 512 |
+
"mean_token_accuracy": 0.9819470047950745,
|
| 513 |
+
"num_tokens": 11429157.0,
|
| 514 |
+
"step": 280
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.7251908396946565,
|
| 518 |
+
"grad_norm": 0.1588681936264038,
|
| 519 |
+
"learning_rate": 1.4185327842533032e-05,
|
| 520 |
+
"loss": 0.0568,
|
| 521 |
+
"mean_token_accuracy": 0.9791428089141846,
|
| 522 |
+
"num_tokens": 11633534.0,
|
| 523 |
+
"step": 285
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"epoch": 0.7379134860050891,
|
| 527 |
+
"grad_norm": 0.08974728733301163,
|
| 528 |
+
"learning_rate": 1.3744666719412261e-05,
|
| 529 |
+
"loss": 0.0486,
|
| 530 |
+
"mean_token_accuracy": 0.982176947593689,
|
| 531 |
+
"num_tokens": 11837304.0,
|
| 532 |
+
"step": 290
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"epoch": 0.7506361323155216,
|
| 536 |
+
"grad_norm": 0.12151776254177094,
|
| 537 |
+
"learning_rate": 1.3319209167174745e-05,
|
| 538 |
+
"loss": 0.0456,
|
| 539 |
+
"mean_token_accuracy": 0.9831613540649414,
|
| 540 |
+
"num_tokens": 12041445.0,
|
| 541 |
+
"step": 295
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 0.7633587786259542,
|
| 545 |
+
"grad_norm": 0.14409556984901428,
|
| 546 |
+
"learning_rate": 1.2909709607470192e-05,
|
| 547 |
+
"loss": 0.0557,
|
| 548 |
+
"mean_token_accuracy": 0.9793829798698426,
|
| 549 |
+
"num_tokens": 12245544.0,
|
| 550 |
+
"step": 300
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 0.7760814249363868,
|
| 554 |
+
"grad_norm": 0.12963253259658813,
|
| 555 |
+
"learning_rate": 1.2516894165224026e-05,
|
| 556 |
+
"loss": 0.0541,
|
| 557 |
+
"mean_token_accuracy": 0.980055284500122,
|
| 558 |
+
"num_tokens": 12450041.0,
|
| 559 |
+
"step": 305
|
| 560 |
+
},
|
| 561 |
+
{
|
| 562 |
+
"epoch": 0.7888040712468194,
|
| 563 |
+
"grad_norm": 0.09643556922674179,
|
| 564 |
+
"learning_rate": 1.2141459381072098e-05,
|
| 565 |
+
"loss": 0.0506,
|
| 566 |
+
"mean_token_accuracy": 0.9816014289855957,
|
| 567 |
+
"num_tokens": 12654456.0,
|
| 568 |
+
"step": 310
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"epoch": 0.8015267175572519,
|
| 572 |
+
"grad_norm": 0.07658141851425171,
|
| 573 |
+
"learning_rate": 1.178407097625436e-05,
|
| 574 |
+
"loss": 0.0527,
|
| 575 |
+
"mean_token_accuracy": 0.9805378794670105,
|
| 576 |
+
"num_tokens": 12858221.0,
|
| 577 |
+
"step": 315
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.8142493638676844,
|
| 581 |
+
"grad_norm": 0.09057999402284622,
|
| 582 |
+
"learning_rate": 1.1445362672157415e-05,
|
| 583 |
+
"loss": 0.0555,
|
| 584 |
+
"mean_token_accuracy": 0.9796663165092468,
|
| 585 |
+
"num_tokens": 13061611.0,
|
| 586 |
+
"step": 320
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"epoch": 0.8269720101781171,
|
| 590 |
+
"grad_norm": 0.10103996098041534,
|
| 591 |
+
"learning_rate": 1.1125935066599316e-05,
|
| 592 |
+
"loss": 0.0481,
|
| 593 |
+
"mean_token_accuracy": 0.9822862863540649,
|
| 594 |
+
"num_tokens": 13266008.0,
|
| 595 |
+
"step": 325
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"epoch": 0.8396946564885496,
|
| 599 |
+
"grad_norm": 0.10731196403503418,
|
| 600 |
+
"learning_rate": 1.0826354568849048e-05,
|
| 601 |
+
"loss": 0.0519,
|
| 602 |
+
"mean_token_accuracy": 0.9808366537094116,
|
| 603 |
+
"num_tokens": 13469127.0,
|
| 604 |
+
"step": 330
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 0.8524173027989822,
|
| 608 |
+
"grad_norm": 0.09134743362665176,
|
| 609 |
+
"learning_rate": 1.0547152395269189e-05,
|
| 610 |
+
"loss": 0.0534,
|
| 611 |
+
"mean_token_accuracy": 0.9803672075271607,
|
| 612 |
+
"num_tokens": 13672890.0,
|
| 613 |
+
"step": 335
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"epoch": 0.8651399491094147,
|
| 617 |
+
"grad_norm": 0.09591839462518692,
|
| 618 |
+
"learning_rate": 1.0288823627362674e-05,
|
| 619 |
+
"loss": 0.0543,
|
| 620 |
+
"mean_token_accuracy": 0.9801756381988526,
|
| 621 |
+
"num_tokens": 13876613.0,
|
| 622 |
+
"step": 340
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"epoch": 0.8778625954198473,
|
| 626 |
+
"grad_norm": 0.09613614529371262,
|
| 627 |
+
"learning_rate": 1.0051826333893878e-05,
|
| 628 |
+
"loss": 0.0535,
|
| 629 |
+
"mean_token_accuracy": 0.9803989171981812,
|
| 630 |
+
"num_tokens": 14080986.0,
|
| 631 |
+
"step": 345
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"epoch": 0.8905852417302799,
|
| 635 |
+
"grad_norm": 0.09382142871618271,
|
| 636 |
+
"learning_rate": 9.836580758640768e-06,
|
| 637 |
+
"loss": 0.0538,
|
| 638 |
+
"mean_token_accuracy": 0.9806716322898865,
|
| 639 |
+
"num_tokens": 14284897.0,
|
| 640 |
+
"step": 350
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.9033078880407125,
|
| 644 |
+
"grad_norm": 0.13422974944114685,
|
| 645 |
+
"learning_rate": 9.643468575218302e-06,
|
| 646 |
+
"loss": 0.0485,
|
| 647 |
+
"mean_token_accuracy": 0.9820788860321045,
|
| 648 |
+
"num_tokens": 14489073.0,
|
| 649 |
+
"step": 355
|
| 650 |
+
},
|
| 651 |
+
{
|
| 652 |
+
"epoch": 0.916030534351145,
|
| 653 |
+
"grad_norm": 0.12756891548633575,
|
| 654 |
+
"learning_rate": 9.472832210294495e-06,
|
| 655 |
+
"loss": 0.0502,
|
| 656 |
+
"mean_token_accuracy": 0.9815787076950073,
|
| 657 |
+
"num_tokens": 14693873.0,
|
| 658 |
+
"step": 360
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"epoch": 0.9287531806615776,
|
| 662 |
+
"grad_norm": 0.11220107972621918,
|
| 663 |
+
"learning_rate": 9.324974236399208e-06,
|
| 664 |
+
"loss": 0.0477,
|
| 665 |
+
"mean_token_accuracy": 0.9823699235916138,
|
| 666 |
+
"num_tokens": 14897591.0,
|
| 667 |
+
"step": 365
|
| 668 |
+
}
|
| 669 |
+
],
|
| 670 |
+
"logging_steps": 5,
|
| 671 |
+
"max_steps": 393,
|
| 672 |
+
"num_input_tokens_seen": 0,
|
| 673 |
+
"num_train_epochs": 1,
|
| 674 |
+
"save_steps": 500,
|
| 675 |
+
"stateful_callbacks": {
|
| 676 |
+
"TrainerControl": {
|
| 677 |
+
"args": {
|
| 678 |
+
"should_epoch_stop": false,
|
| 679 |
+
"should_evaluate": false,
|
| 680 |
+
"should_log": false,
|
| 681 |
+
"should_save": true,
|
| 682 |
+
"should_training_stop": true
|
| 683 |
+
},
|
| 684 |
+
"attributes": {}
|
| 685 |
+
}
|
| 686 |
+
},
|
| 687 |
+
"total_flos": 3.512720333608059e+17,
|
| 688 |
+
"train_batch_size": 20,
|
| 689 |
+
"trial_name": null,
|
| 690 |
+
"trial_params": null
|
| 691 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e911dafa107b171359eb402cdb2fa03fd42a5e49cb6294e2672616a08f33f7e
|
| 3 |
+
size 6545
|