Instructions to use Taywon/B2plus_v4_e1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Taywon/B2plus_v4_e1 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.1-70B-Instruct") model = PeftModel.from_pretrained(base_model, "Taywon/B2plus_v4_e1") - Transformers
How to use Taywon/B2plus_v4_e1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Taywon/B2plus_v4_e1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Taywon/B2plus_v4_e1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Taywon/B2plus_v4_e1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Taywon/B2plus_v4_e1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Taywon/B2plus_v4_e1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Taywon/B2plus_v4_e1
- SGLang
How to use Taywon/B2plus_v4_e1 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 "Taywon/B2plus_v4_e1" \ --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": "Taywon/B2plus_v4_e1", "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 "Taywon/B2plus_v4_e1" \ --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": "Taywon/B2plus_v4_e1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Taywon/B2plus_v4_e1 with Docker Model Runner:
docker model run hf.co/Taywon/B2plus_v4_e1
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +209 -0
- adapter_config.json +48 -0
- adapter_model.safetensors +3 -0
- chat_template.jinja +109 -0
- tokenizer.json +3 -0
- tokenizer_config.json +15 -0
- trainer_state.json +1074 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: meta-llama/Llama-3.1-70B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:meta-llama/Llama-3.1-70B-Instruct
|
| 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.19.1
|
adapter_config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "meta-llama/Llama-3.1-70B-Instruct",
|
| 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": 128,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.18.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 64,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"down_proj",
|
| 34 |
+
"up_proj",
|
| 35 |
+
"q_proj",
|
| 36 |
+
"k_proj",
|
| 37 |
+
"gate_proj",
|
| 38 |
+
"v_proj",
|
| 39 |
+
"o_proj"
|
| 40 |
+
],
|
| 41 |
+
"target_parameters": null,
|
| 42 |
+
"task_type": "CAUSAL_LM",
|
| 43 |
+
"trainable_token_indices": null,
|
| 44 |
+
"use_bdlora": null,
|
| 45 |
+
"use_dora": false,
|
| 46 |
+
"use_qalora": false,
|
| 47 |
+
"use_rslora": false
|
| 48 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:860b753a0a96db8f213b61d12878c465439bed64d7f4e9f55590793aaba0adce
|
| 3 |
+
size 3313653480
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{- bos_token }}
|
| 2 |
+
{%- if custom_tools is defined %}
|
| 3 |
+
{%- set tools = custom_tools %}
|
| 4 |
+
{%- endif %}
|
| 5 |
+
{%- if not tools_in_user_message is defined %}
|
| 6 |
+
{%- set tools_in_user_message = true %}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{%- if not date_string is defined %}
|
| 9 |
+
{%- set date_string = "26 Jul 2024" %}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{%- if not tools is defined %}
|
| 12 |
+
{%- set tools = none %}
|
| 13 |
+
{%- endif %}
|
| 14 |
+
|
| 15 |
+
{#- This block extracts the system message, so we can slot it into the right place. #}
|
| 16 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 17 |
+
{%- set system_message = messages[0]['content']|trim %}
|
| 18 |
+
{%- set messages = messages[1:] %}
|
| 19 |
+
{%- else %}
|
| 20 |
+
{%- set system_message = "" %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
|
| 23 |
+
{#- System message + builtin tools #}
|
| 24 |
+
{{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
|
| 25 |
+
{%- if builtin_tools is defined or tools is not none %}
|
| 26 |
+
{{- "Environment: ipython\n" }}
|
| 27 |
+
{%- endif %}
|
| 28 |
+
{%- if builtin_tools is defined %}
|
| 29 |
+
{{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{{- "Cutting Knowledge Date: December 2023\n" }}
|
| 32 |
+
{{- "Today Date: " + date_string + "\n\n" }}
|
| 33 |
+
{%- if tools is not none and not tools_in_user_message %}
|
| 34 |
+
{{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
|
| 35 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 36 |
+
{{- "Do not use variables.\n\n" }}
|
| 37 |
+
{%- for t in tools %}
|
| 38 |
+
{{- t | tojson(indent=4) }}
|
| 39 |
+
{{- "\n\n" }}
|
| 40 |
+
{%- endfor %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{{- system_message }}
|
| 43 |
+
{{- "<|eot_id|>" }}
|
| 44 |
+
|
| 45 |
+
{#- Custom tools are passed in a user message with some extra guidance #}
|
| 46 |
+
{%- if tools_in_user_message and not tools is none %}
|
| 47 |
+
{#- Extract the first user message so we can plug it in here #}
|
| 48 |
+
{%- if messages | length != 0 %}
|
| 49 |
+
{%- set first_user_message = messages[0]['content']|trim %}
|
| 50 |
+
{%- set messages = messages[1:] %}
|
| 51 |
+
{%- else %}
|
| 52 |
+
{{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
|
| 53 |
+
{%- endif %}
|
| 54 |
+
{{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
|
| 55 |
+
{{- "Given the following functions, please respond with a JSON for a function call " }}
|
| 56 |
+
{{- "with its proper arguments that best answers the given prompt.\n\n" }}
|
| 57 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 58 |
+
{{- "Do not use variables.\n\n" }}
|
| 59 |
+
{%- for t in tools %}
|
| 60 |
+
{{- t | tojson(indent=4) }}
|
| 61 |
+
{{- "\n\n" }}
|
| 62 |
+
{%- endfor %}
|
| 63 |
+
{{- first_user_message + "<|eot_id|>"}}
|
| 64 |
+
{%- endif %}
|
| 65 |
+
|
| 66 |
+
{%- for message in messages %}
|
| 67 |
+
{%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
|
| 68 |
+
{{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
|
| 69 |
+
{%- elif 'tool_calls' in message %}
|
| 70 |
+
{%- if not message.tool_calls|length == 1 %}
|
| 71 |
+
{{- raise_exception("This model only supports single tool-calls at once!") }}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{%- set tool_call = message.tool_calls[0].function %}
|
| 74 |
+
{%- if builtin_tools is defined and tool_call.name in builtin_tools %}
|
| 75 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 76 |
+
{{- "<|python_tag|>" + tool_call.name + ".call(" }}
|
| 77 |
+
{%- for arg_name, arg_val in tool_call.arguments | items %}
|
| 78 |
+
{{- arg_name + '="' + arg_val + '"' }}
|
| 79 |
+
{%- if not loop.last %}
|
| 80 |
+
{{- ", " }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endfor %}
|
| 83 |
+
{{- ")" }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 86 |
+
{{- '{"name": "' + tool_call.name + '", ' }}
|
| 87 |
+
{{- '"parameters": ' }}
|
| 88 |
+
{{- tool_call.arguments | tojson }}
|
| 89 |
+
{{- "}" }}
|
| 90 |
+
{%- endif %}
|
| 91 |
+
{%- if builtin_tools is defined %}
|
| 92 |
+
{#- This means we're in ipython mode #}
|
| 93 |
+
{{- "<|eom_id|>" }}
|
| 94 |
+
{%- else %}
|
| 95 |
+
{{- "<|eot_id|>" }}
|
| 96 |
+
{%- endif %}
|
| 97 |
+
{%- elif message.role == "tool" or message.role == "ipython" %}
|
| 98 |
+
{{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
|
| 99 |
+
{%- if message.content is mapping or message.content is iterable %}
|
| 100 |
+
{{- message.content | tojson }}
|
| 101 |
+
{%- else %}
|
| 102 |
+
{{- message.content }}
|
| 103 |
+
{%- endif %}
|
| 104 |
+
{{- "<|eot_id|>" }}
|
| 105 |
+
{%- endif %}
|
| 106 |
+
{%- endfor %}
|
| 107 |
+
{%- if add_generation_prompt %}
|
| 108 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
|
| 109 |
+
{%- endif %}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
|
| 3 |
+
size 17209920
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"backend": "tokenizers",
|
| 3 |
+
"bos_token": "<|begin_of_text|>",
|
| 4 |
+
"clean_up_tokenization_spaces": true,
|
| 5 |
+
"eos_token": "<|eot_id|>",
|
| 6 |
+
"is_local": false,
|
| 7 |
+
"local_files_only": false,
|
| 8 |
+
"model_input_names": [
|
| 9 |
+
"input_ids",
|
| 10 |
+
"attention_mask"
|
| 11 |
+
],
|
| 12 |
+
"model_max_length": 131072,
|
| 13 |
+
"pad_token": "<|eot_id|>",
|
| 14 |
+
"tokenizer_class": "TokenizersBackend"
|
| 15 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1074 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 104,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 1.4476254880428314,
|
| 14 |
+
"epoch": 0.009685230024213076,
|
| 15 |
+
"grad_norm": 1.3588989973068237,
|
| 16 |
+
"learning_rate": 0.0,
|
| 17 |
+
"loss": 2.2350821495056152,
|
| 18 |
+
"mean_token_accuracy": 0.5031501688063145,
|
| 19 |
+
"num_tokens": 96574.0,
|
| 20 |
+
"step": 1
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 1.4007079899311066,
|
| 24 |
+
"epoch": 0.01937046004842615,
|
| 25 |
+
"grad_norm": 1.2849924564361572,
|
| 26 |
+
"learning_rate": 3.125e-06,
|
| 27 |
+
"loss": 2.14509654045105,
|
| 28 |
+
"mean_token_accuracy": 0.5205462127923965,
|
| 29 |
+
"num_tokens": 191520.0,
|
| 30 |
+
"step": 2
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 1.4708476215600967,
|
| 34 |
+
"epoch": 0.029055690072639227,
|
| 35 |
+
"grad_norm": 1.2314231395721436,
|
| 36 |
+
"learning_rate": 6.25e-06,
|
| 37 |
+
"loss": 2.158306121826172,
|
| 38 |
+
"mean_token_accuracy": 0.5159582570195198,
|
| 39 |
+
"num_tokens": 287631.0,
|
| 40 |
+
"step": 3
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 1.5651142746210098,
|
| 44 |
+
"epoch": 0.0387409200968523,
|
| 45 |
+
"grad_norm": 0.9785442352294922,
|
| 46 |
+
"learning_rate": 9.375000000000001e-06,
|
| 47 |
+
"loss": 2.0755105018615723,
|
| 48 |
+
"mean_token_accuracy": 0.5181002020835876,
|
| 49 |
+
"num_tokens": 384739.0,
|
| 50 |
+
"step": 4
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.579958975315094,
|
| 54 |
+
"epoch": 0.048426150121065374,
|
| 55 |
+
"grad_norm": 0.7276659607887268,
|
| 56 |
+
"learning_rate": 1.25e-05,
|
| 57 |
+
"loss": 1.930289626121521,
|
| 58 |
+
"mean_token_accuracy": 0.5408441498875618,
|
| 59 |
+
"num_tokens": 481674.0,
|
| 60 |
+
"step": 5
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 1.8359138667583466,
|
| 64 |
+
"epoch": 0.05811138014527845,
|
| 65 |
+
"grad_norm": 0.5072433352470398,
|
| 66 |
+
"learning_rate": 1.5625e-05,
|
| 67 |
+
"loss": 1.9374589920043945,
|
| 68 |
+
"mean_token_accuracy": 0.5299954265356064,
|
| 69 |
+
"num_tokens": 576090.0,
|
| 70 |
+
"step": 6
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 1.8671298921108246,
|
| 74 |
+
"epoch": 0.06779661016949153,
|
| 75 |
+
"grad_norm": 0.44714638590812683,
|
| 76 |
+
"learning_rate": 1.8750000000000002e-05,
|
| 77 |
+
"loss": 1.8663867712020874,
|
| 78 |
+
"mean_token_accuracy": 0.5436736792325974,
|
| 79 |
+
"num_tokens": 673951.0,
|
| 80 |
+
"step": 7
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 1.933446392416954,
|
| 84 |
+
"epoch": 0.0774818401937046,
|
| 85 |
+
"grad_norm": 0.5136867761611938,
|
| 86 |
+
"learning_rate": 2.1875e-05,
|
| 87 |
+
"loss": 1.7743638753890991,
|
| 88 |
+
"mean_token_accuracy": 0.5584963485598564,
|
| 89 |
+
"num_tokens": 771899.0,
|
| 90 |
+
"step": 8
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 1.9850385338068008,
|
| 94 |
+
"epoch": 0.08716707021791767,
|
| 95 |
+
"grad_norm": 0.5442814826965332,
|
| 96 |
+
"learning_rate": 2.5e-05,
|
| 97 |
+
"loss": 1.7758773565292358,
|
| 98 |
+
"mean_token_accuracy": 0.5573008134961128,
|
| 99 |
+
"num_tokens": 868206.0,
|
| 100 |
+
"step": 9
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 1.9424707889556885,
|
| 104 |
+
"epoch": 0.09685230024213075,
|
| 105 |
+
"grad_norm": 0.5084043741226196,
|
| 106 |
+
"learning_rate": 2.8125000000000003e-05,
|
| 107 |
+
"loss": 1.7394293546676636,
|
| 108 |
+
"mean_token_accuracy": 0.5608929991722107,
|
| 109 |
+
"num_tokens": 964219.0,
|
| 110 |
+
"step": 10
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 1.8063177168369293,
|
| 114 |
+
"epoch": 0.10653753026634383,
|
| 115 |
+
"grad_norm": 0.3967217206954956,
|
| 116 |
+
"learning_rate": 3.125e-05,
|
| 117 |
+
"loss": 1.6807222366333008,
|
| 118 |
+
"mean_token_accuracy": 0.5679514929652214,
|
| 119 |
+
"num_tokens": 1062125.0,
|
| 120 |
+
"step": 11
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 1.638314574956894,
|
| 124 |
+
"epoch": 0.1162227602905569,
|
| 125 |
+
"grad_norm": 0.5107802152633667,
|
| 126 |
+
"learning_rate": 3.4375e-05,
|
| 127 |
+
"loss": 1.6123173236846924,
|
| 128 |
+
"mean_token_accuracy": 0.583977460861206,
|
| 129 |
+
"num_tokens": 1159319.0,
|
| 130 |
+
"step": 12
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 1.5576547533273697,
|
| 134 |
+
"epoch": 0.12590799031476999,
|
| 135 |
+
"grad_norm": 0.3253207802772522,
|
| 136 |
+
"learning_rate": 3.7500000000000003e-05,
|
| 137 |
+
"loss": 1.6140292882919312,
|
| 138 |
+
"mean_token_accuracy": 0.5774664506316185,
|
| 139 |
+
"num_tokens": 1256881.0,
|
| 140 |
+
"step": 13
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 1.4602049440145493,
|
| 144 |
+
"epoch": 0.13559322033898305,
|
| 145 |
+
"grad_norm": 0.3317743241786957,
|
| 146 |
+
"learning_rate": 4.0625000000000005e-05,
|
| 147 |
+
"loss": 1.5576837062835693,
|
| 148 |
+
"mean_token_accuracy": 0.586665965616703,
|
| 149 |
+
"num_tokens": 1351620.0,
|
| 150 |
+
"step": 14
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 1.4226532131433487,
|
| 154 |
+
"epoch": 0.14527845036319612,
|
| 155 |
+
"grad_norm": 0.2991933524608612,
|
| 156 |
+
"learning_rate": 4.375e-05,
|
| 157 |
+
"loss": 1.5325368642807007,
|
| 158 |
+
"mean_token_accuracy": 0.5934261903166771,
|
| 159 |
+
"num_tokens": 1449026.0,
|
| 160 |
+
"step": 15
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 1.453083336353302,
|
| 164 |
+
"epoch": 0.1549636803874092,
|
| 165 |
+
"grad_norm": 0.26260727643966675,
|
| 166 |
+
"learning_rate": 4.6875e-05,
|
| 167 |
+
"loss": 1.5117604732513428,
|
| 168 |
+
"mean_token_accuracy": 0.5941561385989189,
|
| 169 |
+
"num_tokens": 1546355.0,
|
| 170 |
+
"step": 16
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 1.4769755005836487,
|
| 174 |
+
"epoch": 0.16464891041162227,
|
| 175 |
+
"grad_norm": 0.24356529116630554,
|
| 176 |
+
"learning_rate": 5e-05,
|
| 177 |
+
"loss": 1.5000947713851929,
|
| 178 |
+
"mean_token_accuracy": 0.5963850915431976,
|
| 179 |
+
"num_tokens": 1644308.0,
|
| 180 |
+
"step": 17
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 1.4608993381261826,
|
| 184 |
+
"epoch": 0.17433414043583534,
|
| 185 |
+
"grad_norm": 0.27541783452033997,
|
| 186 |
+
"learning_rate": 4.999859193643945e-05,
|
| 187 |
+
"loss": 1.4296932220458984,
|
| 188 |
+
"mean_token_accuracy": 0.6135347038507462,
|
| 189 |
+
"num_tokens": 1741625.0,
|
| 190 |
+
"step": 18
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 1.4715198874473572,
|
| 194 |
+
"epoch": 0.18401937046004843,
|
| 195 |
+
"grad_norm": 0.24254612624645233,
|
| 196 |
+
"learning_rate": 4.999436790436924e-05,
|
| 197 |
+
"loss": 1.4109866619110107,
|
| 198 |
+
"mean_token_accuracy": 0.6162872388958931,
|
| 199 |
+
"num_tokens": 1839077.0,
|
| 200 |
+
"step": 19
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 1.4909484386444092,
|
| 204 |
+
"epoch": 0.1937046004842615,
|
| 205 |
+
"grad_norm": 0.24249622225761414,
|
| 206 |
+
"learning_rate": 4.9987328379605816e-05,
|
| 207 |
+
"loss": 1.4181320667266846,
|
| 208 |
+
"mean_token_accuracy": 0.6092976555228233,
|
| 209 |
+
"num_tokens": 1936754.0,
|
| 210 |
+
"step": 20
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 1.468568578362465,
|
| 214 |
+
"epoch": 0.2033898305084746,
|
| 215 |
+
"grad_norm": 0.21892383694648743,
|
| 216 |
+
"learning_rate": 4.9977474155117045e-05,
|
| 217 |
+
"loss": 1.4207193851470947,
|
| 218 |
+
"mean_token_accuracy": 0.6143926084041595,
|
| 219 |
+
"num_tokens": 2034049.0,
|
| 220 |
+
"step": 21
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 1.4144536703824997,
|
| 224 |
+
"epoch": 0.21307506053268765,
|
| 225 |
+
"grad_norm": 0.24802649021148682,
|
| 226 |
+
"learning_rate": 4.9964806340932865e-05,
|
| 227 |
+
"loss": 1.3823838233947754,
|
| 228 |
+
"mean_token_accuracy": 0.6196955218911171,
|
| 229 |
+
"num_tokens": 2131193.0,
|
| 230 |
+
"step": 22
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 1.4027946889400482,
|
| 234 |
+
"epoch": 0.22276029055690072,
|
| 235 |
+
"grad_norm": 0.2114405333995819,
|
| 236 |
+
"learning_rate": 4.9949326364020314e-05,
|
| 237 |
+
"loss": 1.3788299560546875,
|
| 238 |
+
"mean_token_accuracy": 0.6205098181962967,
|
| 239 |
+
"num_tokens": 2228554.0,
|
| 240 |
+
"step": 23
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 1.3630587011575699,
|
| 244 |
+
"epoch": 0.2324455205811138,
|
| 245 |
+
"grad_norm": 0.18567043542861938,
|
| 246 |
+
"learning_rate": 4.993103596812268e-05,
|
| 247 |
+
"loss": 1.3441742658615112,
|
| 248 |
+
"mean_token_accuracy": 0.6255069524049759,
|
| 249 |
+
"num_tokens": 2325761.0,
|
| 250 |
+
"step": 24
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 1.3504581600427628,
|
| 254 |
+
"epoch": 0.24213075060532688,
|
| 255 |
+
"grad_norm": 0.18140752613544464,
|
| 256 |
+
"learning_rate": 4.9909937213563165e-05,
|
| 257 |
+
"loss": 1.3367418050765991,
|
| 258 |
+
"mean_token_accuracy": 0.6294924318790436,
|
| 259 |
+
"num_tokens": 2420230.0,
|
| 260 |
+
"step": 25
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 1.3556479513645172,
|
| 264 |
+
"epoch": 0.25181598062953997,
|
| 265 |
+
"grad_norm": 0.19952309131622314,
|
| 266 |
+
"learning_rate": 4.988603247701277e-05,
|
| 267 |
+
"loss": 1.329459547996521,
|
| 268 |
+
"mean_token_accuracy": 0.6290309652686119,
|
| 269 |
+
"num_tokens": 2515756.0,
|
| 270 |
+
"step": 26
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 1.3174784928560257,
|
| 274 |
+
"epoch": 0.26150121065375304,
|
| 275 |
+
"grad_norm": 0.2040238082408905,
|
| 276 |
+
"learning_rate": 4.985932445122257e-05,
|
| 277 |
+
"loss": 1.3146334886550903,
|
| 278 |
+
"mean_token_accuracy": 0.6350805461406708,
|
| 279 |
+
"num_tokens": 2611239.0,
|
| 280 |
+
"step": 27
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 1.337596833705902,
|
| 284 |
+
"epoch": 0.2711864406779661,
|
| 285 |
+
"grad_norm": 0.1924348771572113,
|
| 286 |
+
"learning_rate": 4.982981614472039e-05,
|
| 287 |
+
"loss": 1.325057864189148,
|
| 288 |
+
"mean_token_accuracy": 0.6268098577857018,
|
| 289 |
+
"num_tokens": 2708463.0,
|
| 290 |
+
"step": 28
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 1.295740321278572,
|
| 294 |
+
"epoch": 0.28087167070217917,
|
| 295 |
+
"grad_norm": 0.18018221855163574,
|
| 296 |
+
"learning_rate": 4.979751088147192e-05,
|
| 297 |
+
"loss": 1.2943141460418701,
|
| 298 |
+
"mean_token_accuracy": 0.6371493935585022,
|
| 299 |
+
"num_tokens": 2806105.0,
|
| 300 |
+
"step": 29
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 1.2824859917163849,
|
| 304 |
+
"epoch": 0.29055690072639223,
|
| 305 |
+
"grad_norm": 0.1904715597629547,
|
| 306 |
+
"learning_rate": 4.97624123005063e-05,
|
| 307 |
+
"loss": 1.282959222793579,
|
| 308 |
+
"mean_token_accuracy": 0.6380399465560913,
|
| 309 |
+
"num_tokens": 2903815.0,
|
| 310 |
+
"step": 30
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 1.274334877729416,
|
| 314 |
+
"epoch": 0.30024213075060535,
|
| 315 |
+
"grad_norm": 0.17454974353313446,
|
| 316 |
+
"learning_rate": 4.972452435550614e-05,
|
| 317 |
+
"loss": 1.2828162908554077,
|
| 318 |
+
"mean_token_accuracy": 0.6363882124423981,
|
| 319 |
+
"num_tokens": 3000656.0,
|
| 320 |
+
"step": 31
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 1.298419788479805,
|
| 324 |
+
"epoch": 0.3099273607748184,
|
| 325 |
+
"grad_norm": 0.16989658772945404,
|
| 326 |
+
"learning_rate": 4.968385131436222e-05,
|
| 327 |
+
"loss": 1.283800482749939,
|
| 328 |
+
"mean_token_accuracy": 0.6383039951324463,
|
| 329 |
+
"num_tokens": 3098537.0,
|
| 330 |
+
"step": 32
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 1.3138496726751328,
|
| 334 |
+
"epoch": 0.3196125907990315,
|
| 335 |
+
"grad_norm": 0.1963842809200287,
|
| 336 |
+
"learning_rate": 4.9640397758692715e-05,
|
| 337 |
+
"loss": 1.287667989730835,
|
| 338 |
+
"mean_token_accuracy": 0.6366405189037323,
|
| 339 |
+
"num_tokens": 3195923.0,
|
| 340 |
+
"step": 33
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 1.316459745168686,
|
| 344 |
+
"epoch": 0.32929782082324455,
|
| 345 |
+
"grad_norm": 0.17209197580814362,
|
| 346 |
+
"learning_rate": 4.9594168583327094e-05,
|
| 347 |
+
"loss": 1.2872288227081299,
|
| 348 |
+
"mean_token_accuracy": 0.6377927586436272,
|
| 349 |
+
"num_tokens": 3293424.0,
|
| 350 |
+
"step": 34
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 1.2688211798667908,
|
| 354 |
+
"epoch": 0.3389830508474576,
|
| 355 |
+
"grad_norm": 0.1710345298051834,
|
| 356 |
+
"learning_rate": 4.954516899575473e-05,
|
| 357 |
+
"loss": 1.2326550483703613,
|
| 358 |
+
"mean_token_accuracy": 0.6454800367355347,
|
| 359 |
+
"num_tokens": 3390314.0,
|
| 360 |
+
"step": 35
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 1.275676041841507,
|
| 364 |
+
"epoch": 0.3486682808716707,
|
| 365 |
+
"grad_norm": 0.16850367188453674,
|
| 366 |
+
"learning_rate": 4.949340451553833e-05,
|
| 367 |
+
"loss": 1.2480475902557373,
|
| 368 |
+
"mean_token_accuracy": 0.644576296210289,
|
| 369 |
+
"num_tokens": 3485697.0,
|
| 370 |
+
"step": 36
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 1.2488422840833664,
|
| 374 |
+
"epoch": 0.3583535108958838,
|
| 375 |
+
"grad_norm": 0.17575675249099731,
|
| 376 |
+
"learning_rate": 4.943888097369216e-05,
|
| 377 |
+
"loss": 1.2449251413345337,
|
| 378 |
+
"mean_token_accuracy": 0.6482485681772232,
|
| 379 |
+
"num_tokens": 3583116.0,
|
| 380 |
+
"step": 37
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 1.20504991710186,
|
| 384 |
+
"epoch": 0.36803874092009686,
|
| 385 |
+
"grad_norm": 0.16634824872016907,
|
| 386 |
+
"learning_rate": 4.938160451202521e-05,
|
| 387 |
+
"loss": 1.210385799407959,
|
| 388 |
+
"mean_token_accuracy": 0.6547724008560181,
|
| 389 |
+
"num_tokens": 3678517.0,
|
| 390 |
+
"step": 38
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 1.236429587006569,
|
| 394 |
+
"epoch": 0.37772397094430993,
|
| 395 |
+
"grad_norm": 0.15360407531261444,
|
| 396 |
+
"learning_rate": 4.9321581582449365e-05,
|
| 397 |
+
"loss": 1.2314069271087646,
|
| 398 |
+
"mean_token_accuracy": 0.6504408493638039,
|
| 399 |
+
"num_tokens": 3775690.0,
|
| 400 |
+
"step": 39
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 1.2558289468288422,
|
| 404 |
+
"epoch": 0.387409200968523,
|
| 405 |
+
"grad_norm": 0.1626509577035904,
|
| 406 |
+
"learning_rate": 4.9258818946252624e-05,
|
| 407 |
+
"loss": 1.253812551498413,
|
| 408 |
+
"mean_token_accuracy": 0.6433829963207245,
|
| 409 |
+
"num_tokens": 3873239.0,
|
| 410 |
+
"step": 40
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 1.2188849300146103,
|
| 414 |
+
"epoch": 0.39709443099273606,
|
| 415 |
+
"grad_norm": 0.16926692426204681,
|
| 416 |
+
"learning_rate": 4.9193323673337476e-05,
|
| 417 |
+
"loss": 1.2143971920013428,
|
| 418 |
+
"mean_token_accuracy": 0.6519596204161644,
|
| 419 |
+
"num_tokens": 3970507.0,
|
| 420 |
+
"step": 41
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 1.2296934127807617,
|
| 424 |
+
"epoch": 0.4067796610169492,
|
| 425 |
+
"grad_norm": 0.17094968259334564,
|
| 426 |
+
"learning_rate": 4.912510314142448e-05,
|
| 427 |
+
"loss": 1.2195372581481934,
|
| 428 |
+
"mean_token_accuracy": 0.6513471901416779,
|
| 429 |
+
"num_tokens": 4067145.0,
|
| 430 |
+
"step": 42
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 1.2168416231870651,
|
| 434 |
+
"epoch": 0.41646489104116224,
|
| 435 |
+
"grad_norm": 0.15936042368412018,
|
| 436 |
+
"learning_rate": 4.9054165035221236e-05,
|
| 437 |
+
"loss": 1.2123249769210815,
|
| 438 |
+
"mean_token_accuracy": 0.6524514406919479,
|
| 439 |
+
"num_tokens": 4165113.0,
|
| 440 |
+
"step": 43
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 1.1896271854639053,
|
| 444 |
+
"epoch": 0.4261501210653753,
|
| 445 |
+
"grad_norm": 0.15422837436199188,
|
| 446 |
+
"learning_rate": 4.898051734555676e-05,
|
| 447 |
+
"loss": 1.1957529783248901,
|
| 448 |
+
"mean_token_accuracy": 0.6586505621671677,
|
| 449 |
+
"num_tokens": 4262663.0,
|
| 450 |
+
"step": 44
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 1.2026645243167877,
|
| 454 |
+
"epoch": 0.4358353510895884,
|
| 455 |
+
"grad_norm": 0.16097040474414825,
|
| 456 |
+
"learning_rate": 4.890416836848127e-05,
|
| 457 |
+
"loss": 1.1992558240890503,
|
| 458 |
+
"mean_token_accuracy": 0.6544606015086174,
|
| 459 |
+
"num_tokens": 4359900.0,
|
| 460 |
+
"step": 45
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 1.1843629777431488,
|
| 464 |
+
"epoch": 0.44552058111380144,
|
| 465 |
+
"grad_norm": 0.1597595363855362,
|
| 466 |
+
"learning_rate": 4.88251267043318e-05,
|
| 467 |
+
"loss": 1.1683578491210938,
|
| 468 |
+
"mean_token_accuracy": 0.6638541519641876,
|
| 469 |
+
"num_tokens": 4456985.0,
|
| 470 |
+
"step": 46
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 1.1679482907056808,
|
| 474 |
+
"epoch": 0.4552058111380145,
|
| 475 |
+
"grad_norm": 0.15203599631786346,
|
| 476 |
+
"learning_rate": 4.87434012567633e-05,
|
| 477 |
+
"loss": 1.1561784744262695,
|
| 478 |
+
"mean_token_accuracy": 0.6650881245732307,
|
| 479 |
+
"num_tokens": 4554634.0,
|
| 480 |
+
"step": 47
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 1.2105818390846252,
|
| 484 |
+
"epoch": 0.4648910411622276,
|
| 485 |
+
"grad_norm": 0.15597011148929596,
|
| 486 |
+
"learning_rate": 4.865900123174574e-05,
|
| 487 |
+
"loss": 1.1950294971466064,
|
| 488 |
+
"mean_token_accuracy": 0.6544563546776772,
|
| 489 |
+
"num_tokens": 4652249.0,
|
| 490 |
+
"step": 48
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 1.2046389728784561,
|
| 494 |
+
"epoch": 0.4745762711864407,
|
| 495 |
+
"grad_norm": 0.15933600068092346,
|
| 496 |
+
"learning_rate": 4.857193613652711e-05,
|
| 497 |
+
"loss": 1.183128833770752,
|
| 498 |
+
"mean_token_accuracy": 0.6564416959881783,
|
| 499 |
+
"num_tokens": 4748832.0,
|
| 500 |
+
"step": 49
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 1.2113090008497238,
|
| 504 |
+
"epoch": 0.48426150121065376,
|
| 505 |
+
"grad_norm": 0.15904678404331207,
|
| 506 |
+
"learning_rate": 4.848221577856243e-05,
|
| 507 |
+
"loss": 1.1915383338928223,
|
| 508 |
+
"mean_token_accuracy": 0.6567506939172745,
|
| 509 |
+
"num_tokens": 4845986.0,
|
| 510 |
+
"step": 50
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"entropy": 1.1754019558429718,
|
| 514 |
+
"epoch": 0.4939467312348668,
|
| 515 |
+
"grad_norm": 0.15548165142536163,
|
| 516 |
+
"learning_rate": 4.838985026440905e-05,
|
| 517 |
+
"loss": 1.1645618677139282,
|
| 518 |
+
"mean_token_accuracy": 0.6654537692666054,
|
| 519 |
+
"num_tokens": 4942777.0,
|
| 520 |
+
"step": 51
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 1.1717564463615417,
|
| 524 |
+
"epoch": 0.5036319612590799,
|
| 525 |
+
"grad_norm": 0.16495537757873535,
|
| 526 |
+
"learning_rate": 4.829484999858815e-05,
|
| 527 |
+
"loss": 1.1674176454544067,
|
| 528 |
+
"mean_token_accuracy": 0.659358873963356,
|
| 529 |
+
"num_tokens": 5040326.0,
|
| 530 |
+
"step": 52
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 1.1637324541807175,
|
| 534 |
+
"epoch": 0.513317191283293,
|
| 535 |
+
"grad_norm": 0.16075873374938965,
|
| 536 |
+
"learning_rate": 4.819722568241274e-05,
|
| 537 |
+
"loss": 1.1621849536895752,
|
| 538 |
+
"mean_token_accuracy": 0.663130484521389,
|
| 539 |
+
"num_tokens": 5137838.0,
|
| 540 |
+
"step": 53
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 1.1703068912029266,
|
| 544 |
+
"epoch": 0.5230024213075061,
|
| 545 |
+
"grad_norm": 0.16048873960971832,
|
| 546 |
+
"learning_rate": 4.8096988312782174e-05,
|
| 547 |
+
"loss": 1.1667448282241821,
|
| 548 |
+
"mean_token_accuracy": 0.6606730446219444,
|
| 549 |
+
"num_tokens": 5234578.0,
|
| 550 |
+
"step": 54
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 1.1869463622570038,
|
| 554 |
+
"epoch": 0.5326876513317191,
|
| 555 |
+
"grad_norm": 0.1574316769838333,
|
| 556 |
+
"learning_rate": 4.799414918094347e-05,
|
| 557 |
+
"loss": 1.1867117881774902,
|
| 558 |
+
"mean_token_accuracy": 0.6562071144580841,
|
| 559 |
+
"num_tokens": 5332439.0,
|
| 560 |
+
"step": 55
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"entropy": 1.1833796501159668,
|
| 564 |
+
"epoch": 0.5423728813559322,
|
| 565 |
+
"grad_norm": 0.1627049446105957,
|
| 566 |
+
"learning_rate": 4.788871987121937e-05,
|
| 567 |
+
"loss": 1.1771697998046875,
|
| 568 |
+
"mean_token_accuracy": 0.6603464111685753,
|
| 569 |
+
"num_tokens": 5430102.0,
|
| 570 |
+
"step": 56
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"entropy": 1.1720363795757294,
|
| 574 |
+
"epoch": 0.5520581113801453,
|
| 575 |
+
"grad_norm": 0.30378302931785583,
|
| 576 |
+
"learning_rate": 4.77807122597034e-05,
|
| 577 |
+
"loss": 1.1528563499450684,
|
| 578 |
+
"mean_token_accuracy": 0.6617102548480034,
|
| 579 |
+
"num_tokens": 5528264.0,
|
| 580 |
+
"step": 57
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"entropy": 1.1582888960838318,
|
| 584 |
+
"epoch": 0.5617433414043583,
|
| 585 |
+
"grad_norm": 0.1613432615995407,
|
| 586 |
+
"learning_rate": 4.767013851292212e-05,
|
| 587 |
+
"loss": 1.1482983827590942,
|
| 588 |
+
"mean_token_accuracy": 0.6675111055374146,
|
| 589 |
+
"num_tokens": 5625491.0,
|
| 590 |
+
"step": 58
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"entropy": 1.1704413145780563,
|
| 594 |
+
"epoch": 0.5714285714285714,
|
| 595 |
+
"grad_norm": 0.15665417909622192,
|
| 596 |
+
"learning_rate": 4.755701108646463e-05,
|
| 597 |
+
"loss": 1.1476081609725952,
|
| 598 |
+
"mean_token_accuracy": 0.6660670340061188,
|
| 599 |
+
"num_tokens": 5723563.0,
|
| 600 |
+
"step": 59
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"entropy": 1.1684788465499878,
|
| 604 |
+
"epoch": 0.5811138014527845,
|
| 605 |
+
"grad_norm": 0.1587826907634735,
|
| 606 |
+
"learning_rate": 4.744134272357948e-05,
|
| 607 |
+
"loss": 1.15497624874115,
|
| 608 |
+
"mean_token_accuracy": 0.662791483104229,
|
| 609 |
+
"num_tokens": 5821106.0,
|
| 610 |
+
"step": 60
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"entropy": 1.1705324202775955,
|
| 614 |
+
"epoch": 0.5907990314769975,
|
| 615 |
+
"grad_norm": 0.1650344729423523,
|
| 616 |
+
"learning_rate": 4.732314645373921e-05,
|
| 617 |
+
"loss": 1.168868899345398,
|
| 618 |
+
"mean_token_accuracy": 0.659059427678585,
|
| 619 |
+
"num_tokens": 5918772.0,
|
| 620 |
+
"step": 61
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 1.1340993344783783,
|
| 624 |
+
"epoch": 0.6004842615012107,
|
| 625 |
+
"grad_norm": 0.15585103631019592,
|
| 626 |
+
"learning_rate": 4.7202435591172676e-05,
|
| 627 |
+
"loss": 1.1181915998458862,
|
| 628 |
+
"mean_token_accuracy": 0.6716931834816933,
|
| 629 |
+
"num_tokens": 6016758.0,
|
| 630 |
+
"step": 62
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 1.1135689467191696,
|
| 634 |
+
"epoch": 0.6101694915254238,
|
| 635 |
+
"grad_norm": 0.15927211940288544,
|
| 636 |
+
"learning_rate": 4.7079223733365237e-05,
|
| 637 |
+
"loss": 1.1100869178771973,
|
| 638 |
+
"mean_token_accuracy": 0.6781439930200577,
|
| 639 |
+
"num_tokens": 6113210.0,
|
| 640 |
+
"step": 63
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 1.1656545102596283,
|
| 644 |
+
"epoch": 0.6198547215496368,
|
| 645 |
+
"grad_norm": 0.1585935652256012,
|
| 646 |
+
"learning_rate": 4.6953524759527054e-05,
|
| 647 |
+
"loss": 1.1522451639175415,
|
| 648 |
+
"mean_token_accuracy": 0.664880745112896,
|
| 649 |
+
"num_tokens": 6210272.0,
|
| 650 |
+
"step": 64
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 1.1241111010313034,
|
| 654 |
+
"epoch": 0.6295399515738499,
|
| 655 |
+
"grad_norm": 0.15607106685638428,
|
| 656 |
+
"learning_rate": 4.6825352829029705e-05,
|
| 657 |
+
"loss": 1.1200485229492188,
|
| 658 |
+
"mean_token_accuracy": 0.671033151447773,
|
| 659 |
+
"num_tokens": 6307273.0,
|
| 660 |
+
"step": 65
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 1.135048821568489,
|
| 664 |
+
"epoch": 0.639225181598063,
|
| 665 |
+
"grad_norm": 0.1598539501428604,
|
| 666 |
+
"learning_rate": 4.6694722379811185e-05,
|
| 667 |
+
"loss": 1.1302683353424072,
|
| 668 |
+
"mean_token_accuracy": 0.6700672060251236,
|
| 669 |
+
"num_tokens": 6404865.0,
|
| 670 |
+
"step": 66
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 1.1544559001922607,
|
| 674 |
+
"epoch": 0.648910411622276,
|
| 675 |
+
"grad_norm": 0.16644105315208435,
|
| 676 |
+
"learning_rate": 4.656164812674951e-05,
|
| 677 |
+
"loss": 1.1450002193450928,
|
| 678 |
+
"mean_token_accuracy": 0.6640813648700714,
|
| 679 |
+
"num_tokens": 6501650.0,
|
| 680 |
+
"step": 67
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 1.132233053445816,
|
| 684 |
+
"epoch": 0.6585956416464891,
|
| 685 |
+
"grad_norm": 0.16045193374156952,
|
| 686 |
+
"learning_rate": 4.642614506000523e-05,
|
| 687 |
+
"loss": 1.121936559677124,
|
| 688 |
+
"mean_token_accuracy": 0.6716863736510277,
|
| 689 |
+
"num_tokens": 6599028.0,
|
| 690 |
+
"step": 68
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 1.1332774758338928,
|
| 694 |
+
"epoch": 0.6682808716707022,
|
| 695 |
+
"grad_norm": 0.16355212032794952,
|
| 696 |
+
"learning_rate": 4.628822844333278e-05,
|
| 697 |
+
"loss": 1.1154568195343018,
|
| 698 |
+
"mean_token_accuracy": 0.6706111207604408,
|
| 699 |
+
"num_tokens": 6695913.0,
|
| 700 |
+
"step": 69
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 1.117134228348732,
|
| 704 |
+
"epoch": 0.6779661016949152,
|
| 705 |
+
"grad_norm": 0.1609818935394287,
|
| 706 |
+
"learning_rate": 4.614791381236115e-05,
|
| 707 |
+
"loss": 1.108933925628662,
|
| 708 |
+
"mean_token_accuracy": 0.6739098057150841,
|
| 709 |
+
"num_tokens": 6793755.0,
|
| 710 |
+
"step": 70
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 1.123718187212944,
|
| 714 |
+
"epoch": 0.6876513317191283,
|
| 715 |
+
"grad_norm": 0.16711370646953583,
|
| 716 |
+
"learning_rate": 4.6005216972843864e-05,
|
| 717 |
+
"loss": 1.1205769777297974,
|
| 718 |
+
"mean_token_accuracy": 0.6695492789149284,
|
| 719 |
+
"num_tokens": 6889869.0,
|
| 720 |
+
"step": 71
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"entropy": 1.1330177187919617,
|
| 724 |
+
"epoch": 0.6973365617433414,
|
| 725 |
+
"grad_norm": 0.15766654908657074,
|
| 726 |
+
"learning_rate": 4.5860153998878494e-05,
|
| 727 |
+
"loss": 1.136279582977295,
|
| 728 |
+
"mean_token_accuracy": 0.6664912849664688,
|
| 729 |
+
"num_tokens": 6987242.0,
|
| 730 |
+
"step": 72
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 1.1289773285388947,
|
| 734 |
+
"epoch": 0.7070217917675545,
|
| 735 |
+
"grad_norm": 0.167424738407135,
|
| 736 |
+
"learning_rate": 4.571274123109606e-05,
|
| 737 |
+
"loss": 1.1257307529449463,
|
| 738 |
+
"mean_token_accuracy": 0.6683443114161491,
|
| 739 |
+
"num_tokens": 7083683.0,
|
| 740 |
+
"step": 73
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 1.1089464724063873,
|
| 744 |
+
"epoch": 0.7167070217917676,
|
| 745 |
+
"grad_norm": 0.29150310158729553,
|
| 746 |
+
"learning_rate": 4.5562995274820284e-05,
|
| 747 |
+
"loss": 1.0986303091049194,
|
| 748 |
+
"mean_token_accuracy": 0.6785000637173653,
|
| 749 |
+
"num_tokens": 7180007.0,
|
| 750 |
+
"step": 74
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 1.1168130189180374,
|
| 754 |
+
"epoch": 0.7263922518159807,
|
| 755 |
+
"grad_norm": 0.1623908281326294,
|
| 756 |
+
"learning_rate": 4.541093299819714e-05,
|
| 757 |
+
"loss": 1.1109479665756226,
|
| 758 |
+
"mean_token_accuracy": 0.6751653999090195,
|
| 759 |
+
"num_tokens": 7276880.0,
|
| 760 |
+
"step": 75
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 1.1238265335559845,
|
| 764 |
+
"epoch": 0.7360774818401937,
|
| 765 |
+
"grad_norm": 0.16212861239910126,
|
| 766 |
+
"learning_rate": 4.5256571530294664e-05,
|
| 767 |
+
"loss": 1.104738473892212,
|
| 768 |
+
"mean_token_accuracy": 0.6755917444825172,
|
| 769 |
+
"num_tokens": 7374051.0,
|
| 770 |
+
"step": 76
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 1.1079749763011932,
|
| 774 |
+
"epoch": 0.7457627118644068,
|
| 775 |
+
"grad_norm": 0.15648601949214935,
|
| 776 |
+
"learning_rate": 4.5099928259173516e-05,
|
| 777 |
+
"loss": 1.1000884771347046,
|
| 778 |
+
"mean_token_accuracy": 0.6749309673905373,
|
| 779 |
+
"num_tokens": 7471906.0,
|
| 780 |
+
"step": 77
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 1.12865149974823,
|
| 784 |
+
"epoch": 0.7554479418886199,
|
| 785 |
+
"grad_norm": 0.15941032767295837,
|
| 786 |
+
"learning_rate": 4.4941020829928245e-05,
|
| 787 |
+
"loss": 1.1193838119506836,
|
| 788 |
+
"mean_token_accuracy": 0.6708522811532021,
|
| 789 |
+
"num_tokens": 7569981.0,
|
| 790 |
+
"step": 78
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"entropy": 1.1111949235200882,
|
| 794 |
+
"epoch": 0.7651331719128329,
|
| 795 |
+
"grad_norm": 0.16523951292037964,
|
| 796 |
+
"learning_rate": 4.477986714269972e-05,
|
| 797 |
+
"loss": 1.1221985816955566,
|
| 798 |
+
"mean_token_accuracy": 0.6717454493045807,
|
| 799 |
+
"num_tokens": 7663566.0,
|
| 800 |
+
"step": 79
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"entropy": 1.100884273648262,
|
| 804 |
+
"epoch": 0.774818401937046,
|
| 805 |
+
"grad_norm": 0.16432514786720276,
|
| 806 |
+
"learning_rate": 4.4616485350658685e-05,
|
| 807 |
+
"loss": 1.104296088218689,
|
| 808 |
+
"mean_token_accuracy": 0.6767150536179543,
|
| 809 |
+
"num_tokens": 7761120.0,
|
| 810 |
+
"step": 80
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"entropy": 1.1229810565710068,
|
| 814 |
+
"epoch": 0.784503631961259,
|
| 815 |
+
"grad_norm": 0.17101751267910004,
|
| 816 |
+
"learning_rate": 4.445089385796099e-05,
|
| 817 |
+
"loss": 1.1202152967453003,
|
| 818 |
+
"mean_token_accuracy": 0.6708082109689713,
|
| 819 |
+
"num_tokens": 7859307.0,
|
| 820 |
+
"step": 81
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"entropy": 1.134630709886551,
|
| 824 |
+
"epoch": 0.7941888619854721,
|
| 825 |
+
"grad_norm": 0.1734648197889328,
|
| 826 |
+
"learning_rate": 4.4283111317674374e-05,
|
| 827 |
+
"loss": 1.1201170682907104,
|
| 828 |
+
"mean_token_accuracy": 0.6716241240501404,
|
| 829 |
+
"num_tokens": 7956863.0,
|
| 830 |
+
"step": 82
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"entropy": 1.1259192377328873,
|
| 834 |
+
"epoch": 0.8038740920096852,
|
| 835 |
+
"grad_norm": 0.16475871205329895,
|
| 836 |
+
"learning_rate": 4.4113156629677316e-05,
|
| 837 |
+
"loss": 1.1068096160888672,
|
| 838 |
+
"mean_token_accuracy": 0.674552284181118,
|
| 839 |
+
"num_tokens": 8053100.0,
|
| 840 |
+
"step": 83
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"entropy": 1.0983240008354187,
|
| 844 |
+
"epoch": 0.8135593220338984,
|
| 845 |
+
"grad_norm": 0.17292368412017822,
|
| 846 |
+
"learning_rate": 4.394104893853007e-05,
|
| 847 |
+
"loss": 1.0763158798217773,
|
| 848 |
+
"mean_token_accuracy": 0.6806622296571732,
|
| 849 |
+
"num_tokens": 8151004.0,
|
| 850 |
+
"step": 84
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"entropy": 1.1288987547159195,
|
| 854 |
+
"epoch": 0.8232445520581114,
|
| 855 |
+
"grad_norm": 0.16203227639198303,
|
| 856 |
+
"learning_rate": 4.3766807631318106e-05,
|
| 857 |
+
"loss": 1.1195769309997559,
|
| 858 |
+
"mean_token_accuracy": 0.671344555914402,
|
| 859 |
+
"num_tokens": 8248668.0,
|
| 860 |
+
"step": 85
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"entropy": 1.1410782486200333,
|
| 864 |
+
"epoch": 0.8329297820823245,
|
| 865 |
+
"grad_norm": 0.16533830761909485,
|
| 866 |
+
"learning_rate": 4.359045233546827e-05,
|
| 867 |
+
"loss": 1.1256823539733887,
|
| 868 |
+
"mean_token_accuracy": 0.6698467060923576,
|
| 869 |
+
"num_tokens": 8345497.0,
|
| 870 |
+
"step": 86
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"entropy": 1.0999096632003784,
|
| 874 |
+
"epoch": 0.8426150121065376,
|
| 875 |
+
"grad_norm": 0.17075778543949127,
|
| 876 |
+
"learning_rate": 4.341200291653781e-05,
|
| 877 |
+
"loss": 1.0872827768325806,
|
| 878 |
+
"mean_token_accuracy": 0.6762653961777687,
|
| 879 |
+
"num_tokens": 8443405.0,
|
| 880 |
+
"step": 87
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"entropy": 1.0918122231960297,
|
| 884 |
+
"epoch": 0.8523002421307506,
|
| 885 |
+
"grad_norm": 0.1702580451965332,
|
| 886 |
+
"learning_rate": 4.323147947597666e-05,
|
| 887 |
+
"loss": 1.0806095600128174,
|
| 888 |
+
"mean_token_accuracy": 0.6800353080034256,
|
| 889 |
+
"num_tokens": 8540868.0,
|
| 890 |
+
"step": 88
|
| 891 |
+
},
|
| 892 |
+
{
|
| 893 |
+
"entropy": 1.0941280871629715,
|
| 894 |
+
"epoch": 0.8619854721549637,
|
| 895 |
+
"grad_norm": 0.16791851818561554,
|
| 896 |
+
"learning_rate": 4.3048902348863116e-05,
|
| 897 |
+
"loss": 1.0981943607330322,
|
| 898 |
+
"mean_token_accuracy": 0.6758224442601204,
|
| 899 |
+
"num_tokens": 8638186.0,
|
| 900 |
+
"step": 89
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"entropy": 1.0951679199934006,
|
| 904 |
+
"epoch": 0.8716707021791767,
|
| 905 |
+
"grad_norm": 0.1697986125946045,
|
| 906 |
+
"learning_rate": 4.2864292101613136e-05,
|
| 907 |
+
"loss": 1.0987718105316162,
|
| 908 |
+
"mean_token_accuracy": 0.6747072339057922,
|
| 909 |
+
"num_tokens": 8735354.0,
|
| 910 |
+
"step": 90
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"entropy": 1.1223643571138382,
|
| 914 |
+
"epoch": 0.8813559322033898,
|
| 915 |
+
"grad_norm": 0.2108999490737915,
|
| 916 |
+
"learning_rate": 4.267766952966369e-05,
|
| 917 |
+
"loss": 1.1219862699508667,
|
| 918 |
+
"mean_token_accuracy": 0.6695899069309235,
|
| 919 |
+
"num_tokens": 8832051.0,
|
| 920 |
+
"step": 91
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"entropy": 1.1099307239055634,
|
| 924 |
+
"epoch": 0.8910411622276029,
|
| 925 |
+
"grad_norm": 0.18003661930561066,
|
| 926 |
+
"learning_rate": 4.248905565513023e-05,
|
| 927 |
+
"loss": 1.0990370512008667,
|
| 928 |
+
"mean_token_accuracy": 0.6750800833106041,
|
| 929 |
+
"num_tokens": 8929471.0,
|
| 930 |
+
"step": 92
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"entropy": 1.1097175031900406,
|
| 934 |
+
"epoch": 0.9007263922518159,
|
| 935 |
+
"grad_norm": 0.18473289906978607,
|
| 936 |
+
"learning_rate": 4.229847172443866e-05,
|
| 937 |
+
"loss": 1.0890154838562012,
|
| 938 |
+
"mean_token_accuracy": 0.6764732897281647,
|
| 939 |
+
"num_tokens": 9026545.0,
|
| 940 |
+
"step": 93
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"entropy": 1.1048423945903778,
|
| 944 |
+
"epoch": 0.910411622276029,
|
| 945 |
+
"grad_norm": 0.17208412289619446,
|
| 946 |
+
"learning_rate": 4.210593920593201e-05,
|
| 947 |
+
"loss": 1.1022264957427979,
|
| 948 |
+
"mean_token_accuracy": 0.6741294264793396,
|
| 949 |
+
"num_tokens": 9124261.0,
|
| 950 |
+
"step": 94
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"entropy": 1.0943758487701416,
|
| 954 |
+
"epoch": 0.9200968523002422,
|
| 955 |
+
"grad_norm": 0.18163490295410156,
|
| 956 |
+
"learning_rate": 4.191147978745218e-05,
|
| 957 |
+
"loss": 1.0901988744735718,
|
| 958 |
+
"mean_token_accuracy": 0.6788006126880646,
|
| 959 |
+
"num_tokens": 9220673.0,
|
| 960 |
+
"step": 95
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"entropy": 1.1178465783596039,
|
| 964 |
+
"epoch": 0.9297820823244553,
|
| 965 |
+
"grad_norm": 0.1731623411178589,
|
| 966 |
+
"learning_rate": 4.171511537389684e-05,
|
| 967 |
+
"loss": 1.1111767292022705,
|
| 968 |
+
"mean_token_accuracy": 0.6736986339092255,
|
| 969 |
+
"num_tokens": 9318321.0,
|
| 970 |
+
"step": 96
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"entropy": 1.0975633561611176,
|
| 974 |
+
"epoch": 0.9394673123486683,
|
| 975 |
+
"grad_norm": 0.18208175897598267,
|
| 976 |
+
"learning_rate": 4.151686808475204e-05,
|
| 977 |
+
"loss": 1.0915802717208862,
|
| 978 |
+
"mean_token_accuracy": 0.6765245422720909,
|
| 979 |
+
"num_tokens": 9415394.0,
|
| 980 |
+
"step": 97
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"entropy": 1.114044964313507,
|
| 984 |
+
"epoch": 0.9491525423728814,
|
| 985 |
+
"grad_norm": 0.17058847844600677,
|
| 986 |
+
"learning_rate": 4.131676025160047e-05,
|
| 987 |
+
"loss": 1.1074469089508057,
|
| 988 |
+
"mean_token_accuracy": 0.6720306798815727,
|
| 989 |
+
"num_tokens": 9512880.0,
|
| 990 |
+
"step": 98
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"entropy": 1.07672019302845,
|
| 994 |
+
"epoch": 0.9588377723970944,
|
| 995 |
+
"grad_norm": 0.18478929996490479,
|
| 996 |
+
"learning_rate": 4.111481441560598e-05,
|
| 997 |
+
"loss": 1.0674448013305664,
|
| 998 |
+
"mean_token_accuracy": 0.6838654279708862,
|
| 999 |
+
"num_tokens": 9606053.0,
|
| 1000 |
+
"step": 99
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"entropy": 1.0935327857732773,
|
| 1004 |
+
"epoch": 0.9685230024213075,
|
| 1005 |
+
"grad_norm": 0.17510797083377838,
|
| 1006 |
+
"learning_rate": 4.091105332497439e-05,
|
| 1007 |
+
"loss": 1.0954351425170898,
|
| 1008 |
+
"mean_token_accuracy": 0.6775561571121216,
|
| 1009 |
+
"num_tokens": 9702569.0,
|
| 1010 |
+
"step": 100
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"entropy": 1.0855822414159775,
|
| 1014 |
+
"epoch": 0.9782082324455206,
|
| 1015 |
+
"grad_norm": 0.18510136008262634,
|
| 1016 |
+
"learning_rate": 4.070549993239106e-05,
|
| 1017 |
+
"loss": 1.0844038724899292,
|
| 1018 |
+
"mean_token_accuracy": 0.681103028357029,
|
| 1019 |
+
"num_tokens": 9799976.0,
|
| 1020 |
+
"step": 101
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"entropy": 1.1072624325752258,
|
| 1024 |
+
"epoch": 0.9878934624697336,
|
| 1025 |
+
"grad_norm": 0.2109905481338501,
|
| 1026 |
+
"learning_rate": 4.049817739243532e-05,
|
| 1027 |
+
"loss": 1.1046338081359863,
|
| 1028 |
+
"mean_token_accuracy": 0.6760703399777412,
|
| 1029 |
+
"num_tokens": 9895575.0,
|
| 1030 |
+
"step": 102
|
| 1031 |
+
},
|
| 1032 |
+
{
|
| 1033 |
+
"entropy": 1.0761565268039703,
|
| 1034 |
+
"epoch": 0.9975786924939467,
|
| 1035 |
+
"grad_norm": 0.18559105694293976,
|
| 1036 |
+
"learning_rate": 4.028910905897229e-05,
|
| 1037 |
+
"loss": 1.0674762725830078,
|
| 1038 |
+
"mean_token_accuracy": 0.6826195642352104,
|
| 1039 |
+
"num_tokens": 9992394.0,
|
| 1040 |
+
"step": 103
|
| 1041 |
+
},
|
| 1042 |
+
{
|
| 1043 |
+
"entropy": 1.1065305471420288,
|
| 1044 |
+
"epoch": 1.0,
|
| 1045 |
+
"grad_norm": 0.3376278877258301,
|
| 1046 |
+
"learning_rate": 4.007831848252211e-05,
|
| 1047 |
+
"loss": 1.09256911277771,
|
| 1048 |
+
"mean_token_accuracy": 0.678756445646286,
|
| 1049 |
+
"num_tokens": 10016415.0,
|
| 1050 |
+
"step": 104
|
| 1051 |
+
}
|
| 1052 |
+
],
|
| 1053 |
+
"logging_steps": 1,
|
| 1054 |
+
"max_steps": 312,
|
| 1055 |
+
"num_input_tokens_seen": 0,
|
| 1056 |
+
"num_train_epochs": 3,
|
| 1057 |
+
"save_steps": 500,
|
| 1058 |
+
"stateful_callbacks": {
|
| 1059 |
+
"TrainerControl": {
|
| 1060 |
+
"args": {
|
| 1061 |
+
"should_epoch_stop": false,
|
| 1062 |
+
"should_evaluate": false,
|
| 1063 |
+
"should_log": false,
|
| 1064 |
+
"should_save": true,
|
| 1065 |
+
"should_training_stop": false
|
| 1066 |
+
},
|
| 1067 |
+
"attributes": {}
|
| 1068 |
+
}
|
| 1069 |
+
},
|
| 1070 |
+
"total_flos": 1.4089024450435482e+18,
|
| 1071 |
+
"train_batch_size": 1,
|
| 1072 |
+
"trial_name": null,
|
| 1073 |
+
"trial_params": null
|
| 1074 |
+
}
|