Text Generation
PEFT
Safetensors
Transformers
qwen3
lora
sft
trl
unsloth
conversational
text-generation-inference
Instructions to use DQN-Labs/dqncode2-preview3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use DQN-Labs/dqncode2-preview3 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/Qwen3-4B-Instruct-2507") model = PeftModel.from_pretrained(base_model, "DQN-Labs/dqncode2-preview3") - Transformers
How to use DQN-Labs/dqncode2-preview3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DQN-Labs/dqncode2-preview3") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("DQN-Labs/dqncode2-preview3") model = AutoModelForCausalLM.from_pretrained("DQN-Labs/dqncode2-preview3", 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 DQN-Labs/dqncode2-preview3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DQN-Labs/dqncode2-preview3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DQN-Labs/dqncode2-preview3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/DQN-Labs/dqncode2-preview3
- SGLang
How to use DQN-Labs/dqncode2-preview3 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 "DQN-Labs/dqncode2-preview3" \ --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": "DQN-Labs/dqncode2-preview3", "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 "DQN-Labs/dqncode2-preview3" \ --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": "DQN-Labs/dqncode2-preview3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio
How to use DQN-Labs/dqncode2-preview3 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for DQN-Labs/dqncode2-preview3 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for DQN-Labs/dqncode2-preview3 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for DQN-Labs/dqncode2-preview3 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="DQN-Labs/dqncode2-preview3", max_seq_length=2048, ) - Docker Model Runner
How to use DQN-Labs/dqncode2-preview3 with Docker Model Runner:
docker model run hf.co/DQN-Labs/dqncode2-preview3
Upload folder using huggingface_hub
Browse files- .gitattributes +3 -0
- README.md +63 -0
- adapter_config.json +49 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +29 -0
- checkpoint-1800/README.md +210 -0
- checkpoint-1800/adapter_config.json +49 -0
- checkpoint-1800/adapter_model.safetensors +3 -0
- checkpoint-1800/added_tokens.json +29 -0
- checkpoint-1800/merges.txt +0 -0
- checkpoint-1800/optimizer.pt +3 -0
- checkpoint-1800/rng_state.pth +3 -0
- checkpoint-1800/scheduler.pt +3 -0
- checkpoint-1800/special_tokens_map.json +25 -0
- checkpoint-1800/tokenizer.json +3 -0
- checkpoint-1800/tokenizer_config.json +249 -0
- checkpoint-1800/trainer_state.json +2554 -0
- checkpoint-1800/training_args.bin +3 -0
- checkpoint-1800/vocab.json +0 -0
- checkpoint-1869/README.md +210 -0
- checkpoint-1869/adapter_config.json +49 -0
- checkpoint-1869/adapter_model.safetensors +3 -0
- checkpoint-1869/added_tokens.json +29 -0
- checkpoint-1869/merges.txt +0 -0
- checkpoint-1869/optimizer.pt +3 -0
- checkpoint-1869/rng_state.pth +3 -0
- checkpoint-1869/scheduler.pt +3 -0
- checkpoint-1869/special_tokens_map.json +25 -0
- checkpoint-1869/tokenizer.json +3 -0
- checkpoint-1869/tokenizer_config.json +249 -0
- checkpoint-1869/trainer_state.json +2645 -0
- checkpoint-1869/training_args.bin +3 -0
- checkpoint-1869/vocab.json +0 -0
- merges.txt +0 -0
- special_tokens_map.json +25 -0
- tokenizer.json +3 -0
- tokenizer_config.json +249 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,6 @@ 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-1800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-1869/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/Qwen3-4B-Instruct-2507
|
| 3 |
+
library_name: peft
|
| 4 |
+
model_name: dqncode-v2
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/Qwen3-4B-Instruct-2507
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- unsloth
|
| 12 |
+
licence: license
|
| 13 |
+
pipeline_tag: text-generation
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# Model Card for dqncode-v2
|
| 17 |
+
|
| 18 |
+
This model is a fine-tuned version of [unsloth/Qwen3-4B-Instruct-2507](https://huggingface.co/unsloth/Qwen3-4B-Instruct-2507).
|
| 19 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 20 |
+
|
| 21 |
+
## Quick start
|
| 22 |
+
|
| 23 |
+
```python
|
| 24 |
+
from transformers import pipeline
|
| 25 |
+
|
| 26 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 27 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 28 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 29 |
+
print(output["generated_text"])
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
## Training procedure
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
This model was trained with SFT.
|
| 38 |
+
|
| 39 |
+
### Framework versions
|
| 40 |
+
|
| 41 |
+
- PEFT 0.19.1
|
| 42 |
+
- TRL: 0.24.0
|
| 43 |
+
- Transformers: 5.5.0
|
| 44 |
+
- Pytorch: 2.5.1+rocm6.2
|
| 45 |
+
- Datasets: 4.3.0
|
| 46 |
+
- Tokenizers: 0.21.4
|
| 47 |
+
|
| 48 |
+
## Citations
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
Cite TRL as:
|
| 53 |
+
|
| 54 |
+
```bibtex
|
| 55 |
+
@misc{vonwerra2022trl,
|
| 56 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 57 |
+
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
|
| 58 |
+
year = 2020,
|
| 59 |
+
journal = {GitHub repository},
|
| 60 |
+
publisher = {GitHub},
|
| 61 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 62 |
+
}
|
| 63 |
+
```
|
adapter_config.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "Qwen3ForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.qwen3.modeling_qwen3",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/Qwen3-4B-Instruct-2507",
|
| 11 |
+
"bias": "none",
|
| 12 |
+
"corda_config": null,
|
| 13 |
+
"ensure_weight_tying": false,
|
| 14 |
+
"eva_config": null,
|
| 15 |
+
"exclude_modules": null,
|
| 16 |
+
"fan_in_fan_out": false,
|
| 17 |
+
"inference_mode": true,
|
| 18 |
+
"init_lora_weights": true,
|
| 19 |
+
"layer_replication": null,
|
| 20 |
+
"layers_pattern": null,
|
| 21 |
+
"layers_to_transform": null,
|
| 22 |
+
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 64,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0.05,
|
| 26 |
+
"lora_ga_config": null,
|
| 27 |
+
"megatron_config": null,
|
| 28 |
+
"megatron_core": "megatron.core",
|
| 29 |
+
"modules_to_save": null,
|
| 30 |
+
"peft_type": "LORA",
|
| 31 |
+
"peft_version": "0.19.1",
|
| 32 |
+
"qalora_group_size": 16,
|
| 33 |
+
"r": 32,
|
| 34 |
+
"rank_pattern": {},
|
| 35 |
+
"revision": null,
|
| 36 |
+
"target_modules": [
|
| 37 |
+
"v_proj",
|
| 38 |
+
"k_proj",
|
| 39 |
+
"q_proj",
|
| 40 |
+
"o_proj"
|
| 41 |
+
],
|
| 42 |
+
"target_parameters": null,
|
| 43 |
+
"task_type": "CAUSAL_LM",
|
| 44 |
+
"trainable_token_indices": null,
|
| 45 |
+
"use_bdlora": null,
|
| 46 |
+
"use_dora": false,
|
| 47 |
+
"use_qalora": false,
|
| 48 |
+
"use_rslora": false
|
| 49 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:125829d96f669e577930472487f6e85ce819ccf638cc1a84c2b90582461ff94d
|
| 3 |
+
size 94410616
|
added_tokens.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|PAD_TOKEN|>": 151669,
|
| 9 |
+
"<|box_end|>": 151649,
|
| 10 |
+
"<|box_start|>": 151648,
|
| 11 |
+
"<|endoftext|>": 151643,
|
| 12 |
+
"<|file_sep|>": 151664,
|
| 13 |
+
"<|fim_middle|>": 151660,
|
| 14 |
+
"<|fim_pad|>": 151662,
|
| 15 |
+
"<|fim_prefix|>": 151659,
|
| 16 |
+
"<|fim_suffix|>": 151661,
|
| 17 |
+
"<|im_end|>": 151645,
|
| 18 |
+
"<|im_start|>": 151644,
|
| 19 |
+
"<|image_pad|>": 151655,
|
| 20 |
+
"<|object_ref_end|>": 151647,
|
| 21 |
+
"<|object_ref_start|>": 151646,
|
| 22 |
+
"<|quad_end|>": 151651,
|
| 23 |
+
"<|quad_start|>": 151650,
|
| 24 |
+
"<|repo_name|>": 151663,
|
| 25 |
+
"<|video_pad|>": 151656,
|
| 26 |
+
"<|vision_end|>": 151653,
|
| 27 |
+
"<|vision_pad|>": 151654,
|
| 28 |
+
"<|vision_start|>": 151652
|
| 29 |
+
}
|
checkpoint-1800/README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/Qwen3-4B-Instruct-2507
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/Qwen3-4B-Instruct-2507
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- unsloth
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Model Card for Model ID
|
| 15 |
+
|
| 16 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## Model Details
|
| 21 |
+
|
| 22 |
+
### Model Description
|
| 23 |
+
|
| 24 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
- **Developed by:** [More Information Needed]
|
| 29 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 30 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 31 |
+
- **Model type:** [More Information Needed]
|
| 32 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
+
- **License:** [More Information Needed]
|
| 34 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
### Model Sources [optional]
|
| 37 |
+
|
| 38 |
+
<!-- Provide the basic links for the model. -->
|
| 39 |
+
|
| 40 |
+
- **Repository:** [More Information Needed]
|
| 41 |
+
- **Paper [optional]:** [More Information Needed]
|
| 42 |
+
- **Demo [optional]:** [More Information Needed]
|
| 43 |
+
|
| 44 |
+
## Uses
|
| 45 |
+
|
| 46 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 47 |
+
|
| 48 |
+
### Direct Use
|
| 49 |
+
|
| 50 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 51 |
+
|
| 52 |
+
[More Information Needed]
|
| 53 |
+
|
| 54 |
+
### Downstream Use [optional]
|
| 55 |
+
|
| 56 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 57 |
+
|
| 58 |
+
[More Information Needed]
|
| 59 |
+
|
| 60 |
+
### Out-of-Scope Use
|
| 61 |
+
|
| 62 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 63 |
+
|
| 64 |
+
[More Information Needed]
|
| 65 |
+
|
| 66 |
+
## Bias, Risks, and Limitations
|
| 67 |
+
|
| 68 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 69 |
+
|
| 70 |
+
[More Information Needed]
|
| 71 |
+
|
| 72 |
+
### Recommendations
|
| 73 |
+
|
| 74 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 75 |
+
|
| 76 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 77 |
+
|
| 78 |
+
## How to Get Started with the Model
|
| 79 |
+
|
| 80 |
+
Use the code below to get started with the model.
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
## Training Details
|
| 85 |
+
|
| 86 |
+
### Training Data
|
| 87 |
+
|
| 88 |
+
<!-- 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. -->
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
### Training Procedure
|
| 93 |
+
|
| 94 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 95 |
+
|
| 96 |
+
#### Preprocessing [optional]
|
| 97 |
+
|
| 98 |
+
[More Information Needed]
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
#### Training Hyperparameters
|
| 102 |
+
|
| 103 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 104 |
+
|
| 105 |
+
#### Speeds, Sizes, Times [optional]
|
| 106 |
+
|
| 107 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 108 |
+
|
| 109 |
+
[More Information Needed]
|
| 110 |
+
|
| 111 |
+
## Evaluation
|
| 112 |
+
|
| 113 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 114 |
+
|
| 115 |
+
### Testing Data, Factors & Metrics
|
| 116 |
+
|
| 117 |
+
#### Testing Data
|
| 118 |
+
|
| 119 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 120 |
+
|
| 121 |
+
[More Information Needed]
|
| 122 |
+
|
| 123 |
+
#### Factors
|
| 124 |
+
|
| 125 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 126 |
+
|
| 127 |
+
[More Information Needed]
|
| 128 |
+
|
| 129 |
+
#### Metrics
|
| 130 |
+
|
| 131 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
### Results
|
| 136 |
+
|
| 137 |
+
[More Information Needed]
|
| 138 |
+
|
| 139 |
+
#### Summary
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
|
| 143 |
+
## Model Examination [optional]
|
| 144 |
+
|
| 145 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 146 |
+
|
| 147 |
+
[More Information Needed]
|
| 148 |
+
|
| 149 |
+
## Environmental Impact
|
| 150 |
+
|
| 151 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 152 |
+
|
| 153 |
+
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).
|
| 154 |
+
|
| 155 |
+
- **Hardware Type:** [More Information Needed]
|
| 156 |
+
- **Hours used:** [More Information Needed]
|
| 157 |
+
- **Cloud Provider:** [More Information Needed]
|
| 158 |
+
- **Compute Region:** [More Information Needed]
|
| 159 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
+
|
| 161 |
+
## Technical Specifications [optional]
|
| 162 |
+
|
| 163 |
+
### Model Architecture and Objective
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
### Compute Infrastructure
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Hardware
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
#### Software
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
## Citation [optional]
|
| 180 |
+
|
| 181 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 182 |
+
|
| 183 |
+
**BibTeX:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
**APA:**
|
| 188 |
+
|
| 189 |
+
[More Information Needed]
|
| 190 |
+
|
| 191 |
+
## Glossary [optional]
|
| 192 |
+
|
| 193 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## More Information [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Authors [optional]
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
|
| 205 |
+
## Model Card Contact
|
| 206 |
+
|
| 207 |
+
[More Information Needed]
|
| 208 |
+
### Framework versions
|
| 209 |
+
|
| 210 |
+
- PEFT 0.19.1
|
checkpoint-1800/adapter_config.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "Qwen3ForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.qwen3.modeling_qwen3",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/Qwen3-4B-Instruct-2507",
|
| 11 |
+
"bias": "none",
|
| 12 |
+
"corda_config": null,
|
| 13 |
+
"ensure_weight_tying": false,
|
| 14 |
+
"eva_config": null,
|
| 15 |
+
"exclude_modules": null,
|
| 16 |
+
"fan_in_fan_out": false,
|
| 17 |
+
"inference_mode": true,
|
| 18 |
+
"init_lora_weights": true,
|
| 19 |
+
"layer_replication": null,
|
| 20 |
+
"layers_pattern": null,
|
| 21 |
+
"layers_to_transform": null,
|
| 22 |
+
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 64,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0.05,
|
| 26 |
+
"lora_ga_config": null,
|
| 27 |
+
"megatron_config": null,
|
| 28 |
+
"megatron_core": "megatron.core",
|
| 29 |
+
"modules_to_save": null,
|
| 30 |
+
"peft_type": "LORA",
|
| 31 |
+
"peft_version": "0.19.1",
|
| 32 |
+
"qalora_group_size": 16,
|
| 33 |
+
"r": 32,
|
| 34 |
+
"rank_pattern": {},
|
| 35 |
+
"revision": null,
|
| 36 |
+
"target_modules": [
|
| 37 |
+
"v_proj",
|
| 38 |
+
"k_proj",
|
| 39 |
+
"q_proj",
|
| 40 |
+
"o_proj"
|
| 41 |
+
],
|
| 42 |
+
"target_parameters": null,
|
| 43 |
+
"task_type": "CAUSAL_LM",
|
| 44 |
+
"trainable_token_indices": null,
|
| 45 |
+
"use_bdlora": null,
|
| 46 |
+
"use_dora": false,
|
| 47 |
+
"use_qalora": false,
|
| 48 |
+
"use_rslora": false
|
| 49 |
+
}
|
checkpoint-1800/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5558196995d86fc5ca325107c570c0a3a451ee12986c5a44636c40df3ed675d3
|
| 3 |
+
size 94410616
|
checkpoint-1800/added_tokens.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|PAD_TOKEN|>": 151669,
|
| 9 |
+
"<|box_end|>": 151649,
|
| 10 |
+
"<|box_start|>": 151648,
|
| 11 |
+
"<|endoftext|>": 151643,
|
| 12 |
+
"<|file_sep|>": 151664,
|
| 13 |
+
"<|fim_middle|>": 151660,
|
| 14 |
+
"<|fim_pad|>": 151662,
|
| 15 |
+
"<|fim_prefix|>": 151659,
|
| 16 |
+
"<|fim_suffix|>": 151661,
|
| 17 |
+
"<|im_end|>": 151645,
|
| 18 |
+
"<|im_start|>": 151644,
|
| 19 |
+
"<|image_pad|>": 151655,
|
| 20 |
+
"<|object_ref_end|>": 151647,
|
| 21 |
+
"<|object_ref_start|>": 151646,
|
| 22 |
+
"<|quad_end|>": 151651,
|
| 23 |
+
"<|quad_start|>": 151650,
|
| 24 |
+
"<|repo_name|>": 151663,
|
| 25 |
+
"<|video_pad|>": 151656,
|
| 26 |
+
"<|vision_end|>": 151653,
|
| 27 |
+
"<|vision_pad|>": 151654,
|
| 28 |
+
"<|vision_start|>": 151652
|
| 29 |
+
}
|
checkpoint-1800/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1800/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:309ab0faad28d89fb0edb9b407e12f449d84ced1d142e2cc2cb99ee763c5f738
|
| 3 |
+
size 48264852
|
checkpoint-1800/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b942667e2ba6a3f9d0a70034a7fb1ff08608b6b8eac503a37880413c545ef00c
|
| 3 |
+
size 14244
|
checkpoint-1800/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72c216192a10bb178bc5e3fde396e8bfe231f9fc1915f9649dd253d1be437504
|
| 3 |
+
size 1064
|
checkpoint-1800/special_tokens_map.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": "<|PAD_TOKEN|>"
|
| 25 |
+
}
|
checkpoint-1800/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10ba4ba91270b1a50e5cd8e51023bccc66fc4ac4909dd7ae7ab29433411c9bb9
|
| 3 |
+
size 11422844
|
checkpoint-1800/tokenizer_config.json
ADDED
|
@@ -0,0 +1,249 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
},
|
| 213 |
+
"151669": {
|
| 214 |
+
"content": "<|PAD_TOKEN|>",
|
| 215 |
+
"lstrip": false,
|
| 216 |
+
"normalized": false,
|
| 217 |
+
"rstrip": false,
|
| 218 |
+
"single_word": false,
|
| 219 |
+
"special": true
|
| 220 |
+
}
|
| 221 |
+
},
|
| 222 |
+
"additional_special_tokens": [
|
| 223 |
+
"<|im_start|>",
|
| 224 |
+
"<|im_end|>",
|
| 225 |
+
"<|object_ref_start|>",
|
| 226 |
+
"<|object_ref_end|>",
|
| 227 |
+
"<|box_start|>",
|
| 228 |
+
"<|box_end|>",
|
| 229 |
+
"<|quad_start|>",
|
| 230 |
+
"<|quad_end|>",
|
| 231 |
+
"<|vision_start|>",
|
| 232 |
+
"<|vision_end|>",
|
| 233 |
+
"<|vision_pad|>",
|
| 234 |
+
"<|image_pad|>",
|
| 235 |
+
"<|video_pad|>"
|
| 236 |
+
],
|
| 237 |
+
"bos_token": null,
|
| 238 |
+
"chat_template": "\n{%- if tools %}\n {{- '<|im_start|>system\n' }}\n {%- if messages[0].role == 'system' %}\n {{- messages[0].content + '\n\n' }}\n {%- endif %}\n {{- \"# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\n</tool_call><|im_end|>\n\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for forward_message in messages %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- set message = messages[index] %}\n {%- set current_content = message.content if message.content is not none else '' %}\n {%- set tool_start = '<tool_response>' %}\n {%- set tool_start_length = tool_start|length %}\n {%- set start_of_message = current_content[:tool_start_length] %}\n {%- set tool_end = '</tool_response>' %}\n {%- set tool_end_length = tool_end|length %}\n {%- set start_pos = (current_content|length) - tool_end_length %}\n {%- if start_pos < 0 %}\n {%- set start_pos = 0 %}\n {%- endif %}\n {%- set end_of_message = current_content[start_pos:] %}\n {%- if ns.multi_step_tool and message.role == \"user\" and not(start_of_message == tool_start and end_of_message == tool_end) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n{%- endfor %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set content = message.content %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is defined and message.reasoning_content is not none %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in message.content %}\n {%- set content = (message.content.split('</think>')|last).lstrip('\n') %}\n {%- set reasoning_content = (message.content.split('</think>')|first).rstrip('\n') %}\n {%- set reasoning_content = (reasoning_content.split('<think>')|last).lstrip('\n') %}\n {%- endif %}\n {%- endif %}\n {%- if loop.index0 > ns.last_query_index %}\n {%- if loop.last or (not loop.last and reasoning_content) %}\n {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\n' + content }}\n {%- endif %}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\n' + content }}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and content) or (not loop.first) %}\n {{- '\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\n<tool_response>\n' }}\n {{- message.content }}\n {{- '\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\n' }}\n {%- if enable_thinking is defined and enable_thinking is false %}\n {{- '<think>\n\n</think>\n\n' }}\n {%- endif %}\n{%- endif %}\n",
|
| 239 |
+
"clean_up_tokenization_spaces": false,
|
| 240 |
+
"eos_token": "<|im_end|>",
|
| 241 |
+
"errors": "replace",
|
| 242 |
+
"extra_special_tokens": {},
|
| 243 |
+
"model_max_length": 262144,
|
| 244 |
+
"pad_token": "<|PAD_TOKEN|>",
|
| 245 |
+
"padding_side": "right",
|
| 246 |
+
"split_special_tokens": false,
|
| 247 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 248 |
+
"unk_token": null
|
| 249 |
+
}
|
checkpoint-1800/trainer_state.json
ADDED
|
@@ -0,0 +1,2554 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.8849699398797597,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 1800,
|
| 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.008016032064128256,
|
| 14 |
+
"grad_norm": 1.7998353242874146,
|
| 15 |
+
"learning_rate": 1.4035087719298246e-06,
|
| 16 |
+
"loss": 2.8148,
|
| 17 |
+
"step": 5
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.01603206412825651,
|
| 21 |
+
"grad_norm": 1.8694814443588257,
|
| 22 |
+
"learning_rate": 3.157894736842105e-06,
|
| 23 |
+
"loss": 2.7787,
|
| 24 |
+
"step": 10
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.02404809619238477,
|
| 28 |
+
"grad_norm": 2.0035526752471924,
|
| 29 |
+
"learning_rate": 4.912280701754386e-06,
|
| 30 |
+
"loss": 2.8341,
|
| 31 |
+
"step": 15
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.03206412825651302,
|
| 35 |
+
"grad_norm": 2.0097479820251465,
|
| 36 |
+
"learning_rate": 6.666666666666667e-06,
|
| 37 |
+
"loss": 2.7125,
|
| 38 |
+
"step": 20
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.04008016032064128,
|
| 42 |
+
"grad_norm": 1.6507200002670288,
|
| 43 |
+
"learning_rate": 8.421052631578948e-06,
|
| 44 |
+
"loss": 2.4992,
|
| 45 |
+
"step": 25
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.04809619238476954,
|
| 49 |
+
"grad_norm": 2.043926477432251,
|
| 50 |
+
"learning_rate": 1.017543859649123e-05,
|
| 51 |
+
"loss": 2.551,
|
| 52 |
+
"step": 30
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.056112224448897796,
|
| 56 |
+
"grad_norm": 1.697209119796753,
|
| 57 |
+
"learning_rate": 1.192982456140351e-05,
|
| 58 |
+
"loss": 2.525,
|
| 59 |
+
"step": 35
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.06412825651302605,
|
| 63 |
+
"grad_norm": 1.7798157930374146,
|
| 64 |
+
"learning_rate": 1.3684210526315791e-05,
|
| 65 |
+
"loss": 2.4075,
|
| 66 |
+
"step": 40
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.07214428857715431,
|
| 70 |
+
"grad_norm": 1.4598116874694824,
|
| 71 |
+
"learning_rate": 1.543859649122807e-05,
|
| 72 |
+
"loss": 2.093,
|
| 73 |
+
"step": 45
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.08016032064128256,
|
| 77 |
+
"grad_norm": 1.4842052459716797,
|
| 78 |
+
"learning_rate": 1.719298245614035e-05,
|
| 79 |
+
"loss": 1.9538,
|
| 80 |
+
"step": 50
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.08817635270541083,
|
| 84 |
+
"grad_norm": 1.1754084825515747,
|
| 85 |
+
"learning_rate": 1.894736842105263e-05,
|
| 86 |
+
"loss": 1.7687,
|
| 87 |
+
"step": 55
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.09619238476953908,
|
| 91 |
+
"grad_norm": 0.93027663230896,
|
| 92 |
+
"learning_rate": 1.999993988083788e-05,
|
| 93 |
+
"loss": 1.6448,
|
| 94 |
+
"step": 60
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.10420841683366733,
|
| 98 |
+
"grad_norm": 1.0409395694732666,
|
| 99 |
+
"learning_rate": 1.999926354856561e-05,
|
| 100 |
+
"loss": 1.4744,
|
| 101 |
+
"step": 65
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.11222444889779559,
|
| 105 |
+
"grad_norm": 0.9661508202552795,
|
| 106 |
+
"learning_rate": 1.999783578606323e-05,
|
| 107 |
+
"loss": 1.3396,
|
| 108 |
+
"step": 70
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.12024048096192384,
|
| 112 |
+
"grad_norm": 0.6014273166656494,
|
| 113 |
+
"learning_rate": 1.999565670062504e-05,
|
| 114 |
+
"loss": 1.2886,
|
| 115 |
+
"step": 75
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.1282565130260521,
|
| 119 |
+
"grad_norm": 0.5582892894744873,
|
| 120 |
+
"learning_rate": 1.9992726456006157e-05,
|
| 121 |
+
"loss": 1.1745,
|
| 122 |
+
"step": 80
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.13627254509018036,
|
| 126 |
+
"grad_norm": 0.4300733804702759,
|
| 127 |
+
"learning_rate": 1.9989045272410242e-05,
|
| 128 |
+
"loss": 1.163,
|
| 129 |
+
"step": 85
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.14428857715430862,
|
| 133 |
+
"grad_norm": 0.6262882351875305,
|
| 134 |
+
"learning_rate": 1.9984613426472934e-05,
|
| 135 |
+
"loss": 1.2483,
|
| 136 |
+
"step": 90
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.1523046092184369,
|
| 140 |
+
"grad_norm": 0.3891115188598633,
|
| 141 |
+
"learning_rate": 1.9979431251241057e-05,
|
| 142 |
+
"loss": 1.1076,
|
| 143 |
+
"step": 95
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.16032064128256512,
|
| 147 |
+
"grad_norm": 3.9172680377960205,
|
| 148 |
+
"learning_rate": 1.997349913614761e-05,
|
| 149 |
+
"loss": 1.1621,
|
| 150 |
+
"step": 100
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.1683366733466934,
|
| 154 |
+
"grad_norm": 0.3938579857349396,
|
| 155 |
+
"learning_rate": 1.9966817526982473e-05,
|
| 156 |
+
"loss": 1.1969,
|
| 157 |
+
"step": 105
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.17635270541082165,
|
| 161 |
+
"grad_norm": 0.4831806719303131,
|
| 162 |
+
"learning_rate": 1.9959386925858944e-05,
|
| 163 |
+
"loss": 1.1086,
|
| 164 |
+
"step": 110
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.1843687374749499,
|
| 168 |
+
"grad_norm": 0.3328356444835663,
|
| 169 |
+
"learning_rate": 1.9951207891175973e-05,
|
| 170 |
+
"loss": 1.0541,
|
| 171 |
+
"step": 115
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.19238476953907815,
|
| 175 |
+
"grad_norm": 0.5235080122947693,
|
| 176 |
+
"learning_rate": 1.9942281037576223e-05,
|
| 177 |
+
"loss": 1.0936,
|
| 178 |
+
"step": 120
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.20040080160320642,
|
| 182 |
+
"grad_norm": 0.3490229547023773,
|
| 183 |
+
"learning_rate": 1.993260703589986e-05,
|
| 184 |
+
"loss": 1.0498,
|
| 185 |
+
"step": 125
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.20841683366733466,
|
| 189 |
+
"grad_norm": 1.1637717485427856,
|
| 190 |
+
"learning_rate": 1.9922186613134152e-05,
|
| 191 |
+
"loss": 1.0424,
|
| 192 |
+
"step": 130
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.21643286573146292,
|
| 196 |
+
"grad_norm": 0.3831629157066345,
|
| 197 |
+
"learning_rate": 1.991102055235884e-05,
|
| 198 |
+
"loss": 1.105,
|
| 199 |
+
"step": 135
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.22444889779559118,
|
| 203 |
+
"grad_norm": 0.5610520243644714,
|
| 204 |
+
"learning_rate": 1.989910969268728e-05,
|
| 205 |
+
"loss": 1.1341,
|
| 206 |
+
"step": 140
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.23246492985971945,
|
| 210 |
+
"grad_norm": 0.5133630037307739,
|
| 211 |
+
"learning_rate": 1.9886454929203394e-05,
|
| 212 |
+
"loss": 1.0598,
|
| 213 |
+
"step": 145
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.24048096192384769,
|
| 217 |
+
"grad_norm": 0.3511698246002197,
|
| 218 |
+
"learning_rate": 1.98730572128944e-05,
|
| 219 |
+
"loss": 0.9851,
|
| 220 |
+
"step": 150
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.24849699398797595,
|
| 224 |
+
"grad_norm": 0.4384966790676117,
|
| 225 |
+
"learning_rate": 1.985891755057935e-05,
|
| 226 |
+
"loss": 1.0148,
|
| 227 |
+
"step": 155
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.2565130260521042,
|
| 231 |
+
"grad_norm": 0.5588643550872803,
|
| 232 |
+
"learning_rate": 1.984403700483347e-05,
|
| 233 |
+
"loss": 1.0541,
|
| 234 |
+
"step": 160
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.26452905811623245,
|
| 238 |
+
"grad_norm": 0.3638758063316345,
|
| 239 |
+
"learning_rate": 1.9828416693908305e-05,
|
| 240 |
+
"loss": 0.8998,
|
| 241 |
+
"step": 165
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.2725450901803607,
|
| 245 |
+
"grad_norm": 0.3875952959060669,
|
| 246 |
+
"learning_rate": 1.9812057791647687e-05,
|
| 247 |
+
"loss": 0.9024,
|
| 248 |
+
"step": 170
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.280561122244489,
|
| 252 |
+
"grad_norm": 0.3295404016971588,
|
| 253 |
+
"learning_rate": 1.9794961527399518e-05,
|
| 254 |
+
"loss": 0.9846,
|
| 255 |
+
"step": 175
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.28857715430861725,
|
| 259 |
+
"grad_norm": 0.3046537935733795,
|
| 260 |
+
"learning_rate": 1.9777129185923397e-05,
|
| 261 |
+
"loss": 0.9746,
|
| 262 |
+
"step": 180
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.2965931863727455,
|
| 266 |
+
"grad_norm": 0.41136643290519714,
|
| 267 |
+
"learning_rate": 1.975856210729405e-05,
|
| 268 |
+
"loss": 1.0259,
|
| 269 |
+
"step": 185
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 0.3046092184368738,
|
| 273 |
+
"grad_norm": 0.4319979250431061,
|
| 274 |
+
"learning_rate": 1.9739261686800662e-05,
|
| 275 |
+
"loss": 1.0129,
|
| 276 |
+
"step": 190
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.312625250501002,
|
| 280 |
+
"grad_norm": 0.45283690094947815,
|
| 281 |
+
"learning_rate": 1.9719229374841978e-05,
|
| 282 |
+
"loss": 0.9649,
|
| 283 |
+
"step": 195
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"epoch": 0.32064128256513025,
|
| 287 |
+
"grad_norm": 0.2747628092765808,
|
| 288 |
+
"learning_rate": 1.9698466676817348e-05,
|
| 289 |
+
"loss": 0.9863,
|
| 290 |
+
"step": 200
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.3286573146292585,
|
| 294 |
+
"grad_norm": 1.5212770700454712,
|
| 295 |
+
"learning_rate": 1.9676975153013574e-05,
|
| 296 |
+
"loss": 0.9803,
|
| 297 |
+
"step": 205
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 0.3366733466933868,
|
| 301 |
+
"grad_norm": 0.48161494731903076,
|
| 302 |
+
"learning_rate": 1.965475641848767e-05,
|
| 303 |
+
"loss": 1.031,
|
| 304 |
+
"step": 210
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.34468937875751504,
|
| 308 |
+
"grad_norm": 0.31916359066963196,
|
| 309 |
+
"learning_rate": 1.9631812142945473e-05,
|
| 310 |
+
"loss": 1.0912,
|
| 311 |
+
"step": 215
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"epoch": 0.3527054108216433,
|
| 315 |
+
"grad_norm": 0.418302059173584,
|
| 316 |
+
"learning_rate": 1.9608144050616192e-05,
|
| 317 |
+
"loss": 0.9857,
|
| 318 |
+
"step": 220
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.36072144288577157,
|
| 322 |
+
"grad_norm": 0.38761621713638306,
|
| 323 |
+
"learning_rate": 1.9583753920122822e-05,
|
| 324 |
+
"loss": 1.0441,
|
| 325 |
+
"step": 225
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.3687374749498998,
|
| 329 |
+
"grad_norm": 0.33479398488998413,
|
| 330 |
+
"learning_rate": 1.9558643584348478e-05,
|
| 331 |
+
"loss": 0.9453,
|
| 332 |
+
"step": 230
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.37675350701402804,
|
| 336 |
+
"grad_norm": 0.36575448513031006,
|
| 337 |
+
"learning_rate": 1.9532814930298673e-05,
|
| 338 |
+
"loss": 0.9196,
|
| 339 |
+
"step": 235
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 0.3847695390781563,
|
| 343 |
+
"grad_norm": 0.33325284719467163,
|
| 344 |
+
"learning_rate": 1.95062698989595e-05,
|
| 345 |
+
"loss": 1.0024,
|
| 346 |
+
"step": 240
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.3927855711422846,
|
| 350 |
+
"grad_norm": 0.3346043825149536,
|
| 351 |
+
"learning_rate": 1.947901048515176e-05,
|
| 352 |
+
"loss": 0.9017,
|
| 353 |
+
"step": 245
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"epoch": 0.40080160320641284,
|
| 357 |
+
"grad_norm": 0.4760594666004181,
|
| 358 |
+
"learning_rate": 1.9451038737381078e-05,
|
| 359 |
+
"loss": 0.941,
|
| 360 |
+
"step": 250
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.4088176352705411,
|
| 364 |
+
"grad_norm": 0.3105100989341736,
|
| 365 |
+
"learning_rate": 1.9422356757683946e-05,
|
| 366 |
+
"loss": 0.9357,
|
| 367 |
+
"step": 255
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 0.4168336673346693,
|
| 371 |
+
"grad_norm": 0.35822534561157227,
|
| 372 |
+
"learning_rate": 1.939296670146976e-05,
|
| 373 |
+
"loss": 1.002,
|
| 374 |
+
"step": 260
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.4248496993987976,
|
| 378 |
+
"grad_norm": 0.4366324245929718,
|
| 379 |
+
"learning_rate": 1.936287077735884e-05,
|
| 380 |
+
"loss": 0.9836,
|
| 381 |
+
"step": 265
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 0.43286573146292584,
|
| 385 |
+
"grad_norm": 0.339522123336792,
|
| 386 |
+
"learning_rate": 1.9332071247016476e-05,
|
| 387 |
+
"loss": 0.8653,
|
| 388 |
+
"step": 270
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.4408817635270541,
|
| 392 |
+
"grad_norm": 0.31696006655693054,
|
| 393 |
+
"learning_rate": 1.930057042498293e-05,
|
| 394 |
+
"loss": 0.9843,
|
| 395 |
+
"step": 275
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 0.44889779559118237,
|
| 399 |
+
"grad_norm": 0.30729272961616516,
|
| 400 |
+
"learning_rate": 1.926837067849953e-05,
|
| 401 |
+
"loss": 1.0606,
|
| 402 |
+
"step": 280
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.45691382765531063,
|
| 406 |
+
"grad_norm": 0.4165307879447937,
|
| 407 |
+
"learning_rate": 1.9235474427330783e-05,
|
| 408 |
+
"loss": 0.9156,
|
| 409 |
+
"step": 285
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 0.4649298597194389,
|
| 413 |
+
"grad_norm": 0.43856576085090637,
|
| 414 |
+
"learning_rate": 1.9201884143582496e-05,
|
| 415 |
+
"loss": 0.9984,
|
| 416 |
+
"step": 290
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.4729458917835671,
|
| 420 |
+
"grad_norm": 0.333844393491745,
|
| 421 |
+
"learning_rate": 1.916760235151604e-05,
|
| 422 |
+
"loss": 0.9388,
|
| 423 |
+
"step": 295
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 0.48096192384769537,
|
| 427 |
+
"grad_norm": 0.34350189566612244,
|
| 428 |
+
"learning_rate": 1.913263162735862e-05,
|
| 429 |
+
"loss": 0.9525,
|
| 430 |
+
"step": 300
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.48897795591182364,
|
| 434 |
+
"grad_norm": 0.37638700008392334,
|
| 435 |
+
"learning_rate": 1.909697459910972e-05,
|
| 436 |
+
"loss": 0.9491,
|
| 437 |
+
"step": 305
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 0.4969939879759519,
|
| 441 |
+
"grad_norm": 0.37804660201072693,
|
| 442 |
+
"learning_rate": 1.906063394634356e-05,
|
| 443 |
+
"loss": 0.9613,
|
| 444 |
+
"step": 310
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.5050100200400801,
|
| 448 |
+
"grad_norm": 0.39323610067367554,
|
| 449 |
+
"learning_rate": 1.902361240000778e-05,
|
| 450 |
+
"loss": 0.9028,
|
| 451 |
+
"step": 315
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.5130260521042084,
|
| 455 |
+
"grad_norm": 0.3674936294555664,
|
| 456 |
+
"learning_rate": 1.8985912742218167e-05,
|
| 457 |
+
"loss": 1.0493,
|
| 458 |
+
"step": 320
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.5210420841683366,
|
| 462 |
+
"grad_norm": 0.432797908782959,
|
| 463 |
+
"learning_rate": 1.894753780604962e-05,
|
| 464 |
+
"loss": 1.0113,
|
| 465 |
+
"step": 325
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 0.5290581162324649,
|
| 469 |
+
"grad_norm": 0.33035048842430115,
|
| 470 |
+
"learning_rate": 1.8908490475323234e-05,
|
| 471 |
+
"loss": 0.9485,
|
| 472 |
+
"step": 330
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.5370741482965932,
|
| 476 |
+
"grad_norm": 0.4390115439891815,
|
| 477 |
+
"learning_rate": 1.886877368438957e-05,
|
| 478 |
+
"loss": 0.8867,
|
| 479 |
+
"step": 335
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 0.5450901803607214,
|
| 483 |
+
"grad_norm": 0.3174438178539276,
|
| 484 |
+
"learning_rate": 1.882839041790818e-05,
|
| 485 |
+
"loss": 0.8476,
|
| 486 |
+
"step": 340
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.5531062124248497,
|
| 490 |
+
"grad_norm": 0.35620829463005066,
|
| 491 |
+
"learning_rate": 1.8787343710623278e-05,
|
| 492 |
+
"loss": 0.9164,
|
| 493 |
+
"step": 345
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"epoch": 0.561122244488978,
|
| 497 |
+
"grad_norm": 0.36334139108657837,
|
| 498 |
+
"learning_rate": 1.8745636647135693e-05,
|
| 499 |
+
"loss": 1.0097,
|
| 500 |
+
"step": 350
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.5691382765531062,
|
| 504 |
+
"grad_norm": 0.2904795706272125,
|
| 505 |
+
"learning_rate": 1.870327236167109e-05,
|
| 506 |
+
"loss": 0.849,
|
| 507 |
+
"step": 355
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 0.5771543086172345,
|
| 511 |
+
"grad_norm": 0.287715882062912,
|
| 512 |
+
"learning_rate": 1.866025403784439e-05,
|
| 513 |
+
"loss": 0.9578,
|
| 514 |
+
"step": 360
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.5851703406813628,
|
| 518 |
+
"grad_norm": 0.3586503565311432,
|
| 519 |
+
"learning_rate": 1.8616584908420573e-05,
|
| 520 |
+
"loss": 0.9323,
|
| 521 |
+
"step": 365
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"epoch": 0.593186372745491,
|
| 525 |
+
"grad_norm": 0.8753472566604614,
|
| 526 |
+
"learning_rate": 1.8572268255071718e-05,
|
| 527 |
+
"loss": 0.903,
|
| 528 |
+
"step": 370
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.6012024048096193,
|
| 532 |
+
"grad_norm": 0.5796067118644714,
|
| 533 |
+
"learning_rate": 1.8527307408130388e-05,
|
| 534 |
+
"loss": 0.9665,
|
| 535 |
+
"step": 375
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 0.6092184368737475,
|
| 539 |
+
"grad_norm": 0.3357750177383423,
|
| 540 |
+
"learning_rate": 1.848170574633937e-05,
|
| 541 |
+
"loss": 0.8183,
|
| 542 |
+
"step": 380
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.6172344689378757,
|
| 546 |
+
"grad_norm": 0.3579539954662323,
|
| 547 |
+
"learning_rate": 1.8435466696597758e-05,
|
| 548 |
+
"loss": 0.9593,
|
| 549 |
+
"step": 385
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 0.625250501002004,
|
| 553 |
+
"grad_norm": 0.30244457721710205,
|
| 554 |
+
"learning_rate": 1.8388593733703428e-05,
|
| 555 |
+
"loss": 0.9102,
|
| 556 |
+
"step": 390
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.6332665330661322,
|
| 560 |
+
"grad_norm": 0.37754353880882263,
|
| 561 |
+
"learning_rate": 1.8341090380091926e-05,
|
| 562 |
+
"loss": 0.8921,
|
| 563 |
+
"step": 395
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 0.6412825651302605,
|
| 567 |
+
"grad_norm": 0.316244512796402,
|
| 568 |
+
"learning_rate": 1.8292960205571742e-05,
|
| 569 |
+
"loss": 0.8915,
|
| 570 |
+
"step": 400
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.6492985971943888,
|
| 574 |
+
"grad_norm": 0.3463846445083618,
|
| 575 |
+
"learning_rate": 1.824420682705606e-05,
|
| 576 |
+
"loss": 0.921,
|
| 577 |
+
"step": 405
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.657314629258517,
|
| 581 |
+
"grad_norm": 0.3335030674934387,
|
| 582 |
+
"learning_rate": 1.8194833908290933e-05,
|
| 583 |
+
"loss": 0.8892,
|
| 584 |
+
"step": 410
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.6653306613226453,
|
| 588 |
+
"grad_norm": 0.34191393852233887,
|
| 589 |
+
"learning_rate": 1.814484515957998e-05,
|
| 590 |
+
"loss": 0.8977,
|
| 591 |
+
"step": 415
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 0.6733466933867736,
|
| 595 |
+
"grad_norm": 0.3235023319721222,
|
| 596 |
+
"learning_rate": 1.809424433750555e-05,
|
| 597 |
+
"loss": 0.9092,
|
| 598 |
+
"step": 420
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.6813627254509018,
|
| 602 |
+
"grad_norm": 0.36189472675323486,
|
| 603 |
+
"learning_rate": 1.804303524464643e-05,
|
| 604 |
+
"loss": 0.8349,
|
| 605 |
+
"step": 425
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 0.6893787575150301,
|
| 609 |
+
"grad_norm": 0.3975241482257843,
|
| 610 |
+
"learning_rate": 1.799122172929206e-05,
|
| 611 |
+
"loss": 0.8988,
|
| 612 |
+
"step": 430
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.6973947895791583,
|
| 616 |
+
"grad_norm": 0.3317061960697174,
|
| 617 |
+
"learning_rate": 1.793880768515337e-05,
|
| 618 |
+
"loss": 1.0006,
|
| 619 |
+
"step": 435
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 0.7054108216432866,
|
| 623 |
+
"grad_norm": 0.380412220954895,
|
| 624 |
+
"learning_rate": 1.788579705107017e-05,
|
| 625 |
+
"loss": 0.8576,
|
| 626 |
+
"step": 440
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.7134268537074149,
|
| 630 |
+
"grad_norm": 0.3645264804363251,
|
| 631 |
+
"learning_rate": 1.7832193810715125e-05,
|
| 632 |
+
"loss": 1.0026,
|
| 633 |
+
"step": 445
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 0.7214428857715431,
|
| 637 |
+
"grad_norm": 0.3171364665031433,
|
| 638 |
+
"learning_rate": 1.7778001992294426e-05,
|
| 639 |
+
"loss": 0.8791,
|
| 640 |
+
"step": 450
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.7294589178356713,
|
| 644 |
+
"grad_norm": 0.3164263069629669,
|
| 645 |
+
"learning_rate": 1.772322566824504e-05,
|
| 646 |
+
"loss": 0.8095,
|
| 647 |
+
"step": 455
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"epoch": 0.7374749498997996,
|
| 651 |
+
"grad_norm": 0.43192753195762634,
|
| 652 |
+
"learning_rate": 1.7667868954928695e-05,
|
| 653 |
+
"loss": 0.962,
|
| 654 |
+
"step": 460
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.7454909819639278,
|
| 658 |
+
"grad_norm": 0.3209589421749115,
|
| 659 |
+
"learning_rate": 1.761193601232254e-05,
|
| 660 |
+
"loss": 0.858,
|
| 661 |
+
"step": 465
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"epoch": 0.7535070140280561,
|
| 665 |
+
"grad_norm": 0.3736160397529602,
|
| 666 |
+
"learning_rate": 1.7555431043706517e-05,
|
| 667 |
+
"loss": 1.0115,
|
| 668 |
+
"step": 470
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.7615230460921844,
|
| 672 |
+
"grad_norm": 0.36832720041275024,
|
| 673 |
+
"learning_rate": 1.74983582953475e-05,
|
| 674 |
+
"loss": 0.8106,
|
| 675 |
+
"step": 475
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 0.7695390781563126,
|
| 679 |
+
"grad_norm": 0.3430776596069336,
|
| 680 |
+
"learning_rate": 1.744072205618019e-05,
|
| 681 |
+
"loss": 0.9519,
|
| 682 |
+
"step": 480
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.7775551102204409,
|
| 686 |
+
"grad_norm": 0.3065486252307892,
|
| 687 |
+
"learning_rate": 1.7382526657484815e-05,
|
| 688 |
+
"loss": 0.8079,
|
| 689 |
+
"step": 485
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 0.7855711422845691,
|
| 693 |
+
"grad_norm": 0.33461305499076843,
|
| 694 |
+
"learning_rate": 1.7323776472561625e-05,
|
| 695 |
+
"loss": 0.8935,
|
| 696 |
+
"step": 490
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.7935871743486974,
|
| 700 |
+
"grad_norm": 0.4995952546596527,
|
| 701 |
+
"learning_rate": 1.7264475916402264e-05,
|
| 702 |
+
"loss": 0.885,
|
| 703 |
+
"step": 495
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.8016032064128257,
|
| 707 |
+
"grad_norm": 0.29805514216423035,
|
| 708 |
+
"learning_rate": 1.7204629445357978e-05,
|
| 709 |
+
"loss": 0.8196,
|
| 710 |
+
"step": 500
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.8096192384769539,
|
| 714 |
+
"grad_norm": 0.2961992621421814,
|
| 715 |
+
"learning_rate": 1.7144241556804724e-05,
|
| 716 |
+
"loss": 0.8429,
|
| 717 |
+
"step": 505
|
| 718 |
+
},
|
| 719 |
+
{
|
| 720 |
+
"epoch": 0.8176352705410822,
|
| 721 |
+
"grad_norm": 0.3210907280445099,
|
| 722 |
+
"learning_rate": 1.7083316788805212e-05,
|
| 723 |
+
"loss": 1.0272,
|
| 724 |
+
"step": 510
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.8256513026052105,
|
| 728 |
+
"grad_norm": 0.34204360842704773,
|
| 729 |
+
"learning_rate": 1.7021859719767855e-05,
|
| 730 |
+
"loss": 0.9828,
|
| 731 |
+
"step": 515
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 0.8336673346693386,
|
| 735 |
+
"grad_norm": 0.367639422416687,
|
| 736 |
+
"learning_rate": 1.6959874968102736e-05,
|
| 737 |
+
"loss": 1.0168,
|
| 738 |
+
"step": 520
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.8416833667334669,
|
| 742 |
+
"grad_norm": 0.393257200717926,
|
| 743 |
+
"learning_rate": 1.689736719187452e-05,
|
| 744 |
+
"loss": 0.8997,
|
| 745 |
+
"step": 525
|
| 746 |
+
},
|
| 747 |
+
{
|
| 748 |
+
"epoch": 0.8496993987975952,
|
| 749 |
+
"grad_norm": 0.35654187202453613,
|
| 750 |
+
"learning_rate": 1.683434108845241e-05,
|
| 751 |
+
"loss": 0.9833,
|
| 752 |
+
"step": 530
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.8577154308617234,
|
| 756 |
+
"grad_norm": 0.3392307460308075,
|
| 757 |
+
"learning_rate": 1.677080139415715e-05,
|
| 758 |
+
"loss": 0.8618,
|
| 759 |
+
"step": 535
|
| 760 |
+
},
|
| 761 |
+
{
|
| 762 |
+
"epoch": 0.8657314629258517,
|
| 763 |
+
"grad_norm": 0.4089815020561218,
|
| 764 |
+
"learning_rate": 1.6706752883905107e-05,
|
| 765 |
+
"loss": 0.8715,
|
| 766 |
+
"step": 540
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.87374749498998,
|
| 770 |
+
"grad_norm": 0.340652734041214,
|
| 771 |
+
"learning_rate": 1.6642200370849427e-05,
|
| 772 |
+
"loss": 0.9329,
|
| 773 |
+
"step": 545
|
| 774 |
+
},
|
| 775 |
+
{
|
| 776 |
+
"epoch": 0.8817635270541082,
|
| 777 |
+
"grad_norm": 0.3595132529735565,
|
| 778 |
+
"learning_rate": 1.657714870601833e-05,
|
| 779 |
+
"loss": 0.8755,
|
| 780 |
+
"step": 550
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.8897795591182365,
|
| 784 |
+
"grad_norm": 0.3543437421321869,
|
| 785 |
+
"learning_rate": 1.6511602777950585e-05,
|
| 786 |
+
"loss": 0.9098,
|
| 787 |
+
"step": 555
|
| 788 |
+
},
|
| 789 |
+
{
|
| 790 |
+
"epoch": 0.8977955911823647,
|
| 791 |
+
"grad_norm": 0.3310873508453369,
|
| 792 |
+
"learning_rate": 1.6445567512328122e-05,
|
| 793 |
+
"loss": 0.8433,
|
| 794 |
+
"step": 560
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.905811623246493,
|
| 798 |
+
"grad_norm": 0.3629891574382782,
|
| 799 |
+
"learning_rate": 1.6379047871605897e-05,
|
| 800 |
+
"loss": 0.9434,
|
| 801 |
+
"step": 565
|
| 802 |
+
},
|
| 803 |
+
{
|
| 804 |
+
"epoch": 0.9138276553106213,
|
| 805 |
+
"grad_norm": 0.3259185552597046,
|
| 806 |
+
"learning_rate": 1.6312048854638927e-05,
|
| 807 |
+
"loss": 0.8551,
|
| 808 |
+
"step": 570
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.9218436873747495,
|
| 812 |
+
"grad_norm": 0.4061657786369324,
|
| 813 |
+
"learning_rate": 1.6244575496306696e-05,
|
| 814 |
+
"loss": 0.8558,
|
| 815 |
+
"step": 575
|
| 816 |
+
},
|
| 817 |
+
{
|
| 818 |
+
"epoch": 0.9298597194388778,
|
| 819 |
+
"grad_norm": 0.28805726766586304,
|
| 820 |
+
"learning_rate": 1.6176632867134738e-05,
|
| 821 |
+
"loss": 0.8577,
|
| 822 |
+
"step": 580
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.9378757515030061,
|
| 826 |
+
"grad_norm": 1.7116715908050537,
|
| 827 |
+
"learning_rate": 1.610822607291361e-05,
|
| 828 |
+
"loss": 0.8773,
|
| 829 |
+
"step": 585
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.9458917835671342,
|
| 833 |
+
"grad_norm": 0.36534276604652405,
|
| 834 |
+
"learning_rate": 1.6039360254315213e-05,
|
| 835 |
+
"loss": 0.9772,
|
| 836 |
+
"step": 590
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.9539078156312625,
|
| 840 |
+
"grad_norm": 0.33474084734916687,
|
| 841 |
+
"learning_rate": 1.597004058650647e-05,
|
| 842 |
+
"loss": 0.8995,
|
| 843 |
+
"step": 595
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"epoch": 0.9619238476953907,
|
| 847 |
+
"grad_norm": 0.3544546067714691,
|
| 848 |
+
"learning_rate": 1.5900272278760407e-05,
|
| 849 |
+
"loss": 0.8963,
|
| 850 |
+
"step": 600
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.969939879759519,
|
| 854 |
+
"grad_norm": 0.8063123822212219,
|
| 855 |
+
"learning_rate": 1.5830060574064698e-05,
|
| 856 |
+
"loss": 0.9184,
|
| 857 |
+
"step": 605
|
| 858 |
+
},
|
| 859 |
+
{
|
| 860 |
+
"epoch": 0.9779559118236473,
|
| 861 |
+
"grad_norm": 0.35473623871803284,
|
| 862 |
+
"learning_rate": 1.5759410748727663e-05,
|
| 863 |
+
"loss": 0.8378,
|
| 864 |
+
"step": 610
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.9859719438877755,
|
| 868 |
+
"grad_norm": 0.4922749996185303,
|
| 869 |
+
"learning_rate": 1.5688328111981747e-05,
|
| 870 |
+
"loss": 0.8228,
|
| 871 |
+
"step": 615
|
| 872 |
+
},
|
| 873 |
+
{
|
| 874 |
+
"epoch": 0.9939879759519038,
|
| 875 |
+
"grad_norm": 0.3475538492202759,
|
| 876 |
+
"learning_rate": 1.5616818005584554e-05,
|
| 877 |
+
"loss": 0.8499,
|
| 878 |
+
"step": 620
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 1.0016032064128257,
|
| 882 |
+
"grad_norm": 0.40670621395111084,
|
| 883 |
+
"learning_rate": 1.554488580341742e-05,
|
| 884 |
+
"loss": 0.9474,
|
| 885 |
+
"step": 625
|
| 886 |
+
},
|
| 887 |
+
{
|
| 888 |
+
"epoch": 1.009619238476954,
|
| 889 |
+
"grad_norm": 0.35096031427383423,
|
| 890 |
+
"learning_rate": 1.547253691108156e-05,
|
| 891 |
+
"loss": 0.9408,
|
| 892 |
+
"step": 630
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 1.0176352705410823,
|
| 896 |
+
"grad_norm": 0.477050244808197,
|
| 897 |
+
"learning_rate": 1.539977676549186e-05,
|
| 898 |
+
"loss": 0.8426,
|
| 899 |
+
"step": 635
|
| 900 |
+
},
|
| 901 |
+
{
|
| 902 |
+
"epoch": 1.0256513026052103,
|
| 903 |
+
"grad_norm": 0.3859562575817108,
|
| 904 |
+
"learning_rate": 1.532661083446829e-05,
|
| 905 |
+
"loss": 0.8802,
|
| 906 |
+
"step": 640
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 1.0336673346693386,
|
| 910 |
+
"grad_norm": 0.920563280582428,
|
| 911 |
+
"learning_rate": 1.5253044616325015e-05,
|
| 912 |
+
"loss": 0.8237,
|
| 913 |
+
"step": 645
|
| 914 |
+
},
|
| 915 |
+
{
|
| 916 |
+
"epoch": 1.0416833667334668,
|
| 917 |
+
"grad_norm": 0.3554023504257202,
|
| 918 |
+
"learning_rate": 1.5179083639457193e-05,
|
| 919 |
+
"loss": 0.8263,
|
| 920 |
+
"step": 650
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 1.049699398797595,
|
| 924 |
+
"grad_norm": 0.3896832764148712,
|
| 925 |
+
"learning_rate": 1.510473346192554e-05,
|
| 926 |
+
"loss": 0.9112,
|
| 927 |
+
"step": 655
|
| 928 |
+
},
|
| 929 |
+
{
|
| 930 |
+
"epoch": 1.0577154308617234,
|
| 931 |
+
"grad_norm": 0.39052242040634155,
|
| 932 |
+
"learning_rate": 1.5029999671038636e-05,
|
| 933 |
+
"loss": 0.7501,
|
| 934 |
+
"step": 660
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 1.0657314629258516,
|
| 938 |
+
"grad_norm": 0.9520488977432251,
|
| 939 |
+
"learning_rate": 1.4954887882933045e-05,
|
| 940 |
+
"loss": 0.8634,
|
| 941 |
+
"step": 665
|
| 942 |
+
},
|
| 943 |
+
{
|
| 944 |
+
"epoch": 1.07374749498998,
|
| 945 |
+
"grad_norm": 0.4311390817165375,
|
| 946 |
+
"learning_rate": 1.4879403742151283e-05,
|
| 947 |
+
"loss": 1.0027,
|
| 948 |
+
"step": 670
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 1.0817635270541082,
|
| 952 |
+
"grad_norm": 0.29344749450683594,
|
| 953 |
+
"learning_rate": 1.4803552921217636e-05,
|
| 954 |
+
"loss": 0.7963,
|
| 955 |
+
"step": 675
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 1.0897795591182364,
|
| 959 |
+
"grad_norm": 0.4940725266933441,
|
| 960 |
+
"learning_rate": 1.4727341120211869e-05,
|
| 961 |
+
"loss": 0.864,
|
| 962 |
+
"step": 680
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 1.0977955911823647,
|
| 966 |
+
"grad_norm": 0.36703604459762573,
|
| 967 |
+
"learning_rate": 1.4650774066340877e-05,
|
| 968 |
+
"loss": 0.8763,
|
| 969 |
+
"step": 685
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"epoch": 1.105811623246493,
|
| 973 |
+
"grad_norm": 0.485721617937088,
|
| 974 |
+
"learning_rate": 1.4573857513508297e-05,
|
| 975 |
+
"loss": 0.8671,
|
| 976 |
+
"step": 690
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 1.1138276553106212,
|
| 980 |
+
"grad_norm": 0.3963873088359833,
|
| 981 |
+
"learning_rate": 1.4496597241882113e-05,
|
| 982 |
+
"loss": 0.8517,
|
| 983 |
+
"step": 695
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"epoch": 1.1218436873747495,
|
| 987 |
+
"grad_norm": 0.329689085483551,
|
| 988 |
+
"learning_rate": 1.4418999057460277e-05,
|
| 989 |
+
"loss": 0.832,
|
| 990 |
+
"step": 700
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 1.1298597194388778,
|
| 994 |
+
"grad_norm": 0.4781339466571808,
|
| 995 |
+
"learning_rate": 1.4341068791634399e-05,
|
| 996 |
+
"loss": 0.9939,
|
| 997 |
+
"step": 705
|
| 998 |
+
},
|
| 999 |
+
{
|
| 1000 |
+
"epoch": 1.137875751503006,
|
| 1001 |
+
"grad_norm": 0.33180761337280273,
|
| 1002 |
+
"learning_rate": 1.4262812300751528e-05,
|
| 1003 |
+
"loss": 0.8397,
|
| 1004 |
+
"step": 710
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 1.1458917835671343,
|
| 1008 |
+
"grad_norm": 0.3313557505607605,
|
| 1009 |
+
"learning_rate": 1.4184235465674055e-05,
|
| 1010 |
+
"loss": 0.8507,
|
| 1011 |
+
"step": 715
|
| 1012 |
+
},
|
| 1013 |
+
{
|
| 1014 |
+
"epoch": 1.1539078156312625,
|
| 1015 |
+
"grad_norm": 0.4401721954345703,
|
| 1016 |
+
"learning_rate": 1.4105344191337783e-05,
|
| 1017 |
+
"loss": 0.7881,
|
| 1018 |
+
"step": 720
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 1.1619238476953908,
|
| 1022 |
+
"grad_norm": 0.29335707426071167,
|
| 1023 |
+
"learning_rate": 1.4026144406308155e-05,
|
| 1024 |
+
"loss": 0.8678,
|
| 1025 |
+
"step": 725
|
| 1026 |
+
},
|
| 1027 |
+
{
|
| 1028 |
+
"epoch": 1.169939879759519,
|
| 1029 |
+
"grad_norm": 0.2999337911605835,
|
| 1030 |
+
"learning_rate": 1.3946642062334765e-05,
|
| 1031 |
+
"loss": 0.8667,
|
| 1032 |
+
"step": 730
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 1.1779559118236473,
|
| 1036 |
+
"grad_norm": 0.2895663380622864,
|
| 1037 |
+
"learning_rate": 1.3866843133904064e-05,
|
| 1038 |
+
"loss": 0.8994,
|
| 1039 |
+
"step": 735
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"epoch": 1.1859719438877756,
|
| 1043 |
+
"grad_norm": 0.4325989782810211,
|
| 1044 |
+
"learning_rate": 1.3786753617790405e-05,
|
| 1045 |
+
"loss": 0.8374,
|
| 1046 |
+
"step": 740
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 1.1939879759519039,
|
| 1050 |
+
"grad_norm": 0.4179665148258209,
|
| 1051 |
+
"learning_rate": 1.3706379532605377e-05,
|
| 1052 |
+
"loss": 0.9817,
|
| 1053 |
+
"step": 745
|
| 1054 |
+
},
|
| 1055 |
+
{
|
| 1056 |
+
"epoch": 1.2020040080160321,
|
| 1057 |
+
"grad_norm": 0.3351852297782898,
|
| 1058 |
+
"learning_rate": 1.362572691834553e-05,
|
| 1059 |
+
"loss": 0.8651,
|
| 1060 |
+
"step": 750
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 1.2100200400801604,
|
| 1064 |
+
"grad_norm": 0.3361961245536804,
|
| 1065 |
+
"learning_rate": 1.3544801835938466e-05,
|
| 1066 |
+
"loss": 0.8969,
|
| 1067 |
+
"step": 755
|
| 1068 |
+
},
|
| 1069 |
+
{
|
| 1070 |
+
"epoch": 1.2180360721442887,
|
| 1071 |
+
"grad_norm": 0.5419386029243469,
|
| 1072 |
+
"learning_rate": 1.3463610366787392e-05,
|
| 1073 |
+
"loss": 0.8676,
|
| 1074 |
+
"step": 760
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 1.226052104208417,
|
| 1078 |
+
"grad_norm": 4.783193111419678,
|
| 1079 |
+
"learning_rate": 1.3382158612314075e-05,
|
| 1080 |
+
"loss": 0.8724,
|
| 1081 |
+
"step": 765
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 1.234068136272545,
|
| 1085 |
+
"grad_norm": 0.3341674208641052,
|
| 1086 |
+
"learning_rate": 1.3300452693500358e-05,
|
| 1087 |
+
"loss": 0.8773,
|
| 1088 |
+
"step": 770
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 1.2420841683366732,
|
| 1092 |
+
"grad_norm": 0.3183631896972656,
|
| 1093 |
+
"learning_rate": 1.3218498750428164e-05,
|
| 1094 |
+
"loss": 0.9829,
|
| 1095 |
+
"step": 775
|
| 1096 |
+
},
|
| 1097 |
+
{
|
| 1098 |
+
"epoch": 1.2501002004008015,
|
| 1099 |
+
"grad_norm": 0.30661240220069885,
|
| 1100 |
+
"learning_rate": 1.3136302941818084e-05,
|
| 1101 |
+
"loss": 0.8996,
|
| 1102 |
+
"step": 780
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"epoch": 1.2581162324649298,
|
| 1106 |
+
"grad_norm": 0.31990957260131836,
|
| 1107 |
+
"learning_rate": 1.3053871444566555e-05,
|
| 1108 |
+
"loss": 0.8845,
|
| 1109 |
+
"step": 785
|
| 1110 |
+
},
|
| 1111 |
+
{
|
| 1112 |
+
"epoch": 1.266132264529058,
|
| 1113 |
+
"grad_norm": 0.34186115860939026,
|
| 1114 |
+
"learning_rate": 1.2971210453281675e-05,
|
| 1115 |
+
"loss": 0.9203,
|
| 1116 |
+
"step": 790
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"epoch": 1.2741482965931863,
|
| 1120 |
+
"grad_norm": 0.3045668601989746,
|
| 1121 |
+
"learning_rate": 1.2888326179817686e-05,
|
| 1122 |
+
"loss": 0.827,
|
| 1123 |
+
"step": 795
|
| 1124 |
+
},
|
| 1125 |
+
{
|
| 1126 |
+
"epoch": 1.2821643286573146,
|
| 1127 |
+
"grad_norm": 0.34101662039756775,
|
| 1128 |
+
"learning_rate": 1.2805224852808165e-05,
|
| 1129 |
+
"loss": 0.8177,
|
| 1130 |
+
"step": 800
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"epoch": 1.2901803607214428,
|
| 1134 |
+
"grad_norm": 0.3752049505710602,
|
| 1135 |
+
"learning_rate": 1.2721912717197949e-05,
|
| 1136 |
+
"loss": 0.797,
|
| 1137 |
+
"step": 805
|
| 1138 |
+
},
|
| 1139 |
+
{
|
| 1140 |
+
"epoch": 1.298196392785571,
|
| 1141 |
+
"grad_norm": 0.35838568210601807,
|
| 1142 |
+
"learning_rate": 1.2638396033773836e-05,
|
| 1143 |
+
"loss": 0.8504,
|
| 1144 |
+
"step": 810
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 1.3062124248496993,
|
| 1148 |
+
"grad_norm": 0.4186570346355438,
|
| 1149 |
+
"learning_rate": 1.2554681078694104e-05,
|
| 1150 |
+
"loss": 0.9181,
|
| 1151 |
+
"step": 815
|
| 1152 |
+
},
|
| 1153 |
+
{
|
| 1154 |
+
"epoch": 1.3142284569138276,
|
| 1155 |
+
"grad_norm": 0.3518775701522827,
|
| 1156 |
+
"learning_rate": 1.2470774143016854e-05,
|
| 1157 |
+
"loss": 0.8941,
|
| 1158 |
+
"step": 820
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 1.3222444889779559,
|
| 1162 |
+
"grad_norm": 0.37892553210258484,
|
| 1163 |
+
"learning_rate": 1.238668153222725e-05,
|
| 1164 |
+
"loss": 0.8469,
|
| 1165 |
+
"step": 825
|
| 1166 |
+
},
|
| 1167 |
+
{
|
| 1168 |
+
"epoch": 1.3302605210420841,
|
| 1169 |
+
"grad_norm": 0.3626463711261749,
|
| 1170 |
+
"learning_rate": 1.230240956576367e-05,
|
| 1171 |
+
"loss": 0.9468,
|
| 1172 |
+
"step": 830
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"epoch": 1.3382765531062124,
|
| 1176 |
+
"grad_norm": 0.3972296118736267,
|
| 1177 |
+
"learning_rate": 1.2217964576542829e-05,
|
| 1178 |
+
"loss": 0.9451,
|
| 1179 |
+
"step": 835
|
| 1180 |
+
},
|
| 1181 |
+
{
|
| 1182 |
+
"epoch": 1.3462925851703407,
|
| 1183 |
+
"grad_norm": 0.3794783055782318,
|
| 1184 |
+
"learning_rate": 1.2133352910483838e-05,
|
| 1185 |
+
"loss": 0.8176,
|
| 1186 |
+
"step": 840
|
| 1187 |
+
},
|
| 1188 |
+
{
|
| 1189 |
+
"epoch": 1.354308617234469,
|
| 1190 |
+
"grad_norm": 0.3861818313598633,
|
| 1191 |
+
"learning_rate": 1.204858092603133e-05,
|
| 1192 |
+
"loss": 0.7841,
|
| 1193 |
+
"step": 845
|
| 1194 |
+
},
|
| 1195 |
+
{
|
| 1196 |
+
"epoch": 1.3623246492985972,
|
| 1197 |
+
"grad_norm": 0.30657151341438293,
|
| 1198 |
+
"learning_rate": 1.1963654993677645e-05,
|
| 1199 |
+
"loss": 0.7061,
|
| 1200 |
+
"step": 850
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"epoch": 1.3703406813627255,
|
| 1204 |
+
"grad_norm": 0.338156521320343,
|
| 1205 |
+
"learning_rate": 1.1878581495484074e-05,
|
| 1206 |
+
"loss": 0.7851,
|
| 1207 |
+
"step": 855
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"epoch": 1.3783567134268537,
|
| 1211 |
+
"grad_norm": 0.36862286925315857,
|
| 1212 |
+
"learning_rate": 1.179336682460128e-05,
|
| 1213 |
+
"loss": 1.0114,
|
| 1214 |
+
"step": 860
|
| 1215 |
+
},
|
| 1216 |
+
{
|
| 1217 |
+
"epoch": 1.386372745490982,
|
| 1218 |
+
"grad_norm": 0.3428620398044586,
|
| 1219 |
+
"learning_rate": 1.1708017384788842e-05,
|
| 1220 |
+
"loss": 0.9138,
|
| 1221 |
+
"step": 865
|
| 1222 |
+
},
|
| 1223 |
+
{
|
| 1224 |
+
"epoch": 1.3943887775551103,
|
| 1225 |
+
"grad_norm": 0.3690953254699707,
|
| 1226 |
+
"learning_rate": 1.1622539589934027e-05,
|
| 1227 |
+
"loss": 0.9095,
|
| 1228 |
+
"step": 870
|
| 1229 |
+
},
|
| 1230 |
+
{
|
| 1231 |
+
"epoch": 1.4024048096192385,
|
| 1232 |
+
"grad_norm": 0.36460062861442566,
|
| 1233 |
+
"learning_rate": 1.153693986356981e-05,
|
| 1234 |
+
"loss": 0.8913,
|
| 1235 |
+
"step": 875
|
| 1236 |
+
},
|
| 1237 |
+
{
|
| 1238 |
+
"epoch": 1.4104208416833668,
|
| 1239 |
+
"grad_norm": 0.33620065450668335,
|
| 1240 |
+
"learning_rate": 1.145122463839213e-05,
|
| 1241 |
+
"loss": 0.882,
|
| 1242 |
+
"step": 880
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"epoch": 1.418436873747495,
|
| 1246 |
+
"grad_norm": 0.3633309304714203,
|
| 1247 |
+
"learning_rate": 1.1365400355776504e-05,
|
| 1248 |
+
"loss": 0.8295,
|
| 1249 |
+
"step": 885
|
| 1250 |
+
},
|
| 1251 |
+
{
|
| 1252 |
+
"epoch": 1.4264529058116233,
|
| 1253 |
+
"grad_norm": 0.3613939881324768,
|
| 1254 |
+
"learning_rate": 1.1279473465293953e-05,
|
| 1255 |
+
"loss": 0.8322,
|
| 1256 |
+
"step": 890
|
| 1257 |
+
},
|
| 1258 |
+
{
|
| 1259 |
+
"epoch": 1.4344689378757516,
|
| 1260 |
+
"grad_norm": 0.3712775409221649,
|
| 1261 |
+
"learning_rate": 1.1193450424226333e-05,
|
| 1262 |
+
"loss": 0.9109,
|
| 1263 |
+
"step": 895
|
| 1264 |
+
},
|
| 1265 |
+
{
|
| 1266 |
+
"epoch": 1.4424849699398798,
|
| 1267 |
+
"grad_norm": 0.4387439787387848,
|
| 1268 |
+
"learning_rate": 1.1107337697081079e-05,
|
| 1269 |
+
"loss": 0.7593,
|
| 1270 |
+
"step": 900
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 1.450501002004008,
|
| 1274 |
+
"grad_norm": 0.3387526869773865,
|
| 1275 |
+
"learning_rate": 1.1021141755105408e-05,
|
| 1276 |
+
"loss": 0.834,
|
| 1277 |
+
"step": 905
|
| 1278 |
+
},
|
| 1279 |
+
{
|
| 1280 |
+
"epoch": 1.4585170340681364,
|
| 1281 |
+
"grad_norm": 0.37399402260780334,
|
| 1282 |
+
"learning_rate": 1.09348690758e-05,
|
| 1283 |
+
"loss": 0.9176,
|
| 1284 |
+
"step": 910
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 1.4665330661322646,
|
| 1288 |
+
"grad_norm": 0.4290678799152374,
|
| 1289 |
+
"learning_rate": 1.0848526142432252e-05,
|
| 1290 |
+
"loss": 0.8756,
|
| 1291 |
+
"step": 915
|
| 1292 |
+
},
|
| 1293 |
+
{
|
| 1294 |
+
"epoch": 1.474549098196393,
|
| 1295 |
+
"grad_norm": 0.3614942133426666,
|
| 1296 |
+
"learning_rate": 1.0762119443549035e-05,
|
| 1297 |
+
"loss": 0.8709,
|
| 1298 |
+
"step": 920
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"epoch": 1.4825651302605212,
|
| 1302 |
+
"grad_norm": 0.3980346620082855,
|
| 1303 |
+
"learning_rate": 1.0675655472489117e-05,
|
| 1304 |
+
"loss": 0.9928,
|
| 1305 |
+
"step": 925
|
| 1306 |
+
},
|
| 1307 |
+
{
|
| 1308 |
+
"epoch": 1.4905811623246494,
|
| 1309 |
+
"grad_norm": 4.1907243728637695,
|
| 1310 |
+
"learning_rate": 1.0589140726895179e-05,
|
| 1311 |
+
"loss": 0.7494,
|
| 1312 |
+
"step": 930
|
| 1313 |
+
},
|
| 1314 |
+
{
|
| 1315 |
+
"epoch": 1.4985971943887775,
|
| 1316 |
+
"grad_norm": 0.4177466332912445,
|
| 1317 |
+
"learning_rate": 1.0502581708225555e-05,
|
| 1318 |
+
"loss": 0.8649,
|
| 1319 |
+
"step": 935
|
| 1320 |
+
},
|
| 1321 |
+
{
|
| 1322 |
+
"epoch": 1.506613226452906,
|
| 1323 |
+
"grad_norm": 0.4919191300868988,
|
| 1324 |
+
"learning_rate": 1.041598492126561e-05,
|
| 1325 |
+
"loss": 0.8504,
|
| 1326 |
+
"step": 940
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"epoch": 1.5146292585170342,
|
| 1330 |
+
"grad_norm": 0.33262577652931213,
|
| 1331 |
+
"learning_rate": 1.0329356873638958e-05,
|
| 1332 |
+
"loss": 0.8721,
|
| 1333 |
+
"step": 945
|
| 1334 |
+
},
|
| 1335 |
+
{
|
| 1336 |
+
"epoch": 1.5226452905811623,
|
| 1337 |
+
"grad_norm": 0.3962733745574951,
|
| 1338 |
+
"learning_rate": 1.0242704075318402e-05,
|
| 1339 |
+
"loss": 0.9185,
|
| 1340 |
+
"step": 950
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"epoch": 1.5306613226452905,
|
| 1344 |
+
"grad_norm": 0.4132327735424042,
|
| 1345 |
+
"learning_rate": 1.0156033038136728e-05,
|
| 1346 |
+
"loss": 0.8198,
|
| 1347 |
+
"step": 955
|
| 1348 |
+
},
|
| 1349 |
+
{
|
| 1350 |
+
"epoch": 1.5386773547094188,
|
| 1351 |
+
"grad_norm": 0.36191555857658386,
|
| 1352 |
+
"learning_rate": 1.0069350275297338e-05,
|
| 1353 |
+
"loss": 0.8699,
|
| 1354 |
+
"step": 960
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"epoch": 1.546693386773547,
|
| 1358 |
+
"grad_norm": 0.434069961309433,
|
| 1359 |
+
"learning_rate": 9.982662300884813e-06,
|
| 1360 |
+
"loss": 0.8678,
|
| 1361 |
+
"step": 965
|
| 1362 |
+
},
|
| 1363 |
+
{
|
| 1364 |
+
"epoch": 1.5547094188376753,
|
| 1365 |
+
"grad_norm": 0.4045700430870056,
|
| 1366 |
+
"learning_rate": 9.89597562937536e-06,
|
| 1367 |
+
"loss": 0.8307,
|
| 1368 |
+
"step": 970
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"epoch": 1.5627254509018036,
|
| 1372 |
+
"grad_norm": 0.31574735045433044,
|
| 1373 |
+
"learning_rate": 9.809296775147287e-06,
|
| 1374 |
+
"loss": 0.8058,
|
| 1375 |
+
"step": 975
|
| 1376 |
+
},
|
| 1377 |
+
{
|
| 1378 |
+
"epoch": 1.5707414829659319,
|
| 1379 |
+
"grad_norm": 0.38601160049438477,
|
| 1380 |
+
"learning_rate": 9.722632251991445e-06,
|
| 1381 |
+
"loss": 0.8026,
|
| 1382 |
+
"step": 980
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"epoch": 1.5787575150300601,
|
| 1386 |
+
"grad_norm": 0.3911404013633728,
|
| 1387 |
+
"learning_rate": 9.635988572621716e-06,
|
| 1388 |
+
"loss": 0.9165,
|
| 1389 |
+
"step": 985
|
| 1390 |
+
},
|
| 1391 |
+
{
|
| 1392 |
+
"epoch": 1.5867735470941884,
|
| 1393 |
+
"grad_norm": 0.4252789318561554,
|
| 1394 |
+
"learning_rate": 9.54937224818561e-06,
|
| 1395 |
+
"loss": 0.9078,
|
| 1396 |
+
"step": 990
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 1.5947895791583167,
|
| 1400 |
+
"grad_norm": 0.32735535502433777,
|
| 1401 |
+
"learning_rate": 9.462789787774944e-06,
|
| 1402 |
+
"loss": 0.8508,
|
| 1403 |
+
"step": 995
|
| 1404 |
+
},
|
| 1405 |
+
{
|
| 1406 |
+
"epoch": 1.602805611222445,
|
| 1407 |
+
"grad_norm": 0.3567563593387604,
|
| 1408 |
+
"learning_rate": 9.376247697936719e-06,
|
| 1409 |
+
"loss": 0.8884,
|
| 1410 |
+
"step": 1000
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"epoch": 1.6108216432865732,
|
| 1414 |
+
"grad_norm": 0.3730451166629791,
|
| 1415 |
+
"learning_rate": 9.289752482184128e-06,
|
| 1416 |
+
"loss": 0.8712,
|
| 1417 |
+
"step": 1005
|
| 1418 |
+
},
|
| 1419 |
+
{
|
| 1420 |
+
"epoch": 1.6188376753507014,
|
| 1421 |
+
"grad_norm": 0.34543997049331665,
|
| 1422 |
+
"learning_rate": 9.20331064050785e-06,
|
| 1423 |
+
"loss": 0.8948,
|
| 1424 |
+
"step": 1010
|
| 1425 |
+
},
|
| 1426 |
+
{
|
| 1427 |
+
"epoch": 1.6268537074148297,
|
| 1428 |
+
"grad_norm": 0.3326113522052765,
|
| 1429 |
+
"learning_rate": 9.116928668887587e-06,
|
| 1430 |
+
"loss": 0.8879,
|
| 1431 |
+
"step": 1015
|
| 1432 |
+
},
|
| 1433 |
+
{
|
| 1434 |
+
"epoch": 1.6348697394789578,
|
| 1435 |
+
"grad_norm": 0.33069467544555664,
|
| 1436 |
+
"learning_rate": 9.03061305880388e-06,
|
| 1437 |
+
"loss": 0.7994,
|
| 1438 |
+
"step": 1020
|
| 1439 |
+
},
|
| 1440 |
+
{
|
| 1441 |
+
"epoch": 1.642885771543086,
|
| 1442 |
+
"grad_norm": 0.34401947259902954,
|
| 1443 |
+
"learning_rate": 8.94437029675031e-06,
|
| 1444 |
+
"loss": 0.9361,
|
| 1445 |
+
"step": 1025
|
| 1446 |
+
},
|
| 1447 |
+
{
|
| 1448 |
+
"epoch": 1.6509018036072143,
|
| 1449 |
+
"grad_norm": 0.3548894226551056,
|
| 1450 |
+
"learning_rate": 8.858206863746018e-06,
|
| 1451 |
+
"loss": 0.8401,
|
| 1452 |
+
"step": 1030
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 1.6589178356713425,
|
| 1456 |
+
"grad_norm": 0.3403220474720001,
|
| 1457 |
+
"learning_rate": 8.772129234848692e-06,
|
| 1458 |
+
"loss": 0.7461,
|
| 1459 |
+
"step": 1035
|
| 1460 |
+
},
|
| 1461 |
+
{
|
| 1462 |
+
"epoch": 1.6669338677354708,
|
| 1463 |
+
"grad_norm": 0.4974400997161865,
|
| 1464 |
+
"learning_rate": 8.686143878667965e-06,
|
| 1465 |
+
"loss": 0.8533,
|
| 1466 |
+
"step": 1040
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"epoch": 1.674949899799599,
|
| 1470 |
+
"grad_norm": 0.4107082188129425,
|
| 1471 |
+
"learning_rate": 8.600257256879306e-06,
|
| 1472 |
+
"loss": 0.8885,
|
| 1473 |
+
"step": 1045
|
| 1474 |
+
},
|
| 1475 |
+
{
|
| 1476 |
+
"epoch": 1.6829659318637273,
|
| 1477 |
+
"grad_norm": 0.3612527847290039,
|
| 1478 |
+
"learning_rate": 8.514475823738431e-06,
|
| 1479 |
+
"loss": 0.835,
|
| 1480 |
+
"step": 1050
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"epoch": 1.6909819639278556,
|
| 1484 |
+
"grad_norm": 0.38753876090049744,
|
| 1485 |
+
"learning_rate": 8.428806025596295e-06,
|
| 1486 |
+
"loss": 0.9262,
|
| 1487 |
+
"step": 1055
|
| 1488 |
+
},
|
| 1489 |
+
{
|
| 1490 |
+
"epoch": 1.6989979959919839,
|
| 1491 |
+
"grad_norm": 1.5978801250457764,
|
| 1492 |
+
"learning_rate": 8.343254300414629e-06,
|
| 1493 |
+
"loss": 0.8689,
|
| 1494 |
+
"step": 1060
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"epoch": 1.7070140280561121,
|
| 1498 |
+
"grad_norm": 0.44398370385169983,
|
| 1499 |
+
"learning_rate": 8.257827077282164e-06,
|
| 1500 |
+
"loss": 0.9272,
|
| 1501 |
+
"step": 1065
|
| 1502 |
+
},
|
| 1503 |
+
{
|
| 1504 |
+
"epoch": 1.7150300601202404,
|
| 1505 |
+
"grad_norm": 0.3783067464828491,
|
| 1506 |
+
"learning_rate": 8.172530775931476e-06,
|
| 1507 |
+
"loss": 0.8476,
|
| 1508 |
+
"step": 1070
|
| 1509 |
+
},
|
| 1510 |
+
{
|
| 1511 |
+
"epoch": 1.7230460921843687,
|
| 1512 |
+
"grad_norm": 0.33193129301071167,
|
| 1513 |
+
"learning_rate": 8.087371806256548e-06,
|
| 1514 |
+
"loss": 0.8736,
|
| 1515 |
+
"step": 1075
|
| 1516 |
+
},
|
| 1517 |
+
{
|
| 1518 |
+
"epoch": 1.731062124248497,
|
| 1519 |
+
"grad_norm": 0.4492955207824707,
|
| 1520 |
+
"learning_rate": 8.002356567831104e-06,
|
| 1521 |
+
"loss": 0.8475,
|
| 1522 |
+
"step": 1080
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 1.7390781563126252,
|
| 1526 |
+
"grad_norm": 0.3451695740222931,
|
| 1527 |
+
"learning_rate": 7.917491449427664e-06,
|
| 1528 |
+
"loss": 0.8555,
|
| 1529 |
+
"step": 1085
|
| 1530 |
+
},
|
| 1531 |
+
{
|
| 1532 |
+
"epoch": 1.7470941883767535,
|
| 1533 |
+
"grad_norm": 0.34094515442848206,
|
| 1534 |
+
"learning_rate": 7.832782828537437e-06,
|
| 1535 |
+
"loss": 0.7514,
|
| 1536 |
+
"step": 1090
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"epoch": 1.7551102204408817,
|
| 1540 |
+
"grad_norm": 0.4276813864707947,
|
| 1541 |
+
"learning_rate": 7.748237070891085e-06,
|
| 1542 |
+
"loss": 0.8078,
|
| 1543 |
+
"step": 1095
|
| 1544 |
+
},
|
| 1545 |
+
{
|
| 1546 |
+
"epoch": 1.76312625250501,
|
| 1547 |
+
"grad_norm": 0.31638622283935547,
|
| 1548 |
+
"learning_rate": 7.663860529980318e-06,
|
| 1549 |
+
"loss": 0.8424,
|
| 1550 |
+
"step": 1100
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"epoch": 1.7711422845691382,
|
| 1554 |
+
"grad_norm": 0.3871704339981079,
|
| 1555 |
+
"learning_rate": 7.5796595465804616e-06,
|
| 1556 |
+
"loss": 0.7848,
|
| 1557 |
+
"step": 1105
|
| 1558 |
+
},
|
| 1559 |
+
{
|
| 1560 |
+
"epoch": 1.7791583166332665,
|
| 1561 |
+
"grad_norm": 0.4998142123222351,
|
| 1562 |
+
"learning_rate": 7.495640448273947e-06,
|
| 1563 |
+
"loss": 0.8611,
|
| 1564 |
+
"step": 1110
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"epoch": 1.7871743486973948,
|
| 1568 |
+
"grad_norm": 0.35793057084083557,
|
| 1569 |
+
"learning_rate": 7.411809548974792e-06,
|
| 1570 |
+
"loss": 0.9746,
|
| 1571 |
+
"step": 1115
|
| 1572 |
+
},
|
| 1573 |
+
{
|
| 1574 |
+
"epoch": 1.795190380761523,
|
| 1575 |
+
"grad_norm": 0.4235399067401886,
|
| 1576 |
+
"learning_rate": 7.328173148454151e-06,
|
| 1577 |
+
"loss": 0.9494,
|
| 1578 |
+
"step": 1120
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"epoch": 1.8032064128256513,
|
| 1582 |
+
"grad_norm": 0.35276517271995544,
|
| 1583 |
+
"learning_rate": 7.2447375318668545e-06,
|
| 1584 |
+
"loss": 0.7732,
|
| 1585 |
+
"step": 1125
|
| 1586 |
+
},
|
| 1587 |
+
{
|
| 1588 |
+
"epoch": 1.8112224448897796,
|
| 1589 |
+
"grad_norm": 0.2976204752922058,
|
| 1590 |
+
"learning_rate": 7.1615089692791225e-06,
|
| 1591 |
+
"loss": 0.8344,
|
| 1592 |
+
"step": 1130
|
| 1593 |
+
},
|
| 1594 |
+
{
|
| 1595 |
+
"epoch": 1.8192384769539078,
|
| 1596 |
+
"grad_norm": 0.3903176784515381,
|
| 1597 |
+
"learning_rate": 7.0784937151973666e-06,
|
| 1598 |
+
"loss": 0.8048,
|
| 1599 |
+
"step": 1135
|
| 1600 |
+
},
|
| 1601 |
+
{
|
| 1602 |
+
"epoch": 1.827254509018036,
|
| 1603 |
+
"grad_norm": 0.37830016016960144,
|
| 1604 |
+
"learning_rate": 6.99569800809816e-06,
|
| 1605 |
+
"loss": 0.8156,
|
| 1606 |
+
"step": 1140
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"epoch": 1.8352705410821644,
|
| 1610 |
+
"grad_norm": 0.35692963004112244,
|
| 1611 |
+
"learning_rate": 6.9131280699594545e-06,
|
| 1612 |
+
"loss": 0.8472,
|
| 1613 |
+
"step": 1145
|
| 1614 |
+
},
|
| 1615 |
+
{
|
| 1616 |
+
"epoch": 1.8432865731462926,
|
| 1617 |
+
"grad_norm": 0.35208597779273987,
|
| 1618 |
+
"learning_rate": 6.8307901057929735e-06,
|
| 1619 |
+
"loss": 0.792,
|
| 1620 |
+
"step": 1150
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"epoch": 1.851302605210421,
|
| 1624 |
+
"grad_norm": 0.38317593932151794,
|
| 1625 |
+
"learning_rate": 6.748690303177941e-06,
|
| 1626 |
+
"loss": 0.8337,
|
| 1627 |
+
"step": 1155
|
| 1628 |
+
},
|
| 1629 |
+
{
|
| 1630 |
+
"epoch": 1.8593186372745492,
|
| 1631 |
+
"grad_norm": 0.416199654340744,
|
| 1632 |
+
"learning_rate": 6.66683483179608e-06,
|
| 1633 |
+
"loss": 0.9125,
|
| 1634 |
+
"step": 1160
|
| 1635 |
+
},
|
| 1636 |
+
{
|
| 1637 |
+
"epoch": 1.8673346693386774,
|
| 1638 |
+
"grad_norm": 0.4500935673713684,
|
| 1639 |
+
"learning_rate": 6.585229842967977e-06,
|
| 1640 |
+
"loss": 0.8482,
|
| 1641 |
+
"step": 1165
|
| 1642 |
+
},
|
| 1643 |
+
{
|
| 1644 |
+
"epoch": 1.8753507014028057,
|
| 1645 |
+
"grad_norm": 0.4686901271343231,
|
| 1646 |
+
"learning_rate": 6.5038814691908095e-06,
|
| 1647 |
+
"loss": 0.8502,
|
| 1648 |
+
"step": 1170
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 1.883366733466934,
|
| 1652 |
+
"grad_norm": 0.41259345412254333,
|
| 1653 |
+
"learning_rate": 6.422795823677515e-06,
|
| 1654 |
+
"loss": 0.8229,
|
| 1655 |
+
"step": 1175
|
| 1656 |
+
},
|
| 1657 |
+
{
|
| 1658 |
+
"epoch": 1.8913827655310622,
|
| 1659 |
+
"grad_norm": 0.3402479887008667,
|
| 1660 |
+
"learning_rate": 6.3419789998973655e-06,
|
| 1661 |
+
"loss": 0.787,
|
| 1662 |
+
"step": 1180
|
| 1663 |
+
},
|
| 1664 |
+
{
|
| 1665 |
+
"epoch": 1.8993987975951905,
|
| 1666 |
+
"grad_norm": 0.34355294704437256,
|
| 1667 |
+
"learning_rate": 6.261437071118086e-06,
|
| 1668 |
+
"loss": 0.7658,
|
| 1669 |
+
"step": 1185
|
| 1670 |
+
},
|
| 1671 |
+
{
|
| 1672 |
+
"epoch": 1.9074148296593187,
|
| 1673 |
+
"grad_norm": 0.3370957374572754,
|
| 1674 |
+
"learning_rate": 6.1811760899494276e-06,
|
| 1675 |
+
"loss": 0.8361,
|
| 1676 |
+
"step": 1190
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"epoch": 1.915430861723447,
|
| 1680 |
+
"grad_norm": 0.4238271713256836,
|
| 1681 |
+
"learning_rate": 6.101202087888329e-06,
|
| 1682 |
+
"loss": 0.8249,
|
| 1683 |
+
"step": 1195
|
| 1684 |
+
},
|
| 1685 |
+
{
|
| 1686 |
+
"epoch": 1.9234468937875753,
|
| 1687 |
+
"grad_norm": 0.41702085733413696,
|
| 1688 |
+
"learning_rate": 6.0215210748656785e-06,
|
| 1689 |
+
"loss": 0.8571,
|
| 1690 |
+
"step": 1200
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"epoch": 1.9314629258517035,
|
| 1694 |
+
"grad_norm": 0.3196205794811249,
|
| 1695 |
+
"learning_rate": 5.942139038794645e-06,
|
| 1696 |
+
"loss": 0.803,
|
| 1697 |
+
"step": 1205
|
| 1698 |
+
},
|
| 1699 |
+
{
|
| 1700 |
+
"epoch": 1.9394789579158318,
|
| 1701 |
+
"grad_norm": 0.3203709125518799,
|
| 1702 |
+
"learning_rate": 5.863061945120719e-06,
|
| 1703 |
+
"loss": 0.8299,
|
| 1704 |
+
"step": 1210
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"epoch": 1.94749498997996,
|
| 1708 |
+
"grad_norm": 0.4405556917190552,
|
| 1709 |
+
"learning_rate": 5.784295736373413e-06,
|
| 1710 |
+
"loss": 0.7888,
|
| 1711 |
+
"step": 1215
|
| 1712 |
+
},
|
| 1713 |
+
{
|
| 1714 |
+
"epoch": 1.9555110220440883,
|
| 1715 |
+
"grad_norm": 0.42714062333106995,
|
| 1716 |
+
"learning_rate": 5.705846331719676e-06,
|
| 1717 |
+
"loss": 0.9376,
|
| 1718 |
+
"step": 1220
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"epoch": 1.9635270541082166,
|
| 1722 |
+
"grad_norm": 0.4327429234981537,
|
| 1723 |
+
"learning_rate": 5.627719626519096e-06,
|
| 1724 |
+
"loss": 0.7978,
|
| 1725 |
+
"step": 1225
|
| 1726 |
+
},
|
| 1727 |
+
{
|
| 1728 |
+
"epoch": 1.9715430861723446,
|
| 1729 |
+
"grad_norm": 0.37963250279426575,
|
| 1730 |
+
"learning_rate": 5.549921491880856e-06,
|
| 1731 |
+
"loss": 0.8513,
|
| 1732 |
+
"step": 1230
|
| 1733 |
+
},
|
| 1734 |
+
{
|
| 1735 |
+
"epoch": 1.979559118236473,
|
| 1736 |
+
"grad_norm": 0.4149099588394165,
|
| 1737 |
+
"learning_rate": 5.472457774222535e-06,
|
| 1738 |
+
"loss": 0.8542,
|
| 1739 |
+
"step": 1235
|
| 1740 |
+
},
|
| 1741 |
+
{
|
| 1742 |
+
"epoch": 1.9875751503006012,
|
| 1743 |
+
"grad_norm": 0.34531357884407043,
|
| 1744 |
+
"learning_rate": 5.395334294830766e-06,
|
| 1745 |
+
"loss": 0.858,
|
| 1746 |
+
"step": 1240
|
| 1747 |
+
},
|
| 1748 |
+
{
|
| 1749 |
+
"epoch": 1.9955911823647294,
|
| 1750 |
+
"grad_norm": 0.3555367887020111,
|
| 1751 |
+
"learning_rate": 5.318556849423757e-06,
|
| 1752 |
+
"loss": 0.7818,
|
| 1753 |
+
"step": 1245
|
| 1754 |
+
},
|
| 1755 |
+
{
|
| 1756 |
+
"epoch": 2.0032064128256515,
|
| 1757 |
+
"grad_norm": 0.47876620292663574,
|
| 1758 |
+
"learning_rate": 5.242131207715768e-06,
|
| 1759 |
+
"loss": 0.9044,
|
| 1760 |
+
"step": 1250
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"epoch": 2.0112224448897797,
|
| 1764 |
+
"grad_norm": 0.3445394039154053,
|
| 1765 |
+
"learning_rate": 5.166063112983522e-06,
|
| 1766 |
+
"loss": 0.8851,
|
| 1767 |
+
"step": 1255
|
| 1768 |
+
},
|
| 1769 |
+
{
|
| 1770 |
+
"epoch": 2.019238476953908,
|
| 1771 |
+
"grad_norm": 0.34241387248039246,
|
| 1772 |
+
"learning_rate": 5.090358281634594e-06,
|
| 1773 |
+
"loss": 0.7266,
|
| 1774 |
+
"step": 1260
|
| 1775 |
+
},
|
| 1776 |
+
{
|
| 1777 |
+
"epoch": 2.0272545090180363,
|
| 1778 |
+
"grad_norm": 0.3980085253715515,
|
| 1779 |
+
"learning_rate": 5.015022402777838e-06,
|
| 1780 |
+
"loss": 0.8228,
|
| 1781 |
+
"step": 1265
|
| 1782 |
+
},
|
| 1783 |
+
{
|
| 1784 |
+
"epoch": 2.0352705410821645,
|
| 1785 |
+
"grad_norm": 0.3420424163341522,
|
| 1786 |
+
"learning_rate": 4.940061137795876e-06,
|
| 1787 |
+
"loss": 0.7685,
|
| 1788 |
+
"step": 1270
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"epoch": 2.0432865731462924,
|
| 1792 |
+
"grad_norm": 0.41949328780174255,
|
| 1793 |
+
"learning_rate": 4.8654801199196176e-06,
|
| 1794 |
+
"loss": 0.9227,
|
| 1795 |
+
"step": 1275
|
| 1796 |
+
},
|
| 1797 |
+
{
|
| 1798 |
+
"epoch": 2.0513026052104206,
|
| 1799 |
+
"grad_norm": 0.4226691722869873,
|
| 1800 |
+
"learning_rate": 4.791284953804969e-06,
|
| 1801 |
+
"loss": 0.7992,
|
| 1802 |
+
"step": 1280
|
| 1803 |
+
},
|
| 1804 |
+
{
|
| 1805 |
+
"epoch": 2.059318637274549,
|
| 1806 |
+
"grad_norm": 0.39590245485305786,
|
| 1807 |
+
"learning_rate": 4.717481215111622e-06,
|
| 1808 |
+
"loss": 0.8595,
|
| 1809 |
+
"step": 1285
|
| 1810 |
+
},
|
| 1811 |
+
{
|
| 1812 |
+
"epoch": 2.067334669338677,
|
| 1813 |
+
"grad_norm": 0.4448534846305847,
|
| 1814 |
+
"learning_rate": 4.644074450084061e-06,
|
| 1815 |
+
"loss": 0.9019,
|
| 1816 |
+
"step": 1290
|
| 1817 |
+
},
|
| 1818 |
+
{
|
| 1819 |
+
"epoch": 2.0753507014028054,
|
| 1820 |
+
"grad_norm": 0.3919767737388611,
|
| 1821 |
+
"learning_rate": 4.571070175134781e-06,
|
| 1822 |
+
"loss": 0.8359,
|
| 1823 |
+
"step": 1295
|
| 1824 |
+
},
|
| 1825 |
+
{
|
| 1826 |
+
"epoch": 2.0833667334669337,
|
| 1827 |
+
"grad_norm": 0.4835250675678253,
|
| 1828 |
+
"learning_rate": 4.498473876429727e-06,
|
| 1829 |
+
"loss": 0.8491,
|
| 1830 |
+
"step": 1300
|
| 1831 |
+
},
|
| 1832 |
+
{
|
| 1833 |
+
"epoch": 2.091382765531062,
|
| 1834 |
+
"grad_norm": 0.45917949080467224,
|
| 1835 |
+
"learning_rate": 4.426291009476007e-06,
|
| 1836 |
+
"loss": 0.7978,
|
| 1837 |
+
"step": 1305
|
| 1838 |
+
},
|
| 1839 |
+
{
|
| 1840 |
+
"epoch": 2.09939879759519,
|
| 1841 |
+
"grad_norm": 0.30657947063446045,
|
| 1842 |
+
"learning_rate": 4.354526998711945e-06,
|
| 1843 |
+
"loss": 0.8031,
|
| 1844 |
+
"step": 1310
|
| 1845 |
+
},
|
| 1846 |
+
{
|
| 1847 |
+
"epoch": 2.1074148296593185,
|
| 1848 |
+
"grad_norm": 0.4451172649860382,
|
| 1849 |
+
"learning_rate": 4.283187237099412e-06,
|
| 1850 |
+
"loss": 0.8898,
|
| 1851 |
+
"step": 1315
|
| 1852 |
+
},
|
| 1853 |
+
{
|
| 1854 |
+
"epoch": 2.1154308617234467,
|
| 1855 |
+
"grad_norm": 0.4376426637172699,
|
| 1856 |
+
"learning_rate": 4.2122770857185805e-06,
|
| 1857 |
+
"loss": 0.8588,
|
| 1858 |
+
"step": 1320
|
| 1859 |
+
},
|
| 1860 |
+
{
|
| 1861 |
+
"epoch": 2.123446893787575,
|
| 1862 |
+
"grad_norm": 0.3958570957183838,
|
| 1863 |
+
"learning_rate": 4.141801873365023e-06,
|
| 1864 |
+
"loss": 0.7816,
|
| 1865 |
+
"step": 1325
|
| 1866 |
+
},
|
| 1867 |
+
{
|
| 1868 |
+
"epoch": 2.1314629258517033,
|
| 1869 |
+
"grad_norm": 0.42820340394973755,
|
| 1870 |
+
"learning_rate": 4.0717668961492725e-06,
|
| 1871 |
+
"loss": 0.845,
|
| 1872 |
+
"step": 1330
|
| 1873 |
+
},
|
| 1874 |
+
{
|
| 1875 |
+
"epoch": 2.1394789579158315,
|
| 1876 |
+
"grad_norm": 0.4091578423976898,
|
| 1877 |
+
"learning_rate": 4.0021774170988395e-06,
|
| 1878 |
+
"loss": 0.8996,
|
| 1879 |
+
"step": 1335
|
| 1880 |
+
},
|
| 1881 |
+
{
|
| 1882 |
+
"epoch": 2.14749498997996,
|
| 1883 |
+
"grad_norm": 0.44767269492149353,
|
| 1884 |
+
"learning_rate": 3.9330386657626696e-06,
|
| 1885 |
+
"loss": 0.7196,
|
| 1886 |
+
"step": 1340
|
| 1887 |
+
},
|
| 1888 |
+
{
|
| 1889 |
+
"epoch": 2.155511022044088,
|
| 1890 |
+
"grad_norm": 0.47936999797821045,
|
| 1891 |
+
"learning_rate": 3.864355837818188e-06,
|
| 1892 |
+
"loss": 0.7673,
|
| 1893 |
+
"step": 1345
|
| 1894 |
+
},
|
| 1895 |
+
{
|
| 1896 |
+
"epoch": 2.1635270541082163,
|
| 1897 |
+
"grad_norm": 0.3325825035572052,
|
| 1898 |
+
"learning_rate": 3.79613409468083e-06,
|
| 1899 |
+
"loss": 0.7788,
|
| 1900 |
+
"step": 1350
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"epoch": 2.1715430861723446,
|
| 1904 |
+
"grad_norm": 0.36496493220329285,
|
| 1905 |
+
"learning_rate": 3.7283785631161663e-06,
|
| 1906 |
+
"loss": 0.8764,
|
| 1907 |
+
"step": 1355
|
| 1908 |
+
},
|
| 1909 |
+
{
|
| 1910 |
+
"epoch": 2.179559118236473,
|
| 1911 |
+
"grad_norm": 0.37848904728889465,
|
| 1912 |
+
"learning_rate": 3.6610943348546524e-06,
|
| 1913 |
+
"loss": 0.8016,
|
| 1914 |
+
"step": 1360
|
| 1915 |
+
},
|
| 1916 |
+
{
|
| 1917 |
+
"epoch": 2.187575150300601,
|
| 1918 |
+
"grad_norm": 0.3615955412387848,
|
| 1919 |
+
"learning_rate": 3.5942864662089684e-06,
|
| 1920 |
+
"loss": 0.9018,
|
| 1921 |
+
"step": 1365
|
| 1922 |
+
},
|
| 1923 |
+
{
|
| 1924 |
+
"epoch": 2.1955911823647294,
|
| 1925 |
+
"grad_norm": 0.45091915130615234,
|
| 1926 |
+
"learning_rate": 3.527959977694061e-06,
|
| 1927 |
+
"loss": 0.8454,
|
| 1928 |
+
"step": 1370
|
| 1929 |
+
},
|
| 1930 |
+
{
|
| 1931 |
+
"epoch": 2.2036072144288577,
|
| 1932 |
+
"grad_norm": 0.4201883375644684,
|
| 1933 |
+
"learning_rate": 3.462119853649859e-06,
|
| 1934 |
+
"loss": 0.9691,
|
| 1935 |
+
"step": 1375
|
| 1936 |
+
},
|
| 1937 |
+
{
|
| 1938 |
+
"epoch": 2.211623246492986,
|
| 1939 |
+
"grad_norm": 0.3573856055736542,
|
| 1940 |
+
"learning_rate": 3.3967710418666986e-06,
|
| 1941 |
+
"loss": 0.8465,
|
| 1942 |
+
"step": 1380
|
| 1943 |
+
},
|
| 1944 |
+
{
|
| 1945 |
+
"epoch": 2.219639278557114,
|
| 1946 |
+
"grad_norm": 0.447793185710907,
|
| 1947 |
+
"learning_rate": 3.331918453213505e-06,
|
| 1948 |
+
"loss": 0.9212,
|
| 1949 |
+
"step": 1385
|
| 1950 |
+
},
|
| 1951 |
+
{
|
| 1952 |
+
"epoch": 2.2276553106212424,
|
| 1953 |
+
"grad_norm": 0.4908188581466675,
|
| 1954 |
+
"learning_rate": 3.2675669612687565e-06,
|
| 1955 |
+
"loss": 0.8528,
|
| 1956 |
+
"step": 1390
|
| 1957 |
+
},
|
| 1958 |
+
{
|
| 1959 |
+
"epoch": 2.2356713426853707,
|
| 1960 |
+
"grad_norm": 0.44964873790740967,
|
| 1961 |
+
"learning_rate": 3.203721401954242e-06,
|
| 1962 |
+
"loss": 0.9147,
|
| 1963 |
+
"step": 1395
|
| 1964 |
+
},
|
| 1965 |
+
{
|
| 1966 |
+
"epoch": 2.243687374749499,
|
| 1967 |
+
"grad_norm": 0.4697072207927704,
|
| 1968 |
+
"learning_rate": 3.1403865731716266e-06,
|
| 1969 |
+
"loss": 0.8588,
|
| 1970 |
+
"step": 1400
|
| 1971 |
+
},
|
| 1972 |
+
{
|
| 1973 |
+
"epoch": 2.2517034068136272,
|
| 1974 |
+
"grad_norm": 0.36253607273101807,
|
| 1975 |
+
"learning_rate": 3.0775672344419305e-06,
|
| 1976 |
+
"loss": 0.8024,
|
| 1977 |
+
"step": 1405
|
| 1978 |
+
},
|
| 1979 |
+
{
|
| 1980 |
+
"epoch": 2.2597194388777555,
|
| 1981 |
+
"grad_norm": 0.5492545366287231,
|
| 1982 |
+
"learning_rate": 3.0152681065478252e-06,
|
| 1983 |
+
"loss": 0.8588,
|
| 1984 |
+
"step": 1410
|
| 1985 |
+
},
|
| 1986 |
+
{
|
| 1987 |
+
"epoch": 2.2677354709418838,
|
| 1988 |
+
"grad_norm": 0.35868972539901733,
|
| 1989 |
+
"learning_rate": 2.953493871178902e-06,
|
| 1990 |
+
"loss": 0.8138,
|
| 1991 |
+
"step": 1415
|
| 1992 |
+
},
|
| 1993 |
+
{
|
| 1994 |
+
"epoch": 2.275751503006012,
|
| 1995 |
+
"grad_norm": 0.38911786675453186,
|
| 1996 |
+
"learning_rate": 2.892249170579826e-06,
|
| 1997 |
+
"loss": 0.7942,
|
| 1998 |
+
"step": 1420
|
| 1999 |
+
},
|
| 2000 |
+
{
|
| 2001 |
+
"epoch": 2.2837675350701403,
|
| 2002 |
+
"grad_norm": 0.5678386092185974,
|
| 2003 |
+
"learning_rate": 2.8315386072014883e-06,
|
| 2004 |
+
"loss": 0.7764,
|
| 2005 |
+
"step": 1425
|
| 2006 |
+
},
|
| 2007 |
+
{
|
| 2008 |
+
"epoch": 2.2917835671342686,
|
| 2009 |
+
"grad_norm": 0.36749324202537537,
|
| 2010 |
+
"learning_rate": 2.7713667433551495e-06,
|
| 2011 |
+
"loss": 0.8247,
|
| 2012 |
+
"step": 1430
|
| 2013 |
+
},
|
| 2014 |
+
{
|
| 2015 |
+
"epoch": 2.299799599198397,
|
| 2016 |
+
"grad_norm": 0.4348406493663788,
|
| 2017 |
+
"learning_rate": 2.711738100869563e-06,
|
| 2018 |
+
"loss": 0.9319,
|
| 2019 |
+
"step": 1435
|
| 2020 |
+
},
|
| 2021 |
+
{
|
| 2022 |
+
"epoch": 2.307815631262525,
|
| 2023 |
+
"grad_norm": 0.4162181615829468,
|
| 2024 |
+
"learning_rate": 2.652657160751193e-06,
|
| 2025 |
+
"loss": 0.9147,
|
| 2026 |
+
"step": 1440
|
| 2027 |
+
},
|
| 2028 |
+
{
|
| 2029 |
+
"epoch": 2.3158316633266534,
|
| 2030 |
+
"grad_norm": 0.36371198296546936,
|
| 2031 |
+
"learning_rate": 2.59412836284745e-06,
|
| 2032 |
+
"loss": 0.8078,
|
| 2033 |
+
"step": 1445
|
| 2034 |
+
},
|
| 2035 |
+
{
|
| 2036 |
+
"epoch": 2.3238476953907816,
|
| 2037 |
+
"grad_norm": 0.39601725339889526,
|
| 2038 |
+
"learning_rate": 2.5361561055130625e-06,
|
| 2039 |
+
"loss": 0.8824,
|
| 2040 |
+
"step": 1450
|
| 2041 |
+
},
|
| 2042 |
+
{
|
| 2043 |
+
"epoch": 2.33186372745491,
|
| 2044 |
+
"grad_norm": 0.34811967611312866,
|
| 2045 |
+
"learning_rate": 2.4787447452795366e-06,
|
| 2046 |
+
"loss": 0.8163,
|
| 2047 |
+
"step": 1455
|
| 2048 |
+
},
|
| 2049 |
+
{
|
| 2050 |
+
"epoch": 2.339879759519038,
|
| 2051 |
+
"grad_norm": 0.405057430267334,
|
| 2052 |
+
"learning_rate": 2.4218985965277676e-06,
|
| 2053 |
+
"loss": 0.8474,
|
| 2054 |
+
"step": 1460
|
| 2055 |
+
},
|
| 2056 |
+
{
|
| 2057 |
+
"epoch": 2.3478957915831664,
|
| 2058 |
+
"grad_norm": 0.3901906907558441,
|
| 2059 |
+
"learning_rate": 2.3656219311638194e-06,
|
| 2060 |
+
"loss": 0.771,
|
| 2061 |
+
"step": 1465
|
| 2062 |
+
},
|
| 2063 |
+
{
|
| 2064 |
+
"epoch": 2.3559118236472947,
|
| 2065 |
+
"grad_norm": 0.3617786467075348,
|
| 2066 |
+
"learning_rate": 2.3099189782979126e-06,
|
| 2067 |
+
"loss": 0.8022,
|
| 2068 |
+
"step": 1470
|
| 2069 |
+
},
|
| 2070 |
+
{
|
| 2071 |
+
"epoch": 2.363927855711423,
|
| 2072 |
+
"grad_norm": 0.3886442184448242,
|
| 2073 |
+
"learning_rate": 2.2547939239265893e-06,
|
| 2074 |
+
"loss": 0.8938,
|
| 2075 |
+
"step": 1475
|
| 2076 |
+
},
|
| 2077 |
+
{
|
| 2078 |
+
"epoch": 2.371943887775551,
|
| 2079 |
+
"grad_norm": 0.4365661144256592,
|
| 2080 |
+
"learning_rate": 2.2002509106181625e-06,
|
| 2081 |
+
"loss": 0.8959,
|
| 2082 |
+
"step": 1480
|
| 2083 |
+
},
|
| 2084 |
+
{
|
| 2085 |
+
"epoch": 2.3799599198396795,
|
| 2086 |
+
"grad_norm": 0.3170413374900818,
|
| 2087 |
+
"learning_rate": 2.146294037201394e-06,
|
| 2088 |
+
"loss": 0.7777,
|
| 2089 |
+
"step": 1485
|
| 2090 |
+
},
|
| 2091 |
+
{
|
| 2092 |
+
"epoch": 2.3879759519038077,
|
| 2093 |
+
"grad_norm": 0.43696296215057373,
|
| 2094 |
+
"learning_rate": 2.092927358457476e-06,
|
| 2095 |
+
"loss": 0.8724,
|
| 2096 |
+
"step": 1490
|
| 2097 |
+
},
|
| 2098 |
+
{
|
| 2099 |
+
"epoch": 2.395991983967936,
|
| 2100 |
+
"grad_norm": 0.38862401247024536,
|
| 2101 |
+
"learning_rate": 2.0401548848153296e-06,
|
| 2102 |
+
"loss": 0.8958,
|
| 2103 |
+
"step": 1495
|
| 2104 |
+
},
|
| 2105 |
+
{
|
| 2106 |
+
"epoch": 2.4040080160320643,
|
| 2107 |
+
"grad_norm": 0.4901878535747528,
|
| 2108 |
+
"learning_rate": 1.9879805820502176e-06,
|
| 2109 |
+
"loss": 0.903,
|
| 2110 |
+
"step": 1500
|
| 2111 |
+
},
|
| 2112 |
+
{
|
| 2113 |
+
"epoch": 2.4120240480961925,
|
| 2114 |
+
"grad_norm": 0.37639907002449036,
|
| 2115 |
+
"learning_rate": 1.9364083709857184e-06,
|
| 2116 |
+
"loss": 0.7387,
|
| 2117 |
+
"step": 1505
|
| 2118 |
+
},
|
| 2119 |
+
{
|
| 2120 |
+
"epoch": 2.420040080160321,
|
| 2121 |
+
"grad_norm": 0.34562456607818604,
|
| 2122 |
+
"learning_rate": 1.8854421271990964e-06,
|
| 2123 |
+
"loss": 0.7325,
|
| 2124 |
+
"step": 1510
|
| 2125 |
+
},
|
| 2126 |
+
{
|
| 2127 |
+
"epoch": 2.428056112224449,
|
| 2128 |
+
"grad_norm": 0.44138360023498535,
|
| 2129 |
+
"learning_rate": 1.835085680730041e-06,
|
| 2130 |
+
"loss": 0.8788,
|
| 2131 |
+
"step": 1515
|
| 2132 |
+
},
|
| 2133 |
+
{
|
| 2134 |
+
"epoch": 2.4360721442885773,
|
| 2135 |
+
"grad_norm": 0.3983897864818573,
|
| 2136 |
+
"learning_rate": 1.785342815792862e-06,
|
| 2137 |
+
"loss": 0.8522,
|
| 2138 |
+
"step": 1520
|
| 2139 |
+
},
|
| 2140 |
+
{
|
| 2141 |
+
"epoch": 2.4440881763527056,
|
| 2142 |
+
"grad_norm": 0.40477579832077026,
|
| 2143 |
+
"learning_rate": 1.7362172704920933e-06,
|
| 2144 |
+
"loss": 0.7911,
|
| 2145 |
+
"step": 1525
|
| 2146 |
+
},
|
| 2147 |
+
{
|
| 2148 |
+
"epoch": 2.452104208416834,
|
| 2149 |
+
"grad_norm": 0.4484027624130249,
|
| 2150 |
+
"learning_rate": 1.6877127365415924e-06,
|
| 2151 |
+
"loss": 0.8903,
|
| 2152 |
+
"step": 1530
|
| 2153 |
+
},
|
| 2154 |
+
{
|
| 2155 |
+
"epoch": 2.460120240480962,
|
| 2156 |
+
"grad_norm": 0.3873910903930664,
|
| 2157 |
+
"learning_rate": 1.6398328589871126e-06,
|
| 2158 |
+
"loss": 0.8499,
|
| 2159 |
+
"step": 1535
|
| 2160 |
+
},
|
| 2161 |
+
{
|
| 2162 |
+
"epoch": 2.46813627254509,
|
| 2163 |
+
"grad_norm": 0.4115862548351288,
|
| 2164 |
+
"learning_rate": 1.5925812359323745e-06,
|
| 2165 |
+
"loss": 0.9026,
|
| 2166 |
+
"step": 1540
|
| 2167 |
+
},
|
| 2168 |
+
{
|
| 2169 |
+
"epoch": 2.4761523046092186,
|
| 2170 |
+
"grad_norm": 0.3982996344566345,
|
| 2171 |
+
"learning_rate": 1.5459614182686866e-06,
|
| 2172 |
+
"loss": 0.8284,
|
| 2173 |
+
"step": 1545
|
| 2174 |
+
},
|
| 2175 |
+
{
|
| 2176 |
+
"epoch": 2.4841683366733465,
|
| 2177 |
+
"grad_norm": 0.3346659541130066,
|
| 2178 |
+
"learning_rate": 1.4999769094080853e-06,
|
| 2179 |
+
"loss": 0.8033,
|
| 2180 |
+
"step": 1550
|
| 2181 |
+
},
|
| 2182 |
+
{
|
| 2183 |
+
"epoch": 2.492184368737475,
|
| 2184 |
+
"grad_norm": 0.3832646310329437,
|
| 2185 |
+
"learning_rate": 1.454631165020075e-06,
|
| 2186 |
+
"loss": 0.8919,
|
| 2187 |
+
"step": 1555
|
| 2188 |
+
},
|
| 2189 |
+
{
|
| 2190 |
+
"epoch": 2.500200400801603,
|
| 2191 |
+
"grad_norm": 0.7681372761726379,
|
| 2192 |
+
"learning_rate": 1.4099275927719235e-06,
|
| 2193 |
+
"loss": 0.8321,
|
| 2194 |
+
"step": 1560
|
| 2195 |
+
},
|
| 2196 |
+
{
|
| 2197 |
+
"epoch": 2.5082164328657317,
|
| 2198 |
+
"grad_norm": 0.415099173784256,
|
| 2199 |
+
"learning_rate": 1.3658695520725984e-06,
|
| 2200 |
+
"loss": 0.8178,
|
| 2201 |
+
"step": 1565
|
| 2202 |
+
},
|
| 2203 |
+
{
|
| 2204 |
+
"epoch": 2.5162324649298595,
|
| 2205 |
+
"grad_norm": 0.3748820722103119,
|
| 2206 |
+
"learning_rate": 1.3224603538202929e-06,
|
| 2207 |
+
"loss": 0.8834,
|
| 2208 |
+
"step": 1570
|
| 2209 |
+
},
|
| 2210 |
+
{
|
| 2211 |
+
"epoch": 2.5242484969939882,
|
| 2212 |
+
"grad_norm": 0.37983429431915283,
|
| 2213 |
+
"learning_rate": 1.2797032601536342e-06,
|
| 2214 |
+
"loss": 0.8233,
|
| 2215 |
+
"step": 1575
|
| 2216 |
+
},
|
| 2217 |
+
{
|
| 2218 |
+
"epoch": 2.532264529058116,
|
| 2219 |
+
"grad_norm": 0.40843164920806885,
|
| 2220 |
+
"learning_rate": 1.2376014842065264e-06,
|
| 2221 |
+
"loss": 0.9251,
|
| 2222 |
+
"step": 1580
|
| 2223 |
+
},
|
| 2224 |
+
{
|
| 2225 |
+
"epoch": 2.5402805611222448,
|
| 2226 |
+
"grad_norm": 0.34796783328056335,
|
| 2227 |
+
"learning_rate": 1.1961581898666895e-06,
|
| 2228 |
+
"loss": 0.8777,
|
| 2229 |
+
"step": 1585
|
| 2230 |
+
},
|
| 2231 |
+
{
|
| 2232 |
+
"epoch": 2.5482965931863726,
|
| 2233 |
+
"grad_norm": 0.3763981759548187,
|
| 2234 |
+
"learning_rate": 1.1553764915379095e-06,
|
| 2235 |
+
"loss": 0.8709,
|
| 2236 |
+
"step": 1590
|
| 2237 |
+
},
|
| 2238 |
+
{
|
| 2239 |
+
"epoch": 2.556312625250501,
|
| 2240 |
+
"grad_norm": 0.7970382571220398,
|
| 2241 |
+
"learning_rate": 1.115259453905978e-06,
|
| 2242 |
+
"loss": 0.8451,
|
| 2243 |
+
"step": 1595
|
| 2244 |
+
},
|
| 2245 |
+
{
|
| 2246 |
+
"epoch": 2.564328657314629,
|
| 2247 |
+
"grad_norm": 0.3026469051837921,
|
| 2248 |
+
"learning_rate": 1.075810091708399e-06,
|
| 2249 |
+
"loss": 0.8302,
|
| 2250 |
+
"step": 1600
|
| 2251 |
+
},
|
| 2252 |
+
{
|
| 2253 |
+
"epoch": 2.5723446893787574,
|
| 2254 |
+
"grad_norm": 0.3812445104122162,
|
| 2255 |
+
"learning_rate": 1.0370313695078316e-06,
|
| 2256 |
+
"loss": 0.8251,
|
| 2257 |
+
"step": 1605
|
| 2258 |
+
},
|
| 2259 |
+
{
|
| 2260 |
+
"epoch": 2.5803607214428856,
|
| 2261 |
+
"grad_norm": 0.36716336011886597,
|
| 2262 |
+
"learning_rate": 9.989262014693013e-07,
|
| 2263 |
+
"loss": 0.8475,
|
| 2264 |
+
"step": 1610
|
| 2265 |
+
},
|
| 2266 |
+
{
|
| 2267 |
+
"epoch": 2.588376753507014,
|
| 2268 |
+
"grad_norm": 0.4053398072719574,
|
| 2269 |
+
"learning_rate": 9.614974511412156e-07,
|
| 2270 |
+
"loss": 0.8174,
|
| 2271 |
+
"step": 1615
|
| 2272 |
+
},
|
| 2273 |
+
{
|
| 2274 |
+
"epoch": 2.596392785571142,
|
| 2275 |
+
"grad_norm": 0.4070420563220978,
|
| 2276 |
+
"learning_rate": 9.247479312401642e-07,
|
| 2277 |
+
"loss": 0.8769,
|
| 2278 |
+
"step": 1620
|
| 2279 |
+
},
|
| 2280 |
+
{
|
| 2281 |
+
"epoch": 2.6044088176352704,
|
| 2282 |
+
"grad_norm": 0.7767839431762695,
|
| 2283 |
+
"learning_rate": 8.88680403439548e-07,
|
| 2284 |
+
"loss": 0.8343,
|
| 2285 |
+
"step": 1625
|
| 2286 |
+
},
|
| 2287 |
+
{
|
| 2288 |
+
"epoch": 2.6124248496993987,
|
| 2289 |
+
"grad_norm": 0.411374568939209,
|
| 2290 |
+
"learning_rate": 8.532975781620511e-07,
|
| 2291 |
+
"loss": 0.8021,
|
| 2292 |
+
"step": 1630
|
| 2293 |
+
},
|
| 2294 |
+
{
|
| 2295 |
+
"epoch": 2.620440881763527,
|
| 2296 |
+
"grad_norm": 0.32186996936798096,
|
| 2297 |
+
"learning_rate": 8.18602114375947e-07,
|
| 2298 |
+
"loss": 0.8267,
|
| 2299 |
+
"step": 1635
|
| 2300 |
+
},
|
| 2301 |
+
{
|
| 2302 |
+
"epoch": 2.6284569138276552,
|
| 2303 |
+
"grad_norm": 0.34994935989379883,
|
| 2304 |
+
"learning_rate": 7.845966193952825e-07,
|
| 2305 |
+
"loss": 0.8122,
|
| 2306 |
+
"step": 1640
|
| 2307 |
+
},
|
| 2308 |
+
{
|
| 2309 |
+
"epoch": 2.6364729458917835,
|
| 2310 |
+
"grad_norm": 0.399689644575119,
|
| 2311 |
+
"learning_rate": 7.512836486839492e-07,
|
| 2312 |
+
"loss": 0.7816,
|
| 2313 |
+
"step": 1645
|
| 2314 |
+
},
|
| 2315 |
+
{
|
| 2316 |
+
"epoch": 2.6444889779559118,
|
| 2317 |
+
"grad_norm": 0.3521658778190613,
|
| 2318 |
+
"learning_rate": 7.18665705663637e-07,
|
| 2319 |
+
"loss": 0.8229,
|
| 2320 |
+
"step": 1650
|
| 2321 |
+
},
|
| 2322 |
+
{
|
| 2323 |
+
"epoch": 2.65250501002004,
|
| 2324 |
+
"grad_norm": 0.46236297488212585,
|
| 2325 |
+
"learning_rate": 6.867452415257081e-07,
|
| 2326 |
+
"loss": 0.7963,
|
| 2327 |
+
"step": 1655
|
| 2328 |
+
},
|
| 2329 |
+
{
|
| 2330 |
+
"epoch": 2.6605210420841683,
|
| 2331 |
+
"grad_norm": 0.47568464279174805,
|
| 2332 |
+
"learning_rate": 6.555246550469907e-07,
|
| 2333 |
+
"loss": 0.7728,
|
| 2334 |
+
"step": 1660
|
| 2335 |
+
},
|
| 2336 |
+
{
|
| 2337 |
+
"epoch": 2.6685370741482966,
|
| 2338 |
+
"grad_norm": 0.3366374373435974,
|
| 2339 |
+
"learning_rate": 6.250062924095158e-07,
|
| 2340 |
+
"loss": 0.8544,
|
| 2341 |
+
"step": 1665
|
| 2342 |
+
},
|
| 2343 |
+
{
|
| 2344 |
+
"epoch": 2.676553106212425,
|
| 2345 |
+
"grad_norm": 0.3431518077850342,
|
| 2346 |
+
"learning_rate": 5.951924470242121e-07,
|
| 2347 |
+
"loss": 0.6777,
|
| 2348 |
+
"step": 1670
|
| 2349 |
+
},
|
| 2350 |
+
{
|
| 2351 |
+
"epoch": 2.684569138276553,
|
| 2352 |
+
"grad_norm": 0.3027094602584839,
|
| 2353 |
+
"learning_rate": 5.660853593585458e-07,
|
| 2354 |
+
"loss": 0.7997,
|
| 2355 |
+
"step": 1675
|
| 2356 |
+
},
|
| 2357 |
+
{
|
| 2358 |
+
"epoch": 2.6925851703406813,
|
| 2359 |
+
"grad_norm": 0.38628339767456055,
|
| 2360 |
+
"learning_rate": 5.376872167681634e-07,
|
| 2361 |
+
"loss": 0.8907,
|
| 2362 |
+
"step": 1680
|
| 2363 |
+
},
|
| 2364 |
+
{
|
| 2365 |
+
"epoch": 2.7006012024048096,
|
| 2366 |
+
"grad_norm": 0.38656118512153625,
|
| 2367 |
+
"learning_rate": 5.10000153332515e-07,
|
| 2368 |
+
"loss": 0.8128,
|
| 2369 |
+
"step": 1685
|
| 2370 |
+
},
|
| 2371 |
+
{
|
| 2372 |
+
"epoch": 2.708617234468938,
|
| 2373 |
+
"grad_norm": 0.3081871569156647,
|
| 2374 |
+
"learning_rate": 4.830262496944693e-07,
|
| 2375 |
+
"loss": 0.8044,
|
| 2376 |
+
"step": 1690
|
| 2377 |
+
},
|
| 2378 |
+
{
|
| 2379 |
+
"epoch": 2.716633266533066,
|
| 2380 |
+
"grad_norm": 0.3895088732242584,
|
| 2381 |
+
"learning_rate": 4.5676753290397445e-07,
|
| 2382 |
+
"loss": 0.8063,
|
| 2383 |
+
"step": 1695
|
| 2384 |
+
},
|
| 2385 |
+
{
|
| 2386 |
+
"epoch": 2.7246492985971944,
|
| 2387 |
+
"grad_norm": 0.3495742082595825,
|
| 2388 |
+
"learning_rate": 4.312259762657145e-07,
|
| 2389 |
+
"loss": 0.8404,
|
| 2390 |
+
"step": 1700
|
| 2391 |
+
},
|
| 2392 |
+
{
|
| 2393 |
+
"epoch": 2.7326653306613227,
|
| 2394 |
+
"grad_norm": 0.3835850954055786,
|
| 2395 |
+
"learning_rate": 4.0640349919082056e-07,
|
| 2396 |
+
"loss": 0.9816,
|
| 2397 |
+
"step": 1705
|
| 2398 |
+
},
|
| 2399 |
+
{
|
| 2400 |
+
"epoch": 2.740681362725451,
|
| 2401 |
+
"grad_norm": 0.4039825201034546,
|
| 2402 |
+
"learning_rate": 3.8230196705263734e-07,
|
| 2403 |
+
"loss": 0.936,
|
| 2404 |
+
"step": 1710
|
| 2405 |
+
},
|
| 2406 |
+
{
|
| 2407 |
+
"epoch": 2.748697394789579,
|
| 2408 |
+
"grad_norm": 0.5234516263008118,
|
| 2409 |
+
"learning_rate": 3.5892319104653294e-07,
|
| 2410 |
+
"loss": 0.831,
|
| 2411 |
+
"step": 1715
|
| 2412 |
+
},
|
| 2413 |
+
{
|
| 2414 |
+
"epoch": 2.7567134268537075,
|
| 2415 |
+
"grad_norm": 0.3361075520515442,
|
| 2416 |
+
"learning_rate": 3.3626892805379565e-07,
|
| 2417 |
+
"loss": 0.8202,
|
| 2418 |
+
"step": 1720
|
| 2419 |
+
},
|
| 2420 |
+
{
|
| 2421 |
+
"epoch": 2.7647294589178357,
|
| 2422 |
+
"grad_norm": 0.3541311025619507,
|
| 2423 |
+
"learning_rate": 3.1434088050960934e-07,
|
| 2424 |
+
"loss": 0.8253,
|
| 2425 |
+
"step": 1725
|
| 2426 |
+
},
|
| 2427 |
+
{
|
| 2428 |
+
"epoch": 2.772745490981964,
|
| 2429 |
+
"grad_norm": 0.36018094420433044,
|
| 2430 |
+
"learning_rate": 2.9314069627511045e-07,
|
| 2431 |
+
"loss": 0.8884,
|
| 2432 |
+
"step": 1730
|
| 2433 |
+
},
|
| 2434 |
+
{
|
| 2435 |
+
"epoch": 2.7807615230460923,
|
| 2436 |
+
"grad_norm": 0.47873905301094055,
|
| 2437 |
+
"learning_rate": 2.726699685135603e-07,
|
| 2438 |
+
"loss": 0.8518,
|
| 2439 |
+
"step": 1735
|
| 2440 |
+
},
|
| 2441 |
+
{
|
| 2442 |
+
"epoch": 2.7887775551102205,
|
| 2443 |
+
"grad_norm": 0.4113430380821228,
|
| 2444 |
+
"learning_rate": 2.529302355706165e-07,
|
| 2445 |
+
"loss": 0.859,
|
| 2446 |
+
"step": 1740
|
| 2447 |
+
},
|
| 2448 |
+
{
|
| 2449 |
+
"epoch": 2.796793587174349,
|
| 2450 |
+
"grad_norm": 0.43893691897392273,
|
| 2451 |
+
"learning_rate": 2.3392298085873288e-07,
|
| 2452 |
+
"loss": 0.8878,
|
| 2453 |
+
"step": 1745
|
| 2454 |
+
},
|
| 2455 |
+
{
|
| 2456 |
+
"epoch": 2.804809619238477,
|
| 2457 |
+
"grad_norm": 0.30622348189353943,
|
| 2458 |
+
"learning_rate": 2.1564963274568028e-07,
|
| 2459 |
+
"loss": 0.8205,
|
| 2460 |
+
"step": 1750
|
| 2461 |
+
},
|
| 2462 |
+
{
|
| 2463 |
+
"epoch": 2.8128256513026053,
|
| 2464 |
+
"grad_norm": 1.027692198753357,
|
| 2465 |
+
"learning_rate": 1.9811156444720648e-07,
|
| 2466 |
+
"loss": 0.8271,
|
| 2467 |
+
"step": 1755
|
| 2468 |
+
},
|
| 2469 |
+
{
|
| 2470 |
+
"epoch": 2.8208416833667336,
|
| 2471 |
+
"grad_norm": 0.3843301832675934,
|
| 2472 |
+
"learning_rate": 1.8131009392384324e-07,
|
| 2473 |
+
"loss": 0.9512,
|
| 2474 |
+
"step": 1760
|
| 2475 |
+
},
|
| 2476 |
+
{
|
| 2477 |
+
"epoch": 2.828857715430862,
|
| 2478 |
+
"grad_norm": 0.4416702091693878,
|
| 2479 |
+
"learning_rate": 1.6524648378186125e-07,
|
| 2480 |
+
"loss": 0.8444,
|
| 2481 |
+
"step": 1765
|
| 2482 |
+
},
|
| 2483 |
+
{
|
| 2484 |
+
"epoch": 2.83687374749499,
|
| 2485 |
+
"grad_norm": 0.34150800108909607,
|
| 2486 |
+
"learning_rate": 1.49921941178387e-07,
|
| 2487 |
+
"loss": 0.8285,
|
| 2488 |
+
"step": 1770
|
| 2489 |
+
},
|
| 2490 |
+
{
|
| 2491 |
+
"epoch": 2.8448897795591184,
|
| 2492 |
+
"grad_norm": 0.4354546368122101,
|
| 2493 |
+
"learning_rate": 1.35337617730692e-07,
|
| 2494 |
+
"loss": 0.8678,
|
| 2495 |
+
"step": 1775
|
| 2496 |
+
},
|
| 2497 |
+
{
|
| 2498 |
+
"epoch": 2.8529058116232466,
|
| 2499 |
+
"grad_norm": 0.5867286920547485,
|
| 2500 |
+
"learning_rate": 1.2149460942964097e-07,
|
| 2501 |
+
"loss": 0.9001,
|
| 2502 |
+
"step": 1780
|
| 2503 |
+
},
|
| 2504 |
+
{
|
| 2505 |
+
"epoch": 2.860921843687375,
|
| 2506 |
+
"grad_norm": 0.40360739827156067,
|
| 2507 |
+
"learning_rate": 1.0839395655733664e-07,
|
| 2508 |
+
"loss": 0.7915,
|
| 2509 |
+
"step": 1785
|
| 2510 |
+
},
|
| 2511 |
+
{
|
| 2512 |
+
"epoch": 2.868937875751503,
|
| 2513 |
+
"grad_norm": 0.4062676727771759,
|
| 2514 |
+
"learning_rate": 9.603664360894327e-08,
|
| 2515 |
+
"loss": 0.9189,
|
| 2516 |
+
"step": 1790
|
| 2517 |
+
},
|
| 2518 |
+
{
|
| 2519 |
+
"epoch": 2.8769539078156314,
|
| 2520 |
+
"grad_norm": 0.36837005615234375,
|
| 2521 |
+
"learning_rate": 8.442359921870148e-08,
|
| 2522 |
+
"loss": 0.82,
|
| 2523 |
+
"step": 1795
|
| 2524 |
+
},
|
| 2525 |
+
{
|
| 2526 |
+
"epoch": 2.8849699398797597,
|
| 2527 |
+
"grad_norm": 0.34926676750183105,
|
| 2528 |
+
"learning_rate": 7.35556960901429e-08,
|
| 2529 |
+
"loss": 0.7414,
|
| 2530 |
+
"step": 1800
|
| 2531 |
+
}
|
| 2532 |
+
],
|
| 2533 |
+
"logging_steps": 5,
|
| 2534 |
+
"max_steps": 1869,
|
| 2535 |
+
"num_input_tokens_seen": 0,
|
| 2536 |
+
"num_train_epochs": 3,
|
| 2537 |
+
"save_steps": 100,
|
| 2538 |
+
"stateful_callbacks": {
|
| 2539 |
+
"TrainerControl": {
|
| 2540 |
+
"args": {
|
| 2541 |
+
"should_epoch_stop": false,
|
| 2542 |
+
"should_evaluate": false,
|
| 2543 |
+
"should_log": false,
|
| 2544 |
+
"should_save": true,
|
| 2545 |
+
"should_training_stop": false
|
| 2546 |
+
},
|
| 2547 |
+
"attributes": {}
|
| 2548 |
+
}
|
| 2549 |
+
},
|
| 2550 |
+
"total_flos": 4.9701130725479424e+17,
|
| 2551 |
+
"train_batch_size": 4,
|
| 2552 |
+
"trial_name": null,
|
| 2553 |
+
"trial_params": null
|
| 2554 |
+
}
|
checkpoint-1800/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0b3174f65fbdaf7aa6118f61c267fc2917f39aa22c6b68ce8847c767120e8d7
|
| 3 |
+
size 5816
|
checkpoint-1800/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1869/README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/Qwen3-4B-Instruct-2507
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/Qwen3-4B-Instruct-2507
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- unsloth
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Model Card for Model ID
|
| 15 |
+
|
| 16 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## Model Details
|
| 21 |
+
|
| 22 |
+
### Model Description
|
| 23 |
+
|
| 24 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
- **Developed by:** [More Information Needed]
|
| 29 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 30 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 31 |
+
- **Model type:** [More Information Needed]
|
| 32 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
+
- **License:** [More Information Needed]
|
| 34 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
### Model Sources [optional]
|
| 37 |
+
|
| 38 |
+
<!-- Provide the basic links for the model. -->
|
| 39 |
+
|
| 40 |
+
- **Repository:** [More Information Needed]
|
| 41 |
+
- **Paper [optional]:** [More Information Needed]
|
| 42 |
+
- **Demo [optional]:** [More Information Needed]
|
| 43 |
+
|
| 44 |
+
## Uses
|
| 45 |
+
|
| 46 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 47 |
+
|
| 48 |
+
### Direct Use
|
| 49 |
+
|
| 50 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 51 |
+
|
| 52 |
+
[More Information Needed]
|
| 53 |
+
|
| 54 |
+
### Downstream Use [optional]
|
| 55 |
+
|
| 56 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 57 |
+
|
| 58 |
+
[More Information Needed]
|
| 59 |
+
|
| 60 |
+
### Out-of-Scope Use
|
| 61 |
+
|
| 62 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 63 |
+
|
| 64 |
+
[More Information Needed]
|
| 65 |
+
|
| 66 |
+
## Bias, Risks, and Limitations
|
| 67 |
+
|
| 68 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 69 |
+
|
| 70 |
+
[More Information Needed]
|
| 71 |
+
|
| 72 |
+
### Recommendations
|
| 73 |
+
|
| 74 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 75 |
+
|
| 76 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 77 |
+
|
| 78 |
+
## How to Get Started with the Model
|
| 79 |
+
|
| 80 |
+
Use the code below to get started with the model.
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
## Training Details
|
| 85 |
+
|
| 86 |
+
### Training Data
|
| 87 |
+
|
| 88 |
+
<!-- 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. -->
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
### Training Procedure
|
| 93 |
+
|
| 94 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 95 |
+
|
| 96 |
+
#### Preprocessing [optional]
|
| 97 |
+
|
| 98 |
+
[More Information Needed]
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
#### Training Hyperparameters
|
| 102 |
+
|
| 103 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 104 |
+
|
| 105 |
+
#### Speeds, Sizes, Times [optional]
|
| 106 |
+
|
| 107 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 108 |
+
|
| 109 |
+
[More Information Needed]
|
| 110 |
+
|
| 111 |
+
## Evaluation
|
| 112 |
+
|
| 113 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 114 |
+
|
| 115 |
+
### Testing Data, Factors & Metrics
|
| 116 |
+
|
| 117 |
+
#### Testing Data
|
| 118 |
+
|
| 119 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 120 |
+
|
| 121 |
+
[More Information Needed]
|
| 122 |
+
|
| 123 |
+
#### Factors
|
| 124 |
+
|
| 125 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 126 |
+
|
| 127 |
+
[More Information Needed]
|
| 128 |
+
|
| 129 |
+
#### Metrics
|
| 130 |
+
|
| 131 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
### Results
|
| 136 |
+
|
| 137 |
+
[More Information Needed]
|
| 138 |
+
|
| 139 |
+
#### Summary
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
|
| 143 |
+
## Model Examination [optional]
|
| 144 |
+
|
| 145 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 146 |
+
|
| 147 |
+
[More Information Needed]
|
| 148 |
+
|
| 149 |
+
## Environmental Impact
|
| 150 |
+
|
| 151 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 152 |
+
|
| 153 |
+
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).
|
| 154 |
+
|
| 155 |
+
- **Hardware Type:** [More Information Needed]
|
| 156 |
+
- **Hours used:** [More Information Needed]
|
| 157 |
+
- **Cloud Provider:** [More Information Needed]
|
| 158 |
+
- **Compute Region:** [More Information Needed]
|
| 159 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
+
|
| 161 |
+
## Technical Specifications [optional]
|
| 162 |
+
|
| 163 |
+
### Model Architecture and Objective
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
### Compute Infrastructure
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Hardware
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
#### Software
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
## Citation [optional]
|
| 180 |
+
|
| 181 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 182 |
+
|
| 183 |
+
**BibTeX:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
**APA:**
|
| 188 |
+
|
| 189 |
+
[More Information Needed]
|
| 190 |
+
|
| 191 |
+
## Glossary [optional]
|
| 192 |
+
|
| 193 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## More Information [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Authors [optional]
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
|
| 205 |
+
## Model Card Contact
|
| 206 |
+
|
| 207 |
+
[More Information Needed]
|
| 208 |
+
### Framework versions
|
| 209 |
+
|
| 210 |
+
- PEFT 0.19.1
|
checkpoint-1869/adapter_config.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "Qwen3ForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.qwen3.modeling_qwen3",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/Qwen3-4B-Instruct-2507",
|
| 11 |
+
"bias": "none",
|
| 12 |
+
"corda_config": null,
|
| 13 |
+
"ensure_weight_tying": false,
|
| 14 |
+
"eva_config": null,
|
| 15 |
+
"exclude_modules": null,
|
| 16 |
+
"fan_in_fan_out": false,
|
| 17 |
+
"inference_mode": true,
|
| 18 |
+
"init_lora_weights": true,
|
| 19 |
+
"layer_replication": null,
|
| 20 |
+
"layers_pattern": null,
|
| 21 |
+
"layers_to_transform": null,
|
| 22 |
+
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 64,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0.05,
|
| 26 |
+
"lora_ga_config": null,
|
| 27 |
+
"megatron_config": null,
|
| 28 |
+
"megatron_core": "megatron.core",
|
| 29 |
+
"modules_to_save": null,
|
| 30 |
+
"peft_type": "LORA",
|
| 31 |
+
"peft_version": "0.19.1",
|
| 32 |
+
"qalora_group_size": 16,
|
| 33 |
+
"r": 32,
|
| 34 |
+
"rank_pattern": {},
|
| 35 |
+
"revision": null,
|
| 36 |
+
"target_modules": [
|
| 37 |
+
"v_proj",
|
| 38 |
+
"k_proj",
|
| 39 |
+
"q_proj",
|
| 40 |
+
"o_proj"
|
| 41 |
+
],
|
| 42 |
+
"target_parameters": null,
|
| 43 |
+
"task_type": "CAUSAL_LM",
|
| 44 |
+
"trainable_token_indices": null,
|
| 45 |
+
"use_bdlora": null,
|
| 46 |
+
"use_dora": false,
|
| 47 |
+
"use_qalora": false,
|
| 48 |
+
"use_rslora": false
|
| 49 |
+
}
|
checkpoint-1869/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:125829d96f669e577930472487f6e85ce819ccf638cc1a84c2b90582461ff94d
|
| 3 |
+
size 94410616
|
checkpoint-1869/added_tokens.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|PAD_TOKEN|>": 151669,
|
| 9 |
+
"<|box_end|>": 151649,
|
| 10 |
+
"<|box_start|>": 151648,
|
| 11 |
+
"<|endoftext|>": 151643,
|
| 12 |
+
"<|file_sep|>": 151664,
|
| 13 |
+
"<|fim_middle|>": 151660,
|
| 14 |
+
"<|fim_pad|>": 151662,
|
| 15 |
+
"<|fim_prefix|>": 151659,
|
| 16 |
+
"<|fim_suffix|>": 151661,
|
| 17 |
+
"<|im_end|>": 151645,
|
| 18 |
+
"<|im_start|>": 151644,
|
| 19 |
+
"<|image_pad|>": 151655,
|
| 20 |
+
"<|object_ref_end|>": 151647,
|
| 21 |
+
"<|object_ref_start|>": 151646,
|
| 22 |
+
"<|quad_end|>": 151651,
|
| 23 |
+
"<|quad_start|>": 151650,
|
| 24 |
+
"<|repo_name|>": 151663,
|
| 25 |
+
"<|video_pad|>": 151656,
|
| 26 |
+
"<|vision_end|>": 151653,
|
| 27 |
+
"<|vision_pad|>": 151654,
|
| 28 |
+
"<|vision_start|>": 151652
|
| 29 |
+
}
|
checkpoint-1869/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1869/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9e90c761e2c541209883260f6ff76763234fe9210e680e5fb27036105de0ee4
|
| 3 |
+
size 48264852
|
checkpoint-1869/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f316d47dddb158272b25572b27dac4723817f6e38335d519e19d292e442683a
|
| 3 |
+
size 14244
|
checkpoint-1869/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d105b4db5db3f79faabdc01760bb7ab5212170d3058672fbdba48b860f644048
|
| 3 |
+
size 1064
|
checkpoint-1869/special_tokens_map.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": "<|PAD_TOKEN|>"
|
| 25 |
+
}
|
checkpoint-1869/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10ba4ba91270b1a50e5cd8e51023bccc66fc4ac4909dd7ae7ab29433411c9bb9
|
| 3 |
+
size 11422844
|
checkpoint-1869/tokenizer_config.json
ADDED
|
@@ -0,0 +1,249 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
},
|
| 213 |
+
"151669": {
|
| 214 |
+
"content": "<|PAD_TOKEN|>",
|
| 215 |
+
"lstrip": false,
|
| 216 |
+
"normalized": false,
|
| 217 |
+
"rstrip": false,
|
| 218 |
+
"single_word": false,
|
| 219 |
+
"special": true
|
| 220 |
+
}
|
| 221 |
+
},
|
| 222 |
+
"additional_special_tokens": [
|
| 223 |
+
"<|im_start|>",
|
| 224 |
+
"<|im_end|>",
|
| 225 |
+
"<|object_ref_start|>",
|
| 226 |
+
"<|object_ref_end|>",
|
| 227 |
+
"<|box_start|>",
|
| 228 |
+
"<|box_end|>",
|
| 229 |
+
"<|quad_start|>",
|
| 230 |
+
"<|quad_end|>",
|
| 231 |
+
"<|vision_start|>",
|
| 232 |
+
"<|vision_end|>",
|
| 233 |
+
"<|vision_pad|>",
|
| 234 |
+
"<|image_pad|>",
|
| 235 |
+
"<|video_pad|>"
|
| 236 |
+
],
|
| 237 |
+
"bos_token": null,
|
| 238 |
+
"chat_template": "\n{%- if tools %}\n {{- '<|im_start|>system\n' }}\n {%- if messages[0].role == 'system' %}\n {{- messages[0].content + '\n\n' }}\n {%- endif %}\n {{- \"# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\n</tool_call><|im_end|>\n\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for forward_message in messages %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- set message = messages[index] %}\n {%- set current_content = message.content if message.content is not none else '' %}\n {%- set tool_start = '<tool_response>' %}\n {%- set tool_start_length = tool_start|length %}\n {%- set start_of_message = current_content[:tool_start_length] %}\n {%- set tool_end = '</tool_response>' %}\n {%- set tool_end_length = tool_end|length %}\n {%- set start_pos = (current_content|length) - tool_end_length %}\n {%- if start_pos < 0 %}\n {%- set start_pos = 0 %}\n {%- endif %}\n {%- set end_of_message = current_content[start_pos:] %}\n {%- if ns.multi_step_tool and message.role == \"user\" and not(start_of_message == tool_start and end_of_message == tool_end) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n{%- endfor %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set content = message.content %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is defined and message.reasoning_content is not none %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in message.content %}\n {%- set content = (message.content.split('</think>')|last).lstrip('\n') %}\n {%- set reasoning_content = (message.content.split('</think>')|first).rstrip('\n') %}\n {%- set reasoning_content = (reasoning_content.split('<think>')|last).lstrip('\n') %}\n {%- endif %}\n {%- endif %}\n {%- if loop.index0 > ns.last_query_index %}\n {%- if loop.last or (not loop.last and reasoning_content) %}\n {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\n' + content }}\n {%- endif %}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\n' + content }}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and content) or (not loop.first) %}\n {{- '\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\n<tool_response>\n' }}\n {{- message.content }}\n {{- '\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\n' }}\n {%- if enable_thinking is defined and enable_thinking is false %}\n {{- '<think>\n\n</think>\n\n' }}\n {%- endif %}\n{%- endif %}\n",
|
| 239 |
+
"clean_up_tokenization_spaces": false,
|
| 240 |
+
"eos_token": "<|im_end|>",
|
| 241 |
+
"errors": "replace",
|
| 242 |
+
"extra_special_tokens": {},
|
| 243 |
+
"model_max_length": 262144,
|
| 244 |
+
"pad_token": "<|PAD_TOKEN|>",
|
| 245 |
+
"padding_side": "right",
|
| 246 |
+
"split_special_tokens": false,
|
| 247 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 248 |
+
"unk_token": null
|
| 249 |
+
}
|
checkpoint-1869/trainer_state.json
ADDED
|
@@ -0,0 +1,2645 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.9955911823647297,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 1869,
|
| 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.008016032064128256,
|
| 14 |
+
"grad_norm": 1.7998353242874146,
|
| 15 |
+
"learning_rate": 1.4035087719298246e-06,
|
| 16 |
+
"loss": 2.8148,
|
| 17 |
+
"step": 5
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.01603206412825651,
|
| 21 |
+
"grad_norm": 1.8694814443588257,
|
| 22 |
+
"learning_rate": 3.157894736842105e-06,
|
| 23 |
+
"loss": 2.7787,
|
| 24 |
+
"step": 10
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.02404809619238477,
|
| 28 |
+
"grad_norm": 2.0035526752471924,
|
| 29 |
+
"learning_rate": 4.912280701754386e-06,
|
| 30 |
+
"loss": 2.8341,
|
| 31 |
+
"step": 15
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.03206412825651302,
|
| 35 |
+
"grad_norm": 2.0097479820251465,
|
| 36 |
+
"learning_rate": 6.666666666666667e-06,
|
| 37 |
+
"loss": 2.7125,
|
| 38 |
+
"step": 20
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.04008016032064128,
|
| 42 |
+
"grad_norm": 1.6507200002670288,
|
| 43 |
+
"learning_rate": 8.421052631578948e-06,
|
| 44 |
+
"loss": 2.4992,
|
| 45 |
+
"step": 25
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.04809619238476954,
|
| 49 |
+
"grad_norm": 2.043926477432251,
|
| 50 |
+
"learning_rate": 1.017543859649123e-05,
|
| 51 |
+
"loss": 2.551,
|
| 52 |
+
"step": 30
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.056112224448897796,
|
| 56 |
+
"grad_norm": 1.697209119796753,
|
| 57 |
+
"learning_rate": 1.192982456140351e-05,
|
| 58 |
+
"loss": 2.525,
|
| 59 |
+
"step": 35
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.06412825651302605,
|
| 63 |
+
"grad_norm": 1.7798157930374146,
|
| 64 |
+
"learning_rate": 1.3684210526315791e-05,
|
| 65 |
+
"loss": 2.4075,
|
| 66 |
+
"step": 40
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.07214428857715431,
|
| 70 |
+
"grad_norm": 1.4598116874694824,
|
| 71 |
+
"learning_rate": 1.543859649122807e-05,
|
| 72 |
+
"loss": 2.093,
|
| 73 |
+
"step": 45
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.08016032064128256,
|
| 77 |
+
"grad_norm": 1.4842052459716797,
|
| 78 |
+
"learning_rate": 1.719298245614035e-05,
|
| 79 |
+
"loss": 1.9538,
|
| 80 |
+
"step": 50
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.08817635270541083,
|
| 84 |
+
"grad_norm": 1.1754084825515747,
|
| 85 |
+
"learning_rate": 1.894736842105263e-05,
|
| 86 |
+
"loss": 1.7687,
|
| 87 |
+
"step": 55
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.09619238476953908,
|
| 91 |
+
"grad_norm": 0.93027663230896,
|
| 92 |
+
"learning_rate": 1.999993988083788e-05,
|
| 93 |
+
"loss": 1.6448,
|
| 94 |
+
"step": 60
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.10420841683366733,
|
| 98 |
+
"grad_norm": 1.0409395694732666,
|
| 99 |
+
"learning_rate": 1.999926354856561e-05,
|
| 100 |
+
"loss": 1.4744,
|
| 101 |
+
"step": 65
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.11222444889779559,
|
| 105 |
+
"grad_norm": 0.9661508202552795,
|
| 106 |
+
"learning_rate": 1.999783578606323e-05,
|
| 107 |
+
"loss": 1.3396,
|
| 108 |
+
"step": 70
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.12024048096192384,
|
| 112 |
+
"grad_norm": 0.6014273166656494,
|
| 113 |
+
"learning_rate": 1.999565670062504e-05,
|
| 114 |
+
"loss": 1.2886,
|
| 115 |
+
"step": 75
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.1282565130260521,
|
| 119 |
+
"grad_norm": 0.5582892894744873,
|
| 120 |
+
"learning_rate": 1.9992726456006157e-05,
|
| 121 |
+
"loss": 1.1745,
|
| 122 |
+
"step": 80
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.13627254509018036,
|
| 126 |
+
"grad_norm": 0.4300733804702759,
|
| 127 |
+
"learning_rate": 1.9989045272410242e-05,
|
| 128 |
+
"loss": 1.163,
|
| 129 |
+
"step": 85
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.14428857715430862,
|
| 133 |
+
"grad_norm": 0.6262882351875305,
|
| 134 |
+
"learning_rate": 1.9984613426472934e-05,
|
| 135 |
+
"loss": 1.2483,
|
| 136 |
+
"step": 90
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.1523046092184369,
|
| 140 |
+
"grad_norm": 0.3891115188598633,
|
| 141 |
+
"learning_rate": 1.9979431251241057e-05,
|
| 142 |
+
"loss": 1.1076,
|
| 143 |
+
"step": 95
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.16032064128256512,
|
| 147 |
+
"grad_norm": 3.9172680377960205,
|
| 148 |
+
"learning_rate": 1.997349913614761e-05,
|
| 149 |
+
"loss": 1.1621,
|
| 150 |
+
"step": 100
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.1683366733466934,
|
| 154 |
+
"grad_norm": 0.3938579857349396,
|
| 155 |
+
"learning_rate": 1.9966817526982473e-05,
|
| 156 |
+
"loss": 1.1969,
|
| 157 |
+
"step": 105
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.17635270541082165,
|
| 161 |
+
"grad_norm": 0.4831806719303131,
|
| 162 |
+
"learning_rate": 1.9959386925858944e-05,
|
| 163 |
+
"loss": 1.1086,
|
| 164 |
+
"step": 110
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.1843687374749499,
|
| 168 |
+
"grad_norm": 0.3328356444835663,
|
| 169 |
+
"learning_rate": 1.9951207891175973e-05,
|
| 170 |
+
"loss": 1.0541,
|
| 171 |
+
"step": 115
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.19238476953907815,
|
| 175 |
+
"grad_norm": 0.5235080122947693,
|
| 176 |
+
"learning_rate": 1.9942281037576223e-05,
|
| 177 |
+
"loss": 1.0936,
|
| 178 |
+
"step": 120
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.20040080160320642,
|
| 182 |
+
"grad_norm": 0.3490229547023773,
|
| 183 |
+
"learning_rate": 1.993260703589986e-05,
|
| 184 |
+
"loss": 1.0498,
|
| 185 |
+
"step": 125
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.20841683366733466,
|
| 189 |
+
"grad_norm": 1.1637717485427856,
|
| 190 |
+
"learning_rate": 1.9922186613134152e-05,
|
| 191 |
+
"loss": 1.0424,
|
| 192 |
+
"step": 130
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.21643286573146292,
|
| 196 |
+
"grad_norm": 0.3831629157066345,
|
| 197 |
+
"learning_rate": 1.991102055235884e-05,
|
| 198 |
+
"loss": 1.105,
|
| 199 |
+
"step": 135
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.22444889779559118,
|
| 203 |
+
"grad_norm": 0.5610520243644714,
|
| 204 |
+
"learning_rate": 1.989910969268728e-05,
|
| 205 |
+
"loss": 1.1341,
|
| 206 |
+
"step": 140
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.23246492985971945,
|
| 210 |
+
"grad_norm": 0.5133630037307739,
|
| 211 |
+
"learning_rate": 1.9886454929203394e-05,
|
| 212 |
+
"loss": 1.0598,
|
| 213 |
+
"step": 145
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.24048096192384769,
|
| 217 |
+
"grad_norm": 0.3511698246002197,
|
| 218 |
+
"learning_rate": 1.98730572128944e-05,
|
| 219 |
+
"loss": 0.9851,
|
| 220 |
+
"step": 150
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.24849699398797595,
|
| 224 |
+
"grad_norm": 0.4384966790676117,
|
| 225 |
+
"learning_rate": 1.985891755057935e-05,
|
| 226 |
+
"loss": 1.0148,
|
| 227 |
+
"step": 155
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.2565130260521042,
|
| 231 |
+
"grad_norm": 0.5588643550872803,
|
| 232 |
+
"learning_rate": 1.984403700483347e-05,
|
| 233 |
+
"loss": 1.0541,
|
| 234 |
+
"step": 160
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.26452905811623245,
|
| 238 |
+
"grad_norm": 0.3638758063316345,
|
| 239 |
+
"learning_rate": 1.9828416693908305e-05,
|
| 240 |
+
"loss": 0.8998,
|
| 241 |
+
"step": 165
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.2725450901803607,
|
| 245 |
+
"grad_norm": 0.3875952959060669,
|
| 246 |
+
"learning_rate": 1.9812057791647687e-05,
|
| 247 |
+
"loss": 0.9024,
|
| 248 |
+
"step": 170
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.280561122244489,
|
| 252 |
+
"grad_norm": 0.3295404016971588,
|
| 253 |
+
"learning_rate": 1.9794961527399518e-05,
|
| 254 |
+
"loss": 0.9846,
|
| 255 |
+
"step": 175
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.28857715430861725,
|
| 259 |
+
"grad_norm": 0.3046537935733795,
|
| 260 |
+
"learning_rate": 1.9777129185923397e-05,
|
| 261 |
+
"loss": 0.9746,
|
| 262 |
+
"step": 180
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.2965931863727455,
|
| 266 |
+
"grad_norm": 0.41136643290519714,
|
| 267 |
+
"learning_rate": 1.975856210729405e-05,
|
| 268 |
+
"loss": 1.0259,
|
| 269 |
+
"step": 185
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 0.3046092184368738,
|
| 273 |
+
"grad_norm": 0.4319979250431061,
|
| 274 |
+
"learning_rate": 1.9739261686800662e-05,
|
| 275 |
+
"loss": 1.0129,
|
| 276 |
+
"step": 190
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.312625250501002,
|
| 280 |
+
"grad_norm": 0.45283690094947815,
|
| 281 |
+
"learning_rate": 1.9719229374841978e-05,
|
| 282 |
+
"loss": 0.9649,
|
| 283 |
+
"step": 195
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"epoch": 0.32064128256513025,
|
| 287 |
+
"grad_norm": 0.2747628092765808,
|
| 288 |
+
"learning_rate": 1.9698466676817348e-05,
|
| 289 |
+
"loss": 0.9863,
|
| 290 |
+
"step": 200
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.3286573146292585,
|
| 294 |
+
"grad_norm": 1.5212770700454712,
|
| 295 |
+
"learning_rate": 1.9676975153013574e-05,
|
| 296 |
+
"loss": 0.9803,
|
| 297 |
+
"step": 205
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 0.3366733466933868,
|
| 301 |
+
"grad_norm": 0.48161494731903076,
|
| 302 |
+
"learning_rate": 1.965475641848767e-05,
|
| 303 |
+
"loss": 1.031,
|
| 304 |
+
"step": 210
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.34468937875751504,
|
| 308 |
+
"grad_norm": 0.31916359066963196,
|
| 309 |
+
"learning_rate": 1.9631812142945473e-05,
|
| 310 |
+
"loss": 1.0912,
|
| 311 |
+
"step": 215
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"epoch": 0.3527054108216433,
|
| 315 |
+
"grad_norm": 0.418302059173584,
|
| 316 |
+
"learning_rate": 1.9608144050616192e-05,
|
| 317 |
+
"loss": 0.9857,
|
| 318 |
+
"step": 220
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.36072144288577157,
|
| 322 |
+
"grad_norm": 0.38761621713638306,
|
| 323 |
+
"learning_rate": 1.9583753920122822e-05,
|
| 324 |
+
"loss": 1.0441,
|
| 325 |
+
"step": 225
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.3687374749498998,
|
| 329 |
+
"grad_norm": 0.33479398488998413,
|
| 330 |
+
"learning_rate": 1.9558643584348478e-05,
|
| 331 |
+
"loss": 0.9453,
|
| 332 |
+
"step": 230
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.37675350701402804,
|
| 336 |
+
"grad_norm": 0.36575448513031006,
|
| 337 |
+
"learning_rate": 1.9532814930298673e-05,
|
| 338 |
+
"loss": 0.9196,
|
| 339 |
+
"step": 235
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 0.3847695390781563,
|
| 343 |
+
"grad_norm": 0.33325284719467163,
|
| 344 |
+
"learning_rate": 1.95062698989595e-05,
|
| 345 |
+
"loss": 1.0024,
|
| 346 |
+
"step": 240
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.3927855711422846,
|
| 350 |
+
"grad_norm": 0.3346043825149536,
|
| 351 |
+
"learning_rate": 1.947901048515176e-05,
|
| 352 |
+
"loss": 0.9017,
|
| 353 |
+
"step": 245
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"epoch": 0.40080160320641284,
|
| 357 |
+
"grad_norm": 0.4760594666004181,
|
| 358 |
+
"learning_rate": 1.9451038737381078e-05,
|
| 359 |
+
"loss": 0.941,
|
| 360 |
+
"step": 250
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.4088176352705411,
|
| 364 |
+
"grad_norm": 0.3105100989341736,
|
| 365 |
+
"learning_rate": 1.9422356757683946e-05,
|
| 366 |
+
"loss": 0.9357,
|
| 367 |
+
"step": 255
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 0.4168336673346693,
|
| 371 |
+
"grad_norm": 0.35822534561157227,
|
| 372 |
+
"learning_rate": 1.939296670146976e-05,
|
| 373 |
+
"loss": 1.002,
|
| 374 |
+
"step": 260
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.4248496993987976,
|
| 378 |
+
"grad_norm": 0.4366324245929718,
|
| 379 |
+
"learning_rate": 1.936287077735884e-05,
|
| 380 |
+
"loss": 0.9836,
|
| 381 |
+
"step": 265
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 0.43286573146292584,
|
| 385 |
+
"grad_norm": 0.339522123336792,
|
| 386 |
+
"learning_rate": 1.9332071247016476e-05,
|
| 387 |
+
"loss": 0.8653,
|
| 388 |
+
"step": 270
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.4408817635270541,
|
| 392 |
+
"grad_norm": 0.31696006655693054,
|
| 393 |
+
"learning_rate": 1.930057042498293e-05,
|
| 394 |
+
"loss": 0.9843,
|
| 395 |
+
"step": 275
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 0.44889779559118237,
|
| 399 |
+
"grad_norm": 0.30729272961616516,
|
| 400 |
+
"learning_rate": 1.926837067849953e-05,
|
| 401 |
+
"loss": 1.0606,
|
| 402 |
+
"step": 280
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.45691382765531063,
|
| 406 |
+
"grad_norm": 0.4165307879447937,
|
| 407 |
+
"learning_rate": 1.9235474427330783e-05,
|
| 408 |
+
"loss": 0.9156,
|
| 409 |
+
"step": 285
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 0.4649298597194389,
|
| 413 |
+
"grad_norm": 0.43856576085090637,
|
| 414 |
+
"learning_rate": 1.9201884143582496e-05,
|
| 415 |
+
"loss": 0.9984,
|
| 416 |
+
"step": 290
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.4729458917835671,
|
| 420 |
+
"grad_norm": 0.333844393491745,
|
| 421 |
+
"learning_rate": 1.916760235151604e-05,
|
| 422 |
+
"loss": 0.9388,
|
| 423 |
+
"step": 295
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 0.48096192384769537,
|
| 427 |
+
"grad_norm": 0.34350189566612244,
|
| 428 |
+
"learning_rate": 1.913263162735862e-05,
|
| 429 |
+
"loss": 0.9525,
|
| 430 |
+
"step": 300
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.48897795591182364,
|
| 434 |
+
"grad_norm": 0.37638700008392334,
|
| 435 |
+
"learning_rate": 1.909697459910972e-05,
|
| 436 |
+
"loss": 0.9491,
|
| 437 |
+
"step": 305
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 0.4969939879759519,
|
| 441 |
+
"grad_norm": 0.37804660201072693,
|
| 442 |
+
"learning_rate": 1.906063394634356e-05,
|
| 443 |
+
"loss": 0.9613,
|
| 444 |
+
"step": 310
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.5050100200400801,
|
| 448 |
+
"grad_norm": 0.39323610067367554,
|
| 449 |
+
"learning_rate": 1.902361240000778e-05,
|
| 450 |
+
"loss": 0.9028,
|
| 451 |
+
"step": 315
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.5130260521042084,
|
| 455 |
+
"grad_norm": 0.3674936294555664,
|
| 456 |
+
"learning_rate": 1.8985912742218167e-05,
|
| 457 |
+
"loss": 1.0493,
|
| 458 |
+
"step": 320
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.5210420841683366,
|
| 462 |
+
"grad_norm": 0.432797908782959,
|
| 463 |
+
"learning_rate": 1.894753780604962e-05,
|
| 464 |
+
"loss": 1.0113,
|
| 465 |
+
"step": 325
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 0.5290581162324649,
|
| 469 |
+
"grad_norm": 0.33035048842430115,
|
| 470 |
+
"learning_rate": 1.8908490475323234e-05,
|
| 471 |
+
"loss": 0.9485,
|
| 472 |
+
"step": 330
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.5370741482965932,
|
| 476 |
+
"grad_norm": 0.4390115439891815,
|
| 477 |
+
"learning_rate": 1.886877368438957e-05,
|
| 478 |
+
"loss": 0.8867,
|
| 479 |
+
"step": 335
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 0.5450901803607214,
|
| 483 |
+
"grad_norm": 0.3174438178539276,
|
| 484 |
+
"learning_rate": 1.882839041790818e-05,
|
| 485 |
+
"loss": 0.8476,
|
| 486 |
+
"step": 340
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.5531062124248497,
|
| 490 |
+
"grad_norm": 0.35620829463005066,
|
| 491 |
+
"learning_rate": 1.8787343710623278e-05,
|
| 492 |
+
"loss": 0.9164,
|
| 493 |
+
"step": 345
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"epoch": 0.561122244488978,
|
| 497 |
+
"grad_norm": 0.36334139108657837,
|
| 498 |
+
"learning_rate": 1.8745636647135693e-05,
|
| 499 |
+
"loss": 1.0097,
|
| 500 |
+
"step": 350
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.5691382765531062,
|
| 504 |
+
"grad_norm": 0.2904795706272125,
|
| 505 |
+
"learning_rate": 1.870327236167109e-05,
|
| 506 |
+
"loss": 0.849,
|
| 507 |
+
"step": 355
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 0.5771543086172345,
|
| 511 |
+
"grad_norm": 0.287715882062912,
|
| 512 |
+
"learning_rate": 1.866025403784439e-05,
|
| 513 |
+
"loss": 0.9578,
|
| 514 |
+
"step": 360
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.5851703406813628,
|
| 518 |
+
"grad_norm": 0.3586503565311432,
|
| 519 |
+
"learning_rate": 1.8616584908420573e-05,
|
| 520 |
+
"loss": 0.9323,
|
| 521 |
+
"step": 365
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"epoch": 0.593186372745491,
|
| 525 |
+
"grad_norm": 0.8753472566604614,
|
| 526 |
+
"learning_rate": 1.8572268255071718e-05,
|
| 527 |
+
"loss": 0.903,
|
| 528 |
+
"step": 370
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.6012024048096193,
|
| 532 |
+
"grad_norm": 0.5796067118644714,
|
| 533 |
+
"learning_rate": 1.8527307408130388e-05,
|
| 534 |
+
"loss": 0.9665,
|
| 535 |
+
"step": 375
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 0.6092184368737475,
|
| 539 |
+
"grad_norm": 0.3357750177383423,
|
| 540 |
+
"learning_rate": 1.848170574633937e-05,
|
| 541 |
+
"loss": 0.8183,
|
| 542 |
+
"step": 380
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.6172344689378757,
|
| 546 |
+
"grad_norm": 0.3579539954662323,
|
| 547 |
+
"learning_rate": 1.8435466696597758e-05,
|
| 548 |
+
"loss": 0.9593,
|
| 549 |
+
"step": 385
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 0.625250501002004,
|
| 553 |
+
"grad_norm": 0.30244457721710205,
|
| 554 |
+
"learning_rate": 1.8388593733703428e-05,
|
| 555 |
+
"loss": 0.9102,
|
| 556 |
+
"step": 390
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.6332665330661322,
|
| 560 |
+
"grad_norm": 0.37754353880882263,
|
| 561 |
+
"learning_rate": 1.8341090380091926e-05,
|
| 562 |
+
"loss": 0.8921,
|
| 563 |
+
"step": 395
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 0.6412825651302605,
|
| 567 |
+
"grad_norm": 0.316244512796402,
|
| 568 |
+
"learning_rate": 1.8292960205571742e-05,
|
| 569 |
+
"loss": 0.8915,
|
| 570 |
+
"step": 400
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.6492985971943888,
|
| 574 |
+
"grad_norm": 0.3463846445083618,
|
| 575 |
+
"learning_rate": 1.824420682705606e-05,
|
| 576 |
+
"loss": 0.921,
|
| 577 |
+
"step": 405
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.657314629258517,
|
| 581 |
+
"grad_norm": 0.3335030674934387,
|
| 582 |
+
"learning_rate": 1.8194833908290933e-05,
|
| 583 |
+
"loss": 0.8892,
|
| 584 |
+
"step": 410
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.6653306613226453,
|
| 588 |
+
"grad_norm": 0.34191393852233887,
|
| 589 |
+
"learning_rate": 1.814484515957998e-05,
|
| 590 |
+
"loss": 0.8977,
|
| 591 |
+
"step": 415
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 0.6733466933867736,
|
| 595 |
+
"grad_norm": 0.3235023319721222,
|
| 596 |
+
"learning_rate": 1.809424433750555e-05,
|
| 597 |
+
"loss": 0.9092,
|
| 598 |
+
"step": 420
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.6813627254509018,
|
| 602 |
+
"grad_norm": 0.36189472675323486,
|
| 603 |
+
"learning_rate": 1.804303524464643e-05,
|
| 604 |
+
"loss": 0.8349,
|
| 605 |
+
"step": 425
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 0.6893787575150301,
|
| 609 |
+
"grad_norm": 0.3975241482257843,
|
| 610 |
+
"learning_rate": 1.799122172929206e-05,
|
| 611 |
+
"loss": 0.8988,
|
| 612 |
+
"step": 430
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.6973947895791583,
|
| 616 |
+
"grad_norm": 0.3317061960697174,
|
| 617 |
+
"learning_rate": 1.793880768515337e-05,
|
| 618 |
+
"loss": 1.0006,
|
| 619 |
+
"step": 435
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 0.7054108216432866,
|
| 623 |
+
"grad_norm": 0.380412220954895,
|
| 624 |
+
"learning_rate": 1.788579705107017e-05,
|
| 625 |
+
"loss": 0.8576,
|
| 626 |
+
"step": 440
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.7134268537074149,
|
| 630 |
+
"grad_norm": 0.3645264804363251,
|
| 631 |
+
"learning_rate": 1.7832193810715125e-05,
|
| 632 |
+
"loss": 1.0026,
|
| 633 |
+
"step": 445
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 0.7214428857715431,
|
| 637 |
+
"grad_norm": 0.3171364665031433,
|
| 638 |
+
"learning_rate": 1.7778001992294426e-05,
|
| 639 |
+
"loss": 0.8791,
|
| 640 |
+
"step": 450
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.7294589178356713,
|
| 644 |
+
"grad_norm": 0.3164263069629669,
|
| 645 |
+
"learning_rate": 1.772322566824504e-05,
|
| 646 |
+
"loss": 0.8095,
|
| 647 |
+
"step": 455
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"epoch": 0.7374749498997996,
|
| 651 |
+
"grad_norm": 0.43192753195762634,
|
| 652 |
+
"learning_rate": 1.7667868954928695e-05,
|
| 653 |
+
"loss": 0.962,
|
| 654 |
+
"step": 460
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.7454909819639278,
|
| 658 |
+
"grad_norm": 0.3209589421749115,
|
| 659 |
+
"learning_rate": 1.761193601232254e-05,
|
| 660 |
+
"loss": 0.858,
|
| 661 |
+
"step": 465
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"epoch": 0.7535070140280561,
|
| 665 |
+
"grad_norm": 0.3736160397529602,
|
| 666 |
+
"learning_rate": 1.7555431043706517e-05,
|
| 667 |
+
"loss": 1.0115,
|
| 668 |
+
"step": 470
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.7615230460921844,
|
| 672 |
+
"grad_norm": 0.36832720041275024,
|
| 673 |
+
"learning_rate": 1.74983582953475e-05,
|
| 674 |
+
"loss": 0.8106,
|
| 675 |
+
"step": 475
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 0.7695390781563126,
|
| 679 |
+
"grad_norm": 0.3430776596069336,
|
| 680 |
+
"learning_rate": 1.744072205618019e-05,
|
| 681 |
+
"loss": 0.9519,
|
| 682 |
+
"step": 480
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.7775551102204409,
|
| 686 |
+
"grad_norm": 0.3065486252307892,
|
| 687 |
+
"learning_rate": 1.7382526657484815e-05,
|
| 688 |
+
"loss": 0.8079,
|
| 689 |
+
"step": 485
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 0.7855711422845691,
|
| 693 |
+
"grad_norm": 0.33461305499076843,
|
| 694 |
+
"learning_rate": 1.7323776472561625e-05,
|
| 695 |
+
"loss": 0.8935,
|
| 696 |
+
"step": 490
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.7935871743486974,
|
| 700 |
+
"grad_norm": 0.4995952546596527,
|
| 701 |
+
"learning_rate": 1.7264475916402264e-05,
|
| 702 |
+
"loss": 0.885,
|
| 703 |
+
"step": 495
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.8016032064128257,
|
| 707 |
+
"grad_norm": 0.29805514216423035,
|
| 708 |
+
"learning_rate": 1.7204629445357978e-05,
|
| 709 |
+
"loss": 0.8196,
|
| 710 |
+
"step": 500
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.8096192384769539,
|
| 714 |
+
"grad_norm": 0.2961992621421814,
|
| 715 |
+
"learning_rate": 1.7144241556804724e-05,
|
| 716 |
+
"loss": 0.8429,
|
| 717 |
+
"step": 505
|
| 718 |
+
},
|
| 719 |
+
{
|
| 720 |
+
"epoch": 0.8176352705410822,
|
| 721 |
+
"grad_norm": 0.3210907280445099,
|
| 722 |
+
"learning_rate": 1.7083316788805212e-05,
|
| 723 |
+
"loss": 1.0272,
|
| 724 |
+
"step": 510
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.8256513026052105,
|
| 728 |
+
"grad_norm": 0.34204360842704773,
|
| 729 |
+
"learning_rate": 1.7021859719767855e-05,
|
| 730 |
+
"loss": 0.9828,
|
| 731 |
+
"step": 515
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 0.8336673346693386,
|
| 735 |
+
"grad_norm": 0.367639422416687,
|
| 736 |
+
"learning_rate": 1.6959874968102736e-05,
|
| 737 |
+
"loss": 1.0168,
|
| 738 |
+
"step": 520
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.8416833667334669,
|
| 742 |
+
"grad_norm": 0.393257200717926,
|
| 743 |
+
"learning_rate": 1.689736719187452e-05,
|
| 744 |
+
"loss": 0.8997,
|
| 745 |
+
"step": 525
|
| 746 |
+
},
|
| 747 |
+
{
|
| 748 |
+
"epoch": 0.8496993987975952,
|
| 749 |
+
"grad_norm": 0.35654187202453613,
|
| 750 |
+
"learning_rate": 1.683434108845241e-05,
|
| 751 |
+
"loss": 0.9833,
|
| 752 |
+
"step": 530
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.8577154308617234,
|
| 756 |
+
"grad_norm": 0.3392307460308075,
|
| 757 |
+
"learning_rate": 1.677080139415715e-05,
|
| 758 |
+
"loss": 0.8618,
|
| 759 |
+
"step": 535
|
| 760 |
+
},
|
| 761 |
+
{
|
| 762 |
+
"epoch": 0.8657314629258517,
|
| 763 |
+
"grad_norm": 0.4089815020561218,
|
| 764 |
+
"learning_rate": 1.6706752883905107e-05,
|
| 765 |
+
"loss": 0.8715,
|
| 766 |
+
"step": 540
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.87374749498998,
|
| 770 |
+
"grad_norm": 0.340652734041214,
|
| 771 |
+
"learning_rate": 1.6642200370849427e-05,
|
| 772 |
+
"loss": 0.9329,
|
| 773 |
+
"step": 545
|
| 774 |
+
},
|
| 775 |
+
{
|
| 776 |
+
"epoch": 0.8817635270541082,
|
| 777 |
+
"grad_norm": 0.3595132529735565,
|
| 778 |
+
"learning_rate": 1.657714870601833e-05,
|
| 779 |
+
"loss": 0.8755,
|
| 780 |
+
"step": 550
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.8897795591182365,
|
| 784 |
+
"grad_norm": 0.3543437421321869,
|
| 785 |
+
"learning_rate": 1.6511602777950585e-05,
|
| 786 |
+
"loss": 0.9098,
|
| 787 |
+
"step": 555
|
| 788 |
+
},
|
| 789 |
+
{
|
| 790 |
+
"epoch": 0.8977955911823647,
|
| 791 |
+
"grad_norm": 0.3310873508453369,
|
| 792 |
+
"learning_rate": 1.6445567512328122e-05,
|
| 793 |
+
"loss": 0.8433,
|
| 794 |
+
"step": 560
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.905811623246493,
|
| 798 |
+
"grad_norm": 0.3629891574382782,
|
| 799 |
+
"learning_rate": 1.6379047871605897e-05,
|
| 800 |
+
"loss": 0.9434,
|
| 801 |
+
"step": 565
|
| 802 |
+
},
|
| 803 |
+
{
|
| 804 |
+
"epoch": 0.9138276553106213,
|
| 805 |
+
"grad_norm": 0.3259185552597046,
|
| 806 |
+
"learning_rate": 1.6312048854638927e-05,
|
| 807 |
+
"loss": 0.8551,
|
| 808 |
+
"step": 570
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.9218436873747495,
|
| 812 |
+
"grad_norm": 0.4061657786369324,
|
| 813 |
+
"learning_rate": 1.6244575496306696e-05,
|
| 814 |
+
"loss": 0.8558,
|
| 815 |
+
"step": 575
|
| 816 |
+
},
|
| 817 |
+
{
|
| 818 |
+
"epoch": 0.9298597194388778,
|
| 819 |
+
"grad_norm": 0.28805726766586304,
|
| 820 |
+
"learning_rate": 1.6176632867134738e-05,
|
| 821 |
+
"loss": 0.8577,
|
| 822 |
+
"step": 580
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.9378757515030061,
|
| 826 |
+
"grad_norm": 1.7116715908050537,
|
| 827 |
+
"learning_rate": 1.610822607291361e-05,
|
| 828 |
+
"loss": 0.8773,
|
| 829 |
+
"step": 585
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.9458917835671342,
|
| 833 |
+
"grad_norm": 0.36534276604652405,
|
| 834 |
+
"learning_rate": 1.6039360254315213e-05,
|
| 835 |
+
"loss": 0.9772,
|
| 836 |
+
"step": 590
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.9539078156312625,
|
| 840 |
+
"grad_norm": 0.33474084734916687,
|
| 841 |
+
"learning_rate": 1.597004058650647e-05,
|
| 842 |
+
"loss": 0.8995,
|
| 843 |
+
"step": 595
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"epoch": 0.9619238476953907,
|
| 847 |
+
"grad_norm": 0.3544546067714691,
|
| 848 |
+
"learning_rate": 1.5900272278760407e-05,
|
| 849 |
+
"loss": 0.8963,
|
| 850 |
+
"step": 600
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.969939879759519,
|
| 854 |
+
"grad_norm": 0.8063123822212219,
|
| 855 |
+
"learning_rate": 1.5830060574064698e-05,
|
| 856 |
+
"loss": 0.9184,
|
| 857 |
+
"step": 605
|
| 858 |
+
},
|
| 859 |
+
{
|
| 860 |
+
"epoch": 0.9779559118236473,
|
| 861 |
+
"grad_norm": 0.35473623871803284,
|
| 862 |
+
"learning_rate": 1.5759410748727663e-05,
|
| 863 |
+
"loss": 0.8378,
|
| 864 |
+
"step": 610
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.9859719438877755,
|
| 868 |
+
"grad_norm": 0.4922749996185303,
|
| 869 |
+
"learning_rate": 1.5688328111981747e-05,
|
| 870 |
+
"loss": 0.8228,
|
| 871 |
+
"step": 615
|
| 872 |
+
},
|
| 873 |
+
{
|
| 874 |
+
"epoch": 0.9939879759519038,
|
| 875 |
+
"grad_norm": 0.3475538492202759,
|
| 876 |
+
"learning_rate": 1.5616818005584554e-05,
|
| 877 |
+
"loss": 0.8499,
|
| 878 |
+
"step": 620
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 1.0016032064128257,
|
| 882 |
+
"grad_norm": 0.40670621395111084,
|
| 883 |
+
"learning_rate": 1.554488580341742e-05,
|
| 884 |
+
"loss": 0.9474,
|
| 885 |
+
"step": 625
|
| 886 |
+
},
|
| 887 |
+
{
|
| 888 |
+
"epoch": 1.009619238476954,
|
| 889 |
+
"grad_norm": 0.35096031427383423,
|
| 890 |
+
"learning_rate": 1.547253691108156e-05,
|
| 891 |
+
"loss": 0.9408,
|
| 892 |
+
"step": 630
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 1.0176352705410823,
|
| 896 |
+
"grad_norm": 0.477050244808197,
|
| 897 |
+
"learning_rate": 1.539977676549186e-05,
|
| 898 |
+
"loss": 0.8426,
|
| 899 |
+
"step": 635
|
| 900 |
+
},
|
| 901 |
+
{
|
| 902 |
+
"epoch": 1.0256513026052103,
|
| 903 |
+
"grad_norm": 0.3859562575817108,
|
| 904 |
+
"learning_rate": 1.532661083446829e-05,
|
| 905 |
+
"loss": 0.8802,
|
| 906 |
+
"step": 640
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 1.0336673346693386,
|
| 910 |
+
"grad_norm": 0.920563280582428,
|
| 911 |
+
"learning_rate": 1.5253044616325015e-05,
|
| 912 |
+
"loss": 0.8237,
|
| 913 |
+
"step": 645
|
| 914 |
+
},
|
| 915 |
+
{
|
| 916 |
+
"epoch": 1.0416833667334668,
|
| 917 |
+
"grad_norm": 0.3554023504257202,
|
| 918 |
+
"learning_rate": 1.5179083639457193e-05,
|
| 919 |
+
"loss": 0.8263,
|
| 920 |
+
"step": 650
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 1.049699398797595,
|
| 924 |
+
"grad_norm": 0.3896832764148712,
|
| 925 |
+
"learning_rate": 1.510473346192554e-05,
|
| 926 |
+
"loss": 0.9112,
|
| 927 |
+
"step": 655
|
| 928 |
+
},
|
| 929 |
+
{
|
| 930 |
+
"epoch": 1.0577154308617234,
|
| 931 |
+
"grad_norm": 0.39052242040634155,
|
| 932 |
+
"learning_rate": 1.5029999671038636e-05,
|
| 933 |
+
"loss": 0.7501,
|
| 934 |
+
"step": 660
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 1.0657314629258516,
|
| 938 |
+
"grad_norm": 0.9520488977432251,
|
| 939 |
+
"learning_rate": 1.4954887882933045e-05,
|
| 940 |
+
"loss": 0.8634,
|
| 941 |
+
"step": 665
|
| 942 |
+
},
|
| 943 |
+
{
|
| 944 |
+
"epoch": 1.07374749498998,
|
| 945 |
+
"grad_norm": 0.4311390817165375,
|
| 946 |
+
"learning_rate": 1.4879403742151283e-05,
|
| 947 |
+
"loss": 1.0027,
|
| 948 |
+
"step": 670
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 1.0817635270541082,
|
| 952 |
+
"grad_norm": 0.29344749450683594,
|
| 953 |
+
"learning_rate": 1.4803552921217636e-05,
|
| 954 |
+
"loss": 0.7963,
|
| 955 |
+
"step": 675
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 1.0897795591182364,
|
| 959 |
+
"grad_norm": 0.4940725266933441,
|
| 960 |
+
"learning_rate": 1.4727341120211869e-05,
|
| 961 |
+
"loss": 0.864,
|
| 962 |
+
"step": 680
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 1.0977955911823647,
|
| 966 |
+
"grad_norm": 0.36703604459762573,
|
| 967 |
+
"learning_rate": 1.4650774066340877e-05,
|
| 968 |
+
"loss": 0.8763,
|
| 969 |
+
"step": 685
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"epoch": 1.105811623246493,
|
| 973 |
+
"grad_norm": 0.485721617937088,
|
| 974 |
+
"learning_rate": 1.4573857513508297e-05,
|
| 975 |
+
"loss": 0.8671,
|
| 976 |
+
"step": 690
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 1.1138276553106212,
|
| 980 |
+
"grad_norm": 0.3963873088359833,
|
| 981 |
+
"learning_rate": 1.4496597241882113e-05,
|
| 982 |
+
"loss": 0.8517,
|
| 983 |
+
"step": 695
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"epoch": 1.1218436873747495,
|
| 987 |
+
"grad_norm": 0.329689085483551,
|
| 988 |
+
"learning_rate": 1.4418999057460277e-05,
|
| 989 |
+
"loss": 0.832,
|
| 990 |
+
"step": 700
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 1.1298597194388778,
|
| 994 |
+
"grad_norm": 0.4781339466571808,
|
| 995 |
+
"learning_rate": 1.4341068791634399e-05,
|
| 996 |
+
"loss": 0.9939,
|
| 997 |
+
"step": 705
|
| 998 |
+
},
|
| 999 |
+
{
|
| 1000 |
+
"epoch": 1.137875751503006,
|
| 1001 |
+
"grad_norm": 0.33180761337280273,
|
| 1002 |
+
"learning_rate": 1.4262812300751528e-05,
|
| 1003 |
+
"loss": 0.8397,
|
| 1004 |
+
"step": 710
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 1.1458917835671343,
|
| 1008 |
+
"grad_norm": 0.3313557505607605,
|
| 1009 |
+
"learning_rate": 1.4184235465674055e-05,
|
| 1010 |
+
"loss": 0.8507,
|
| 1011 |
+
"step": 715
|
| 1012 |
+
},
|
| 1013 |
+
{
|
| 1014 |
+
"epoch": 1.1539078156312625,
|
| 1015 |
+
"grad_norm": 0.4401721954345703,
|
| 1016 |
+
"learning_rate": 1.4105344191337783e-05,
|
| 1017 |
+
"loss": 0.7881,
|
| 1018 |
+
"step": 720
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 1.1619238476953908,
|
| 1022 |
+
"grad_norm": 0.29335707426071167,
|
| 1023 |
+
"learning_rate": 1.4026144406308155e-05,
|
| 1024 |
+
"loss": 0.8678,
|
| 1025 |
+
"step": 725
|
| 1026 |
+
},
|
| 1027 |
+
{
|
| 1028 |
+
"epoch": 1.169939879759519,
|
| 1029 |
+
"grad_norm": 0.2999337911605835,
|
| 1030 |
+
"learning_rate": 1.3946642062334765e-05,
|
| 1031 |
+
"loss": 0.8667,
|
| 1032 |
+
"step": 730
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 1.1779559118236473,
|
| 1036 |
+
"grad_norm": 0.2895663380622864,
|
| 1037 |
+
"learning_rate": 1.3866843133904064e-05,
|
| 1038 |
+
"loss": 0.8994,
|
| 1039 |
+
"step": 735
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"epoch": 1.1859719438877756,
|
| 1043 |
+
"grad_norm": 0.4325989782810211,
|
| 1044 |
+
"learning_rate": 1.3786753617790405e-05,
|
| 1045 |
+
"loss": 0.8374,
|
| 1046 |
+
"step": 740
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 1.1939879759519039,
|
| 1050 |
+
"grad_norm": 0.4179665148258209,
|
| 1051 |
+
"learning_rate": 1.3706379532605377e-05,
|
| 1052 |
+
"loss": 0.9817,
|
| 1053 |
+
"step": 745
|
| 1054 |
+
},
|
| 1055 |
+
{
|
| 1056 |
+
"epoch": 1.2020040080160321,
|
| 1057 |
+
"grad_norm": 0.3351852297782898,
|
| 1058 |
+
"learning_rate": 1.362572691834553e-05,
|
| 1059 |
+
"loss": 0.8651,
|
| 1060 |
+
"step": 750
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 1.2100200400801604,
|
| 1064 |
+
"grad_norm": 0.3361961245536804,
|
| 1065 |
+
"learning_rate": 1.3544801835938466e-05,
|
| 1066 |
+
"loss": 0.8969,
|
| 1067 |
+
"step": 755
|
| 1068 |
+
},
|
| 1069 |
+
{
|
| 1070 |
+
"epoch": 1.2180360721442887,
|
| 1071 |
+
"grad_norm": 0.5419386029243469,
|
| 1072 |
+
"learning_rate": 1.3463610366787392e-05,
|
| 1073 |
+
"loss": 0.8676,
|
| 1074 |
+
"step": 760
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 1.226052104208417,
|
| 1078 |
+
"grad_norm": 4.783193111419678,
|
| 1079 |
+
"learning_rate": 1.3382158612314075e-05,
|
| 1080 |
+
"loss": 0.8724,
|
| 1081 |
+
"step": 765
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 1.234068136272545,
|
| 1085 |
+
"grad_norm": 0.3341674208641052,
|
| 1086 |
+
"learning_rate": 1.3300452693500358e-05,
|
| 1087 |
+
"loss": 0.8773,
|
| 1088 |
+
"step": 770
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 1.2420841683366732,
|
| 1092 |
+
"grad_norm": 0.3183631896972656,
|
| 1093 |
+
"learning_rate": 1.3218498750428164e-05,
|
| 1094 |
+
"loss": 0.9829,
|
| 1095 |
+
"step": 775
|
| 1096 |
+
},
|
| 1097 |
+
{
|
| 1098 |
+
"epoch": 1.2501002004008015,
|
| 1099 |
+
"grad_norm": 0.30661240220069885,
|
| 1100 |
+
"learning_rate": 1.3136302941818084e-05,
|
| 1101 |
+
"loss": 0.8996,
|
| 1102 |
+
"step": 780
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"epoch": 1.2581162324649298,
|
| 1106 |
+
"grad_norm": 0.31990957260131836,
|
| 1107 |
+
"learning_rate": 1.3053871444566555e-05,
|
| 1108 |
+
"loss": 0.8845,
|
| 1109 |
+
"step": 785
|
| 1110 |
+
},
|
| 1111 |
+
{
|
| 1112 |
+
"epoch": 1.266132264529058,
|
| 1113 |
+
"grad_norm": 0.34186115860939026,
|
| 1114 |
+
"learning_rate": 1.2971210453281675e-05,
|
| 1115 |
+
"loss": 0.9203,
|
| 1116 |
+
"step": 790
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"epoch": 1.2741482965931863,
|
| 1120 |
+
"grad_norm": 0.3045668601989746,
|
| 1121 |
+
"learning_rate": 1.2888326179817686e-05,
|
| 1122 |
+
"loss": 0.827,
|
| 1123 |
+
"step": 795
|
| 1124 |
+
},
|
| 1125 |
+
{
|
| 1126 |
+
"epoch": 1.2821643286573146,
|
| 1127 |
+
"grad_norm": 0.34101662039756775,
|
| 1128 |
+
"learning_rate": 1.2805224852808165e-05,
|
| 1129 |
+
"loss": 0.8177,
|
| 1130 |
+
"step": 800
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"epoch": 1.2901803607214428,
|
| 1134 |
+
"grad_norm": 0.3752049505710602,
|
| 1135 |
+
"learning_rate": 1.2721912717197949e-05,
|
| 1136 |
+
"loss": 0.797,
|
| 1137 |
+
"step": 805
|
| 1138 |
+
},
|
| 1139 |
+
{
|
| 1140 |
+
"epoch": 1.298196392785571,
|
| 1141 |
+
"grad_norm": 0.35838568210601807,
|
| 1142 |
+
"learning_rate": 1.2638396033773836e-05,
|
| 1143 |
+
"loss": 0.8504,
|
| 1144 |
+
"step": 810
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 1.3062124248496993,
|
| 1148 |
+
"grad_norm": 0.4186570346355438,
|
| 1149 |
+
"learning_rate": 1.2554681078694104e-05,
|
| 1150 |
+
"loss": 0.9181,
|
| 1151 |
+
"step": 815
|
| 1152 |
+
},
|
| 1153 |
+
{
|
| 1154 |
+
"epoch": 1.3142284569138276,
|
| 1155 |
+
"grad_norm": 0.3518775701522827,
|
| 1156 |
+
"learning_rate": 1.2470774143016854e-05,
|
| 1157 |
+
"loss": 0.8941,
|
| 1158 |
+
"step": 820
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 1.3222444889779559,
|
| 1162 |
+
"grad_norm": 0.37892553210258484,
|
| 1163 |
+
"learning_rate": 1.238668153222725e-05,
|
| 1164 |
+
"loss": 0.8469,
|
| 1165 |
+
"step": 825
|
| 1166 |
+
},
|
| 1167 |
+
{
|
| 1168 |
+
"epoch": 1.3302605210420841,
|
| 1169 |
+
"grad_norm": 0.3626463711261749,
|
| 1170 |
+
"learning_rate": 1.230240956576367e-05,
|
| 1171 |
+
"loss": 0.9468,
|
| 1172 |
+
"step": 830
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"epoch": 1.3382765531062124,
|
| 1176 |
+
"grad_norm": 0.3972296118736267,
|
| 1177 |
+
"learning_rate": 1.2217964576542829e-05,
|
| 1178 |
+
"loss": 0.9451,
|
| 1179 |
+
"step": 835
|
| 1180 |
+
},
|
| 1181 |
+
{
|
| 1182 |
+
"epoch": 1.3462925851703407,
|
| 1183 |
+
"grad_norm": 0.3794783055782318,
|
| 1184 |
+
"learning_rate": 1.2133352910483838e-05,
|
| 1185 |
+
"loss": 0.8176,
|
| 1186 |
+
"step": 840
|
| 1187 |
+
},
|
| 1188 |
+
{
|
| 1189 |
+
"epoch": 1.354308617234469,
|
| 1190 |
+
"grad_norm": 0.3861818313598633,
|
| 1191 |
+
"learning_rate": 1.204858092603133e-05,
|
| 1192 |
+
"loss": 0.7841,
|
| 1193 |
+
"step": 845
|
| 1194 |
+
},
|
| 1195 |
+
{
|
| 1196 |
+
"epoch": 1.3623246492985972,
|
| 1197 |
+
"grad_norm": 0.30657151341438293,
|
| 1198 |
+
"learning_rate": 1.1963654993677645e-05,
|
| 1199 |
+
"loss": 0.7061,
|
| 1200 |
+
"step": 850
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"epoch": 1.3703406813627255,
|
| 1204 |
+
"grad_norm": 0.338156521320343,
|
| 1205 |
+
"learning_rate": 1.1878581495484074e-05,
|
| 1206 |
+
"loss": 0.7851,
|
| 1207 |
+
"step": 855
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"epoch": 1.3783567134268537,
|
| 1211 |
+
"grad_norm": 0.36862286925315857,
|
| 1212 |
+
"learning_rate": 1.179336682460128e-05,
|
| 1213 |
+
"loss": 1.0114,
|
| 1214 |
+
"step": 860
|
| 1215 |
+
},
|
| 1216 |
+
{
|
| 1217 |
+
"epoch": 1.386372745490982,
|
| 1218 |
+
"grad_norm": 0.3428620398044586,
|
| 1219 |
+
"learning_rate": 1.1708017384788842e-05,
|
| 1220 |
+
"loss": 0.9138,
|
| 1221 |
+
"step": 865
|
| 1222 |
+
},
|
| 1223 |
+
{
|
| 1224 |
+
"epoch": 1.3943887775551103,
|
| 1225 |
+
"grad_norm": 0.3690953254699707,
|
| 1226 |
+
"learning_rate": 1.1622539589934027e-05,
|
| 1227 |
+
"loss": 0.9095,
|
| 1228 |
+
"step": 870
|
| 1229 |
+
},
|
| 1230 |
+
{
|
| 1231 |
+
"epoch": 1.4024048096192385,
|
| 1232 |
+
"grad_norm": 0.36460062861442566,
|
| 1233 |
+
"learning_rate": 1.153693986356981e-05,
|
| 1234 |
+
"loss": 0.8913,
|
| 1235 |
+
"step": 875
|
| 1236 |
+
},
|
| 1237 |
+
{
|
| 1238 |
+
"epoch": 1.4104208416833668,
|
| 1239 |
+
"grad_norm": 0.33620065450668335,
|
| 1240 |
+
"learning_rate": 1.145122463839213e-05,
|
| 1241 |
+
"loss": 0.882,
|
| 1242 |
+
"step": 880
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"epoch": 1.418436873747495,
|
| 1246 |
+
"grad_norm": 0.3633309304714203,
|
| 1247 |
+
"learning_rate": 1.1365400355776504e-05,
|
| 1248 |
+
"loss": 0.8295,
|
| 1249 |
+
"step": 885
|
| 1250 |
+
},
|
| 1251 |
+
{
|
| 1252 |
+
"epoch": 1.4264529058116233,
|
| 1253 |
+
"grad_norm": 0.3613939881324768,
|
| 1254 |
+
"learning_rate": 1.1279473465293953e-05,
|
| 1255 |
+
"loss": 0.8322,
|
| 1256 |
+
"step": 890
|
| 1257 |
+
},
|
| 1258 |
+
{
|
| 1259 |
+
"epoch": 1.4344689378757516,
|
| 1260 |
+
"grad_norm": 0.3712775409221649,
|
| 1261 |
+
"learning_rate": 1.1193450424226333e-05,
|
| 1262 |
+
"loss": 0.9109,
|
| 1263 |
+
"step": 895
|
| 1264 |
+
},
|
| 1265 |
+
{
|
| 1266 |
+
"epoch": 1.4424849699398798,
|
| 1267 |
+
"grad_norm": 0.4387439787387848,
|
| 1268 |
+
"learning_rate": 1.1107337697081079e-05,
|
| 1269 |
+
"loss": 0.7593,
|
| 1270 |
+
"step": 900
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 1.450501002004008,
|
| 1274 |
+
"grad_norm": 0.3387526869773865,
|
| 1275 |
+
"learning_rate": 1.1021141755105408e-05,
|
| 1276 |
+
"loss": 0.834,
|
| 1277 |
+
"step": 905
|
| 1278 |
+
},
|
| 1279 |
+
{
|
| 1280 |
+
"epoch": 1.4585170340681364,
|
| 1281 |
+
"grad_norm": 0.37399402260780334,
|
| 1282 |
+
"learning_rate": 1.09348690758e-05,
|
| 1283 |
+
"loss": 0.9176,
|
| 1284 |
+
"step": 910
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 1.4665330661322646,
|
| 1288 |
+
"grad_norm": 0.4290678799152374,
|
| 1289 |
+
"learning_rate": 1.0848526142432252e-05,
|
| 1290 |
+
"loss": 0.8756,
|
| 1291 |
+
"step": 915
|
| 1292 |
+
},
|
| 1293 |
+
{
|
| 1294 |
+
"epoch": 1.474549098196393,
|
| 1295 |
+
"grad_norm": 0.3614942133426666,
|
| 1296 |
+
"learning_rate": 1.0762119443549035e-05,
|
| 1297 |
+
"loss": 0.8709,
|
| 1298 |
+
"step": 920
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"epoch": 1.4825651302605212,
|
| 1302 |
+
"grad_norm": 0.3980346620082855,
|
| 1303 |
+
"learning_rate": 1.0675655472489117e-05,
|
| 1304 |
+
"loss": 0.9928,
|
| 1305 |
+
"step": 925
|
| 1306 |
+
},
|
| 1307 |
+
{
|
| 1308 |
+
"epoch": 1.4905811623246494,
|
| 1309 |
+
"grad_norm": 4.1907243728637695,
|
| 1310 |
+
"learning_rate": 1.0589140726895179e-05,
|
| 1311 |
+
"loss": 0.7494,
|
| 1312 |
+
"step": 930
|
| 1313 |
+
},
|
| 1314 |
+
{
|
| 1315 |
+
"epoch": 1.4985971943887775,
|
| 1316 |
+
"grad_norm": 0.4177466332912445,
|
| 1317 |
+
"learning_rate": 1.0502581708225555e-05,
|
| 1318 |
+
"loss": 0.8649,
|
| 1319 |
+
"step": 935
|
| 1320 |
+
},
|
| 1321 |
+
{
|
| 1322 |
+
"epoch": 1.506613226452906,
|
| 1323 |
+
"grad_norm": 0.4919191300868988,
|
| 1324 |
+
"learning_rate": 1.041598492126561e-05,
|
| 1325 |
+
"loss": 0.8504,
|
| 1326 |
+
"step": 940
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"epoch": 1.5146292585170342,
|
| 1330 |
+
"grad_norm": 0.33262577652931213,
|
| 1331 |
+
"learning_rate": 1.0329356873638958e-05,
|
| 1332 |
+
"loss": 0.8721,
|
| 1333 |
+
"step": 945
|
| 1334 |
+
},
|
| 1335 |
+
{
|
| 1336 |
+
"epoch": 1.5226452905811623,
|
| 1337 |
+
"grad_norm": 0.3962733745574951,
|
| 1338 |
+
"learning_rate": 1.0242704075318402e-05,
|
| 1339 |
+
"loss": 0.9185,
|
| 1340 |
+
"step": 950
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"epoch": 1.5306613226452905,
|
| 1344 |
+
"grad_norm": 0.4132327735424042,
|
| 1345 |
+
"learning_rate": 1.0156033038136728e-05,
|
| 1346 |
+
"loss": 0.8198,
|
| 1347 |
+
"step": 955
|
| 1348 |
+
},
|
| 1349 |
+
{
|
| 1350 |
+
"epoch": 1.5386773547094188,
|
| 1351 |
+
"grad_norm": 0.36191555857658386,
|
| 1352 |
+
"learning_rate": 1.0069350275297338e-05,
|
| 1353 |
+
"loss": 0.8699,
|
| 1354 |
+
"step": 960
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"epoch": 1.546693386773547,
|
| 1358 |
+
"grad_norm": 0.434069961309433,
|
| 1359 |
+
"learning_rate": 9.982662300884813e-06,
|
| 1360 |
+
"loss": 0.8678,
|
| 1361 |
+
"step": 965
|
| 1362 |
+
},
|
| 1363 |
+
{
|
| 1364 |
+
"epoch": 1.5547094188376753,
|
| 1365 |
+
"grad_norm": 0.4045700430870056,
|
| 1366 |
+
"learning_rate": 9.89597562937536e-06,
|
| 1367 |
+
"loss": 0.8307,
|
| 1368 |
+
"step": 970
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"epoch": 1.5627254509018036,
|
| 1372 |
+
"grad_norm": 0.31574735045433044,
|
| 1373 |
+
"learning_rate": 9.809296775147287e-06,
|
| 1374 |
+
"loss": 0.8058,
|
| 1375 |
+
"step": 975
|
| 1376 |
+
},
|
| 1377 |
+
{
|
| 1378 |
+
"epoch": 1.5707414829659319,
|
| 1379 |
+
"grad_norm": 0.38601160049438477,
|
| 1380 |
+
"learning_rate": 9.722632251991445e-06,
|
| 1381 |
+
"loss": 0.8026,
|
| 1382 |
+
"step": 980
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"epoch": 1.5787575150300601,
|
| 1386 |
+
"grad_norm": 0.3911404013633728,
|
| 1387 |
+
"learning_rate": 9.635988572621716e-06,
|
| 1388 |
+
"loss": 0.9165,
|
| 1389 |
+
"step": 985
|
| 1390 |
+
},
|
| 1391 |
+
{
|
| 1392 |
+
"epoch": 1.5867735470941884,
|
| 1393 |
+
"grad_norm": 0.4252789318561554,
|
| 1394 |
+
"learning_rate": 9.54937224818561e-06,
|
| 1395 |
+
"loss": 0.9078,
|
| 1396 |
+
"step": 990
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 1.5947895791583167,
|
| 1400 |
+
"grad_norm": 0.32735535502433777,
|
| 1401 |
+
"learning_rate": 9.462789787774944e-06,
|
| 1402 |
+
"loss": 0.8508,
|
| 1403 |
+
"step": 995
|
| 1404 |
+
},
|
| 1405 |
+
{
|
| 1406 |
+
"epoch": 1.602805611222445,
|
| 1407 |
+
"grad_norm": 0.3567563593387604,
|
| 1408 |
+
"learning_rate": 9.376247697936719e-06,
|
| 1409 |
+
"loss": 0.8884,
|
| 1410 |
+
"step": 1000
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"epoch": 1.6108216432865732,
|
| 1414 |
+
"grad_norm": 0.3730451166629791,
|
| 1415 |
+
"learning_rate": 9.289752482184128e-06,
|
| 1416 |
+
"loss": 0.8712,
|
| 1417 |
+
"step": 1005
|
| 1418 |
+
},
|
| 1419 |
+
{
|
| 1420 |
+
"epoch": 1.6188376753507014,
|
| 1421 |
+
"grad_norm": 0.34543997049331665,
|
| 1422 |
+
"learning_rate": 9.20331064050785e-06,
|
| 1423 |
+
"loss": 0.8948,
|
| 1424 |
+
"step": 1010
|
| 1425 |
+
},
|
| 1426 |
+
{
|
| 1427 |
+
"epoch": 1.6268537074148297,
|
| 1428 |
+
"grad_norm": 0.3326113522052765,
|
| 1429 |
+
"learning_rate": 9.116928668887587e-06,
|
| 1430 |
+
"loss": 0.8879,
|
| 1431 |
+
"step": 1015
|
| 1432 |
+
},
|
| 1433 |
+
{
|
| 1434 |
+
"epoch": 1.6348697394789578,
|
| 1435 |
+
"grad_norm": 0.33069467544555664,
|
| 1436 |
+
"learning_rate": 9.03061305880388e-06,
|
| 1437 |
+
"loss": 0.7994,
|
| 1438 |
+
"step": 1020
|
| 1439 |
+
},
|
| 1440 |
+
{
|
| 1441 |
+
"epoch": 1.642885771543086,
|
| 1442 |
+
"grad_norm": 0.34401947259902954,
|
| 1443 |
+
"learning_rate": 8.94437029675031e-06,
|
| 1444 |
+
"loss": 0.9361,
|
| 1445 |
+
"step": 1025
|
| 1446 |
+
},
|
| 1447 |
+
{
|
| 1448 |
+
"epoch": 1.6509018036072143,
|
| 1449 |
+
"grad_norm": 0.3548894226551056,
|
| 1450 |
+
"learning_rate": 8.858206863746018e-06,
|
| 1451 |
+
"loss": 0.8401,
|
| 1452 |
+
"step": 1030
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 1.6589178356713425,
|
| 1456 |
+
"grad_norm": 0.3403220474720001,
|
| 1457 |
+
"learning_rate": 8.772129234848692e-06,
|
| 1458 |
+
"loss": 0.7461,
|
| 1459 |
+
"step": 1035
|
| 1460 |
+
},
|
| 1461 |
+
{
|
| 1462 |
+
"epoch": 1.6669338677354708,
|
| 1463 |
+
"grad_norm": 0.4974400997161865,
|
| 1464 |
+
"learning_rate": 8.686143878667965e-06,
|
| 1465 |
+
"loss": 0.8533,
|
| 1466 |
+
"step": 1040
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"epoch": 1.674949899799599,
|
| 1470 |
+
"grad_norm": 0.4107082188129425,
|
| 1471 |
+
"learning_rate": 8.600257256879306e-06,
|
| 1472 |
+
"loss": 0.8885,
|
| 1473 |
+
"step": 1045
|
| 1474 |
+
},
|
| 1475 |
+
{
|
| 1476 |
+
"epoch": 1.6829659318637273,
|
| 1477 |
+
"grad_norm": 0.3612527847290039,
|
| 1478 |
+
"learning_rate": 8.514475823738431e-06,
|
| 1479 |
+
"loss": 0.835,
|
| 1480 |
+
"step": 1050
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"epoch": 1.6909819639278556,
|
| 1484 |
+
"grad_norm": 0.38753876090049744,
|
| 1485 |
+
"learning_rate": 8.428806025596295e-06,
|
| 1486 |
+
"loss": 0.9262,
|
| 1487 |
+
"step": 1055
|
| 1488 |
+
},
|
| 1489 |
+
{
|
| 1490 |
+
"epoch": 1.6989979959919839,
|
| 1491 |
+
"grad_norm": 1.5978801250457764,
|
| 1492 |
+
"learning_rate": 8.343254300414629e-06,
|
| 1493 |
+
"loss": 0.8689,
|
| 1494 |
+
"step": 1060
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"epoch": 1.7070140280561121,
|
| 1498 |
+
"grad_norm": 0.44398370385169983,
|
| 1499 |
+
"learning_rate": 8.257827077282164e-06,
|
| 1500 |
+
"loss": 0.9272,
|
| 1501 |
+
"step": 1065
|
| 1502 |
+
},
|
| 1503 |
+
{
|
| 1504 |
+
"epoch": 1.7150300601202404,
|
| 1505 |
+
"grad_norm": 0.3783067464828491,
|
| 1506 |
+
"learning_rate": 8.172530775931476e-06,
|
| 1507 |
+
"loss": 0.8476,
|
| 1508 |
+
"step": 1070
|
| 1509 |
+
},
|
| 1510 |
+
{
|
| 1511 |
+
"epoch": 1.7230460921843687,
|
| 1512 |
+
"grad_norm": 0.33193129301071167,
|
| 1513 |
+
"learning_rate": 8.087371806256548e-06,
|
| 1514 |
+
"loss": 0.8736,
|
| 1515 |
+
"step": 1075
|
| 1516 |
+
},
|
| 1517 |
+
{
|
| 1518 |
+
"epoch": 1.731062124248497,
|
| 1519 |
+
"grad_norm": 0.4492955207824707,
|
| 1520 |
+
"learning_rate": 8.002356567831104e-06,
|
| 1521 |
+
"loss": 0.8475,
|
| 1522 |
+
"step": 1080
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 1.7390781563126252,
|
| 1526 |
+
"grad_norm": 0.3451695740222931,
|
| 1527 |
+
"learning_rate": 7.917491449427664e-06,
|
| 1528 |
+
"loss": 0.8555,
|
| 1529 |
+
"step": 1085
|
| 1530 |
+
},
|
| 1531 |
+
{
|
| 1532 |
+
"epoch": 1.7470941883767535,
|
| 1533 |
+
"grad_norm": 0.34094515442848206,
|
| 1534 |
+
"learning_rate": 7.832782828537437e-06,
|
| 1535 |
+
"loss": 0.7514,
|
| 1536 |
+
"step": 1090
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"epoch": 1.7551102204408817,
|
| 1540 |
+
"grad_norm": 0.4276813864707947,
|
| 1541 |
+
"learning_rate": 7.748237070891085e-06,
|
| 1542 |
+
"loss": 0.8078,
|
| 1543 |
+
"step": 1095
|
| 1544 |
+
},
|
| 1545 |
+
{
|
| 1546 |
+
"epoch": 1.76312625250501,
|
| 1547 |
+
"grad_norm": 0.31638622283935547,
|
| 1548 |
+
"learning_rate": 7.663860529980318e-06,
|
| 1549 |
+
"loss": 0.8424,
|
| 1550 |
+
"step": 1100
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"epoch": 1.7711422845691382,
|
| 1554 |
+
"grad_norm": 0.3871704339981079,
|
| 1555 |
+
"learning_rate": 7.5796595465804616e-06,
|
| 1556 |
+
"loss": 0.7848,
|
| 1557 |
+
"step": 1105
|
| 1558 |
+
},
|
| 1559 |
+
{
|
| 1560 |
+
"epoch": 1.7791583166332665,
|
| 1561 |
+
"grad_norm": 0.4998142123222351,
|
| 1562 |
+
"learning_rate": 7.495640448273947e-06,
|
| 1563 |
+
"loss": 0.8611,
|
| 1564 |
+
"step": 1110
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"epoch": 1.7871743486973948,
|
| 1568 |
+
"grad_norm": 0.35793057084083557,
|
| 1569 |
+
"learning_rate": 7.411809548974792e-06,
|
| 1570 |
+
"loss": 0.9746,
|
| 1571 |
+
"step": 1115
|
| 1572 |
+
},
|
| 1573 |
+
{
|
| 1574 |
+
"epoch": 1.795190380761523,
|
| 1575 |
+
"grad_norm": 0.4235399067401886,
|
| 1576 |
+
"learning_rate": 7.328173148454151e-06,
|
| 1577 |
+
"loss": 0.9494,
|
| 1578 |
+
"step": 1120
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"epoch": 1.8032064128256513,
|
| 1582 |
+
"grad_norm": 0.35276517271995544,
|
| 1583 |
+
"learning_rate": 7.2447375318668545e-06,
|
| 1584 |
+
"loss": 0.7732,
|
| 1585 |
+
"step": 1125
|
| 1586 |
+
},
|
| 1587 |
+
{
|
| 1588 |
+
"epoch": 1.8112224448897796,
|
| 1589 |
+
"grad_norm": 0.2976204752922058,
|
| 1590 |
+
"learning_rate": 7.1615089692791225e-06,
|
| 1591 |
+
"loss": 0.8344,
|
| 1592 |
+
"step": 1130
|
| 1593 |
+
},
|
| 1594 |
+
{
|
| 1595 |
+
"epoch": 1.8192384769539078,
|
| 1596 |
+
"grad_norm": 0.3903176784515381,
|
| 1597 |
+
"learning_rate": 7.0784937151973666e-06,
|
| 1598 |
+
"loss": 0.8048,
|
| 1599 |
+
"step": 1135
|
| 1600 |
+
},
|
| 1601 |
+
{
|
| 1602 |
+
"epoch": 1.827254509018036,
|
| 1603 |
+
"grad_norm": 0.37830016016960144,
|
| 1604 |
+
"learning_rate": 6.99569800809816e-06,
|
| 1605 |
+
"loss": 0.8156,
|
| 1606 |
+
"step": 1140
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"epoch": 1.8352705410821644,
|
| 1610 |
+
"grad_norm": 0.35692963004112244,
|
| 1611 |
+
"learning_rate": 6.9131280699594545e-06,
|
| 1612 |
+
"loss": 0.8472,
|
| 1613 |
+
"step": 1145
|
| 1614 |
+
},
|
| 1615 |
+
{
|
| 1616 |
+
"epoch": 1.8432865731462926,
|
| 1617 |
+
"grad_norm": 0.35208597779273987,
|
| 1618 |
+
"learning_rate": 6.8307901057929735e-06,
|
| 1619 |
+
"loss": 0.792,
|
| 1620 |
+
"step": 1150
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"epoch": 1.851302605210421,
|
| 1624 |
+
"grad_norm": 0.38317593932151794,
|
| 1625 |
+
"learning_rate": 6.748690303177941e-06,
|
| 1626 |
+
"loss": 0.8337,
|
| 1627 |
+
"step": 1155
|
| 1628 |
+
},
|
| 1629 |
+
{
|
| 1630 |
+
"epoch": 1.8593186372745492,
|
| 1631 |
+
"grad_norm": 0.416199654340744,
|
| 1632 |
+
"learning_rate": 6.66683483179608e-06,
|
| 1633 |
+
"loss": 0.9125,
|
| 1634 |
+
"step": 1160
|
| 1635 |
+
},
|
| 1636 |
+
{
|
| 1637 |
+
"epoch": 1.8673346693386774,
|
| 1638 |
+
"grad_norm": 0.4500935673713684,
|
| 1639 |
+
"learning_rate": 6.585229842967977e-06,
|
| 1640 |
+
"loss": 0.8482,
|
| 1641 |
+
"step": 1165
|
| 1642 |
+
},
|
| 1643 |
+
{
|
| 1644 |
+
"epoch": 1.8753507014028057,
|
| 1645 |
+
"grad_norm": 0.4686901271343231,
|
| 1646 |
+
"learning_rate": 6.5038814691908095e-06,
|
| 1647 |
+
"loss": 0.8502,
|
| 1648 |
+
"step": 1170
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 1.883366733466934,
|
| 1652 |
+
"grad_norm": 0.41259345412254333,
|
| 1653 |
+
"learning_rate": 6.422795823677515e-06,
|
| 1654 |
+
"loss": 0.8229,
|
| 1655 |
+
"step": 1175
|
| 1656 |
+
},
|
| 1657 |
+
{
|
| 1658 |
+
"epoch": 1.8913827655310622,
|
| 1659 |
+
"grad_norm": 0.3402479887008667,
|
| 1660 |
+
"learning_rate": 6.3419789998973655e-06,
|
| 1661 |
+
"loss": 0.787,
|
| 1662 |
+
"step": 1180
|
| 1663 |
+
},
|
| 1664 |
+
{
|
| 1665 |
+
"epoch": 1.8993987975951905,
|
| 1666 |
+
"grad_norm": 0.34355294704437256,
|
| 1667 |
+
"learning_rate": 6.261437071118086e-06,
|
| 1668 |
+
"loss": 0.7658,
|
| 1669 |
+
"step": 1185
|
| 1670 |
+
},
|
| 1671 |
+
{
|
| 1672 |
+
"epoch": 1.9074148296593187,
|
| 1673 |
+
"grad_norm": 0.3370957374572754,
|
| 1674 |
+
"learning_rate": 6.1811760899494276e-06,
|
| 1675 |
+
"loss": 0.8361,
|
| 1676 |
+
"step": 1190
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"epoch": 1.915430861723447,
|
| 1680 |
+
"grad_norm": 0.4238271713256836,
|
| 1681 |
+
"learning_rate": 6.101202087888329e-06,
|
| 1682 |
+
"loss": 0.8249,
|
| 1683 |
+
"step": 1195
|
| 1684 |
+
},
|
| 1685 |
+
{
|
| 1686 |
+
"epoch": 1.9234468937875753,
|
| 1687 |
+
"grad_norm": 0.41702085733413696,
|
| 1688 |
+
"learning_rate": 6.0215210748656785e-06,
|
| 1689 |
+
"loss": 0.8571,
|
| 1690 |
+
"step": 1200
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"epoch": 1.9314629258517035,
|
| 1694 |
+
"grad_norm": 0.3196205794811249,
|
| 1695 |
+
"learning_rate": 5.942139038794645e-06,
|
| 1696 |
+
"loss": 0.803,
|
| 1697 |
+
"step": 1205
|
| 1698 |
+
},
|
| 1699 |
+
{
|
| 1700 |
+
"epoch": 1.9394789579158318,
|
| 1701 |
+
"grad_norm": 0.3203709125518799,
|
| 1702 |
+
"learning_rate": 5.863061945120719e-06,
|
| 1703 |
+
"loss": 0.8299,
|
| 1704 |
+
"step": 1210
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"epoch": 1.94749498997996,
|
| 1708 |
+
"grad_norm": 0.4405556917190552,
|
| 1709 |
+
"learning_rate": 5.784295736373413e-06,
|
| 1710 |
+
"loss": 0.7888,
|
| 1711 |
+
"step": 1215
|
| 1712 |
+
},
|
| 1713 |
+
{
|
| 1714 |
+
"epoch": 1.9555110220440883,
|
| 1715 |
+
"grad_norm": 0.42714062333106995,
|
| 1716 |
+
"learning_rate": 5.705846331719676e-06,
|
| 1717 |
+
"loss": 0.9376,
|
| 1718 |
+
"step": 1220
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"epoch": 1.9635270541082166,
|
| 1722 |
+
"grad_norm": 0.4327429234981537,
|
| 1723 |
+
"learning_rate": 5.627719626519096e-06,
|
| 1724 |
+
"loss": 0.7978,
|
| 1725 |
+
"step": 1225
|
| 1726 |
+
},
|
| 1727 |
+
{
|
| 1728 |
+
"epoch": 1.9715430861723446,
|
| 1729 |
+
"grad_norm": 0.37963250279426575,
|
| 1730 |
+
"learning_rate": 5.549921491880856e-06,
|
| 1731 |
+
"loss": 0.8513,
|
| 1732 |
+
"step": 1230
|
| 1733 |
+
},
|
| 1734 |
+
{
|
| 1735 |
+
"epoch": 1.979559118236473,
|
| 1736 |
+
"grad_norm": 0.4149099588394165,
|
| 1737 |
+
"learning_rate": 5.472457774222535e-06,
|
| 1738 |
+
"loss": 0.8542,
|
| 1739 |
+
"step": 1235
|
| 1740 |
+
},
|
| 1741 |
+
{
|
| 1742 |
+
"epoch": 1.9875751503006012,
|
| 1743 |
+
"grad_norm": 0.34531357884407043,
|
| 1744 |
+
"learning_rate": 5.395334294830766e-06,
|
| 1745 |
+
"loss": 0.858,
|
| 1746 |
+
"step": 1240
|
| 1747 |
+
},
|
| 1748 |
+
{
|
| 1749 |
+
"epoch": 1.9955911823647294,
|
| 1750 |
+
"grad_norm": 0.3555367887020111,
|
| 1751 |
+
"learning_rate": 5.318556849423757e-06,
|
| 1752 |
+
"loss": 0.7818,
|
| 1753 |
+
"step": 1245
|
| 1754 |
+
},
|
| 1755 |
+
{
|
| 1756 |
+
"epoch": 2.0032064128256515,
|
| 1757 |
+
"grad_norm": 0.47876620292663574,
|
| 1758 |
+
"learning_rate": 5.242131207715768e-06,
|
| 1759 |
+
"loss": 0.9044,
|
| 1760 |
+
"step": 1250
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"epoch": 2.0112224448897797,
|
| 1764 |
+
"grad_norm": 0.3445394039154053,
|
| 1765 |
+
"learning_rate": 5.166063112983522e-06,
|
| 1766 |
+
"loss": 0.8851,
|
| 1767 |
+
"step": 1255
|
| 1768 |
+
},
|
| 1769 |
+
{
|
| 1770 |
+
"epoch": 2.019238476953908,
|
| 1771 |
+
"grad_norm": 0.34241387248039246,
|
| 1772 |
+
"learning_rate": 5.090358281634594e-06,
|
| 1773 |
+
"loss": 0.7266,
|
| 1774 |
+
"step": 1260
|
| 1775 |
+
},
|
| 1776 |
+
{
|
| 1777 |
+
"epoch": 2.0272545090180363,
|
| 1778 |
+
"grad_norm": 0.3980085253715515,
|
| 1779 |
+
"learning_rate": 5.015022402777838e-06,
|
| 1780 |
+
"loss": 0.8228,
|
| 1781 |
+
"step": 1265
|
| 1782 |
+
},
|
| 1783 |
+
{
|
| 1784 |
+
"epoch": 2.0352705410821645,
|
| 1785 |
+
"grad_norm": 0.3420424163341522,
|
| 1786 |
+
"learning_rate": 4.940061137795876e-06,
|
| 1787 |
+
"loss": 0.7685,
|
| 1788 |
+
"step": 1270
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"epoch": 2.0432865731462924,
|
| 1792 |
+
"grad_norm": 0.41949328780174255,
|
| 1793 |
+
"learning_rate": 4.8654801199196176e-06,
|
| 1794 |
+
"loss": 0.9227,
|
| 1795 |
+
"step": 1275
|
| 1796 |
+
},
|
| 1797 |
+
{
|
| 1798 |
+
"epoch": 2.0513026052104206,
|
| 1799 |
+
"grad_norm": 0.4226691722869873,
|
| 1800 |
+
"learning_rate": 4.791284953804969e-06,
|
| 1801 |
+
"loss": 0.7992,
|
| 1802 |
+
"step": 1280
|
| 1803 |
+
},
|
| 1804 |
+
{
|
| 1805 |
+
"epoch": 2.059318637274549,
|
| 1806 |
+
"grad_norm": 0.39590245485305786,
|
| 1807 |
+
"learning_rate": 4.717481215111622e-06,
|
| 1808 |
+
"loss": 0.8595,
|
| 1809 |
+
"step": 1285
|
| 1810 |
+
},
|
| 1811 |
+
{
|
| 1812 |
+
"epoch": 2.067334669338677,
|
| 1813 |
+
"grad_norm": 0.4448534846305847,
|
| 1814 |
+
"learning_rate": 4.644074450084061e-06,
|
| 1815 |
+
"loss": 0.9019,
|
| 1816 |
+
"step": 1290
|
| 1817 |
+
},
|
| 1818 |
+
{
|
| 1819 |
+
"epoch": 2.0753507014028054,
|
| 1820 |
+
"grad_norm": 0.3919767737388611,
|
| 1821 |
+
"learning_rate": 4.571070175134781e-06,
|
| 1822 |
+
"loss": 0.8359,
|
| 1823 |
+
"step": 1295
|
| 1824 |
+
},
|
| 1825 |
+
{
|
| 1826 |
+
"epoch": 2.0833667334669337,
|
| 1827 |
+
"grad_norm": 0.4835250675678253,
|
| 1828 |
+
"learning_rate": 4.498473876429727e-06,
|
| 1829 |
+
"loss": 0.8491,
|
| 1830 |
+
"step": 1300
|
| 1831 |
+
},
|
| 1832 |
+
{
|
| 1833 |
+
"epoch": 2.091382765531062,
|
| 1834 |
+
"grad_norm": 0.45917949080467224,
|
| 1835 |
+
"learning_rate": 4.426291009476007e-06,
|
| 1836 |
+
"loss": 0.7978,
|
| 1837 |
+
"step": 1305
|
| 1838 |
+
},
|
| 1839 |
+
{
|
| 1840 |
+
"epoch": 2.09939879759519,
|
| 1841 |
+
"grad_norm": 0.30657947063446045,
|
| 1842 |
+
"learning_rate": 4.354526998711945e-06,
|
| 1843 |
+
"loss": 0.8031,
|
| 1844 |
+
"step": 1310
|
| 1845 |
+
},
|
| 1846 |
+
{
|
| 1847 |
+
"epoch": 2.1074148296593185,
|
| 1848 |
+
"grad_norm": 0.4451172649860382,
|
| 1849 |
+
"learning_rate": 4.283187237099412e-06,
|
| 1850 |
+
"loss": 0.8898,
|
| 1851 |
+
"step": 1315
|
| 1852 |
+
},
|
| 1853 |
+
{
|
| 1854 |
+
"epoch": 2.1154308617234467,
|
| 1855 |
+
"grad_norm": 0.4376426637172699,
|
| 1856 |
+
"learning_rate": 4.2122770857185805e-06,
|
| 1857 |
+
"loss": 0.8588,
|
| 1858 |
+
"step": 1320
|
| 1859 |
+
},
|
| 1860 |
+
{
|
| 1861 |
+
"epoch": 2.123446893787575,
|
| 1862 |
+
"grad_norm": 0.3958570957183838,
|
| 1863 |
+
"learning_rate": 4.141801873365023e-06,
|
| 1864 |
+
"loss": 0.7816,
|
| 1865 |
+
"step": 1325
|
| 1866 |
+
},
|
| 1867 |
+
{
|
| 1868 |
+
"epoch": 2.1314629258517033,
|
| 1869 |
+
"grad_norm": 0.42820340394973755,
|
| 1870 |
+
"learning_rate": 4.0717668961492725e-06,
|
| 1871 |
+
"loss": 0.845,
|
| 1872 |
+
"step": 1330
|
| 1873 |
+
},
|
| 1874 |
+
{
|
| 1875 |
+
"epoch": 2.1394789579158315,
|
| 1876 |
+
"grad_norm": 0.4091578423976898,
|
| 1877 |
+
"learning_rate": 4.0021774170988395e-06,
|
| 1878 |
+
"loss": 0.8996,
|
| 1879 |
+
"step": 1335
|
| 1880 |
+
},
|
| 1881 |
+
{
|
| 1882 |
+
"epoch": 2.14749498997996,
|
| 1883 |
+
"grad_norm": 0.44767269492149353,
|
| 1884 |
+
"learning_rate": 3.9330386657626696e-06,
|
| 1885 |
+
"loss": 0.7196,
|
| 1886 |
+
"step": 1340
|
| 1887 |
+
},
|
| 1888 |
+
{
|
| 1889 |
+
"epoch": 2.155511022044088,
|
| 1890 |
+
"grad_norm": 0.47936999797821045,
|
| 1891 |
+
"learning_rate": 3.864355837818188e-06,
|
| 1892 |
+
"loss": 0.7673,
|
| 1893 |
+
"step": 1345
|
| 1894 |
+
},
|
| 1895 |
+
{
|
| 1896 |
+
"epoch": 2.1635270541082163,
|
| 1897 |
+
"grad_norm": 0.3325825035572052,
|
| 1898 |
+
"learning_rate": 3.79613409468083e-06,
|
| 1899 |
+
"loss": 0.7788,
|
| 1900 |
+
"step": 1350
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"epoch": 2.1715430861723446,
|
| 1904 |
+
"grad_norm": 0.36496493220329285,
|
| 1905 |
+
"learning_rate": 3.7283785631161663e-06,
|
| 1906 |
+
"loss": 0.8764,
|
| 1907 |
+
"step": 1355
|
| 1908 |
+
},
|
| 1909 |
+
{
|
| 1910 |
+
"epoch": 2.179559118236473,
|
| 1911 |
+
"grad_norm": 0.37848904728889465,
|
| 1912 |
+
"learning_rate": 3.6610943348546524e-06,
|
| 1913 |
+
"loss": 0.8016,
|
| 1914 |
+
"step": 1360
|
| 1915 |
+
},
|
| 1916 |
+
{
|
| 1917 |
+
"epoch": 2.187575150300601,
|
| 1918 |
+
"grad_norm": 0.3615955412387848,
|
| 1919 |
+
"learning_rate": 3.5942864662089684e-06,
|
| 1920 |
+
"loss": 0.9018,
|
| 1921 |
+
"step": 1365
|
| 1922 |
+
},
|
| 1923 |
+
{
|
| 1924 |
+
"epoch": 2.1955911823647294,
|
| 1925 |
+
"grad_norm": 0.45091915130615234,
|
| 1926 |
+
"learning_rate": 3.527959977694061e-06,
|
| 1927 |
+
"loss": 0.8454,
|
| 1928 |
+
"step": 1370
|
| 1929 |
+
},
|
| 1930 |
+
{
|
| 1931 |
+
"epoch": 2.2036072144288577,
|
| 1932 |
+
"grad_norm": 0.4201883375644684,
|
| 1933 |
+
"learning_rate": 3.462119853649859e-06,
|
| 1934 |
+
"loss": 0.9691,
|
| 1935 |
+
"step": 1375
|
| 1936 |
+
},
|
| 1937 |
+
{
|
| 1938 |
+
"epoch": 2.211623246492986,
|
| 1939 |
+
"grad_norm": 0.3573856055736542,
|
| 1940 |
+
"learning_rate": 3.3967710418666986e-06,
|
| 1941 |
+
"loss": 0.8465,
|
| 1942 |
+
"step": 1380
|
| 1943 |
+
},
|
| 1944 |
+
{
|
| 1945 |
+
"epoch": 2.219639278557114,
|
| 1946 |
+
"grad_norm": 0.447793185710907,
|
| 1947 |
+
"learning_rate": 3.331918453213505e-06,
|
| 1948 |
+
"loss": 0.9212,
|
| 1949 |
+
"step": 1385
|
| 1950 |
+
},
|
| 1951 |
+
{
|
| 1952 |
+
"epoch": 2.2276553106212424,
|
| 1953 |
+
"grad_norm": 0.4908188581466675,
|
| 1954 |
+
"learning_rate": 3.2675669612687565e-06,
|
| 1955 |
+
"loss": 0.8528,
|
| 1956 |
+
"step": 1390
|
| 1957 |
+
},
|
| 1958 |
+
{
|
| 1959 |
+
"epoch": 2.2356713426853707,
|
| 1960 |
+
"grad_norm": 0.44964873790740967,
|
| 1961 |
+
"learning_rate": 3.203721401954242e-06,
|
| 1962 |
+
"loss": 0.9147,
|
| 1963 |
+
"step": 1395
|
| 1964 |
+
},
|
| 1965 |
+
{
|
| 1966 |
+
"epoch": 2.243687374749499,
|
| 1967 |
+
"grad_norm": 0.4697072207927704,
|
| 1968 |
+
"learning_rate": 3.1403865731716266e-06,
|
| 1969 |
+
"loss": 0.8588,
|
| 1970 |
+
"step": 1400
|
| 1971 |
+
},
|
| 1972 |
+
{
|
| 1973 |
+
"epoch": 2.2517034068136272,
|
| 1974 |
+
"grad_norm": 0.36253607273101807,
|
| 1975 |
+
"learning_rate": 3.0775672344419305e-06,
|
| 1976 |
+
"loss": 0.8024,
|
| 1977 |
+
"step": 1405
|
| 1978 |
+
},
|
| 1979 |
+
{
|
| 1980 |
+
"epoch": 2.2597194388777555,
|
| 1981 |
+
"grad_norm": 0.5492545366287231,
|
| 1982 |
+
"learning_rate": 3.0152681065478252e-06,
|
| 1983 |
+
"loss": 0.8588,
|
| 1984 |
+
"step": 1410
|
| 1985 |
+
},
|
| 1986 |
+
{
|
| 1987 |
+
"epoch": 2.2677354709418838,
|
| 1988 |
+
"grad_norm": 0.35868972539901733,
|
| 1989 |
+
"learning_rate": 2.953493871178902e-06,
|
| 1990 |
+
"loss": 0.8138,
|
| 1991 |
+
"step": 1415
|
| 1992 |
+
},
|
| 1993 |
+
{
|
| 1994 |
+
"epoch": 2.275751503006012,
|
| 1995 |
+
"grad_norm": 0.38911786675453186,
|
| 1996 |
+
"learning_rate": 2.892249170579826e-06,
|
| 1997 |
+
"loss": 0.7942,
|
| 1998 |
+
"step": 1420
|
| 1999 |
+
},
|
| 2000 |
+
{
|
| 2001 |
+
"epoch": 2.2837675350701403,
|
| 2002 |
+
"grad_norm": 0.5678386092185974,
|
| 2003 |
+
"learning_rate": 2.8315386072014883e-06,
|
| 2004 |
+
"loss": 0.7764,
|
| 2005 |
+
"step": 1425
|
| 2006 |
+
},
|
| 2007 |
+
{
|
| 2008 |
+
"epoch": 2.2917835671342686,
|
| 2009 |
+
"grad_norm": 0.36749324202537537,
|
| 2010 |
+
"learning_rate": 2.7713667433551495e-06,
|
| 2011 |
+
"loss": 0.8247,
|
| 2012 |
+
"step": 1430
|
| 2013 |
+
},
|
| 2014 |
+
{
|
| 2015 |
+
"epoch": 2.299799599198397,
|
| 2016 |
+
"grad_norm": 0.4348406493663788,
|
| 2017 |
+
"learning_rate": 2.711738100869563e-06,
|
| 2018 |
+
"loss": 0.9319,
|
| 2019 |
+
"step": 1435
|
| 2020 |
+
},
|
| 2021 |
+
{
|
| 2022 |
+
"epoch": 2.307815631262525,
|
| 2023 |
+
"grad_norm": 0.4162181615829468,
|
| 2024 |
+
"learning_rate": 2.652657160751193e-06,
|
| 2025 |
+
"loss": 0.9147,
|
| 2026 |
+
"step": 1440
|
| 2027 |
+
},
|
| 2028 |
+
{
|
| 2029 |
+
"epoch": 2.3158316633266534,
|
| 2030 |
+
"grad_norm": 0.36371198296546936,
|
| 2031 |
+
"learning_rate": 2.59412836284745e-06,
|
| 2032 |
+
"loss": 0.8078,
|
| 2033 |
+
"step": 1445
|
| 2034 |
+
},
|
| 2035 |
+
{
|
| 2036 |
+
"epoch": 2.3238476953907816,
|
| 2037 |
+
"grad_norm": 0.39601725339889526,
|
| 2038 |
+
"learning_rate": 2.5361561055130625e-06,
|
| 2039 |
+
"loss": 0.8824,
|
| 2040 |
+
"step": 1450
|
| 2041 |
+
},
|
| 2042 |
+
{
|
| 2043 |
+
"epoch": 2.33186372745491,
|
| 2044 |
+
"grad_norm": 0.34811967611312866,
|
| 2045 |
+
"learning_rate": 2.4787447452795366e-06,
|
| 2046 |
+
"loss": 0.8163,
|
| 2047 |
+
"step": 1455
|
| 2048 |
+
},
|
| 2049 |
+
{
|
| 2050 |
+
"epoch": 2.339879759519038,
|
| 2051 |
+
"grad_norm": 0.405057430267334,
|
| 2052 |
+
"learning_rate": 2.4218985965277676e-06,
|
| 2053 |
+
"loss": 0.8474,
|
| 2054 |
+
"step": 1460
|
| 2055 |
+
},
|
| 2056 |
+
{
|
| 2057 |
+
"epoch": 2.3478957915831664,
|
| 2058 |
+
"grad_norm": 0.3901906907558441,
|
| 2059 |
+
"learning_rate": 2.3656219311638194e-06,
|
| 2060 |
+
"loss": 0.771,
|
| 2061 |
+
"step": 1465
|
| 2062 |
+
},
|
| 2063 |
+
{
|
| 2064 |
+
"epoch": 2.3559118236472947,
|
| 2065 |
+
"grad_norm": 0.3617786467075348,
|
| 2066 |
+
"learning_rate": 2.3099189782979126e-06,
|
| 2067 |
+
"loss": 0.8022,
|
| 2068 |
+
"step": 1470
|
| 2069 |
+
},
|
| 2070 |
+
{
|
| 2071 |
+
"epoch": 2.363927855711423,
|
| 2072 |
+
"grad_norm": 0.3886442184448242,
|
| 2073 |
+
"learning_rate": 2.2547939239265893e-06,
|
| 2074 |
+
"loss": 0.8938,
|
| 2075 |
+
"step": 1475
|
| 2076 |
+
},
|
| 2077 |
+
{
|
| 2078 |
+
"epoch": 2.371943887775551,
|
| 2079 |
+
"grad_norm": 0.4365661144256592,
|
| 2080 |
+
"learning_rate": 2.2002509106181625e-06,
|
| 2081 |
+
"loss": 0.8959,
|
| 2082 |
+
"step": 1480
|
| 2083 |
+
},
|
| 2084 |
+
{
|
| 2085 |
+
"epoch": 2.3799599198396795,
|
| 2086 |
+
"grad_norm": 0.3170413374900818,
|
| 2087 |
+
"learning_rate": 2.146294037201394e-06,
|
| 2088 |
+
"loss": 0.7777,
|
| 2089 |
+
"step": 1485
|
| 2090 |
+
},
|
| 2091 |
+
{
|
| 2092 |
+
"epoch": 2.3879759519038077,
|
| 2093 |
+
"grad_norm": 0.43696296215057373,
|
| 2094 |
+
"learning_rate": 2.092927358457476e-06,
|
| 2095 |
+
"loss": 0.8724,
|
| 2096 |
+
"step": 1490
|
| 2097 |
+
},
|
| 2098 |
+
{
|
| 2099 |
+
"epoch": 2.395991983967936,
|
| 2100 |
+
"grad_norm": 0.38862401247024536,
|
| 2101 |
+
"learning_rate": 2.0401548848153296e-06,
|
| 2102 |
+
"loss": 0.8958,
|
| 2103 |
+
"step": 1495
|
| 2104 |
+
},
|
| 2105 |
+
{
|
| 2106 |
+
"epoch": 2.4040080160320643,
|
| 2107 |
+
"grad_norm": 0.4901878535747528,
|
| 2108 |
+
"learning_rate": 1.9879805820502176e-06,
|
| 2109 |
+
"loss": 0.903,
|
| 2110 |
+
"step": 1500
|
| 2111 |
+
},
|
| 2112 |
+
{
|
| 2113 |
+
"epoch": 2.4120240480961925,
|
| 2114 |
+
"grad_norm": 0.37639907002449036,
|
| 2115 |
+
"learning_rate": 1.9364083709857184e-06,
|
| 2116 |
+
"loss": 0.7387,
|
| 2117 |
+
"step": 1505
|
| 2118 |
+
},
|
| 2119 |
+
{
|
| 2120 |
+
"epoch": 2.420040080160321,
|
| 2121 |
+
"grad_norm": 0.34562456607818604,
|
| 2122 |
+
"learning_rate": 1.8854421271990964e-06,
|
| 2123 |
+
"loss": 0.7325,
|
| 2124 |
+
"step": 1510
|
| 2125 |
+
},
|
| 2126 |
+
{
|
| 2127 |
+
"epoch": 2.428056112224449,
|
| 2128 |
+
"grad_norm": 0.44138360023498535,
|
| 2129 |
+
"learning_rate": 1.835085680730041e-06,
|
| 2130 |
+
"loss": 0.8788,
|
| 2131 |
+
"step": 1515
|
| 2132 |
+
},
|
| 2133 |
+
{
|
| 2134 |
+
"epoch": 2.4360721442885773,
|
| 2135 |
+
"grad_norm": 0.3983897864818573,
|
| 2136 |
+
"learning_rate": 1.785342815792862e-06,
|
| 2137 |
+
"loss": 0.8522,
|
| 2138 |
+
"step": 1520
|
| 2139 |
+
},
|
| 2140 |
+
{
|
| 2141 |
+
"epoch": 2.4440881763527056,
|
| 2142 |
+
"grad_norm": 0.40477579832077026,
|
| 2143 |
+
"learning_rate": 1.7362172704920933e-06,
|
| 2144 |
+
"loss": 0.7911,
|
| 2145 |
+
"step": 1525
|
| 2146 |
+
},
|
| 2147 |
+
{
|
| 2148 |
+
"epoch": 2.452104208416834,
|
| 2149 |
+
"grad_norm": 0.4484027624130249,
|
| 2150 |
+
"learning_rate": 1.6877127365415924e-06,
|
| 2151 |
+
"loss": 0.8903,
|
| 2152 |
+
"step": 1530
|
| 2153 |
+
},
|
| 2154 |
+
{
|
| 2155 |
+
"epoch": 2.460120240480962,
|
| 2156 |
+
"grad_norm": 0.3873910903930664,
|
| 2157 |
+
"learning_rate": 1.6398328589871126e-06,
|
| 2158 |
+
"loss": 0.8499,
|
| 2159 |
+
"step": 1535
|
| 2160 |
+
},
|
| 2161 |
+
{
|
| 2162 |
+
"epoch": 2.46813627254509,
|
| 2163 |
+
"grad_norm": 0.4115862548351288,
|
| 2164 |
+
"learning_rate": 1.5925812359323745e-06,
|
| 2165 |
+
"loss": 0.9026,
|
| 2166 |
+
"step": 1540
|
| 2167 |
+
},
|
| 2168 |
+
{
|
| 2169 |
+
"epoch": 2.4761523046092186,
|
| 2170 |
+
"grad_norm": 0.3982996344566345,
|
| 2171 |
+
"learning_rate": 1.5459614182686866e-06,
|
| 2172 |
+
"loss": 0.8284,
|
| 2173 |
+
"step": 1545
|
| 2174 |
+
},
|
| 2175 |
+
{
|
| 2176 |
+
"epoch": 2.4841683366733465,
|
| 2177 |
+
"grad_norm": 0.3346659541130066,
|
| 2178 |
+
"learning_rate": 1.4999769094080853e-06,
|
| 2179 |
+
"loss": 0.8033,
|
| 2180 |
+
"step": 1550
|
| 2181 |
+
},
|
| 2182 |
+
{
|
| 2183 |
+
"epoch": 2.492184368737475,
|
| 2184 |
+
"grad_norm": 0.3832646310329437,
|
| 2185 |
+
"learning_rate": 1.454631165020075e-06,
|
| 2186 |
+
"loss": 0.8919,
|
| 2187 |
+
"step": 1555
|
| 2188 |
+
},
|
| 2189 |
+
{
|
| 2190 |
+
"epoch": 2.500200400801603,
|
| 2191 |
+
"grad_norm": 0.7681372761726379,
|
| 2192 |
+
"learning_rate": 1.4099275927719235e-06,
|
| 2193 |
+
"loss": 0.8321,
|
| 2194 |
+
"step": 1560
|
| 2195 |
+
},
|
| 2196 |
+
{
|
| 2197 |
+
"epoch": 2.5082164328657317,
|
| 2198 |
+
"grad_norm": 0.415099173784256,
|
| 2199 |
+
"learning_rate": 1.3658695520725984e-06,
|
| 2200 |
+
"loss": 0.8178,
|
| 2201 |
+
"step": 1565
|
| 2202 |
+
},
|
| 2203 |
+
{
|
| 2204 |
+
"epoch": 2.5162324649298595,
|
| 2205 |
+
"grad_norm": 0.3748820722103119,
|
| 2206 |
+
"learning_rate": 1.3224603538202929e-06,
|
| 2207 |
+
"loss": 0.8834,
|
| 2208 |
+
"step": 1570
|
| 2209 |
+
},
|
| 2210 |
+
{
|
| 2211 |
+
"epoch": 2.5242484969939882,
|
| 2212 |
+
"grad_norm": 0.37983429431915283,
|
| 2213 |
+
"learning_rate": 1.2797032601536342e-06,
|
| 2214 |
+
"loss": 0.8233,
|
| 2215 |
+
"step": 1575
|
| 2216 |
+
},
|
| 2217 |
+
{
|
| 2218 |
+
"epoch": 2.532264529058116,
|
| 2219 |
+
"grad_norm": 0.40843164920806885,
|
| 2220 |
+
"learning_rate": 1.2376014842065264e-06,
|
| 2221 |
+
"loss": 0.9251,
|
| 2222 |
+
"step": 1580
|
| 2223 |
+
},
|
| 2224 |
+
{
|
| 2225 |
+
"epoch": 2.5402805611222448,
|
| 2226 |
+
"grad_norm": 0.34796783328056335,
|
| 2227 |
+
"learning_rate": 1.1961581898666895e-06,
|
| 2228 |
+
"loss": 0.8777,
|
| 2229 |
+
"step": 1585
|
| 2230 |
+
},
|
| 2231 |
+
{
|
| 2232 |
+
"epoch": 2.5482965931863726,
|
| 2233 |
+
"grad_norm": 0.3763981759548187,
|
| 2234 |
+
"learning_rate": 1.1553764915379095e-06,
|
| 2235 |
+
"loss": 0.8709,
|
| 2236 |
+
"step": 1590
|
| 2237 |
+
},
|
| 2238 |
+
{
|
| 2239 |
+
"epoch": 2.556312625250501,
|
| 2240 |
+
"grad_norm": 0.7970382571220398,
|
| 2241 |
+
"learning_rate": 1.115259453905978e-06,
|
| 2242 |
+
"loss": 0.8451,
|
| 2243 |
+
"step": 1595
|
| 2244 |
+
},
|
| 2245 |
+
{
|
| 2246 |
+
"epoch": 2.564328657314629,
|
| 2247 |
+
"grad_norm": 0.3026469051837921,
|
| 2248 |
+
"learning_rate": 1.075810091708399e-06,
|
| 2249 |
+
"loss": 0.8302,
|
| 2250 |
+
"step": 1600
|
| 2251 |
+
},
|
| 2252 |
+
{
|
| 2253 |
+
"epoch": 2.5723446893787574,
|
| 2254 |
+
"grad_norm": 0.3812445104122162,
|
| 2255 |
+
"learning_rate": 1.0370313695078316e-06,
|
| 2256 |
+
"loss": 0.8251,
|
| 2257 |
+
"step": 1605
|
| 2258 |
+
},
|
| 2259 |
+
{
|
| 2260 |
+
"epoch": 2.5803607214428856,
|
| 2261 |
+
"grad_norm": 0.36716336011886597,
|
| 2262 |
+
"learning_rate": 9.989262014693013e-07,
|
| 2263 |
+
"loss": 0.8475,
|
| 2264 |
+
"step": 1610
|
| 2265 |
+
},
|
| 2266 |
+
{
|
| 2267 |
+
"epoch": 2.588376753507014,
|
| 2268 |
+
"grad_norm": 0.4053398072719574,
|
| 2269 |
+
"learning_rate": 9.614974511412156e-07,
|
| 2270 |
+
"loss": 0.8174,
|
| 2271 |
+
"step": 1615
|
| 2272 |
+
},
|
| 2273 |
+
{
|
| 2274 |
+
"epoch": 2.596392785571142,
|
| 2275 |
+
"grad_norm": 0.4070420563220978,
|
| 2276 |
+
"learning_rate": 9.247479312401642e-07,
|
| 2277 |
+
"loss": 0.8769,
|
| 2278 |
+
"step": 1620
|
| 2279 |
+
},
|
| 2280 |
+
{
|
| 2281 |
+
"epoch": 2.6044088176352704,
|
| 2282 |
+
"grad_norm": 0.7767839431762695,
|
| 2283 |
+
"learning_rate": 8.88680403439548e-07,
|
| 2284 |
+
"loss": 0.8343,
|
| 2285 |
+
"step": 1625
|
| 2286 |
+
},
|
| 2287 |
+
{
|
| 2288 |
+
"epoch": 2.6124248496993987,
|
| 2289 |
+
"grad_norm": 0.411374568939209,
|
| 2290 |
+
"learning_rate": 8.532975781620511e-07,
|
| 2291 |
+
"loss": 0.8021,
|
| 2292 |
+
"step": 1630
|
| 2293 |
+
},
|
| 2294 |
+
{
|
| 2295 |
+
"epoch": 2.620440881763527,
|
| 2296 |
+
"grad_norm": 0.32186996936798096,
|
| 2297 |
+
"learning_rate": 8.18602114375947e-07,
|
| 2298 |
+
"loss": 0.8267,
|
| 2299 |
+
"step": 1635
|
| 2300 |
+
},
|
| 2301 |
+
{
|
| 2302 |
+
"epoch": 2.6284569138276552,
|
| 2303 |
+
"grad_norm": 0.34994935989379883,
|
| 2304 |
+
"learning_rate": 7.845966193952825e-07,
|
| 2305 |
+
"loss": 0.8122,
|
| 2306 |
+
"step": 1640
|
| 2307 |
+
},
|
| 2308 |
+
{
|
| 2309 |
+
"epoch": 2.6364729458917835,
|
| 2310 |
+
"grad_norm": 0.399689644575119,
|
| 2311 |
+
"learning_rate": 7.512836486839492e-07,
|
| 2312 |
+
"loss": 0.7816,
|
| 2313 |
+
"step": 1645
|
| 2314 |
+
},
|
| 2315 |
+
{
|
| 2316 |
+
"epoch": 2.6444889779559118,
|
| 2317 |
+
"grad_norm": 0.3521658778190613,
|
| 2318 |
+
"learning_rate": 7.18665705663637e-07,
|
| 2319 |
+
"loss": 0.8229,
|
| 2320 |
+
"step": 1650
|
| 2321 |
+
},
|
| 2322 |
+
{
|
| 2323 |
+
"epoch": 2.65250501002004,
|
| 2324 |
+
"grad_norm": 0.46236297488212585,
|
| 2325 |
+
"learning_rate": 6.867452415257081e-07,
|
| 2326 |
+
"loss": 0.7963,
|
| 2327 |
+
"step": 1655
|
| 2328 |
+
},
|
| 2329 |
+
{
|
| 2330 |
+
"epoch": 2.6605210420841683,
|
| 2331 |
+
"grad_norm": 0.47568464279174805,
|
| 2332 |
+
"learning_rate": 6.555246550469907e-07,
|
| 2333 |
+
"loss": 0.7728,
|
| 2334 |
+
"step": 1660
|
| 2335 |
+
},
|
| 2336 |
+
{
|
| 2337 |
+
"epoch": 2.6685370741482966,
|
| 2338 |
+
"grad_norm": 0.3366374373435974,
|
| 2339 |
+
"learning_rate": 6.250062924095158e-07,
|
| 2340 |
+
"loss": 0.8544,
|
| 2341 |
+
"step": 1665
|
| 2342 |
+
},
|
| 2343 |
+
{
|
| 2344 |
+
"epoch": 2.676553106212425,
|
| 2345 |
+
"grad_norm": 0.3431518077850342,
|
| 2346 |
+
"learning_rate": 5.951924470242121e-07,
|
| 2347 |
+
"loss": 0.6777,
|
| 2348 |
+
"step": 1670
|
| 2349 |
+
},
|
| 2350 |
+
{
|
| 2351 |
+
"epoch": 2.684569138276553,
|
| 2352 |
+
"grad_norm": 0.3027094602584839,
|
| 2353 |
+
"learning_rate": 5.660853593585458e-07,
|
| 2354 |
+
"loss": 0.7997,
|
| 2355 |
+
"step": 1675
|
| 2356 |
+
},
|
| 2357 |
+
{
|
| 2358 |
+
"epoch": 2.6925851703406813,
|
| 2359 |
+
"grad_norm": 0.38628339767456055,
|
| 2360 |
+
"learning_rate": 5.376872167681634e-07,
|
| 2361 |
+
"loss": 0.8907,
|
| 2362 |
+
"step": 1680
|
| 2363 |
+
},
|
| 2364 |
+
{
|
| 2365 |
+
"epoch": 2.7006012024048096,
|
| 2366 |
+
"grad_norm": 0.38656118512153625,
|
| 2367 |
+
"learning_rate": 5.10000153332515e-07,
|
| 2368 |
+
"loss": 0.8128,
|
| 2369 |
+
"step": 1685
|
| 2370 |
+
},
|
| 2371 |
+
{
|
| 2372 |
+
"epoch": 2.708617234468938,
|
| 2373 |
+
"grad_norm": 0.3081871569156647,
|
| 2374 |
+
"learning_rate": 4.830262496944693e-07,
|
| 2375 |
+
"loss": 0.8044,
|
| 2376 |
+
"step": 1690
|
| 2377 |
+
},
|
| 2378 |
+
{
|
| 2379 |
+
"epoch": 2.716633266533066,
|
| 2380 |
+
"grad_norm": 0.3895088732242584,
|
| 2381 |
+
"learning_rate": 4.5676753290397445e-07,
|
| 2382 |
+
"loss": 0.8063,
|
| 2383 |
+
"step": 1695
|
| 2384 |
+
},
|
| 2385 |
+
{
|
| 2386 |
+
"epoch": 2.7246492985971944,
|
| 2387 |
+
"grad_norm": 0.3495742082595825,
|
| 2388 |
+
"learning_rate": 4.312259762657145e-07,
|
| 2389 |
+
"loss": 0.8404,
|
| 2390 |
+
"step": 1700
|
| 2391 |
+
},
|
| 2392 |
+
{
|
| 2393 |
+
"epoch": 2.7326653306613227,
|
| 2394 |
+
"grad_norm": 0.3835850954055786,
|
| 2395 |
+
"learning_rate": 4.0640349919082056e-07,
|
| 2396 |
+
"loss": 0.9816,
|
| 2397 |
+
"step": 1705
|
| 2398 |
+
},
|
| 2399 |
+
{
|
| 2400 |
+
"epoch": 2.740681362725451,
|
| 2401 |
+
"grad_norm": 0.4039825201034546,
|
| 2402 |
+
"learning_rate": 3.8230196705263734e-07,
|
| 2403 |
+
"loss": 0.936,
|
| 2404 |
+
"step": 1710
|
| 2405 |
+
},
|
| 2406 |
+
{
|
| 2407 |
+
"epoch": 2.748697394789579,
|
| 2408 |
+
"grad_norm": 0.5234516263008118,
|
| 2409 |
+
"learning_rate": 3.5892319104653294e-07,
|
| 2410 |
+
"loss": 0.831,
|
| 2411 |
+
"step": 1715
|
| 2412 |
+
},
|
| 2413 |
+
{
|
| 2414 |
+
"epoch": 2.7567134268537075,
|
| 2415 |
+
"grad_norm": 0.3361075520515442,
|
| 2416 |
+
"learning_rate": 3.3626892805379565e-07,
|
| 2417 |
+
"loss": 0.8202,
|
| 2418 |
+
"step": 1720
|
| 2419 |
+
},
|
| 2420 |
+
{
|
| 2421 |
+
"epoch": 2.7647294589178357,
|
| 2422 |
+
"grad_norm": 0.3541311025619507,
|
| 2423 |
+
"learning_rate": 3.1434088050960934e-07,
|
| 2424 |
+
"loss": 0.8253,
|
| 2425 |
+
"step": 1725
|
| 2426 |
+
},
|
| 2427 |
+
{
|
| 2428 |
+
"epoch": 2.772745490981964,
|
| 2429 |
+
"grad_norm": 0.36018094420433044,
|
| 2430 |
+
"learning_rate": 2.9314069627511045e-07,
|
| 2431 |
+
"loss": 0.8884,
|
| 2432 |
+
"step": 1730
|
| 2433 |
+
},
|
| 2434 |
+
{
|
| 2435 |
+
"epoch": 2.7807615230460923,
|
| 2436 |
+
"grad_norm": 0.47873905301094055,
|
| 2437 |
+
"learning_rate": 2.726699685135603e-07,
|
| 2438 |
+
"loss": 0.8518,
|
| 2439 |
+
"step": 1735
|
| 2440 |
+
},
|
| 2441 |
+
{
|
| 2442 |
+
"epoch": 2.7887775551102205,
|
| 2443 |
+
"grad_norm": 0.4113430380821228,
|
| 2444 |
+
"learning_rate": 2.529302355706165e-07,
|
| 2445 |
+
"loss": 0.859,
|
| 2446 |
+
"step": 1740
|
| 2447 |
+
},
|
| 2448 |
+
{
|
| 2449 |
+
"epoch": 2.796793587174349,
|
| 2450 |
+
"grad_norm": 0.43893691897392273,
|
| 2451 |
+
"learning_rate": 2.3392298085873288e-07,
|
| 2452 |
+
"loss": 0.8878,
|
| 2453 |
+
"step": 1745
|
| 2454 |
+
},
|
| 2455 |
+
{
|
| 2456 |
+
"epoch": 2.804809619238477,
|
| 2457 |
+
"grad_norm": 0.30622348189353943,
|
| 2458 |
+
"learning_rate": 2.1564963274568028e-07,
|
| 2459 |
+
"loss": 0.8205,
|
| 2460 |
+
"step": 1750
|
| 2461 |
+
},
|
| 2462 |
+
{
|
| 2463 |
+
"epoch": 2.8128256513026053,
|
| 2464 |
+
"grad_norm": 1.027692198753357,
|
| 2465 |
+
"learning_rate": 1.9811156444720648e-07,
|
| 2466 |
+
"loss": 0.8271,
|
| 2467 |
+
"step": 1755
|
| 2468 |
+
},
|
| 2469 |
+
{
|
| 2470 |
+
"epoch": 2.8208416833667336,
|
| 2471 |
+
"grad_norm": 0.3843301832675934,
|
| 2472 |
+
"learning_rate": 1.8131009392384324e-07,
|
| 2473 |
+
"loss": 0.9512,
|
| 2474 |
+
"step": 1760
|
| 2475 |
+
},
|
| 2476 |
+
{
|
| 2477 |
+
"epoch": 2.828857715430862,
|
| 2478 |
+
"grad_norm": 0.4416702091693878,
|
| 2479 |
+
"learning_rate": 1.6524648378186125e-07,
|
| 2480 |
+
"loss": 0.8444,
|
| 2481 |
+
"step": 1765
|
| 2482 |
+
},
|
| 2483 |
+
{
|
| 2484 |
+
"epoch": 2.83687374749499,
|
| 2485 |
+
"grad_norm": 0.34150800108909607,
|
| 2486 |
+
"learning_rate": 1.49921941178387e-07,
|
| 2487 |
+
"loss": 0.8285,
|
| 2488 |
+
"step": 1770
|
| 2489 |
+
},
|
| 2490 |
+
{
|
| 2491 |
+
"epoch": 2.8448897795591184,
|
| 2492 |
+
"grad_norm": 0.4354546368122101,
|
| 2493 |
+
"learning_rate": 1.35337617730692e-07,
|
| 2494 |
+
"loss": 0.8678,
|
| 2495 |
+
"step": 1775
|
| 2496 |
+
},
|
| 2497 |
+
{
|
| 2498 |
+
"epoch": 2.8529058116232466,
|
| 2499 |
+
"grad_norm": 0.5867286920547485,
|
| 2500 |
+
"learning_rate": 1.2149460942964097e-07,
|
| 2501 |
+
"loss": 0.9001,
|
| 2502 |
+
"step": 1780
|
| 2503 |
+
},
|
| 2504 |
+
{
|
| 2505 |
+
"epoch": 2.860921843687375,
|
| 2506 |
+
"grad_norm": 0.40360739827156067,
|
| 2507 |
+
"learning_rate": 1.0839395655733664e-07,
|
| 2508 |
+
"loss": 0.7915,
|
| 2509 |
+
"step": 1785
|
| 2510 |
+
},
|
| 2511 |
+
{
|
| 2512 |
+
"epoch": 2.868937875751503,
|
| 2513 |
+
"grad_norm": 0.4062676727771759,
|
| 2514 |
+
"learning_rate": 9.603664360894327e-08,
|
| 2515 |
+
"loss": 0.9189,
|
| 2516 |
+
"step": 1790
|
| 2517 |
+
},
|
| 2518 |
+
{
|
| 2519 |
+
"epoch": 2.8769539078156314,
|
| 2520 |
+
"grad_norm": 0.36837005615234375,
|
| 2521 |
+
"learning_rate": 8.442359921870148e-08,
|
| 2522 |
+
"loss": 0.82,
|
| 2523 |
+
"step": 1795
|
| 2524 |
+
},
|
| 2525 |
+
{
|
| 2526 |
+
"epoch": 2.8849699398797597,
|
| 2527 |
+
"grad_norm": 0.34926676750183105,
|
| 2528 |
+
"learning_rate": 7.35556960901429e-08,
|
| 2529 |
+
"loss": 0.7414,
|
| 2530 |
+
"step": 1800
|
| 2531 |
+
},
|
| 2532 |
+
{
|
| 2533 |
+
"epoch": 2.8929859719438875,
|
| 2534 |
+
"grad_norm": 0.36959943175315857,
|
| 2535 |
+
"learning_rate": 6.343375093050941e-08,
|
| 2536 |
+
"loss": 0.8122,
|
| 2537 |
+
"step": 1805
|
| 2538 |
+
},
|
| 2539 |
+
{
|
| 2540 |
+
"epoch": 2.901002004008016,
|
| 2541 |
+
"grad_norm": 0.3383861184120178,
|
| 2542 |
+
"learning_rate": 5.405852438937764e-08,
|
| 2543 |
+
"loss": 0.9356,
|
| 2544 |
+
"step": 1810
|
| 2545 |
+
},
|
| 2546 |
+
{
|
| 2547 |
+
"epoch": 2.909018036072144,
|
| 2548 |
+
"grad_norm": 0.3275286853313446,
|
| 2549 |
+
"learning_rate": 4.543072100149704e-08,
|
| 2550 |
+
"loss": 0.9095,
|
| 2551 |
+
"step": 1815
|
| 2552 |
+
},
|
| 2553 |
+
{
|
| 2554 |
+
"epoch": 2.9170340681362728,
|
| 2555 |
+
"grad_norm": 0.35631418228149414,
|
| 2556 |
+
"learning_rate": 3.755098913384325e-08,
|
| 2557 |
+
"loss": 0.8541,
|
| 2558 |
+
"step": 1820
|
| 2559 |
+
},
|
| 2560 |
+
{
|
| 2561 |
+
"epoch": 2.9250501002004006,
|
| 2562 |
+
"grad_norm": 0.33556675910949707,
|
| 2563 |
+
"learning_rate": 3.0419920936900494e-08,
|
| 2564 |
+
"loss": 0.7787,
|
| 2565 |
+
"step": 1825
|
| 2566 |
+
},
|
| 2567 |
+
{
|
| 2568 |
+
"epoch": 2.9330661322645293,
|
| 2569 |
+
"grad_norm": 0.3943828046321869,
|
| 2570 |
+
"learning_rate": 2.403805230015488e-08,
|
| 2571 |
+
"loss": 0.937,
|
| 2572 |
+
"step": 1830
|
| 2573 |
+
},
|
| 2574 |
+
{
|
| 2575 |
+
"epoch": 2.941082164328657,
|
| 2576 |
+
"grad_norm": 0.37884265184402466,
|
| 2577 |
+
"learning_rate": 1.840586281182888e-08,
|
| 2578 |
+
"loss": 0.7455,
|
| 2579 |
+
"step": 1835
|
| 2580 |
+
},
|
| 2581 |
+
{
|
| 2582 |
+
"epoch": 2.949098196392786,
|
| 2583 |
+
"grad_norm": 0.4555797576904297,
|
| 2584 |
+
"learning_rate": 1.3523775722834586e-08,
|
| 2585 |
+
"loss": 0.8243,
|
| 2586 |
+
"step": 1840
|
| 2587 |
+
},
|
| 2588 |
+
{
|
| 2589 |
+
"epoch": 2.9571142284569136,
|
| 2590 |
+
"grad_norm": 0.392288476228714,
|
| 2591 |
+
"learning_rate": 9.39215791497583e-09,
|
| 2592 |
+
"loss": 0.8212,
|
| 2593 |
+
"step": 1845
|
| 2594 |
+
},
|
| 2595 |
+
{
|
| 2596 |
+
"epoch": 2.9651302605210423,
|
| 2597 |
+
"grad_norm": 0.4135635495185852,
|
| 2598 |
+
"learning_rate": 6.011319873370225e-09,
|
| 2599 |
+
"loss": 0.9677,
|
| 2600 |
+
"step": 1850
|
| 2601 |
+
},
|
| 2602 |
+
{
|
| 2603 |
+
"epoch": 2.97314629258517,
|
| 2604 |
+
"grad_norm": 0.3438234329223633,
|
| 2605 |
+
"learning_rate": 3.3815156631178404e-09,
|
| 2606 |
+
"loss": 0.8026,
|
| 2607 |
+
"step": 1855
|
| 2608 |
+
},
|
| 2609 |
+
{
|
| 2610 |
+
"epoch": 2.981162324649299,
|
| 2611 |
+
"grad_norm": 0.3370349109172821,
|
| 2612 |
+
"learning_rate": 1.502942910212024e-09,
|
| 2613 |
+
"loss": 0.812,
|
| 2614 |
+
"step": 1860
|
| 2615 |
+
},
|
| 2616 |
+
{
|
| 2617 |
+
"epoch": 2.9891783567134267,
|
| 2618 |
+
"grad_norm": 0.3954819142818451,
|
| 2619 |
+
"learning_rate": 3.757427866846186e-10,
|
| 2620 |
+
"loss": 0.8795,
|
| 2621 |
+
"step": 1865
|
| 2622 |
+
}
|
| 2623 |
+
],
|
| 2624 |
+
"logging_steps": 5,
|
| 2625 |
+
"max_steps": 1869,
|
| 2626 |
+
"num_input_tokens_seen": 0,
|
| 2627 |
+
"num_train_epochs": 3,
|
| 2628 |
+
"save_steps": 100,
|
| 2629 |
+
"stateful_callbacks": {
|
| 2630 |
+
"TrainerControl": {
|
| 2631 |
+
"args": {
|
| 2632 |
+
"should_epoch_stop": false,
|
| 2633 |
+
"should_evaluate": false,
|
| 2634 |
+
"should_log": false,
|
| 2635 |
+
"should_save": true,
|
| 2636 |
+
"should_training_stop": true
|
| 2637 |
+
},
|
| 2638 |
+
"attributes": {}
|
| 2639 |
+
}
|
| 2640 |
+
},
|
| 2641 |
+
"total_flos": 5.163374755613706e+17,
|
| 2642 |
+
"train_batch_size": 4,
|
| 2643 |
+
"trial_name": null,
|
| 2644 |
+
"trial_params": null
|
| 2645 |
+
}
|
checkpoint-1869/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0b3174f65fbdaf7aa6118f61c267fc2917f39aa22c6b68ce8847c767120e8d7
|
| 3 |
+
size 5816
|
checkpoint-1869/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": "<|PAD_TOKEN|>"
|
| 25 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10ba4ba91270b1a50e5cd8e51023bccc66fc4ac4909dd7ae7ab29433411c9bb9
|
| 3 |
+
size 11422844
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,249 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
},
|
| 213 |
+
"151669": {
|
| 214 |
+
"content": "<|PAD_TOKEN|>",
|
| 215 |
+
"lstrip": false,
|
| 216 |
+
"normalized": false,
|
| 217 |
+
"rstrip": false,
|
| 218 |
+
"single_word": false,
|
| 219 |
+
"special": true
|
| 220 |
+
}
|
| 221 |
+
},
|
| 222 |
+
"additional_special_tokens": [
|
| 223 |
+
"<|im_start|>",
|
| 224 |
+
"<|im_end|>",
|
| 225 |
+
"<|object_ref_start|>",
|
| 226 |
+
"<|object_ref_end|>",
|
| 227 |
+
"<|box_start|>",
|
| 228 |
+
"<|box_end|>",
|
| 229 |
+
"<|quad_start|>",
|
| 230 |
+
"<|quad_end|>",
|
| 231 |
+
"<|vision_start|>",
|
| 232 |
+
"<|vision_end|>",
|
| 233 |
+
"<|vision_pad|>",
|
| 234 |
+
"<|image_pad|>",
|
| 235 |
+
"<|video_pad|>"
|
| 236 |
+
],
|
| 237 |
+
"bos_token": null,
|
| 238 |
+
"chat_template": "\n{%- if tools %}\n {{- '<|im_start|>system\n' }}\n {%- if messages[0].role == 'system' %}\n {{- messages[0].content + '\n\n' }}\n {%- endif %}\n {{- \"# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\n</tool_call><|im_end|>\n\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for forward_message in messages %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- set message = messages[index] %}\n {%- set current_content = message.content if message.content is not none else '' %}\n {%- set tool_start = '<tool_response>' %}\n {%- set tool_start_length = tool_start|length %}\n {%- set start_of_message = current_content[:tool_start_length] %}\n {%- set tool_end = '</tool_response>' %}\n {%- set tool_end_length = tool_end|length %}\n {%- set start_pos = (current_content|length) - tool_end_length %}\n {%- if start_pos < 0 %}\n {%- set start_pos = 0 %}\n {%- endif %}\n {%- set end_of_message = current_content[start_pos:] %}\n {%- if ns.multi_step_tool and message.role == \"user\" and not(start_of_message == tool_start and end_of_message == tool_end) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n{%- endfor %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set content = message.content %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is defined and message.reasoning_content is not none %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in message.content %}\n {%- set content = (message.content.split('</think>')|last).lstrip('\n') %}\n {%- set reasoning_content = (message.content.split('</think>')|first).rstrip('\n') %}\n {%- set reasoning_content = (reasoning_content.split('<think>')|last).lstrip('\n') %}\n {%- endif %}\n {%- endif %}\n {%- if loop.index0 > ns.last_query_index %}\n {%- if loop.last or (not loop.last and reasoning_content) %}\n {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\n' + content }}\n {%- endif %}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\n' + content }}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and content) or (not loop.first) %}\n {{- '\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\n<tool_response>\n' }}\n {{- message.content }}\n {{- '\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\n' }}\n {%- if enable_thinking is defined and enable_thinking is false %}\n {{- '<think>\n\n</think>\n\n' }}\n {%- endif %}\n{%- endif %}\n",
|
| 239 |
+
"clean_up_tokenization_spaces": false,
|
| 240 |
+
"eos_token": "<|im_end|>",
|
| 241 |
+
"errors": "replace",
|
| 242 |
+
"extra_special_tokens": {},
|
| 243 |
+
"model_max_length": 262144,
|
| 244 |
+
"pad_token": "<|PAD_TOKEN|>",
|
| 245 |
+
"padding_side": "left",
|
| 246 |
+
"split_special_tokens": false,
|
| 247 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 248 |
+
"unk_token": null
|
| 249 |
+
}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|