Instructions to use Taywon/A2plus_v4_e1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Taywon/A2plus_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/A2plus_v4_e1") - Transformers
How to use Taywon/A2plus_v4_e1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Taywon/A2plus_v4_e1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Taywon/A2plus_v4_e1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Taywon/A2plus_v4_e1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Taywon/A2plus_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/A2plus_v4_e1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Taywon/A2plus_v4_e1
- SGLang
How to use Taywon/A2plus_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/A2plus_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/A2plus_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/A2plus_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/A2plus_v4_e1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Taywon/A2plus_v4_e1 with Docker Model Runner:
docker model run hf.co/Taywon/A2plus_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 +814 -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 |
+
"o_proj",
|
| 34 |
+
"gate_proj",
|
| 35 |
+
"up_proj",
|
| 36 |
+
"k_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"down_proj",
|
| 39 |
+
"v_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:808f4c18463fcf289ddf1228c32c681c1220655f84e60ba6250a36ab23183d8d
|
| 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,814 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": 78,
|
| 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.3164514303207397,
|
| 14 |
+
"epoch": 0.012861736334405145,
|
| 15 |
+
"grad_norm": 1.3205718994140625,
|
| 16 |
+
"learning_rate": 0.0,
|
| 17 |
+
"loss": 2.108562469482422,
|
| 18 |
+
"mean_token_accuracy": 0.5302465185523033,
|
| 19 |
+
"num_tokens": 125343.0,
|
| 20 |
+
"step": 1
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 1.3486243188381195,
|
| 24 |
+
"epoch": 0.02572347266881029,
|
| 25 |
+
"grad_norm": 1.291916847229004,
|
| 26 |
+
"learning_rate": 4.166666666666667e-06,
|
| 27 |
+
"loss": 2.126715898513794,
|
| 28 |
+
"mean_token_accuracy": 0.5257277637720108,
|
| 29 |
+
"num_tokens": 254461.0,
|
| 30 |
+
"step": 2
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 1.3619738817214966,
|
| 34 |
+
"epoch": 0.03858520900321544,
|
| 35 |
+
"grad_norm": 1.2188917398452759,
|
| 36 |
+
"learning_rate": 8.333333333333334e-06,
|
| 37 |
+
"loss": 2.027977705001831,
|
| 38 |
+
"mean_token_accuracy": 0.53680220246315,
|
| 39 |
+
"num_tokens": 384058.0,
|
| 40 |
+
"step": 3
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 1.4663979560136795,
|
| 44 |
+
"epoch": 0.05144694533762058,
|
| 45 |
+
"grad_norm": 0.9349287152290344,
|
| 46 |
+
"learning_rate": 1.25e-05,
|
| 47 |
+
"loss": 1.9901375770568848,
|
| 48 |
+
"mean_token_accuracy": 0.5396364852786064,
|
| 49 |
+
"num_tokens": 512679.0,
|
| 50 |
+
"step": 4
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.6146472543478012,
|
| 54 |
+
"epoch": 0.06430868167202572,
|
| 55 |
+
"grad_norm": 0.6370308995246887,
|
| 56 |
+
"learning_rate": 1.6666666666666667e-05,
|
| 57 |
+
"loss": 1.9074194431304932,
|
| 58 |
+
"mean_token_accuracy": 0.5429708510637283,
|
| 59 |
+
"num_tokens": 642851.0,
|
| 60 |
+
"step": 5
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 1.7623443454504013,
|
| 64 |
+
"epoch": 0.07717041800643087,
|
| 65 |
+
"grad_norm": 0.41252008080482483,
|
| 66 |
+
"learning_rate": 2.0833333333333336e-05,
|
| 67 |
+
"loss": 1.815047264099121,
|
| 68 |
+
"mean_token_accuracy": 0.557150200009346,
|
| 69 |
+
"num_tokens": 771427.0,
|
| 70 |
+
"step": 6
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 1.9809899777173996,
|
| 74 |
+
"epoch": 0.09003215434083602,
|
| 75 |
+
"grad_norm": 0.5013964772224426,
|
| 76 |
+
"learning_rate": 2.5e-05,
|
| 77 |
+
"loss": 1.824620246887207,
|
| 78 |
+
"mean_token_accuracy": 0.5521566867828369,
|
| 79 |
+
"num_tokens": 900229.0,
|
| 80 |
+
"step": 7
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 2.035237669944763,
|
| 84 |
+
"epoch": 0.10289389067524116,
|
| 85 |
+
"grad_norm": 0.5846648812294006,
|
| 86 |
+
"learning_rate": 2.916666666666667e-05,
|
| 87 |
+
"loss": 1.767448902130127,
|
| 88 |
+
"mean_token_accuracy": 0.5620294511318207,
|
| 89 |
+
"num_tokens": 1028916.0,
|
| 90 |
+
"step": 8
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 1.9594171047210693,
|
| 94 |
+
"epoch": 0.1157556270096463,
|
| 95 |
+
"grad_norm": 0.5288171172142029,
|
| 96 |
+
"learning_rate": 3.3333333333333335e-05,
|
| 97 |
+
"loss": 1.7006888389587402,
|
| 98 |
+
"mean_token_accuracy": 0.5697884187102318,
|
| 99 |
+
"num_tokens": 1157441.0,
|
| 100 |
+
"step": 9
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 1.7999890595674515,
|
| 104 |
+
"epoch": 0.12861736334405144,
|
| 105 |
+
"grad_norm": 0.4071674346923828,
|
| 106 |
+
"learning_rate": 3.7500000000000003e-05,
|
| 107 |
+
"loss": 1.625780701637268,
|
| 108 |
+
"mean_token_accuracy": 0.5814985409379005,
|
| 109 |
+
"num_tokens": 1285378.0,
|
| 110 |
+
"step": 10
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 1.658578023314476,
|
| 114 |
+
"epoch": 0.1414790996784566,
|
| 115 |
+
"grad_norm": 0.3109852075576782,
|
| 116 |
+
"learning_rate": 4.166666666666667e-05,
|
| 117 |
+
"loss": 1.5975825786590576,
|
| 118 |
+
"mean_token_accuracy": 0.5808091089129448,
|
| 119 |
+
"num_tokens": 1413453.0,
|
| 120 |
+
"step": 11
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 1.4805417656898499,
|
| 124 |
+
"epoch": 0.15434083601286175,
|
| 125 |
+
"grad_norm": 0.2870834469795227,
|
| 126 |
+
"learning_rate": 4.5833333333333334e-05,
|
| 127 |
+
"loss": 1.518122673034668,
|
| 128 |
+
"mean_token_accuracy": 0.5996171087026596,
|
| 129 |
+
"num_tokens": 1542982.0,
|
| 130 |
+
"step": 12
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 1.3833045214414597,
|
| 134 |
+
"epoch": 0.16720257234726688,
|
| 135 |
+
"grad_norm": 0.27810704708099365,
|
| 136 |
+
"learning_rate": 5e-05,
|
| 137 |
+
"loss": 1.4639174938201904,
|
| 138 |
+
"mean_token_accuracy": 0.6109028086066246,
|
| 139 |
+
"num_tokens": 1672219.0,
|
| 140 |
+
"step": 13
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 1.3444313406944275,
|
| 144 |
+
"epoch": 0.18006430868167203,
|
| 145 |
+
"grad_norm": 0.2850067615509033,
|
| 146 |
+
"learning_rate": 4.9997496794168726e-05,
|
| 147 |
+
"loss": 1.4495856761932373,
|
| 148 |
+
"mean_token_accuracy": 0.6085417345166206,
|
| 149 |
+
"num_tokens": 1801169.0,
|
| 150 |
+
"step": 14
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 1.3875805139541626,
|
| 154 |
+
"epoch": 0.19292604501607716,
|
| 155 |
+
"grad_norm": 0.22854836285114288,
|
| 156 |
+
"learning_rate": 4.998998767795805e-05,
|
| 157 |
+
"loss": 1.4494396448135376,
|
| 158 |
+
"mean_token_accuracy": 0.6096145436167717,
|
| 159 |
+
"num_tokens": 1929597.0,
|
| 160 |
+
"step": 15
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 1.4042701870203018,
|
| 164 |
+
"epoch": 0.2057877813504823,
|
| 165 |
+
"grad_norm": 0.25544342398643494,
|
| 166 |
+
"learning_rate": 4.9977474155117045e-05,
|
| 167 |
+
"loss": 1.4276520013809204,
|
| 168 |
+
"mean_token_accuracy": 0.6092700362205505,
|
| 169 |
+
"num_tokens": 2058901.0,
|
| 170 |
+
"step": 16
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 1.3920131623744965,
|
| 174 |
+
"epoch": 0.21864951768488747,
|
| 175 |
+
"grad_norm": 0.2532227039337158,
|
| 176 |
+
"learning_rate": 4.995995873155958e-05,
|
| 177 |
+
"loss": 1.372622013092041,
|
| 178 |
+
"mean_token_accuracy": 0.6218594387173653,
|
| 179 |
+
"num_tokens": 2188340.0,
|
| 180 |
+
"step": 17
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 1.4117262363433838,
|
| 184 |
+
"epoch": 0.2315112540192926,
|
| 185 |
+
"grad_norm": 0.23465679585933685,
|
| 186 |
+
"learning_rate": 4.99374449148625e-05,
|
| 187 |
+
"loss": 1.3505568504333496,
|
| 188 |
+
"mean_token_accuracy": 0.6291927620768547,
|
| 189 |
+
"num_tokens": 2317737.0,
|
| 190 |
+
"step": 18
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 1.39142644405365,
|
| 194 |
+
"epoch": 0.24437299035369775,
|
| 195 |
+
"grad_norm": 0.1970938742160797,
|
| 196 |
+
"learning_rate": 4.9909937213563165e-05,
|
| 197 |
+
"loss": 1.3315509557724,
|
| 198 |
+
"mean_token_accuracy": 0.6313857734203339,
|
| 199 |
+
"num_tokens": 2447871.0,
|
| 200 |
+
"step": 19
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 1.396314412355423,
|
| 204 |
+
"epoch": 0.2572347266881029,
|
| 205 |
+
"grad_norm": 0.19241943955421448,
|
| 206 |
+
"learning_rate": 4.987744113625665e-05,
|
| 207 |
+
"loss": 1.3494808673858643,
|
| 208 |
+
"mean_token_accuracy": 0.6292985901236534,
|
| 209 |
+
"num_tokens": 2575540.0,
|
| 210 |
+
"step": 20
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 1.332438975572586,
|
| 214 |
+
"epoch": 0.27009646302250806,
|
| 215 |
+
"grad_norm": 0.19267837703227997,
|
| 216 |
+
"learning_rate": 4.9839963190492576e-05,
|
| 217 |
+
"loss": 1.293985366821289,
|
| 218 |
+
"mean_token_accuracy": 0.640266053378582,
|
| 219 |
+
"num_tokens": 2701365.0,
|
| 220 |
+
"step": 21
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 1.3236675560474396,
|
| 224 |
+
"epoch": 0.2829581993569132,
|
| 225 |
+
"grad_norm": 0.18189704418182373,
|
| 226 |
+
"learning_rate": 4.979751088147192e-05,
|
| 227 |
+
"loss": 1.2964701652526855,
|
| 228 |
+
"mean_token_accuracy": 0.6390737816691399,
|
| 229 |
+
"num_tokens": 2830897.0,
|
| 230 |
+
"step": 22
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 1.3403686434030533,
|
| 234 |
+
"epoch": 0.2958199356913183,
|
| 235 |
+
"grad_norm": 0.16925957798957825,
|
| 236 |
+
"learning_rate": 4.975009271054409e-05,
|
| 237 |
+
"loss": 1.313760757446289,
|
| 238 |
+
"mean_token_accuracy": 0.6331784650683403,
|
| 239 |
+
"num_tokens": 2960144.0,
|
| 240 |
+
"step": 23
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 1.3093593418598175,
|
| 244 |
+
"epoch": 0.3086816720257235,
|
| 245 |
+
"grad_norm": 0.17534375190734863,
|
| 246 |
+
"learning_rate": 4.969771817350445e-05,
|
| 247 |
+
"loss": 1.2865062952041626,
|
| 248 |
+
"mean_token_accuracy": 0.6429941952228546,
|
| 249 |
+
"num_tokens": 3089440.0,
|
| 250 |
+
"step": 24
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 1.2958146631717682,
|
| 254 |
+
"epoch": 0.3215434083601286,
|
| 255 |
+
"grad_norm": 0.18624980747699738,
|
| 256 |
+
"learning_rate": 4.9640397758692715e-05,
|
| 257 |
+
"loss": 1.2817679643630981,
|
| 258 |
+
"mean_token_accuracy": 0.6394432112574577,
|
| 259 |
+
"num_tokens": 3217927.0,
|
| 260 |
+
"step": 25
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 1.252070963382721,
|
| 264 |
+
"epoch": 0.33440514469453375,
|
| 265 |
+
"grad_norm": 0.16373585164546967,
|
| 266 |
+
"learning_rate": 4.957814294489261e-05,
|
| 267 |
+
"loss": 1.2472319602966309,
|
| 268 |
+
"mean_token_accuracy": 0.6489637866616249,
|
| 269 |
+
"num_tokens": 3347968.0,
|
| 270 |
+
"step": 26
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 1.239806517958641,
|
| 274 |
+
"epoch": 0.34726688102893893,
|
| 275 |
+
"grad_norm": 0.15866123139858246,
|
| 276 |
+
"learning_rate": 4.9510966199033174e-05,
|
| 277 |
+
"loss": 1.2464823722839355,
|
| 278 |
+
"mean_token_accuracy": 0.6469453647732735,
|
| 279 |
+
"num_tokens": 3476400.0,
|
| 280 |
+
"step": 27
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 1.2075979709625244,
|
| 284 |
+
"epoch": 0.36012861736334406,
|
| 285 |
+
"grad_norm": 0.15684208273887634,
|
| 286 |
+
"learning_rate": 4.943888097369216e-05,
|
| 287 |
+
"loss": 1.2147959470748901,
|
| 288 |
+
"mean_token_accuracy": 0.6535271480679512,
|
| 289 |
+
"num_tokens": 3606524.0,
|
| 290 |
+
"step": 28
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 1.2250622063875198,
|
| 294 |
+
"epoch": 0.3729903536977492,
|
| 295 |
+
"grad_norm": 0.16190986335277557,
|
| 296 |
+
"learning_rate": 4.936190170440208e-05,
|
| 297 |
+
"loss": 1.2240623235702515,
|
| 298 |
+
"mean_token_accuracy": 0.652711808681488,
|
| 299 |
+
"num_tokens": 3735020.0,
|
| 300 |
+
"step": 29
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 1.2123340517282486,
|
| 304 |
+
"epoch": 0.3858520900321543,
|
| 305 |
+
"grad_norm": 0.16800783574581146,
|
| 306 |
+
"learning_rate": 4.928004380675941e-05,
|
| 307 |
+
"loss": 1.204244613647461,
|
| 308 |
+
"mean_token_accuracy": 0.6567093506455421,
|
| 309 |
+
"num_tokens": 3865295.0,
|
| 310 |
+
"step": 30
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 1.2247880101203918,
|
| 314 |
+
"epoch": 0.3987138263665595,
|
| 315 |
+
"grad_norm": 0.14405229687690735,
|
| 316 |
+
"learning_rate": 4.9193323673337476e-05,
|
| 317 |
+
"loss": 1.1991829872131348,
|
| 318 |
+
"mean_token_accuracy": 0.6602997556328773,
|
| 319 |
+
"num_tokens": 3994821.0,
|
| 320 |
+
"step": 31
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 1.2614206820726395,
|
| 324 |
+
"epoch": 0.4115755627009646,
|
| 325 |
+
"grad_norm": 0.15460604429244995,
|
| 326 |
+
"learning_rate": 4.910175867040377e-05,
|
| 327 |
+
"loss": 1.216886043548584,
|
| 328 |
+
"mean_token_accuracy": 0.6516416072845459,
|
| 329 |
+
"num_tokens": 4124589.0,
|
| 330 |
+
"step": 32
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 1.227910652756691,
|
| 334 |
+
"epoch": 0.42443729903536975,
|
| 335 |
+
"grad_norm": 0.16159985959529877,
|
| 336 |
+
"learning_rate": 4.9005367134442235e-05,
|
| 337 |
+
"loss": 1.2033252716064453,
|
| 338 |
+
"mean_token_accuracy": 0.6573327481746674,
|
| 339 |
+
"num_tokens": 4251091.0,
|
| 340 |
+
"step": 33
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 1.2353373318910599,
|
| 344 |
+
"epoch": 0.43729903536977494,
|
| 345 |
+
"grad_norm": 0.14645665884017944,
|
| 346 |
+
"learning_rate": 4.890416836848127e-05,
|
| 347 |
+
"loss": 1.2113966941833496,
|
| 348 |
+
"mean_token_accuracy": 0.6547944620251656,
|
| 349 |
+
"num_tokens": 4381459.0,
|
| 350 |
+
"step": 34
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 1.224476620554924,
|
| 354 |
+
"epoch": 0.45016077170418006,
|
| 355 |
+
"grad_norm": 0.14515644311904907,
|
| 356 |
+
"learning_rate": 4.8798182638228166e-05,
|
| 357 |
+
"loss": 1.2142887115478516,
|
| 358 |
+
"mean_token_accuracy": 0.6527992635965347,
|
| 359 |
+
"num_tokens": 4510718.0,
|
| 360 |
+
"step": 35
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 1.1847395598888397,
|
| 364 |
+
"epoch": 0.4630225080385852,
|
| 365 |
+
"grad_norm": 0.14294442534446716,
|
| 366 |
+
"learning_rate": 4.868743116801074e-05,
|
| 367 |
+
"loss": 1.1840288639068604,
|
| 368 |
+
"mean_token_accuracy": 0.661017507314682,
|
| 369 |
+
"num_tokens": 4638887.0,
|
| 370 |
+
"step": 36
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 1.1811462491750717,
|
| 374 |
+
"epoch": 0.4758842443729904,
|
| 375 |
+
"grad_norm": 0.14014433324337006,
|
| 376 |
+
"learning_rate": 4.857193613652711e-05,
|
| 377 |
+
"loss": 1.1855542659759521,
|
| 378 |
+
"mean_token_accuracy": 0.6628495678305626,
|
| 379 |
+
"num_tokens": 4768654.0,
|
| 380 |
+
"step": 37
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 1.1724539399147034,
|
| 384 |
+
"epoch": 0.4887459807073955,
|
| 385 |
+
"grad_norm": 0.13748519122600555,
|
| 386 |
+
"learning_rate": 4.845172067240415e-05,
|
| 387 |
+
"loss": 1.1737499237060547,
|
| 388 |
+
"mean_token_accuracy": 0.6616369336843491,
|
| 389 |
+
"num_tokens": 4897218.0,
|
| 390 |
+
"step": 38
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 1.1392606794834137,
|
| 394 |
+
"epoch": 0.5016077170418006,
|
| 395 |
+
"grad_norm": 0.13618677854537964,
|
| 396 |
+
"learning_rate": 4.8326808849565936e-05,
|
| 397 |
+
"loss": 1.1376512050628662,
|
| 398 |
+
"mean_token_accuracy": 0.6733426377177238,
|
| 399 |
+
"num_tokens": 5025378.0,
|
| 400 |
+
"step": 39
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 1.1519914269447327,
|
| 404 |
+
"epoch": 0.5144694533762058,
|
| 405 |
+
"grad_norm": 0.3906066119670868,
|
| 406 |
+
"learning_rate": 4.819722568241274e-05,
|
| 407 |
+
"loss": 1.143772840499878,
|
| 408 |
+
"mean_token_accuracy": 0.6695929691195488,
|
| 409 |
+
"num_tokens": 5155612.0,
|
| 410 |
+
"step": 40
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 1.1371284574270248,
|
| 414 |
+
"epoch": 0.5273311897106109,
|
| 415 |
+
"grad_norm": 0.13867925107479095,
|
| 416 |
+
"learning_rate": 4.806299712081172e-05,
|
| 417 |
+
"loss": 1.1251044273376465,
|
| 418 |
+
"mean_token_accuracy": 0.6758962124586105,
|
| 419 |
+
"num_tokens": 5284700.0,
|
| 420 |
+
"step": 41
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 1.137900173664093,
|
| 424 |
+
"epoch": 0.5401929260450161,
|
| 425 |
+
"grad_norm": 0.1261901706457138,
|
| 426 |
+
"learning_rate": 4.792415004490034e-05,
|
| 427 |
+
"loss": 1.1260221004486084,
|
| 428 |
+
"mean_token_accuracy": 0.6749331429600716,
|
| 429 |
+
"num_tokens": 5414507.0,
|
| 430 |
+
"step": 42
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 1.1564348489046097,
|
| 434 |
+
"epoch": 0.5530546623794212,
|
| 435 |
+
"grad_norm": 0.13415029644966125,
|
| 436 |
+
"learning_rate": 4.77807122597034e-05,
|
| 437 |
+
"loss": 1.1496460437774658,
|
| 438 |
+
"mean_token_accuracy": 0.6670970395207405,
|
| 439 |
+
"num_tokens": 5542542.0,
|
| 440 |
+
"step": 43
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 1.1538237184286118,
|
| 444 |
+
"epoch": 0.5659163987138264,
|
| 445 |
+
"grad_norm": 0.13376805186271667,
|
| 446 |
+
"learning_rate": 4.7632712489564926e-05,
|
| 447 |
+
"loss": 1.142371416091919,
|
| 448 |
+
"mean_token_accuracy": 0.6690651848912239,
|
| 449 |
+
"num_tokens": 5672067.0,
|
| 450 |
+
"step": 44
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 1.1469541490077972,
|
| 454 |
+
"epoch": 0.5787781350482315,
|
| 455 |
+
"grad_norm": 0.1293802261352539,
|
| 456 |
+
"learning_rate": 4.748018037239592e-05,
|
| 457 |
+
"loss": 1.1333601474761963,
|
| 458 |
+
"mean_token_accuracy": 0.6723547354340553,
|
| 459 |
+
"num_tokens": 5800609.0,
|
| 460 |
+
"step": 45
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 1.1472823396325111,
|
| 464 |
+
"epoch": 0.5916398713826366,
|
| 465 |
+
"grad_norm": 0.13228115439414978,
|
| 466 |
+
"learning_rate": 4.732314645373921e-05,
|
| 467 |
+
"loss": 1.1329843997955322,
|
| 468 |
+
"mean_token_accuracy": 0.6703030541539192,
|
| 469 |
+
"num_tokens": 5930479.0,
|
| 470 |
+
"step": 46
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 1.1718984246253967,
|
| 474 |
+
"epoch": 0.6045016077170418,
|
| 475 |
+
"grad_norm": 0.13948604464530945,
|
| 476 |
+
"learning_rate": 4.7161642180652464e-05,
|
| 477 |
+
"loss": 1.1499552726745605,
|
| 478 |
+
"mean_token_accuracy": 0.6675512716174126,
|
| 479 |
+
"num_tokens": 6059629.0,
|
| 480 |
+
"step": 47
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 1.1396477073431015,
|
| 484 |
+
"epoch": 0.617363344051447,
|
| 485 |
+
"grad_norm": 0.1955496221780777,
|
| 486 |
+
"learning_rate": 4.699569989541074e-05,
|
| 487 |
+
"loss": 1.1260184049606323,
|
| 488 |
+
"mean_token_accuracy": 0.6692441701889038,
|
| 489 |
+
"num_tokens": 6188823.0,
|
| 490 |
+
"step": 48
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 1.1151351928710938,
|
| 494 |
+
"epoch": 0.6302250803858521,
|
| 495 |
+
"grad_norm": 0.12929458916187286,
|
| 496 |
+
"learning_rate": 4.6825352829029705e-05,
|
| 497 |
+
"loss": 1.113462209701538,
|
| 498 |
+
"mean_token_accuracy": 0.6757279857993126,
|
| 499 |
+
"num_tokens": 6318206.0,
|
| 500 |
+
"step": 49
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 1.1347133666276932,
|
| 504 |
+
"epoch": 0.6430868167202572,
|
| 505 |
+
"grad_norm": 0.13723939657211304,
|
| 506 |
+
"learning_rate": 4.665063509461097e-05,
|
| 507 |
+
"loss": 1.1344139575958252,
|
| 508 |
+
"mean_token_accuracy": 0.6683605685830116,
|
| 509 |
+
"num_tokens": 6447361.0,
|
| 510 |
+
"step": 50
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"entropy": 1.1195298731327057,
|
| 514 |
+
"epoch": 0.6559485530546624,
|
| 515 |
+
"grad_norm": 0.13720719516277313,
|
| 516 |
+
"learning_rate": 4.647158168051066e-05,
|
| 517 |
+
"loss": 1.1230884790420532,
|
| 518 |
+
"mean_token_accuracy": 0.6711617782711983,
|
| 519 |
+
"num_tokens": 6575145.0,
|
| 520 |
+
"step": 51
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 1.1320514380931854,
|
| 524 |
+
"epoch": 0.6688102893890675,
|
| 525 |
+
"grad_norm": 0.13503903150558472,
|
| 526 |
+
"learning_rate": 4.628822844333278e-05,
|
| 527 |
+
"loss": 1.1332721710205078,
|
| 528 |
+
"mean_token_accuracy": 0.6704861670732498,
|
| 529 |
+
"num_tokens": 6704707.0,
|
| 530 |
+
"step": 52
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 1.089632272720337,
|
| 534 |
+
"epoch": 0.6816720257234726,
|
| 535 |
+
"grad_norm": 0.13158641755580902,
|
| 536 |
+
"learning_rate": 4.6100612100748765e-05,
|
| 537 |
+
"loss": 1.0860098600387573,
|
| 538 |
+
"mean_token_accuracy": 0.6809655949473381,
|
| 539 |
+
"num_tokens": 6833251.0,
|
| 540 |
+
"step": 53
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 1.0989741384983063,
|
| 544 |
+
"epoch": 0.6945337620578779,
|
| 545 |
+
"grad_norm": 0.1341676563024521,
|
| 546 |
+
"learning_rate": 4.59087702241444e-05,
|
| 547 |
+
"loss": 1.0967470407485962,
|
| 548 |
+
"mean_token_accuracy": 0.6795956119894981,
|
| 549 |
+
"num_tokens": 6962347.0,
|
| 550 |
+
"step": 54
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 1.1306142508983612,
|
| 554 |
+
"epoch": 0.707395498392283,
|
| 555 |
+
"grad_norm": 0.13467787206172943,
|
| 556 |
+
"learning_rate": 4.571274123109606e-05,
|
| 557 |
+
"loss": 1.1218006610870361,
|
| 558 |
+
"mean_token_accuracy": 0.671770267188549,
|
| 559 |
+
"num_tokens": 7092228.0,
|
| 560 |
+
"step": 55
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"entropy": 1.1027807146310806,
|
| 564 |
+
"epoch": 0.7202572347266881,
|
| 565 |
+
"grad_norm": 0.13593968749046326,
|
| 566 |
+
"learning_rate": 4.551256437767719e-05,
|
| 567 |
+
"loss": 1.095794439315796,
|
| 568 |
+
"mean_token_accuracy": 0.6783477663993835,
|
| 569 |
+
"num_tokens": 7221530.0,
|
| 570 |
+
"step": 56
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"entropy": 1.107944592833519,
|
| 574 |
+
"epoch": 0.7331189710610932,
|
| 575 |
+
"grad_norm": 0.1346762329339981,
|
| 576 |
+
"learning_rate": 4.530827975059715e-05,
|
| 577 |
+
"loss": 1.1026043891906738,
|
| 578 |
+
"mean_token_accuracy": 0.678081251680851,
|
| 579 |
+
"num_tokens": 7351093.0,
|
| 580 |
+
"step": 57
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"entropy": 1.0734399557113647,
|
| 584 |
+
"epoch": 0.7459807073954984,
|
| 585 |
+
"grad_norm": 0.13501109182834625,
|
| 586 |
+
"learning_rate": 4.5099928259173516e-05,
|
| 587 |
+
"loss": 1.0623465776443481,
|
| 588 |
+
"mean_token_accuracy": 0.6868591457605362,
|
| 589 |
+
"num_tokens": 7480072.0,
|
| 590 |
+
"step": 58
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"entropy": 1.1313968002796173,
|
| 594 |
+
"epoch": 0.7588424437299035,
|
| 595 |
+
"grad_norm": 0.13890723884105682,
|
| 596 |
+
"learning_rate": 4.488755162713975e-05,
|
| 597 |
+
"loss": 1.1160048246383667,
|
| 598 |
+
"mean_token_accuracy": 0.6727871224284172,
|
| 599 |
+
"num_tokens": 7609332.0,
|
| 600 |
+
"step": 59
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"entropy": 1.095849946141243,
|
| 604 |
+
"epoch": 0.7717041800643086,
|
| 605 |
+
"grad_norm": 0.13449780642986298,
|
| 606 |
+
"learning_rate": 4.467119238428975e-05,
|
| 607 |
+
"loss": 1.0761332511901855,
|
| 608 |
+
"mean_token_accuracy": 0.6832353696227074,
|
| 609 |
+
"num_tokens": 7738055.0,
|
| 610 |
+
"step": 60
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"entropy": 1.1199684739112854,
|
| 614 |
+
"epoch": 0.7845659163987139,
|
| 615 |
+
"grad_norm": 0.1393275260925293,
|
| 616 |
+
"learning_rate": 4.445089385796099e-05,
|
| 617 |
+
"loss": 1.103759527206421,
|
| 618 |
+
"mean_token_accuracy": 0.6751135662198067,
|
| 619 |
+
"num_tokens": 7866931.0,
|
| 620 |
+
"step": 61
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 1.1070469170808792,
|
| 624 |
+
"epoch": 0.797427652733119,
|
| 625 |
+
"grad_norm": 0.1381961554288864,
|
| 626 |
+
"learning_rate": 4.422670016435792e-05,
|
| 627 |
+
"loss": 1.0982931852340698,
|
| 628 |
+
"mean_token_accuracy": 0.6770086959004402,
|
| 629 |
+
"num_tokens": 7996176.0,
|
| 630 |
+
"step": 62
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 1.094884604215622,
|
| 634 |
+
"epoch": 0.8102893890675241,
|
| 635 |
+
"grad_norm": 0.13925445079803467,
|
| 636 |
+
"learning_rate": 4.3998656199717435e-05,
|
| 637 |
+
"loss": 1.0968135595321655,
|
| 638 |
+
"mean_token_accuracy": 0.6778521537780762,
|
| 639 |
+
"num_tokens": 8122564.0,
|
| 640 |
+
"step": 63
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 1.1247451156377792,
|
| 644 |
+
"epoch": 0.8231511254019293,
|
| 645 |
+
"grad_norm": 0.1368095874786377,
|
| 646 |
+
"learning_rate": 4.3766807631318106e-05,
|
| 647 |
+
"loss": 1.1230825185775757,
|
| 648 |
+
"mean_token_accuracy": 0.6699690893292427,
|
| 649 |
+
"num_tokens": 8248931.0,
|
| 650 |
+
"step": 64
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 1.1110749542713165,
|
| 654 |
+
"epoch": 0.8360128617363344,
|
| 655 |
+
"grad_norm": 0.1357615739107132,
|
| 656 |
+
"learning_rate": 4.353120088833501e-05,
|
| 657 |
+
"loss": 1.1095378398895264,
|
| 658 |
+
"mean_token_accuracy": 0.674089215695858,
|
| 659 |
+
"num_tokens": 8377505.0,
|
| 660 |
+
"step": 65
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 1.0629576370120049,
|
| 664 |
+
"epoch": 0.8488745980707395,
|
| 665 |
+
"grad_norm": 0.13470520079135895,
|
| 666 |
+
"learning_rate": 4.329188315254196e-05,
|
| 667 |
+
"loss": 1.0582916736602783,
|
| 668 |
+
"mean_token_accuracy": 0.6866432577371597,
|
| 669 |
+
"num_tokens": 8506057.0,
|
| 670 |
+
"step": 66
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 1.093516543507576,
|
| 674 |
+
"epoch": 0.8617363344051447,
|
| 675 |
+
"grad_norm": 0.13414740562438965,
|
| 676 |
+
"learning_rate": 4.3048902348863116e-05,
|
| 677 |
+
"loss": 1.0902202129364014,
|
| 678 |
+
"mean_token_accuracy": 0.6787593588232994,
|
| 679 |
+
"num_tokens": 8634840.0,
|
| 680 |
+
"step": 67
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 1.1101883202791214,
|
| 684 |
+
"epoch": 0.8745980707395499,
|
| 685 |
+
"grad_norm": 0.15326927602291107,
|
| 686 |
+
"learning_rate": 4.280230713577564e-05,
|
| 687 |
+
"loss": 1.1111077070236206,
|
| 688 |
+
"mean_token_accuracy": 0.6747671589255333,
|
| 689 |
+
"num_tokens": 8764641.0,
|
| 690 |
+
"step": 68
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 1.1037775576114655,
|
| 694 |
+
"epoch": 0.887459807073955,
|
| 695 |
+
"grad_norm": 0.13019205629825592,
|
| 696 |
+
"learning_rate": 4.255214689556557e-05,
|
| 697 |
+
"loss": 1.0991560220718384,
|
| 698 |
+
"mean_token_accuracy": 0.6750917881727219,
|
| 699 |
+
"num_tokens": 8894121.0,
|
| 700 |
+
"step": 69
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 1.0799639970064163,
|
| 704 |
+
"epoch": 0.9003215434083601,
|
| 705 |
+
"grad_norm": 0.13600145280361176,
|
| 706 |
+
"learning_rate": 4.229847172443866e-05,
|
| 707 |
+
"loss": 1.0659914016723633,
|
| 708 |
+
"mean_token_accuracy": 0.6862578168511391,
|
| 709 |
+
"num_tokens": 9021109.0,
|
| 710 |
+
"step": 70
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 1.0842745453119278,
|
| 714 |
+
"epoch": 0.9131832797427653,
|
| 715 |
+
"grad_norm": 0.13035736978054047,
|
| 716 |
+
"learning_rate": 4.204133242248832e-05,
|
| 717 |
+
"loss": 1.0697667598724365,
|
| 718 |
+
"mean_token_accuracy": 0.6838485077023506,
|
| 719 |
+
"num_tokens": 9150645.0,
|
| 720 |
+
"step": 71
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"entropy": 1.0927303433418274,
|
| 724 |
+
"epoch": 0.9260450160771704,
|
| 725 |
+
"grad_norm": 0.12931469082832336,
|
| 726 |
+
"learning_rate": 4.1780780483522575e-05,
|
| 727 |
+
"loss": 1.0853153467178345,
|
| 728 |
+
"mean_token_accuracy": 0.6794879287481308,
|
| 729 |
+
"num_tokens": 9279241.0,
|
| 730 |
+
"step": 72
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 1.0969749689102173,
|
| 734 |
+
"epoch": 0.9389067524115756,
|
| 735 |
+
"grad_norm": 0.14029595255851746,
|
| 736 |
+
"learning_rate": 4.151686808475204e-05,
|
| 737 |
+
"loss": 1.0877366065979004,
|
| 738 |
+
"mean_token_accuracy": 0.6796814650297165,
|
| 739 |
+
"num_tokens": 9409900.0,
|
| 740 |
+
"step": 73
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 1.0737035870552063,
|
| 744 |
+
"epoch": 0.9517684887459807,
|
| 745 |
+
"grad_norm": 0.13181892037391663,
|
| 746 |
+
"learning_rate": 4.1249648076341165e-05,
|
| 747 |
+
"loss": 1.0674468278884888,
|
| 748 |
+
"mean_token_accuracy": 0.6823575049638748,
|
| 749 |
+
"num_tokens": 9539355.0,
|
| 750 |
+
"step": 74
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 1.077784962952137,
|
| 754 |
+
"epoch": 0.9646302250803859,
|
| 755 |
+
"grad_norm": 0.13357527554035187,
|
| 756 |
+
"learning_rate": 4.0979173970824626e-05,
|
| 757 |
+
"loss": 1.0709781646728516,
|
| 758 |
+
"mean_token_accuracy": 0.6832851618528366,
|
| 759 |
+
"num_tokens": 9669661.0,
|
| 760 |
+
"step": 75
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 1.0898889154195786,
|
| 764 |
+
"epoch": 0.977491961414791,
|
| 765 |
+
"grad_norm": 0.1380884051322937,
|
| 766 |
+
"learning_rate": 4.070549993239106e-05,
|
| 767 |
+
"loss": 1.079447627067566,
|
| 768 |
+
"mean_token_accuracy": 0.6803383082151413,
|
| 769 |
+
"num_tokens": 9799265.0,
|
| 770 |
+
"step": 76
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 1.1030114442110062,
|
| 774 |
+
"epoch": 0.9903536977491961,
|
| 775 |
+
"grad_norm": 0.14150051772594452,
|
| 776 |
+
"learning_rate": 4.0428680766036384e-05,
|
| 777 |
+
"loss": 1.0985944271087646,
|
| 778 |
+
"mean_token_accuracy": 0.6765774413943291,
|
| 779 |
+
"num_tokens": 9928475.0,
|
| 780 |
+
"step": 77
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 1.1045236786206563,
|
| 784 |
+
"epoch": 1.0,
|
| 785 |
+
"grad_norm": 0.15571743249893188,
|
| 786 |
+
"learning_rate": 4.0148771906588706e-05,
|
| 787 |
+
"loss": 1.078245759010315,
|
| 788 |
+
"mean_token_accuracy": 0.6769482294718424,
|
| 789 |
+
"num_tokens": 9977189.0,
|
| 790 |
+
"step": 78
|
| 791 |
+
}
|
| 792 |
+
],
|
| 793 |
+
"logging_steps": 1,
|
| 794 |
+
"max_steps": 234,
|
| 795 |
+
"num_input_tokens_seen": 0,
|
| 796 |
+
"num_train_epochs": 3,
|
| 797 |
+
"save_steps": 500,
|
| 798 |
+
"stateful_callbacks": {
|
| 799 |
+
"TrainerControl": {
|
| 800 |
+
"args": {
|
| 801 |
+
"should_epoch_stop": false,
|
| 802 |
+
"should_evaluate": false,
|
| 803 |
+
"should_log": false,
|
| 804 |
+
"should_save": true,
|
| 805 |
+
"should_training_stop": false
|
| 806 |
+
},
|
| 807 |
+
"attributes": {}
|
| 808 |
+
}
|
| 809 |
+
},
|
| 810 |
+
"total_flos": 1.0577206156596347e+18,
|
| 811 |
+
"train_batch_size": 1,
|
| 812 |
+
"trial_name": null,
|
| 813 |
+
"trial_params": null
|
| 814 |
+
}
|