Instructions to use Taywon/B2minus_v4_e1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Taywon/B2minus_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/B2minus_v4_e1") - Transformers
How to use Taywon/B2minus_v4_e1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Taywon/B2minus_v4_e1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Taywon/B2minus_v4_e1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Taywon/B2minus_v4_e1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Taywon/B2minus_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/B2minus_v4_e1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Taywon/B2minus_v4_e1
- SGLang
How to use Taywon/B2minus_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/B2minus_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/B2minus_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/B2minus_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/B2minus_v4_e1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Taywon/B2minus_v4_e1 with Docker Model Runner:
docker model run hf.co/Taywon/B2minus_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 |
+
"gate_proj",
|
| 34 |
+
"v_proj",
|
| 35 |
+
"down_proj",
|
| 36 |
+
"q_proj",
|
| 37 |
+
"k_proj",
|
| 38 |
+
"up_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:435ac09c3cf831d702d6dab1f1a4b66316fc2f3100748e5d6be5b59c79ce372c
|
| 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.2831476479768753,
|
| 14 |
+
"epoch": 0.009685230024213076,
|
| 15 |
+
"grad_norm": 1.257500410079956,
|
| 16 |
+
"learning_rate": 0.0,
|
| 17 |
+
"loss": 2.0216622352600098,
|
| 18 |
+
"mean_token_accuracy": 0.5382094085216522,
|
| 19 |
+
"num_tokens": 97485.0,
|
| 20 |
+
"step": 1
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 1.2757050544023514,
|
| 24 |
+
"epoch": 0.01937046004842615,
|
| 25 |
+
"grad_norm": 1.3158080577850342,
|
| 26 |
+
"learning_rate": 3.125e-06,
|
| 27 |
+
"loss": 2.071122646331787,
|
| 28 |
+
"mean_token_accuracy": 0.5314131379127502,
|
| 29 |
+
"num_tokens": 194184.0,
|
| 30 |
+
"step": 2
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 1.2694316655397415,
|
| 34 |
+
"epoch": 0.029055690072639227,
|
| 35 |
+
"grad_norm": 1.1289395093917847,
|
| 36 |
+
"learning_rate": 6.25e-06,
|
| 37 |
+
"loss": 1.9294486045837402,
|
| 38 |
+
"mean_token_accuracy": 0.5518109127879143,
|
| 39 |
+
"num_tokens": 287660.0,
|
| 40 |
+
"step": 3
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 1.3956594914197922,
|
| 44 |
+
"epoch": 0.0387409200968523,
|
| 45 |
+
"grad_norm": 0.9914306998252869,
|
| 46 |
+
"learning_rate": 9.375000000000001e-06,
|
| 47 |
+
"loss": 1.941465139389038,
|
| 48 |
+
"mean_token_accuracy": 0.54258743673563,
|
| 49 |
+
"num_tokens": 384672.0,
|
| 50 |
+
"step": 4
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.3979678750038147,
|
| 54 |
+
"epoch": 0.048426150121065374,
|
| 55 |
+
"grad_norm": 0.7685282230377197,
|
| 56 |
+
"learning_rate": 1.25e-05,
|
| 57 |
+
"loss": 1.8111070394515991,
|
| 58 |
+
"mean_token_accuracy": 0.5647609829902649,
|
| 59 |
+
"num_tokens": 481921.0,
|
| 60 |
+
"step": 5
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 1.6170997768640518,
|
| 64 |
+
"epoch": 0.05811138014527845,
|
| 65 |
+
"grad_norm": 0.5168716311454773,
|
| 66 |
+
"learning_rate": 1.5625e-05,
|
| 67 |
+
"loss": 1.7966232299804688,
|
| 68 |
+
"mean_token_accuracy": 0.5577141717076302,
|
| 69 |
+
"num_tokens": 577866.0,
|
| 70 |
+
"step": 6
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 1.6874641478061676,
|
| 74 |
+
"epoch": 0.06779661016949153,
|
| 75 |
+
"grad_norm": 0.4072948098182678,
|
| 76 |
+
"learning_rate": 1.8750000000000002e-05,
|
| 77 |
+
"loss": 1.708348035812378,
|
| 78 |
+
"mean_token_accuracy": 0.5744073167443275,
|
| 79 |
+
"num_tokens": 674698.0,
|
| 80 |
+
"step": 7
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 1.7709944546222687,
|
| 84 |
+
"epoch": 0.0774818401937046,
|
| 85 |
+
"grad_norm": 0.4375021159648895,
|
| 86 |
+
"learning_rate": 2.1875e-05,
|
| 87 |
+
"loss": 1.6493638753890991,
|
| 88 |
+
"mean_token_accuracy": 0.5816963836550713,
|
| 89 |
+
"num_tokens": 771175.0,
|
| 90 |
+
"step": 8
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 1.869639590382576,
|
| 94 |
+
"epoch": 0.08716707021791767,
|
| 95 |
+
"grad_norm": 0.5281513333320618,
|
| 96 |
+
"learning_rate": 2.5e-05,
|
| 97 |
+
"loss": 1.6473325490951538,
|
| 98 |
+
"mean_token_accuracy": 0.5845584571361542,
|
| 99 |
+
"num_tokens": 868470.0,
|
| 100 |
+
"step": 9
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 1.8225883692502975,
|
| 104 |
+
"epoch": 0.09685230024213075,
|
| 105 |
+
"grad_norm": 0.5096434354782104,
|
| 106 |
+
"learning_rate": 2.8125000000000003e-05,
|
| 107 |
+
"loss": 1.590818166732788,
|
| 108 |
+
"mean_token_accuracy": 0.5921354293823242,
|
| 109 |
+
"num_tokens": 964784.0,
|
| 110 |
+
"step": 10
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 1.7066199630498886,
|
| 114 |
+
"epoch": 0.10653753026634383,
|
| 115 |
+
"grad_norm": 0.4193650186061859,
|
| 116 |
+
"learning_rate": 3.125e-05,
|
| 117 |
+
"loss": 1.529557228088379,
|
| 118 |
+
"mean_token_accuracy": 0.5996061563491821,
|
| 119 |
+
"num_tokens": 1061836.0,
|
| 120 |
+
"step": 11
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 1.6335420161485672,
|
| 124 |
+
"epoch": 0.1162227602905569,
|
| 125 |
+
"grad_norm": 0.34470972418785095,
|
| 126 |
+
"learning_rate": 3.4375e-05,
|
| 127 |
+
"loss": 1.5362547636032104,
|
| 128 |
+
"mean_token_accuracy": 0.5929826945066452,
|
| 129 |
+
"num_tokens": 1158471.0,
|
| 130 |
+
"step": 12
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 1.4438551515340805,
|
| 134 |
+
"epoch": 0.12590799031476999,
|
| 135 |
+
"grad_norm": 0.27761033177375793,
|
| 136 |
+
"learning_rate": 3.7500000000000003e-05,
|
| 137 |
+
"loss": 1.4457957744598389,
|
| 138 |
+
"mean_token_accuracy": 0.6143342331051826,
|
| 139 |
+
"num_tokens": 1255084.0,
|
| 140 |
+
"step": 13
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 1.392322763800621,
|
| 144 |
+
"epoch": 0.13559322033898305,
|
| 145 |
+
"grad_norm": 0.2844429016113281,
|
| 146 |
+
"learning_rate": 4.0625000000000005e-05,
|
| 147 |
+
"loss": 1.4511373043060303,
|
| 148 |
+
"mean_token_accuracy": 0.6104418113827705,
|
| 149 |
+
"num_tokens": 1352697.0,
|
| 150 |
+
"step": 14
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 1.3371251970529556,
|
| 154 |
+
"epoch": 0.14527845036319612,
|
| 155 |
+
"grad_norm": 0.2822510898113251,
|
| 156 |
+
"learning_rate": 4.375e-05,
|
| 157 |
+
"loss": 1.4322829246520996,
|
| 158 |
+
"mean_token_accuracy": 0.6155784726142883,
|
| 159 |
+
"num_tokens": 1450346.0,
|
| 160 |
+
"step": 15
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 1.2996839582920074,
|
| 164 |
+
"epoch": 0.1549636803874092,
|
| 165 |
+
"grad_norm": 0.2731319069862366,
|
| 166 |
+
"learning_rate": 4.6875e-05,
|
| 167 |
+
"loss": 1.399651288986206,
|
| 168 |
+
"mean_token_accuracy": 0.6181296408176422,
|
| 169 |
+
"num_tokens": 1546056.0,
|
| 170 |
+
"step": 16
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 1.286782756447792,
|
| 174 |
+
"epoch": 0.16464891041162227,
|
| 175 |
+
"grad_norm": 0.2287229746580124,
|
| 176 |
+
"learning_rate": 5e-05,
|
| 177 |
+
"loss": 1.3414286375045776,
|
| 178 |
+
"mean_token_accuracy": 0.6305811852216721,
|
| 179 |
+
"num_tokens": 1644072.0,
|
| 180 |
+
"step": 17
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 1.2884749919176102,
|
| 184 |
+
"epoch": 0.17433414043583534,
|
| 185 |
+
"grad_norm": 0.24129998683929443,
|
| 186 |
+
"learning_rate": 4.999859193643945e-05,
|
| 187 |
+
"loss": 1.2895803451538086,
|
| 188 |
+
"mean_token_accuracy": 0.6411498486995697,
|
| 189 |
+
"num_tokens": 1740823.0,
|
| 190 |
+
"step": 18
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 1.399221807718277,
|
| 194 |
+
"epoch": 0.18401937046004843,
|
| 195 |
+
"grad_norm": 0.24152599275112152,
|
| 196 |
+
"learning_rate": 4.999436790436924e-05,
|
| 197 |
+
"loss": 1.3620624542236328,
|
| 198 |
+
"mean_token_accuracy": 0.6247868910431862,
|
| 199 |
+
"num_tokens": 1837872.0,
|
| 200 |
+
"step": 19
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 1.3781700730323792,
|
| 204 |
+
"epoch": 0.1937046004842615,
|
| 205 |
+
"grad_norm": 0.22794979810714722,
|
| 206 |
+
"learning_rate": 4.9987328379605816e-05,
|
| 207 |
+
"loss": 1.3193318843841553,
|
| 208 |
+
"mean_token_accuracy": 0.6357730701565742,
|
| 209 |
+
"num_tokens": 1935638.0,
|
| 210 |
+
"step": 20
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 1.3448941111564636,
|
| 214 |
+
"epoch": 0.2033898305084746,
|
| 215 |
+
"grad_norm": 0.20295539498329163,
|
| 216 |
+
"learning_rate": 4.9977474155117045e-05,
|
| 217 |
+
"loss": 1.2904666662216187,
|
| 218 |
+
"mean_token_accuracy": 0.6384864747524261,
|
| 219 |
+
"num_tokens": 2033151.0,
|
| 220 |
+
"step": 21
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 1.3269115835428238,
|
| 224 |
+
"epoch": 0.21307506053268765,
|
| 225 |
+
"grad_norm": 0.19907879829406738,
|
| 226 |
+
"learning_rate": 4.9964806340932865e-05,
|
| 227 |
+
"loss": 1.2992527484893799,
|
| 228 |
+
"mean_token_accuracy": 0.6387153342366219,
|
| 229 |
+
"num_tokens": 2130350.0,
|
| 230 |
+
"step": 22
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 1.2736097276210785,
|
| 234 |
+
"epoch": 0.22276029055690072,
|
| 235 |
+
"grad_norm": 0.1993221640586853,
|
| 236 |
+
"learning_rate": 4.9949326364020314e-05,
|
| 237 |
+
"loss": 1.2424592971801758,
|
| 238 |
+
"mean_token_accuracy": 0.6515100449323654,
|
| 239 |
+
"num_tokens": 2226505.0,
|
| 240 |
+
"step": 23
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 1.2606256753206253,
|
| 244 |
+
"epoch": 0.2324455205811138,
|
| 245 |
+
"grad_norm": 0.1928444802761078,
|
| 246 |
+
"learning_rate": 4.993103596812268e-05,
|
| 247 |
+
"loss": 1.2370142936706543,
|
| 248 |
+
"mean_token_accuracy": 0.6512897834181786,
|
| 249 |
+
"num_tokens": 2324337.0,
|
| 250 |
+
"step": 24
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 1.1828058958053589,
|
| 254 |
+
"epoch": 0.24213075060532688,
|
| 255 |
+
"grad_norm": 0.1695406287908554,
|
| 256 |
+
"learning_rate": 4.9909937213563165e-05,
|
| 257 |
+
"loss": 1.1700199842453003,
|
| 258 |
+
"mean_token_accuracy": 0.6674213483929634,
|
| 259 |
+
"num_tokens": 2419418.0,
|
| 260 |
+
"step": 25
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 1.2690571248531342,
|
| 264 |
+
"epoch": 0.25181598062953997,
|
| 265 |
+
"grad_norm": 0.17888334393501282,
|
| 266 |
+
"learning_rate": 4.988603247701277e-05,
|
| 267 |
+
"loss": 1.2402149438858032,
|
| 268 |
+
"mean_token_accuracy": 0.6481731608510017,
|
| 269 |
+
"num_tokens": 2515666.0,
|
| 270 |
+
"step": 26
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 1.2278835028409958,
|
| 274 |
+
"epoch": 0.26150121065375304,
|
| 275 |
+
"grad_norm": 0.1878158003091812,
|
| 276 |
+
"learning_rate": 4.985932445122257e-05,
|
| 277 |
+
"loss": 1.2124648094177246,
|
| 278 |
+
"mean_token_accuracy": 0.6553028896450996,
|
| 279 |
+
"num_tokens": 2613197.0,
|
| 280 |
+
"step": 27
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 1.2094718217849731,
|
| 284 |
+
"epoch": 0.2711864406779661,
|
| 285 |
+
"grad_norm": 0.1670471876859665,
|
| 286 |
+
"learning_rate": 4.982981614472039e-05,
|
| 287 |
+
"loss": 1.2036645412445068,
|
| 288 |
+
"mean_token_accuracy": 0.6590213552117348,
|
| 289 |
+
"num_tokens": 2709760.0,
|
| 290 |
+
"step": 28
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 1.1803771257400513,
|
| 294 |
+
"epoch": 0.28087167070217917,
|
| 295 |
+
"grad_norm": 0.16492998600006104,
|
| 296 |
+
"learning_rate": 4.979751088147192e-05,
|
| 297 |
+
"loss": 1.1872878074645996,
|
| 298 |
+
"mean_token_accuracy": 0.661787860095501,
|
| 299 |
+
"num_tokens": 2807308.0,
|
| 300 |
+
"step": 29
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 1.170692041516304,
|
| 304 |
+
"epoch": 0.29055690072639223,
|
| 305 |
+
"grad_norm": 0.17398205399513245,
|
| 306 |
+
"learning_rate": 4.97624123005063e-05,
|
| 307 |
+
"loss": 1.1832412481307983,
|
| 308 |
+
"mean_token_accuracy": 0.661918580532074,
|
| 309 |
+
"num_tokens": 2904379.0,
|
| 310 |
+
"step": 30
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 1.1982254832983017,
|
| 314 |
+
"epoch": 0.30024213075060535,
|
| 315 |
+
"grad_norm": 0.16584837436676025,
|
| 316 |
+
"learning_rate": 4.972452435550614e-05,
|
| 317 |
+
"loss": 1.2053539752960205,
|
| 318 |
+
"mean_token_accuracy": 0.6568507477641106,
|
| 319 |
+
"num_tokens": 3001932.0,
|
| 320 |
+
"step": 31
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 1.139011174440384,
|
| 324 |
+
"epoch": 0.3099273607748184,
|
| 325 |
+
"grad_norm": 0.16256465017795563,
|
| 326 |
+
"learning_rate": 4.968385131436222e-05,
|
| 327 |
+
"loss": 1.1371057033538818,
|
| 328 |
+
"mean_token_accuracy": 0.6699384972453117,
|
| 329 |
+
"num_tokens": 3099859.0,
|
| 330 |
+
"step": 32
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 1.1760681718587875,
|
| 334 |
+
"epoch": 0.3196125907990315,
|
| 335 |
+
"grad_norm": 0.15591397881507874,
|
| 336 |
+
"learning_rate": 4.9640397758692715e-05,
|
| 337 |
+
"loss": 1.160001277923584,
|
| 338 |
+
"mean_token_accuracy": 0.6634443625807762,
|
| 339 |
+
"num_tokens": 3197294.0,
|
| 340 |
+
"step": 33
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 1.1871805638074875,
|
| 344 |
+
"epoch": 0.32929782082324455,
|
| 345 |
+
"grad_norm": 0.1550437957048416,
|
| 346 |
+
"learning_rate": 4.9594168583327094e-05,
|
| 347 |
+
"loss": 1.1692184209823608,
|
| 348 |
+
"mean_token_accuracy": 0.6639450341463089,
|
| 349 |
+
"num_tokens": 3294768.0,
|
| 350 |
+
"step": 34
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 1.1860681176185608,
|
| 354 |
+
"epoch": 0.3389830508474576,
|
| 355 |
+
"grad_norm": 0.15519270300865173,
|
| 356 |
+
"learning_rate": 4.954516899575473e-05,
|
| 357 |
+
"loss": 1.1605687141418457,
|
| 358 |
+
"mean_token_accuracy": 0.6660626903176308,
|
| 359 |
+
"num_tokens": 3389702.0,
|
| 360 |
+
"step": 35
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 1.144161432981491,
|
| 364 |
+
"epoch": 0.3486682808716707,
|
| 365 |
+
"grad_norm": 0.16386644542217255,
|
| 366 |
+
"learning_rate": 4.949340451553833e-05,
|
| 367 |
+
"loss": 1.1134624481201172,
|
| 368 |
+
"mean_token_accuracy": 0.6774730086326599,
|
| 369 |
+
"num_tokens": 3486985.0,
|
| 370 |
+
"step": 36
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 1.169129118323326,
|
| 374 |
+
"epoch": 0.3583535108958838,
|
| 375 |
+
"grad_norm": 0.15737073123455048,
|
| 376 |
+
"learning_rate": 4.943888097369216e-05,
|
| 377 |
+
"loss": 1.1533232927322388,
|
| 378 |
+
"mean_token_accuracy": 0.6671040058135986,
|
| 379 |
+
"num_tokens": 3584177.0,
|
| 380 |
+
"step": 37
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 1.1375333964824677,
|
| 384 |
+
"epoch": 0.36803874092009686,
|
| 385 |
+
"grad_norm": 0.16654150187969208,
|
| 386 |
+
"learning_rate": 4.938160451202521e-05,
|
| 387 |
+
"loss": 1.1330571174621582,
|
| 388 |
+
"mean_token_accuracy": 0.6710135564208031,
|
| 389 |
+
"num_tokens": 3681733.0,
|
| 390 |
+
"step": 38
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 1.115285873413086,
|
| 394 |
+
"epoch": 0.37772397094430993,
|
| 395 |
+
"grad_norm": 0.15554173290729523,
|
| 396 |
+
"learning_rate": 4.9321581582449365e-05,
|
| 397 |
+
"loss": 1.1185455322265625,
|
| 398 |
+
"mean_token_accuracy": 0.6746590584516525,
|
| 399 |
+
"num_tokens": 3777606.0,
|
| 400 |
+
"step": 39
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 1.1352528482675552,
|
| 404 |
+
"epoch": 0.387409200968523,
|
| 405 |
+
"grad_norm": 0.15042954683303833,
|
| 406 |
+
"learning_rate": 4.9258818946252624e-05,
|
| 407 |
+
"loss": 1.125117540359497,
|
| 408 |
+
"mean_token_accuracy": 0.6720233038067818,
|
| 409 |
+
"num_tokens": 3874534.0,
|
| 410 |
+
"step": 40
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 1.1261803954839706,
|
| 414 |
+
"epoch": 0.39709443099273606,
|
| 415 |
+
"grad_norm": 0.1618603765964508,
|
| 416 |
+
"learning_rate": 4.9193323673337476e-05,
|
| 417 |
+
"loss": 1.1155072450637817,
|
| 418 |
+
"mean_token_accuracy": 0.6748175323009491,
|
| 419 |
+
"num_tokens": 3972562.0,
|
| 420 |
+
"step": 41
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 1.1054729223251343,
|
| 424 |
+
"epoch": 0.4067796610169492,
|
| 425 |
+
"grad_norm": 0.1928945779800415,
|
| 426 |
+
"learning_rate": 4.912510314142448e-05,
|
| 427 |
+
"loss": 1.0943855047225952,
|
| 428 |
+
"mean_token_accuracy": 0.6810023561120033,
|
| 429 |
+
"num_tokens": 4069253.0,
|
| 430 |
+
"step": 42
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 1.1252695173025131,
|
| 434 |
+
"epoch": 0.41646489104116224,
|
| 435 |
+
"grad_norm": 0.16767306625843048,
|
| 436 |
+
"learning_rate": 4.9054165035221236e-05,
|
| 437 |
+
"loss": 1.1221925020217896,
|
| 438 |
+
"mean_token_accuracy": 0.6732571944594383,
|
| 439 |
+
"num_tokens": 4167434.0,
|
| 440 |
+
"step": 43
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 1.0451640114188194,
|
| 444 |
+
"epoch": 0.4261501210653753,
|
| 445 |
+
"grad_norm": 0.15018437802791595,
|
| 446 |
+
"learning_rate": 4.898051734555676e-05,
|
| 447 |
+
"loss": 1.0456998348236084,
|
| 448 |
+
"mean_token_accuracy": 0.6917429268360138,
|
| 449 |
+
"num_tokens": 4263989.0,
|
| 450 |
+
"step": 44
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 1.0243945717811584,
|
| 454 |
+
"epoch": 0.4358353510895884,
|
| 455 |
+
"grad_norm": 0.15813371539115906,
|
| 456 |
+
"learning_rate": 4.890416836848127e-05,
|
| 457 |
+
"loss": 1.019399642944336,
|
| 458 |
+
"mean_token_accuracy": 0.6970273479819298,
|
| 459 |
+
"num_tokens": 4358172.0,
|
| 460 |
+
"step": 45
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 1.0881676077842712,
|
| 464 |
+
"epoch": 0.44552058111380144,
|
| 465 |
+
"grad_norm": 0.1647815704345703,
|
| 466 |
+
"learning_rate": 4.88251267043318e-05,
|
| 467 |
+
"loss": 1.089061975479126,
|
| 468 |
+
"mean_token_accuracy": 0.6811036169528961,
|
| 469 |
+
"num_tokens": 4454874.0,
|
| 470 |
+
"step": 46
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 1.1170424669981003,
|
| 474 |
+
"epoch": 0.4552058111380145,
|
| 475 |
+
"grad_norm": 0.15906141698360443,
|
| 476 |
+
"learning_rate": 4.87434012567633e-05,
|
| 477 |
+
"loss": 1.1157368421554565,
|
| 478 |
+
"mean_token_accuracy": 0.6773378178477287,
|
| 479 |
+
"num_tokens": 4551716.0,
|
| 480 |
+
"step": 47
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 1.1030111014842987,
|
| 484 |
+
"epoch": 0.4648910411622276,
|
| 485 |
+
"grad_norm": 0.1497914344072342,
|
| 486 |
+
"learning_rate": 4.865900123174574e-05,
|
| 487 |
+
"loss": 1.0889781713485718,
|
| 488 |
+
"mean_token_accuracy": 0.6786394864320755,
|
| 489 |
+
"num_tokens": 4649881.0,
|
| 490 |
+
"step": 48
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 1.1213176995515823,
|
| 494 |
+
"epoch": 0.4745762711864407,
|
| 495 |
+
"grad_norm": 0.14933931827545166,
|
| 496 |
+
"learning_rate": 4.857193613652711e-05,
|
| 497 |
+
"loss": 1.102480173110962,
|
| 498 |
+
"mean_token_accuracy": 0.6778694689273834,
|
| 499 |
+
"num_tokens": 4746560.0,
|
| 500 |
+
"step": 49
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 1.1182024255394936,
|
| 504 |
+
"epoch": 0.48426150121065376,
|
| 505 |
+
"grad_norm": 0.1557791829109192,
|
| 506 |
+
"learning_rate": 4.848221577856243e-05,
|
| 507 |
+
"loss": 1.1001962423324585,
|
| 508 |
+
"mean_token_accuracy": 0.6782753691077232,
|
| 509 |
+
"num_tokens": 4844482.0,
|
| 510 |
+
"step": 50
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"entropy": 1.0782635807991028,
|
| 514 |
+
"epoch": 0.4939467312348668,
|
| 515 |
+
"grad_norm": 0.15607225894927979,
|
| 516 |
+
"learning_rate": 4.838985026440905e-05,
|
| 517 |
+
"loss": 1.0587979555130005,
|
| 518 |
+
"mean_token_accuracy": 0.6873368322849274,
|
| 519 |
+
"num_tokens": 4942340.0,
|
| 520 |
+
"step": 51
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 1.071622334420681,
|
| 524 |
+
"epoch": 0.5036319612590799,
|
| 525 |
+
"grad_norm": 0.1505449265241623,
|
| 526 |
+
"learning_rate": 4.829484999858815e-05,
|
| 527 |
+
"loss": 1.0695254802703857,
|
| 528 |
+
"mean_token_accuracy": 0.6835980787873268,
|
| 529 |
+
"num_tokens": 5040296.0,
|
| 530 |
+
"step": 52
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 1.0763383507728577,
|
| 534 |
+
"epoch": 0.513317191283293,
|
| 535 |
+
"grad_norm": 0.15331462025642395,
|
| 536 |
+
"learning_rate": 4.819722568241274e-05,
|
| 537 |
+
"loss": 1.073240041732788,
|
| 538 |
+
"mean_token_accuracy": 0.6868264526128769,
|
| 539 |
+
"num_tokens": 5136985.0,
|
| 540 |
+
"step": 53
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 1.086071863770485,
|
| 544 |
+
"epoch": 0.5230024213075061,
|
| 545 |
+
"grad_norm": 0.15281084179878235,
|
| 546 |
+
"learning_rate": 4.8096988312782174e-05,
|
| 547 |
+
"loss": 1.089070200920105,
|
| 548 |
+
"mean_token_accuracy": 0.6783855706453323,
|
| 549 |
+
"num_tokens": 5234555.0,
|
| 550 |
+
"step": 54
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 1.0728528648614883,
|
| 554 |
+
"epoch": 0.5326876513317191,
|
| 555 |
+
"grad_norm": 0.15144552290439606,
|
| 556 |
+
"learning_rate": 4.799414918094347e-05,
|
| 557 |
+
"loss": 1.0666192770004272,
|
| 558 |
+
"mean_token_accuracy": 0.6838826537132263,
|
| 559 |
+
"num_tokens": 5330627.0,
|
| 560 |
+
"step": 55
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"entropy": 1.0615920722484589,
|
| 564 |
+
"epoch": 0.5423728813559322,
|
| 565 |
+
"grad_norm": 0.25972187519073486,
|
| 566 |
+
"learning_rate": 4.788871987121937e-05,
|
| 567 |
+
"loss": 1.0613664388656616,
|
| 568 |
+
"mean_token_accuracy": 0.6867948919534683,
|
| 569 |
+
"num_tokens": 5428196.0,
|
| 570 |
+
"step": 56
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"entropy": 1.066960223019123,
|
| 574 |
+
"epoch": 0.5520581113801453,
|
| 575 |
+
"grad_norm": 0.15711794793605804,
|
| 576 |
+
"learning_rate": 4.77807122597034e-05,
|
| 577 |
+
"loss": 1.0630605220794678,
|
| 578 |
+
"mean_token_accuracy": 0.6852066963911057,
|
| 579 |
+
"num_tokens": 5525318.0,
|
| 580 |
+
"step": 57
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"entropy": 1.0585280284285545,
|
| 584 |
+
"epoch": 0.5617433414043583,
|
| 585 |
+
"grad_norm": 0.154302716255188,
|
| 586 |
+
"learning_rate": 4.767013851292212e-05,
|
| 587 |
+
"loss": 1.048720359802246,
|
| 588 |
+
"mean_token_accuracy": 0.6897359937429428,
|
| 589 |
+
"num_tokens": 5623136.0,
|
| 590 |
+
"step": 58
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"entropy": 1.0350576639175415,
|
| 594 |
+
"epoch": 0.5714285714285714,
|
| 595 |
+
"grad_norm": 0.15237243473529816,
|
| 596 |
+
"learning_rate": 4.755701108646463e-05,
|
| 597 |
+
"loss": 1.027522325515747,
|
| 598 |
+
"mean_token_accuracy": 0.6950520128011703,
|
| 599 |
+
"num_tokens": 5720541.0,
|
| 600 |
+
"step": 59
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"entropy": 1.0580420941114426,
|
| 604 |
+
"epoch": 0.5811138014527845,
|
| 605 |
+
"grad_norm": 0.14978040754795074,
|
| 606 |
+
"learning_rate": 4.744134272357948e-05,
|
| 607 |
+
"loss": 1.0437177419662476,
|
| 608 |
+
"mean_token_accuracy": 0.6894178092479706,
|
| 609 |
+
"num_tokens": 5818052.0,
|
| 610 |
+
"step": 60
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"entropy": 1.047768495976925,
|
| 614 |
+
"epoch": 0.5907990314769975,
|
| 615 |
+
"grad_norm": 0.45630910992622375,
|
| 616 |
+
"learning_rate": 4.732314645373921e-05,
|
| 617 |
+
"loss": 1.0360010862350464,
|
| 618 |
+
"mean_token_accuracy": 0.6936607509851456,
|
| 619 |
+
"num_tokens": 5915984.0,
|
| 620 |
+
"step": 61
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 1.0626960098743439,
|
| 624 |
+
"epoch": 0.6004842615012107,
|
| 625 |
+
"grad_norm": 0.2640538513660431,
|
| 626 |
+
"learning_rate": 4.7202435591172676e-05,
|
| 627 |
+
"loss": 1.0494108200073242,
|
| 628 |
+
"mean_token_accuracy": 0.6885051354765892,
|
| 629 |
+
"num_tokens": 6013024.0,
|
| 630 |
+
"step": 62
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 1.0739953070878983,
|
| 634 |
+
"epoch": 0.6101694915254238,
|
| 635 |
+
"grad_norm": 0.15643136203289032,
|
| 636 |
+
"learning_rate": 4.7079223733365237e-05,
|
| 637 |
+
"loss": 1.0664867162704468,
|
| 638 |
+
"mean_token_accuracy": 0.6844003722071648,
|
| 639 |
+
"num_tokens": 6110253.0,
|
| 640 |
+
"step": 63
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 1.0349700078368187,
|
| 644 |
+
"epoch": 0.6198547215496368,
|
| 645 |
+
"grad_norm": 0.1503216028213501,
|
| 646 |
+
"learning_rate": 4.6953524759527054e-05,
|
| 647 |
+
"loss": 1.0348119735717773,
|
| 648 |
+
"mean_token_accuracy": 0.692238837480545,
|
| 649 |
+
"num_tokens": 6207767.0,
|
| 650 |
+
"step": 64
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 1.034246288239956,
|
| 654 |
+
"epoch": 0.6295399515738499,
|
| 655 |
+
"grad_norm": 0.1513209342956543,
|
| 656 |
+
"learning_rate": 4.6825352829029705e-05,
|
| 657 |
+
"loss": 1.0328264236450195,
|
| 658 |
+
"mean_token_accuracy": 0.6916565299034119,
|
| 659 |
+
"num_tokens": 6305333.0,
|
| 660 |
+
"step": 65
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 1.0430887341499329,
|
| 664 |
+
"epoch": 0.639225181598063,
|
| 665 |
+
"grad_norm": 0.15611153841018677,
|
| 666 |
+
"learning_rate": 4.6694722379811185e-05,
|
| 667 |
+
"loss": 1.0414214134216309,
|
| 668 |
+
"mean_token_accuracy": 0.691117949783802,
|
| 669 |
+
"num_tokens": 6402785.0,
|
| 670 |
+
"step": 66
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 1.0569112747907639,
|
| 674 |
+
"epoch": 0.648910411622276,
|
| 675 |
+
"grad_norm": 0.1588103026151657,
|
| 676 |
+
"learning_rate": 4.656164812674951e-05,
|
| 677 |
+
"loss": 1.047569990158081,
|
| 678 |
+
"mean_token_accuracy": 0.6887474879622459,
|
| 679 |
+
"num_tokens": 6499919.0,
|
| 680 |
+
"step": 67
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 1.0378888696432114,
|
| 684 |
+
"epoch": 0.6585956416464891,
|
| 685 |
+
"grad_norm": 0.15132373571395874,
|
| 686 |
+
"learning_rate": 4.642614506000523e-05,
|
| 687 |
+
"loss": 1.0328857898712158,
|
| 688 |
+
"mean_token_accuracy": 0.6924383491277695,
|
| 689 |
+
"num_tokens": 6597204.0,
|
| 690 |
+
"step": 68
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 1.032283864915371,
|
| 694 |
+
"epoch": 0.6682808716707022,
|
| 695 |
+
"grad_norm": 0.1583699733018875,
|
| 696 |
+
"learning_rate": 4.628822844333278e-05,
|
| 697 |
+
"loss": 1.0151689052581787,
|
| 698 |
+
"mean_token_accuracy": 0.6986712738871574,
|
| 699 |
+
"num_tokens": 6694398.0,
|
| 700 |
+
"step": 69
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 1.0015813261270523,
|
| 704 |
+
"epoch": 0.6779661016949152,
|
| 705 |
+
"grad_norm": 0.1757071167230606,
|
| 706 |
+
"learning_rate": 4.614791381236115e-05,
|
| 707 |
+
"loss": 0.9920505285263062,
|
| 708 |
+
"mean_token_accuracy": 0.7040144950151443,
|
| 709 |
+
"num_tokens": 6791780.0,
|
| 710 |
+
"step": 70
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 1.0453337281942368,
|
| 714 |
+
"epoch": 0.6876513317191283,
|
| 715 |
+
"grad_norm": 0.1524701863527298,
|
| 716 |
+
"learning_rate": 4.6005216972843864e-05,
|
| 717 |
+
"loss": 1.0443840026855469,
|
| 718 |
+
"mean_token_accuracy": 0.6916699558496475,
|
| 719 |
+
"num_tokens": 6888953.0,
|
| 720 |
+
"step": 71
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"entropy": 1.0230370834469795,
|
| 724 |
+
"epoch": 0.6973365617433414,
|
| 725 |
+
"grad_norm": 0.15993070602416992,
|
| 726 |
+
"learning_rate": 4.5860153998878494e-05,
|
| 727 |
+
"loss": 1.0304991006851196,
|
| 728 |
+
"mean_token_accuracy": 0.6937867403030396,
|
| 729 |
+
"num_tokens": 6986471.0,
|
| 730 |
+
"step": 72
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 1.0421988740563393,
|
| 734 |
+
"epoch": 0.7070217917675545,
|
| 735 |
+
"grad_norm": 0.1573047935962677,
|
| 736 |
+
"learning_rate": 4.571274123109606e-05,
|
| 737 |
+
"loss": 1.0444982051849365,
|
| 738 |
+
"mean_token_accuracy": 0.6912301033735275,
|
| 739 |
+
"num_tokens": 7083829.0,
|
| 740 |
+
"step": 73
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 1.0748334154486656,
|
| 744 |
+
"epoch": 0.7167070217917676,
|
| 745 |
+
"grad_norm": 0.16008728742599487,
|
| 746 |
+
"learning_rate": 4.5562995274820284e-05,
|
| 747 |
+
"loss": 1.0726516246795654,
|
| 748 |
+
"mean_token_accuracy": 0.6823427230119705,
|
| 749 |
+
"num_tokens": 7180818.0,
|
| 750 |
+
"step": 74
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 1.0194222182035446,
|
| 754 |
+
"epoch": 0.7263922518159807,
|
| 755 |
+
"grad_norm": 0.16299541294574738,
|
| 756 |
+
"learning_rate": 4.541093299819714e-05,
|
| 757 |
+
"loss": 1.003331184387207,
|
| 758 |
+
"mean_token_accuracy": 0.6996421813964844,
|
| 759 |
+
"num_tokens": 7277648.0,
|
| 760 |
+
"step": 75
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 1.0004182010889053,
|
| 764 |
+
"epoch": 0.7360774818401937,
|
| 765 |
+
"grad_norm": 0.15372581779956818,
|
| 766 |
+
"learning_rate": 4.5256571530294664e-05,
|
| 767 |
+
"loss": 0.9760631918907166,
|
| 768 |
+
"mean_token_accuracy": 0.7064241617918015,
|
| 769 |
+
"num_tokens": 7375160.0,
|
| 770 |
+
"step": 76
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 1.0313043221831322,
|
| 774 |
+
"epoch": 0.7457627118644068,
|
| 775 |
+
"grad_norm": 0.15582375228405,
|
| 776 |
+
"learning_rate": 4.5099928259173516e-05,
|
| 777 |
+
"loss": 1.0199785232543945,
|
| 778 |
+
"mean_token_accuracy": 0.6969870626926422,
|
| 779 |
+
"num_tokens": 7472481.0,
|
| 780 |
+
"step": 77
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 1.0267394110560417,
|
| 784 |
+
"epoch": 0.7554479418886199,
|
| 785 |
+
"grad_norm": 0.15595640242099762,
|
| 786 |
+
"learning_rate": 4.4941020829928245e-05,
|
| 787 |
+
"loss": 1.0236713886260986,
|
| 788 |
+
"mean_token_accuracy": 0.697633869946003,
|
| 789 |
+
"num_tokens": 7569978.0,
|
| 790 |
+
"step": 78
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"entropy": 0.9967087134718895,
|
| 794 |
+
"epoch": 0.7651331719128329,
|
| 795 |
+
"grad_norm": 0.15426741540431976,
|
| 796 |
+
"learning_rate": 4.477986714269972e-05,
|
| 797 |
+
"loss": 0.9990708231925964,
|
| 798 |
+
"mean_token_accuracy": 0.7013676688075066,
|
| 799 |
+
"num_tokens": 7668053.0,
|
| 800 |
+
"step": 79
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"entropy": 0.9936242178082466,
|
| 804 |
+
"epoch": 0.774818401937046,
|
| 805 |
+
"grad_norm": 0.15127019584178925,
|
| 806 |
+
"learning_rate": 4.4616485350658685e-05,
|
| 807 |
+
"loss": 0.992855429649353,
|
| 808 |
+
"mean_token_accuracy": 0.7030186578631401,
|
| 809 |
+
"num_tokens": 7764243.0,
|
| 810 |
+
"step": 80
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"entropy": 1.0158754512667656,
|
| 814 |
+
"epoch": 0.784503631961259,
|
| 815 |
+
"grad_norm": 0.1566711664199829,
|
| 816 |
+
"learning_rate": 4.445089385796099e-05,
|
| 817 |
+
"loss": 1.0183484554290771,
|
| 818 |
+
"mean_token_accuracy": 0.6949350982904434,
|
| 819 |
+
"num_tokens": 7860199.0,
|
| 820 |
+
"step": 81
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"entropy": 1.035573497414589,
|
| 824 |
+
"epoch": 0.7941888619854721,
|
| 825 |
+
"grad_norm": 0.15846672654151917,
|
| 826 |
+
"learning_rate": 4.4283111317674374e-05,
|
| 827 |
+
"loss": 1.0358930826187134,
|
| 828 |
+
"mean_token_accuracy": 0.6919568032026291,
|
| 829 |
+
"num_tokens": 7956920.0,
|
| 830 |
+
"step": 82
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"entropy": 1.0298198834061623,
|
| 834 |
+
"epoch": 0.8038740920096852,
|
| 835 |
+
"grad_norm": 0.1551441252231598,
|
| 836 |
+
"learning_rate": 4.4113156629677316e-05,
|
| 837 |
+
"loss": 1.02339768409729,
|
| 838 |
+
"mean_token_accuracy": 0.6937244087457657,
|
| 839 |
+
"num_tokens": 8053766.0,
|
| 840 |
+
"step": 83
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"entropy": 1.0543159544467926,
|
| 844 |
+
"epoch": 0.8135593220338984,
|
| 845 |
+
"grad_norm": 0.15082016587257385,
|
| 846 |
+
"learning_rate": 4.394104893853007e-05,
|
| 847 |
+
"loss": 1.0417697429656982,
|
| 848 |
+
"mean_token_accuracy": 0.6908006444573402,
|
| 849 |
+
"num_tokens": 8151263.0,
|
| 850 |
+
"step": 84
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"entropy": 0.9868235737085342,
|
| 854 |
+
"epoch": 0.8232445520581114,
|
| 855 |
+
"grad_norm": 0.15088169276714325,
|
| 856 |
+
"learning_rate": 4.3766807631318106e-05,
|
| 857 |
+
"loss": 0.9730858206748962,
|
| 858 |
+
"mean_token_accuracy": 0.7068010121583939,
|
| 859 |
+
"num_tokens": 8249031.0,
|
| 860 |
+
"step": 85
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"entropy": 1.0439471304416656,
|
| 864 |
+
"epoch": 0.8329297820823245,
|
| 865 |
+
"grad_norm": 0.15690501034259796,
|
| 866 |
+
"learning_rate": 4.359045233546827e-05,
|
| 867 |
+
"loss": 1.033866286277771,
|
| 868 |
+
"mean_token_accuracy": 0.6926037818193436,
|
| 869 |
+
"num_tokens": 8345911.0,
|
| 870 |
+
"step": 86
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"entropy": 1.0188320130109787,
|
| 874 |
+
"epoch": 0.8426150121065376,
|
| 875 |
+
"grad_norm": 0.16062293946743011,
|
| 876 |
+
"learning_rate": 4.341200291653781e-05,
|
| 877 |
+
"loss": 1.0072400569915771,
|
| 878 |
+
"mean_token_accuracy": 0.7004816979169846,
|
| 879 |
+
"num_tokens": 8440245.0,
|
| 880 |
+
"step": 87
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"entropy": 1.0310387164354324,
|
| 884 |
+
"epoch": 0.8523002421307506,
|
| 885 |
+
"grad_norm": 0.15309439599514008,
|
| 886 |
+
"learning_rate": 4.323147947597666e-05,
|
| 887 |
+
"loss": 1.0136595964431763,
|
| 888 |
+
"mean_token_accuracy": 0.6977442428469658,
|
| 889 |
+
"num_tokens": 8537604.0,
|
| 890 |
+
"step": 88
|
| 891 |
+
},
|
| 892 |
+
{
|
| 893 |
+
"entropy": 1.0147035270929337,
|
| 894 |
+
"epoch": 0.8619854721549637,
|
| 895 |
+
"grad_norm": 0.16039453446865082,
|
| 896 |
+
"learning_rate": 4.3048902348863116e-05,
|
| 897 |
+
"loss": 1.0053828954696655,
|
| 898 |
+
"mean_token_accuracy": 0.6996104419231415,
|
| 899 |
+
"num_tokens": 8634832.0,
|
| 900 |
+
"step": 89
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"entropy": 1.009638950228691,
|
| 904 |
+
"epoch": 0.8716707021791767,
|
| 905 |
+
"grad_norm": 0.15286219120025635,
|
| 906 |
+
"learning_rate": 4.2864292101613136e-05,
|
| 907 |
+
"loss": 1.012491226196289,
|
| 908 |
+
"mean_token_accuracy": 0.6957853958010674,
|
| 909 |
+
"num_tokens": 8732321.0,
|
| 910 |
+
"step": 90
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"entropy": 1.0169770643115044,
|
| 914 |
+
"epoch": 0.8813559322033898,
|
| 915 |
+
"grad_norm": 0.16297462582588196,
|
| 916 |
+
"learning_rate": 4.267766952966369e-05,
|
| 917 |
+
"loss": 1.0225484371185303,
|
| 918 |
+
"mean_token_accuracy": 0.6936622560024261,
|
| 919 |
+
"num_tokens": 8830140.0,
|
| 920 |
+
"step": 91
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"entropy": 0.9886957630515099,
|
| 924 |
+
"epoch": 0.8910411622276029,
|
| 925 |
+
"grad_norm": 0.18117401003837585,
|
| 926 |
+
"learning_rate": 4.248905565513023e-05,
|
| 927 |
+
"loss": 0.9961055517196655,
|
| 928 |
+
"mean_token_accuracy": 0.699328251183033,
|
| 929 |
+
"num_tokens": 8926792.0,
|
| 930 |
+
"step": 92
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"entropy": 1.026213452219963,
|
| 934 |
+
"epoch": 0.9007263922518159,
|
| 935 |
+
"grad_norm": 0.15571565926074982,
|
| 936 |
+
"learning_rate": 4.229847172443866e-05,
|
| 937 |
+
"loss": 1.0185178518295288,
|
| 938 |
+
"mean_token_accuracy": 0.6954792588949203,
|
| 939 |
+
"num_tokens": 9024094.0,
|
| 940 |
+
"step": 93
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"entropy": 0.9805751740932465,
|
| 944 |
+
"epoch": 0.910411622276029,
|
| 945 |
+
"grad_norm": 0.1524103581905365,
|
| 946 |
+
"learning_rate": 4.210593920593201e-05,
|
| 947 |
+
"loss": 0.9706284999847412,
|
| 948 |
+
"mean_token_accuracy": 0.7079346030950546,
|
| 949 |
+
"num_tokens": 9120978.0,
|
| 950 |
+
"step": 94
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"entropy": 1.0263385400176048,
|
| 954 |
+
"epoch": 0.9200968523002422,
|
| 955 |
+
"grad_norm": 0.1659349501132965,
|
| 956 |
+
"learning_rate": 4.191147978745218e-05,
|
| 957 |
+
"loss": 1.010141134262085,
|
| 958 |
+
"mean_token_accuracy": 0.6972236707806587,
|
| 959 |
+
"num_tokens": 9217940.0,
|
| 960 |
+
"step": 95
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"entropy": 0.9710419476032257,
|
| 964 |
+
"epoch": 0.9297820823244553,
|
| 965 |
+
"grad_norm": 0.14841604232788086,
|
| 966 |
+
"learning_rate": 4.171511537389684e-05,
|
| 967 |
+
"loss": 0.9553003311157227,
|
| 968 |
+
"mean_token_accuracy": 0.7146916389465332,
|
| 969 |
+
"num_tokens": 9315038.0,
|
| 970 |
+
"step": 96
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"entropy": 1.0402830019593239,
|
| 974 |
+
"epoch": 0.9394673123486683,
|
| 975 |
+
"grad_norm": 0.1693028062582016,
|
| 976 |
+
"learning_rate": 4.151686808475204e-05,
|
| 977 |
+
"loss": 1.022579312324524,
|
| 978 |
+
"mean_token_accuracy": 0.6941675096750259,
|
| 979 |
+
"num_tokens": 9411796.0,
|
| 980 |
+
"step": 97
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"entropy": 0.9890827238559723,
|
| 984 |
+
"epoch": 0.9491525423728814,
|
| 985 |
+
"grad_norm": 0.15846097469329834,
|
| 986 |
+
"learning_rate": 4.131676025160047e-05,
|
| 987 |
+
"loss": 0.9882045984268188,
|
| 988 |
+
"mean_token_accuracy": 0.7028019949793816,
|
| 989 |
+
"num_tokens": 9508011.0,
|
| 990 |
+
"step": 98
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"entropy": 0.964131772518158,
|
| 994 |
+
"epoch": 0.9588377723970944,
|
| 995 |
+
"grad_norm": 0.1603643000125885,
|
| 996 |
+
"learning_rate": 4.111481441560598e-05,
|
| 997 |
+
"loss": 0.9728220701217651,
|
| 998 |
+
"mean_token_accuracy": 0.7061599791049957,
|
| 999 |
+
"num_tokens": 9605557.0,
|
| 1000 |
+
"step": 99
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"entropy": 1.0129969343543053,
|
| 1004 |
+
"epoch": 0.9685230024213075,
|
| 1005 |
+
"grad_norm": 0.1754368096590042,
|
| 1006 |
+
"learning_rate": 4.091105332497439e-05,
|
| 1007 |
+
"loss": 1.0291517972946167,
|
| 1008 |
+
"mean_token_accuracy": 0.6916319876909256,
|
| 1009 |
+
"num_tokens": 9703059.0,
|
| 1010 |
+
"step": 100
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"entropy": 1.0249989926815033,
|
| 1014 |
+
"epoch": 0.9782082324455206,
|
| 1015 |
+
"grad_norm": 0.16457504034042358,
|
| 1016 |
+
"learning_rate": 4.070549993239106e-05,
|
| 1017 |
+
"loss": 1.0286558866500854,
|
| 1018 |
+
"mean_token_accuracy": 0.6931352093815804,
|
| 1019 |
+
"num_tokens": 9800187.0,
|
| 1020 |
+
"step": 101
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"entropy": 1.0157797187566757,
|
| 1024 |
+
"epoch": 0.9878934624697336,
|
| 1025 |
+
"grad_norm": 0.1640177220106125,
|
| 1026 |
+
"learning_rate": 4.049817739243532e-05,
|
| 1027 |
+
"loss": 1.001893162727356,
|
| 1028 |
+
"mean_token_accuracy": 0.6987328082323074,
|
| 1029 |
+
"num_tokens": 9897311.0,
|
| 1030 |
+
"step": 102
|
| 1031 |
+
},
|
| 1032 |
+
{
|
| 1033 |
+
"entropy": 1.0060301199555397,
|
| 1034 |
+
"epoch": 0.9975786924939467,
|
| 1035 |
+
"grad_norm": 0.15887762606143951,
|
| 1036 |
+
"learning_rate": 4.028910905897229e-05,
|
| 1037 |
+
"loss": 0.9999165534973145,
|
| 1038 |
+
"mean_token_accuracy": 0.7007258981466293,
|
| 1039 |
+
"num_tokens": 9994136.0,
|
| 1040 |
+
"step": 103
|
| 1041 |
+
},
|
| 1042 |
+
{
|
| 1043 |
+
"entropy": 1.057703673839569,
|
| 1044 |
+
"epoch": 1.0,
|
| 1045 |
+
"grad_norm": 0.2889890670776367,
|
| 1046 |
+
"learning_rate": 4.007831848252211e-05,
|
| 1047 |
+
"loss": 1.043251395225525,
|
| 1048 |
+
"mean_token_accuracy": 0.6889578104019165,
|
| 1049 |
+
"num_tokens": 10018679.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.4092583161015828e+18,
|
| 1071 |
+
"train_batch_size": 1,
|
| 1072 |
+
"trial_name": null,
|
| 1073 |
+
"trial_params": null
|
| 1074 |
+
}
|