Instructions to use mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("EleutherAI/pythia-2.8b") model = PeftModel.from_pretrained(base_model, "mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan") - Transformers
How to use mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan
- SGLang
How to use mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan 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 "mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan with Docker Model Runner:
docker model run hf.co/mia-llm/pythia-2.8b-wikitext2raw-LoRA-ilhan
Upload folder using huggingface_hub
Browse files- README.md +62 -0
- adapter_config.json +43 -0
- adapter_model.safetensors +3 -0
- checkpoint-1250/README.md +209 -0
- checkpoint-1250/adapter_config.json +43 -0
- checkpoint-1250/adapter_model.safetensors +3 -0
- checkpoint-1250/optimizer.pt +3 -0
- checkpoint-1250/rng_state.pth +3 -0
- checkpoint-1250/scheduler.pt +3 -0
- checkpoint-1250/special_tokens_map.json +24 -0
- checkpoint-1250/tokenizer.json +0 -0
- checkpoint-1250/tokenizer_config.json +215 -0
- checkpoint-1250/trainer_state.json +1416 -0
- checkpoint-1250/training_args.bin +3 -0
- checkpoint-625/README.md +209 -0
- checkpoint-625/adapter_config.json +43 -0
- checkpoint-625/adapter_model.safetensors +3 -0
- checkpoint-625/optimizer.pt +3 -0
- checkpoint-625/rng_state.pth +3 -0
- checkpoint-625/scheduler.pt +3 -0
- checkpoint-625/special_tokens_map.json +24 -0
- checkpoint-625/tokenizer.json +0 -0
- checkpoint-625/tokenizer_config.json +215 -0
- checkpoint-625/trainer_state.json +720 -0
- checkpoint-625/training_args.bin +3 -0
- special_tokens_map.json +24 -0
- tokenizer.json +0 -0
- tokenizer_config.json +215 -0
- training_args.bin +3 -0
README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: EleutherAI/pythia-2.8b
|
| 3 |
+
library_name: peft
|
| 4 |
+
model_name: pythia-2.8b-LoRA-lora_v1.r64.a128.e2.1
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:EleutherAI/pythia-2.8b
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
licence: license
|
| 12 |
+
pipeline_tag: text-generation
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# Model Card for pythia-2.8b-LoRA-lora_v1.r64.a128.e2.1
|
| 16 |
+
|
| 17 |
+
This model is a fine-tuned version of [EleutherAI/pythia-2.8b](https://huggingface.co/EleutherAI/pythia-2.8b).
|
| 18 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 19 |
+
|
| 20 |
+
## Quick start
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from transformers import pipeline
|
| 24 |
+
|
| 25 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 26 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 27 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 28 |
+
print(output["generated_text"])
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Training procedure
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
This model was trained with SFT.
|
| 37 |
+
|
| 38 |
+
### Framework versions
|
| 39 |
+
|
| 40 |
+
- PEFT 0.18.0
|
| 41 |
+
- TRL: 0.26.0
|
| 42 |
+
- Transformers: 4.57.3
|
| 43 |
+
- Pytorch: 2.9.1
|
| 44 |
+
- Datasets: 4.4.1
|
| 45 |
+
- Tokenizers: 0.22.1
|
| 46 |
+
|
| 47 |
+
## Citations
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
Cite TRL as:
|
| 52 |
+
|
| 53 |
+
```bibtex
|
| 54 |
+
@misc{vonwerra2022trl,
|
| 55 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 56 |
+
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
|
| 57 |
+
year = 2020,
|
| 58 |
+
journal = {GitHub repository},
|
| 59 |
+
publisher = {GitHub},
|
| 60 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 61 |
+
}
|
| 62 |
+
```
|
adapter_config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "EleutherAI/pythia-2.8b",
|
| 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 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.0",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 64,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"dense",
|
| 33 |
+
"query_key_value",
|
| 34 |
+
"dense_h_to_4h",
|
| 35 |
+
"dense_4h_to_h"
|
| 36 |
+
],
|
| 37 |
+
"target_parameters": null,
|
| 38 |
+
"task_type": "CAUSAL_LM",
|
| 39 |
+
"trainable_token_indices": null,
|
| 40 |
+
"use_dora": false,
|
| 41 |
+
"use_qalora": false,
|
| 42 |
+
"use_rslora": false
|
| 43 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9847426500490d020eef835d209086baeb9881301f121a4bd52fe768a2b843e2
|
| 3 |
+
size 335580648
|
checkpoint-1250/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: EleutherAI/pythia-2.8b
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:EleutherAI/pythia-2.8b
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.0
|
checkpoint-1250/adapter_config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "EleutherAI/pythia-2.8b",
|
| 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 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.0",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 64,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"dense",
|
| 33 |
+
"query_key_value",
|
| 34 |
+
"dense_h_to_4h",
|
| 35 |
+
"dense_4h_to_h"
|
| 36 |
+
],
|
| 37 |
+
"target_parameters": null,
|
| 38 |
+
"task_type": "CAUSAL_LM",
|
| 39 |
+
"trainable_token_indices": null,
|
| 40 |
+
"use_dora": false,
|
| 41 |
+
"use_qalora": false,
|
| 42 |
+
"use_rslora": false
|
| 43 |
+
}
|
checkpoint-1250/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9847426500490d020eef835d209086baeb9881301f121a4bd52fe768a2b843e2
|
| 3 |
+
size 335580648
|
checkpoint-1250/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8395d1857d3da020257ce78eab907a0707adc8b7ae9952436c6d99a1b20965c0
|
| 3 |
+
size 671308491
|
checkpoint-1250/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb28ac77641ae73a837afa0612828c2d5aa469601213ba2443ab548739301a7e
|
| 3 |
+
size 14645
|
checkpoint-1250/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:149613c522fb20c719da4556156e70073e5e848f79b5b3e8448635d9c634cbfc
|
| 3 |
+
size 1465
|
checkpoint-1250/special_tokens_map.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|endoftext|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|endoftext|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": "<|endoftext|>",
|
| 17 |
+
"unk_token": {
|
| 18 |
+
"content": "<|endoftext|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
}
|
| 24 |
+
}
|
checkpoint-1250/tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1250/tokenizer_config.json
ADDED
|
@@ -0,0 +1,215 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_eos_token": false,
|
| 4 |
+
"add_prefix_space": false,
|
| 5 |
+
"added_tokens_decoder": {
|
| 6 |
+
"0": {
|
| 7 |
+
"content": "<|endoftext|>",
|
| 8 |
+
"lstrip": false,
|
| 9 |
+
"normalized": false,
|
| 10 |
+
"rstrip": false,
|
| 11 |
+
"single_word": false,
|
| 12 |
+
"special": true
|
| 13 |
+
},
|
| 14 |
+
"1": {
|
| 15 |
+
"content": "<|padding|>",
|
| 16 |
+
"lstrip": false,
|
| 17 |
+
"normalized": false,
|
| 18 |
+
"rstrip": false,
|
| 19 |
+
"single_word": false,
|
| 20 |
+
"special": true
|
| 21 |
+
},
|
| 22 |
+
"50254": {
|
| 23 |
+
"content": " ",
|
| 24 |
+
"lstrip": false,
|
| 25 |
+
"normalized": true,
|
| 26 |
+
"rstrip": false,
|
| 27 |
+
"single_word": false,
|
| 28 |
+
"special": false
|
| 29 |
+
},
|
| 30 |
+
"50255": {
|
| 31 |
+
"content": " ",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false,
|
| 36 |
+
"special": false
|
| 37 |
+
},
|
| 38 |
+
"50256": {
|
| 39 |
+
"content": " ",
|
| 40 |
+
"lstrip": false,
|
| 41 |
+
"normalized": true,
|
| 42 |
+
"rstrip": false,
|
| 43 |
+
"single_word": false,
|
| 44 |
+
"special": false
|
| 45 |
+
},
|
| 46 |
+
"50257": {
|
| 47 |
+
"content": " ",
|
| 48 |
+
"lstrip": false,
|
| 49 |
+
"normalized": true,
|
| 50 |
+
"rstrip": false,
|
| 51 |
+
"single_word": false,
|
| 52 |
+
"special": false
|
| 53 |
+
},
|
| 54 |
+
"50258": {
|
| 55 |
+
"content": " ",
|
| 56 |
+
"lstrip": false,
|
| 57 |
+
"normalized": true,
|
| 58 |
+
"rstrip": false,
|
| 59 |
+
"single_word": false,
|
| 60 |
+
"special": false
|
| 61 |
+
},
|
| 62 |
+
"50259": {
|
| 63 |
+
"content": " ",
|
| 64 |
+
"lstrip": false,
|
| 65 |
+
"normalized": true,
|
| 66 |
+
"rstrip": false,
|
| 67 |
+
"single_word": false,
|
| 68 |
+
"special": false
|
| 69 |
+
},
|
| 70 |
+
"50260": {
|
| 71 |
+
"content": " ",
|
| 72 |
+
"lstrip": false,
|
| 73 |
+
"normalized": true,
|
| 74 |
+
"rstrip": false,
|
| 75 |
+
"single_word": false,
|
| 76 |
+
"special": false
|
| 77 |
+
},
|
| 78 |
+
"50261": {
|
| 79 |
+
"content": " ",
|
| 80 |
+
"lstrip": false,
|
| 81 |
+
"normalized": true,
|
| 82 |
+
"rstrip": false,
|
| 83 |
+
"single_word": false,
|
| 84 |
+
"special": false
|
| 85 |
+
},
|
| 86 |
+
"50262": {
|
| 87 |
+
"content": " ",
|
| 88 |
+
"lstrip": false,
|
| 89 |
+
"normalized": true,
|
| 90 |
+
"rstrip": false,
|
| 91 |
+
"single_word": false,
|
| 92 |
+
"special": false
|
| 93 |
+
},
|
| 94 |
+
"50263": {
|
| 95 |
+
"content": " ",
|
| 96 |
+
"lstrip": false,
|
| 97 |
+
"normalized": true,
|
| 98 |
+
"rstrip": false,
|
| 99 |
+
"single_word": false,
|
| 100 |
+
"special": false
|
| 101 |
+
},
|
| 102 |
+
"50264": {
|
| 103 |
+
"content": " ",
|
| 104 |
+
"lstrip": false,
|
| 105 |
+
"normalized": true,
|
| 106 |
+
"rstrip": false,
|
| 107 |
+
"single_word": false,
|
| 108 |
+
"special": false
|
| 109 |
+
},
|
| 110 |
+
"50265": {
|
| 111 |
+
"content": " ",
|
| 112 |
+
"lstrip": false,
|
| 113 |
+
"normalized": true,
|
| 114 |
+
"rstrip": false,
|
| 115 |
+
"single_word": false,
|
| 116 |
+
"special": false
|
| 117 |
+
},
|
| 118 |
+
"50266": {
|
| 119 |
+
"content": " ",
|
| 120 |
+
"lstrip": false,
|
| 121 |
+
"normalized": true,
|
| 122 |
+
"rstrip": false,
|
| 123 |
+
"single_word": false,
|
| 124 |
+
"special": false
|
| 125 |
+
},
|
| 126 |
+
"50267": {
|
| 127 |
+
"content": " ",
|
| 128 |
+
"lstrip": false,
|
| 129 |
+
"normalized": true,
|
| 130 |
+
"rstrip": false,
|
| 131 |
+
"single_word": false,
|
| 132 |
+
"special": false
|
| 133 |
+
},
|
| 134 |
+
"50268": {
|
| 135 |
+
"content": " ",
|
| 136 |
+
"lstrip": false,
|
| 137 |
+
"normalized": true,
|
| 138 |
+
"rstrip": false,
|
| 139 |
+
"single_word": false,
|
| 140 |
+
"special": false
|
| 141 |
+
},
|
| 142 |
+
"50269": {
|
| 143 |
+
"content": " ",
|
| 144 |
+
"lstrip": false,
|
| 145 |
+
"normalized": true,
|
| 146 |
+
"rstrip": false,
|
| 147 |
+
"single_word": false,
|
| 148 |
+
"special": false
|
| 149 |
+
},
|
| 150 |
+
"50270": {
|
| 151 |
+
"content": " ",
|
| 152 |
+
"lstrip": false,
|
| 153 |
+
"normalized": true,
|
| 154 |
+
"rstrip": false,
|
| 155 |
+
"single_word": false,
|
| 156 |
+
"special": false
|
| 157 |
+
},
|
| 158 |
+
"50271": {
|
| 159 |
+
"content": " ",
|
| 160 |
+
"lstrip": false,
|
| 161 |
+
"normalized": true,
|
| 162 |
+
"rstrip": false,
|
| 163 |
+
"single_word": false,
|
| 164 |
+
"special": false
|
| 165 |
+
},
|
| 166 |
+
"50272": {
|
| 167 |
+
"content": " ",
|
| 168 |
+
"lstrip": false,
|
| 169 |
+
"normalized": true,
|
| 170 |
+
"rstrip": false,
|
| 171 |
+
"single_word": false,
|
| 172 |
+
"special": false
|
| 173 |
+
},
|
| 174 |
+
"50273": {
|
| 175 |
+
"content": " ",
|
| 176 |
+
"lstrip": false,
|
| 177 |
+
"normalized": true,
|
| 178 |
+
"rstrip": false,
|
| 179 |
+
"single_word": false,
|
| 180 |
+
"special": false
|
| 181 |
+
},
|
| 182 |
+
"50274": {
|
| 183 |
+
"content": " ",
|
| 184 |
+
"lstrip": false,
|
| 185 |
+
"normalized": true,
|
| 186 |
+
"rstrip": false,
|
| 187 |
+
"single_word": false,
|
| 188 |
+
"special": false
|
| 189 |
+
},
|
| 190 |
+
"50275": {
|
| 191 |
+
"content": " ",
|
| 192 |
+
"lstrip": false,
|
| 193 |
+
"normalized": true,
|
| 194 |
+
"rstrip": false,
|
| 195 |
+
"single_word": false,
|
| 196 |
+
"special": false
|
| 197 |
+
},
|
| 198 |
+
"50276": {
|
| 199 |
+
"content": " ",
|
| 200 |
+
"lstrip": false,
|
| 201 |
+
"normalized": true,
|
| 202 |
+
"rstrip": false,
|
| 203 |
+
"single_word": false,
|
| 204 |
+
"special": false
|
| 205 |
+
}
|
| 206 |
+
},
|
| 207 |
+
"bos_token": "<|endoftext|>",
|
| 208 |
+
"clean_up_tokenization_spaces": false,
|
| 209 |
+
"eos_token": "<|endoftext|>",
|
| 210 |
+
"extra_special_tokens": {},
|
| 211 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 212 |
+
"pad_token": "<|endoftext|>",
|
| 213 |
+
"tokenizer_class": "GPTNeoXTokenizer",
|
| 214 |
+
"unk_token": "<|endoftext|>"
|
| 215 |
+
}
|
checkpoint-1250/trainer_state.json
ADDED
|
@@ -0,0 +1,1416 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.0,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 1250,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 2.927482557296753,
|
| 14 |
+
"epoch": 0.016,
|
| 15 |
+
"grad_norm": 1.3331365585327148,
|
| 16 |
+
"learning_rate": 4.736842105263158e-05,
|
| 17 |
+
"loss": 2.9205,
|
| 18 |
+
"mean_token_accuracy": 0.42432610020041467,
|
| 19 |
+
"num_tokens": 21466.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 2.7787948846817017,
|
| 24 |
+
"epoch": 0.032,
|
| 25 |
+
"grad_norm": 1.0274778604507446,
|
| 26 |
+
"learning_rate": 0.0001,
|
| 27 |
+
"loss": 2.7193,
|
| 28 |
+
"mean_token_accuracy": 0.4424279421567917,
|
| 29 |
+
"num_tokens": 44204.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 2.7391002118587493,
|
| 34 |
+
"epoch": 0.048,
|
| 35 |
+
"grad_norm": 0.9975764751434326,
|
| 36 |
+
"learning_rate": 0.00015263157894736845,
|
| 37 |
+
"loss": 2.6235,
|
| 38 |
+
"mean_token_accuracy": 0.46106590032577516,
|
| 39 |
+
"num_tokens": 63982.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 2.69979213476181,
|
| 44 |
+
"epoch": 0.064,
|
| 45 |
+
"grad_norm": 0.9850704669952393,
|
| 46 |
+
"learning_rate": 0.00019999966405802826,
|
| 47 |
+
"loss": 2.5825,
|
| 48 |
+
"mean_token_accuracy": 0.4666088931262493,
|
| 49 |
+
"num_tokens": 84531.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 2.6038752436637878,
|
| 54 |
+
"epoch": 0.08,
|
| 55 |
+
"grad_norm": 0.9963482022285461,
|
| 56 |
+
"learning_rate": 0.00019995935375248606,
|
| 57 |
+
"loss": 2.5338,
|
| 58 |
+
"mean_token_accuracy": 0.4776237912476063,
|
| 59 |
+
"num_tokens": 104496.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 2.6396988570690154,
|
| 64 |
+
"epoch": 0.096,
|
| 65 |
+
"grad_norm": 0.8940117955207825,
|
| 66 |
+
"learning_rate": 0.000199851886084842,
|
| 67 |
+
"loss": 2.5631,
|
| 68 |
+
"mean_token_accuracy": 0.4724681057035923,
|
| 69 |
+
"num_tokens": 125055.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 2.624293786287308,
|
| 74 |
+
"epoch": 0.112,
|
| 75 |
+
"grad_norm": 0.7860824465751648,
|
| 76 |
+
"learning_rate": 0.0001996773332568941,
|
| 77 |
+
"loss": 2.5196,
|
| 78 |
+
"mean_token_accuracy": 0.47606254518032076,
|
| 79 |
+
"num_tokens": 145437.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 2.523421919345856,
|
| 84 |
+
"epoch": 0.128,
|
| 85 |
+
"grad_norm": 0.7847617268562317,
|
| 86 |
+
"learning_rate": 0.0001994358125413841,
|
| 87 |
+
"loss": 2.438,
|
| 88 |
+
"mean_token_accuracy": 0.4916156314313412,
|
| 89 |
+
"num_tokens": 164918.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 2.5297053515911103,
|
| 94 |
+
"epoch": 0.144,
|
| 95 |
+
"grad_norm": 0.8938744068145752,
|
| 96 |
+
"learning_rate": 0.00019912748620320794,
|
| 97 |
+
"loss": 2.477,
|
| 98 |
+
"mean_token_accuracy": 0.4871461518108845,
|
| 99 |
+
"num_tokens": 186602.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 2.549694550037384,
|
| 104 |
+
"epoch": 0.16,
|
| 105 |
+
"grad_norm": 0.8062200546264648,
|
| 106 |
+
"learning_rate": 0.00019875256139039902,
|
| 107 |
+
"loss": 2.4538,
|
| 108 |
+
"mean_token_accuracy": 0.48964215591549876,
|
| 109 |
+
"num_tokens": 208334.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.16,
|
| 114 |
+
"eval_entropy": 2.5797194150777965,
|
| 115 |
+
"eval_loss": 2.5428755283355713,
|
| 116 |
+
"eval_mean_token_accuracy": 0.48654096172406125,
|
| 117 |
+
"eval_num_tokens": 208334.0,
|
| 118 |
+
"eval_runtime": 0.7687,
|
| 119 |
+
"eval_samples_per_second": 130.09,
|
| 120 |
+
"eval_steps_per_second": 16.912,
|
| 121 |
+
"step": 100
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"entropy": 2.5369359493255614,
|
| 125 |
+
"epoch": 0.176,
|
| 126 |
+
"grad_norm": 0.7858350276947021,
|
| 127 |
+
"learning_rate": 0.00019831128999495606,
|
| 128 |
+
"loss": 2.451,
|
| 129 |
+
"mean_token_accuracy": 0.49068020582199096,
|
| 130 |
+
"num_tokens": 229573.0,
|
| 131 |
+
"step": 110
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"entropy": 2.622505843639374,
|
| 135 |
+
"epoch": 0.192,
|
| 136 |
+
"grad_norm": 0.853503942489624,
|
| 137 |
+
"learning_rate": 0.0001978039684836106,
|
| 138 |
+
"loss": 2.513,
|
| 139 |
+
"mean_token_accuracy": 0.4789179593324661,
|
| 140 |
+
"num_tokens": 250739.0,
|
| 141 |
+
"step": 120
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"entropy": 2.538061708211899,
|
| 145 |
+
"epoch": 0.208,
|
| 146 |
+
"grad_norm": 0.701422393321991,
|
| 147 |
+
"learning_rate": 0.00019723093769864663,
|
| 148 |
+
"loss": 2.4881,
|
| 149 |
+
"mean_token_accuracy": 0.485482332110405,
|
| 150 |
+
"num_tokens": 274310.0,
|
| 151 |
+
"step": 130
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"entropy": 2.633000612258911,
|
| 155 |
+
"epoch": 0.224,
|
| 156 |
+
"grad_norm": 0.8620439171791077,
|
| 157 |
+
"learning_rate": 0.00019659258262890683,
|
| 158 |
+
"loss": 2.5312,
|
| 159 |
+
"mean_token_accuracy": 0.4774567261338234,
|
| 160 |
+
"num_tokens": 295034.0,
|
| 161 |
+
"step": 140
|
| 162 |
+
},
|
| 163 |
+
{
|
| 164 |
+
"entropy": 2.501206773519516,
|
| 165 |
+
"epoch": 0.24,
|
| 166 |
+
"grad_norm": 0.8027399778366089,
|
| 167 |
+
"learning_rate": 0.00019588933215113926,
|
| 168 |
+
"loss": 2.4184,
|
| 169 |
+
"mean_token_accuracy": 0.4926304392516613,
|
| 170 |
+
"num_tokens": 315487.0,
|
| 171 |
+
"step": 150
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"entropy": 2.51069019138813,
|
| 175 |
+
"epoch": 0.256,
|
| 176 |
+
"grad_norm": 0.7904124855995178,
|
| 177 |
+
"learning_rate": 0.00019512165874185767,
|
| 178 |
+
"loss": 2.4492,
|
| 179 |
+
"mean_token_accuracy": 0.49440020844340327,
|
| 180 |
+
"num_tokens": 336958.0,
|
| 181 |
+
"step": 160
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"entropy": 2.5472387611865996,
|
| 185 |
+
"epoch": 0.272,
|
| 186 |
+
"grad_norm": 0.8189327120780945,
|
| 187 |
+
"learning_rate": 0.00019429007815990993,
|
| 188 |
+
"loss": 2.4559,
|
| 189 |
+
"mean_token_accuracy": 0.48381901159882545,
|
| 190 |
+
"num_tokens": 358616.0,
|
| 191 |
+
"step": 170
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"entropy": 2.547665923833847,
|
| 195 |
+
"epoch": 0.288,
|
| 196 |
+
"grad_norm": 0.7772969603538513,
|
| 197 |
+
"learning_rate": 0.00019339514909996706,
|
| 198 |
+
"loss": 2.4706,
|
| 199 |
+
"mean_token_accuracy": 0.4824284970760345,
|
| 200 |
+
"num_tokens": 379872.0,
|
| 201 |
+
"step": 180
|
| 202 |
+
},
|
| 203 |
+
{
|
| 204 |
+
"entropy": 2.504627192020416,
|
| 205 |
+
"epoch": 0.304,
|
| 206 |
+
"grad_norm": 0.6993403434753418,
|
| 207 |
+
"learning_rate": 0.000192437472817166,
|
| 208 |
+
"loss": 2.4443,
|
| 209 |
+
"mean_token_accuracy": 0.4916023284196854,
|
| 210 |
+
"num_tokens": 400768.0,
|
| 211 |
+
"step": 190
|
| 212 |
+
},
|
| 213 |
+
{
|
| 214 |
+
"entropy": 2.5959001183509827,
|
| 215 |
+
"epoch": 0.32,
|
| 216 |
+
"grad_norm": 0.8900535106658936,
|
| 217 |
+
"learning_rate": 0.00019141769272315858,
|
| 218 |
+
"loss": 2.5256,
|
| 219 |
+
"mean_token_accuracy": 0.4826003320515156,
|
| 220 |
+
"num_tokens": 420318.0,
|
| 221 |
+
"step": 200
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"epoch": 0.32,
|
| 225 |
+
"eval_entropy": 2.615577771113469,
|
| 226 |
+
"eval_loss": 2.544278144836426,
|
| 227 |
+
"eval_mean_token_accuracy": 0.4823318009193127,
|
| 228 |
+
"eval_num_tokens": 420318.0,
|
| 229 |
+
"eval_runtime": 0.6723,
|
| 230 |
+
"eval_samples_per_second": 148.739,
|
| 231 |
+
"eval_steps_per_second": 19.336,
|
| 232 |
+
"step": 200
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"entropy": 2.5907178699970244,
|
| 236 |
+
"epoch": 0.336,
|
| 237 |
+
"grad_norm": 0.7852405309677124,
|
| 238 |
+
"learning_rate": 0.00019033649395383702,
|
| 239 |
+
"loss": 2.5025,
|
| 240 |
+
"mean_token_accuracy": 0.48569325879216196,
|
| 241 |
+
"num_tokens": 440493.0,
|
| 242 |
+
"step": 210
|
| 243 |
+
},
|
| 244 |
+
{
|
| 245 |
+
"entropy": 2.5373390048742293,
|
| 246 |
+
"epoch": 0.352,
|
| 247 |
+
"grad_norm": 0.8513323664665222,
|
| 248 |
+
"learning_rate": 0.00018919460290902826,
|
| 249 |
+
"loss": 2.4644,
|
| 250 |
+
"mean_token_accuracy": 0.48737777322530745,
|
| 251 |
+
"num_tokens": 460347.0,
|
| 252 |
+
"step": 220
|
| 253 |
+
},
|
| 254 |
+
{
|
| 255 |
+
"entropy": 2.5982253909111024,
|
| 256 |
+
"epoch": 0.368,
|
| 257 |
+
"grad_norm": 0.7951892614364624,
|
| 258 |
+
"learning_rate": 0.00018799278676446423,
|
| 259 |
+
"loss": 2.5088,
|
| 260 |
+
"mean_token_accuracy": 0.4845408618450165,
|
| 261 |
+
"num_tokens": 479686.0,
|
| 262 |
+
"step": 230
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"entropy": 2.5408327341079713,
|
| 266 |
+
"epoch": 0.384,
|
| 267 |
+
"grad_norm": 0.818739652633667,
|
| 268 |
+
"learning_rate": 0.0001867318529563574,
|
| 269 |
+
"loss": 2.4453,
|
| 270 |
+
"mean_token_accuracy": 0.49112383723258973,
|
| 271 |
+
"num_tokens": 499382.0,
|
| 272 |
+
"step": 240
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"entropy": 2.566703599691391,
|
| 276 |
+
"epoch": 0.4,
|
| 277 |
+
"grad_norm": 0.8289343118667603,
|
| 278 |
+
"learning_rate": 0.00018541264863892754,
|
| 279 |
+
"loss": 2.5047,
|
| 280 |
+
"mean_token_accuracy": 0.48281258195638654,
|
| 281 |
+
"num_tokens": 520865.0,
|
| 282 |
+
"step": 250
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"entropy": 2.522556847333908,
|
| 286 |
+
"epoch": 0.416,
|
| 287 |
+
"grad_norm": 0.9309546947479248,
|
| 288 |
+
"learning_rate": 0.000184036060115244,
|
| 289 |
+
"loss": 2.4434,
|
| 290 |
+
"mean_token_accuracy": 0.4828334227204323,
|
| 291 |
+
"num_tokens": 540616.0,
|
| 292 |
+
"step": 260
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"entropy": 2.5191095739603044,
|
| 296 |
+
"epoch": 0.432,
|
| 297 |
+
"grad_norm": 0.7696341276168823,
|
| 298 |
+
"learning_rate": 0.00018260301224176558,
|
| 299 |
+
"loss": 2.4318,
|
| 300 |
+
"mean_token_accuracy": 0.4892562575638294,
|
| 301 |
+
"num_tokens": 561098.0,
|
| 302 |
+
"step": 270
|
| 303 |
+
},
|
| 304 |
+
{
|
| 305 |
+
"entropy": 2.5569592356681823,
|
| 306 |
+
"epoch": 0.448,
|
| 307 |
+
"grad_norm": 0.7310771346092224,
|
| 308 |
+
"learning_rate": 0.00018111446780697929,
|
| 309 |
+
"loss": 2.505,
|
| 310 |
+
"mean_token_accuracy": 0.476550355553627,
|
| 311 |
+
"num_tokens": 581527.0,
|
| 312 |
+
"step": 280
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"entropy": 2.6550574243068694,
|
| 316 |
+
"epoch": 0.464,
|
| 317 |
+
"grad_norm": 0.8539873957633972,
|
| 318 |
+
"learning_rate": 0.00017957142688455362,
|
| 319 |
+
"loss": 2.5309,
|
| 320 |
+
"mean_token_accuracy": 0.479371577501297,
|
| 321 |
+
"num_tokens": 601002.0,
|
| 322 |
+
"step": 290
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"entropy": 2.5720873057842253,
|
| 326 |
+
"epoch": 0.48,
|
| 327 |
+
"grad_norm": 0.7261855006217957,
|
| 328 |
+
"learning_rate": 0.00017797492616144256,
|
| 329 |
+
"loss": 2.5289,
|
| 330 |
+
"mean_token_accuracy": 0.4779372848570347,
|
| 331 |
+
"num_tokens": 621836.0,
|
| 332 |
+
"step": 300
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.48,
|
| 336 |
+
"eval_entropy": 2.58707464658297,
|
| 337 |
+
"eval_loss": 2.5298879146575928,
|
| 338 |
+
"eval_mean_token_accuracy": 0.4877227544784546,
|
| 339 |
+
"eval_num_tokens": 621836.0,
|
| 340 |
+
"eval_runtime": 0.6775,
|
| 341 |
+
"eval_samples_per_second": 147.608,
|
| 342 |
+
"eval_steps_per_second": 19.189,
|
| 343 |
+
"step": 300
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"entropy": 2.56911381483078,
|
| 347 |
+
"epoch": 0.496,
|
| 348 |
+
"grad_norm": 0.8215358257293701,
|
| 349 |
+
"learning_rate": 0.00017632603824139085,
|
| 350 |
+
"loss": 2.4587,
|
| 351 |
+
"mean_token_accuracy": 0.4831582002341747,
|
| 352 |
+
"num_tokens": 642910.0,
|
| 353 |
+
"step": 310
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"entropy": 2.518597739934921,
|
| 357 |
+
"epoch": 0.512,
|
| 358 |
+
"grad_norm": 0.7745339274406433,
|
| 359 |
+
"learning_rate": 0.00017462587092430875,
|
| 360 |
+
"loss": 2.4552,
|
| 361 |
+
"mean_token_accuracy": 0.48742511570453645,
|
| 362 |
+
"num_tokens": 665281.0,
|
| 363 |
+
"step": 320
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"entropy": 2.5539629220962525,
|
| 367 |
+
"epoch": 0.528,
|
| 368 |
+
"grad_norm": 1.3013852834701538,
|
| 369 |
+
"learning_rate": 0.00017287556646200018,
|
| 370 |
+
"loss": 2.5049,
|
| 371 |
+
"mean_token_accuracy": 0.48348471373319624,
|
| 372 |
+
"num_tokens": 686496.0,
|
| 373 |
+
"step": 330
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"entropy": 2.549721211194992,
|
| 377 |
+
"epoch": 0.544,
|
| 378 |
+
"grad_norm": 0.9040252566337585,
|
| 379 |
+
"learning_rate": 0.00017107630079074478,
|
| 380 |
+
"loss": 2.4749,
|
| 381 |
+
"mean_token_accuracy": 0.49018326848745347,
|
| 382 |
+
"num_tokens": 708041.0,
|
| 383 |
+
"step": 340
|
| 384 |
+
},
|
| 385 |
+
{
|
| 386 |
+
"entropy": 2.5657508850097654,
|
| 387 |
+
"epoch": 0.56,
|
| 388 |
+
"grad_norm": 0.7486541867256165,
|
| 389 |
+
"learning_rate": 0.00016922928274124886,
|
| 390 |
+
"loss": 2.496,
|
| 391 |
+
"mean_token_accuracy": 0.4882775545120239,
|
| 392 |
+
"num_tokens": 729373.0,
|
| 393 |
+
"step": 350
|
| 394 |
+
},
|
| 395 |
+
{
|
| 396 |
+
"entropy": 2.49460369348526,
|
| 397 |
+
"epoch": 0.576,
|
| 398 |
+
"grad_norm": 0.7519723176956177,
|
| 399 |
+
"learning_rate": 0.00016733575322649657,
|
| 400 |
+
"loss": 2.4358,
|
| 401 |
+
"mean_token_accuracy": 0.4897538281977177,
|
| 402 |
+
"num_tokens": 751428.0,
|
| 403 |
+
"step": 360
|
| 404 |
+
},
|
| 405 |
+
{
|
| 406 |
+
"entropy": 2.485343414545059,
|
| 407 |
+
"epoch": 0.592,
|
| 408 |
+
"grad_norm": 0.7465973496437073,
|
| 409 |
+
"learning_rate": 0.00016539698440804661,
|
| 410 |
+
"loss": 2.4446,
|
| 411 |
+
"mean_token_accuracy": 0.4956702694296837,
|
| 412 |
+
"num_tokens": 773898.0,
|
| 413 |
+
"step": 370
|
| 414 |
+
},
|
| 415 |
+
{
|
| 416 |
+
"entropy": 2.5664760768413544,
|
| 417 |
+
"epoch": 0.608,
|
| 418 |
+
"grad_norm": 0.792957603931427,
|
| 419 |
+
"learning_rate": 0.0001634142788413346,
|
| 420 |
+
"loss": 2.4411,
|
| 421 |
+
"mean_token_accuracy": 0.49218829050660134,
|
| 422 |
+
"num_tokens": 793921.0,
|
| 423 |
+
"step": 380
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"entropy": 2.4981964468955993,
|
| 427 |
+
"epoch": 0.624,
|
| 428 |
+
"grad_norm": 0.9188303351402283,
|
| 429 |
+
"learning_rate": 0.00016138896860055555,
|
| 430 |
+
"loss": 2.4527,
|
| 431 |
+
"mean_token_accuracy": 0.4891628086566925,
|
| 432 |
+
"num_tokens": 814549.0,
|
| 433 |
+
"step": 390
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"entropy": 2.5058595299720765,
|
| 437 |
+
"epoch": 0.64,
|
| 438 |
+
"grad_norm": 0.8261463642120361,
|
| 439 |
+
"learning_rate": 0.0001593224143837142,
|
| 440 |
+
"loss": 2.3825,
|
| 441 |
+
"mean_token_accuracy": 0.49732586443424226,
|
| 442 |
+
"num_tokens": 835738.0,
|
| 443 |
+
"step": 400
|
| 444 |
+
},
|
| 445 |
+
{
|
| 446 |
+
"epoch": 0.64,
|
| 447 |
+
"eval_entropy": 2.5427963917072,
|
| 448 |
+
"eval_loss": 2.528325080871582,
|
| 449 |
+
"eval_mean_token_accuracy": 0.48722161238010114,
|
| 450 |
+
"eval_num_tokens": 835738.0,
|
| 451 |
+
"eval_runtime": 0.6794,
|
| 452 |
+
"eval_samples_per_second": 147.184,
|
| 453 |
+
"eval_steps_per_second": 19.134,
|
| 454 |
+
"step": 400
|
| 455 |
+
},
|
| 456 |
+
{
|
| 457 |
+
"entropy": 2.549647295475006,
|
| 458 |
+
"epoch": 0.656,
|
| 459 |
+
"grad_norm": 0.9669468402862549,
|
| 460 |
+
"learning_rate": 0.00015721600459844468,
|
| 461 |
+
"loss": 2.4992,
|
| 462 |
+
"mean_token_accuracy": 0.4811323322355747,
|
| 463 |
+
"num_tokens": 856308.0,
|
| 464 |
+
"step": 410
|
| 465 |
+
},
|
| 466 |
+
{
|
| 467 |
+
"entropy": 2.50358769595623,
|
| 468 |
+
"epoch": 0.672,
|
| 469 |
+
"grad_norm": 0.7736469507217407,
|
| 470 |
+
"learning_rate": 0.0001550711544292131,
|
| 471 |
+
"loss": 2.4233,
|
| 472 |
+
"mean_token_accuracy": 0.4960208125412464,
|
| 473 |
+
"num_tokens": 877984.0,
|
| 474 |
+
"step": 420
|
| 475 |
+
},
|
| 476 |
+
{
|
| 477 |
+
"entropy": 2.513987493515015,
|
| 478 |
+
"epoch": 0.688,
|
| 479 |
+
"grad_norm": 1.0335294008255005,
|
| 480 |
+
"learning_rate": 0.00015288930488653094,
|
| 481 |
+
"loss": 2.4349,
|
| 482 |
+
"mean_token_accuracy": 0.490431859344244,
|
| 483 |
+
"num_tokens": 899593.0,
|
| 484 |
+
"step": 430
|
| 485 |
+
},
|
| 486 |
+
{
|
| 487 |
+
"entropy": 2.5122825741767882,
|
| 488 |
+
"epoch": 0.704,
|
| 489 |
+
"grad_norm": 1.0326985120773315,
|
| 490 |
+
"learning_rate": 0.00015067192183881658,
|
| 491 |
+
"loss": 2.4435,
|
| 492 |
+
"mean_token_accuracy": 0.49002100676298144,
|
| 493 |
+
"num_tokens": 919549.0,
|
| 494 |
+
"step": 440
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"entropy": 2.5058334708213805,
|
| 498 |
+
"epoch": 0.72,
|
| 499 |
+
"grad_norm": 0.8282021284103394,
|
| 500 |
+
"learning_rate": 0.0001484204950275565,
|
| 501 |
+
"loss": 2.3755,
|
| 502 |
+
"mean_token_accuracy": 0.49881314411759375,
|
| 503 |
+
"num_tokens": 938371.0,
|
| 504 |
+
"step": 450
|
| 505 |
+
},
|
| 506 |
+
{
|
| 507 |
+
"entropy": 2.5388923943042756,
|
| 508 |
+
"epoch": 0.736,
|
| 509 |
+
"grad_norm": 0.8473682403564453,
|
| 510 |
+
"learning_rate": 0.0001461365370664276,
|
| 511 |
+
"loss": 2.4695,
|
| 512 |
+
"mean_token_accuracy": 0.48638317435979844,
|
| 513 |
+
"num_tokens": 959081.0,
|
| 514 |
+
"step": 460
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"entropy": 2.4723076283931733,
|
| 518 |
+
"epoch": 0.752,
|
| 519 |
+
"grad_norm": 0.964932918548584,
|
| 520 |
+
"learning_rate": 0.00014382158242505234,
|
| 521 |
+
"loss": 2.4151,
|
| 522 |
+
"mean_token_accuracy": 0.4942440494894981,
|
| 523 |
+
"num_tokens": 980709.0,
|
| 524 |
+
"step": 470
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"entropy": 2.4699651658535005,
|
| 528 |
+
"epoch": 0.768,
|
| 529 |
+
"grad_norm": 0.8604968190193176,
|
| 530 |
+
"learning_rate": 0.0001414771863980707,
|
| 531 |
+
"loss": 2.4249,
|
| 532 |
+
"mean_token_accuracy": 0.49896738603711127,
|
| 533 |
+
"num_tokens": 998177.0,
|
| 534 |
+
"step": 480
|
| 535 |
+
},
|
| 536 |
+
{
|
| 537 |
+
"entropy": 2.5598580718040465,
|
| 538 |
+
"epoch": 0.784,
|
| 539 |
+
"grad_norm": 0.8044160604476929,
|
| 540 |
+
"learning_rate": 0.00013910492406022033,
|
| 541 |
+
"loss": 2.5119,
|
| 542 |
+
"mean_token_accuracy": 0.48558894991874696,
|
| 543 |
+
"num_tokens": 1019231.0,
|
| 544 |
+
"step": 490
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"entropy": 2.5347262740135195,
|
| 548 |
+
"epoch": 0.8,
|
| 549 |
+
"grad_norm": 0.989012598991394,
|
| 550 |
+
"learning_rate": 0.000136706389208128,
|
| 551 |
+
"loss": 2.457,
|
| 552 |
+
"mean_token_accuracy": 0.48754729256033896,
|
| 553 |
+
"num_tokens": 1039963.0,
|
| 554 |
+
"step": 500
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"epoch": 0.8,
|
| 558 |
+
"eval_entropy": 2.5207965007195106,
|
| 559 |
+
"eval_loss": 2.532066822052002,
|
| 560 |
+
"eval_mean_token_accuracy": 0.4870225145266606,
|
| 561 |
+
"eval_num_tokens": 1039963.0,
|
| 562 |
+
"eval_runtime": 0.6776,
|
| 563 |
+
"eval_samples_per_second": 147.573,
|
| 564 |
+
"eval_steps_per_second": 19.185,
|
| 565 |
+
"step": 500
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"entropy": 2.4576663255691527,
|
| 569 |
+
"epoch": 0.816,
|
| 570 |
+
"grad_norm": 0.8774695992469788,
|
| 571 |
+
"learning_rate": 0.00013428319328952253,
|
| 572 |
+
"loss": 2.3836,
|
| 573 |
+
"mean_token_accuracy": 0.4995129629969597,
|
| 574 |
+
"num_tokens": 1061370.0,
|
| 575 |
+
"step": 510
|
| 576 |
+
},
|
| 577 |
+
{
|
| 578 |
+
"entropy": 2.5250146806240084,
|
| 579 |
+
"epoch": 0.832,
|
| 580 |
+
"grad_norm": 0.7958005666732788,
|
| 581 |
+
"learning_rate": 0.00013183696432058888,
|
| 582 |
+
"loss": 2.4315,
|
| 583 |
+
"mean_token_accuracy": 0.4982760787010193,
|
| 584 |
+
"num_tokens": 1081842.0,
|
| 585 |
+
"step": 520
|
| 586 |
+
},
|
| 587 |
+
{
|
| 588 |
+
"entropy": 2.4409106403589247,
|
| 589 |
+
"epoch": 0.848,
|
| 590 |
+
"grad_norm": 0.7063387036323547,
|
| 591 |
+
"learning_rate": 0.00012936934579219094,
|
| 592 |
+
"loss": 2.3816,
|
| 593 |
+
"mean_token_accuracy": 0.5006642855703831,
|
| 594 |
+
"num_tokens": 1103737.0,
|
| 595 |
+
"step": 530
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"entropy": 2.503674066066742,
|
| 599 |
+
"epoch": 0.864,
|
| 600 |
+
"grad_norm": 0.712315559387207,
|
| 601 |
+
"learning_rate": 0.00012688199556569753,
|
| 602 |
+
"loss": 2.4427,
|
| 603 |
+
"mean_token_accuracy": 0.4878311850130558,
|
| 604 |
+
"num_tokens": 1124676.0,
|
| 605 |
+
"step": 540
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"entropy": 2.4937715351581575,
|
| 609 |
+
"epoch": 0.88,
|
| 610 |
+
"grad_norm": 0.7796215415000916,
|
| 611 |
+
"learning_rate": 0.00012437658475915377,
|
| 612 |
+
"loss": 2.4148,
|
| 613 |
+
"mean_token_accuracy": 0.4976658411324024,
|
| 614 |
+
"num_tokens": 1147148.0,
|
| 615 |
+
"step": 550
|
| 616 |
+
},
|
| 617 |
+
{
|
| 618 |
+
"entropy": 2.458594244718552,
|
| 619 |
+
"epoch": 0.896,
|
| 620 |
+
"grad_norm": 0.8076977133750916,
|
| 621 |
+
"learning_rate": 0.00012185479662454595,
|
| 622 |
+
"loss": 2.414,
|
| 623 |
+
"mean_token_accuracy": 0.4989797443151474,
|
| 624 |
+
"num_tokens": 1167948.0,
|
| 625 |
+
"step": 560
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"entropy": 2.5129783391952514,
|
| 629 |
+
"epoch": 0.912,
|
| 630 |
+
"grad_norm": 0.9025003910064697,
|
| 631 |
+
"learning_rate": 0.00011931832541691418,
|
| 632 |
+
"loss": 2.4198,
|
| 633 |
+
"mean_token_accuracy": 0.4928160272538662,
|
| 634 |
+
"num_tokens": 1187896.0,
|
| 635 |
+
"step": 570
|
| 636 |
+
},
|
| 637 |
+
{
|
| 638 |
+
"entropy": 2.429825708270073,
|
| 639 |
+
"epoch": 0.928,
|
| 640 |
+
"grad_norm": 0.9303080439567566,
|
| 641 |
+
"learning_rate": 0.00011676887525607271,
|
| 642 |
+
"loss": 2.336,
|
| 643 |
+
"mean_token_accuracy": 0.507265867292881,
|
| 644 |
+
"num_tokens": 1207963.0,
|
| 645 |
+
"step": 580
|
| 646 |
+
},
|
| 647 |
+
{
|
| 648 |
+
"entropy": 2.483963069319725,
|
| 649 |
+
"epoch": 0.944,
|
| 650 |
+
"grad_norm": 0.9662640690803528,
|
| 651 |
+
"learning_rate": 0.0001142081589817027,
|
| 652 |
+
"loss": 2.4441,
|
| 653 |
+
"mean_token_accuracy": 0.4951579734683037,
|
| 654 |
+
"num_tokens": 1228312.0,
|
| 655 |
+
"step": 590
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"entropy": 2.5128854513168335,
|
| 659 |
+
"epoch": 0.96,
|
| 660 |
+
"grad_norm": 0.7802348732948303,
|
| 661 |
+
"learning_rate": 0.00011163789700258655,
|
| 662 |
+
"loss": 2.481,
|
| 663 |
+
"mean_token_accuracy": 0.4941797606647015,
|
| 664 |
+
"num_tokens": 1250029.0,
|
| 665 |
+
"step": 600
|
| 666 |
+
},
|
| 667 |
+
{
|
| 668 |
+
"epoch": 0.96,
|
| 669 |
+
"eval_entropy": 2.5629419730259824,
|
| 670 |
+
"eval_loss": 2.526008367538452,
|
| 671 |
+
"eval_mean_token_accuracy": 0.4862596323856941,
|
| 672 |
+
"eval_num_tokens": 1250029.0,
|
| 673 |
+
"eval_runtime": 0.6764,
|
| 674 |
+
"eval_samples_per_second": 147.833,
|
| 675 |
+
"eval_steps_per_second": 19.218,
|
| 676 |
+
"step": 600
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"entropy": 2.45339612364769,
|
| 680 |
+
"epoch": 0.976,
|
| 681 |
+
"grad_norm": 0.7918068766593933,
|
| 682 |
+
"learning_rate": 0.00010905981614075693,
|
| 683 |
+
"loss": 2.3798,
|
| 684 |
+
"mean_token_accuracy": 0.5059582263231277,
|
| 685 |
+
"num_tokens": 1273572.0,
|
| 686 |
+
"step": 610
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"entropy": 2.5436563432216643,
|
| 690 |
+
"epoch": 0.992,
|
| 691 |
+
"grad_norm": 0.9120656847953796,
|
| 692 |
+
"learning_rate": 0.000106475648471337,
|
| 693 |
+
"loss": 2.4771,
|
| 694 |
+
"mean_token_accuracy": 0.49086978659033775,
|
| 695 |
+
"num_tokens": 1295353.0,
|
| 696 |
+
"step": 620
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"entropy": 2.410617971420288,
|
| 700 |
+
"epoch": 1.008,
|
| 701 |
+
"grad_norm": 0.7449939250946045,
|
| 702 |
+
"learning_rate": 0.00010388713015885161,
|
| 703 |
+
"loss": 2.2071,
|
| 704 |
+
"mean_token_accuracy": 0.5270172961056232,
|
| 705 |
+
"num_tokens": 1317590.0,
|
| 706 |
+
"step": 630
|
| 707 |
+
},
|
| 708 |
+
{
|
| 709 |
+
"entropy": 2.223151522874832,
|
| 710 |
+
"epoch": 1.024,
|
| 711 |
+
"grad_norm": 0.8070065975189209,
|
| 712 |
+
"learning_rate": 0.00010129600029079072,
|
| 713 |
+
"loss": 2.0441,
|
| 714 |
+
"mean_token_accuracy": 0.5562543638050557,
|
| 715 |
+
"num_tokens": 1338182.0,
|
| 716 |
+
"step": 640
|
| 717 |
+
},
|
| 718 |
+
{
|
| 719 |
+
"entropy": 2.1513119250535966,
|
| 720 |
+
"epoch": 1.04,
|
| 721 |
+
"grad_norm": 0.7470272779464722,
|
| 722 |
+
"learning_rate": 9.870399970920932e-05,
|
| 723 |
+
"loss": 2.0792,
|
| 724 |
+
"mean_token_accuracy": 0.54966342151165,
|
| 725 |
+
"num_tokens": 1358822.0,
|
| 726 |
+
"step": 650
|
| 727 |
+
},
|
| 728 |
+
{
|
| 729 |
+
"entropy": 2.2236103057861327,
|
| 730 |
+
"epoch": 1.056,
|
| 731 |
+
"grad_norm": 0.8093722462654114,
|
| 732 |
+
"learning_rate": 9.611286984114841e-05,
|
| 733 |
+
"loss": 2.0749,
|
| 734 |
+
"mean_token_accuracy": 0.5545817121863366,
|
| 735 |
+
"num_tokens": 1379005.0,
|
| 736 |
+
"step": 660
|
| 737 |
+
},
|
| 738 |
+
{
|
| 739 |
+
"entropy": 2.2356995731592177,
|
| 740 |
+
"epoch": 1.072,
|
| 741 |
+
"grad_norm": 0.8296709656715393,
|
| 742 |
+
"learning_rate": 9.352435152866298e-05,
|
| 743 |
+
"loss": 2.0653,
|
| 744 |
+
"mean_token_accuracy": 0.5554739162325859,
|
| 745 |
+
"num_tokens": 1401238.0,
|
| 746 |
+
"step": 670
|
| 747 |
+
},
|
| 748 |
+
{
|
| 749 |
+
"entropy": 2.240691155195236,
|
| 750 |
+
"epoch": 1.088,
|
| 751 |
+
"grad_norm": 0.864894688129425,
|
| 752 |
+
"learning_rate": 9.09401838592431e-05,
|
| 753 |
+
"loss": 2.1055,
|
| 754 |
+
"mean_token_accuracy": 0.5520414739847184,
|
| 755 |
+
"num_tokens": 1422418.0,
|
| 756 |
+
"step": 680
|
| 757 |
+
},
|
| 758 |
+
{
|
| 759 |
+
"entropy": 2.2082038104534147,
|
| 760 |
+
"epoch": 1.104,
|
| 761 |
+
"grad_norm": 1.003994345664978,
|
| 762 |
+
"learning_rate": 8.836210299741346e-05,
|
| 763 |
+
"loss": 2.0112,
|
| 764 |
+
"mean_token_accuracy": 0.5623031251132489,
|
| 765 |
+
"num_tokens": 1442486.0,
|
| 766 |
+
"step": 690
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"entropy": 2.1362645506858824,
|
| 770 |
+
"epoch": 1.12,
|
| 771 |
+
"grad_norm": 0.9215587973594666,
|
| 772 |
+
"learning_rate": 8.579184101829734e-05,
|
| 773 |
+
"loss": 2.0474,
|
| 774 |
+
"mean_token_accuracy": 0.5591939069330693,
|
| 775 |
+
"num_tokens": 1465340.0,
|
| 776 |
+
"step": 700
|
| 777 |
+
},
|
| 778 |
+
{
|
| 779 |
+
"epoch": 1.12,
|
| 780 |
+
"eval_entropy": 2.2982528393085184,
|
| 781 |
+
"eval_loss": 2.5718441009521484,
|
| 782 |
+
"eval_mean_token_accuracy": 0.4881514035738431,
|
| 783 |
+
"eval_num_tokens": 1465340.0,
|
| 784 |
+
"eval_runtime": 0.6785,
|
| 785 |
+
"eval_samples_per_second": 147.375,
|
| 786 |
+
"eval_steps_per_second": 19.159,
|
| 787 |
+
"step": 700
|
| 788 |
+
},
|
| 789 |
+
{
|
| 790 |
+
"entropy": 2.177516022324562,
|
| 791 |
+
"epoch": 1.1360000000000001,
|
| 792 |
+
"grad_norm": 0.8390331268310547,
|
| 793 |
+
"learning_rate": 8.323112474392731e-05,
|
| 794 |
+
"loss": 2.0602,
|
| 795 |
+
"mean_token_accuracy": 0.5524092435836792,
|
| 796 |
+
"num_tokens": 1484560.0,
|
| 797 |
+
"step": 710
|
| 798 |
+
},
|
| 799 |
+
{
|
| 800 |
+
"entropy": 2.2126996397972105,
|
| 801 |
+
"epoch": 1.152,
|
| 802 |
+
"grad_norm": 0.7812036275863647,
|
| 803 |
+
"learning_rate": 8.068167458308582e-05,
|
| 804 |
+
"loss": 2.08,
|
| 805 |
+
"mean_token_accuracy": 0.5531082898378372,
|
| 806 |
+
"num_tokens": 1506886.0,
|
| 807 |
+
"step": 720
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"entropy": 2.172422558069229,
|
| 811 |
+
"epoch": 1.168,
|
| 812 |
+
"grad_norm": 0.9416456818580627,
|
| 813 |
+
"learning_rate": 7.814520337545406e-05,
|
| 814 |
+
"loss": 2.0252,
|
| 815 |
+
"mean_token_accuracy": 0.5575959712266922,
|
| 816 |
+
"num_tokens": 1529928.0,
|
| 817 |
+
"step": 730
|
| 818 |
+
},
|
| 819 |
+
{
|
| 820 |
+
"entropy": 2.161852565407753,
|
| 821 |
+
"epoch": 1.184,
|
| 822 |
+
"grad_norm": 1.1978275775909424,
|
| 823 |
+
"learning_rate": 7.562341524084623e-05,
|
| 824 |
+
"loss": 2.0087,
|
| 825 |
+
"mean_token_accuracy": 0.5669111452996731,
|
| 826 |
+
"num_tokens": 1547619.0,
|
| 827 |
+
"step": 740
|
| 828 |
+
},
|
| 829 |
+
{
|
| 830 |
+
"entropy": 2.0998224556446075,
|
| 831 |
+
"epoch": 1.2,
|
| 832 |
+
"grad_norm": 0.9615102410316467,
|
| 833 |
+
"learning_rate": 7.311800443430251e-05,
|
| 834 |
+
"loss": 1.9751,
|
| 835 |
+
"mean_token_accuracy": 0.5734243541955948,
|
| 836 |
+
"num_tokens": 1569169.0,
|
| 837 |
+
"step": 750
|
| 838 |
+
},
|
| 839 |
+
{
|
| 840 |
+
"entropy": 2.205637964606285,
|
| 841 |
+
"epoch": 1.216,
|
| 842 |
+
"grad_norm": 0.838168740272522,
|
| 843 |
+
"learning_rate": 7.06306542078091e-05,
|
| 844 |
+
"loss": 2.0775,
|
| 845 |
+
"mean_token_accuracy": 0.5475761353969574,
|
| 846 |
+
"num_tokens": 1591379.0,
|
| 847 |
+
"step": 760
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"entropy": 2.220550259947777,
|
| 851 |
+
"epoch": 1.232,
|
| 852 |
+
"grad_norm": 1.063684344291687,
|
| 853 |
+
"learning_rate": 6.816303567941112e-05,
|
| 854 |
+
"loss": 2.0495,
|
| 855 |
+
"mean_token_accuracy": 0.558470205962658,
|
| 856 |
+
"num_tokens": 1611202.0,
|
| 857 |
+
"step": 770
|
| 858 |
+
},
|
| 859 |
+
{
|
| 860 |
+
"entropy": 2.1949700146913527,
|
| 861 |
+
"epoch": 1.248,
|
| 862 |
+
"grad_norm": 0.814487099647522,
|
| 863 |
+
"learning_rate": 6.571680671047749e-05,
|
| 864 |
+
"loss": 2.059,
|
| 865 |
+
"mean_token_accuracy": 0.5488512426614761,
|
| 866 |
+
"num_tokens": 1633430.0,
|
| 867 |
+
"step": 780
|
| 868 |
+
},
|
| 869 |
+
{
|
| 870 |
+
"entropy": 2.1767837584018705,
|
| 871 |
+
"epoch": 1.264,
|
| 872 |
+
"grad_norm": 0.8867488503456116,
|
| 873 |
+
"learning_rate": 6.329361079187199e-05,
|
| 874 |
+
"loss": 2.0492,
|
| 875 |
+
"mean_token_accuracy": 0.5580153577029705,
|
| 876 |
+
"num_tokens": 1654807.0,
|
| 877 |
+
"step": 790
|
| 878 |
+
},
|
| 879 |
+
{
|
| 880 |
+
"entropy": 2.15340778529644,
|
| 881 |
+
"epoch": 1.28,
|
| 882 |
+
"grad_norm": 0.8776085376739502,
|
| 883 |
+
"learning_rate": 6.08950759397797e-05,
|
| 884 |
+
"loss": 2.0017,
|
| 885 |
+
"mean_token_accuracy": 0.5655137121677398,
|
| 886 |
+
"num_tokens": 1676241.0,
|
| 887 |
+
"step": 800
|
| 888 |
+
},
|
| 889 |
+
{
|
| 890 |
+
"epoch": 1.28,
|
| 891 |
+
"eval_entropy": 2.318764512355511,
|
| 892 |
+
"eval_loss": 2.570997953414917,
|
| 893 |
+
"eval_mean_token_accuracy": 0.4826100170612335,
|
| 894 |
+
"eval_num_tokens": 1676241.0,
|
| 895 |
+
"eval_runtime": 0.6801,
|
| 896 |
+
"eval_samples_per_second": 147.041,
|
| 897 |
+
"eval_steps_per_second": 19.115,
|
| 898 |
+
"step": 800
|
| 899 |
+
},
|
| 900 |
+
{
|
| 901 |
+
"entropy": 2.224538028240204,
|
| 902 |
+
"epoch": 1.296,
|
| 903 |
+
"grad_norm": 0.9554702043533325,
|
| 904 |
+
"learning_rate": 5.8522813601929324e-05,
|
| 905 |
+
"loss": 2.0907,
|
| 906 |
+
"mean_token_accuracy": 0.5463516399264335,
|
| 907 |
+
"num_tokens": 1696836.0,
|
| 908 |
+
"step": 810
|
| 909 |
+
},
|
| 910 |
+
{
|
| 911 |
+
"entropy": 2.1161206275224687,
|
| 912 |
+
"epoch": 1.312,
|
| 913 |
+
"grad_norm": 0.9823859333992004,
|
| 914 |
+
"learning_rate": 5.617841757494762e-05,
|
| 915 |
+
"loss": 1.954,
|
| 916 |
+
"mean_token_accuracy": 0.5701966688036919,
|
| 917 |
+
"num_tokens": 1717750.0,
|
| 918 |
+
"step": 820
|
| 919 |
+
},
|
| 920 |
+
{
|
| 921 |
+
"entropy": 2.187773588299751,
|
| 922 |
+
"epoch": 1.328,
|
| 923 |
+
"grad_norm": 0.9549944996833801,
|
| 924 |
+
"learning_rate": 5.386346293357242e-05,
|
| 925 |
+
"loss": 2.0556,
|
| 926 |
+
"mean_token_accuracy": 0.5585292562842369,
|
| 927 |
+
"num_tokens": 1738383.0,
|
| 928 |
+
"step": 830
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"entropy": 2.142790347337723,
|
| 932 |
+
"epoch": 1.3439999999999999,
|
| 933 |
+
"grad_norm": 1.1180299520492554,
|
| 934 |
+
"learning_rate": 5.15795049724435e-05,
|
| 935 |
+
"loss": 1.9954,
|
| 936 |
+
"mean_token_accuracy": 0.561890059709549,
|
| 937 |
+
"num_tokens": 1757450.0,
|
| 938 |
+
"step": 840
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"entropy": 2.137694215774536,
|
| 942 |
+
"epoch": 1.3599999999999999,
|
| 943 |
+
"grad_norm": 0.8447200059890747,
|
| 944 |
+
"learning_rate": 4.9328078161183464e-05,
|
| 945 |
+
"loss": 1.9993,
|
| 946 |
+
"mean_token_accuracy": 0.5649342782795429,
|
| 947 |
+
"num_tokens": 1777797.0,
|
| 948 |
+
"step": 850
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"entropy": 2.1595336198806763,
|
| 952 |
+
"epoch": 1.376,
|
| 953 |
+
"grad_norm": 1.0689432621002197,
|
| 954 |
+
"learning_rate": 4.7110695113469085e-05,
|
| 955 |
+
"loss": 2.0498,
|
| 956 |
+
"mean_token_accuracy": 0.5661192789673806,
|
| 957 |
+
"num_tokens": 1799140.0,
|
| 958 |
+
"step": 860
|
| 959 |
+
},
|
| 960 |
+
{
|
| 961 |
+
"entropy": 2.1561016231775283,
|
| 962 |
+
"epoch": 1.392,
|
| 963 |
+
"grad_norm": 0.8344489336013794,
|
| 964 |
+
"learning_rate": 4.492884557078688e-05,
|
| 965 |
+
"loss": 2.0489,
|
| 966 |
+
"mean_token_accuracy": 0.5576602071523666,
|
| 967 |
+
"num_tokens": 1820412.0,
|
| 968 |
+
"step": 870
|
| 969 |
+
},
|
| 970 |
+
{
|
| 971 |
+
"entropy": 2.1310487359762194,
|
| 972 |
+
"epoch": 1.408,
|
| 973 |
+
"grad_norm": 0.8696361184120178,
|
| 974 |
+
"learning_rate": 4.278399540155536e-05,
|
| 975 |
+
"loss": 1.9619,
|
| 976 |
+
"mean_token_accuracy": 0.5695676565170288,
|
| 977 |
+
"num_tokens": 1841046.0,
|
| 978 |
+
"step": 880
|
| 979 |
+
},
|
| 980 |
+
{
|
| 981 |
+
"entropy": 2.093841528892517,
|
| 982 |
+
"epoch": 1.424,
|
| 983 |
+
"grad_norm": 0.9314078688621521,
|
| 984 |
+
"learning_rate": 4.0677585616285774e-05,
|
| 985 |
+
"loss": 1.9841,
|
| 986 |
+
"mean_token_accuracy": 0.5746666699647903,
|
| 987 |
+
"num_tokens": 1861480.0,
|
| 988 |
+
"step": 890
|
| 989 |
+
},
|
| 990 |
+
{
|
| 991 |
+
"entropy": 2.175295126438141,
|
| 992 |
+
"epoch": 1.44,
|
| 993 |
+
"grad_norm": 0.7976773977279663,
|
| 994 |
+
"learning_rate": 3.861103139944449e-05,
|
| 995 |
+
"loss": 2.0547,
|
| 996 |
+
"mean_token_accuracy": 0.5568442553281784,
|
| 997 |
+
"num_tokens": 1886031.0,
|
| 998 |
+
"step": 900
|
| 999 |
+
},
|
| 1000 |
+
{
|
| 1001 |
+
"epoch": 1.44,
|
| 1002 |
+
"eval_entropy": 2.285807416989253,
|
| 1003 |
+
"eval_loss": 2.586611032485962,
|
| 1004 |
+
"eval_mean_token_accuracy": 0.48370331755051243,
|
| 1005 |
+
"eval_num_tokens": 1886031.0,
|
| 1006 |
+
"eval_runtime": 0.6775,
|
| 1007 |
+
"eval_samples_per_second": 147.605,
|
| 1008 |
+
"eval_steps_per_second": 19.189,
|
| 1009 |
+
"step": 900
|
| 1010 |
+
},
|
| 1011 |
+
{
|
| 1012 |
+
"entropy": 2.1779676496982576,
|
| 1013 |
+
"epoch": 1.456,
|
| 1014 |
+
"grad_norm": 1.0191247463226318,
|
| 1015 |
+
"learning_rate": 3.658572115866541e-05,
|
| 1016 |
+
"loss": 2.0442,
|
| 1017 |
+
"mean_token_accuracy": 0.5562367714941502,
|
| 1018 |
+
"num_tokens": 1905543.0,
|
| 1019 |
+
"step": 910
|
| 1020 |
+
},
|
| 1021 |
+
{
|
| 1022 |
+
"entropy": 2.1235474199056625,
|
| 1023 |
+
"epoch": 1.472,
|
| 1024 |
+
"grad_norm": 0.811194896697998,
|
| 1025 |
+
"learning_rate": 3.4603015591953395e-05,
|
| 1026 |
+
"loss": 2.0,
|
| 1027 |
+
"mean_token_accuracy": 0.5647696286439896,
|
| 1028 |
+
"num_tokens": 1928338.0,
|
| 1029 |
+
"step": 920
|
| 1030 |
+
},
|
| 1031 |
+
{
|
| 1032 |
+
"entropy": 2.2050245642662047,
|
| 1033 |
+
"epoch": 1.488,
|
| 1034 |
+
"grad_norm": 1.0259207487106323,
|
| 1035 |
+
"learning_rate": 3.266424677350346e-05,
|
| 1036 |
+
"loss": 2.076,
|
| 1037 |
+
"mean_token_accuracy": 0.5486814387142658,
|
| 1038 |
+
"num_tokens": 1948809.0,
|
| 1039 |
+
"step": 930
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"entropy": 2.13138128221035,
|
| 1043 |
+
"epoch": 1.504,
|
| 1044 |
+
"grad_norm": 0.9353992342948914,
|
| 1045 |
+
"learning_rate": 3.077071725875116e-05,
|
| 1046 |
+
"loss": 1.9515,
|
| 1047 |
+
"mean_token_accuracy": 0.571763351559639,
|
| 1048 |
+
"num_tokens": 1969617.0,
|
| 1049 |
+
"step": 940
|
| 1050 |
+
},
|
| 1051 |
+
{
|
| 1052 |
+
"entropy": 2.1393859505653383,
|
| 1053 |
+
"epoch": 1.52,
|
| 1054 |
+
"grad_norm": 0.8784123659133911,
|
| 1055 |
+
"learning_rate": 2.8923699209255284e-05,
|
| 1056 |
+
"loss": 1.997,
|
| 1057 |
+
"mean_token_accuracy": 0.5623179793357849,
|
| 1058 |
+
"num_tokens": 1991588.0,
|
| 1059 |
+
"step": 950
|
| 1060 |
+
},
|
| 1061 |
+
{
|
| 1062 |
+
"entropy": 2.1316426753997804,
|
| 1063 |
+
"epoch": 1.536,
|
| 1064 |
+
"grad_norm": 0.9279586672782898,
|
| 1065 |
+
"learning_rate": 2.712443353799984e-05,
|
| 1066 |
+
"loss": 1.9962,
|
| 1067 |
+
"mean_token_accuracy": 0.5668175779283047,
|
| 1068 |
+
"num_tokens": 2013970.0,
|
| 1069 |
+
"step": 960
|
| 1070 |
+
},
|
| 1071 |
+
{
|
| 1072 |
+
"entropy": 2.1412221670150755,
|
| 1073 |
+
"epoch": 1.552,
|
| 1074 |
+
"grad_norm": 1.0614557266235352,
|
| 1075 |
+
"learning_rate": 2.5374129075691265e-05,
|
| 1076 |
+
"loss": 1.981,
|
| 1077 |
+
"mean_token_accuracy": 0.5675079435110092,
|
| 1078 |
+
"num_tokens": 2033870.0,
|
| 1079 |
+
"step": 970
|
| 1080 |
+
},
|
| 1081 |
+
{
|
| 1082 |
+
"entropy": 2.1519955545663834,
|
| 1083 |
+
"epoch": 1.568,
|
| 1084 |
+
"grad_norm": 1.0409959554672241,
|
| 1085 |
+
"learning_rate": 2.3673961758609152e-05,
|
| 1086 |
+
"loss": 2.0254,
|
| 1087 |
+
"mean_token_accuracy": 0.5568312801420688,
|
| 1088 |
+
"num_tokens": 2053742.0,
|
| 1089 |
+
"step": 980
|
| 1090 |
+
},
|
| 1091 |
+
{
|
| 1092 |
+
"entropy": 2.13378230035305,
|
| 1093 |
+
"epoch": 1.584,
|
| 1094 |
+
"grad_norm": 1.051721215248108,
|
| 1095 |
+
"learning_rate": 2.2025073838557454e-05,
|
| 1096 |
+
"loss": 1.9988,
|
| 1097 |
+
"mean_token_accuracy": 0.5596944905817509,
|
| 1098 |
+
"num_tokens": 2073771.0,
|
| 1099 |
+
"step": 990
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"entropy": 2.139891889691353,
|
| 1103 |
+
"epoch": 1.6,
|
| 1104 |
+
"grad_norm": 0.9190446138381958,
|
| 1105 |
+
"learning_rate": 2.0428573115446392e-05,
|
| 1106 |
+
"loss": 2.0098,
|
| 1107 |
+
"mean_token_accuracy": 0.5630866177380085,
|
| 1108 |
+
"num_tokens": 2093165.0,
|
| 1109 |
+
"step": 1000
|
| 1110 |
+
},
|
| 1111 |
+
{
|
| 1112 |
+
"epoch": 1.6,
|
| 1113 |
+
"eval_entropy": 2.29392801798307,
|
| 1114 |
+
"eval_loss": 2.5830881595611572,
|
| 1115 |
+
"eval_mean_token_accuracy": 0.48317546798632693,
|
| 1116 |
+
"eval_num_tokens": 2093165.0,
|
| 1117 |
+
"eval_runtime": 0.6748,
|
| 1118 |
+
"eval_samples_per_second": 148.201,
|
| 1119 |
+
"eval_steps_per_second": 19.266,
|
| 1120 |
+
"step": 1000
|
| 1121 |
+
},
|
| 1122 |
+
{
|
| 1123 |
+
"entropy": 2.152450978755951,
|
| 1124 |
+
"epoch": 1.616,
|
| 1125 |
+
"grad_norm": 0.9870165586471558,
|
| 1126 |
+
"learning_rate": 1.8885532193020704e-05,
|
| 1127 |
+
"loss": 2.0398,
|
| 1128 |
+
"mean_token_accuracy": 0.5565521039068699,
|
| 1129 |
+
"num_tokens": 2113836.0,
|
| 1130 |
+
"step": 1010
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"entropy": 2.1866767942905425,
|
| 1134 |
+
"epoch": 1.6320000000000001,
|
| 1135 |
+
"grad_norm": 0.9748448133468628,
|
| 1136 |
+
"learning_rate": 1.739698775823442e-05,
|
| 1137 |
+
"loss": 2.0618,
|
| 1138 |
+
"mean_token_accuracy": 0.55533082857728,
|
| 1139 |
+
"num_tokens": 2135597.0,
|
| 1140 |
+
"step": 1020
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"entropy": 2.1291246324777604,
|
| 1144 |
+
"epoch": 1.6480000000000001,
|
| 1145 |
+
"grad_norm": 0.9417283535003662,
|
| 1146 |
+
"learning_rate": 1.5963939884756042e-05,
|
| 1147 |
+
"loss": 2.0084,
|
| 1148 |
+
"mean_token_accuracy": 0.5552340872585774,
|
| 1149 |
+
"num_tokens": 2155871.0,
|
| 1150 |
+
"step": 1030
|
| 1151 |
+
},
|
| 1152 |
+
{
|
| 1153 |
+
"entropy": 2.1946566879749296,
|
| 1154 |
+
"epoch": 1.6640000000000001,
|
| 1155 |
+
"grad_norm": 0.8462656736373901,
|
| 1156 |
+
"learning_rate": 1.4587351361072454e-05,
|
| 1157 |
+
"loss": 2.0577,
|
| 1158 |
+
"mean_token_accuracy": 0.5526181682944298,
|
| 1159 |
+
"num_tokens": 2177686.0,
|
| 1160 |
+
"step": 1040
|
| 1161 |
+
},
|
| 1162 |
+
{
|
| 1163 |
+
"entropy": 2.1540873527526854,
|
| 1164 |
+
"epoch": 1.6800000000000002,
|
| 1165 |
+
"grad_norm": 0.8386402726173401,
|
| 1166 |
+
"learning_rate": 1.326814704364262e-05,
|
| 1167 |
+
"loss": 1.9869,
|
| 1168 |
+
"mean_token_accuracy": 0.5597876310348511,
|
| 1169 |
+
"num_tokens": 2197554.0,
|
| 1170 |
+
"step": 1050
|
| 1171 |
+
},
|
| 1172 |
+
{
|
| 1173 |
+
"entropy": 2.158621978759766,
|
| 1174 |
+
"epoch": 1.696,
|
| 1175 |
+
"grad_norm": 0.9277564287185669,
|
| 1176 |
+
"learning_rate": 1.2007213235535786e-05,
|
| 1177 |
+
"loss": 2.0627,
|
| 1178 |
+
"mean_token_accuracy": 0.5556139029562474,
|
| 1179 |
+
"num_tokens": 2216537.0,
|
| 1180 |
+
"step": 1060
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"entropy": 2.174393981695175,
|
| 1184 |
+
"epoch": 1.712,
|
| 1185 |
+
"grad_norm": 1.1009163856506348,
|
| 1186 |
+
"learning_rate": 1.0805397090971737e-05,
|
| 1187 |
+
"loss": 2.0276,
|
| 1188 |
+
"mean_token_accuracy": 0.562708406150341,
|
| 1189 |
+
"num_tokens": 2236200.0,
|
| 1190 |
+
"step": 1070
|
| 1191 |
+
},
|
| 1192 |
+
{
|
| 1193 |
+
"entropy": 2.1389470905065537,
|
| 1194 |
+
"epoch": 1.728,
|
| 1195 |
+
"grad_norm": 0.989471435546875,
|
| 1196 |
+
"learning_rate": 9.663506046162985e-06,
|
| 1197 |
+
"loss": 2.0102,
|
| 1198 |
+
"mean_token_accuracy": 0.5642252482473851,
|
| 1199 |
+
"num_tokens": 2258460.0,
|
| 1200 |
+
"step": 1080
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"entropy": 2.1603562027215957,
|
| 1204 |
+
"epoch": 1.744,
|
| 1205 |
+
"grad_norm": 1.0297486782073975,
|
| 1206 |
+
"learning_rate": 8.582307276841462e-06,
|
| 1207 |
+
"loss": 2.0182,
|
| 1208 |
+
"mean_token_accuracy": 0.5630522392690182,
|
| 1209 |
+
"num_tokens": 2278818.0,
|
| 1210 |
+
"step": 1090
|
| 1211 |
+
},
|
| 1212 |
+
{
|
| 1213 |
+
"entropy": 2.1662287533283235,
|
| 1214 |
+
"epoch": 1.76,
|
| 1215 |
+
"grad_norm": 0.8877721428871155,
|
| 1216 |
+
"learning_rate": 7.562527182833978e-06,
|
| 1217 |
+
"loss": 2.0168,
|
| 1218 |
+
"mean_token_accuracy": 0.563526850938797,
|
| 1219 |
+
"num_tokens": 2299692.0,
|
| 1220 |
+
"step": 1100
|
| 1221 |
+
},
|
| 1222 |
+
{
|
| 1223 |
+
"epoch": 1.76,
|
| 1224 |
+
"eval_entropy": 2.3022796649199266,
|
| 1225 |
+
"eval_loss": 2.5798184871673584,
|
| 1226 |
+
"eval_mean_token_accuracy": 0.4844009096805866,
|
| 1227 |
+
"eval_num_tokens": 2299692.0,
|
| 1228 |
+
"eval_runtime": 0.6747,
|
| 1229 |
+
"eval_samples_per_second": 148.214,
|
| 1230 |
+
"eval_steps_per_second": 19.268,
|
| 1231 |
+
"step": 1100
|
| 1232 |
+
},
|
| 1233 |
+
{
|
| 1234 |
+
"entropy": 2.186119019985199,
|
| 1235 |
+
"epoch": 1.776,
|
| 1236 |
+
"grad_norm": 1.1785519123077393,
|
| 1237 |
+
"learning_rate": 6.604850900032955e-06,
|
| 1238 |
+
"loss": 2.0263,
|
| 1239 |
+
"mean_token_accuracy": 0.5561132155358791,
|
| 1240 |
+
"num_tokens": 2320606.0,
|
| 1241 |
+
"step": 1110
|
| 1242 |
+
},
|
| 1243 |
+
{
|
| 1244 |
+
"entropy": 2.1382477432489395,
|
| 1245 |
+
"epoch": 1.792,
|
| 1246 |
+
"grad_norm": 0.9997260570526123,
|
| 1247 |
+
"learning_rate": 5.7099218400900716e-06,
|
| 1248 |
+
"loss": 2.0155,
|
| 1249 |
+
"mean_token_accuracy": 0.5585696510970592,
|
| 1250 |
+
"num_tokens": 2341589.0,
|
| 1251 |
+
"step": 1120
|
| 1252 |
+
},
|
| 1253 |
+
{
|
| 1254 |
+
"entropy": 2.1318988502025604,
|
| 1255 |
+
"epoch": 1.808,
|
| 1256 |
+
"grad_norm": 1.0082330703735352,
|
| 1257 |
+
"learning_rate": 4.87834125814235e-06,
|
| 1258 |
+
"loss": 2.013,
|
| 1259 |
+
"mean_token_accuracy": 0.562056128680706,
|
| 1260 |
+
"num_tokens": 2364065.0,
|
| 1261 |
+
"step": 1130
|
| 1262 |
+
},
|
| 1263 |
+
{
|
| 1264 |
+
"entropy": 2.1655119955539703,
|
| 1265 |
+
"epoch": 1.8239999999999998,
|
| 1266 |
+
"grad_norm": 0.8680001497268677,
|
| 1267 |
+
"learning_rate": 4.1106678488607495e-06,
|
| 1268 |
+
"loss": 2.0232,
|
| 1269 |
+
"mean_token_accuracy": 0.5640067130327224,
|
| 1270 |
+
"num_tokens": 2385547.0,
|
| 1271 |
+
"step": 1140
|
| 1272 |
+
},
|
| 1273 |
+
{
|
| 1274 |
+
"entropy": 2.133523789048195,
|
| 1275 |
+
"epoch": 1.8399999999999999,
|
| 1276 |
+
"grad_norm": 0.8609693050384521,
|
| 1277 |
+
"learning_rate": 3.40741737109318e-06,
|
| 1278 |
+
"loss": 1.971,
|
| 1279 |
+
"mean_token_accuracy": 0.5636379756033421,
|
| 1280 |
+
"num_tokens": 2406399.0,
|
| 1281 |
+
"step": 1150
|
| 1282 |
+
},
|
| 1283 |
+
{
|
| 1284 |
+
"entropy": 2.140376663208008,
|
| 1285 |
+
"epoch": 1.8559999999999999,
|
| 1286 |
+
"grad_norm": 0.917898952960968,
|
| 1287 |
+
"learning_rate": 2.7690623013533976e-06,
|
| 1288 |
+
"loss": 2.0089,
|
| 1289 |
+
"mean_token_accuracy": 0.5577343553304672,
|
| 1290 |
+
"num_tokens": 2425661.0,
|
| 1291 |
+
"step": 1160
|
| 1292 |
+
},
|
| 1293 |
+
{
|
| 1294 |
+
"entropy": 2.1588161110877992,
|
| 1295 |
+
"epoch": 1.8719999999999999,
|
| 1296 |
+
"grad_norm": 0.9883831739425659,
|
| 1297 |
+
"learning_rate": 2.1960315163894075e-06,
|
| 1298 |
+
"loss": 2.0176,
|
| 1299 |
+
"mean_token_accuracy": 0.5622549809515476,
|
| 1300 |
+
"num_tokens": 2445659.0,
|
| 1301 |
+
"step": 1170
|
| 1302 |
+
},
|
| 1303 |
+
{
|
| 1304 |
+
"entropy": 2.2101395189762116,
|
| 1305 |
+
"epoch": 1.888,
|
| 1306 |
+
"grad_norm": 0.7731896042823792,
|
| 1307 |
+
"learning_rate": 1.6887100050439587e-06,
|
| 1308 |
+
"loss": 2.0781,
|
| 1309 |
+
"mean_token_accuracy": 0.5513335958123207,
|
| 1310 |
+
"num_tokens": 2467209.0,
|
| 1311 |
+
"step": 1180
|
| 1312 |
+
},
|
| 1313 |
+
{
|
| 1314 |
+
"entropy": 2.124671292304993,
|
| 1315 |
+
"epoch": 1.904,
|
| 1316 |
+
"grad_norm": 0.8258634805679321,
|
| 1317 |
+
"learning_rate": 1.2474386096010039e-06,
|
| 1318 |
+
"loss": 1.986,
|
| 1319 |
+
"mean_token_accuracy": 0.5669601626694203,
|
| 1320 |
+
"num_tokens": 2489020.0,
|
| 1321 |
+
"step": 1190
|
| 1322 |
+
},
|
| 1323 |
+
{
|
| 1324 |
+
"entropy": 2.1453059643507,
|
| 1325 |
+
"epoch": 1.92,
|
| 1326 |
+
"grad_norm": 0.9933258295059204,
|
| 1327 |
+
"learning_rate": 8.725137967920738e-07,
|
| 1328 |
+
"loss": 2.0125,
|
| 1329 |
+
"mean_token_accuracy": 0.5601302161812782,
|
| 1330 |
+
"num_tokens": 2508813.0,
|
| 1331 |
+
"step": 1200
|
| 1332 |
+
},
|
| 1333 |
+
{
|
| 1334 |
+
"epoch": 1.92,
|
| 1335 |
+
"eval_entropy": 2.2944095684931827,
|
| 1336 |
+
"eval_loss": 2.5806496143341064,
|
| 1337 |
+
"eval_mean_token_accuracy": 0.48303504632069516,
|
| 1338 |
+
"eval_num_tokens": 2508813.0,
|
| 1339 |
+
"eval_runtime": 0.6714,
|
| 1340 |
+
"eval_samples_per_second": 148.939,
|
| 1341 |
+
"eval_steps_per_second": 19.362,
|
| 1342 |
+
"step": 1200
|
| 1343 |
+
},
|
| 1344 |
+
{
|
| 1345 |
+
"entropy": 2.151768389344215,
|
| 1346 |
+
"epoch": 1.936,
|
| 1347 |
+
"grad_norm": 0.8982884287834167,
|
| 1348 |
+
"learning_rate": 5.64187458615939e-07,
|
| 1349 |
+
"loss": 1.9924,
|
| 1350 |
+
"mean_token_accuracy": 0.5615834034979343,
|
| 1351 |
+
"num_tokens": 2528858.0,
|
| 1352 |
+
"step": 1210
|
| 1353 |
+
},
|
| 1354 |
+
{
|
| 1355 |
+
"entropy": 2.140746533870697,
|
| 1356 |
+
"epoch": 1.952,
|
| 1357 |
+
"grad_norm": 1.1360710859298706,
|
| 1358 |
+
"learning_rate": 3.2266674310589273e-07,
|
| 1359 |
+
"loss": 1.9953,
|
| 1360 |
+
"mean_token_accuracy": 0.5639697797596455,
|
| 1361 |
+
"num_tokens": 2548500.0,
|
| 1362 |
+
"step": 1220
|
| 1363 |
+
},
|
| 1364 |
+
{
|
| 1365 |
+
"entropy": 2.2176344990730286,
|
| 1366 |
+
"epoch": 1.968,
|
| 1367 |
+
"grad_norm": 1.0805954933166504,
|
| 1368 |
+
"learning_rate": 1.481139151579991e-07,
|
| 1369 |
+
"loss": 2.0792,
|
| 1370 |
+
"mean_token_accuracy": 0.5535091876983642,
|
| 1371 |
+
"num_tokens": 2568981.0,
|
| 1372 |
+
"step": 1230
|
| 1373 |
+
},
|
| 1374 |
+
{
|
| 1375 |
+
"entropy": 2.1372744172811506,
|
| 1376 |
+
"epoch": 1.984,
|
| 1377 |
+
"grad_norm": 0.936008870601654,
|
| 1378 |
+
"learning_rate": 4.064624751394242e-08,
|
| 1379 |
+
"loss": 2.0289,
|
| 1380 |
+
"mean_token_accuracy": 0.5637350581586361,
|
| 1381 |
+
"num_tokens": 2591580.0,
|
| 1382 |
+
"step": 1240
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"entropy": 2.156083407998085,
|
| 1386 |
+
"epoch": 2.0,
|
| 1387 |
+
"grad_norm": 0.864385724067688,
|
| 1388 |
+
"learning_rate": 3.3594197175190745e-10,
|
| 1389 |
+
"loss": 2.0083,
|
| 1390 |
+
"mean_token_accuracy": 0.5578774020075798,
|
| 1391 |
+
"num_tokens": 2612778.0,
|
| 1392 |
+
"step": 1250
|
| 1393 |
+
}
|
| 1394 |
+
],
|
| 1395 |
+
"logging_steps": 10,
|
| 1396 |
+
"max_steps": 1250,
|
| 1397 |
+
"num_input_tokens_seen": 0,
|
| 1398 |
+
"num_train_epochs": 2,
|
| 1399 |
+
"save_steps": 500,
|
| 1400 |
+
"stateful_callbacks": {
|
| 1401 |
+
"TrainerControl": {
|
| 1402 |
+
"args": {
|
| 1403 |
+
"should_epoch_stop": false,
|
| 1404 |
+
"should_evaluate": false,
|
| 1405 |
+
"should_log": false,
|
| 1406 |
+
"should_save": true,
|
| 1407 |
+
"should_training_stop": true
|
| 1408 |
+
},
|
| 1409 |
+
"attributes": {}
|
| 1410 |
+
}
|
| 1411 |
+
},
|
| 1412 |
+
"total_flos": 7.51189440079872e+16,
|
| 1413 |
+
"train_batch_size": 4,
|
| 1414 |
+
"trial_name": null,
|
| 1415 |
+
"trial_params": null
|
| 1416 |
+
}
|
checkpoint-1250/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:879f340dca9a81b05ff3f767198bc8a294c35f0efe288b9f690178d342307834
|
| 3 |
+
size 6353
|
checkpoint-625/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: EleutherAI/pythia-2.8b
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:EleutherAI/pythia-2.8b
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.0
|
checkpoint-625/adapter_config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "EleutherAI/pythia-2.8b",
|
| 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 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.0",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 64,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"dense",
|
| 33 |
+
"query_key_value",
|
| 34 |
+
"dense_h_to_4h",
|
| 35 |
+
"dense_4h_to_h"
|
| 36 |
+
],
|
| 37 |
+
"target_parameters": null,
|
| 38 |
+
"task_type": "CAUSAL_LM",
|
| 39 |
+
"trainable_token_indices": null,
|
| 40 |
+
"use_dora": false,
|
| 41 |
+
"use_qalora": false,
|
| 42 |
+
"use_rslora": false
|
| 43 |
+
}
|
checkpoint-625/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ccfefe7a2064e3395163c868acd08121de22856abb4e814fb07586fc66238ab
|
| 3 |
+
size 335580648
|
checkpoint-625/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0714aa86711ce6e4b13e70c183a3c1fb92bd2bc36ab911c3377f1228f56aec0
|
| 3 |
+
size 671308491
|
checkpoint-625/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4182c44906c914758f2e5dea2e01a62e3ccd3f25d5ec02d800c4cd4da65dfef4
|
| 3 |
+
size 14645
|
checkpoint-625/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:552da27b2294ad9b7370549845686ae6db1e70f2682382baac9dc5c4fe33d3c5
|
| 3 |
+
size 1465
|
checkpoint-625/special_tokens_map.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|endoftext|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|endoftext|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": "<|endoftext|>",
|
| 17 |
+
"unk_token": {
|
| 18 |
+
"content": "<|endoftext|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
}
|
| 24 |
+
}
|
checkpoint-625/tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-625/tokenizer_config.json
ADDED
|
@@ -0,0 +1,215 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_eos_token": false,
|
| 4 |
+
"add_prefix_space": false,
|
| 5 |
+
"added_tokens_decoder": {
|
| 6 |
+
"0": {
|
| 7 |
+
"content": "<|endoftext|>",
|
| 8 |
+
"lstrip": false,
|
| 9 |
+
"normalized": false,
|
| 10 |
+
"rstrip": false,
|
| 11 |
+
"single_word": false,
|
| 12 |
+
"special": true
|
| 13 |
+
},
|
| 14 |
+
"1": {
|
| 15 |
+
"content": "<|padding|>",
|
| 16 |
+
"lstrip": false,
|
| 17 |
+
"normalized": false,
|
| 18 |
+
"rstrip": false,
|
| 19 |
+
"single_word": false,
|
| 20 |
+
"special": true
|
| 21 |
+
},
|
| 22 |
+
"50254": {
|
| 23 |
+
"content": " ",
|
| 24 |
+
"lstrip": false,
|
| 25 |
+
"normalized": true,
|
| 26 |
+
"rstrip": false,
|
| 27 |
+
"single_word": false,
|
| 28 |
+
"special": false
|
| 29 |
+
},
|
| 30 |
+
"50255": {
|
| 31 |
+
"content": " ",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false,
|
| 36 |
+
"special": false
|
| 37 |
+
},
|
| 38 |
+
"50256": {
|
| 39 |
+
"content": " ",
|
| 40 |
+
"lstrip": false,
|
| 41 |
+
"normalized": true,
|
| 42 |
+
"rstrip": false,
|
| 43 |
+
"single_word": false,
|
| 44 |
+
"special": false
|
| 45 |
+
},
|
| 46 |
+
"50257": {
|
| 47 |
+
"content": " ",
|
| 48 |
+
"lstrip": false,
|
| 49 |
+
"normalized": true,
|
| 50 |
+
"rstrip": false,
|
| 51 |
+
"single_word": false,
|
| 52 |
+
"special": false
|
| 53 |
+
},
|
| 54 |
+
"50258": {
|
| 55 |
+
"content": " ",
|
| 56 |
+
"lstrip": false,
|
| 57 |
+
"normalized": true,
|
| 58 |
+
"rstrip": false,
|
| 59 |
+
"single_word": false,
|
| 60 |
+
"special": false
|
| 61 |
+
},
|
| 62 |
+
"50259": {
|
| 63 |
+
"content": " ",
|
| 64 |
+
"lstrip": false,
|
| 65 |
+
"normalized": true,
|
| 66 |
+
"rstrip": false,
|
| 67 |
+
"single_word": false,
|
| 68 |
+
"special": false
|
| 69 |
+
},
|
| 70 |
+
"50260": {
|
| 71 |
+
"content": " ",
|
| 72 |
+
"lstrip": false,
|
| 73 |
+
"normalized": true,
|
| 74 |
+
"rstrip": false,
|
| 75 |
+
"single_word": false,
|
| 76 |
+
"special": false
|
| 77 |
+
},
|
| 78 |
+
"50261": {
|
| 79 |
+
"content": " ",
|
| 80 |
+
"lstrip": false,
|
| 81 |
+
"normalized": true,
|
| 82 |
+
"rstrip": false,
|
| 83 |
+
"single_word": false,
|
| 84 |
+
"special": false
|
| 85 |
+
},
|
| 86 |
+
"50262": {
|
| 87 |
+
"content": " ",
|
| 88 |
+
"lstrip": false,
|
| 89 |
+
"normalized": true,
|
| 90 |
+
"rstrip": false,
|
| 91 |
+
"single_word": false,
|
| 92 |
+
"special": false
|
| 93 |
+
},
|
| 94 |
+
"50263": {
|
| 95 |
+
"content": " ",
|
| 96 |
+
"lstrip": false,
|
| 97 |
+
"normalized": true,
|
| 98 |
+
"rstrip": false,
|
| 99 |
+
"single_word": false,
|
| 100 |
+
"special": false
|
| 101 |
+
},
|
| 102 |
+
"50264": {
|
| 103 |
+
"content": " ",
|
| 104 |
+
"lstrip": false,
|
| 105 |
+
"normalized": true,
|
| 106 |
+
"rstrip": false,
|
| 107 |
+
"single_word": false,
|
| 108 |
+
"special": false
|
| 109 |
+
},
|
| 110 |
+
"50265": {
|
| 111 |
+
"content": " ",
|
| 112 |
+
"lstrip": false,
|
| 113 |
+
"normalized": true,
|
| 114 |
+
"rstrip": false,
|
| 115 |
+
"single_word": false,
|
| 116 |
+
"special": false
|
| 117 |
+
},
|
| 118 |
+
"50266": {
|
| 119 |
+
"content": " ",
|
| 120 |
+
"lstrip": false,
|
| 121 |
+
"normalized": true,
|
| 122 |
+
"rstrip": false,
|
| 123 |
+
"single_word": false,
|
| 124 |
+
"special": false
|
| 125 |
+
},
|
| 126 |
+
"50267": {
|
| 127 |
+
"content": " ",
|
| 128 |
+
"lstrip": false,
|
| 129 |
+
"normalized": true,
|
| 130 |
+
"rstrip": false,
|
| 131 |
+
"single_word": false,
|
| 132 |
+
"special": false
|
| 133 |
+
},
|
| 134 |
+
"50268": {
|
| 135 |
+
"content": " ",
|
| 136 |
+
"lstrip": false,
|
| 137 |
+
"normalized": true,
|
| 138 |
+
"rstrip": false,
|
| 139 |
+
"single_word": false,
|
| 140 |
+
"special": false
|
| 141 |
+
},
|
| 142 |
+
"50269": {
|
| 143 |
+
"content": " ",
|
| 144 |
+
"lstrip": false,
|
| 145 |
+
"normalized": true,
|
| 146 |
+
"rstrip": false,
|
| 147 |
+
"single_word": false,
|
| 148 |
+
"special": false
|
| 149 |
+
},
|
| 150 |
+
"50270": {
|
| 151 |
+
"content": " ",
|
| 152 |
+
"lstrip": false,
|
| 153 |
+
"normalized": true,
|
| 154 |
+
"rstrip": false,
|
| 155 |
+
"single_word": false,
|
| 156 |
+
"special": false
|
| 157 |
+
},
|
| 158 |
+
"50271": {
|
| 159 |
+
"content": " ",
|
| 160 |
+
"lstrip": false,
|
| 161 |
+
"normalized": true,
|
| 162 |
+
"rstrip": false,
|
| 163 |
+
"single_word": false,
|
| 164 |
+
"special": false
|
| 165 |
+
},
|
| 166 |
+
"50272": {
|
| 167 |
+
"content": " ",
|
| 168 |
+
"lstrip": false,
|
| 169 |
+
"normalized": true,
|
| 170 |
+
"rstrip": false,
|
| 171 |
+
"single_word": false,
|
| 172 |
+
"special": false
|
| 173 |
+
},
|
| 174 |
+
"50273": {
|
| 175 |
+
"content": " ",
|
| 176 |
+
"lstrip": false,
|
| 177 |
+
"normalized": true,
|
| 178 |
+
"rstrip": false,
|
| 179 |
+
"single_word": false,
|
| 180 |
+
"special": false
|
| 181 |
+
},
|
| 182 |
+
"50274": {
|
| 183 |
+
"content": " ",
|
| 184 |
+
"lstrip": false,
|
| 185 |
+
"normalized": true,
|
| 186 |
+
"rstrip": false,
|
| 187 |
+
"single_word": false,
|
| 188 |
+
"special": false
|
| 189 |
+
},
|
| 190 |
+
"50275": {
|
| 191 |
+
"content": " ",
|
| 192 |
+
"lstrip": false,
|
| 193 |
+
"normalized": true,
|
| 194 |
+
"rstrip": false,
|
| 195 |
+
"single_word": false,
|
| 196 |
+
"special": false
|
| 197 |
+
},
|
| 198 |
+
"50276": {
|
| 199 |
+
"content": " ",
|
| 200 |
+
"lstrip": false,
|
| 201 |
+
"normalized": true,
|
| 202 |
+
"rstrip": false,
|
| 203 |
+
"single_word": false,
|
| 204 |
+
"special": false
|
| 205 |
+
}
|
| 206 |
+
},
|
| 207 |
+
"bos_token": "<|endoftext|>",
|
| 208 |
+
"clean_up_tokenization_spaces": false,
|
| 209 |
+
"eos_token": "<|endoftext|>",
|
| 210 |
+
"extra_special_tokens": {},
|
| 211 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 212 |
+
"pad_token": "<|endoftext|>",
|
| 213 |
+
"tokenizer_class": "GPTNeoXTokenizer",
|
| 214 |
+
"unk_token": "<|endoftext|>"
|
| 215 |
+
}
|
checkpoint-625/trainer_state.json
ADDED
|
@@ -0,0 +1,720 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.0,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 625,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 2.927482557296753,
|
| 14 |
+
"epoch": 0.016,
|
| 15 |
+
"grad_norm": 1.3331365585327148,
|
| 16 |
+
"learning_rate": 4.736842105263158e-05,
|
| 17 |
+
"loss": 2.9205,
|
| 18 |
+
"mean_token_accuracy": 0.42432610020041467,
|
| 19 |
+
"num_tokens": 21466.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 2.7787948846817017,
|
| 24 |
+
"epoch": 0.032,
|
| 25 |
+
"grad_norm": 1.0274778604507446,
|
| 26 |
+
"learning_rate": 0.0001,
|
| 27 |
+
"loss": 2.7193,
|
| 28 |
+
"mean_token_accuracy": 0.4424279421567917,
|
| 29 |
+
"num_tokens": 44204.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 2.7391002118587493,
|
| 34 |
+
"epoch": 0.048,
|
| 35 |
+
"grad_norm": 0.9975764751434326,
|
| 36 |
+
"learning_rate": 0.00015263157894736845,
|
| 37 |
+
"loss": 2.6235,
|
| 38 |
+
"mean_token_accuracy": 0.46106590032577516,
|
| 39 |
+
"num_tokens": 63982.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 2.69979213476181,
|
| 44 |
+
"epoch": 0.064,
|
| 45 |
+
"grad_norm": 0.9850704669952393,
|
| 46 |
+
"learning_rate": 0.00019999966405802826,
|
| 47 |
+
"loss": 2.5825,
|
| 48 |
+
"mean_token_accuracy": 0.4666088931262493,
|
| 49 |
+
"num_tokens": 84531.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 2.6038752436637878,
|
| 54 |
+
"epoch": 0.08,
|
| 55 |
+
"grad_norm": 0.9963482022285461,
|
| 56 |
+
"learning_rate": 0.00019995935375248606,
|
| 57 |
+
"loss": 2.5338,
|
| 58 |
+
"mean_token_accuracy": 0.4776237912476063,
|
| 59 |
+
"num_tokens": 104496.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 2.6396988570690154,
|
| 64 |
+
"epoch": 0.096,
|
| 65 |
+
"grad_norm": 0.8940117955207825,
|
| 66 |
+
"learning_rate": 0.000199851886084842,
|
| 67 |
+
"loss": 2.5631,
|
| 68 |
+
"mean_token_accuracy": 0.4724681057035923,
|
| 69 |
+
"num_tokens": 125055.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 2.624293786287308,
|
| 74 |
+
"epoch": 0.112,
|
| 75 |
+
"grad_norm": 0.7860824465751648,
|
| 76 |
+
"learning_rate": 0.0001996773332568941,
|
| 77 |
+
"loss": 2.5196,
|
| 78 |
+
"mean_token_accuracy": 0.47606254518032076,
|
| 79 |
+
"num_tokens": 145437.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 2.523421919345856,
|
| 84 |
+
"epoch": 0.128,
|
| 85 |
+
"grad_norm": 0.7847617268562317,
|
| 86 |
+
"learning_rate": 0.0001994358125413841,
|
| 87 |
+
"loss": 2.438,
|
| 88 |
+
"mean_token_accuracy": 0.4916156314313412,
|
| 89 |
+
"num_tokens": 164918.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 2.5297053515911103,
|
| 94 |
+
"epoch": 0.144,
|
| 95 |
+
"grad_norm": 0.8938744068145752,
|
| 96 |
+
"learning_rate": 0.00019912748620320794,
|
| 97 |
+
"loss": 2.477,
|
| 98 |
+
"mean_token_accuracy": 0.4871461518108845,
|
| 99 |
+
"num_tokens": 186602.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 2.549694550037384,
|
| 104 |
+
"epoch": 0.16,
|
| 105 |
+
"grad_norm": 0.8062200546264648,
|
| 106 |
+
"learning_rate": 0.00019875256139039902,
|
| 107 |
+
"loss": 2.4538,
|
| 108 |
+
"mean_token_accuracy": 0.48964215591549876,
|
| 109 |
+
"num_tokens": 208334.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.16,
|
| 114 |
+
"eval_entropy": 2.5797194150777965,
|
| 115 |
+
"eval_loss": 2.5428755283355713,
|
| 116 |
+
"eval_mean_token_accuracy": 0.48654096172406125,
|
| 117 |
+
"eval_num_tokens": 208334.0,
|
| 118 |
+
"eval_runtime": 0.7687,
|
| 119 |
+
"eval_samples_per_second": 130.09,
|
| 120 |
+
"eval_steps_per_second": 16.912,
|
| 121 |
+
"step": 100
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"entropy": 2.5369359493255614,
|
| 125 |
+
"epoch": 0.176,
|
| 126 |
+
"grad_norm": 0.7858350276947021,
|
| 127 |
+
"learning_rate": 0.00019831128999495606,
|
| 128 |
+
"loss": 2.451,
|
| 129 |
+
"mean_token_accuracy": 0.49068020582199096,
|
| 130 |
+
"num_tokens": 229573.0,
|
| 131 |
+
"step": 110
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"entropy": 2.622505843639374,
|
| 135 |
+
"epoch": 0.192,
|
| 136 |
+
"grad_norm": 0.853503942489624,
|
| 137 |
+
"learning_rate": 0.0001978039684836106,
|
| 138 |
+
"loss": 2.513,
|
| 139 |
+
"mean_token_accuracy": 0.4789179593324661,
|
| 140 |
+
"num_tokens": 250739.0,
|
| 141 |
+
"step": 120
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"entropy": 2.538061708211899,
|
| 145 |
+
"epoch": 0.208,
|
| 146 |
+
"grad_norm": 0.701422393321991,
|
| 147 |
+
"learning_rate": 0.00019723093769864663,
|
| 148 |
+
"loss": 2.4881,
|
| 149 |
+
"mean_token_accuracy": 0.485482332110405,
|
| 150 |
+
"num_tokens": 274310.0,
|
| 151 |
+
"step": 130
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"entropy": 2.633000612258911,
|
| 155 |
+
"epoch": 0.224,
|
| 156 |
+
"grad_norm": 0.8620439171791077,
|
| 157 |
+
"learning_rate": 0.00019659258262890683,
|
| 158 |
+
"loss": 2.5312,
|
| 159 |
+
"mean_token_accuracy": 0.4774567261338234,
|
| 160 |
+
"num_tokens": 295034.0,
|
| 161 |
+
"step": 140
|
| 162 |
+
},
|
| 163 |
+
{
|
| 164 |
+
"entropy": 2.501206773519516,
|
| 165 |
+
"epoch": 0.24,
|
| 166 |
+
"grad_norm": 0.8027399778366089,
|
| 167 |
+
"learning_rate": 0.00019588933215113926,
|
| 168 |
+
"loss": 2.4184,
|
| 169 |
+
"mean_token_accuracy": 0.4926304392516613,
|
| 170 |
+
"num_tokens": 315487.0,
|
| 171 |
+
"step": 150
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"entropy": 2.51069019138813,
|
| 175 |
+
"epoch": 0.256,
|
| 176 |
+
"grad_norm": 0.7904124855995178,
|
| 177 |
+
"learning_rate": 0.00019512165874185767,
|
| 178 |
+
"loss": 2.4492,
|
| 179 |
+
"mean_token_accuracy": 0.49440020844340327,
|
| 180 |
+
"num_tokens": 336958.0,
|
| 181 |
+
"step": 160
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"entropy": 2.5472387611865996,
|
| 185 |
+
"epoch": 0.272,
|
| 186 |
+
"grad_norm": 0.8189327120780945,
|
| 187 |
+
"learning_rate": 0.00019429007815990993,
|
| 188 |
+
"loss": 2.4559,
|
| 189 |
+
"mean_token_accuracy": 0.48381901159882545,
|
| 190 |
+
"num_tokens": 358616.0,
|
| 191 |
+
"step": 170
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"entropy": 2.547665923833847,
|
| 195 |
+
"epoch": 0.288,
|
| 196 |
+
"grad_norm": 0.7772969603538513,
|
| 197 |
+
"learning_rate": 0.00019339514909996706,
|
| 198 |
+
"loss": 2.4706,
|
| 199 |
+
"mean_token_accuracy": 0.4824284970760345,
|
| 200 |
+
"num_tokens": 379872.0,
|
| 201 |
+
"step": 180
|
| 202 |
+
},
|
| 203 |
+
{
|
| 204 |
+
"entropy": 2.504627192020416,
|
| 205 |
+
"epoch": 0.304,
|
| 206 |
+
"grad_norm": 0.6993403434753418,
|
| 207 |
+
"learning_rate": 0.000192437472817166,
|
| 208 |
+
"loss": 2.4443,
|
| 209 |
+
"mean_token_accuracy": 0.4916023284196854,
|
| 210 |
+
"num_tokens": 400768.0,
|
| 211 |
+
"step": 190
|
| 212 |
+
},
|
| 213 |
+
{
|
| 214 |
+
"entropy": 2.5959001183509827,
|
| 215 |
+
"epoch": 0.32,
|
| 216 |
+
"grad_norm": 0.8900535106658936,
|
| 217 |
+
"learning_rate": 0.00019141769272315858,
|
| 218 |
+
"loss": 2.5256,
|
| 219 |
+
"mean_token_accuracy": 0.4826003320515156,
|
| 220 |
+
"num_tokens": 420318.0,
|
| 221 |
+
"step": 200
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"epoch": 0.32,
|
| 225 |
+
"eval_entropy": 2.615577771113469,
|
| 226 |
+
"eval_loss": 2.544278144836426,
|
| 227 |
+
"eval_mean_token_accuracy": 0.4823318009193127,
|
| 228 |
+
"eval_num_tokens": 420318.0,
|
| 229 |
+
"eval_runtime": 0.6723,
|
| 230 |
+
"eval_samples_per_second": 148.739,
|
| 231 |
+
"eval_steps_per_second": 19.336,
|
| 232 |
+
"step": 200
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"entropy": 2.5907178699970244,
|
| 236 |
+
"epoch": 0.336,
|
| 237 |
+
"grad_norm": 0.7852405309677124,
|
| 238 |
+
"learning_rate": 0.00019033649395383702,
|
| 239 |
+
"loss": 2.5025,
|
| 240 |
+
"mean_token_accuracy": 0.48569325879216196,
|
| 241 |
+
"num_tokens": 440493.0,
|
| 242 |
+
"step": 210
|
| 243 |
+
},
|
| 244 |
+
{
|
| 245 |
+
"entropy": 2.5373390048742293,
|
| 246 |
+
"epoch": 0.352,
|
| 247 |
+
"grad_norm": 0.8513323664665222,
|
| 248 |
+
"learning_rate": 0.00018919460290902826,
|
| 249 |
+
"loss": 2.4644,
|
| 250 |
+
"mean_token_accuracy": 0.48737777322530745,
|
| 251 |
+
"num_tokens": 460347.0,
|
| 252 |
+
"step": 220
|
| 253 |
+
},
|
| 254 |
+
{
|
| 255 |
+
"entropy": 2.5982253909111024,
|
| 256 |
+
"epoch": 0.368,
|
| 257 |
+
"grad_norm": 0.7951892614364624,
|
| 258 |
+
"learning_rate": 0.00018799278676446423,
|
| 259 |
+
"loss": 2.5088,
|
| 260 |
+
"mean_token_accuracy": 0.4845408618450165,
|
| 261 |
+
"num_tokens": 479686.0,
|
| 262 |
+
"step": 230
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"entropy": 2.5408327341079713,
|
| 266 |
+
"epoch": 0.384,
|
| 267 |
+
"grad_norm": 0.818739652633667,
|
| 268 |
+
"learning_rate": 0.0001867318529563574,
|
| 269 |
+
"loss": 2.4453,
|
| 270 |
+
"mean_token_accuracy": 0.49112383723258973,
|
| 271 |
+
"num_tokens": 499382.0,
|
| 272 |
+
"step": 240
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"entropy": 2.566703599691391,
|
| 276 |
+
"epoch": 0.4,
|
| 277 |
+
"grad_norm": 0.8289343118667603,
|
| 278 |
+
"learning_rate": 0.00018541264863892754,
|
| 279 |
+
"loss": 2.5047,
|
| 280 |
+
"mean_token_accuracy": 0.48281258195638654,
|
| 281 |
+
"num_tokens": 520865.0,
|
| 282 |
+
"step": 250
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"entropy": 2.522556847333908,
|
| 286 |
+
"epoch": 0.416,
|
| 287 |
+
"grad_norm": 0.9309546947479248,
|
| 288 |
+
"learning_rate": 0.000184036060115244,
|
| 289 |
+
"loss": 2.4434,
|
| 290 |
+
"mean_token_accuracy": 0.4828334227204323,
|
| 291 |
+
"num_tokens": 540616.0,
|
| 292 |
+
"step": 260
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"entropy": 2.5191095739603044,
|
| 296 |
+
"epoch": 0.432,
|
| 297 |
+
"grad_norm": 0.7696341276168823,
|
| 298 |
+
"learning_rate": 0.00018260301224176558,
|
| 299 |
+
"loss": 2.4318,
|
| 300 |
+
"mean_token_accuracy": 0.4892562575638294,
|
| 301 |
+
"num_tokens": 561098.0,
|
| 302 |
+
"step": 270
|
| 303 |
+
},
|
| 304 |
+
{
|
| 305 |
+
"entropy": 2.5569592356681823,
|
| 306 |
+
"epoch": 0.448,
|
| 307 |
+
"grad_norm": 0.7310771346092224,
|
| 308 |
+
"learning_rate": 0.00018111446780697929,
|
| 309 |
+
"loss": 2.505,
|
| 310 |
+
"mean_token_accuracy": 0.476550355553627,
|
| 311 |
+
"num_tokens": 581527.0,
|
| 312 |
+
"step": 280
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"entropy": 2.6550574243068694,
|
| 316 |
+
"epoch": 0.464,
|
| 317 |
+
"grad_norm": 0.8539873957633972,
|
| 318 |
+
"learning_rate": 0.00017957142688455362,
|
| 319 |
+
"loss": 2.5309,
|
| 320 |
+
"mean_token_accuracy": 0.479371577501297,
|
| 321 |
+
"num_tokens": 601002.0,
|
| 322 |
+
"step": 290
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"entropy": 2.5720873057842253,
|
| 326 |
+
"epoch": 0.48,
|
| 327 |
+
"grad_norm": 0.7261855006217957,
|
| 328 |
+
"learning_rate": 0.00017797492616144256,
|
| 329 |
+
"loss": 2.5289,
|
| 330 |
+
"mean_token_accuracy": 0.4779372848570347,
|
| 331 |
+
"num_tokens": 621836.0,
|
| 332 |
+
"step": 300
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.48,
|
| 336 |
+
"eval_entropy": 2.58707464658297,
|
| 337 |
+
"eval_loss": 2.5298879146575928,
|
| 338 |
+
"eval_mean_token_accuracy": 0.4877227544784546,
|
| 339 |
+
"eval_num_tokens": 621836.0,
|
| 340 |
+
"eval_runtime": 0.6775,
|
| 341 |
+
"eval_samples_per_second": 147.608,
|
| 342 |
+
"eval_steps_per_second": 19.189,
|
| 343 |
+
"step": 300
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"entropy": 2.56911381483078,
|
| 347 |
+
"epoch": 0.496,
|
| 348 |
+
"grad_norm": 0.8215358257293701,
|
| 349 |
+
"learning_rate": 0.00017632603824139085,
|
| 350 |
+
"loss": 2.4587,
|
| 351 |
+
"mean_token_accuracy": 0.4831582002341747,
|
| 352 |
+
"num_tokens": 642910.0,
|
| 353 |
+
"step": 310
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"entropy": 2.518597739934921,
|
| 357 |
+
"epoch": 0.512,
|
| 358 |
+
"grad_norm": 0.7745339274406433,
|
| 359 |
+
"learning_rate": 0.00017462587092430875,
|
| 360 |
+
"loss": 2.4552,
|
| 361 |
+
"mean_token_accuracy": 0.48742511570453645,
|
| 362 |
+
"num_tokens": 665281.0,
|
| 363 |
+
"step": 320
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"entropy": 2.5539629220962525,
|
| 367 |
+
"epoch": 0.528,
|
| 368 |
+
"grad_norm": 1.3013852834701538,
|
| 369 |
+
"learning_rate": 0.00017287556646200018,
|
| 370 |
+
"loss": 2.5049,
|
| 371 |
+
"mean_token_accuracy": 0.48348471373319624,
|
| 372 |
+
"num_tokens": 686496.0,
|
| 373 |
+
"step": 330
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"entropy": 2.549721211194992,
|
| 377 |
+
"epoch": 0.544,
|
| 378 |
+
"grad_norm": 0.9040252566337585,
|
| 379 |
+
"learning_rate": 0.00017107630079074478,
|
| 380 |
+
"loss": 2.4749,
|
| 381 |
+
"mean_token_accuracy": 0.49018326848745347,
|
| 382 |
+
"num_tokens": 708041.0,
|
| 383 |
+
"step": 340
|
| 384 |
+
},
|
| 385 |
+
{
|
| 386 |
+
"entropy": 2.5657508850097654,
|
| 387 |
+
"epoch": 0.56,
|
| 388 |
+
"grad_norm": 0.7486541867256165,
|
| 389 |
+
"learning_rate": 0.00016922928274124886,
|
| 390 |
+
"loss": 2.496,
|
| 391 |
+
"mean_token_accuracy": 0.4882775545120239,
|
| 392 |
+
"num_tokens": 729373.0,
|
| 393 |
+
"step": 350
|
| 394 |
+
},
|
| 395 |
+
{
|
| 396 |
+
"entropy": 2.49460369348526,
|
| 397 |
+
"epoch": 0.576,
|
| 398 |
+
"grad_norm": 0.7519723176956177,
|
| 399 |
+
"learning_rate": 0.00016733575322649657,
|
| 400 |
+
"loss": 2.4358,
|
| 401 |
+
"mean_token_accuracy": 0.4897538281977177,
|
| 402 |
+
"num_tokens": 751428.0,
|
| 403 |
+
"step": 360
|
| 404 |
+
},
|
| 405 |
+
{
|
| 406 |
+
"entropy": 2.485343414545059,
|
| 407 |
+
"epoch": 0.592,
|
| 408 |
+
"grad_norm": 0.7465973496437073,
|
| 409 |
+
"learning_rate": 0.00016539698440804661,
|
| 410 |
+
"loss": 2.4446,
|
| 411 |
+
"mean_token_accuracy": 0.4956702694296837,
|
| 412 |
+
"num_tokens": 773898.0,
|
| 413 |
+
"step": 370
|
| 414 |
+
},
|
| 415 |
+
{
|
| 416 |
+
"entropy": 2.5664760768413544,
|
| 417 |
+
"epoch": 0.608,
|
| 418 |
+
"grad_norm": 0.792957603931427,
|
| 419 |
+
"learning_rate": 0.0001634142788413346,
|
| 420 |
+
"loss": 2.4411,
|
| 421 |
+
"mean_token_accuracy": 0.49218829050660134,
|
| 422 |
+
"num_tokens": 793921.0,
|
| 423 |
+
"step": 380
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"entropy": 2.4981964468955993,
|
| 427 |
+
"epoch": 0.624,
|
| 428 |
+
"grad_norm": 0.9188303351402283,
|
| 429 |
+
"learning_rate": 0.00016138896860055555,
|
| 430 |
+
"loss": 2.4527,
|
| 431 |
+
"mean_token_accuracy": 0.4891628086566925,
|
| 432 |
+
"num_tokens": 814549.0,
|
| 433 |
+
"step": 390
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"entropy": 2.5058595299720765,
|
| 437 |
+
"epoch": 0.64,
|
| 438 |
+
"grad_norm": 0.8261463642120361,
|
| 439 |
+
"learning_rate": 0.0001593224143837142,
|
| 440 |
+
"loss": 2.3825,
|
| 441 |
+
"mean_token_accuracy": 0.49732586443424226,
|
| 442 |
+
"num_tokens": 835738.0,
|
| 443 |
+
"step": 400
|
| 444 |
+
},
|
| 445 |
+
{
|
| 446 |
+
"epoch": 0.64,
|
| 447 |
+
"eval_entropy": 2.5427963917072,
|
| 448 |
+
"eval_loss": 2.528325080871582,
|
| 449 |
+
"eval_mean_token_accuracy": 0.48722161238010114,
|
| 450 |
+
"eval_num_tokens": 835738.0,
|
| 451 |
+
"eval_runtime": 0.6794,
|
| 452 |
+
"eval_samples_per_second": 147.184,
|
| 453 |
+
"eval_steps_per_second": 19.134,
|
| 454 |
+
"step": 400
|
| 455 |
+
},
|
| 456 |
+
{
|
| 457 |
+
"entropy": 2.549647295475006,
|
| 458 |
+
"epoch": 0.656,
|
| 459 |
+
"grad_norm": 0.9669468402862549,
|
| 460 |
+
"learning_rate": 0.00015721600459844468,
|
| 461 |
+
"loss": 2.4992,
|
| 462 |
+
"mean_token_accuracy": 0.4811323322355747,
|
| 463 |
+
"num_tokens": 856308.0,
|
| 464 |
+
"step": 410
|
| 465 |
+
},
|
| 466 |
+
{
|
| 467 |
+
"entropy": 2.50358769595623,
|
| 468 |
+
"epoch": 0.672,
|
| 469 |
+
"grad_norm": 0.7736469507217407,
|
| 470 |
+
"learning_rate": 0.0001550711544292131,
|
| 471 |
+
"loss": 2.4233,
|
| 472 |
+
"mean_token_accuracy": 0.4960208125412464,
|
| 473 |
+
"num_tokens": 877984.0,
|
| 474 |
+
"step": 420
|
| 475 |
+
},
|
| 476 |
+
{
|
| 477 |
+
"entropy": 2.513987493515015,
|
| 478 |
+
"epoch": 0.688,
|
| 479 |
+
"grad_norm": 1.0335294008255005,
|
| 480 |
+
"learning_rate": 0.00015288930488653094,
|
| 481 |
+
"loss": 2.4349,
|
| 482 |
+
"mean_token_accuracy": 0.490431859344244,
|
| 483 |
+
"num_tokens": 899593.0,
|
| 484 |
+
"step": 430
|
| 485 |
+
},
|
| 486 |
+
{
|
| 487 |
+
"entropy": 2.5122825741767882,
|
| 488 |
+
"epoch": 0.704,
|
| 489 |
+
"grad_norm": 1.0326985120773315,
|
| 490 |
+
"learning_rate": 0.00015067192183881658,
|
| 491 |
+
"loss": 2.4435,
|
| 492 |
+
"mean_token_accuracy": 0.49002100676298144,
|
| 493 |
+
"num_tokens": 919549.0,
|
| 494 |
+
"step": 440
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"entropy": 2.5058334708213805,
|
| 498 |
+
"epoch": 0.72,
|
| 499 |
+
"grad_norm": 0.8282021284103394,
|
| 500 |
+
"learning_rate": 0.0001484204950275565,
|
| 501 |
+
"loss": 2.3755,
|
| 502 |
+
"mean_token_accuracy": 0.49881314411759375,
|
| 503 |
+
"num_tokens": 938371.0,
|
| 504 |
+
"step": 450
|
| 505 |
+
},
|
| 506 |
+
{
|
| 507 |
+
"entropy": 2.5388923943042756,
|
| 508 |
+
"epoch": 0.736,
|
| 509 |
+
"grad_norm": 0.8473682403564453,
|
| 510 |
+
"learning_rate": 0.0001461365370664276,
|
| 511 |
+
"loss": 2.4695,
|
| 512 |
+
"mean_token_accuracy": 0.48638317435979844,
|
| 513 |
+
"num_tokens": 959081.0,
|
| 514 |
+
"step": 460
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"entropy": 2.4723076283931733,
|
| 518 |
+
"epoch": 0.752,
|
| 519 |
+
"grad_norm": 0.964932918548584,
|
| 520 |
+
"learning_rate": 0.00014382158242505234,
|
| 521 |
+
"loss": 2.4151,
|
| 522 |
+
"mean_token_accuracy": 0.4942440494894981,
|
| 523 |
+
"num_tokens": 980709.0,
|
| 524 |
+
"step": 470
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"entropy": 2.4699651658535005,
|
| 528 |
+
"epoch": 0.768,
|
| 529 |
+
"grad_norm": 0.8604968190193176,
|
| 530 |
+
"learning_rate": 0.0001414771863980707,
|
| 531 |
+
"loss": 2.4249,
|
| 532 |
+
"mean_token_accuracy": 0.49896738603711127,
|
| 533 |
+
"num_tokens": 998177.0,
|
| 534 |
+
"step": 480
|
| 535 |
+
},
|
| 536 |
+
{
|
| 537 |
+
"entropy": 2.5598580718040465,
|
| 538 |
+
"epoch": 0.784,
|
| 539 |
+
"grad_norm": 0.8044160604476929,
|
| 540 |
+
"learning_rate": 0.00013910492406022033,
|
| 541 |
+
"loss": 2.5119,
|
| 542 |
+
"mean_token_accuracy": 0.48558894991874696,
|
| 543 |
+
"num_tokens": 1019231.0,
|
| 544 |
+
"step": 490
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"entropy": 2.5347262740135195,
|
| 548 |
+
"epoch": 0.8,
|
| 549 |
+
"grad_norm": 0.989012598991394,
|
| 550 |
+
"learning_rate": 0.000136706389208128,
|
| 551 |
+
"loss": 2.457,
|
| 552 |
+
"mean_token_accuracy": 0.48754729256033896,
|
| 553 |
+
"num_tokens": 1039963.0,
|
| 554 |
+
"step": 500
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"epoch": 0.8,
|
| 558 |
+
"eval_entropy": 2.5207965007195106,
|
| 559 |
+
"eval_loss": 2.532066822052002,
|
| 560 |
+
"eval_mean_token_accuracy": 0.4870225145266606,
|
| 561 |
+
"eval_num_tokens": 1039963.0,
|
| 562 |
+
"eval_runtime": 0.6776,
|
| 563 |
+
"eval_samples_per_second": 147.573,
|
| 564 |
+
"eval_steps_per_second": 19.185,
|
| 565 |
+
"step": 500
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"entropy": 2.4576663255691527,
|
| 569 |
+
"epoch": 0.816,
|
| 570 |
+
"grad_norm": 0.8774695992469788,
|
| 571 |
+
"learning_rate": 0.00013428319328952253,
|
| 572 |
+
"loss": 2.3836,
|
| 573 |
+
"mean_token_accuracy": 0.4995129629969597,
|
| 574 |
+
"num_tokens": 1061370.0,
|
| 575 |
+
"step": 510
|
| 576 |
+
},
|
| 577 |
+
{
|
| 578 |
+
"entropy": 2.5250146806240084,
|
| 579 |
+
"epoch": 0.832,
|
| 580 |
+
"grad_norm": 0.7958005666732788,
|
| 581 |
+
"learning_rate": 0.00013183696432058888,
|
| 582 |
+
"loss": 2.4315,
|
| 583 |
+
"mean_token_accuracy": 0.4982760787010193,
|
| 584 |
+
"num_tokens": 1081842.0,
|
| 585 |
+
"step": 520
|
| 586 |
+
},
|
| 587 |
+
{
|
| 588 |
+
"entropy": 2.4409106403589247,
|
| 589 |
+
"epoch": 0.848,
|
| 590 |
+
"grad_norm": 0.7063387036323547,
|
| 591 |
+
"learning_rate": 0.00012936934579219094,
|
| 592 |
+
"loss": 2.3816,
|
| 593 |
+
"mean_token_accuracy": 0.5006642855703831,
|
| 594 |
+
"num_tokens": 1103737.0,
|
| 595 |
+
"step": 530
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"entropy": 2.503674066066742,
|
| 599 |
+
"epoch": 0.864,
|
| 600 |
+
"grad_norm": 0.712315559387207,
|
| 601 |
+
"learning_rate": 0.00012688199556569753,
|
| 602 |
+
"loss": 2.4427,
|
| 603 |
+
"mean_token_accuracy": 0.4878311850130558,
|
| 604 |
+
"num_tokens": 1124676.0,
|
| 605 |
+
"step": 540
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"entropy": 2.4937715351581575,
|
| 609 |
+
"epoch": 0.88,
|
| 610 |
+
"grad_norm": 0.7796215415000916,
|
| 611 |
+
"learning_rate": 0.00012437658475915377,
|
| 612 |
+
"loss": 2.4148,
|
| 613 |
+
"mean_token_accuracy": 0.4976658411324024,
|
| 614 |
+
"num_tokens": 1147148.0,
|
| 615 |
+
"step": 550
|
| 616 |
+
},
|
| 617 |
+
{
|
| 618 |
+
"entropy": 2.458594244718552,
|
| 619 |
+
"epoch": 0.896,
|
| 620 |
+
"grad_norm": 0.8076977133750916,
|
| 621 |
+
"learning_rate": 0.00012185479662454595,
|
| 622 |
+
"loss": 2.414,
|
| 623 |
+
"mean_token_accuracy": 0.4989797443151474,
|
| 624 |
+
"num_tokens": 1167948.0,
|
| 625 |
+
"step": 560
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"entropy": 2.5129783391952514,
|
| 629 |
+
"epoch": 0.912,
|
| 630 |
+
"grad_norm": 0.9025003910064697,
|
| 631 |
+
"learning_rate": 0.00011931832541691418,
|
| 632 |
+
"loss": 2.4198,
|
| 633 |
+
"mean_token_accuracy": 0.4928160272538662,
|
| 634 |
+
"num_tokens": 1187896.0,
|
| 635 |
+
"step": 570
|
| 636 |
+
},
|
| 637 |
+
{
|
| 638 |
+
"entropy": 2.429825708270073,
|
| 639 |
+
"epoch": 0.928,
|
| 640 |
+
"grad_norm": 0.9303080439567566,
|
| 641 |
+
"learning_rate": 0.00011676887525607271,
|
| 642 |
+
"loss": 2.336,
|
| 643 |
+
"mean_token_accuracy": 0.507265867292881,
|
| 644 |
+
"num_tokens": 1207963.0,
|
| 645 |
+
"step": 580
|
| 646 |
+
},
|
| 647 |
+
{
|
| 648 |
+
"entropy": 2.483963069319725,
|
| 649 |
+
"epoch": 0.944,
|
| 650 |
+
"grad_norm": 0.9662640690803528,
|
| 651 |
+
"learning_rate": 0.0001142081589817027,
|
| 652 |
+
"loss": 2.4441,
|
| 653 |
+
"mean_token_accuracy": 0.4951579734683037,
|
| 654 |
+
"num_tokens": 1228312.0,
|
| 655 |
+
"step": 590
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"entropy": 2.5128854513168335,
|
| 659 |
+
"epoch": 0.96,
|
| 660 |
+
"grad_norm": 0.7802348732948303,
|
| 661 |
+
"learning_rate": 0.00011163789700258655,
|
| 662 |
+
"loss": 2.481,
|
| 663 |
+
"mean_token_accuracy": 0.4941797606647015,
|
| 664 |
+
"num_tokens": 1250029.0,
|
| 665 |
+
"step": 600
|
| 666 |
+
},
|
| 667 |
+
{
|
| 668 |
+
"epoch": 0.96,
|
| 669 |
+
"eval_entropy": 2.5629419730259824,
|
| 670 |
+
"eval_loss": 2.526008367538452,
|
| 671 |
+
"eval_mean_token_accuracy": 0.4862596323856941,
|
| 672 |
+
"eval_num_tokens": 1250029.0,
|
| 673 |
+
"eval_runtime": 0.6764,
|
| 674 |
+
"eval_samples_per_second": 147.833,
|
| 675 |
+
"eval_steps_per_second": 19.218,
|
| 676 |
+
"step": 600
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"entropy": 2.45339612364769,
|
| 680 |
+
"epoch": 0.976,
|
| 681 |
+
"grad_norm": 0.7918068766593933,
|
| 682 |
+
"learning_rate": 0.00010905981614075693,
|
| 683 |
+
"loss": 2.3798,
|
| 684 |
+
"mean_token_accuracy": 0.5059582263231277,
|
| 685 |
+
"num_tokens": 1273572.0,
|
| 686 |
+
"step": 610
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"entropy": 2.5436563432216643,
|
| 690 |
+
"epoch": 0.992,
|
| 691 |
+
"grad_norm": 0.9120656847953796,
|
| 692 |
+
"learning_rate": 0.000106475648471337,
|
| 693 |
+
"loss": 2.4771,
|
| 694 |
+
"mean_token_accuracy": 0.49086978659033775,
|
| 695 |
+
"num_tokens": 1295353.0,
|
| 696 |
+
"step": 620
|
| 697 |
+
}
|
| 698 |
+
],
|
| 699 |
+
"logging_steps": 10,
|
| 700 |
+
"max_steps": 1250,
|
| 701 |
+
"num_input_tokens_seen": 0,
|
| 702 |
+
"num_train_epochs": 2,
|
| 703 |
+
"save_steps": 500,
|
| 704 |
+
"stateful_callbacks": {
|
| 705 |
+
"TrainerControl": {
|
| 706 |
+
"args": {
|
| 707 |
+
"should_epoch_stop": false,
|
| 708 |
+
"should_evaluate": false,
|
| 709 |
+
"should_log": false,
|
| 710 |
+
"should_save": true,
|
| 711 |
+
"should_training_stop": false
|
| 712 |
+
},
|
| 713 |
+
"attributes": {}
|
| 714 |
+
}
|
| 715 |
+
},
|
| 716 |
+
"total_flos": 3.76891183669248e+16,
|
| 717 |
+
"train_batch_size": 4,
|
| 718 |
+
"trial_name": null,
|
| 719 |
+
"trial_params": null
|
| 720 |
+
}
|
checkpoint-625/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:879f340dca9a81b05ff3f767198bc8a294c35f0efe288b9f690178d342307834
|
| 3 |
+
size 6353
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|endoftext|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|endoftext|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": "<|endoftext|>",
|
| 17 |
+
"unk_token": {
|
| 18 |
+
"content": "<|endoftext|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
}
|
| 24 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,215 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_eos_token": false,
|
| 4 |
+
"add_prefix_space": false,
|
| 5 |
+
"added_tokens_decoder": {
|
| 6 |
+
"0": {
|
| 7 |
+
"content": "<|endoftext|>",
|
| 8 |
+
"lstrip": false,
|
| 9 |
+
"normalized": false,
|
| 10 |
+
"rstrip": false,
|
| 11 |
+
"single_word": false,
|
| 12 |
+
"special": true
|
| 13 |
+
},
|
| 14 |
+
"1": {
|
| 15 |
+
"content": "<|padding|>",
|
| 16 |
+
"lstrip": false,
|
| 17 |
+
"normalized": false,
|
| 18 |
+
"rstrip": false,
|
| 19 |
+
"single_word": false,
|
| 20 |
+
"special": true
|
| 21 |
+
},
|
| 22 |
+
"50254": {
|
| 23 |
+
"content": " ",
|
| 24 |
+
"lstrip": false,
|
| 25 |
+
"normalized": true,
|
| 26 |
+
"rstrip": false,
|
| 27 |
+
"single_word": false,
|
| 28 |
+
"special": false
|
| 29 |
+
},
|
| 30 |
+
"50255": {
|
| 31 |
+
"content": " ",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false,
|
| 36 |
+
"special": false
|
| 37 |
+
},
|
| 38 |
+
"50256": {
|
| 39 |
+
"content": " ",
|
| 40 |
+
"lstrip": false,
|
| 41 |
+
"normalized": true,
|
| 42 |
+
"rstrip": false,
|
| 43 |
+
"single_word": false,
|
| 44 |
+
"special": false
|
| 45 |
+
},
|
| 46 |
+
"50257": {
|
| 47 |
+
"content": " ",
|
| 48 |
+
"lstrip": false,
|
| 49 |
+
"normalized": true,
|
| 50 |
+
"rstrip": false,
|
| 51 |
+
"single_word": false,
|
| 52 |
+
"special": false
|
| 53 |
+
},
|
| 54 |
+
"50258": {
|
| 55 |
+
"content": " ",
|
| 56 |
+
"lstrip": false,
|
| 57 |
+
"normalized": true,
|
| 58 |
+
"rstrip": false,
|
| 59 |
+
"single_word": false,
|
| 60 |
+
"special": false
|
| 61 |
+
},
|
| 62 |
+
"50259": {
|
| 63 |
+
"content": " ",
|
| 64 |
+
"lstrip": false,
|
| 65 |
+
"normalized": true,
|
| 66 |
+
"rstrip": false,
|
| 67 |
+
"single_word": false,
|
| 68 |
+
"special": false
|
| 69 |
+
},
|
| 70 |
+
"50260": {
|
| 71 |
+
"content": " ",
|
| 72 |
+
"lstrip": false,
|
| 73 |
+
"normalized": true,
|
| 74 |
+
"rstrip": false,
|
| 75 |
+
"single_word": false,
|
| 76 |
+
"special": false
|
| 77 |
+
},
|
| 78 |
+
"50261": {
|
| 79 |
+
"content": " ",
|
| 80 |
+
"lstrip": false,
|
| 81 |
+
"normalized": true,
|
| 82 |
+
"rstrip": false,
|
| 83 |
+
"single_word": false,
|
| 84 |
+
"special": false
|
| 85 |
+
},
|
| 86 |
+
"50262": {
|
| 87 |
+
"content": " ",
|
| 88 |
+
"lstrip": false,
|
| 89 |
+
"normalized": true,
|
| 90 |
+
"rstrip": false,
|
| 91 |
+
"single_word": false,
|
| 92 |
+
"special": false
|
| 93 |
+
},
|
| 94 |
+
"50263": {
|
| 95 |
+
"content": " ",
|
| 96 |
+
"lstrip": false,
|
| 97 |
+
"normalized": true,
|
| 98 |
+
"rstrip": false,
|
| 99 |
+
"single_word": false,
|
| 100 |
+
"special": false
|
| 101 |
+
},
|
| 102 |
+
"50264": {
|
| 103 |
+
"content": " ",
|
| 104 |
+
"lstrip": false,
|
| 105 |
+
"normalized": true,
|
| 106 |
+
"rstrip": false,
|
| 107 |
+
"single_word": false,
|
| 108 |
+
"special": false
|
| 109 |
+
},
|
| 110 |
+
"50265": {
|
| 111 |
+
"content": " ",
|
| 112 |
+
"lstrip": false,
|
| 113 |
+
"normalized": true,
|
| 114 |
+
"rstrip": false,
|
| 115 |
+
"single_word": false,
|
| 116 |
+
"special": false
|
| 117 |
+
},
|
| 118 |
+
"50266": {
|
| 119 |
+
"content": " ",
|
| 120 |
+
"lstrip": false,
|
| 121 |
+
"normalized": true,
|
| 122 |
+
"rstrip": false,
|
| 123 |
+
"single_word": false,
|
| 124 |
+
"special": false
|
| 125 |
+
},
|
| 126 |
+
"50267": {
|
| 127 |
+
"content": " ",
|
| 128 |
+
"lstrip": false,
|
| 129 |
+
"normalized": true,
|
| 130 |
+
"rstrip": false,
|
| 131 |
+
"single_word": false,
|
| 132 |
+
"special": false
|
| 133 |
+
},
|
| 134 |
+
"50268": {
|
| 135 |
+
"content": " ",
|
| 136 |
+
"lstrip": false,
|
| 137 |
+
"normalized": true,
|
| 138 |
+
"rstrip": false,
|
| 139 |
+
"single_word": false,
|
| 140 |
+
"special": false
|
| 141 |
+
},
|
| 142 |
+
"50269": {
|
| 143 |
+
"content": " ",
|
| 144 |
+
"lstrip": false,
|
| 145 |
+
"normalized": true,
|
| 146 |
+
"rstrip": false,
|
| 147 |
+
"single_word": false,
|
| 148 |
+
"special": false
|
| 149 |
+
},
|
| 150 |
+
"50270": {
|
| 151 |
+
"content": " ",
|
| 152 |
+
"lstrip": false,
|
| 153 |
+
"normalized": true,
|
| 154 |
+
"rstrip": false,
|
| 155 |
+
"single_word": false,
|
| 156 |
+
"special": false
|
| 157 |
+
},
|
| 158 |
+
"50271": {
|
| 159 |
+
"content": " ",
|
| 160 |
+
"lstrip": false,
|
| 161 |
+
"normalized": true,
|
| 162 |
+
"rstrip": false,
|
| 163 |
+
"single_word": false,
|
| 164 |
+
"special": false
|
| 165 |
+
},
|
| 166 |
+
"50272": {
|
| 167 |
+
"content": " ",
|
| 168 |
+
"lstrip": false,
|
| 169 |
+
"normalized": true,
|
| 170 |
+
"rstrip": false,
|
| 171 |
+
"single_word": false,
|
| 172 |
+
"special": false
|
| 173 |
+
},
|
| 174 |
+
"50273": {
|
| 175 |
+
"content": " ",
|
| 176 |
+
"lstrip": false,
|
| 177 |
+
"normalized": true,
|
| 178 |
+
"rstrip": false,
|
| 179 |
+
"single_word": false,
|
| 180 |
+
"special": false
|
| 181 |
+
},
|
| 182 |
+
"50274": {
|
| 183 |
+
"content": " ",
|
| 184 |
+
"lstrip": false,
|
| 185 |
+
"normalized": true,
|
| 186 |
+
"rstrip": false,
|
| 187 |
+
"single_word": false,
|
| 188 |
+
"special": false
|
| 189 |
+
},
|
| 190 |
+
"50275": {
|
| 191 |
+
"content": " ",
|
| 192 |
+
"lstrip": false,
|
| 193 |
+
"normalized": true,
|
| 194 |
+
"rstrip": false,
|
| 195 |
+
"single_word": false,
|
| 196 |
+
"special": false
|
| 197 |
+
},
|
| 198 |
+
"50276": {
|
| 199 |
+
"content": " ",
|
| 200 |
+
"lstrip": false,
|
| 201 |
+
"normalized": true,
|
| 202 |
+
"rstrip": false,
|
| 203 |
+
"single_word": false,
|
| 204 |
+
"special": false
|
| 205 |
+
}
|
| 206 |
+
},
|
| 207 |
+
"bos_token": "<|endoftext|>",
|
| 208 |
+
"clean_up_tokenization_spaces": false,
|
| 209 |
+
"eos_token": "<|endoftext|>",
|
| 210 |
+
"extra_special_tokens": {},
|
| 211 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 212 |
+
"pad_token": "<|endoftext|>",
|
| 213 |
+
"tokenizer_class": "GPTNeoXTokenizer",
|
| 214 |
+
"unk_token": "<|endoftext|>"
|
| 215 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:879f340dca9a81b05ff3f767198bc8a294c35f0efe288b9f690178d342307834
|
| 3 |
+
size 6353
|