Text Generation
PEFT
TensorBoard
Safetensors
Transformers
mistral
axolotl
lora
conversational
text-generation-inference
Instructions to use TeamPV/mistral-nemo-onr-sft-singleGPU with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use TeamPV/mistral-nemo-onr-sft-singleGPU with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-Nemo-Instruct-2407") model = PeftModel.from_pretrained(base_model, "TeamPV/mistral-nemo-onr-sft-singleGPU") - Transformers
How to use TeamPV/mistral-nemo-onr-sft-singleGPU with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="TeamPV/mistral-nemo-onr-sft-singleGPU") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("TeamPV/mistral-nemo-onr-sft-singleGPU") model = AutoModelForCausalLM.from_pretrained("TeamPV/mistral-nemo-onr-sft-singleGPU", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use TeamPV/mistral-nemo-onr-sft-singleGPU with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "TeamPV/mistral-nemo-onr-sft-singleGPU" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TeamPV/mistral-nemo-onr-sft-singleGPU", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/TeamPV/mistral-nemo-onr-sft-singleGPU
- SGLang
How to use TeamPV/mistral-nemo-onr-sft-singleGPU 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 "TeamPV/mistral-nemo-onr-sft-singleGPU" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TeamPV/mistral-nemo-onr-sft-singleGPU", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "TeamPV/mistral-nemo-onr-sft-singleGPU" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TeamPV/mistral-nemo-onr-sft-singleGPU", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use TeamPV/mistral-nemo-onr-sft-singleGPU with Docker Model Runner:
docker model run hf.co/TeamPV/mistral-nemo-onr-sft-singleGPU
Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +9 -0
- checkpoint-1/README.md +208 -0
- checkpoint-1/adapter_config.json +42 -0
- checkpoint-1/adapter_model.safetensors +3 -0
- checkpoint-1/chat_template.jinja +87 -0
- checkpoint-1/optimizer.pt +3 -0
- checkpoint-1/rng_state.pth +3 -0
- checkpoint-1/scheduler.pt +3 -0
- checkpoint-1/special_tokens_map.json +30 -0
- checkpoint-1/tokenizer.json +3 -0
- checkpoint-1/tokenizer_config.json +0 -0
- checkpoint-1/trainer_state.json +45 -0
- checkpoint-1/training_args.bin +3 -0
- checkpoint-10986/README.md +208 -0
- checkpoint-10986/adapter_config.json +42 -0
- checkpoint-10986/adapter_model.safetensors +3 -0
- checkpoint-10986/chat_template.jinja +87 -0
- checkpoint-10986/optimizer.pt +3 -0
- checkpoint-10986/rng_state.pth +3 -0
- checkpoint-10986/scheduler.pt +3 -0
- checkpoint-10986/special_tokens_map.json +30 -0
- checkpoint-10986/tokenizer.json +3 -0
- checkpoint-10986/tokenizer_config.json +0 -0
- checkpoint-10986/trainer_state.json +2509 -0
- checkpoint-10986/training_args.bin +3 -0
- checkpoint-16479/README.md +208 -0
- checkpoint-16479/adapter_config.json +42 -0
- checkpoint-16479/adapter_model.safetensors +3 -0
- checkpoint-16479/chat_template.jinja +87 -0
- checkpoint-16479/optimizer.pt +3 -0
- checkpoint-16479/rng_state.pth +3 -0
- checkpoint-16479/scheduler.pt +3 -0
- checkpoint-16479/special_tokens_map.json +30 -0
- checkpoint-16479/tokenizer.json +3 -0
- checkpoint-16479/tokenizer_config.json +0 -0
- checkpoint-16479/trainer_state.json +0 -0
- checkpoint-16479/training_args.bin +3 -0
- checkpoint-21972/README.md +208 -0
- checkpoint-21972/adapter_config.json +42 -0
- checkpoint-21972/adapter_model.safetensors +3 -0
- checkpoint-21972/chat_template.jinja +87 -0
- checkpoint-21972/optimizer.pt +3 -0
- checkpoint-21972/rng_state.pth +3 -0
- checkpoint-21972/scheduler.pt +3 -0
- checkpoint-21972/special_tokens_map.json +30 -0
- checkpoint-21972/tokenizer.json +3 -0
- checkpoint-21972/tokenizer_config.json +0 -0
- checkpoint-21972/trainer_state.json +0 -0
- checkpoint-21972/training_args.bin +3 -0
- checkpoint-27465/README.md +208 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,12 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
checkpoint-1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-10986/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
checkpoint-16479/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
checkpoint-21972/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
checkpoint-27465/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
checkpoint-32958/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
checkpoint-38451/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
checkpoint-43939/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
checkpoint-5493/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
checkpoint-1/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: mistralai/Mistral-Nemo-Instruct-2407
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:mistralai/Mistral-Nemo-Instruct-2407
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- 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. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
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).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.17.1
|
checkpoint-1/adapter_config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "mistralai/Mistral-Nemo-Instruct-2407",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
+
"fan_in_fan_out": null,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 64,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"qalora_group_size": 16,
|
| 24 |
+
"r": 32,
|
| 25 |
+
"rank_pattern": {},
|
| 26 |
+
"revision": null,
|
| 27 |
+
"target_modules": [
|
| 28 |
+
"q_proj",
|
| 29 |
+
"down_proj",
|
| 30 |
+
"k_proj",
|
| 31 |
+
"v_proj",
|
| 32 |
+
"o_proj",
|
| 33 |
+
"gate_proj",
|
| 34 |
+
"up_proj"
|
| 35 |
+
],
|
| 36 |
+
"target_parameters": [],
|
| 37 |
+
"task_type": "CAUSAL_LM",
|
| 38 |
+
"trainable_token_indices": null,
|
| 39 |
+
"use_dora": false,
|
| 40 |
+
"use_qalora": false,
|
| 41 |
+
"use_rslora": false
|
| 42 |
+
}
|
checkpoint-1/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e89dd0c5654ee8cd416433ae7c9e815653326cb541212da803c5cf5d0a8d5e6
|
| 3 |
+
size 456206152
|
checkpoint-1/chat_template.jinja
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if messages[0]["role"] == "system" %}
|
| 2 |
+
{%- set system_message = messages[0]["content"] %}
|
| 3 |
+
{%- set loop_messages = messages[1:] %}
|
| 4 |
+
{%- else %}
|
| 5 |
+
{%- set loop_messages = messages %}
|
| 6 |
+
{%- endif %}
|
| 7 |
+
{%- if not tools is defined %}
|
| 8 |
+
{%- set tools = none %}
|
| 9 |
+
{%- endif %}
|
| 10 |
+
{%- set user_messages = loop_messages | selectattr("role", "equalto", "user") | list %}
|
| 11 |
+
|
| 12 |
+
{#- This block checks for alternating user/assistant messages, skipping tool calling messages #}
|
| 13 |
+
{%- set ns = namespace() %}
|
| 14 |
+
{%- set ns.index = 0 %}
|
| 15 |
+
{%- for message in loop_messages %}
|
| 16 |
+
{%- if not (message.role == "tool" or message.role == "tool_results" or (message.tool_calls is defined and message.tool_calls is not none)) %}
|
| 17 |
+
{%- if (message["role"] == "user") != (ns.index % 2 == 0) %}
|
| 18 |
+
{{- raise_exception("After the optional system message, conversation roles must alternate user/assistant/user/assistant/...") }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- set ns.index = ns.index + 1 %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
{%- endfor %}
|
| 23 |
+
|
| 24 |
+
{{- bos_token }}
|
| 25 |
+
{%- for message in loop_messages %}
|
| 26 |
+
{%- if message["role"] == "user" %}
|
| 27 |
+
{%- if tools is not none and (message == user_messages[-1]) %}
|
| 28 |
+
{{- "[AVAILABLE_TOOLS][" }}
|
| 29 |
+
{%- for tool in tools %}
|
| 30 |
+
{%- set tool = tool.function %}
|
| 31 |
+
{{- '{"type": "function", "function": {' }}
|
| 32 |
+
{%- for key, val in tool.items() if key != "return" %}
|
| 33 |
+
{%- if val is string %}
|
| 34 |
+
{{- '"' + key + '": "' + val + '"' }}
|
| 35 |
+
{%- else %}
|
| 36 |
+
{{- '"' + key + '": ' + val|tojson }}
|
| 37 |
+
{%- endif %}
|
| 38 |
+
{%- if not loop.last %}
|
| 39 |
+
{{- ", " }}
|
| 40 |
+
{%- endif %}
|
| 41 |
+
{%- endfor %}
|
| 42 |
+
{{- "}}" }}
|
| 43 |
+
{%- if not loop.last %}
|
| 44 |
+
{{- ", " }}
|
| 45 |
+
{%- else %}
|
| 46 |
+
{{- "]" }}
|
| 47 |
+
{%- endif %}
|
| 48 |
+
{%- endfor %}
|
| 49 |
+
{{- "[/AVAILABLE_TOOLS]" }}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- if loop.last and system_message is defined %}
|
| 52 |
+
{{- "[INST]" + system_message + "\n\n" + message["content"] + "[/INST]" }}
|
| 53 |
+
{%- else %}
|
| 54 |
+
{{- "[INST]" + message["content"] + "[/INST]" }}
|
| 55 |
+
{%- endif %}
|
| 56 |
+
{%- elif (message.tool_calls is defined and message.tool_calls is not none) %}
|
| 57 |
+
{{- "[TOOL_CALLS][" }}
|
| 58 |
+
{%- for tool_call in message.tool_calls %}
|
| 59 |
+
{%- set out = tool_call.function|tojson %}
|
| 60 |
+
{{- out[:-1] }}
|
| 61 |
+
{%- if not tool_call.id is defined or tool_call.id|length != 9 %}
|
| 62 |
+
{{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
|
| 63 |
+
{%- endif %}
|
| 64 |
+
{{- ', "id": "' + tool_call.id + '"}' }}
|
| 65 |
+
{%- if not loop.last %}
|
| 66 |
+
{{- ", " }}
|
| 67 |
+
{%- else %}
|
| 68 |
+
{{- "]" + eos_token }}
|
| 69 |
+
{%- endif %}
|
| 70 |
+
{%- endfor %}
|
| 71 |
+
{%- elif message["role"] == "assistant" %}
|
| 72 |
+
{{- message["content"] + eos_token}}
|
| 73 |
+
{%- elif message["role"] == "tool_results" or message["role"] == "tool" %}
|
| 74 |
+
{%- if message.content is defined and message.content.content is defined %}
|
| 75 |
+
{%- set content = message.content.content %}
|
| 76 |
+
{%- else %}
|
| 77 |
+
{%- set content = message.content %}
|
| 78 |
+
{%- endif %}
|
| 79 |
+
{{- '[TOOL_RESULTS]{"content": ' + content|string + ", " }}
|
| 80 |
+
{%- if not message.tool_call_id is defined or message.tool_call_id|length != 9 %}
|
| 81 |
+
{{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{{- '"call_id": "' + message.tool_call_id + '"}[/TOOL_RESULTS]' }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- raise_exception("Only user and assistant roles are supported, with the exception of an initial optional system message!") }}
|
| 86 |
+
{%- endif %}
|
| 87 |
+
{%- endfor %}
|
checkpoint-1/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2020bdc677e8437ee65e80d24ee17709a4210e5d2875236fd6f91fea9d6c8ad
|
| 3 |
+
size 232287141
|
checkpoint-1/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f6887d8424819036310a2e84d986db1032a31ea5b39b32a3ea2f1773e3211c5
|
| 3 |
+
size 14645
|
checkpoint-1/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3019aa1e0ed410fa59cea14f0b1996ce34ccac1bc0015d8a304fe483015927b8
|
| 3 |
+
size 1465
|
checkpoint-1/special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "</s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<unk>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
checkpoint-1/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0240ce510f08e6c2041724e9043e33be9d251d1e4a4d94eb68cd47b954b61d2
|
| 3 |
+
size 17078292
|
checkpoint-1/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1/trainer_state.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 9.103322712790169e-05,
|
| 6 |
+
"eval_steps": 2197,
|
| 7 |
+
"global_step": 1,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0,
|
| 14 |
+
"eval_loss": 1.9759739637374878,
|
| 15 |
+
"eval_runtime": 197.0423,
|
| 16 |
+
"eval_samples_per_second": 5.07,
|
| 17 |
+
"eval_steps_per_second": 0.365,
|
| 18 |
+
"memory/device_reserved (GiB)": 77.68,
|
| 19 |
+
"memory/max_active (GiB)": 76.86,
|
| 20 |
+
"memory/max_allocated (GiB)": 76.86,
|
| 21 |
+
"step": 0
|
| 22 |
+
}
|
| 23 |
+
],
|
| 24 |
+
"logging_steps": 50,
|
| 25 |
+
"max_steps": 43939,
|
| 26 |
+
"num_input_tokens_seen": 0,
|
| 27 |
+
"num_train_epochs": 4,
|
| 28 |
+
"save_steps": 5493,
|
| 29 |
+
"stateful_callbacks": {
|
| 30 |
+
"TrainerControl": {
|
| 31 |
+
"args": {
|
| 32 |
+
"should_epoch_stop": false,
|
| 33 |
+
"should_evaluate": false,
|
| 34 |
+
"should_log": false,
|
| 35 |
+
"should_save": true,
|
| 36 |
+
"should_training_stop": false
|
| 37 |
+
},
|
| 38 |
+
"attributes": {}
|
| 39 |
+
}
|
| 40 |
+
},
|
| 41 |
+
"total_flos": 1898948070604800.0,
|
| 42 |
+
"train_batch_size": 9,
|
| 43 |
+
"trial_name": null,
|
| 44 |
+
"trial_params": null
|
| 45 |
+
}
|
checkpoint-1/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34a581bf9b76f74a5a4e25651fbaa01e61b75b19cbbfa8df2370c772924bc5d7
|
| 3 |
+
size 11409
|
checkpoint-10986/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: mistralai/Mistral-Nemo-Instruct-2407
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:mistralai/Mistral-Nemo-Instruct-2407
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- 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. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
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).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.17.1
|
checkpoint-10986/adapter_config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "mistralai/Mistral-Nemo-Instruct-2407",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
+
"fan_in_fan_out": null,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 64,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"qalora_group_size": 16,
|
| 24 |
+
"r": 32,
|
| 25 |
+
"rank_pattern": {},
|
| 26 |
+
"revision": null,
|
| 27 |
+
"target_modules": [
|
| 28 |
+
"q_proj",
|
| 29 |
+
"down_proj",
|
| 30 |
+
"k_proj",
|
| 31 |
+
"v_proj",
|
| 32 |
+
"o_proj",
|
| 33 |
+
"gate_proj",
|
| 34 |
+
"up_proj"
|
| 35 |
+
],
|
| 36 |
+
"target_parameters": [],
|
| 37 |
+
"task_type": "CAUSAL_LM",
|
| 38 |
+
"trainable_token_indices": null,
|
| 39 |
+
"use_dora": false,
|
| 40 |
+
"use_qalora": false,
|
| 41 |
+
"use_rslora": false
|
| 42 |
+
}
|
checkpoint-10986/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17511e1eacc55416b1c06b20fa7a42eb3a1a1f1ba4bca9822b44be3812400ffb
|
| 3 |
+
size 456206152
|
checkpoint-10986/chat_template.jinja
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if messages[0]["role"] == "system" %}
|
| 2 |
+
{%- set system_message = messages[0]["content"] %}
|
| 3 |
+
{%- set loop_messages = messages[1:] %}
|
| 4 |
+
{%- else %}
|
| 5 |
+
{%- set loop_messages = messages %}
|
| 6 |
+
{%- endif %}
|
| 7 |
+
{%- if not tools is defined %}
|
| 8 |
+
{%- set tools = none %}
|
| 9 |
+
{%- endif %}
|
| 10 |
+
{%- set user_messages = loop_messages | selectattr("role", "equalto", "user") | list %}
|
| 11 |
+
|
| 12 |
+
{#- This block checks for alternating user/assistant messages, skipping tool calling messages #}
|
| 13 |
+
{%- set ns = namespace() %}
|
| 14 |
+
{%- set ns.index = 0 %}
|
| 15 |
+
{%- for message in loop_messages %}
|
| 16 |
+
{%- if not (message.role == "tool" or message.role == "tool_results" or (message.tool_calls is defined and message.tool_calls is not none)) %}
|
| 17 |
+
{%- if (message["role"] == "user") != (ns.index % 2 == 0) %}
|
| 18 |
+
{{- raise_exception("After the optional system message, conversation roles must alternate user/assistant/user/assistant/...") }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- set ns.index = ns.index + 1 %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
{%- endfor %}
|
| 23 |
+
|
| 24 |
+
{{- bos_token }}
|
| 25 |
+
{%- for message in loop_messages %}
|
| 26 |
+
{%- if message["role"] == "user" %}
|
| 27 |
+
{%- if tools is not none and (message == user_messages[-1]) %}
|
| 28 |
+
{{- "[AVAILABLE_TOOLS][" }}
|
| 29 |
+
{%- for tool in tools %}
|
| 30 |
+
{%- set tool = tool.function %}
|
| 31 |
+
{{- '{"type": "function", "function": {' }}
|
| 32 |
+
{%- for key, val in tool.items() if key != "return" %}
|
| 33 |
+
{%- if val is string %}
|
| 34 |
+
{{- '"' + key + '": "' + val + '"' }}
|
| 35 |
+
{%- else %}
|
| 36 |
+
{{- '"' + key + '": ' + val|tojson }}
|
| 37 |
+
{%- endif %}
|
| 38 |
+
{%- if not loop.last %}
|
| 39 |
+
{{- ", " }}
|
| 40 |
+
{%- endif %}
|
| 41 |
+
{%- endfor %}
|
| 42 |
+
{{- "}}" }}
|
| 43 |
+
{%- if not loop.last %}
|
| 44 |
+
{{- ", " }}
|
| 45 |
+
{%- else %}
|
| 46 |
+
{{- "]" }}
|
| 47 |
+
{%- endif %}
|
| 48 |
+
{%- endfor %}
|
| 49 |
+
{{- "[/AVAILABLE_TOOLS]" }}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- if loop.last and system_message is defined %}
|
| 52 |
+
{{- "[INST]" + system_message + "\n\n" + message["content"] + "[/INST]" }}
|
| 53 |
+
{%- else %}
|
| 54 |
+
{{- "[INST]" + message["content"] + "[/INST]" }}
|
| 55 |
+
{%- endif %}
|
| 56 |
+
{%- elif (message.tool_calls is defined and message.tool_calls is not none) %}
|
| 57 |
+
{{- "[TOOL_CALLS][" }}
|
| 58 |
+
{%- for tool_call in message.tool_calls %}
|
| 59 |
+
{%- set out = tool_call.function|tojson %}
|
| 60 |
+
{{- out[:-1] }}
|
| 61 |
+
{%- if not tool_call.id is defined or tool_call.id|length != 9 %}
|
| 62 |
+
{{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
|
| 63 |
+
{%- endif %}
|
| 64 |
+
{{- ', "id": "' + tool_call.id + '"}' }}
|
| 65 |
+
{%- if not loop.last %}
|
| 66 |
+
{{- ", " }}
|
| 67 |
+
{%- else %}
|
| 68 |
+
{{- "]" + eos_token }}
|
| 69 |
+
{%- endif %}
|
| 70 |
+
{%- endfor %}
|
| 71 |
+
{%- elif message["role"] == "assistant" %}
|
| 72 |
+
{{- message["content"] + eos_token}}
|
| 73 |
+
{%- elif message["role"] == "tool_results" or message["role"] == "tool" %}
|
| 74 |
+
{%- if message.content is defined and message.content.content is defined %}
|
| 75 |
+
{%- set content = message.content.content %}
|
| 76 |
+
{%- else %}
|
| 77 |
+
{%- set content = message.content %}
|
| 78 |
+
{%- endif %}
|
| 79 |
+
{{- '[TOOL_RESULTS]{"content": ' + content|string + ", " }}
|
| 80 |
+
{%- if not message.tool_call_id is defined or message.tool_call_id|length != 9 %}
|
| 81 |
+
{{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{{- '"call_id": "' + message.tool_call_id + '"}[/TOOL_RESULTS]' }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- raise_exception("Only user and assistant roles are supported, with the exception of an initial optional system message!") }}
|
| 86 |
+
{%- endif %}
|
| 87 |
+
{%- endfor %}
|
checkpoint-10986/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be39a2e92b5a3c1cfcc66e38e255f6e12ebe66815afe5b4bf230eaa1eb0a087d
|
| 3 |
+
size 232287717
|
checkpoint-10986/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8929b95342e38b16a2a31247a473d14ad624ba7d1384229ec5b7cd6725e55df
|
| 3 |
+
size 14645
|
checkpoint-10986/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1bdf5ba82a58c2dfaf9897817a6beac0a5b8b6d81f717f715327cbba1bbb725
|
| 3 |
+
size 1465
|
checkpoint-10986/special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "</s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<unk>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
checkpoint-10986/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0240ce510f08e6c2041724e9043e33be9d251d1e4a4d94eb68cd47b954b61d2
|
| 3 |
+
size 17078292
|
checkpoint-10986/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-10986/trainer_state.json
ADDED
|
@@ -0,0 +1,2509 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.000091033227128,
|
| 6 |
+
"eval_steps": 2197,
|
| 7 |
+
"global_step": 10986,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0,
|
| 14 |
+
"eval_loss": 1.9759739637374878,
|
| 15 |
+
"eval_runtime": 197.0423,
|
| 16 |
+
"eval_samples_per_second": 5.07,
|
| 17 |
+
"eval_steps_per_second": 0.365,
|
| 18 |
+
"memory/device_reserved (GiB)": 77.68,
|
| 19 |
+
"memory/max_active (GiB)": 76.86,
|
| 20 |
+
"memory/max_allocated (GiB)": 76.86,
|
| 21 |
+
"step": 0
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"epoch": 0.004551661356395084,
|
| 25 |
+
"grad_norm": 1.4988383054733276,
|
| 26 |
+
"learning_rate": 5.577054404734805e-07,
|
| 27 |
+
"loss": 1.9687,
|
| 28 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 29 |
+
"memory/max_active (GiB)": 75.64,
|
| 30 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 31 |
+
"step": 50,
|
| 32 |
+
"tokens_per_second_per_gpu": 1534.89
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"epoch": 0.009103322712790168,
|
| 36 |
+
"grad_norm": 1.205540657043457,
|
| 37 |
+
"learning_rate": 1.1267926246300935e-06,
|
| 38 |
+
"loss": 1.9557,
|
| 39 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 40 |
+
"memory/max_active (GiB)": 75.64,
|
| 41 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 42 |
+
"step": 100,
|
| 43 |
+
"tokens_per_second_per_gpu": 512.71
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"epoch": 0.013654984069185253,
|
| 47 |
+
"grad_norm": 1.4495829343795776,
|
| 48 |
+
"learning_rate": 1.6958798087867062e-06,
|
| 49 |
+
"loss": 1.8251,
|
| 50 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 51 |
+
"memory/max_active (GiB)": 75.64,
|
| 52 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 53 |
+
"step": 150,
|
| 54 |
+
"tokens_per_second_per_gpu": 492.64
|
| 55 |
+
},
|
| 56 |
+
{
|
| 57 |
+
"epoch": 0.018206645425580335,
|
| 58 |
+
"grad_norm": 0.9070694446563721,
|
| 59 |
+
"learning_rate": 2.264966992943319e-06,
|
| 60 |
+
"loss": 1.6389,
|
| 61 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 62 |
+
"memory/max_active (GiB)": 75.64,
|
| 63 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 64 |
+
"step": 200,
|
| 65 |
+
"tokens_per_second_per_gpu": 513.79
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"epoch": 0.02275830678197542,
|
| 69 |
+
"grad_norm": 1.1880543231964111,
|
| 70 |
+
"learning_rate": 2.834054177099932e-06,
|
| 71 |
+
"loss": 1.4838,
|
| 72 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 73 |
+
"memory/max_active (GiB)": 75.64,
|
| 74 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 75 |
+
"step": 250,
|
| 76 |
+
"tokens_per_second_per_gpu": 489.92
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"epoch": 0.027309968138370506,
|
| 80 |
+
"grad_norm": 1.474748134613037,
|
| 81 |
+
"learning_rate": 3.4031413612565448e-06,
|
| 82 |
+
"loss": 1.4042,
|
| 83 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 84 |
+
"memory/max_active (GiB)": 75.64,
|
| 85 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 86 |
+
"step": 300,
|
| 87 |
+
"tokens_per_second_per_gpu": 485.95
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.03186162949476559,
|
| 91 |
+
"grad_norm": 1.490429401397705,
|
| 92 |
+
"learning_rate": 3.972228545413158e-06,
|
| 93 |
+
"loss": 1.3435,
|
| 94 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 95 |
+
"memory/max_active (GiB)": 75.64,
|
| 96 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 97 |
+
"step": 350,
|
| 98 |
+
"tokens_per_second_per_gpu": 482.48
|
| 99 |
+
},
|
| 100 |
+
{
|
| 101 |
+
"epoch": 0.03641329085116067,
|
| 102 |
+
"grad_norm": 1.9503854513168335,
|
| 103 |
+
"learning_rate": 4.54131572956977e-06,
|
| 104 |
+
"loss": 1.3146,
|
| 105 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 106 |
+
"memory/max_active (GiB)": 75.64,
|
| 107 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 108 |
+
"step": 400,
|
| 109 |
+
"tokens_per_second_per_gpu": 472.38
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.040964952207555756,
|
| 113 |
+
"grad_norm": 1.4551211595535278,
|
| 114 |
+
"learning_rate": 5.110402913726383e-06,
|
| 115 |
+
"loss": 1.2806,
|
| 116 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 117 |
+
"memory/max_active (GiB)": 75.64,
|
| 118 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 119 |
+
"step": 450,
|
| 120 |
+
"tokens_per_second_per_gpu": 484.66
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"epoch": 0.04551661356395084,
|
| 124 |
+
"grad_norm": 1.7765358686447144,
|
| 125 |
+
"learning_rate": 5.679490097882996e-06,
|
| 126 |
+
"loss": 1.2785,
|
| 127 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 128 |
+
"memory/max_active (GiB)": 75.64,
|
| 129 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 130 |
+
"step": 500,
|
| 131 |
+
"tokens_per_second_per_gpu": 459.31
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"epoch": 0.05006827492034593,
|
| 135 |
+
"grad_norm": 1.6205016374588013,
|
| 136 |
+
"learning_rate": 6.248577282039609e-06,
|
| 137 |
+
"loss": 1.2962,
|
| 138 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 139 |
+
"memory/max_active (GiB)": 75.64,
|
| 140 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 141 |
+
"step": 550,
|
| 142 |
+
"tokens_per_second_per_gpu": 496.89
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"epoch": 0.05461993627674101,
|
| 146 |
+
"grad_norm": 2.360264539718628,
|
| 147 |
+
"learning_rate": 6.8176644661962216e-06,
|
| 148 |
+
"loss": 1.2698,
|
| 149 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 150 |
+
"memory/max_active (GiB)": 75.64,
|
| 151 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 152 |
+
"step": 600,
|
| 153 |
+
"tokens_per_second_per_gpu": 535.06
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"epoch": 0.05917159763313609,
|
| 157 |
+
"grad_norm": 1.9422169923782349,
|
| 158 |
+
"learning_rate": 7.386751650352834e-06,
|
| 159 |
+
"loss": 1.2719,
|
| 160 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 161 |
+
"memory/max_active (GiB)": 75.64,
|
| 162 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 163 |
+
"step": 650,
|
| 164 |
+
"tokens_per_second_per_gpu": 469.37
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.06372325898953118,
|
| 168 |
+
"grad_norm": 1.6929277181625366,
|
| 169 |
+
"learning_rate": 7.955838834509448e-06,
|
| 170 |
+
"loss": 1.2423,
|
| 171 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 172 |
+
"memory/max_active (GiB)": 75.64,
|
| 173 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 174 |
+
"step": 700,
|
| 175 |
+
"tokens_per_second_per_gpu": 469.51
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"epoch": 0.06827492034592626,
|
| 179 |
+
"grad_norm": 2.481524705886841,
|
| 180 |
+
"learning_rate": 8.52492601866606e-06,
|
| 181 |
+
"loss": 1.2189,
|
| 182 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 183 |
+
"memory/max_active (GiB)": 75.64,
|
| 184 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 185 |
+
"step": 750,
|
| 186 |
+
"tokens_per_second_per_gpu": 443.79
|
| 187 |
+
},
|
| 188 |
+
{
|
| 189 |
+
"epoch": 0.07282658170232134,
|
| 190 |
+
"grad_norm": 1.7966183423995972,
|
| 191 |
+
"learning_rate": 9.094013202822673e-06,
|
| 192 |
+
"loss": 1.2364,
|
| 193 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 194 |
+
"memory/max_active (GiB)": 75.64,
|
| 195 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 196 |
+
"step": 800,
|
| 197 |
+
"tokens_per_second_per_gpu": 471.56
|
| 198 |
+
},
|
| 199 |
+
{
|
| 200 |
+
"epoch": 0.07737824305871643,
|
| 201 |
+
"grad_norm": 1.7296600341796875,
|
| 202 |
+
"learning_rate": 9.663100386979286e-06,
|
| 203 |
+
"loss": 1.183,
|
| 204 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 205 |
+
"memory/max_active (GiB)": 75.64,
|
| 206 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 207 |
+
"step": 850,
|
| 208 |
+
"tokens_per_second_per_gpu": 476.21
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.08192990441511151,
|
| 212 |
+
"grad_norm": 1.7888613939285278,
|
| 213 |
+
"learning_rate": 1.0232187571135898e-05,
|
| 214 |
+
"loss": 1.1902,
|
| 215 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 216 |
+
"memory/max_active (GiB)": 75.64,
|
| 217 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 218 |
+
"step": 900,
|
| 219 |
+
"tokens_per_second_per_gpu": 496.55
|
| 220 |
+
},
|
| 221 |
+
{
|
| 222 |
+
"epoch": 0.0864815657715066,
|
| 223 |
+
"grad_norm": 1.9669216871261597,
|
| 224 |
+
"learning_rate": 1.0801274755292511e-05,
|
| 225 |
+
"loss": 1.2042,
|
| 226 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 227 |
+
"memory/max_active (GiB)": 75.64,
|
| 228 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 229 |
+
"step": 950,
|
| 230 |
+
"tokens_per_second_per_gpu": 494.8
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"epoch": 0.09103322712790168,
|
| 234 |
+
"grad_norm": 2.7225213050842285,
|
| 235 |
+
"learning_rate": 1.1370361939449125e-05,
|
| 236 |
+
"loss": 1.1681,
|
| 237 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 238 |
+
"memory/max_active (GiB)": 75.64,
|
| 239 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 240 |
+
"step": 1000,
|
| 241 |
+
"tokens_per_second_per_gpu": 469.73
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.09558488848429676,
|
| 245 |
+
"grad_norm": 2.091661214828491,
|
| 246 |
+
"learning_rate": 1.1939449123605736e-05,
|
| 247 |
+
"loss": 1.1957,
|
| 248 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 249 |
+
"memory/max_active (GiB)": 75.64,
|
| 250 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 251 |
+
"step": 1050,
|
| 252 |
+
"tokens_per_second_per_gpu": 501.85
|
| 253 |
+
},
|
| 254 |
+
{
|
| 255 |
+
"epoch": 0.10013654984069185,
|
| 256 |
+
"grad_norm": 2.423203945159912,
|
| 257 |
+
"learning_rate": 1.250853630776235e-05,
|
| 258 |
+
"loss": 1.2117,
|
| 259 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 260 |
+
"memory/max_active (GiB)": 75.64,
|
| 261 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 262 |
+
"step": 1100,
|
| 263 |
+
"tokens_per_second_per_gpu": 475.58
|
| 264 |
+
},
|
| 265 |
+
{
|
| 266 |
+
"epoch": 0.10468821119708693,
|
| 267 |
+
"grad_norm": 1.9933820962905884,
|
| 268 |
+
"learning_rate": 1.3077623491918964e-05,
|
| 269 |
+
"loss": 1.2049,
|
| 270 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 271 |
+
"memory/max_active (GiB)": 75.64,
|
| 272 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 273 |
+
"step": 1150,
|
| 274 |
+
"tokens_per_second_per_gpu": 484.91
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"epoch": 0.10923987255348203,
|
| 278 |
+
"grad_norm": 1.9259192943572998,
|
| 279 |
+
"learning_rate": 1.3646710676075574e-05,
|
| 280 |
+
"loss": 1.1552,
|
| 281 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 282 |
+
"memory/max_active (GiB)": 75.64,
|
| 283 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 284 |
+
"step": 1200,
|
| 285 |
+
"tokens_per_second_per_gpu": 464.56
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"epoch": 0.1137915339098771,
|
| 289 |
+
"grad_norm": 1.8878772258758545,
|
| 290 |
+
"learning_rate": 1.4215797860232188e-05,
|
| 291 |
+
"loss": 1.1847,
|
| 292 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 293 |
+
"memory/max_active (GiB)": 75.64,
|
| 294 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 295 |
+
"step": 1250,
|
| 296 |
+
"tokens_per_second_per_gpu": 532.02
|
| 297 |
+
},
|
| 298 |
+
{
|
| 299 |
+
"epoch": 0.11834319526627218,
|
| 300 |
+
"grad_norm": 2.4258198738098145,
|
| 301 |
+
"learning_rate": 1.4784885044388803e-05,
|
| 302 |
+
"loss": 1.1844,
|
| 303 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 304 |
+
"memory/max_active (GiB)": 75.64,
|
| 305 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 306 |
+
"step": 1300,
|
| 307 |
+
"tokens_per_second_per_gpu": 480.37
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.12289485662266728,
|
| 311 |
+
"grad_norm": 1.9142098426818848,
|
| 312 |
+
"learning_rate": 1.5353972228545412e-05,
|
| 313 |
+
"loss": 1.1706,
|
| 314 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 315 |
+
"memory/max_active (GiB)": 75.64,
|
| 316 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 317 |
+
"step": 1350,
|
| 318 |
+
"tokens_per_second_per_gpu": 484.91
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.12744651797906237,
|
| 322 |
+
"grad_norm": 1.8054569959640503,
|
| 323 |
+
"learning_rate": 1.5923059412702026e-05,
|
| 324 |
+
"loss": 1.1494,
|
| 325 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 326 |
+
"memory/max_active (GiB)": 75.64,
|
| 327 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 328 |
+
"step": 1400,
|
| 329 |
+
"tokens_per_second_per_gpu": 469.8
|
| 330 |
+
},
|
| 331 |
+
{
|
| 332 |
+
"epoch": 0.13199817933545743,
|
| 333 |
+
"grad_norm": 1.9961028099060059,
|
| 334 |
+
"learning_rate": 1.649214659685864e-05,
|
| 335 |
+
"loss": 1.1767,
|
| 336 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 337 |
+
"memory/max_active (GiB)": 75.64,
|
| 338 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 339 |
+
"step": 1450,
|
| 340 |
+
"tokens_per_second_per_gpu": 494.13
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"epoch": 0.13654984069185253,
|
| 344 |
+
"grad_norm": 1.7714760303497314,
|
| 345 |
+
"learning_rate": 1.7061233781015252e-05,
|
| 346 |
+
"loss": 1.1622,
|
| 347 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 348 |
+
"memory/max_active (GiB)": 75.64,
|
| 349 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 350 |
+
"step": 1500,
|
| 351 |
+
"tokens_per_second_per_gpu": 482.39
|
| 352 |
+
},
|
| 353 |
+
{
|
| 354 |
+
"epoch": 0.14110150204824762,
|
| 355 |
+
"grad_norm": 1.944865345954895,
|
| 356 |
+
"learning_rate": 1.7630320965171866e-05,
|
| 357 |
+
"loss": 1.1754,
|
| 358 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 359 |
+
"memory/max_active (GiB)": 75.64,
|
| 360 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 361 |
+
"step": 1550,
|
| 362 |
+
"tokens_per_second_per_gpu": 482.41
|
| 363 |
+
},
|
| 364 |
+
{
|
| 365 |
+
"epoch": 0.14565316340464268,
|
| 366 |
+
"grad_norm": 1.8010004758834839,
|
| 367 |
+
"learning_rate": 1.819940814932848e-05,
|
| 368 |
+
"loss": 1.1597,
|
| 369 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 370 |
+
"memory/max_active (GiB)": 75.64,
|
| 371 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 372 |
+
"step": 1600,
|
| 373 |
+
"tokens_per_second_per_gpu": 477.14
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"epoch": 0.15020482476103778,
|
| 377 |
+
"grad_norm": 2.0305533409118652,
|
| 378 |
+
"learning_rate": 1.8768495333485092e-05,
|
| 379 |
+
"loss": 1.1533,
|
| 380 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 381 |
+
"memory/max_active (GiB)": 75.64,
|
| 382 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 383 |
+
"step": 1650,
|
| 384 |
+
"tokens_per_second_per_gpu": 484.22
|
| 385 |
+
},
|
| 386 |
+
{
|
| 387 |
+
"epoch": 0.15475648611743287,
|
| 388 |
+
"grad_norm": 1.8290001153945923,
|
| 389 |
+
"learning_rate": 1.9337582517641702e-05,
|
| 390 |
+
"loss": 1.1548,
|
| 391 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 392 |
+
"memory/max_active (GiB)": 75.64,
|
| 393 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 394 |
+
"step": 1700,
|
| 395 |
+
"tokens_per_second_per_gpu": 492.04
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 0.15930814747382796,
|
| 399 |
+
"grad_norm": 1.9180041551589966,
|
| 400 |
+
"learning_rate": 1.9906669701798315e-05,
|
| 401 |
+
"loss": 1.1421,
|
| 402 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 403 |
+
"memory/max_active (GiB)": 75.64,
|
| 404 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 405 |
+
"step": 1750,
|
| 406 |
+
"tokens_per_second_per_gpu": 446.31
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"epoch": 0.16385980883022302,
|
| 410 |
+
"grad_norm": 1.6121618747711182,
|
| 411 |
+
"learning_rate": 2.047575688595493e-05,
|
| 412 |
+
"loss": 1.1166,
|
| 413 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 414 |
+
"memory/max_active (GiB)": 75.64,
|
| 415 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 416 |
+
"step": 1800,
|
| 417 |
+
"tokens_per_second_per_gpu": 454.94
|
| 418 |
+
},
|
| 419 |
+
{
|
| 420 |
+
"epoch": 0.16841147018661812,
|
| 421 |
+
"grad_norm": 1.5404553413391113,
|
| 422 |
+
"learning_rate": 2.1044844070111542e-05,
|
| 423 |
+
"loss": 1.1582,
|
| 424 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 425 |
+
"memory/max_active (GiB)": 75.64,
|
| 426 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 427 |
+
"step": 1850,
|
| 428 |
+
"tokens_per_second_per_gpu": 507.31
|
| 429 |
+
},
|
| 430 |
+
{
|
| 431 |
+
"epoch": 0.1729631315430132,
|
| 432 |
+
"grad_norm": 1.6776846647262573,
|
| 433 |
+
"learning_rate": 2.1613931254268155e-05,
|
| 434 |
+
"loss": 1.1591,
|
| 435 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 436 |
+
"memory/max_active (GiB)": 75.64,
|
| 437 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 438 |
+
"step": 1900,
|
| 439 |
+
"tokens_per_second_per_gpu": 503.53
|
| 440 |
+
},
|
| 441 |
+
{
|
| 442 |
+
"epoch": 0.17751479289940827,
|
| 443 |
+
"grad_norm": 1.8899917602539062,
|
| 444 |
+
"learning_rate": 2.218301843842477e-05,
|
| 445 |
+
"loss": 1.1293,
|
| 446 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 447 |
+
"memory/max_active (GiB)": 75.64,
|
| 448 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 449 |
+
"step": 1950,
|
| 450 |
+
"tokens_per_second_per_gpu": 467.41
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"epoch": 0.18206645425580337,
|
| 454 |
+
"grad_norm": 1.4181222915649414,
|
| 455 |
+
"learning_rate": 2.275210562258138e-05,
|
| 456 |
+
"loss": 1.1541,
|
| 457 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 458 |
+
"memory/max_active (GiB)": 75.64,
|
| 459 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 460 |
+
"step": 2000,
|
| 461 |
+
"tokens_per_second_per_gpu": 494.36
|
| 462 |
+
},
|
| 463 |
+
{
|
| 464 |
+
"epoch": 0.18661811561219846,
|
| 465 |
+
"grad_norm": 1.6970280408859253,
|
| 466 |
+
"learning_rate": 2.3321192806737992e-05,
|
| 467 |
+
"loss": 1.1207,
|
| 468 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 469 |
+
"memory/max_active (GiB)": 75.64,
|
| 470 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 471 |
+
"step": 2050,
|
| 472 |
+
"tokens_per_second_per_gpu": 457.57
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.19116977696859352,
|
| 476 |
+
"grad_norm": 1.7740880250930786,
|
| 477 |
+
"learning_rate": 2.3890279990894605e-05,
|
| 478 |
+
"loss": 1.1484,
|
| 479 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 480 |
+
"memory/max_active (GiB)": 75.64,
|
| 481 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 482 |
+
"step": 2100,
|
| 483 |
+
"tokens_per_second_per_gpu": 484.6
|
| 484 |
+
},
|
| 485 |
+
{
|
| 486 |
+
"epoch": 0.19572143832498862,
|
| 487 |
+
"grad_norm": 1.6202048063278198,
|
| 488 |
+
"learning_rate": 2.445936717505122e-05,
|
| 489 |
+
"loss": 1.1451,
|
| 490 |
+
"memory/device_reserved (GiB)": 76.76,
|
| 491 |
+
"memory/max_active (GiB)": 75.64,
|
| 492 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 493 |
+
"step": 2150,
|
| 494 |
+
"tokens_per_second_per_gpu": 532.16
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"epoch": 0.2,
|
| 498 |
+
"eval_loss": 1.119379997253418,
|
| 499 |
+
"eval_runtime": 195.6152,
|
| 500 |
+
"eval_samples_per_second": 5.107,
|
| 501 |
+
"eval_steps_per_second": 0.368,
|
| 502 |
+
"memory/device_reserved (GiB)": 77.96,
|
| 503 |
+
"memory/max_active (GiB)": 77.11,
|
| 504 |
+
"memory/max_allocated (GiB)": 77.11,
|
| 505 |
+
"step": 2197
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 0.2002730996813837,
|
| 509 |
+
"grad_norm": 1.9262148141860962,
|
| 510 |
+
"learning_rate": 2.502845435920783e-05,
|
| 511 |
+
"loss": 1.1345,
|
| 512 |
+
"memory/device_reserved (GiB)": 77.06,
|
| 513 |
+
"memory/max_active (GiB)": 75.64,
|
| 514 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 515 |
+
"step": 2200,
|
| 516 |
+
"tokens_per_second_per_gpu": 24.4
|
| 517 |
+
},
|
| 518 |
+
{
|
| 519 |
+
"epoch": 0.2048247610377788,
|
| 520 |
+
"grad_norm": 1.6392292976379395,
|
| 521 |
+
"learning_rate": 2.5597541543364445e-05,
|
| 522 |
+
"loss": 1.1275,
|
| 523 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 524 |
+
"memory/max_active (GiB)": 75.64,
|
| 525 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 526 |
+
"step": 2250,
|
| 527 |
+
"tokens_per_second_per_gpu": 462.24
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"epoch": 0.20937642239417387,
|
| 531 |
+
"grad_norm": 1.8397603034973145,
|
| 532 |
+
"learning_rate": 2.6166628727521058e-05,
|
| 533 |
+
"loss": 1.1246,
|
| 534 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 535 |
+
"memory/max_active (GiB)": 75.64,
|
| 536 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 537 |
+
"step": 2300,
|
| 538 |
+
"tokens_per_second_per_gpu": 490.72
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"epoch": 0.21392808375056896,
|
| 542 |
+
"grad_norm": 1.2947629690170288,
|
| 543 |
+
"learning_rate": 2.673571591167767e-05,
|
| 544 |
+
"loss": 1.1322,
|
| 545 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 546 |
+
"memory/max_active (GiB)": 75.64,
|
| 547 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 548 |
+
"step": 2350,
|
| 549 |
+
"tokens_per_second_per_gpu": 475.82
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 0.21847974510696405,
|
| 553 |
+
"grad_norm": 1.5403435230255127,
|
| 554 |
+
"learning_rate": 2.730480309583428e-05,
|
| 555 |
+
"loss": 1.1028,
|
| 556 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 557 |
+
"memory/max_active (GiB)": 75.64,
|
| 558 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 559 |
+
"step": 2400,
|
| 560 |
+
"tokens_per_second_per_gpu": 503.72
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"epoch": 0.22303140646335912,
|
| 564 |
+
"grad_norm": 1.2514817714691162,
|
| 565 |
+
"learning_rate": 2.7873890279990895e-05,
|
| 566 |
+
"loss": 1.1469,
|
| 567 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 568 |
+
"memory/max_active (GiB)": 75.64,
|
| 569 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 570 |
+
"step": 2450,
|
| 571 |
+
"tokens_per_second_per_gpu": 525.63
|
| 572 |
+
},
|
| 573 |
+
{
|
| 574 |
+
"epoch": 0.2275830678197542,
|
| 575 |
+
"grad_norm": 1.5391417741775513,
|
| 576 |
+
"learning_rate": 2.8442977464147508e-05,
|
| 577 |
+
"loss": 1.1068,
|
| 578 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 579 |
+
"memory/max_active (GiB)": 75.64,
|
| 580 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 581 |
+
"step": 2500,
|
| 582 |
+
"tokens_per_second_per_gpu": 480.06
|
| 583 |
+
},
|
| 584 |
+
{
|
| 585 |
+
"epoch": 0.2321347291761493,
|
| 586 |
+
"grad_norm": 1.393747091293335,
|
| 587 |
+
"learning_rate": 2.901206464830412e-05,
|
| 588 |
+
"loss": 1.1453,
|
| 589 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 590 |
+
"memory/max_active (GiB)": 75.64,
|
| 591 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 592 |
+
"step": 2550,
|
| 593 |
+
"tokens_per_second_per_gpu": 498.26
|
| 594 |
+
},
|
| 595 |
+
{
|
| 596 |
+
"epoch": 0.23668639053254437,
|
| 597 |
+
"grad_norm": 1.5987119674682617,
|
| 598 |
+
"learning_rate": 2.9581151832460735e-05,
|
| 599 |
+
"loss": 1.116,
|
| 600 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 601 |
+
"memory/max_active (GiB)": 75.64,
|
| 602 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 603 |
+
"step": 2600,
|
| 604 |
+
"tokens_per_second_per_gpu": 489.22
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 0.24123805188893946,
|
| 608 |
+
"grad_norm": 1.2702186107635498,
|
| 609 |
+
"learning_rate": 3.0150239016617348e-05,
|
| 610 |
+
"loss": 1.1107,
|
| 611 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 612 |
+
"memory/max_active (GiB)": 75.64,
|
| 613 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 614 |
+
"step": 2650,
|
| 615 |
+
"tokens_per_second_per_gpu": 482.9
|
| 616 |
+
},
|
| 617 |
+
{
|
| 618 |
+
"epoch": 0.24578971324533455,
|
| 619 |
+
"grad_norm": 1.4149582386016846,
|
| 620 |
+
"learning_rate": 3.071932620077396e-05,
|
| 621 |
+
"loss": 1.1302,
|
| 622 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 623 |
+
"memory/max_active (GiB)": 75.64,
|
| 624 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 625 |
+
"step": 2700,
|
| 626 |
+
"tokens_per_second_per_gpu": 495.9
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.2503413746017296,
|
| 630 |
+
"grad_norm": 3.761045455932617,
|
| 631 |
+
"learning_rate": 3.128841338493057e-05,
|
| 632 |
+
"loss": 1.1311,
|
| 633 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 634 |
+
"memory/max_active (GiB)": 75.64,
|
| 635 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 636 |
+
"step": 2750,
|
| 637 |
+
"tokens_per_second_per_gpu": 489.72
|
| 638 |
+
},
|
| 639 |
+
{
|
| 640 |
+
"epoch": 0.25489303595812474,
|
| 641 |
+
"grad_norm": 1.2627049684524536,
|
| 642 |
+
"learning_rate": 3.185750056908718e-05,
|
| 643 |
+
"loss": 1.1243,
|
| 644 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 645 |
+
"memory/max_active (GiB)": 75.64,
|
| 646 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 647 |
+
"step": 2800,
|
| 648 |
+
"tokens_per_second_per_gpu": 472.22
|
| 649 |
+
},
|
| 650 |
+
{
|
| 651 |
+
"epoch": 0.2594446973145198,
|
| 652 |
+
"grad_norm": 1.3173185586929321,
|
| 653 |
+
"learning_rate": 3.24265877532438e-05,
|
| 654 |
+
"loss": 1.1066,
|
| 655 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 656 |
+
"memory/max_active (GiB)": 75.64,
|
| 657 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 658 |
+
"step": 2850,
|
| 659 |
+
"tokens_per_second_per_gpu": 467.07
|
| 660 |
+
},
|
| 661 |
+
{
|
| 662 |
+
"epoch": 0.26399635867091487,
|
| 663 |
+
"grad_norm": 1.4638679027557373,
|
| 664 |
+
"learning_rate": 3.2995674937400414e-05,
|
| 665 |
+
"loss": 1.1183,
|
| 666 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 667 |
+
"memory/max_active (GiB)": 75.64,
|
| 668 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 669 |
+
"step": 2900,
|
| 670 |
+
"tokens_per_second_per_gpu": 495.32
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"epoch": 0.26854802002731,
|
| 674 |
+
"grad_norm": 1.3660715818405151,
|
| 675 |
+
"learning_rate": 3.3564762121557024e-05,
|
| 676 |
+
"loss": 1.0697,
|
| 677 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 678 |
+
"memory/max_active (GiB)": 75.64,
|
| 679 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 680 |
+
"step": 2950,
|
| 681 |
+
"tokens_per_second_per_gpu": 474.36
|
| 682 |
+
},
|
| 683 |
+
{
|
| 684 |
+
"epoch": 0.27309968138370505,
|
| 685 |
+
"grad_norm": 1.175022840499878,
|
| 686 |
+
"learning_rate": 3.413384930571364e-05,
|
| 687 |
+
"loss": 1.1047,
|
| 688 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 689 |
+
"memory/max_active (GiB)": 75.64,
|
| 690 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 691 |
+
"step": 3000,
|
| 692 |
+
"tokens_per_second_per_gpu": 501.11
|
| 693 |
+
},
|
| 694 |
+
{
|
| 695 |
+
"epoch": 0.2776513427401001,
|
| 696 |
+
"grad_norm": 1.247564673423767,
|
| 697 |
+
"learning_rate": 3.470293648987025e-05,
|
| 698 |
+
"loss": 1.1115,
|
| 699 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 700 |
+
"memory/max_active (GiB)": 75.64,
|
| 701 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 702 |
+
"step": 3050,
|
| 703 |
+
"tokens_per_second_per_gpu": 491.44
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.28220300409649524,
|
| 707 |
+
"grad_norm": 1.1579777002334595,
|
| 708 |
+
"learning_rate": 3.527202367402686e-05,
|
| 709 |
+
"loss": 1.1257,
|
| 710 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 711 |
+
"memory/max_active (GiB)": 75.64,
|
| 712 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 713 |
+
"step": 3100,
|
| 714 |
+
"tokens_per_second_per_gpu": 512.81
|
| 715 |
+
},
|
| 716 |
+
{
|
| 717 |
+
"epoch": 0.2867546654528903,
|
| 718 |
+
"grad_norm": 1.1780682802200317,
|
| 719 |
+
"learning_rate": 3.584111085818348e-05,
|
| 720 |
+
"loss": 1.1078,
|
| 721 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 722 |
+
"memory/max_active (GiB)": 75.64,
|
| 723 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 724 |
+
"step": 3150,
|
| 725 |
+
"tokens_per_second_per_gpu": 476.72
|
| 726 |
+
},
|
| 727 |
+
{
|
| 728 |
+
"epoch": 0.29130632680928537,
|
| 729 |
+
"grad_norm": 1.224279761314392,
|
| 730 |
+
"learning_rate": 3.641019804234009e-05,
|
| 731 |
+
"loss": 1.1464,
|
| 732 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 733 |
+
"memory/max_active (GiB)": 75.64,
|
| 734 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 735 |
+
"step": 3200,
|
| 736 |
+
"tokens_per_second_per_gpu": 524.15
|
| 737 |
+
},
|
| 738 |
+
{
|
| 739 |
+
"epoch": 0.2958579881656805,
|
| 740 |
+
"grad_norm": 1.2794740200042725,
|
| 741 |
+
"learning_rate": 3.6979285226496704e-05,
|
| 742 |
+
"loss": 1.0947,
|
| 743 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 744 |
+
"memory/max_active (GiB)": 75.64,
|
| 745 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 746 |
+
"step": 3250,
|
| 747 |
+
"tokens_per_second_per_gpu": 517.16
|
| 748 |
+
},
|
| 749 |
+
{
|
| 750 |
+
"epoch": 0.30040964952207555,
|
| 751 |
+
"grad_norm": 1.2177249193191528,
|
| 752 |
+
"learning_rate": 3.7548372410653314e-05,
|
| 753 |
+
"loss": 1.1261,
|
| 754 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 755 |
+
"memory/max_active (GiB)": 75.64,
|
| 756 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 757 |
+
"step": 3300,
|
| 758 |
+
"tokens_per_second_per_gpu": 467.35
|
| 759 |
+
},
|
| 760 |
+
{
|
| 761 |
+
"epoch": 0.3049613108784706,
|
| 762 |
+
"grad_norm": 1.1074647903442383,
|
| 763 |
+
"learning_rate": 3.811745959480993e-05,
|
| 764 |
+
"loss": 1.1125,
|
| 765 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 766 |
+
"memory/max_active (GiB)": 75.64,
|
| 767 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 768 |
+
"step": 3350,
|
| 769 |
+
"tokens_per_second_per_gpu": 505.32
|
| 770 |
+
},
|
| 771 |
+
{
|
| 772 |
+
"epoch": 0.30951297223486574,
|
| 773 |
+
"grad_norm": 1.2007449865341187,
|
| 774 |
+
"learning_rate": 3.8686546778966534e-05,
|
| 775 |
+
"loss": 1.1102,
|
| 776 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 777 |
+
"memory/max_active (GiB)": 75.64,
|
| 778 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 779 |
+
"step": 3400,
|
| 780 |
+
"tokens_per_second_per_gpu": 500.46
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.3140646335912608,
|
| 784 |
+
"grad_norm": 1.5369510650634766,
|
| 785 |
+
"learning_rate": 3.925563396312315e-05,
|
| 786 |
+
"loss": 1.0961,
|
| 787 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 788 |
+
"memory/max_active (GiB)": 75.64,
|
| 789 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 790 |
+
"step": 3450,
|
| 791 |
+
"tokens_per_second_per_gpu": 461.95
|
| 792 |
+
},
|
| 793 |
+
{
|
| 794 |
+
"epoch": 0.3186162949476559,
|
| 795 |
+
"grad_norm": 0.9427760243415833,
|
| 796 |
+
"learning_rate": 3.982472114727977e-05,
|
| 797 |
+
"loss": 1.1108,
|
| 798 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 799 |
+
"memory/max_active (GiB)": 75.64,
|
| 800 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 801 |
+
"step": 3500,
|
| 802 |
+
"tokens_per_second_per_gpu": 515.4
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"epoch": 0.323167956304051,
|
| 806 |
+
"grad_norm": 1.334630012512207,
|
| 807 |
+
"learning_rate": 4.039380833143638e-05,
|
| 808 |
+
"loss": 1.1014,
|
| 809 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 810 |
+
"memory/max_active (GiB)": 75.64,
|
| 811 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 812 |
+
"step": 3550,
|
| 813 |
+
"tokens_per_second_per_gpu": 498.55
|
| 814 |
+
},
|
| 815 |
+
{
|
| 816 |
+
"epoch": 0.32771961766044605,
|
| 817 |
+
"grad_norm": 1.1430654525756836,
|
| 818 |
+
"learning_rate": 4.0962895515592994e-05,
|
| 819 |
+
"loss": 1.11,
|
| 820 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 821 |
+
"memory/max_active (GiB)": 75.64,
|
| 822 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 823 |
+
"step": 3600,
|
| 824 |
+
"tokens_per_second_per_gpu": 437.81
|
| 825 |
+
},
|
| 826 |
+
{
|
| 827 |
+
"epoch": 0.33227127901684117,
|
| 828 |
+
"grad_norm": 1.4943946599960327,
|
| 829 |
+
"learning_rate": 4.1531982699749604e-05,
|
| 830 |
+
"loss": 1.0991,
|
| 831 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 832 |
+
"memory/max_active (GiB)": 75.64,
|
| 833 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 834 |
+
"step": 3650,
|
| 835 |
+
"tokens_per_second_per_gpu": 476.41
|
| 836 |
+
},
|
| 837 |
+
{
|
| 838 |
+
"epoch": 0.33682294037323623,
|
| 839 |
+
"grad_norm": 1.2534953355789185,
|
| 840 |
+
"learning_rate": 4.210106988390622e-05,
|
| 841 |
+
"loss": 1.0669,
|
| 842 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 843 |
+
"memory/max_active (GiB)": 75.64,
|
| 844 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 845 |
+
"step": 3700,
|
| 846 |
+
"tokens_per_second_per_gpu": 463.29
|
| 847 |
+
},
|
| 848 |
+
{
|
| 849 |
+
"epoch": 0.3413746017296313,
|
| 850 |
+
"grad_norm": 1.0308473110198975,
|
| 851 |
+
"learning_rate": 4.267015706806283e-05,
|
| 852 |
+
"loss": 1.0984,
|
| 853 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 854 |
+
"memory/max_active (GiB)": 75.64,
|
| 855 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 856 |
+
"step": 3750,
|
| 857 |
+
"tokens_per_second_per_gpu": 455.95
|
| 858 |
+
},
|
| 859 |
+
{
|
| 860 |
+
"epoch": 0.3459262630860264,
|
| 861 |
+
"grad_norm": 1.2468562126159668,
|
| 862 |
+
"learning_rate": 4.323924425221944e-05,
|
| 863 |
+
"loss": 1.0733,
|
| 864 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 865 |
+
"memory/max_active (GiB)": 75.64,
|
| 866 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 867 |
+
"step": 3800,
|
| 868 |
+
"tokens_per_second_per_gpu": 460.65
|
| 869 |
+
},
|
| 870 |
+
{
|
| 871 |
+
"epoch": 0.3504779244424215,
|
| 872 |
+
"grad_norm": 1.1006118059158325,
|
| 873 |
+
"learning_rate": 4.380833143637606e-05,
|
| 874 |
+
"loss": 1.098,
|
| 875 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 876 |
+
"memory/max_active (GiB)": 75.64,
|
| 877 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 878 |
+
"step": 3850,
|
| 879 |
+
"tokens_per_second_per_gpu": 482.27
|
| 880 |
+
},
|
| 881 |
+
{
|
| 882 |
+
"epoch": 0.35502958579881655,
|
| 883 |
+
"grad_norm": 1.1994727849960327,
|
| 884 |
+
"learning_rate": 4.437741862053267e-05,
|
| 885 |
+
"loss": 1.1089,
|
| 886 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 887 |
+
"memory/max_active (GiB)": 75.64,
|
| 888 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 889 |
+
"step": 3900,
|
| 890 |
+
"tokens_per_second_per_gpu": 527.68
|
| 891 |
+
},
|
| 892 |
+
{
|
| 893 |
+
"epoch": 0.35958124715521167,
|
| 894 |
+
"grad_norm": 1.166426181793213,
|
| 895 |
+
"learning_rate": 4.4946505804689283e-05,
|
| 896 |
+
"loss": 1.0693,
|
| 897 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 898 |
+
"memory/max_active (GiB)": 75.64,
|
| 899 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 900 |
+
"step": 3950,
|
| 901 |
+
"tokens_per_second_per_gpu": 447.81
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 0.36413290851160673,
|
| 905 |
+
"grad_norm": 1.003192663192749,
|
| 906 |
+
"learning_rate": 4.551559298884589e-05,
|
| 907 |
+
"loss": 1.1004,
|
| 908 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 909 |
+
"memory/max_active (GiB)": 75.64,
|
| 910 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 911 |
+
"step": 4000,
|
| 912 |
+
"tokens_per_second_per_gpu": 481.48
|
| 913 |
+
},
|
| 914 |
+
{
|
| 915 |
+
"epoch": 0.3686845698680018,
|
| 916 |
+
"grad_norm": 0.9891825318336487,
|
| 917 |
+
"learning_rate": 4.60846801730025e-05,
|
| 918 |
+
"loss": 1.0936,
|
| 919 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 920 |
+
"memory/max_active (GiB)": 75.64,
|
| 921 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 922 |
+
"step": 4050,
|
| 923 |
+
"tokens_per_second_per_gpu": 498.97
|
| 924 |
+
},
|
| 925 |
+
{
|
| 926 |
+
"epoch": 0.3732362312243969,
|
| 927 |
+
"grad_norm": 1.1373133659362793,
|
| 928 |
+
"learning_rate": 4.665376735715912e-05,
|
| 929 |
+
"loss": 1.0909,
|
| 930 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 931 |
+
"memory/max_active (GiB)": 75.64,
|
| 932 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 933 |
+
"step": 4100,
|
| 934 |
+
"tokens_per_second_per_gpu": 504.57
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.377787892580792,
|
| 938 |
+
"grad_norm": 1.149749517440796,
|
| 939 |
+
"learning_rate": 4.722285454131573e-05,
|
| 940 |
+
"loss": 1.0913,
|
| 941 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 942 |
+
"memory/max_active (GiB)": 75.64,
|
| 943 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 944 |
+
"step": 4150,
|
| 945 |
+
"tokens_per_second_per_gpu": 497.49
|
| 946 |
+
},
|
| 947 |
+
{
|
| 948 |
+
"epoch": 0.38233955393718705,
|
| 949 |
+
"grad_norm": 1.1793601512908936,
|
| 950 |
+
"learning_rate": 4.7791941725472346e-05,
|
| 951 |
+
"loss": 1.0951,
|
| 952 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 953 |
+
"memory/max_active (GiB)": 75.64,
|
| 954 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 955 |
+
"step": 4200,
|
| 956 |
+
"tokens_per_second_per_gpu": 532.82
|
| 957 |
+
},
|
| 958 |
+
{
|
| 959 |
+
"epoch": 0.38689121529358217,
|
| 960 |
+
"grad_norm": 0.982142448425293,
|
| 961 |
+
"learning_rate": 4.8361028909628956e-05,
|
| 962 |
+
"loss": 1.1117,
|
| 963 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 964 |
+
"memory/max_active (GiB)": 75.64,
|
| 965 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 966 |
+
"step": 4250,
|
| 967 |
+
"tokens_per_second_per_gpu": 518.2
|
| 968 |
+
},
|
| 969 |
+
{
|
| 970 |
+
"epoch": 0.39144287664997723,
|
| 971 |
+
"grad_norm": 1.0042027235031128,
|
| 972 |
+
"learning_rate": 4.893011609378557e-05,
|
| 973 |
+
"loss": 1.0869,
|
| 974 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 975 |
+
"memory/max_active (GiB)": 75.64,
|
| 976 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 977 |
+
"step": 4300,
|
| 978 |
+
"tokens_per_second_per_gpu": 487.27
|
| 979 |
+
},
|
| 980 |
+
{
|
| 981 |
+
"epoch": 0.3959945380063723,
|
| 982 |
+
"grad_norm": 1.2012032270431519,
|
| 983 |
+
"learning_rate": 4.949920327794218e-05,
|
| 984 |
+
"loss": 1.0682,
|
| 985 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 986 |
+
"memory/max_active (GiB)": 75.64,
|
| 987 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 988 |
+
"step": 4350,
|
| 989 |
+
"tokens_per_second_per_gpu": 467.47
|
| 990 |
+
},
|
| 991 |
+
{
|
| 992 |
+
"epoch": 0.4,
|
| 993 |
+
"eval_loss": 1.0708580017089844,
|
| 994 |
+
"eval_runtime": 195.2836,
|
| 995 |
+
"eval_samples_per_second": 5.116,
|
| 996 |
+
"eval_steps_per_second": 0.369,
|
| 997 |
+
"memory/device_reserved (GiB)": 77.96,
|
| 998 |
+
"memory/max_active (GiB)": 77.11,
|
| 999 |
+
"memory/max_allocated (GiB)": 77.11,
|
| 1000 |
+
"step": 4394
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"epoch": 0.4005461993627674,
|
| 1004 |
+
"grad_norm": 1.1110295057296753,
|
| 1005 |
+
"learning_rate": 4.999999716007333e-05,
|
| 1006 |
+
"loss": 1.1033,
|
| 1007 |
+
"memory/device_reserved (GiB)": 77.06,
|
| 1008 |
+
"memory/max_active (GiB)": 75.64,
|
| 1009 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1010 |
+
"step": 4400,
|
| 1011 |
+
"tokens_per_second_per_gpu": 62.64
|
| 1012 |
+
},
|
| 1013 |
+
{
|
| 1014 |
+
"epoch": 0.4050978607191625,
|
| 1015 |
+
"grad_norm": 1.0224543809890747,
|
| 1016 |
+
"learning_rate": 4.999975261123525e-05,
|
| 1017 |
+
"loss": 1.088,
|
| 1018 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1019 |
+
"memory/max_active (GiB)": 75.64,
|
| 1020 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1021 |
+
"step": 4450,
|
| 1022 |
+
"tokens_per_second_per_gpu": 512.07
|
| 1023 |
+
},
|
| 1024 |
+
{
|
| 1025 |
+
"epoch": 0.4096495220755576,
|
| 1026 |
+
"grad_norm": 0.8717514872550964,
|
| 1027 |
+
"learning_rate": 4.999911363255113e-05,
|
| 1028 |
+
"loss": 1.0761,
|
| 1029 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1030 |
+
"memory/max_active (GiB)": 75.64,
|
| 1031 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1032 |
+
"step": 4500,
|
| 1033 |
+
"tokens_per_second_per_gpu": 494.38
|
| 1034 |
+
},
|
| 1035 |
+
{
|
| 1036 |
+
"epoch": 0.41420118343195267,
|
| 1037 |
+
"grad_norm": 1.2397717237472534,
|
| 1038 |
+
"learning_rate": 4.999808023410233e-05,
|
| 1039 |
+
"loss": 1.0455,
|
| 1040 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1041 |
+
"memory/max_active (GiB)": 75.64,
|
| 1042 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1043 |
+
"step": 4550,
|
| 1044 |
+
"tokens_per_second_per_gpu": 460.23
|
| 1045 |
+
},
|
| 1046 |
+
{
|
| 1047 |
+
"epoch": 0.41875284478834773,
|
| 1048 |
+
"grad_norm": 1.0875898599624634,
|
| 1049 |
+
"learning_rate": 4.999665243219317e-05,
|
| 1050 |
+
"loss": 1.0789,
|
| 1051 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1052 |
+
"memory/max_active (GiB)": 75.64,
|
| 1053 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1054 |
+
"step": 4600,
|
| 1055 |
+
"tokens_per_second_per_gpu": 488.7
|
| 1056 |
+
},
|
| 1057 |
+
{
|
| 1058 |
+
"epoch": 0.42330450614474285,
|
| 1059 |
+
"grad_norm": 0.9245534539222717,
|
| 1060 |
+
"learning_rate": 4.9994830249350555e-05,
|
| 1061 |
+
"loss": 1.0736,
|
| 1062 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1063 |
+
"memory/max_active (GiB)": 75.64,
|
| 1064 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1065 |
+
"step": 4650,
|
| 1066 |
+
"tokens_per_second_per_gpu": 480.91
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"epoch": 0.4278561675011379,
|
| 1070 |
+
"grad_norm": 1.1447221040725708,
|
| 1071 |
+
"learning_rate": 4.9992613714323723e-05,
|
| 1072 |
+
"loss": 1.0639,
|
| 1073 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1074 |
+
"memory/max_active (GiB)": 75.64,
|
| 1075 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1076 |
+
"step": 4700,
|
| 1077 |
+
"tokens_per_second_per_gpu": 492.85
|
| 1078 |
+
},
|
| 1079 |
+
{
|
| 1080 |
+
"epoch": 0.432407828857533,
|
| 1081 |
+
"grad_norm": 1.0307674407958984,
|
| 1082 |
+
"learning_rate": 4.99900028620837e-05,
|
| 1083 |
+
"loss": 1.077,
|
| 1084 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1085 |
+
"memory/max_active (GiB)": 75.64,
|
| 1086 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1087 |
+
"step": 4750,
|
| 1088 |
+
"tokens_per_second_per_gpu": 477.88
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 0.4369594902139281,
|
| 1092 |
+
"grad_norm": 0.9278285503387451,
|
| 1093 |
+
"learning_rate": 4.9986997733822826e-05,
|
| 1094 |
+
"loss": 1.088,
|
| 1095 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1096 |
+
"memory/max_active (GiB)": 75.64,
|
| 1097 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1098 |
+
"step": 4800,
|
| 1099 |
+
"tokens_per_second_per_gpu": 480.35
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"epoch": 0.44151115157032317,
|
| 1103 |
+
"grad_norm": 1.2356767654418945,
|
| 1104 |
+
"learning_rate": 4.998359837695407e-05,
|
| 1105 |
+
"loss": 1.0781,
|
| 1106 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1107 |
+
"memory/max_active (GiB)": 75.64,
|
| 1108 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1109 |
+
"step": 4850,
|
| 1110 |
+
"tokens_per_second_per_gpu": 472.56
|
| 1111 |
+
},
|
| 1112 |
+
{
|
| 1113 |
+
"epoch": 0.44606281292671823,
|
| 1114 |
+
"grad_norm": 0.9927319884300232,
|
| 1115 |
+
"learning_rate": 4.997980484511027e-05,
|
| 1116 |
+
"loss": 1.1009,
|
| 1117 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1118 |
+
"memory/max_active (GiB)": 75.64,
|
| 1119 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1120 |
+
"step": 4900,
|
| 1121 |
+
"tokens_per_second_per_gpu": 488.86
|
| 1122 |
+
},
|
| 1123 |
+
{
|
| 1124 |
+
"epoch": 0.45061447428311335,
|
| 1125 |
+
"grad_norm": 0.9227324724197388,
|
| 1126 |
+
"learning_rate": 4.997561719814329e-05,
|
| 1127 |
+
"loss": 1.0898,
|
| 1128 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1129 |
+
"memory/max_active (GiB)": 75.64,
|
| 1130 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1131 |
+
"step": 4950,
|
| 1132 |
+
"tokens_per_second_per_gpu": 520.64
|
| 1133 |
+
},
|
| 1134 |
+
{
|
| 1135 |
+
"epoch": 0.4551661356395084,
|
| 1136 |
+
"grad_norm": 1.0663466453552246,
|
| 1137 |
+
"learning_rate": 4.9971035502123126e-05,
|
| 1138 |
+
"loss": 1.0729,
|
| 1139 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1140 |
+
"memory/max_active (GiB)": 75.64,
|
| 1141 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1142 |
+
"step": 5000,
|
| 1143 |
+
"tokens_per_second_per_gpu": 478.18
|
| 1144 |
+
},
|
| 1145 |
+
{
|
| 1146 |
+
"epoch": 0.4597177969959035,
|
| 1147 |
+
"grad_norm": 0.9325670599937439,
|
| 1148 |
+
"learning_rate": 4.9966059829336786e-05,
|
| 1149 |
+
"loss": 1.069,
|
| 1150 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1151 |
+
"memory/max_active (GiB)": 75.64,
|
| 1152 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1153 |
+
"step": 5050,
|
| 1154 |
+
"tokens_per_second_per_gpu": 484.12
|
| 1155 |
+
},
|
| 1156 |
+
{
|
| 1157 |
+
"epoch": 0.4642694583522986,
|
| 1158 |
+
"grad_norm": 1.1680859327316284,
|
| 1159 |
+
"learning_rate": 4.9960690258287204e-05,
|
| 1160 |
+
"loss": 1.0801,
|
| 1161 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1162 |
+
"memory/max_active (GiB)": 75.64,
|
| 1163 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1164 |
+
"step": 5100,
|
| 1165 |
+
"tokens_per_second_per_gpu": 469.73
|
| 1166 |
+
},
|
| 1167 |
+
{
|
| 1168 |
+
"epoch": 0.46882111970869367,
|
| 1169 |
+
"grad_norm": 1.132150411605835,
|
| 1170 |
+
"learning_rate": 4.995492687369198e-05,
|
| 1171 |
+
"loss": 1.0803,
|
| 1172 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1173 |
+
"memory/max_active (GiB)": 75.64,
|
| 1174 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1175 |
+
"step": 5150,
|
| 1176 |
+
"tokens_per_second_per_gpu": 483.93
|
| 1177 |
+
},
|
| 1178 |
+
{
|
| 1179 |
+
"epoch": 0.47337278106508873,
|
| 1180 |
+
"grad_norm": 1.0051616430282593,
|
| 1181 |
+
"learning_rate": 4.994876976648204e-05,
|
| 1182 |
+
"loss": 1.0829,
|
| 1183 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1184 |
+
"memory/max_active (GiB)": 75.64,
|
| 1185 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1186 |
+
"step": 5200,
|
| 1187 |
+
"tokens_per_second_per_gpu": 491.51
|
| 1188 |
+
},
|
| 1189 |
+
{
|
| 1190 |
+
"epoch": 0.47792444242148385,
|
| 1191 |
+
"grad_norm": 1.000447392463684,
|
| 1192 |
+
"learning_rate": 4.994221903380024e-05,
|
| 1193 |
+
"loss": 1.0709,
|
| 1194 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1195 |
+
"memory/max_active (GiB)": 75.64,
|
| 1196 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1197 |
+
"step": 5250,
|
| 1198 |
+
"tokens_per_second_per_gpu": 510.0
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"epoch": 0.4824761037778789,
|
| 1202 |
+
"grad_norm": 1.1662852764129639,
|
| 1203 |
+
"learning_rate": 4.993527477899977e-05,
|
| 1204 |
+
"loss": 1.0676,
|
| 1205 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1206 |
+
"memory/max_active (GiB)": 75.64,
|
| 1207 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1208 |
+
"step": 5300,
|
| 1209 |
+
"tokens_per_second_per_gpu": 512.04
|
| 1210 |
+
},
|
| 1211 |
+
{
|
| 1212 |
+
"epoch": 0.48702776513427404,
|
| 1213 |
+
"grad_norm": 1.0618816614151,
|
| 1214 |
+
"learning_rate": 4.992793711164256e-05,
|
| 1215 |
+
"loss": 1.0825,
|
| 1216 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1217 |
+
"memory/max_active (GiB)": 75.64,
|
| 1218 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1219 |
+
"step": 5350,
|
| 1220 |
+
"tokens_per_second_per_gpu": 495.62
|
| 1221 |
+
},
|
| 1222 |
+
{
|
| 1223 |
+
"epoch": 0.4915794264906691,
|
| 1224 |
+
"grad_norm": 1.1399046182632446,
|
| 1225 |
+
"learning_rate": 4.992020614749758e-05,
|
| 1226 |
+
"loss": 1.0664,
|
| 1227 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1228 |
+
"memory/max_active (GiB)": 75.64,
|
| 1229 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1230 |
+
"step": 5400,
|
| 1231 |
+
"tokens_per_second_per_gpu": 494.69
|
| 1232 |
+
},
|
| 1233 |
+
{
|
| 1234 |
+
"epoch": 0.49613108784706417,
|
| 1235 |
+
"grad_norm": 1.2065247297286987,
|
| 1236 |
+
"learning_rate": 4.991208200853894e-05,
|
| 1237 |
+
"loss": 1.0657,
|
| 1238 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1239 |
+
"memory/max_active (GiB)": 75.64,
|
| 1240 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1241 |
+
"step": 5450,
|
| 1242 |
+
"tokens_per_second_per_gpu": 493.34
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"epoch": 0.5006827492034592,
|
| 1246 |
+
"grad_norm": 1.0179318189620972,
|
| 1247 |
+
"learning_rate": 4.9903564822944024e-05,
|
| 1248 |
+
"loss": 1.0677,
|
| 1249 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1250 |
+
"memory/max_active (GiB)": 75.64,
|
| 1251 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1252 |
+
"step": 5500,
|
| 1253 |
+
"tokens_per_second_per_gpu": 506.23
|
| 1254 |
+
},
|
| 1255 |
+
{
|
| 1256 |
+
"epoch": 0.5052344105598543,
|
| 1257 |
+
"grad_norm": 1.192871332168579,
|
| 1258 |
+
"learning_rate": 4.989465472509145e-05,
|
| 1259 |
+
"loss": 1.0534,
|
| 1260 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1261 |
+
"memory/max_active (GiB)": 75.64,
|
| 1262 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1263 |
+
"step": 5550,
|
| 1264 |
+
"tokens_per_second_per_gpu": 487.98
|
| 1265 |
+
},
|
| 1266 |
+
{
|
| 1267 |
+
"epoch": 0.5097860719162495,
|
| 1268 |
+
"grad_norm": 1.072653889656067,
|
| 1269 |
+
"learning_rate": 4.988535185555896e-05,
|
| 1270 |
+
"loss": 1.0625,
|
| 1271 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1272 |
+
"memory/max_active (GiB)": 75.64,
|
| 1273 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1274 |
+
"step": 5600,
|
| 1275 |
+
"tokens_per_second_per_gpu": 473.49
|
| 1276 |
+
},
|
| 1277 |
+
{
|
| 1278 |
+
"epoch": 0.5143377332726445,
|
| 1279 |
+
"grad_norm": 1.1457641124725342,
|
| 1280 |
+
"learning_rate": 4.987565636112117e-05,
|
| 1281 |
+
"loss": 1.0596,
|
| 1282 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1283 |
+
"memory/max_active (GiB)": 75.64,
|
| 1284 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1285 |
+
"step": 5650,
|
| 1286 |
+
"tokens_per_second_per_gpu": 489.03
|
| 1287 |
+
},
|
| 1288 |
+
{
|
| 1289 |
+
"epoch": 0.5188893946290396,
|
| 1290 |
+
"grad_norm": 0.9638017416000366,
|
| 1291 |
+
"learning_rate": 4.986556839474729e-05,
|
| 1292 |
+
"loss": 1.0502,
|
| 1293 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1294 |
+
"memory/max_active (GiB)": 75.64,
|
| 1295 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1296 |
+
"step": 5700,
|
| 1297 |
+
"tokens_per_second_per_gpu": 485.55
|
| 1298 |
+
},
|
| 1299 |
+
{
|
| 1300 |
+
"epoch": 0.5234410559854347,
|
| 1301 |
+
"grad_norm": 1.1078736782073975,
|
| 1302 |
+
"learning_rate": 4.98550881155987e-05,
|
| 1303 |
+
"loss": 1.0695,
|
| 1304 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1305 |
+
"memory/max_active (GiB)": 75.64,
|
| 1306 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1307 |
+
"step": 5750,
|
| 1308 |
+
"tokens_per_second_per_gpu": 485.32
|
| 1309 |
+
},
|
| 1310 |
+
{
|
| 1311 |
+
"epoch": 0.5279927173418297,
|
| 1312 |
+
"grad_norm": 1.3936585187911987,
|
| 1313 |
+
"learning_rate": 4.984421568902643e-05,
|
| 1314 |
+
"loss": 1.0253,
|
| 1315 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1316 |
+
"memory/max_active (GiB)": 75.64,
|
| 1317 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1318 |
+
"step": 5800,
|
| 1319 |
+
"tokens_per_second_per_gpu": 463.27
|
| 1320 |
+
},
|
| 1321 |
+
{
|
| 1322 |
+
"epoch": 0.5325443786982249,
|
| 1323 |
+
"grad_norm": 1.12526535987854,
|
| 1324 |
+
"learning_rate": 4.983295128656856e-05,
|
| 1325 |
+
"loss": 1.0549,
|
| 1326 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1327 |
+
"memory/max_active (GiB)": 75.64,
|
| 1328 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1329 |
+
"step": 5850,
|
| 1330 |
+
"tokens_per_second_per_gpu": 480.14
|
| 1331 |
+
},
|
| 1332 |
+
{
|
| 1333 |
+
"epoch": 0.53709604005462,
|
| 1334 |
+
"grad_norm": 1.0340914726257324,
|
| 1335 |
+
"learning_rate": 4.9821295085947515e-05,
|
| 1336 |
+
"loss": 1.0723,
|
| 1337 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1338 |
+
"memory/max_active (GiB)": 75.64,
|
| 1339 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1340 |
+
"step": 5900,
|
| 1341 |
+
"tokens_per_second_per_gpu": 497.14
|
| 1342 |
+
},
|
| 1343 |
+
{
|
| 1344 |
+
"epoch": 0.541647701411015,
|
| 1345 |
+
"grad_norm": 1.0414705276489258,
|
| 1346 |
+
"learning_rate": 4.980924727106725e-05,
|
| 1347 |
+
"loss": 1.0622,
|
| 1348 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1349 |
+
"memory/max_active (GiB)": 75.64,
|
| 1350 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1351 |
+
"step": 5950,
|
| 1352 |
+
"tokens_per_second_per_gpu": 491.2
|
| 1353 |
+
},
|
| 1354 |
+
{
|
| 1355 |
+
"epoch": 0.5461993627674101,
|
| 1356 |
+
"grad_norm": 1.0546574592590332,
|
| 1357 |
+
"learning_rate": 4.979680803201034e-05,
|
| 1358 |
+
"loss": 1.1061,
|
| 1359 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1360 |
+
"memory/max_active (GiB)": 75.64,
|
| 1361 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1362 |
+
"step": 6000,
|
| 1363 |
+
"tokens_per_second_per_gpu": 528.09
|
| 1364 |
+
},
|
| 1365 |
+
{
|
| 1366 |
+
"epoch": 0.5507510241238052,
|
| 1367 |
+
"grad_norm": 1.0350837707519531,
|
| 1368 |
+
"learning_rate": 4.978397756503504e-05,
|
| 1369 |
+
"loss": 1.0554,
|
| 1370 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1371 |
+
"memory/max_active (GiB)": 75.64,
|
| 1372 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1373 |
+
"step": 6050,
|
| 1374 |
+
"tokens_per_second_per_gpu": 489.79
|
| 1375 |
+
},
|
| 1376 |
+
{
|
| 1377 |
+
"epoch": 0.5553026854802002,
|
| 1378 |
+
"grad_norm": 0.9223297238349915,
|
| 1379 |
+
"learning_rate": 4.97707560725721e-05,
|
| 1380 |
+
"loss": 1.056,
|
| 1381 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1382 |
+
"memory/max_active (GiB)": 75.64,
|
| 1383 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1384 |
+
"step": 6100,
|
| 1385 |
+
"tokens_per_second_per_gpu": 504.58
|
| 1386 |
+
},
|
| 1387 |
+
{
|
| 1388 |
+
"epoch": 0.5598543468365954,
|
| 1389 |
+
"grad_norm": 1.9479364156723022,
|
| 1390 |
+
"learning_rate": 4.9757143763221635e-05,
|
| 1391 |
+
"loss": 1.0438,
|
| 1392 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1393 |
+
"memory/max_active (GiB)": 75.64,
|
| 1394 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1395 |
+
"step": 6150,
|
| 1396 |
+
"tokens_per_second_per_gpu": 482.52
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.5644060081929905,
|
| 1400 |
+
"grad_norm": 1.0383278131484985,
|
| 1401 |
+
"learning_rate": 4.9743140851749814e-05,
|
| 1402 |
+
"loss": 1.0378,
|
| 1403 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1404 |
+
"memory/max_active (GiB)": 75.64,
|
| 1405 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1406 |
+
"step": 6200,
|
| 1407 |
+
"tokens_per_second_per_gpu": 490.36
|
| 1408 |
+
},
|
| 1409 |
+
{
|
| 1410 |
+
"epoch": 0.5689576695493855,
|
| 1411 |
+
"grad_norm": 1.022878646850586,
|
| 1412 |
+
"learning_rate": 4.972874755908548e-05,
|
| 1413 |
+
"loss": 1.0385,
|
| 1414 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1415 |
+
"memory/max_active (GiB)": 75.64,
|
| 1416 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1417 |
+
"step": 6250,
|
| 1418 |
+
"tokens_per_second_per_gpu": 469.72
|
| 1419 |
+
},
|
| 1420 |
+
{
|
| 1421 |
+
"epoch": 0.5735093309057806,
|
| 1422 |
+
"grad_norm": 1.0296788215637207,
|
| 1423 |
+
"learning_rate": 4.971396411231664e-05,
|
| 1424 |
+
"loss": 1.0658,
|
| 1425 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1426 |
+
"memory/max_active (GiB)": 75.64,
|
| 1427 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1428 |
+
"step": 6300,
|
| 1429 |
+
"tokens_per_second_per_gpu": 507.78
|
| 1430 |
+
},
|
| 1431 |
+
{
|
| 1432 |
+
"epoch": 0.5780609922621757,
|
| 1433 |
+
"grad_norm": 1.2907683849334717,
|
| 1434 |
+
"learning_rate": 4.9698790744686903e-05,
|
| 1435 |
+
"loss": 1.0536,
|
| 1436 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1437 |
+
"memory/max_active (GiB)": 75.64,
|
| 1438 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1439 |
+
"step": 6350,
|
| 1440 |
+
"tokens_per_second_per_gpu": 474.21
|
| 1441 |
+
},
|
| 1442 |
+
{
|
| 1443 |
+
"epoch": 0.5826126536185707,
|
| 1444 |
+
"grad_norm": 1.1980242729187012,
|
| 1445 |
+
"learning_rate": 4.968322769559181e-05,
|
| 1446 |
+
"loss": 1.0722,
|
| 1447 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1448 |
+
"memory/max_active (GiB)": 75.64,
|
| 1449 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1450 |
+
"step": 6400,
|
| 1451 |
+
"tokens_per_second_per_gpu": 497.21
|
| 1452 |
+
},
|
| 1453 |
+
{
|
| 1454 |
+
"epoch": 0.5871643149749659,
|
| 1455 |
+
"grad_norm": 1.0062897205352783,
|
| 1456 |
+
"learning_rate": 4.9667275210575036e-05,
|
| 1457 |
+
"loss": 1.0533,
|
| 1458 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1459 |
+
"memory/max_active (GiB)": 75.64,
|
| 1460 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1461 |
+
"step": 6450,
|
| 1462 |
+
"tokens_per_second_per_gpu": 490.36
|
| 1463 |
+
},
|
| 1464 |
+
{
|
| 1465 |
+
"epoch": 0.591715976331361,
|
| 1466 |
+
"grad_norm": 1.1628015041351318,
|
| 1467 |
+
"learning_rate": 4.9650933541324506e-05,
|
| 1468 |
+
"loss": 1.0687,
|
| 1469 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1470 |
+
"memory/max_active (GiB)": 75.64,
|
| 1471 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1472 |
+
"step": 6500,
|
| 1473 |
+
"tokens_per_second_per_gpu": 502.69
|
| 1474 |
+
},
|
| 1475 |
+
{
|
| 1476 |
+
"epoch": 0.596267637687756,
|
| 1477 |
+
"grad_norm": 1.0880138874053955,
|
| 1478 |
+
"learning_rate": 4.9634202945668476e-05,
|
| 1479 |
+
"loss": 1.0512,
|
| 1480 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1481 |
+
"memory/max_active (GiB)": 75.64,
|
| 1482 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1483 |
+
"step": 6550,
|
| 1484 |
+
"tokens_per_second_per_gpu": 508.51
|
| 1485 |
+
},
|
| 1486 |
+
{
|
| 1487 |
+
"epoch": 0.6,
|
| 1488 |
+
"eval_loss": 1.0370653867721558,
|
| 1489 |
+
"eval_runtime": 195.0721,
|
| 1490 |
+
"eval_samples_per_second": 5.121,
|
| 1491 |
+
"eval_steps_per_second": 0.369,
|
| 1492 |
+
"memory/device_reserved (GiB)": 77.96,
|
| 1493 |
+
"memory/max_active (GiB)": 77.11,
|
| 1494 |
+
"memory/max_allocated (GiB)": 77.11,
|
| 1495 |
+
"step": 6591
|
| 1496 |
+
},
|
| 1497 |
+
{
|
| 1498 |
+
"epoch": 0.6008192990441511,
|
| 1499 |
+
"grad_norm": 1.089520812034607,
|
| 1500 |
+
"learning_rate": 4.961708368757138e-05,
|
| 1501 |
+
"loss": 1.0435,
|
| 1502 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1503 |
+
"memory/max_active (GiB)": 75.64,
|
| 1504 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1505 |
+
"step": 6600,
|
| 1506 |
+
"tokens_per_second_per_gpu": 77.93
|
| 1507 |
+
},
|
| 1508 |
+
{
|
| 1509 |
+
"epoch": 0.6053709604005462,
|
| 1510 |
+
"grad_norm": 0.904808759689331,
|
| 1511 |
+
"learning_rate": 4.959957603712977e-05,
|
| 1512 |
+
"loss": 1.0353,
|
| 1513 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1514 |
+
"memory/max_active (GiB)": 75.64,
|
| 1515 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1516 |
+
"step": 6650,
|
| 1517 |
+
"tokens_per_second_per_gpu": 478.54
|
| 1518 |
+
},
|
| 1519 |
+
{
|
| 1520 |
+
"epoch": 0.6099226217569412,
|
| 1521 |
+
"grad_norm": 1.1445884704589844,
|
| 1522 |
+
"learning_rate": 4.9581680270567957e-05,
|
| 1523 |
+
"loss": 1.0425,
|
| 1524 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1525 |
+
"memory/max_active (GiB)": 75.64,
|
| 1526 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1527 |
+
"step": 6700,
|
| 1528 |
+
"tokens_per_second_per_gpu": 502.08
|
| 1529 |
+
},
|
| 1530 |
+
{
|
| 1531 |
+
"epoch": 0.6144742831133364,
|
| 1532 |
+
"grad_norm": 1.157138466835022,
|
| 1533 |
+
"learning_rate": 4.956339667023373e-05,
|
| 1534 |
+
"loss": 1.0563,
|
| 1535 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1536 |
+
"memory/max_active (GiB)": 75.64,
|
| 1537 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1538 |
+
"step": 6750,
|
| 1539 |
+
"tokens_per_second_per_gpu": 511.61
|
| 1540 |
+
},
|
| 1541 |
+
{
|
| 1542 |
+
"epoch": 0.6190259444697315,
|
| 1543 |
+
"grad_norm": 0.8729771375656128,
|
| 1544 |
+
"learning_rate": 4.954472552459383e-05,
|
| 1545 |
+
"loss": 1.0364,
|
| 1546 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1547 |
+
"memory/max_active (GiB)": 75.64,
|
| 1548 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1549 |
+
"step": 6800,
|
| 1550 |
+
"tokens_per_second_per_gpu": 481.17
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"epoch": 0.6235776058261265,
|
| 1554 |
+
"grad_norm": 1.065958857536316,
|
| 1555 |
+
"learning_rate": 4.9525667128229474e-05,
|
| 1556 |
+
"loss": 1.0605,
|
| 1557 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1558 |
+
"memory/max_active (GiB)": 75.64,
|
| 1559 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1560 |
+
"step": 6850,
|
| 1561 |
+
"tokens_per_second_per_gpu": 497.49
|
| 1562 |
+
},
|
| 1563 |
+
{
|
| 1564 |
+
"epoch": 0.6281292671825216,
|
| 1565 |
+
"grad_norm": 0.9055165648460388,
|
| 1566 |
+
"learning_rate": 4.950622178183164e-05,
|
| 1567 |
+
"loss": 1.0743,
|
| 1568 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1569 |
+
"memory/max_active (GiB)": 75.64,
|
| 1570 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1571 |
+
"step": 6900,
|
| 1572 |
+
"tokens_per_second_per_gpu": 484.48
|
| 1573 |
+
},
|
| 1574 |
+
{
|
| 1575 |
+
"epoch": 0.6326809285389167,
|
| 1576 |
+
"grad_norm": 1.157254934310913,
|
| 1577 |
+
"learning_rate": 4.948638979219637e-05,
|
| 1578 |
+
"loss": 1.035,
|
| 1579 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1580 |
+
"memory/max_active (GiB)": 75.64,
|
| 1581 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1582 |
+
"step": 6950,
|
| 1583 |
+
"tokens_per_second_per_gpu": 497.23
|
| 1584 |
+
},
|
| 1585 |
+
{
|
| 1586 |
+
"epoch": 0.6372325898953118,
|
| 1587 |
+
"grad_norm": 1.0744335651397705,
|
| 1588 |
+
"learning_rate": 4.9466171472219904e-05,
|
| 1589 |
+
"loss": 1.0365,
|
| 1590 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1591 |
+
"memory/max_active (GiB)": 75.64,
|
| 1592 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1593 |
+
"step": 7000,
|
| 1594 |
+
"tokens_per_second_per_gpu": 484.74
|
| 1595 |
+
},
|
| 1596 |
+
{
|
| 1597 |
+
"epoch": 0.6417842512517069,
|
| 1598 |
+
"grad_norm": 0.9064004421234131,
|
| 1599 |
+
"learning_rate": 4.944556714089374e-05,
|
| 1600 |
+
"loss": 1.0769,
|
| 1601 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1602 |
+
"memory/max_active (GiB)": 75.64,
|
| 1603 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1604 |
+
"step": 7050,
|
| 1605 |
+
"tokens_per_second_per_gpu": 527.16
|
| 1606 |
+
},
|
| 1607 |
+
{
|
| 1608 |
+
"epoch": 0.646335912608102,
|
| 1609 |
+
"grad_norm": 0.9930420517921448,
|
| 1610 |
+
"learning_rate": 4.942457712329964e-05,
|
| 1611 |
+
"loss": 1.0223,
|
| 1612 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1613 |
+
"memory/max_active (GiB)": 75.64,
|
| 1614 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1615 |
+
"step": 7100,
|
| 1616 |
+
"tokens_per_second_per_gpu": 462.81
|
| 1617 |
+
},
|
| 1618 |
+
{
|
| 1619 |
+
"epoch": 0.650887573964497,
|
| 1620 |
+
"grad_norm": 0.9996587634086609,
|
| 1621 |
+
"learning_rate": 4.940320175060446e-05,
|
| 1622 |
+
"loss": 1.0566,
|
| 1623 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1624 |
+
"memory/max_active (GiB)": 75.64,
|
| 1625 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1626 |
+
"step": 7150,
|
| 1627 |
+
"tokens_per_second_per_gpu": 501.44
|
| 1628 |
+
},
|
| 1629 |
+
{
|
| 1630 |
+
"epoch": 0.6554392353208921,
|
| 1631 |
+
"grad_norm": 1.7110569477081299,
|
| 1632 |
+
"learning_rate": 4.9381441360054915e-05,
|
| 1633 |
+
"loss": 1.0522,
|
| 1634 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1635 |
+
"memory/max_active (GiB)": 75.64,
|
| 1636 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1637 |
+
"step": 7200,
|
| 1638 |
+
"tokens_per_second_per_gpu": 499.36
|
| 1639 |
+
},
|
| 1640 |
+
{
|
| 1641 |
+
"epoch": 0.6599908966772872,
|
| 1642 |
+
"grad_norm": 1.2259682416915894,
|
| 1643 |
+
"learning_rate": 4.9359296294972315e-05,
|
| 1644 |
+
"loss": 1.0541,
|
| 1645 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1646 |
+
"memory/max_active (GiB)": 75.64,
|
| 1647 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1648 |
+
"step": 7250,
|
| 1649 |
+
"tokens_per_second_per_gpu": 473.99
|
| 1650 |
+
},
|
| 1651 |
+
{
|
| 1652 |
+
"epoch": 0.6645425580336823,
|
| 1653 |
+
"grad_norm": 1.290621042251587,
|
| 1654 |
+
"learning_rate": 4.933676690474711e-05,
|
| 1655 |
+
"loss": 1.0551,
|
| 1656 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1657 |
+
"memory/max_active (GiB)": 75.64,
|
| 1658 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1659 |
+
"step": 7300,
|
| 1660 |
+
"tokens_per_second_per_gpu": 484.9
|
| 1661 |
+
},
|
| 1662 |
+
{
|
| 1663 |
+
"epoch": 0.6690942193900774,
|
| 1664 |
+
"grad_norm": 0.8518486022949219,
|
| 1665 |
+
"learning_rate": 4.931385354483336e-05,
|
| 1666 |
+
"loss": 1.0512,
|
| 1667 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1668 |
+
"memory/max_active (GiB)": 75.64,
|
| 1669 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1670 |
+
"step": 7350,
|
| 1671 |
+
"tokens_per_second_per_gpu": 499.75
|
| 1672 |
+
},
|
| 1673 |
+
{
|
| 1674 |
+
"epoch": 0.6736458807464725,
|
| 1675 |
+
"grad_norm": 1.0784375667572021,
|
| 1676 |
+
"learning_rate": 4.929055657674316e-05,
|
| 1677 |
+
"loss": 1.0463,
|
| 1678 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1679 |
+
"memory/max_active (GiB)": 75.64,
|
| 1680 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1681 |
+
"step": 7400,
|
| 1682 |
+
"tokens_per_second_per_gpu": 451.58
|
| 1683 |
+
},
|
| 1684 |
+
{
|
| 1685 |
+
"epoch": 0.6781975421028675,
|
| 1686 |
+
"grad_norm": 1.1245126724243164,
|
| 1687 |
+
"learning_rate": 4.9266876368040954e-05,
|
| 1688 |
+
"loss": 1.0281,
|
| 1689 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1690 |
+
"memory/max_active (GiB)": 75.64,
|
| 1691 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1692 |
+
"step": 7450,
|
| 1693 |
+
"tokens_per_second_per_gpu": 488.61
|
| 1694 |
+
},
|
| 1695 |
+
{
|
| 1696 |
+
"epoch": 0.6827492034592626,
|
| 1697 |
+
"grad_norm": 1.037510633468628,
|
| 1698 |
+
"learning_rate": 4.924281329233766e-05,
|
| 1699 |
+
"loss": 1.036,
|
| 1700 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1701 |
+
"memory/max_active (GiB)": 75.64,
|
| 1702 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1703 |
+
"step": 7500,
|
| 1704 |
+
"tokens_per_second_per_gpu": 502.11
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"epoch": 0.6873008648156577,
|
| 1708 |
+
"grad_norm": 0.9862679839134216,
|
| 1709 |
+
"learning_rate": 4.921836772928484e-05,
|
| 1710 |
+
"loss": 1.0504,
|
| 1711 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1712 |
+
"memory/max_active (GiB)": 75.64,
|
| 1713 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1714 |
+
"step": 7550,
|
| 1715 |
+
"tokens_per_second_per_gpu": 492.9
|
| 1716 |
+
},
|
| 1717 |
+
{
|
| 1718 |
+
"epoch": 0.6918525261720528,
|
| 1719 |
+
"grad_norm": 1.153113603591919,
|
| 1720 |
+
"learning_rate": 4.9193540064568724e-05,
|
| 1721 |
+
"loss": 1.0229,
|
| 1722 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1723 |
+
"memory/max_active (GiB)": 75.64,
|
| 1724 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1725 |
+
"step": 7600,
|
| 1726 |
+
"tokens_per_second_per_gpu": 458.22
|
| 1727 |
+
},
|
| 1728 |
+
{
|
| 1729 |
+
"epoch": 0.6964041875284479,
|
| 1730 |
+
"grad_norm": 1.1115753650665283,
|
| 1731 |
+
"learning_rate": 4.916833068990404e-05,
|
| 1732 |
+
"loss": 1.0183,
|
| 1733 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1734 |
+
"memory/max_active (GiB)": 75.64,
|
| 1735 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1736 |
+
"step": 7650,
|
| 1737 |
+
"tokens_per_second_per_gpu": 484.87
|
| 1738 |
+
},
|
| 1739 |
+
{
|
| 1740 |
+
"epoch": 0.700955848884843,
|
| 1741 |
+
"grad_norm": 1.1606495380401611,
|
| 1742 |
+
"learning_rate": 4.914274000302793e-05,
|
| 1743 |
+
"loss": 1.0284,
|
| 1744 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1745 |
+
"memory/max_active (GiB)": 75.64,
|
| 1746 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1747 |
+
"step": 7700,
|
| 1748 |
+
"tokens_per_second_per_gpu": 496.9
|
| 1749 |
+
},
|
| 1750 |
+
{
|
| 1751 |
+
"epoch": 0.705507510241238,
|
| 1752 |
+
"grad_norm": 0.9907020330429077,
|
| 1753 |
+
"learning_rate": 4.911676840769361e-05,
|
| 1754 |
+
"loss": 1.0377,
|
| 1755 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1756 |
+
"memory/max_active (GiB)": 75.64,
|
| 1757 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1758 |
+
"step": 7750,
|
| 1759 |
+
"tokens_per_second_per_gpu": 472.59
|
| 1760 |
+
},
|
| 1761 |
+
{
|
| 1762 |
+
"epoch": 0.7100591715976331,
|
| 1763 |
+
"grad_norm": 1.0251307487487793,
|
| 1764 |
+
"learning_rate": 4.9090416313664036e-05,
|
| 1765 |
+
"loss": 1.0421,
|
| 1766 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1767 |
+
"memory/max_active (GiB)": 75.64,
|
| 1768 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1769 |
+
"step": 7800,
|
| 1770 |
+
"tokens_per_second_per_gpu": 472.37
|
| 1771 |
+
},
|
| 1772 |
+
{
|
| 1773 |
+
"epoch": 0.7146108329540283,
|
| 1774 |
+
"grad_norm": 1.1614022254943848,
|
| 1775 |
+
"learning_rate": 4.9063684136705404e-05,
|
| 1776 |
+
"loss": 1.0792,
|
| 1777 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1778 |
+
"memory/max_active (GiB)": 75.64,
|
| 1779 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1780 |
+
"step": 7850,
|
| 1781 |
+
"tokens_per_second_per_gpu": 518.05
|
| 1782 |
+
},
|
| 1783 |
+
{
|
| 1784 |
+
"epoch": 0.7191624943104233,
|
| 1785 |
+
"grad_norm": 0.9551727175712585,
|
| 1786 |
+
"learning_rate": 4.903657229858063e-05,
|
| 1787 |
+
"loss": 1.0356,
|
| 1788 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1789 |
+
"memory/max_active (GiB)": 75.64,
|
| 1790 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1791 |
+
"step": 7900,
|
| 1792 |
+
"tokens_per_second_per_gpu": 482.4
|
| 1793 |
+
},
|
| 1794 |
+
{
|
| 1795 |
+
"epoch": 0.7237141556668184,
|
| 1796 |
+
"grad_norm": 0.9774997234344482,
|
| 1797 |
+
"learning_rate": 4.900908122704269e-05,
|
| 1798 |
+
"loss": 1.0267,
|
| 1799 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1800 |
+
"memory/max_active (GiB)": 75.64,
|
| 1801 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1802 |
+
"step": 7950,
|
| 1803 |
+
"tokens_per_second_per_gpu": 507.2
|
| 1804 |
+
},
|
| 1805 |
+
{
|
| 1806 |
+
"epoch": 0.7282658170232135,
|
| 1807 |
+
"grad_norm": 1.1599117517471313,
|
| 1808 |
+
"learning_rate": 4.898121135582782e-05,
|
| 1809 |
+
"loss": 1.0426,
|
| 1810 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1811 |
+
"memory/max_active (GiB)": 75.64,
|
| 1812 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1813 |
+
"step": 8000,
|
| 1814 |
+
"tokens_per_second_per_gpu": 494.25
|
| 1815 |
+
},
|
| 1816 |
+
{
|
| 1817 |
+
"epoch": 0.7328174783796085,
|
| 1818 |
+
"grad_norm": 1.0983076095581055,
|
| 1819 |
+
"learning_rate": 4.895296312464874e-05,
|
| 1820 |
+
"loss": 1.0496,
|
| 1821 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1822 |
+
"memory/max_active (GiB)": 75.64,
|
| 1823 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1824 |
+
"step": 8050,
|
| 1825 |
+
"tokens_per_second_per_gpu": 506.5
|
| 1826 |
+
},
|
| 1827 |
+
{
|
| 1828 |
+
"epoch": 0.7373691397360036,
|
| 1829 |
+
"grad_norm": 1.1329846382141113,
|
| 1830 |
+
"learning_rate": 4.892433697918768e-05,
|
| 1831 |
+
"loss": 0.9954,
|
| 1832 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1833 |
+
"memory/max_active (GiB)": 75.64,
|
| 1834 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1835 |
+
"step": 8100,
|
| 1836 |
+
"tokens_per_second_per_gpu": 459.45
|
| 1837 |
+
},
|
| 1838 |
+
{
|
| 1839 |
+
"epoch": 0.7419208010923988,
|
| 1840 |
+
"grad_norm": 1.291815161705017,
|
| 1841 |
+
"learning_rate": 4.889533337108935e-05,
|
| 1842 |
+
"loss": 1.039,
|
| 1843 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1844 |
+
"memory/max_active (GiB)": 75.64,
|
| 1845 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1846 |
+
"step": 8150,
|
| 1847 |
+
"tokens_per_second_per_gpu": 459.98
|
| 1848 |
+
},
|
| 1849 |
+
{
|
| 1850 |
+
"epoch": 0.7464724624487938,
|
| 1851 |
+
"grad_norm": 0.8809608817100525,
|
| 1852 |
+
"learning_rate": 4.886595275795383e-05,
|
| 1853 |
+
"loss": 1.0431,
|
| 1854 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1855 |
+
"memory/max_active (GiB)": 75.64,
|
| 1856 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1857 |
+
"step": 8200,
|
| 1858 |
+
"tokens_per_second_per_gpu": 503.41
|
| 1859 |
+
},
|
| 1860 |
+
{
|
| 1861 |
+
"epoch": 0.7510241238051889,
|
| 1862 |
+
"grad_norm": 1.0669974088668823,
|
| 1863 |
+
"learning_rate": 4.8836195603329335e-05,
|
| 1864 |
+
"loss": 1.047,
|
| 1865 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1866 |
+
"memory/max_active (GiB)": 75.64,
|
| 1867 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1868 |
+
"step": 8250,
|
| 1869 |
+
"tokens_per_second_per_gpu": 513.85
|
| 1870 |
+
},
|
| 1871 |
+
{
|
| 1872 |
+
"epoch": 0.755575785161584,
|
| 1873 |
+
"grad_norm": 1.1232683658599854,
|
| 1874 |
+
"learning_rate": 4.880606237670491e-05,
|
| 1875 |
+
"loss": 1.0282,
|
| 1876 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1877 |
+
"memory/max_active (GiB)": 75.64,
|
| 1878 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1879 |
+
"step": 8300,
|
| 1880 |
+
"tokens_per_second_per_gpu": 456.41
|
| 1881 |
+
},
|
| 1882 |
+
{
|
| 1883 |
+
"epoch": 0.760127446517979,
|
| 1884 |
+
"grad_norm": 1.0202189683914185,
|
| 1885 |
+
"learning_rate": 4.877555355350301e-05,
|
| 1886 |
+
"loss": 1.0415,
|
| 1887 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1888 |
+
"memory/max_active (GiB)": 75.64,
|
| 1889 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1890 |
+
"step": 8350,
|
| 1891 |
+
"tokens_per_second_per_gpu": 512.26
|
| 1892 |
+
},
|
| 1893 |
+
{
|
| 1894 |
+
"epoch": 0.7646791078743741,
|
| 1895 |
+
"grad_norm": 1.2844234704971313,
|
| 1896 |
+
"learning_rate": 4.8744669615072015e-05,
|
| 1897 |
+
"loss": 1.0322,
|
| 1898 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1899 |
+
"memory/max_active (GiB)": 75.64,
|
| 1900 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1901 |
+
"step": 8400,
|
| 1902 |
+
"tokens_per_second_per_gpu": 474.13
|
| 1903 |
+
},
|
| 1904 |
+
{
|
| 1905 |
+
"epoch": 0.7692307692307693,
|
| 1906 |
+
"grad_norm": 1.028136134147644,
|
| 1907 |
+
"learning_rate": 4.8713411048678635e-05,
|
| 1908 |
+
"loss": 1.0353,
|
| 1909 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1910 |
+
"memory/max_active (GiB)": 75.64,
|
| 1911 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1912 |
+
"step": 8450,
|
| 1913 |
+
"tokens_per_second_per_gpu": 508.77
|
| 1914 |
+
},
|
| 1915 |
+
{
|
| 1916 |
+
"epoch": 0.7737824305871643,
|
| 1917 |
+
"grad_norm": 0.9930169582366943,
|
| 1918 |
+
"learning_rate": 4.868177834750022e-05,
|
| 1919 |
+
"loss": 1.0397,
|
| 1920 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1921 |
+
"memory/max_active (GiB)": 75.64,
|
| 1922 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1923 |
+
"step": 8500,
|
| 1924 |
+
"tokens_per_second_per_gpu": 508.0
|
| 1925 |
+
},
|
| 1926 |
+
{
|
| 1927 |
+
"epoch": 0.7783340919435594,
|
| 1928 |
+
"grad_norm": 1.0289788246154785,
|
| 1929 |
+
"learning_rate": 4.8649772010616955e-05,
|
| 1930 |
+
"loss": 1.043,
|
| 1931 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1932 |
+
"memory/max_active (GiB)": 75.64,
|
| 1933 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1934 |
+
"step": 8550,
|
| 1935 |
+
"tokens_per_second_per_gpu": 526.03
|
| 1936 |
+
},
|
| 1937 |
+
{
|
| 1938 |
+
"epoch": 0.7828857532999545,
|
| 1939 |
+
"grad_norm": 0.923629879951477,
|
| 1940 |
+
"learning_rate": 4.8617392543004014e-05,
|
| 1941 |
+
"loss": 1.0374,
|
| 1942 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1943 |
+
"memory/max_active (GiB)": 75.64,
|
| 1944 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1945 |
+
"step": 8600,
|
| 1946 |
+
"tokens_per_second_per_gpu": 479.04
|
| 1947 |
+
},
|
| 1948 |
+
{
|
| 1949 |
+
"epoch": 0.7874374146563495,
|
| 1950 |
+
"grad_norm": 1.0967282056808472,
|
| 1951 |
+
"learning_rate": 4.8584640455523604e-05,
|
| 1952 |
+
"loss": 1.0222,
|
| 1953 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1954 |
+
"memory/max_active (GiB)": 75.64,
|
| 1955 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1956 |
+
"step": 8650,
|
| 1957 |
+
"tokens_per_second_per_gpu": 464.9
|
| 1958 |
+
},
|
| 1959 |
+
{
|
| 1960 |
+
"epoch": 0.7919890760127446,
|
| 1961 |
+
"grad_norm": 1.5993574857711792,
|
| 1962 |
+
"learning_rate": 4.855151626491686e-05,
|
| 1963 |
+
"loss": 1.0443,
|
| 1964 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1965 |
+
"memory/max_active (GiB)": 75.64,
|
| 1966 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1967 |
+
"step": 8700,
|
| 1968 |
+
"tokens_per_second_per_gpu": 486.03
|
| 1969 |
+
},
|
| 1970 |
+
{
|
| 1971 |
+
"epoch": 0.7965407373691398,
|
| 1972 |
+
"grad_norm": 1.1585549116134644,
|
| 1973 |
+
"learning_rate": 4.851802049379574e-05,
|
| 1974 |
+
"loss": 1.0213,
|
| 1975 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1976 |
+
"memory/max_active (GiB)": 75.64,
|
| 1977 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 1978 |
+
"step": 8750,
|
| 1979 |
+
"tokens_per_second_per_gpu": 467.88
|
| 1980 |
+
},
|
| 1981 |
+
{
|
| 1982 |
+
"epoch": 0.8,
|
| 1983 |
+
"eval_loss": 1.0147367715835571,
|
| 1984 |
+
"eval_runtime": 195.7565,
|
| 1985 |
+
"eval_samples_per_second": 5.103,
|
| 1986 |
+
"eval_steps_per_second": 0.368,
|
| 1987 |
+
"memory/device_reserved (GiB)": 77.96,
|
| 1988 |
+
"memory/max_active (GiB)": 77.11,
|
| 1989 |
+
"memory/max_allocated (GiB)": 77.11,
|
| 1990 |
+
"step": 8788
|
| 1991 |
+
},
|
| 1992 |
+
{
|
| 1993 |
+
"epoch": 0.8010923987255348,
|
| 1994 |
+
"grad_norm": 1.144241213798523,
|
| 1995 |
+
"learning_rate": 4.8484153670634735e-05,
|
| 1996 |
+
"loss": 1.0558,
|
| 1997 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 1998 |
+
"memory/max_active (GiB)": 75.64,
|
| 1999 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2000 |
+
"step": 8800,
|
| 2001 |
+
"tokens_per_second_per_gpu": 109.97
|
| 2002 |
+
},
|
| 2003 |
+
{
|
| 2004 |
+
"epoch": 0.8056440600819299,
|
| 2005 |
+
"grad_norm": 0.8619866371154785,
|
| 2006 |
+
"learning_rate": 4.844991632976257e-05,
|
| 2007 |
+
"loss": 1.033,
|
| 2008 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2009 |
+
"memory/max_active (GiB)": 75.64,
|
| 2010 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2011 |
+
"step": 8850,
|
| 2012 |
+
"tokens_per_second_per_gpu": 518.75
|
| 2013 |
+
},
|
| 2014 |
+
{
|
| 2015 |
+
"epoch": 0.810195721438325,
|
| 2016 |
+
"grad_norm": 1.1444193124771118,
|
| 2017 |
+
"learning_rate": 4.841530901135376e-05,
|
| 2018 |
+
"loss": 1.0518,
|
| 2019 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2020 |
+
"memory/max_active (GiB)": 75.64,
|
| 2021 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2022 |
+
"step": 8900,
|
| 2023 |
+
"tokens_per_second_per_gpu": 518.64
|
| 2024 |
+
},
|
| 2025 |
+
{
|
| 2026 |
+
"epoch": 0.81474738279472,
|
| 2027 |
+
"grad_norm": 0.937384843826294,
|
| 2028 |
+
"learning_rate": 4.838033226142008e-05,
|
| 2029 |
+
"loss": 1.0305,
|
| 2030 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2031 |
+
"memory/max_active (GiB)": 75.64,
|
| 2032 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2033 |
+
"step": 8950,
|
| 2034 |
+
"tokens_per_second_per_gpu": 516.59
|
| 2035 |
+
},
|
| 2036 |
+
{
|
| 2037 |
+
"epoch": 0.8192990441511152,
|
| 2038 |
+
"grad_norm": 0.9430196285247803,
|
| 2039 |
+
"learning_rate": 4.8344986631801944e-05,
|
| 2040 |
+
"loss": 1.0417,
|
| 2041 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2042 |
+
"memory/max_active (GiB)": 75.64,
|
| 2043 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2044 |
+
"step": 9000,
|
| 2045 |
+
"tokens_per_second_per_gpu": 515.31
|
| 2046 |
+
},
|
| 2047 |
+
{
|
| 2048 |
+
"epoch": 0.8238507055075103,
|
| 2049 |
+
"grad_norm": 1.0032052993774414,
|
| 2050 |
+
"learning_rate": 4.8309272680159723e-05,
|
| 2051 |
+
"loss": 1.0416,
|
| 2052 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2053 |
+
"memory/max_active (GiB)": 75.64,
|
| 2054 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2055 |
+
"step": 9050,
|
| 2056 |
+
"tokens_per_second_per_gpu": 546.53
|
| 2057 |
+
},
|
| 2058 |
+
{
|
| 2059 |
+
"epoch": 0.8284023668639053,
|
| 2060 |
+
"grad_norm": 1.0585726499557495,
|
| 2061 |
+
"learning_rate": 4.8273190969964936e-05,
|
| 2062 |
+
"loss": 1.0054,
|
| 2063 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2064 |
+
"memory/max_active (GiB)": 75.64,
|
| 2065 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2066 |
+
"step": 9100,
|
| 2067 |
+
"tokens_per_second_per_gpu": 482.0
|
| 2068 |
+
},
|
| 2069 |
+
{
|
| 2070 |
+
"epoch": 0.8329540282203004,
|
| 2071 |
+
"grad_norm": 1.1669644117355347,
|
| 2072 |
+
"learning_rate": 4.8236742070491356e-05,
|
| 2073 |
+
"loss": 1.0343,
|
| 2074 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2075 |
+
"memory/max_active (GiB)": 75.64,
|
| 2076 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2077 |
+
"step": 9150,
|
| 2078 |
+
"tokens_per_second_per_gpu": 534.53
|
| 2079 |
+
},
|
| 2080 |
+
{
|
| 2081 |
+
"epoch": 0.8375056895766955,
|
| 2082 |
+
"grad_norm": 1.120493769645691,
|
| 2083 |
+
"learning_rate": 4.819992655680601e-05,
|
| 2084 |
+
"loss": 1.0371,
|
| 2085 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2086 |
+
"memory/max_active (GiB)": 75.64,
|
| 2087 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2088 |
+
"step": 9200,
|
| 2089 |
+
"tokens_per_second_per_gpu": 499.88
|
| 2090 |
+
},
|
| 2091 |
+
{
|
| 2092 |
+
"epoch": 0.8420573509330905,
|
| 2093 |
+
"grad_norm": 0.9619265198707581,
|
| 2094 |
+
"learning_rate": 4.816274500976016e-05,
|
| 2095 |
+
"loss": 1.0289,
|
| 2096 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2097 |
+
"memory/max_active (GiB)": 75.64,
|
| 2098 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2099 |
+
"step": 9250,
|
| 2100 |
+
"tokens_per_second_per_gpu": 483.97
|
| 2101 |
+
},
|
| 2102 |
+
{
|
| 2103 |
+
"epoch": 0.8466090122894857,
|
| 2104 |
+
"grad_norm": 1.0850692987442017,
|
| 2105 |
+
"learning_rate": 4.812519801598007e-05,
|
| 2106 |
+
"loss": 1.029,
|
| 2107 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2108 |
+
"memory/max_active (GiB)": 75.64,
|
| 2109 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2110 |
+
"step": 9300,
|
| 2111 |
+
"tokens_per_second_per_gpu": 489.02
|
| 2112 |
+
},
|
| 2113 |
+
{
|
| 2114 |
+
"epoch": 0.8511606736458808,
|
| 2115 |
+
"grad_norm": 1.7269978523254395,
|
| 2116 |
+
"learning_rate": 4.808728616785781e-05,
|
| 2117 |
+
"loss": 1.0358,
|
| 2118 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2119 |
+
"memory/max_active (GiB)": 75.64,
|
| 2120 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2121 |
+
"step": 9350,
|
| 2122 |
+
"tokens_per_second_per_gpu": 479.95
|
| 2123 |
+
},
|
| 2124 |
+
{
|
| 2125 |
+
"epoch": 0.8557123350022758,
|
| 2126 |
+
"grad_norm": 1.0903490781784058,
|
| 2127 |
+
"learning_rate": 4.804901006354188e-05,
|
| 2128 |
+
"loss": 1.0154,
|
| 2129 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2130 |
+
"memory/max_active (GiB)": 75.64,
|
| 2131 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2132 |
+
"step": 9400,
|
| 2133 |
+
"tokens_per_second_per_gpu": 459.61
|
| 2134 |
+
},
|
| 2135 |
+
{
|
| 2136 |
+
"epoch": 0.8602639963586709,
|
| 2137 |
+
"grad_norm": 1.1368602514266968,
|
| 2138 |
+
"learning_rate": 4.801037030692776e-05,
|
| 2139 |
+
"loss": 1.0186,
|
| 2140 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2141 |
+
"memory/max_active (GiB)": 75.64,
|
| 2142 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2143 |
+
"step": 9450,
|
| 2144 |
+
"tokens_per_second_per_gpu": 502.83
|
| 2145 |
+
},
|
| 2146 |
+
{
|
| 2147 |
+
"epoch": 0.864815657715066,
|
| 2148 |
+
"grad_norm": 1.1895757913589478,
|
| 2149 |
+
"learning_rate": 4.7971367507648424e-05,
|
| 2150 |
+
"loss": 0.9895,
|
| 2151 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2152 |
+
"memory/max_active (GiB)": 75.64,
|
| 2153 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2154 |
+
"step": 9500,
|
| 2155 |
+
"tokens_per_second_per_gpu": 464.56
|
| 2156 |
+
},
|
| 2157 |
+
{
|
| 2158 |
+
"epoch": 0.869367319071461,
|
| 2159 |
+
"grad_norm": 0.9769192934036255,
|
| 2160 |
+
"learning_rate": 4.793200228106468e-05,
|
| 2161 |
+
"loss": 1.0405,
|
| 2162 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2163 |
+
"memory/max_active (GiB)": 75.64,
|
| 2164 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2165 |
+
"step": 9550,
|
| 2166 |
+
"tokens_per_second_per_gpu": 512.92
|
| 2167 |
+
},
|
| 2168 |
+
{
|
| 2169 |
+
"epoch": 0.8739189804278562,
|
| 2170 |
+
"grad_norm": 1.0490390062332153,
|
| 2171 |
+
"learning_rate": 4.789227524825549e-05,
|
| 2172 |
+
"loss": 1.0499,
|
| 2173 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2174 |
+
"memory/max_active (GiB)": 75.64,
|
| 2175 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2176 |
+
"step": 9600,
|
| 2177 |
+
"tokens_per_second_per_gpu": 495.91
|
| 2178 |
+
},
|
| 2179 |
+
{
|
| 2180 |
+
"epoch": 0.8784706417842513,
|
| 2181 |
+
"grad_norm": 1.029001235961914,
|
| 2182 |
+
"learning_rate": 4.785218703600815e-05,
|
| 2183 |
+
"loss": 1.0322,
|
| 2184 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2185 |
+
"memory/max_active (GiB)": 75.64,
|
| 2186 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2187 |
+
"step": 9650,
|
| 2188 |
+
"tokens_per_second_per_gpu": 484.91
|
| 2189 |
+
},
|
| 2190 |
+
{
|
| 2191 |
+
"epoch": 0.8830223031406463,
|
| 2192 |
+
"grad_norm": 1.1553659439086914,
|
| 2193 |
+
"learning_rate": 4.7811738276808415e-05,
|
| 2194 |
+
"loss": 1.0196,
|
| 2195 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2196 |
+
"memory/max_active (GiB)": 75.64,
|
| 2197 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2198 |
+
"step": 9700,
|
| 2199 |
+
"tokens_per_second_per_gpu": 478.05
|
| 2200 |
+
},
|
| 2201 |
+
{
|
| 2202 |
+
"epoch": 0.8875739644970414,
|
| 2203 |
+
"grad_norm": 1.1080563068389893,
|
| 2204 |
+
"learning_rate": 4.777092960883051e-05,
|
| 2205 |
+
"loss": 1.0324,
|
| 2206 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2207 |
+
"memory/max_active (GiB)": 75.64,
|
| 2208 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2209 |
+
"step": 9750,
|
| 2210 |
+
"tokens_per_second_per_gpu": 513.85
|
| 2211 |
+
},
|
| 2212 |
+
{
|
| 2213 |
+
"epoch": 0.8921256258534365,
|
| 2214 |
+
"grad_norm": 1.3158994913101196,
|
| 2215 |
+
"learning_rate": 4.772976167592708e-05,
|
| 2216 |
+
"loss": 1.04,
|
| 2217 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2218 |
+
"memory/max_active (GiB)": 75.64,
|
| 2219 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2220 |
+
"step": 9800,
|
| 2221 |
+
"tokens_per_second_per_gpu": 461.81
|
| 2222 |
+
},
|
| 2223 |
+
{
|
| 2224 |
+
"epoch": 0.8966772872098316,
|
| 2225 |
+
"grad_norm": 1.4326947927474976,
|
| 2226 |
+
"learning_rate": 4.768823512761901e-05,
|
| 2227 |
+
"loss": 1.0311,
|
| 2228 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2229 |
+
"memory/max_active (GiB)": 75.64,
|
| 2230 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2231 |
+
"step": 9850,
|
| 2232 |
+
"tokens_per_second_per_gpu": 508.24
|
| 2233 |
+
},
|
| 2234 |
+
{
|
| 2235 |
+
"epoch": 0.9012289485662267,
|
| 2236 |
+
"grad_norm": 1.200109839439392,
|
| 2237 |
+
"learning_rate": 4.764635061908517e-05,
|
| 2238 |
+
"loss": 1.0129,
|
| 2239 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2240 |
+
"memory/max_active (GiB)": 75.64,
|
| 2241 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2242 |
+
"step": 9900,
|
| 2243 |
+
"tokens_per_second_per_gpu": 475.06
|
| 2244 |
+
},
|
| 2245 |
+
{
|
| 2246 |
+
"epoch": 0.9057806099226218,
|
| 2247 |
+
"grad_norm": 1.0471111536026,
|
| 2248 |
+
"learning_rate": 4.7604108811152126e-05,
|
| 2249 |
+
"loss": 1.0137,
|
| 2250 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2251 |
+
"memory/max_active (GiB)": 75.64,
|
| 2252 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2253 |
+
"step": 9950,
|
| 2254 |
+
"tokens_per_second_per_gpu": 459.57
|
| 2255 |
+
},
|
| 2256 |
+
{
|
| 2257 |
+
"epoch": 0.9103322712790168,
|
| 2258 |
+
"grad_norm": 1.168687343597412,
|
| 2259 |
+
"learning_rate": 4.7561510370283654e-05,
|
| 2260 |
+
"loss": 1.0504,
|
| 2261 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2262 |
+
"memory/max_active (GiB)": 75.64,
|
| 2263 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2264 |
+
"step": 10000,
|
| 2265 |
+
"tokens_per_second_per_gpu": 510.16
|
| 2266 |
+
},
|
| 2267 |
+
{
|
| 2268 |
+
"epoch": 0.9148839326354119,
|
| 2269 |
+
"grad_norm": 1.0843098163604736,
|
| 2270 |
+
"learning_rate": 4.7518555968570276e-05,
|
| 2271 |
+
"loss": 1.0268,
|
| 2272 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2273 |
+
"memory/max_active (GiB)": 75.64,
|
| 2274 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2275 |
+
"step": 10050,
|
| 2276 |
+
"tokens_per_second_per_gpu": 480.03
|
| 2277 |
+
},
|
| 2278 |
+
{
|
| 2279 |
+
"epoch": 0.919435593991807,
|
| 2280 |
+
"grad_norm": 1.1069607734680176,
|
| 2281 |
+
"learning_rate": 4.7475246283718614e-05,
|
| 2282 |
+
"loss": 1.0117,
|
| 2283 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2284 |
+
"memory/max_active (GiB)": 75.64,
|
| 2285 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2286 |
+
"step": 10100,
|
| 2287 |
+
"tokens_per_second_per_gpu": 486.0
|
| 2288 |
+
},
|
| 2289 |
+
{
|
| 2290 |
+
"epoch": 0.9239872553482021,
|
| 2291 |
+
"grad_norm": 1.1321187019348145,
|
| 2292 |
+
"learning_rate": 4.743158199904072e-05,
|
| 2293 |
+
"loss": 1.0196,
|
| 2294 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2295 |
+
"memory/max_active (GiB)": 75.64,
|
| 2296 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2297 |
+
"step": 10150,
|
| 2298 |
+
"tokens_per_second_per_gpu": 496.42
|
| 2299 |
+
},
|
| 2300 |
+
{
|
| 2301 |
+
"epoch": 0.9285389167045972,
|
| 2302 |
+
"grad_norm": 1.0236319303512573,
|
| 2303 |
+
"learning_rate": 4.73875638034433e-05,
|
| 2304 |
+
"loss": 1.0377,
|
| 2305 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2306 |
+
"memory/max_active (GiB)": 75.64,
|
| 2307 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2308 |
+
"step": 10200,
|
| 2309 |
+
"tokens_per_second_per_gpu": 483.49
|
| 2310 |
+
},
|
| 2311 |
+
{
|
| 2312 |
+
"epoch": 0.9330905780609923,
|
| 2313 |
+
"grad_norm": 1.1202757358551025,
|
| 2314 |
+
"learning_rate": 4.734319239141682e-05,
|
| 2315 |
+
"loss": 1.0076,
|
| 2316 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2317 |
+
"memory/max_active (GiB)": 75.64,
|
| 2318 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2319 |
+
"step": 10250,
|
| 2320 |
+
"tokens_per_second_per_gpu": 486.17
|
| 2321 |
+
},
|
| 2322 |
+
{
|
| 2323 |
+
"epoch": 0.9376422394173873,
|
| 2324 |
+
"grad_norm": 1.2959187030792236,
|
| 2325 |
+
"learning_rate": 4.72984684630246e-05,
|
| 2326 |
+
"loss": 1.0061,
|
| 2327 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2328 |
+
"memory/max_active (GiB)": 75.64,
|
| 2329 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2330 |
+
"step": 10300,
|
| 2331 |
+
"tokens_per_second_per_gpu": 496.26
|
| 2332 |
+
},
|
| 2333 |
+
{
|
| 2334 |
+
"epoch": 0.9421939007737824,
|
| 2335 |
+
"grad_norm": 1.0744752883911133,
|
| 2336 |
+
"learning_rate": 4.725339272389168e-05,
|
| 2337 |
+
"loss": 1.0143,
|
| 2338 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2339 |
+
"memory/max_active (GiB)": 75.64,
|
| 2340 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2341 |
+
"step": 10350,
|
| 2342 |
+
"tokens_per_second_per_gpu": 473.73
|
| 2343 |
+
},
|
| 2344 |
+
{
|
| 2345 |
+
"epoch": 0.9467455621301775,
|
| 2346 |
+
"grad_norm": 1.035398006439209,
|
| 2347 |
+
"learning_rate": 4.72079658851938e-05,
|
| 2348 |
+
"loss": 1.0254,
|
| 2349 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2350 |
+
"memory/max_active (GiB)": 75.64,
|
| 2351 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2352 |
+
"step": 10400,
|
| 2353 |
+
"tokens_per_second_per_gpu": 476.32
|
| 2354 |
+
},
|
| 2355 |
+
{
|
| 2356 |
+
"epoch": 0.9512972234865726,
|
| 2357 |
+
"grad_norm": 1.0589100122451782,
|
| 2358 |
+
"learning_rate": 4.716218866364606e-05,
|
| 2359 |
+
"loss": 0.9991,
|
| 2360 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2361 |
+
"memory/max_active (GiB)": 75.64,
|
| 2362 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2363 |
+
"step": 10450,
|
| 2364 |
+
"tokens_per_second_per_gpu": 489.27
|
| 2365 |
+
},
|
| 2366 |
+
{
|
| 2367 |
+
"epoch": 0.9558488848429677,
|
| 2368 |
+
"grad_norm": 1.072708010673523,
|
| 2369 |
+
"learning_rate": 4.711606178149173e-05,
|
| 2370 |
+
"loss": 1.034,
|
| 2371 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2372 |
+
"memory/max_active (GiB)": 75.64,
|
| 2373 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2374 |
+
"step": 10500,
|
| 2375 |
+
"tokens_per_second_per_gpu": 513.81
|
| 2376 |
+
},
|
| 2377 |
+
{
|
| 2378 |
+
"epoch": 0.9604005461993628,
|
| 2379 |
+
"grad_norm": 1.2344636917114258,
|
| 2380 |
+
"learning_rate": 4.706958596649076e-05,
|
| 2381 |
+
"loss": 1.0254,
|
| 2382 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2383 |
+
"memory/max_active (GiB)": 75.64,
|
| 2384 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2385 |
+
"step": 10550,
|
| 2386 |
+
"tokens_per_second_per_gpu": 492.35
|
| 2387 |
+
},
|
| 2388 |
+
{
|
| 2389 |
+
"epoch": 0.9649522075557578,
|
| 2390 |
+
"grad_norm": 0.9406333565711975,
|
| 2391 |
+
"learning_rate": 4.7022761951908365e-05,
|
| 2392 |
+
"loss": 1.0171,
|
| 2393 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2394 |
+
"memory/max_active (GiB)": 75.64,
|
| 2395 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2396 |
+
"step": 10600,
|
| 2397 |
+
"tokens_per_second_per_gpu": 474.51
|
| 2398 |
+
},
|
| 2399 |
+
{
|
| 2400 |
+
"epoch": 0.9695038689121529,
|
| 2401 |
+
"grad_norm": 1.1612303256988525,
|
| 2402 |
+
"learning_rate": 4.6975590476503396e-05,
|
| 2403 |
+
"loss": 1.017,
|
| 2404 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2405 |
+
"memory/max_active (GiB)": 75.64,
|
| 2406 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2407 |
+
"step": 10650,
|
| 2408 |
+
"tokens_per_second_per_gpu": 493.48
|
| 2409 |
+
},
|
| 2410 |
+
{
|
| 2411 |
+
"epoch": 0.9740555302685481,
|
| 2412 |
+
"grad_norm": 1.5133899450302124,
|
| 2413 |
+
"learning_rate": 4.692807228451672e-05,
|
| 2414 |
+
"loss": 1.0212,
|
| 2415 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2416 |
+
"memory/max_active (GiB)": 75.64,
|
| 2417 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2418 |
+
"step": 10700,
|
| 2419 |
+
"tokens_per_second_per_gpu": 481.52
|
| 2420 |
+
},
|
| 2421 |
+
{
|
| 2422 |
+
"epoch": 0.9786071916249431,
|
| 2423 |
+
"grad_norm": 1.1254411935806274,
|
| 2424 |
+
"learning_rate": 4.68802081256595e-05,
|
| 2425 |
+
"loss": 1.009,
|
| 2426 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2427 |
+
"memory/max_active (GiB)": 75.64,
|
| 2428 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2429 |
+
"step": 10750,
|
| 2430 |
+
"tokens_per_second_per_gpu": 483.76
|
| 2431 |
+
},
|
| 2432 |
+
{
|
| 2433 |
+
"epoch": 0.9831588529813382,
|
| 2434 |
+
"grad_norm": 1.0411556959152222,
|
| 2435 |
+
"learning_rate": 4.683199875510132e-05,
|
| 2436 |
+
"loss": 1.0262,
|
| 2437 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2438 |
+
"memory/max_active (GiB)": 75.64,
|
| 2439 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2440 |
+
"step": 10800,
|
| 2441 |
+
"tokens_per_second_per_gpu": 493.64
|
| 2442 |
+
},
|
| 2443 |
+
{
|
| 2444 |
+
"epoch": 0.9877105143377333,
|
| 2445 |
+
"grad_norm": 0.979972243309021,
|
| 2446 |
+
"learning_rate": 4.6783444933458284e-05,
|
| 2447 |
+
"loss": 1.0246,
|
| 2448 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2449 |
+
"memory/max_active (GiB)": 75.64,
|
| 2450 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2451 |
+
"step": 10850,
|
| 2452 |
+
"tokens_per_second_per_gpu": 477.13
|
| 2453 |
+
},
|
| 2454 |
+
{
|
| 2455 |
+
"epoch": 0.9922621756941283,
|
| 2456 |
+
"grad_norm": 1.1155357360839844,
|
| 2457 |
+
"learning_rate": 4.673454742678102e-05,
|
| 2458 |
+
"loss": 1.0532,
|
| 2459 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2460 |
+
"memory/max_active (GiB)": 75.64,
|
| 2461 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2462 |
+
"step": 10900,
|
| 2463 |
+
"tokens_per_second_per_gpu": 505.17
|
| 2464 |
+
},
|
| 2465 |
+
{
|
| 2466 |
+
"epoch": 0.9968138370505234,
|
| 2467 |
+
"grad_norm": 1.1054545640945435,
|
| 2468 |
+
"learning_rate": 4.668530700654262e-05,
|
| 2469 |
+
"loss": 1.0041,
|
| 2470 |
+
"memory/device_reserved (GiB)": 77.07,
|
| 2471 |
+
"memory/max_active (GiB)": 75.64,
|
| 2472 |
+
"memory/max_allocated (GiB)": 75.64,
|
| 2473 |
+
"step": 10950,
|
| 2474 |
+
"tokens_per_second_per_gpu": 488.33
|
| 2475 |
+
},
|
| 2476 |
+
{
|
| 2477 |
+
"epoch": 1.0,
|
| 2478 |
+
"eval_loss": 0.9990127086639404,
|
| 2479 |
+
"eval_runtime": 196.2105,
|
| 2480 |
+
"eval_samples_per_second": 5.091,
|
| 2481 |
+
"eval_steps_per_second": 0.367,
|
| 2482 |
+
"memory/device_reserved (GiB)": 77.96,
|
| 2483 |
+
"memory/max_active (GiB)": 77.11,
|
| 2484 |
+
"memory/max_allocated (GiB)": 77.11,
|
| 2485 |
+
"step": 10985
|
| 2486 |
+
}
|
| 2487 |
+
],
|
| 2488 |
+
"logging_steps": 50,
|
| 2489 |
+
"max_steps": 43939,
|
| 2490 |
+
"num_input_tokens_seen": 0,
|
| 2491 |
+
"num_train_epochs": 4,
|
| 2492 |
+
"save_steps": 5493,
|
| 2493 |
+
"stateful_callbacks": {
|
| 2494 |
+
"TrainerControl": {
|
| 2495 |
+
"args": {
|
| 2496 |
+
"should_epoch_stop": false,
|
| 2497 |
+
"should_evaluate": false,
|
| 2498 |
+
"should_log": false,
|
| 2499 |
+
"should_save": true,
|
| 2500 |
+
"should_training_stop": false
|
| 2501 |
+
},
|
| 2502 |
+
"attributes": {}
|
| 2503 |
+
}
|
| 2504 |
+
},
|
| 2505 |
+
"total_flos": 2.086121052097413e+19,
|
| 2506 |
+
"train_batch_size": 9,
|
| 2507 |
+
"trial_name": null,
|
| 2508 |
+
"trial_params": null
|
| 2509 |
+
}
|
checkpoint-10986/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34a581bf9b76f74a5a4e25651fbaa01e61b75b19cbbfa8df2370c772924bc5d7
|
| 3 |
+
size 11409
|
checkpoint-16479/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: mistralai/Mistral-Nemo-Instruct-2407
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:mistralai/Mistral-Nemo-Instruct-2407
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- 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. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
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).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.17.1
|
checkpoint-16479/adapter_config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "mistralai/Mistral-Nemo-Instruct-2407",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
+
"fan_in_fan_out": null,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 64,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"qalora_group_size": 16,
|
| 24 |
+
"r": 32,
|
| 25 |
+
"rank_pattern": {},
|
| 26 |
+
"revision": null,
|
| 27 |
+
"target_modules": [
|
| 28 |
+
"q_proj",
|
| 29 |
+
"down_proj",
|
| 30 |
+
"k_proj",
|
| 31 |
+
"v_proj",
|
| 32 |
+
"o_proj",
|
| 33 |
+
"gate_proj",
|
| 34 |
+
"up_proj"
|
| 35 |
+
],
|
| 36 |
+
"target_parameters": [],
|
| 37 |
+
"task_type": "CAUSAL_LM",
|
| 38 |
+
"trainable_token_indices": null,
|
| 39 |
+
"use_dora": false,
|
| 40 |
+
"use_qalora": false,
|
| 41 |
+
"use_rslora": false
|
| 42 |
+
}
|
checkpoint-16479/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2447934c6f97cd035c3bdaee1fcf0cfd77d676fb1de72c73265cf319e8826aea
|
| 3 |
+
size 456206152
|
checkpoint-16479/chat_template.jinja
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if messages[0]["role"] == "system" %}
|
| 2 |
+
{%- set system_message = messages[0]["content"] %}
|
| 3 |
+
{%- set loop_messages = messages[1:] %}
|
| 4 |
+
{%- else %}
|
| 5 |
+
{%- set loop_messages = messages %}
|
| 6 |
+
{%- endif %}
|
| 7 |
+
{%- if not tools is defined %}
|
| 8 |
+
{%- set tools = none %}
|
| 9 |
+
{%- endif %}
|
| 10 |
+
{%- set user_messages = loop_messages | selectattr("role", "equalto", "user") | list %}
|
| 11 |
+
|
| 12 |
+
{#- This block checks for alternating user/assistant messages, skipping tool calling messages #}
|
| 13 |
+
{%- set ns = namespace() %}
|
| 14 |
+
{%- set ns.index = 0 %}
|
| 15 |
+
{%- for message in loop_messages %}
|
| 16 |
+
{%- if not (message.role == "tool" or message.role == "tool_results" or (message.tool_calls is defined and message.tool_calls is not none)) %}
|
| 17 |
+
{%- if (message["role"] == "user") != (ns.index % 2 == 0) %}
|
| 18 |
+
{{- raise_exception("After the optional system message, conversation roles must alternate user/assistant/user/assistant/...") }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- set ns.index = ns.index + 1 %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
{%- endfor %}
|
| 23 |
+
|
| 24 |
+
{{- bos_token }}
|
| 25 |
+
{%- for message in loop_messages %}
|
| 26 |
+
{%- if message["role"] == "user" %}
|
| 27 |
+
{%- if tools is not none and (message == user_messages[-1]) %}
|
| 28 |
+
{{- "[AVAILABLE_TOOLS][" }}
|
| 29 |
+
{%- for tool in tools %}
|
| 30 |
+
{%- set tool = tool.function %}
|
| 31 |
+
{{- '{"type": "function", "function": {' }}
|
| 32 |
+
{%- for key, val in tool.items() if key != "return" %}
|
| 33 |
+
{%- if val is string %}
|
| 34 |
+
{{- '"' + key + '": "' + val + '"' }}
|
| 35 |
+
{%- else %}
|
| 36 |
+
{{- '"' + key + '": ' + val|tojson }}
|
| 37 |
+
{%- endif %}
|
| 38 |
+
{%- if not loop.last %}
|
| 39 |
+
{{- ", " }}
|
| 40 |
+
{%- endif %}
|
| 41 |
+
{%- endfor %}
|
| 42 |
+
{{- "}}" }}
|
| 43 |
+
{%- if not loop.last %}
|
| 44 |
+
{{- ", " }}
|
| 45 |
+
{%- else %}
|
| 46 |
+
{{- "]" }}
|
| 47 |
+
{%- endif %}
|
| 48 |
+
{%- endfor %}
|
| 49 |
+
{{- "[/AVAILABLE_TOOLS]" }}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- if loop.last and system_message is defined %}
|
| 52 |
+
{{- "[INST]" + system_message + "\n\n" + message["content"] + "[/INST]" }}
|
| 53 |
+
{%- else %}
|
| 54 |
+
{{- "[INST]" + message["content"] + "[/INST]" }}
|
| 55 |
+
{%- endif %}
|
| 56 |
+
{%- elif (message.tool_calls is defined and message.tool_calls is not none) %}
|
| 57 |
+
{{- "[TOOL_CALLS][" }}
|
| 58 |
+
{%- for tool_call in message.tool_calls %}
|
| 59 |
+
{%- set out = tool_call.function|tojson %}
|
| 60 |
+
{{- out[:-1] }}
|
| 61 |
+
{%- if not tool_call.id is defined or tool_call.id|length != 9 %}
|
| 62 |
+
{{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
|
| 63 |
+
{%- endif %}
|
| 64 |
+
{{- ', "id": "' + tool_call.id + '"}' }}
|
| 65 |
+
{%- if not loop.last %}
|
| 66 |
+
{{- ", " }}
|
| 67 |
+
{%- else %}
|
| 68 |
+
{{- "]" + eos_token }}
|
| 69 |
+
{%- endif %}
|
| 70 |
+
{%- endfor %}
|
| 71 |
+
{%- elif message["role"] == "assistant" %}
|
| 72 |
+
{{- message["content"] + eos_token}}
|
| 73 |
+
{%- elif message["role"] == "tool_results" or message["role"] == "tool" %}
|
| 74 |
+
{%- if message.content is defined and message.content.content is defined %}
|
| 75 |
+
{%- set content = message.content.content %}
|
| 76 |
+
{%- else %}
|
| 77 |
+
{%- set content = message.content %}
|
| 78 |
+
{%- endif %}
|
| 79 |
+
{{- '[TOOL_RESULTS]{"content": ' + content|string + ", " }}
|
| 80 |
+
{%- if not message.tool_call_id is defined or message.tool_call_id|length != 9 %}
|
| 81 |
+
{{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{{- '"call_id": "' + message.tool_call_id + '"}[/TOOL_RESULTS]' }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- raise_exception("Only user and assistant roles are supported, with the exception of an initial optional system message!") }}
|
| 86 |
+
{%- endif %}
|
| 87 |
+
{%- endfor %}
|
checkpoint-16479/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd851ec28b5c0c4dd7afd96c5004aaf4a3696dbe3436d1b697d210e4aaf26b5c
|
| 3 |
+
size 232287717
|
checkpoint-16479/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8854e0fa10e1b45cfa48c7feb900f4b8546450d9fd413714c4084f1d9515c84
|
| 3 |
+
size 14645
|
checkpoint-16479/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:96b1320f9beac9c44d55aa2e8aea84b773a5c68097bede396981fa8122cd86bd
|
| 3 |
+
size 1465
|
checkpoint-16479/special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "</s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<unk>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
checkpoint-16479/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0240ce510f08e6c2041724e9043e33be9d251d1e4a4d94eb68cd47b954b61d2
|
| 3 |
+
size 17078292
|
checkpoint-16479/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-16479/trainer_state.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-16479/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34a581bf9b76f74a5a4e25651fbaa01e61b75b19cbbfa8df2370c772924bc5d7
|
| 3 |
+
size 11409
|
checkpoint-21972/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: mistralai/Mistral-Nemo-Instruct-2407
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:mistralai/Mistral-Nemo-Instruct-2407
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- 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. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
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).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.17.1
|
checkpoint-21972/adapter_config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "mistralai/Mistral-Nemo-Instruct-2407",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
+
"fan_in_fan_out": null,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 64,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"qalora_group_size": 16,
|
| 24 |
+
"r": 32,
|
| 25 |
+
"rank_pattern": {},
|
| 26 |
+
"revision": null,
|
| 27 |
+
"target_modules": [
|
| 28 |
+
"q_proj",
|
| 29 |
+
"down_proj",
|
| 30 |
+
"k_proj",
|
| 31 |
+
"v_proj",
|
| 32 |
+
"o_proj",
|
| 33 |
+
"gate_proj",
|
| 34 |
+
"up_proj"
|
| 35 |
+
],
|
| 36 |
+
"target_parameters": [],
|
| 37 |
+
"task_type": "CAUSAL_LM",
|
| 38 |
+
"trainable_token_indices": null,
|
| 39 |
+
"use_dora": false,
|
| 40 |
+
"use_qalora": false,
|
| 41 |
+
"use_rslora": false
|
| 42 |
+
}
|
checkpoint-21972/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d05f26e62b3a8a1de3967e655ff60545d195d6163cd2ba59e5c4a2d601dafc2
|
| 3 |
+
size 456206152
|
checkpoint-21972/chat_template.jinja
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if messages[0]["role"] == "system" %}
|
| 2 |
+
{%- set system_message = messages[0]["content"] %}
|
| 3 |
+
{%- set loop_messages = messages[1:] %}
|
| 4 |
+
{%- else %}
|
| 5 |
+
{%- set loop_messages = messages %}
|
| 6 |
+
{%- endif %}
|
| 7 |
+
{%- if not tools is defined %}
|
| 8 |
+
{%- set tools = none %}
|
| 9 |
+
{%- endif %}
|
| 10 |
+
{%- set user_messages = loop_messages | selectattr("role", "equalto", "user") | list %}
|
| 11 |
+
|
| 12 |
+
{#- This block checks for alternating user/assistant messages, skipping tool calling messages #}
|
| 13 |
+
{%- set ns = namespace() %}
|
| 14 |
+
{%- set ns.index = 0 %}
|
| 15 |
+
{%- for message in loop_messages %}
|
| 16 |
+
{%- if not (message.role == "tool" or message.role == "tool_results" or (message.tool_calls is defined and message.tool_calls is not none)) %}
|
| 17 |
+
{%- if (message["role"] == "user") != (ns.index % 2 == 0) %}
|
| 18 |
+
{{- raise_exception("After the optional system message, conversation roles must alternate user/assistant/user/assistant/...") }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- set ns.index = ns.index + 1 %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
{%- endfor %}
|
| 23 |
+
|
| 24 |
+
{{- bos_token }}
|
| 25 |
+
{%- for message in loop_messages %}
|
| 26 |
+
{%- if message["role"] == "user" %}
|
| 27 |
+
{%- if tools is not none and (message == user_messages[-1]) %}
|
| 28 |
+
{{- "[AVAILABLE_TOOLS][" }}
|
| 29 |
+
{%- for tool in tools %}
|
| 30 |
+
{%- set tool = tool.function %}
|
| 31 |
+
{{- '{"type": "function", "function": {' }}
|
| 32 |
+
{%- for key, val in tool.items() if key != "return" %}
|
| 33 |
+
{%- if val is string %}
|
| 34 |
+
{{- '"' + key + '": "' + val + '"' }}
|
| 35 |
+
{%- else %}
|
| 36 |
+
{{- '"' + key + '": ' + val|tojson }}
|
| 37 |
+
{%- endif %}
|
| 38 |
+
{%- if not loop.last %}
|
| 39 |
+
{{- ", " }}
|
| 40 |
+
{%- endif %}
|
| 41 |
+
{%- endfor %}
|
| 42 |
+
{{- "}}" }}
|
| 43 |
+
{%- if not loop.last %}
|
| 44 |
+
{{- ", " }}
|
| 45 |
+
{%- else %}
|
| 46 |
+
{{- "]" }}
|
| 47 |
+
{%- endif %}
|
| 48 |
+
{%- endfor %}
|
| 49 |
+
{{- "[/AVAILABLE_TOOLS]" }}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- if loop.last and system_message is defined %}
|
| 52 |
+
{{- "[INST]" + system_message + "\n\n" + message["content"] + "[/INST]" }}
|
| 53 |
+
{%- else %}
|
| 54 |
+
{{- "[INST]" + message["content"] + "[/INST]" }}
|
| 55 |
+
{%- endif %}
|
| 56 |
+
{%- elif (message.tool_calls is defined and message.tool_calls is not none) %}
|
| 57 |
+
{{- "[TOOL_CALLS][" }}
|
| 58 |
+
{%- for tool_call in message.tool_calls %}
|
| 59 |
+
{%- set out = tool_call.function|tojson %}
|
| 60 |
+
{{- out[:-1] }}
|
| 61 |
+
{%- if not tool_call.id is defined or tool_call.id|length != 9 %}
|
| 62 |
+
{{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
|
| 63 |
+
{%- endif %}
|
| 64 |
+
{{- ', "id": "' + tool_call.id + '"}' }}
|
| 65 |
+
{%- if not loop.last %}
|
| 66 |
+
{{- ", " }}
|
| 67 |
+
{%- else %}
|
| 68 |
+
{{- "]" + eos_token }}
|
| 69 |
+
{%- endif %}
|
| 70 |
+
{%- endfor %}
|
| 71 |
+
{%- elif message["role"] == "assistant" %}
|
| 72 |
+
{{- message["content"] + eos_token}}
|
| 73 |
+
{%- elif message["role"] == "tool_results" or message["role"] == "tool" %}
|
| 74 |
+
{%- if message.content is defined and message.content.content is defined %}
|
| 75 |
+
{%- set content = message.content.content %}
|
| 76 |
+
{%- else %}
|
| 77 |
+
{%- set content = message.content %}
|
| 78 |
+
{%- endif %}
|
| 79 |
+
{{- '[TOOL_RESULTS]{"content": ' + content|string + ", " }}
|
| 80 |
+
{%- if not message.tool_call_id is defined or message.tool_call_id|length != 9 %}
|
| 81 |
+
{{- raise_exception("Tool call IDs should be alphanumeric strings with length 9!") }}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{{- '"call_id": "' + message.tool_call_id + '"}[/TOOL_RESULTS]' }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- raise_exception("Only user and assistant roles are supported, with the exception of an initial optional system message!") }}
|
| 86 |
+
{%- endif %}
|
| 87 |
+
{%- endfor %}
|
checkpoint-21972/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a658036cf46757a9cbefa25fd612796286c01268c03c37ce24ca4ba039f4cac
|
| 3 |
+
size 232287717
|
checkpoint-21972/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab8eb9b74a62058fa9e389d926e774dcfd8ee2df1bc2991789e217fe550eb0eb
|
| 3 |
+
size 14645
|
checkpoint-21972/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31c64b0ecfc0176480a9e0daacd26cc1b5ac7c881653e0ea1d0f0d8a29b232b8
|
| 3 |
+
size 1465
|
checkpoint-21972/special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "</s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<unk>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
checkpoint-21972/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0240ce510f08e6c2041724e9043e33be9d251d1e4a4d94eb68cd47b954b61d2
|
| 3 |
+
size 17078292
|
checkpoint-21972/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-21972/trainer_state.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-21972/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34a581bf9b76f74a5a4e25651fbaa01e61b75b19cbbfa8df2370c772924bc5d7
|
| 3 |
+
size 11409
|
checkpoint-27465/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: mistralai/Mistral-Nemo-Instruct-2407
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- axolotl
|
| 7 |
+
- base_model:adapter:mistralai/Mistral-Nemo-Instruct-2407
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- 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. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
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).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.17.1
|