Text Generation
PEFT
Safetensors
Transformers
qwen3
grpo
lora
trl
conversational
text-generation-inference
Instructions to use cs-552-2026-clankers-builder/multilingual_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use cs-552-2026-clankers-builder/multilingual_model with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-1.7B") model = PeftModel.from_pretrained(base_model, "cs-552-2026-clankers-builder/multilingual_model") - Transformers
How to use cs-552-2026-clankers-builder/multilingual_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cs-552-2026-clankers-builder/multilingual_model") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("cs-552-2026-clankers-builder/multilingual_model") model = AutoModelForCausalLM.from_pretrained("cs-552-2026-clankers-builder/multilingual_model") 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 cs-552-2026-clankers-builder/multilingual_model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cs-552-2026-clankers-builder/multilingual_model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cs-552-2026-clankers-builder/multilingual_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cs-552-2026-clankers-builder/multilingual_model
- SGLang
How to use cs-552-2026-clankers-builder/multilingual_model 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 "cs-552-2026-clankers-builder/multilingual_model" \ --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": "cs-552-2026-clankers-builder/multilingual_model", "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 "cs-552-2026-clankers-builder/multilingual_model" \ --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": "cs-552-2026-clankers-builder/multilingual_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use cs-552-2026-clankers-builder/multilingual_model with Docker Model Runner:
docker model run hf.co/cs-552-2026-clankers-builder/multilingual_model
Upload folder using huggingface_hub
Browse files- README.md +62 -0
- adapter_config.json +4 -4
- adapter_model.safetensors +1 -1
- chat_template.jinja +1 -5
- checkpoint-523/README.md +209 -0
- checkpoint-523/adapter_config.json +48 -0
- checkpoint-523/adapter_model.safetensors +3 -0
- checkpoint-523/chat_template.jinja +89 -0
- checkpoint-523/optimizer.pt +3 -0
- checkpoint-523/rng_state.pth +3 -0
- checkpoint-523/scheduler.pt +3 -0
- checkpoint-523/tokenizer.json +3 -0
- checkpoint-523/tokenizer_config.json +30 -0
- checkpoint-523/trainer_state.json +1074 -0
- checkpoint-523/training_args.bin +3 -0
- tokenizer_config.json +2 -6
- training_args.bin +1 -1
- training_history.png +0 -0
- training_metrics.csv +105 -0
README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3-1.7B
|
| 3 |
+
library_name: peft
|
| 4 |
+
model_name: v5_sft_regional_final_think
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:Qwen/Qwen3-1.7B
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
licence: license
|
| 12 |
+
pipeline_tag: text-generation
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# Model Card for v5_sft_regional_final_think
|
| 16 |
+
|
| 17 |
+
This model is a fine-tuned version of [Qwen/Qwen3-1.7B](https://huggingface.co/Qwen/Qwen3-1.7B).
|
| 18 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 19 |
+
|
| 20 |
+
## Quick start
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from transformers import pipeline
|
| 24 |
+
|
| 25 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 26 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 27 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 28 |
+
print(output["generated_text"])
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Training procedure
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
This model was trained with SFT.
|
| 38 |
+
|
| 39 |
+
### Framework versions
|
| 40 |
+
|
| 41 |
+
- PEFT 0.19.1
|
| 42 |
+
- TRL: 1.3.0
|
| 43 |
+
- Transformers: 5.7.0
|
| 44 |
+
- Pytorch: 2.10.0+cu128
|
| 45 |
+
- Datasets: 4.8.5
|
| 46 |
+
- Tokenizers: 0.22.2
|
| 47 |
+
|
| 48 |
+
## Citations
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
Cite TRL as:
|
| 53 |
+
|
| 54 |
+
```bibtex
|
| 55 |
+
@software{vonwerra2020trl,
|
| 56 |
+
title = {{TRL: Transformers Reinforcement Learning}},
|
| 57 |
+
author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
|
| 58 |
+
license = {Apache-2.0},
|
| 59 |
+
url = {https://github.com/huggingface/trl},
|
| 60 |
+
year = {2020}
|
| 61 |
+
}
|
| 62 |
+
```
|
adapter_config.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
"alpha_pattern": {},
|
| 4 |
"arrow_config": null,
|
| 5 |
"auto_mapping": null,
|
| 6 |
-
"base_model_name_or_path": "/
|
| 7 |
"bias": "none",
|
| 8 |
"corda_config": null,
|
| 9 |
"ensure_weight_tying": false,
|
|
@@ -30,11 +30,11 @@
|
|
| 30 |
"rank_pattern": {},
|
| 31 |
"revision": null,
|
| 32 |
"target_modules": [
|
| 33 |
-
"
|
| 34 |
-
"k_proj",
|
| 35 |
"up_proj",
|
|
|
|
|
|
|
| 36 |
"o_proj",
|
| 37 |
-
"gate_proj",
|
| 38 |
"q_proj",
|
| 39 |
"down_proj"
|
| 40 |
],
|
|
|
|
| 3 |
"alpha_pattern": {},
|
| 4 |
"arrow_config": null,
|
| 5 |
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "Qwen/Qwen3-1.7B",
|
| 7 |
"bias": "none",
|
| 8 |
"corda_config": null,
|
| 9 |
"ensure_weight_tying": false,
|
|
|
|
| 30 |
"rank_pattern": {},
|
| 31 |
"revision": null,
|
| 32 |
"target_modules": [
|
| 33 |
+
"gate_proj",
|
|
|
|
| 34 |
"up_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"v_proj",
|
| 37 |
"o_proj",
|
|
|
|
| 38 |
"q_proj",
|
| 39 |
"down_proj"
|
| 40 |
],
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 278973888
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4a34d6cb60272e20aa2e7ff784ab169d7e50e64fc086ebfcbb06729104f17ad
|
| 3 |
size 278973888
|
chat_template.jinja
CHANGED
|
@@ -11,9 +11,7 @@
|
|
| 11 |
{{- "\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" }}
|
| 12 |
{%- else %}
|
| 13 |
{%- if messages[0].role == 'system' %}
|
| 14 |
-
{{- '<|im_start|>system\n' + messages[0].content + '
|
| 15 |
-
{%- else %}
|
| 16 |
-
{{- '<|im_start|>system\nPlease reason step by step, and put your final answer within \\boxed{}.<|im_end|>\n' }}
|
| 17 |
{%- endif %}
|
| 18 |
{%- endif %}
|
| 19 |
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
|
@@ -87,7 +85,5 @@
|
|
| 87 |
{{- '<|im_start|>assistant\n' }}
|
| 88 |
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 89 |
{{- '<think>\n\n</think>\n\n' }}
|
| 90 |
-
{%- else %}
|
| 91 |
-
{{- '<think>\n' }}
|
| 92 |
{%- endif %}
|
| 93 |
{%- endif %}
|
|
|
|
| 11 |
{{- "\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" }}
|
| 12 |
{%- else %}
|
| 13 |
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
|
|
|
|
|
|
| 15 |
{%- endif %}
|
| 16 |
{%- endif %}
|
| 17 |
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
|
|
|
| 85 |
{{- '<|im_start|>assistant\n' }}
|
| 86 |
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 87 |
{{- '<think>\n\n</think>\n\n' }}
|
|
|
|
|
|
|
| 88 |
{%- endif %}
|
| 89 |
{%- endif %}
|
checkpoint-523/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3-1.7B
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:Qwen/Qwen3-1.7B
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.19.1
|
checkpoint-523/adapter_config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "Qwen/Qwen3-1.7B",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 128,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 64,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"gate_proj",
|
| 34 |
+
"up_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"v_proj",
|
| 37 |
+
"o_proj",
|
| 38 |
+
"q_proj",
|
| 39 |
+
"down_proj"
|
| 40 |
+
],
|
| 41 |
+
"target_parameters": null,
|
| 42 |
+
"task_type": "CAUSAL_LM",
|
| 43 |
+
"trainable_token_indices": null,
|
| 44 |
+
"use_bdlora": null,
|
| 45 |
+
"use_dora": false,
|
| 46 |
+
"use_qalora": false,
|
| 47 |
+
"use_rslora": false
|
| 48 |
+
}
|
checkpoint-523/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4a34d6cb60272e20aa2e7ff784ab169d7e50e64fc086ebfcbb06729104f17ad
|
| 3 |
+
size 278973888
|
checkpoint-523/chat_template.jinja
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# 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>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\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" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 18 |
+
{%- for message in messages[::-1] %}
|
| 19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 20 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 21 |
+
{%- set ns.multi_step_tool = false %}
|
| 22 |
+
{%- set ns.last_query_index = index %}
|
| 23 |
+
{%- endif %}
|
| 24 |
+
{%- endfor %}
|
| 25 |
+
{%- for message in messages %}
|
| 26 |
+
{%- if message.content is string %}
|
| 27 |
+
{%- set content = message.content %}
|
| 28 |
+
{%- else %}
|
| 29 |
+
{%- set content = '' %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 32 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 33 |
+
{%- elif message.role == "assistant" %}
|
| 34 |
+
{%- set reasoning_content = '' %}
|
| 35 |
+
{%- if message.reasoning_content is string %}
|
| 36 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 37 |
+
{%- else %}
|
| 38 |
+
{%- if '</think>' in content %}
|
| 39 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 40 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 44 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 45 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 46 |
+
{%- else %}
|
| 47 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 48 |
+
{%- endif %}
|
| 49 |
+
{%- else %}
|
| 50 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{%- if message.tool_calls %}
|
| 53 |
+
{%- for tool_call in message.tool_calls %}
|
| 54 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 55 |
+
{{- '\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- if tool_call.function %}
|
| 58 |
+
{%- set tool_call = tool_call.function %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 61 |
+
{{- tool_call.name }}
|
| 62 |
+
{{- '", "arguments": ' }}
|
| 63 |
+
{%- if tool_call.arguments is string %}
|
| 64 |
+
{{- tool_call.arguments }}
|
| 65 |
+
{%- else %}
|
| 66 |
+
{{- tool_call.arguments | tojson }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{{- '}\n</tool_call>' }}
|
| 69 |
+
{%- endfor %}
|
| 70 |
+
{%- endif %}
|
| 71 |
+
{{- '<|im_end|>\n' }}
|
| 72 |
+
{%- elif message.role == "tool" %}
|
| 73 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 74 |
+
{{- '<|im_start|>user' }}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{{- '\n<tool_response>\n' }}
|
| 77 |
+
{{- content }}
|
| 78 |
+
{{- '\n</tool_response>' }}
|
| 79 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 80 |
+
{{- '<|im_end|>\n' }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{%- endfor %}
|
| 84 |
+
{%- if add_generation_prompt %}
|
| 85 |
+
{{- '<|im_start|>assistant\n' }}
|
| 86 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 87 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 88 |
+
{%- endif %}
|
| 89 |
+
{%- endif %}
|
checkpoint-523/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:557f15b4ab12bbdb2795d911603de347db6aa5003edc425e88fe7ea0d617928b
|
| 3 |
+
size 558179131
|
checkpoint-523/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6000bea5b6582b1ea7a0702d7f09db6781b1a2c5478c0b9e294ce0e83de8b1b7
|
| 3 |
+
size 14645
|
checkpoint-523/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a1befd9405b36d08df13b62cdbfaa237005ad864bba7330bd4e5868806268915
|
| 3 |
+
size 1465
|
checkpoint-523/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506
|
| 3 |
+
size 11422650
|
checkpoint-523/tokenizer_config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|im_start|>",
|
| 10 |
+
"<|im_end|>",
|
| 11 |
+
"<|object_ref_start|>",
|
| 12 |
+
"<|object_ref_end|>",
|
| 13 |
+
"<|box_start|>",
|
| 14 |
+
"<|box_end|>",
|
| 15 |
+
"<|quad_start|>",
|
| 16 |
+
"<|quad_end|>",
|
| 17 |
+
"<|vision_start|>",
|
| 18 |
+
"<|vision_end|>",
|
| 19 |
+
"<|vision_pad|>",
|
| 20 |
+
"<|image_pad|>",
|
| 21 |
+
"<|video_pad|>"
|
| 22 |
+
],
|
| 23 |
+
"is_local": false,
|
| 24 |
+
"local_files_only": false,
|
| 25 |
+
"model_max_length": 131072,
|
| 26 |
+
"pad_token": "<|im_end|>",
|
| 27 |
+
"split_special_tokens": false,
|
| 28 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 29 |
+
"unk_token": null
|
| 30 |
+
}
|
checkpoint-523/trainer_state.json
ADDED
|
@@ -0,0 +1,1074 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 523,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 1.0665544390678405,
|
| 14 |
+
"epoch": 0.009564801530368245,
|
| 15 |
+
"grad_norm": 7.266966819763184,
|
| 16 |
+
"learning_rate": 1.9847036328871892e-05,
|
| 17 |
+
"loss": 3.3126815795898437,
|
| 18 |
+
"mean_token_accuracy": 0.5152505904436111,
|
| 19 |
+
"num_tokens": 11869.0,
|
| 20 |
+
"step": 5
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 1.2805143028497696,
|
| 24 |
+
"epoch": 0.01912960306073649,
|
| 25 |
+
"grad_norm": 3.330770969390869,
|
| 26 |
+
"learning_rate": 1.9655831739961763e-05,
|
| 27 |
+
"loss": 2.378124809265137,
|
| 28 |
+
"mean_token_accuracy": 0.5544410474598408,
|
| 29 |
+
"num_tokens": 23972.0,
|
| 30 |
+
"step": 10
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 1.4796727746725082,
|
| 34 |
+
"epoch": 0.028694404591104734,
|
| 35 |
+
"grad_norm": 2.438797950744629,
|
| 36 |
+
"learning_rate": 1.9464627151051627e-05,
|
| 37 |
+
"loss": 2.000799369812012,
|
| 38 |
+
"mean_token_accuracy": 0.6126716285943985,
|
| 39 |
+
"num_tokens": 34800.0,
|
| 40 |
+
"step": 15
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 1.4435037538409232,
|
| 44 |
+
"epoch": 0.03825920612147298,
|
| 45 |
+
"grad_norm": 1.9382376670837402,
|
| 46 |
+
"learning_rate": 1.9273422562141494e-05,
|
| 47 |
+
"loss": 1.672298049926758,
|
| 48 |
+
"mean_token_accuracy": 0.6865913391113281,
|
| 49 |
+
"num_tokens": 45962.0,
|
| 50 |
+
"step": 20
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.3491962760686875,
|
| 54 |
+
"epoch": 0.04782400765184122,
|
| 55 |
+
"grad_norm": 1.680039405822754,
|
| 56 |
+
"learning_rate": 1.9082217973231358e-05,
|
| 57 |
+
"loss": 1.5856297492980957,
|
| 58 |
+
"mean_token_accuracy": 0.7024275124073028,
|
| 59 |
+
"num_tokens": 57751.0,
|
| 60 |
+
"step": 25
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 1.3521313786506652,
|
| 64 |
+
"epoch": 0.05738880918220947,
|
| 65 |
+
"grad_norm": 1.7791980504989624,
|
| 66 |
+
"learning_rate": 1.8891013384321225e-05,
|
| 67 |
+
"loss": 1.4701250076293946,
|
| 68 |
+
"mean_token_accuracy": 0.7221976324915886,
|
| 69 |
+
"num_tokens": 69847.0,
|
| 70 |
+
"step": 30
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 1.3791843384504319,
|
| 74 |
+
"epoch": 0.06695361071257772,
|
| 75 |
+
"grad_norm": 1.8829128742218018,
|
| 76 |
+
"learning_rate": 1.8699808795411092e-05,
|
| 77 |
+
"loss": 1.489466953277588,
|
| 78 |
+
"mean_token_accuracy": 0.718243633210659,
|
| 79 |
+
"num_tokens": 83512.0,
|
| 80 |
+
"step": 35
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 1.1701442301273346,
|
| 84 |
+
"epoch": 0.07651841224294596,
|
| 85 |
+
"grad_norm": 0.8093661069869995,
|
| 86 |
+
"learning_rate": 1.8508604206500956e-05,
|
| 87 |
+
"loss": 1.247416877746582,
|
| 88 |
+
"mean_token_accuracy": 0.7470418244600296,
|
| 89 |
+
"num_tokens": 97302.0,
|
| 90 |
+
"step": 40
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 1.1545261979103087,
|
| 94 |
+
"epoch": 0.08608321377331421,
|
| 95 |
+
"grad_norm": 0.950099527835846,
|
| 96 |
+
"learning_rate": 1.8317399617590823e-05,
|
| 97 |
+
"loss": 1.1583795547485352,
|
| 98 |
+
"mean_token_accuracy": 0.7541720911860466,
|
| 99 |
+
"num_tokens": 109073.0,
|
| 100 |
+
"step": 45
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 1.100637601315975,
|
| 104 |
+
"epoch": 0.09564801530368244,
|
| 105 |
+
"grad_norm": 0.8909251689910889,
|
| 106 |
+
"learning_rate": 1.812619502868069e-05,
|
| 107 |
+
"loss": 1.115468406677246,
|
| 108 |
+
"mean_token_accuracy": 0.7589421957731247,
|
| 109 |
+
"num_tokens": 121091.0,
|
| 110 |
+
"step": 50
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 1.1415159791707992,
|
| 114 |
+
"epoch": 0.10521281683405069,
|
| 115 |
+
"grad_norm": 0.7876622676849365,
|
| 116 |
+
"learning_rate": 1.7934990439770558e-05,
|
| 117 |
+
"loss": 1.2450020790100098,
|
| 118 |
+
"mean_token_accuracy": 0.7546127334237098,
|
| 119 |
+
"num_tokens": 133280.0,
|
| 120 |
+
"step": 55
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 1.0959452569484711,
|
| 124 |
+
"epoch": 0.11477761836441894,
|
| 125 |
+
"grad_norm": 0.7705210447311401,
|
| 126 |
+
"learning_rate": 1.774378585086042e-05,
|
| 127 |
+
"loss": 1.2061676979064941,
|
| 128 |
+
"mean_token_accuracy": 0.760649724304676,
|
| 129 |
+
"num_tokens": 145553.0,
|
| 130 |
+
"step": 60
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 1.0722251057624816,
|
| 134 |
+
"epoch": 0.12434241989478718,
|
| 135 |
+
"grad_norm": 0.8483577966690063,
|
| 136 |
+
"learning_rate": 1.755258126195029e-05,
|
| 137 |
+
"loss": 1.074929904937744,
|
| 138 |
+
"mean_token_accuracy": 0.7646624684333801,
|
| 139 |
+
"num_tokens": 156510.0,
|
| 140 |
+
"step": 65
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 1.0666887134313583,
|
| 144 |
+
"epoch": 0.13390722142515543,
|
| 145 |
+
"grad_norm": 1.1835429668426514,
|
| 146 |
+
"learning_rate": 1.7361376673040153e-05,
|
| 147 |
+
"loss": 1.0667908668518067,
|
| 148 |
+
"mean_token_accuracy": 0.7600223839282989,
|
| 149 |
+
"num_tokens": 167771.0,
|
| 150 |
+
"step": 70
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 1.1028031438589097,
|
| 154 |
+
"epoch": 0.14347202295552366,
|
| 155 |
+
"grad_norm": 0.8335422277450562,
|
| 156 |
+
"learning_rate": 1.717017208413002e-05,
|
| 157 |
+
"loss": 1.1114809036254882,
|
| 158 |
+
"mean_token_accuracy": 0.758377981185913,
|
| 159 |
+
"num_tokens": 181011.0,
|
| 160 |
+
"step": 75
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 1.0945842400193215,
|
| 164 |
+
"epoch": 0.15303682448589193,
|
| 165 |
+
"grad_norm": 0.9592422246932983,
|
| 166 |
+
"learning_rate": 1.6978967495219887e-05,
|
| 167 |
+
"loss": 1.2732584953308106,
|
| 168 |
+
"mean_token_accuracy": 0.7424929365515709,
|
| 169 |
+
"num_tokens": 194140.0,
|
| 170 |
+
"step": 80
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 1.0649883642792701,
|
| 174 |
+
"epoch": 0.16260162601626016,
|
| 175 |
+
"grad_norm": 0.8365988731384277,
|
| 176 |
+
"learning_rate": 1.678776290630975e-05,
|
| 177 |
+
"loss": 1.0620740890502929,
|
| 178 |
+
"mean_token_accuracy": 0.7718699693679809,
|
| 179 |
+
"num_tokens": 204855.0,
|
| 180 |
+
"step": 85
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 1.1211044788360596,
|
| 184 |
+
"epoch": 0.17216642754662842,
|
| 185 |
+
"grad_norm": 0.8917149305343628,
|
| 186 |
+
"learning_rate": 1.6596558317399618e-05,
|
| 187 |
+
"loss": 1.1643722534179688,
|
| 188 |
+
"mean_token_accuracy": 0.7537558972835541,
|
| 189 |
+
"num_tokens": 215913.0,
|
| 190 |
+
"step": 90
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 1.0351512983441353,
|
| 194 |
+
"epoch": 0.18173122907699665,
|
| 195 |
+
"grad_norm": 1.00289785861969,
|
| 196 |
+
"learning_rate": 1.6405353728489485e-05,
|
| 197 |
+
"loss": 1.0665692329406737,
|
| 198 |
+
"mean_token_accuracy": 0.7725299909710884,
|
| 199 |
+
"num_tokens": 226093.0,
|
| 200 |
+
"step": 95
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 1.1421371474862099,
|
| 204 |
+
"epoch": 0.1912960306073649,
|
| 205 |
+
"grad_norm": 0.8887011408805847,
|
| 206 |
+
"learning_rate": 1.6214149139579353e-05,
|
| 207 |
+
"loss": 1.1906902313232421,
|
| 208 |
+
"mean_token_accuracy": 0.752318462729454,
|
| 209 |
+
"num_tokens": 239629.0,
|
| 210 |
+
"step": 100
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 1.0672243744134904,
|
| 214 |
+
"epoch": 0.20086083213773315,
|
| 215 |
+
"grad_norm": 0.7768471240997314,
|
| 216 |
+
"learning_rate": 1.6022944550669217e-05,
|
| 217 |
+
"loss": 1.153627300262451,
|
| 218 |
+
"mean_token_accuracy": 0.7630036354064942,
|
| 219 |
+
"num_tokens": 251275.0,
|
| 220 |
+
"step": 105
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 1.0277603179216386,
|
| 224 |
+
"epoch": 0.21042563366810138,
|
| 225 |
+
"grad_norm": 0.7372347712516785,
|
| 226 |
+
"learning_rate": 1.5831739961759084e-05,
|
| 227 |
+
"loss": 1.0442614555358887,
|
| 228 |
+
"mean_token_accuracy": 0.7712178140878677,
|
| 229 |
+
"num_tokens": 264258.0,
|
| 230 |
+
"step": 110
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 1.059542353451252,
|
| 234 |
+
"epoch": 0.21999043519846964,
|
| 235 |
+
"grad_norm": 0.8132668137550354,
|
| 236 |
+
"learning_rate": 1.564053537284895e-05,
|
| 237 |
+
"loss": 1.0991342544555665,
|
| 238 |
+
"mean_token_accuracy": 0.7706641733646393,
|
| 239 |
+
"num_tokens": 276003.0,
|
| 240 |
+
"step": 115
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 1.0556578651070594,
|
| 244 |
+
"epoch": 0.22955523672883787,
|
| 245 |
+
"grad_norm": 0.8376557230949402,
|
| 246 |
+
"learning_rate": 1.5449330783938815e-05,
|
| 247 |
+
"loss": 1.1164920806884766,
|
| 248 |
+
"mean_token_accuracy": 0.7708584055304527,
|
| 249 |
+
"num_tokens": 287129.0,
|
| 250 |
+
"step": 120
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 1.1015635192394257,
|
| 254 |
+
"epoch": 0.2391200382592061,
|
| 255 |
+
"grad_norm": 0.7270181775093079,
|
| 256 |
+
"learning_rate": 1.5258126195028682e-05,
|
| 257 |
+
"loss": 1.1382445335388183,
|
| 258 |
+
"mean_token_accuracy": 0.7551500603556633,
|
| 259 |
+
"num_tokens": 298982.0,
|
| 260 |
+
"step": 125
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 1.15430339127779,
|
| 264 |
+
"epoch": 0.24868483978957437,
|
| 265 |
+
"grad_norm": 0.7416822910308838,
|
| 266 |
+
"learning_rate": 1.5066921606118548e-05,
|
| 267 |
+
"loss": 1.247046947479248,
|
| 268 |
+
"mean_token_accuracy": 0.7518013462424278,
|
| 269 |
+
"num_tokens": 311333.0,
|
| 270 |
+
"step": 130
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 1.1022175028920174,
|
| 274 |
+
"epoch": 0.2582496413199426,
|
| 275 |
+
"grad_norm": 0.9017020463943481,
|
| 276 |
+
"learning_rate": 1.4875717017208415e-05,
|
| 277 |
+
"loss": 1.143028736114502,
|
| 278 |
+
"mean_token_accuracy": 0.7529011055827141,
|
| 279 |
+
"num_tokens": 324232.0,
|
| 280 |
+
"step": 135
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 1.0331857725977898,
|
| 284 |
+
"epoch": 0.26781444285031086,
|
| 285 |
+
"grad_norm": 0.8787259459495544,
|
| 286 |
+
"learning_rate": 1.468451242829828e-05,
|
| 287 |
+
"loss": 1.022813320159912,
|
| 288 |
+
"mean_token_accuracy": 0.769845749437809,
|
| 289 |
+
"num_tokens": 336972.0,
|
| 290 |
+
"step": 140
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 1.1121376857161522,
|
| 294 |
+
"epoch": 0.2773792443806791,
|
| 295 |
+
"grad_norm": 0.7721160054206848,
|
| 296 |
+
"learning_rate": 1.4493307839388146e-05,
|
| 297 |
+
"loss": 1.1562235832214356,
|
| 298 |
+
"mean_token_accuracy": 0.7480840817093849,
|
| 299 |
+
"num_tokens": 350739.0,
|
| 300 |
+
"step": 145
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 1.013964520394802,
|
| 304 |
+
"epoch": 0.28694404591104733,
|
| 305 |
+
"grad_norm": 0.8108949065208435,
|
| 306 |
+
"learning_rate": 1.4302103250478012e-05,
|
| 307 |
+
"loss": 1.0951598167419434,
|
| 308 |
+
"mean_token_accuracy": 0.768579913675785,
|
| 309 |
+
"num_tokens": 362957.0,
|
| 310 |
+
"step": 150
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 1.0007272481918335,
|
| 314 |
+
"epoch": 0.2965088474414156,
|
| 315 |
+
"grad_norm": 0.8035533428192139,
|
| 316 |
+
"learning_rate": 1.4110898661567877e-05,
|
| 317 |
+
"loss": 1.0634474754333496,
|
| 318 |
+
"mean_token_accuracy": 0.7801168739795685,
|
| 319 |
+
"num_tokens": 374885.0,
|
| 320 |
+
"step": 155
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 0.9950303554534912,
|
| 324 |
+
"epoch": 0.30607364897178385,
|
| 325 |
+
"grad_norm": 0.855779767036438,
|
| 326 |
+
"learning_rate": 1.3919694072657746e-05,
|
| 327 |
+
"loss": 1.0329642295837402,
|
| 328 |
+
"mean_token_accuracy": 0.7754173740744591,
|
| 329 |
+
"num_tokens": 386604.0,
|
| 330 |
+
"step": 160
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 1.129347711801529,
|
| 334 |
+
"epoch": 0.31563845050215206,
|
| 335 |
+
"grad_norm": 0.8067175149917603,
|
| 336 |
+
"learning_rate": 1.3728489483747612e-05,
|
| 337 |
+
"loss": 1.2617739677429198,
|
| 338 |
+
"mean_token_accuracy": 0.752812922000885,
|
| 339 |
+
"num_tokens": 400667.0,
|
| 340 |
+
"step": 165
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 1.0334825284779072,
|
| 344 |
+
"epoch": 0.3252032520325203,
|
| 345 |
+
"grad_norm": 0.7753680348396301,
|
| 346 |
+
"learning_rate": 1.3537284894837477e-05,
|
| 347 |
+
"loss": 1.0933710098266602,
|
| 348 |
+
"mean_token_accuracy": 0.7654023811221122,
|
| 349 |
+
"num_tokens": 413697.0,
|
| 350 |
+
"step": 170
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 1.0722475484013558,
|
| 354 |
+
"epoch": 0.3347680535628886,
|
| 355 |
+
"grad_norm": 1.0841805934906006,
|
| 356 |
+
"learning_rate": 1.3346080305927343e-05,
|
| 357 |
+
"loss": 1.123507022857666,
|
| 358 |
+
"mean_token_accuracy": 0.7632338643074036,
|
| 359 |
+
"num_tokens": 426032.0,
|
| 360 |
+
"step": 175
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 1.114607611298561,
|
| 364 |
+
"epoch": 0.34433285509325684,
|
| 365 |
+
"grad_norm": 0.7770711779594421,
|
| 366 |
+
"learning_rate": 1.315487571701721e-05,
|
| 367 |
+
"loss": 1.1765986442565919,
|
| 368 |
+
"mean_token_accuracy": 0.7503737643361091,
|
| 369 |
+
"num_tokens": 439617.0,
|
| 370 |
+
"step": 180
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 1.106437611579895,
|
| 374 |
+
"epoch": 0.35389765662362505,
|
| 375 |
+
"grad_norm": 0.6629571914672852,
|
| 376 |
+
"learning_rate": 1.2963671128107076e-05,
|
| 377 |
+
"loss": 1.1976131439208983,
|
| 378 |
+
"mean_token_accuracy": 0.7521042451262474,
|
| 379 |
+
"num_tokens": 454892.0,
|
| 380 |
+
"step": 185
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 1.0261308953166008,
|
| 384 |
+
"epoch": 0.3634624581539933,
|
| 385 |
+
"grad_norm": 0.7957693934440613,
|
| 386 |
+
"learning_rate": 1.2772466539196941e-05,
|
| 387 |
+
"loss": 1.0424925804138183,
|
| 388 |
+
"mean_token_accuracy": 0.7689518257975578,
|
| 389 |
+
"num_tokens": 466729.0,
|
| 390 |
+
"step": 190
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 1.0590496703982353,
|
| 394 |
+
"epoch": 0.37302725968436157,
|
| 395 |
+
"grad_norm": 0.774701714515686,
|
| 396 |
+
"learning_rate": 1.2581261950286807e-05,
|
| 397 |
+
"loss": 1.1352399826049804,
|
| 398 |
+
"mean_token_accuracy": 0.7628853857517243,
|
| 399 |
+
"num_tokens": 478835.0,
|
| 400 |
+
"step": 195
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 1.0802394181489945,
|
| 404 |
+
"epoch": 0.3825920612147298,
|
| 405 |
+
"grad_norm": 0.8261803388595581,
|
| 406 |
+
"learning_rate": 1.2390057361376676e-05,
|
| 407 |
+
"loss": 1.1389860153198241,
|
| 408 |
+
"mean_token_accuracy": 0.7560409680008888,
|
| 409 |
+
"num_tokens": 490990.0,
|
| 410 |
+
"step": 200
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 1.0673254057765007,
|
| 414 |
+
"epoch": 0.39215686274509803,
|
| 415 |
+
"grad_norm": 0.8868000507354736,
|
| 416 |
+
"learning_rate": 1.2198852772466541e-05,
|
| 417 |
+
"loss": 1.123587417602539,
|
| 418 |
+
"mean_token_accuracy": 0.7629709094762802,
|
| 419 |
+
"num_tokens": 504051.0,
|
| 420 |
+
"step": 205
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 1.0202552631497384,
|
| 424 |
+
"epoch": 0.4017216642754663,
|
| 425 |
+
"grad_norm": 0.6817913055419922,
|
| 426 |
+
"learning_rate": 1.2007648183556407e-05,
|
| 427 |
+
"loss": 1.1182997703552247,
|
| 428 |
+
"mean_token_accuracy": 0.762927383184433,
|
| 429 |
+
"num_tokens": 519436.0,
|
| 430 |
+
"step": 210
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 0.9513417720794678,
|
| 434 |
+
"epoch": 0.41128646580583456,
|
| 435 |
+
"grad_norm": 0.7766347527503967,
|
| 436 |
+
"learning_rate": 1.1816443594646272e-05,
|
| 437 |
+
"loss": 0.9787687301635742,
|
| 438 |
+
"mean_token_accuracy": 0.7758817136287689,
|
| 439 |
+
"num_tokens": 531451.0,
|
| 440 |
+
"step": 215
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 1.021947756409645,
|
| 444 |
+
"epoch": 0.42085126733620276,
|
| 445 |
+
"grad_norm": 0.768451988697052,
|
| 446 |
+
"learning_rate": 1.162523900573614e-05,
|
| 447 |
+
"loss": 1.0611325263977052,
|
| 448 |
+
"mean_token_accuracy": 0.7702895030379295,
|
| 449 |
+
"num_tokens": 543781.0,
|
| 450 |
+
"step": 220
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 0.9991461083292961,
|
| 454 |
+
"epoch": 0.430416068866571,
|
| 455 |
+
"grad_norm": 0.8404542803764343,
|
| 456 |
+
"learning_rate": 1.1434034416826005e-05,
|
| 457 |
+
"loss": 1.0780817985534668,
|
| 458 |
+
"mean_token_accuracy": 0.7719197928905487,
|
| 459 |
+
"num_tokens": 557321.0,
|
| 460 |
+
"step": 225
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 1.024046105146408,
|
| 464 |
+
"epoch": 0.4399808703969393,
|
| 465 |
+
"grad_norm": 0.8072119355201721,
|
| 466 |
+
"learning_rate": 1.124282982791587e-05,
|
| 467 |
+
"loss": 1.039454174041748,
|
| 468 |
+
"mean_token_accuracy": 0.774782894551754,
|
| 469 |
+
"num_tokens": 568606.0,
|
| 470 |
+
"step": 230
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 1.032619222998619,
|
| 474 |
+
"epoch": 0.4495456719273075,
|
| 475 |
+
"grad_norm": 0.8191614747047424,
|
| 476 |
+
"learning_rate": 1.1051625239005736e-05,
|
| 477 |
+
"loss": 1.0365934371948242,
|
| 478 |
+
"mean_token_accuracy": 0.7662370949983597,
|
| 479 |
+
"num_tokens": 580273.0,
|
| 480 |
+
"step": 235
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 0.9828310400247574,
|
| 484 |
+
"epoch": 0.45911047345767575,
|
| 485 |
+
"grad_norm": 0.7097588777542114,
|
| 486 |
+
"learning_rate": 1.0860420650095602e-05,
|
| 487 |
+
"loss": 0.9995201110839844,
|
| 488 |
+
"mean_token_accuracy": 0.7850929573178291,
|
| 489 |
+
"num_tokens": 591076.0,
|
| 490 |
+
"step": 240
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 1.0766605302691459,
|
| 494 |
+
"epoch": 0.468675274988044,
|
| 495 |
+
"grad_norm": 0.7697131037712097,
|
| 496 |
+
"learning_rate": 1.066921606118547e-05,
|
| 497 |
+
"loss": 1.2869989395141601,
|
| 498 |
+
"mean_token_accuracy": 0.7609236977994442,
|
| 499 |
+
"num_tokens": 604888.0,
|
| 500 |
+
"step": 245
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 1.0177167639136315,
|
| 504 |
+
"epoch": 0.4782400765184122,
|
| 505 |
+
"grad_norm": 0.8414968848228455,
|
| 506 |
+
"learning_rate": 1.0478011472275336e-05,
|
| 507 |
+
"loss": 1.049800205230713,
|
| 508 |
+
"mean_token_accuracy": 0.7701354175806046,
|
| 509 |
+
"num_tokens": 617663.0,
|
| 510 |
+
"step": 250
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"entropy": 1.077294373512268,
|
| 514 |
+
"epoch": 0.4878048780487805,
|
| 515 |
+
"grad_norm": 0.738322913646698,
|
| 516 |
+
"learning_rate": 1.0286806883365202e-05,
|
| 517 |
+
"loss": 1.1312056541442872,
|
| 518 |
+
"mean_token_accuracy": 0.7647411957383156,
|
| 519 |
+
"num_tokens": 630029.0,
|
| 520 |
+
"step": 255
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 1.047728145122528,
|
| 524 |
+
"epoch": 0.49736967957914874,
|
| 525 |
+
"grad_norm": 0.8730350732803345,
|
| 526 |
+
"learning_rate": 1.0095602294455067e-05,
|
| 527 |
+
"loss": 1.067624855041504,
|
| 528 |
+
"mean_token_accuracy": 0.7657899752259254,
|
| 529 |
+
"num_tokens": 641327.0,
|
| 530 |
+
"step": 260
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 1.0261075347661972,
|
| 534 |
+
"epoch": 0.506934481109517,
|
| 535 |
+
"grad_norm": 0.7349242568016052,
|
| 536 |
+
"learning_rate": 9.904397705544934e-06,
|
| 537 |
+
"loss": 1.0252650260925293,
|
| 538 |
+
"mean_token_accuracy": 0.7747346982359886,
|
| 539 |
+
"num_tokens": 652494.0,
|
| 540 |
+
"step": 265
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 1.0701305642724037,
|
| 544 |
+
"epoch": 0.5164992826398852,
|
| 545 |
+
"grad_norm": 0.9694271087646484,
|
| 546 |
+
"learning_rate": 9.7131931166348e-06,
|
| 547 |
+
"loss": 1.1342878341674805,
|
| 548 |
+
"mean_token_accuracy": 0.7671242266893387,
|
| 549 |
+
"num_tokens": 664262.0,
|
| 550 |
+
"step": 270
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 1.002896775305271,
|
| 554 |
+
"epoch": 0.5260640841702535,
|
| 555 |
+
"grad_norm": 0.6827502250671387,
|
| 556 |
+
"learning_rate": 9.521988527724666e-06,
|
| 557 |
+
"loss": 1.0188935279846192,
|
| 558 |
+
"mean_token_accuracy": 0.770347212255001,
|
| 559 |
+
"num_tokens": 676361.0,
|
| 560 |
+
"step": 275
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"entropy": 1.095559985935688,
|
| 564 |
+
"epoch": 0.5356288857006217,
|
| 565 |
+
"grad_norm": 0.8086148500442505,
|
| 566 |
+
"learning_rate": 9.330783938814533e-06,
|
| 567 |
+
"loss": 1.13911771774292,
|
| 568 |
+
"mean_token_accuracy": 0.7597231984138488,
|
| 569 |
+
"num_tokens": 687676.0,
|
| 570 |
+
"step": 280
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"entropy": 1.0357700750231742,
|
| 574 |
+
"epoch": 0.5451936872309899,
|
| 575 |
+
"grad_norm": 0.8582542538642883,
|
| 576 |
+
"learning_rate": 9.139579349904398e-06,
|
| 577 |
+
"loss": 1.1252613067626953,
|
| 578 |
+
"mean_token_accuracy": 0.7737304389476776,
|
| 579 |
+
"num_tokens": 701525.0,
|
| 580 |
+
"step": 285
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"entropy": 1.026543913781643,
|
| 584 |
+
"epoch": 0.5547584887613582,
|
| 585 |
+
"grad_norm": 0.7670846581459045,
|
| 586 |
+
"learning_rate": 8.948374760994266e-06,
|
| 587 |
+
"loss": 1.0703323364257813,
|
| 588 |
+
"mean_token_accuracy": 0.7629063084721566,
|
| 589 |
+
"num_tokens": 714679.0,
|
| 590 |
+
"step": 290
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"entropy": 1.0737508490681649,
|
| 594 |
+
"epoch": 0.5643232902917265,
|
| 595 |
+
"grad_norm": 0.8508143424987793,
|
| 596 |
+
"learning_rate": 8.757170172084131e-06,
|
| 597 |
+
"loss": 1.124532699584961,
|
| 598 |
+
"mean_token_accuracy": 0.761698454618454,
|
| 599 |
+
"num_tokens": 727453.0,
|
| 600 |
+
"step": 295
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"entropy": 1.0055931195616723,
|
| 604 |
+
"epoch": 0.5738880918220947,
|
| 605 |
+
"grad_norm": 0.7749042510986328,
|
| 606 |
+
"learning_rate": 8.565965583173997e-06,
|
| 607 |
+
"loss": 1.000310230255127,
|
| 608 |
+
"mean_token_accuracy": 0.7788769990205765,
|
| 609 |
+
"num_tokens": 738987.0,
|
| 610 |
+
"step": 300
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"entropy": 1.1338727325201035,
|
| 614 |
+
"epoch": 0.583452893352463,
|
| 615 |
+
"grad_norm": 0.7675312161445618,
|
| 616 |
+
"learning_rate": 8.374760994263862e-06,
|
| 617 |
+
"loss": 1.240555763244629,
|
| 618 |
+
"mean_token_accuracy": 0.7499270647764206,
|
| 619 |
+
"num_tokens": 752986.0,
|
| 620 |
+
"step": 305
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 1.116484060883522,
|
| 624 |
+
"epoch": 0.5930176948828312,
|
| 625 |
+
"grad_norm": 0.6953423023223877,
|
| 626 |
+
"learning_rate": 8.18355640535373e-06,
|
| 627 |
+
"loss": 1.3077027320861816,
|
| 628 |
+
"mean_token_accuracy": 0.7496477924287319,
|
| 629 |
+
"num_tokens": 766987.0,
|
| 630 |
+
"step": 310
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 1.0163599342107772,
|
| 634 |
+
"epoch": 0.6025824964131994,
|
| 635 |
+
"grad_norm": 1.0213820934295654,
|
| 636 |
+
"learning_rate": 7.992351816443595e-06,
|
| 637 |
+
"loss": 1.0718021392822266,
|
| 638 |
+
"mean_token_accuracy": 0.7725750356912613,
|
| 639 |
+
"num_tokens": 779039.0,
|
| 640 |
+
"step": 315
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 1.1485976949334145,
|
| 644 |
+
"epoch": 0.6121472979435677,
|
| 645 |
+
"grad_norm": 0.7093721032142639,
|
| 646 |
+
"learning_rate": 7.80114722753346e-06,
|
| 647 |
+
"loss": 1.3566171646118164,
|
| 648 |
+
"mean_token_accuracy": 0.7532788991928101,
|
| 649 |
+
"num_tokens": 793359.0,
|
| 650 |
+
"step": 320
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 1.026223848760128,
|
| 654 |
+
"epoch": 0.6217120994739359,
|
| 655 |
+
"grad_norm": 0.8051843643188477,
|
| 656 |
+
"learning_rate": 7.609942638623328e-06,
|
| 657 |
+
"loss": 1.0955821037292481,
|
| 658 |
+
"mean_token_accuracy": 0.7727067768573761,
|
| 659 |
+
"num_tokens": 805833.0,
|
| 660 |
+
"step": 325
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 1.0360631138086318,
|
| 664 |
+
"epoch": 0.6312769010043041,
|
| 665 |
+
"grad_norm": 0.8939955234527588,
|
| 666 |
+
"learning_rate": 7.418738049713193e-06,
|
| 667 |
+
"loss": 1.0926706314086914,
|
| 668 |
+
"mean_token_accuracy": 0.7757175087928772,
|
| 669 |
+
"num_tokens": 817359.0,
|
| 670 |
+
"step": 330
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 1.0702629446983338,
|
| 674 |
+
"epoch": 0.6408417025346724,
|
| 675 |
+
"grad_norm": 0.869463324546814,
|
| 676 |
+
"learning_rate": 7.22753346080306e-06,
|
| 677 |
+
"loss": 1.2999201774597169,
|
| 678 |
+
"mean_token_accuracy": 0.7645014680922031,
|
| 679 |
+
"num_tokens": 830691.0,
|
| 680 |
+
"step": 335
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 0.9756309568881989,
|
| 684 |
+
"epoch": 0.6504065040650406,
|
| 685 |
+
"grad_norm": 0.7495210766792297,
|
| 686 |
+
"learning_rate": 7.036328871892925e-06,
|
| 687 |
+
"loss": 0.9702842712402344,
|
| 688 |
+
"mean_token_accuracy": 0.7790682971477508,
|
| 689 |
+
"num_tokens": 844087.0,
|
| 690 |
+
"step": 340
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 1.0872225597500802,
|
| 694 |
+
"epoch": 0.6599713055954088,
|
| 695 |
+
"grad_norm": 0.7233891487121582,
|
| 696 |
+
"learning_rate": 6.8451242829827925e-06,
|
| 697 |
+
"loss": 1.2287683486938477,
|
| 698 |
+
"mean_token_accuracy": 0.7564080432057381,
|
| 699 |
+
"num_tokens": 858098.0,
|
| 700 |
+
"step": 345
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 0.9561280161142349,
|
| 704 |
+
"epoch": 0.6695361071257772,
|
| 705 |
+
"grad_norm": 0.8276292085647583,
|
| 706 |
+
"learning_rate": 6.653919694072658e-06,
|
| 707 |
+
"loss": 0.9720723152160644,
|
| 708 |
+
"mean_token_accuracy": 0.7823744133114815,
|
| 709 |
+
"num_tokens": 869842.0,
|
| 710 |
+
"step": 350
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 0.9766073286533355,
|
| 714 |
+
"epoch": 0.6791009086561454,
|
| 715 |
+
"grad_norm": 0.7800951600074768,
|
| 716 |
+
"learning_rate": 6.4627151051625245e-06,
|
| 717 |
+
"loss": 1.0041848182678224,
|
| 718 |
+
"mean_token_accuracy": 0.7807797461748123,
|
| 719 |
+
"num_tokens": 880652.0,
|
| 720 |
+
"step": 355
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"entropy": 1.040538677573204,
|
| 724 |
+
"epoch": 0.6886657101865137,
|
| 725 |
+
"grad_norm": 0.8833601474761963,
|
| 726 |
+
"learning_rate": 6.27151051625239e-06,
|
| 727 |
+
"loss": 1.0400735855102539,
|
| 728 |
+
"mean_token_accuracy": 0.7732439547777176,
|
| 729 |
+
"num_tokens": 892018.0,
|
| 730 |
+
"step": 360
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 1.0406786598265172,
|
| 734 |
+
"epoch": 0.6982305117168819,
|
| 735 |
+
"grad_norm": 0.7317559719085693,
|
| 736 |
+
"learning_rate": 6.080305927342257e-06,
|
| 737 |
+
"loss": 1.0959332466125489,
|
| 738 |
+
"mean_token_accuracy": 0.7657193571329117,
|
| 739 |
+
"num_tokens": 904435.0,
|
| 740 |
+
"step": 365
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 1.0524535074830055,
|
| 744 |
+
"epoch": 0.7077953132472501,
|
| 745 |
+
"grad_norm": 0.7634838819503784,
|
| 746 |
+
"learning_rate": 5.889101338432123e-06,
|
| 747 |
+
"loss": 1.081229019165039,
|
| 748 |
+
"mean_token_accuracy": 0.762605932354927,
|
| 749 |
+
"num_tokens": 917173.0,
|
| 750 |
+
"step": 370
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 1.0828216448426247,
|
| 754 |
+
"epoch": 0.7173601147776184,
|
| 755 |
+
"grad_norm": 0.7817342281341553,
|
| 756 |
+
"learning_rate": 5.697896749521989e-06,
|
| 757 |
+
"loss": 1.1142399787902832,
|
| 758 |
+
"mean_token_accuracy": 0.7619883432984352,
|
| 759 |
+
"num_tokens": 929853.0,
|
| 760 |
+
"step": 375
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 0.9964733004570008,
|
| 764 |
+
"epoch": 0.7269249163079866,
|
| 765 |
+
"grad_norm": 0.8091410994529724,
|
| 766 |
+
"learning_rate": 5.506692160611855e-06,
|
| 767 |
+
"loss": 1.0676130294799804,
|
| 768 |
+
"mean_token_accuracy": 0.7710230126976967,
|
| 769 |
+
"num_tokens": 942227.0,
|
| 770 |
+
"step": 380
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 1.0303904354572295,
|
| 774 |
+
"epoch": 0.7364897178383548,
|
| 775 |
+
"grad_norm": 0.7632353901863098,
|
| 776 |
+
"learning_rate": 5.315487571701722e-06,
|
| 777 |
+
"loss": 1.0745953559875487,
|
| 778 |
+
"mean_token_accuracy": 0.7737195149064064,
|
| 779 |
+
"num_tokens": 953661.0,
|
| 780 |
+
"step": 385
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 1.0218341886997222,
|
| 784 |
+
"epoch": 0.7460545193687231,
|
| 785 |
+
"grad_norm": 0.8082678914070129,
|
| 786 |
+
"learning_rate": 5.1242829827915875e-06,
|
| 787 |
+
"loss": 1.050875473022461,
|
| 788 |
+
"mean_token_accuracy": 0.7697872579097748,
|
| 789 |
+
"num_tokens": 965285.0,
|
| 790 |
+
"step": 390
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"entropy": 1.144502431154251,
|
| 794 |
+
"epoch": 0.7556193208990913,
|
| 795 |
+
"grad_norm": 0.8677741289138794,
|
| 796 |
+
"learning_rate": 4.933078393881454e-06,
|
| 797 |
+
"loss": 1.238006591796875,
|
| 798 |
+
"mean_token_accuracy": 0.750197383761406,
|
| 799 |
+
"num_tokens": 976399.0,
|
| 800 |
+
"step": 395
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"entropy": 1.0361291944980622,
|
| 804 |
+
"epoch": 0.7651841224294595,
|
| 805 |
+
"grad_norm": 0.7813594937324524,
|
| 806 |
+
"learning_rate": 4.7418738049713195e-06,
|
| 807 |
+
"loss": 1.1359359741210937,
|
| 808 |
+
"mean_token_accuracy": 0.7724275305867195,
|
| 809 |
+
"num_tokens": 988985.0,
|
| 810 |
+
"step": 400
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"entropy": 1.0593642130494119,
|
| 814 |
+
"epoch": 0.7747489239598279,
|
| 815 |
+
"grad_norm": 0.8320329189300537,
|
| 816 |
+
"learning_rate": 4.550669216061186e-06,
|
| 817 |
+
"loss": 1.1087071418762207,
|
| 818 |
+
"mean_token_accuracy": 0.7654044702649117,
|
| 819 |
+
"num_tokens": 1000001.0,
|
| 820 |
+
"step": 405
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"entropy": 1.0726871281862258,
|
| 824 |
+
"epoch": 0.7843137254901961,
|
| 825 |
+
"grad_norm": 0.7686368227005005,
|
| 826 |
+
"learning_rate": 4.359464627151052e-06,
|
| 827 |
+
"loss": 1.0674661636352538,
|
| 828 |
+
"mean_token_accuracy": 0.7652721956372261,
|
| 829 |
+
"num_tokens": 1011748.0,
|
| 830 |
+
"step": 410
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"entropy": 1.042534102499485,
|
| 834 |
+
"epoch": 0.7938785270205643,
|
| 835 |
+
"grad_norm": 0.7759877443313599,
|
| 836 |
+
"learning_rate": 4.168260038240919e-06,
|
| 837 |
+
"loss": 1.0660060882568358,
|
| 838 |
+
"mean_token_accuracy": 0.7741253584623337,
|
| 839 |
+
"num_tokens": 1023418.0,
|
| 840 |
+
"step": 415
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"entropy": 1.0455620855093002,
|
| 844 |
+
"epoch": 0.8034433285509326,
|
| 845 |
+
"grad_norm": 0.7897431254386902,
|
| 846 |
+
"learning_rate": 3.977055449330784e-06,
|
| 847 |
+
"loss": 1.1257256507873534,
|
| 848 |
+
"mean_token_accuracy": 0.7716126814484596,
|
| 849 |
+
"num_tokens": 1036377.0,
|
| 850 |
+
"step": 420
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"entropy": 1.04324461966753,
|
| 854 |
+
"epoch": 0.8130081300813008,
|
| 855 |
+
"grad_norm": 0.8430481553077698,
|
| 856 |
+
"learning_rate": 3.7858508604206506e-06,
|
| 857 |
+
"loss": 1.08157320022583,
|
| 858 |
+
"mean_token_accuracy": 0.7690573886036873,
|
| 859 |
+
"num_tokens": 1048734.0,
|
| 860 |
+
"step": 425
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"entropy": 1.0173504278063774,
|
| 864 |
+
"epoch": 0.8225729316116691,
|
| 865 |
+
"grad_norm": 0.8661599159240723,
|
| 866 |
+
"learning_rate": 3.594646271510517e-06,
|
| 867 |
+
"loss": 1.0198513984680175,
|
| 868 |
+
"mean_token_accuracy": 0.7801295846700669,
|
| 869 |
+
"num_tokens": 1059822.0,
|
| 870 |
+
"step": 430
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"entropy": 1.0838855013251305,
|
| 874 |
+
"epoch": 0.8321377331420373,
|
| 875 |
+
"grad_norm": 0.7001233100891113,
|
| 876 |
+
"learning_rate": 3.4034416826003826e-06,
|
| 877 |
+
"loss": 1.1792843818664551,
|
| 878 |
+
"mean_token_accuracy": 0.7706752866506577,
|
| 879 |
+
"num_tokens": 1072394.0,
|
| 880 |
+
"step": 435
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"entropy": 1.0104505866765976,
|
| 884 |
+
"epoch": 0.8417025346724055,
|
| 885 |
+
"grad_norm": 0.7979400753974915,
|
| 886 |
+
"learning_rate": 3.2122370936902485e-06,
|
| 887 |
+
"loss": 1.0238704681396484,
|
| 888 |
+
"mean_token_accuracy": 0.7801917403936386,
|
| 889 |
+
"num_tokens": 1082875.0,
|
| 890 |
+
"step": 440
|
| 891 |
+
},
|
| 892 |
+
{
|
| 893 |
+
"entropy": 1.0283882372081279,
|
| 894 |
+
"epoch": 0.8512673362027738,
|
| 895 |
+
"grad_norm": 0.6927244067192078,
|
| 896 |
+
"learning_rate": 3.021032504780115e-06,
|
| 897 |
+
"loss": 1.071757698059082,
|
| 898 |
+
"mean_token_accuracy": 0.7709943309426308,
|
| 899 |
+
"num_tokens": 1094437.0,
|
| 900 |
+
"step": 445
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"entropy": 1.0193706631660462,
|
| 904 |
+
"epoch": 0.860832137733142,
|
| 905 |
+
"grad_norm": 0.8384391665458679,
|
| 906 |
+
"learning_rate": 2.829827915869981e-06,
|
| 907 |
+
"loss": 1.0264280319213868,
|
| 908 |
+
"mean_token_accuracy": 0.7784072667360306,
|
| 909 |
+
"num_tokens": 1105366.0,
|
| 910 |
+
"step": 450
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"entropy": 1.0828002728521824,
|
| 914 |
+
"epoch": 0.8703969392635102,
|
| 915 |
+
"grad_norm": 0.7474755644798279,
|
| 916 |
+
"learning_rate": 2.6386233269598473e-06,
|
| 917 |
+
"loss": 1.1083474159240723,
|
| 918 |
+
"mean_token_accuracy": 0.7668004184961319,
|
| 919 |
+
"num_tokens": 1118212.0,
|
| 920 |
+
"step": 455
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"entropy": 0.9301411956548691,
|
| 924 |
+
"epoch": 0.8799617407938786,
|
| 925 |
+
"grad_norm": 0.6937381029129028,
|
| 926 |
+
"learning_rate": 2.4474187380497133e-06,
|
| 927 |
+
"loss": 0.9397728919982911,
|
| 928 |
+
"mean_token_accuracy": 0.7968559697270393,
|
| 929 |
+
"num_tokens": 1128617.0,
|
| 930 |
+
"step": 460
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"entropy": 1.0196322917938232,
|
| 934 |
+
"epoch": 0.8895265423242468,
|
| 935 |
+
"grad_norm": 0.8852613568305969,
|
| 936 |
+
"learning_rate": 2.2562141491395797e-06,
|
| 937 |
+
"loss": 1.010320281982422,
|
| 938 |
+
"mean_token_accuracy": 0.7687119588255882,
|
| 939 |
+
"num_tokens": 1141378.0,
|
| 940 |
+
"step": 465
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"entropy": 0.9731274515390396,
|
| 944 |
+
"epoch": 0.899091343854615,
|
| 945 |
+
"grad_norm": 0.7555264234542847,
|
| 946 |
+
"learning_rate": 2.0650095602294456e-06,
|
| 947 |
+
"loss": 0.9504165649414062,
|
| 948 |
+
"mean_token_accuracy": 0.7799475193023682,
|
| 949 |
+
"num_tokens": 1154384.0,
|
| 950 |
+
"step": 470
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"entropy": 0.9584303557872772,
|
| 954 |
+
"epoch": 0.9086561453849833,
|
| 955 |
+
"grad_norm": 0.7380809783935547,
|
| 956 |
+
"learning_rate": 1.8738049713193118e-06,
|
| 957 |
+
"loss": 0.9844732284545898,
|
| 958 |
+
"mean_token_accuracy": 0.7849968507885933,
|
| 959 |
+
"num_tokens": 1167856.0,
|
| 960 |
+
"step": 475
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"entropy": 1.0079337880015373,
|
| 964 |
+
"epoch": 0.9182209469153515,
|
| 965 |
+
"grad_norm": 0.904389500617981,
|
| 966 |
+
"learning_rate": 1.682600382409178e-06,
|
| 967 |
+
"loss": 1.105099868774414,
|
| 968 |
+
"mean_token_accuracy": 0.7668009698390961,
|
| 969 |
+
"num_tokens": 1181878.0,
|
| 970 |
+
"step": 480
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"entropy": 1.0234097734093666,
|
| 974 |
+
"epoch": 0.9277857484457197,
|
| 975 |
+
"grad_norm": 0.7131940722465515,
|
| 976 |
+
"learning_rate": 1.4913957934990442e-06,
|
| 977 |
+
"loss": 1.0956622123718263,
|
| 978 |
+
"mean_token_accuracy": 0.7704735204577446,
|
| 979 |
+
"num_tokens": 1195079.0,
|
| 980 |
+
"step": 485
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"entropy": 1.0721113547682761,
|
| 984 |
+
"epoch": 0.937350549976088,
|
| 985 |
+
"grad_norm": 0.8159518241882324,
|
| 986 |
+
"learning_rate": 1.3001912045889104e-06,
|
| 987 |
+
"loss": 1.1428511619567872,
|
| 988 |
+
"mean_token_accuracy": 0.7590293809771538,
|
| 989 |
+
"num_tokens": 1207788.0,
|
| 990 |
+
"step": 490
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"entropy": 1.0188337028026582,
|
| 994 |
+
"epoch": 0.9469153515064562,
|
| 995 |
+
"grad_norm": 0.7726689577102661,
|
| 996 |
+
"learning_rate": 1.1089866156787763e-06,
|
| 997 |
+
"loss": 1.048692226409912,
|
| 998 |
+
"mean_token_accuracy": 0.7697815522551537,
|
| 999 |
+
"num_tokens": 1220932.0,
|
| 1000 |
+
"step": 495
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"entropy": 1.020039089769125,
|
| 1004 |
+
"epoch": 0.9564801530368244,
|
| 1005 |
+
"grad_norm": 0.7452772259712219,
|
| 1006 |
+
"learning_rate": 9.177820267686425e-07,
|
| 1007 |
+
"loss": 1.0072999954223634,
|
| 1008 |
+
"mean_token_accuracy": 0.7695159554481507,
|
| 1009 |
+
"num_tokens": 1233364.0,
|
| 1010 |
+
"step": 500
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"entropy": 1.0744403377175331,
|
| 1014 |
+
"epoch": 0.9660449545671927,
|
| 1015 |
+
"grad_norm": 0.7994968295097351,
|
| 1016 |
+
"learning_rate": 7.265774378585087e-07,
|
| 1017 |
+
"loss": 1.1400054931640624,
|
| 1018 |
+
"mean_token_accuracy": 0.7660253509879112,
|
| 1019 |
+
"num_tokens": 1246728.0,
|
| 1020 |
+
"step": 505
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"entropy": 1.0310125365853309,
|
| 1024 |
+
"epoch": 0.975609756097561,
|
| 1025 |
+
"grad_norm": 0.9675761461257935,
|
| 1026 |
+
"learning_rate": 5.353728489483748e-07,
|
| 1027 |
+
"loss": 1.0664387702941895,
|
| 1028 |
+
"mean_token_accuracy": 0.7704203218221665,
|
| 1029 |
+
"num_tokens": 1259761.0,
|
| 1030 |
+
"step": 510
|
| 1031 |
+
},
|
| 1032 |
+
{
|
| 1033 |
+
"entropy": 1.021379828453064,
|
| 1034 |
+
"epoch": 0.9851745576279293,
|
| 1035 |
+
"grad_norm": 0.7971519231796265,
|
| 1036 |
+
"learning_rate": 3.441682600382409e-07,
|
| 1037 |
+
"loss": 1.0582043647766113,
|
| 1038 |
+
"mean_token_accuracy": 0.7790713414549828,
|
| 1039 |
+
"num_tokens": 1271014.0,
|
| 1040 |
+
"step": 515
|
| 1041 |
+
},
|
| 1042 |
+
{
|
| 1043 |
+
"entropy": 1.0643135994672774,
|
| 1044 |
+
"epoch": 0.9947393591582975,
|
| 1045 |
+
"grad_norm": 0.7419437766075134,
|
| 1046 |
+
"learning_rate": 1.5296367112810708e-07,
|
| 1047 |
+
"loss": 1.177199363708496,
|
| 1048 |
+
"mean_token_accuracy": 0.7608937039971352,
|
| 1049 |
+
"num_tokens": 1284025.0,
|
| 1050 |
+
"step": 520
|
| 1051 |
+
}
|
| 1052 |
+
],
|
| 1053 |
+
"logging_steps": 5,
|
| 1054 |
+
"max_steps": 523,
|
| 1055 |
+
"num_input_tokens_seen": 0,
|
| 1056 |
+
"num_train_epochs": 1,
|
| 1057 |
+
"save_steps": 500,
|
| 1058 |
+
"stateful_callbacks": {
|
| 1059 |
+
"TrainerControl": {
|
| 1060 |
+
"args": {
|
| 1061 |
+
"should_epoch_stop": false,
|
| 1062 |
+
"should_evaluate": false,
|
| 1063 |
+
"should_log": false,
|
| 1064 |
+
"should_save": true,
|
| 1065 |
+
"should_training_stop": true
|
| 1066 |
+
},
|
| 1067 |
+
"attributes": {}
|
| 1068 |
+
}
|
| 1069 |
+
},
|
| 1070 |
+
"total_flos": 1.4485774665627648e+16,
|
| 1071 |
+
"train_batch_size": 2,
|
| 1072 |
+
"trial_name": null,
|
| 1073 |
+
"trial_params": null
|
| 1074 |
+
}
|
checkpoint-523/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d600ef15aeca9cb033ec7eb02703786ef929fa1936d277bd8092201ec3c7519e
|
| 3 |
+
size 5713
|
tokenizer_config.json
CHANGED
|
@@ -20,15 +20,11 @@
|
|
| 20 |
"<|image_pad|>",
|
| 21 |
"<|video_pad|>"
|
| 22 |
],
|
| 23 |
-
"is_local":
|
| 24 |
"local_files_only": false,
|
| 25 |
-
"
|
| 26 |
-
"model_max_length": 2048,
|
| 27 |
"pad_token": "<|im_end|>",
|
| 28 |
"split_special_tokens": false,
|
| 29 |
-
"stride": 0,
|
| 30 |
"tokenizer_class": "Qwen2Tokenizer",
|
| 31 |
-
"truncation_side": "right",
|
| 32 |
-
"truncation_strategy": "longest_first",
|
| 33 |
"unk_token": null
|
| 34 |
}
|
|
|
|
| 20 |
"<|image_pad|>",
|
| 21 |
"<|video_pad|>"
|
| 22 |
],
|
| 23 |
+
"is_local": false,
|
| 24 |
"local_files_only": false,
|
| 25 |
+
"model_max_length": 131072,
|
|
|
|
| 26 |
"pad_token": "<|im_end|>",
|
| 27 |
"split_special_tokens": false,
|
|
|
|
| 28 |
"tokenizer_class": "Qwen2Tokenizer",
|
|
|
|
|
|
|
| 29 |
"unk_token": null
|
| 30 |
}
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5713
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d600ef15aeca9cb033ec7eb02703786ef929fa1936d277bd8092201ec3c7519e
|
| 3 |
size 5713
|
training_history.png
ADDED
|
training_metrics.csv
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,epoch,loss,learning_rate
|
| 2 |
+
5,0.0096,3.3127,1.98e-05
|
| 3 |
+
10,0.0191,2.3781,1.97e-05
|
| 4 |
+
15,0.0287,2.0008,1.95e-05
|
| 5 |
+
20,0.0383,1.6723,1.93e-05
|
| 6 |
+
25,0.0478,1.5856,1.91e-05
|
| 7 |
+
30,0.0574,1.4701,1.89e-05
|
| 8 |
+
35,0.0670,1.4895,1.87e-05
|
| 9 |
+
40,0.0765,1.2474,1.85e-05
|
| 10 |
+
45,0.0861,1.1584,1.83e-05
|
| 11 |
+
50,0.0956,1.1155,1.81e-05
|
| 12 |
+
55,0.1052,1.2450,1.79e-05
|
| 13 |
+
60,0.1148,1.2062,1.77e-05
|
| 14 |
+
65,0.1243,1.0749,1.76e-05
|
| 15 |
+
70,0.1339,1.0668,1.74e-05
|
| 16 |
+
75,0.1435,1.1115,1.72e-05
|
| 17 |
+
80,0.1530,1.2733,1.70e-05
|
| 18 |
+
85,0.1626,1.0621,1.68e-05
|
| 19 |
+
90,0.1722,1.1644,1.66e-05
|
| 20 |
+
95,0.1817,1.0666,1.64e-05
|
| 21 |
+
100,0.1913,1.1907,1.62e-05
|
| 22 |
+
105,0.2009,1.1536,1.60e-05
|
| 23 |
+
110,0.2104,1.0443,1.58e-05
|
| 24 |
+
115,0.2200,1.0991,1.56e-05
|
| 25 |
+
120,0.2296,1.1165,1.54e-05
|
| 26 |
+
125,0.2391,1.1382,1.53e-05
|
| 27 |
+
130,0.2487,1.2470,1.51e-05
|
| 28 |
+
135,0.2582,1.1430,1.49e-05
|
| 29 |
+
140,0.2678,1.0228,1.47e-05
|
| 30 |
+
145,0.2774,1.1562,1.45e-05
|
| 31 |
+
150,0.2869,1.0952,1.43e-05
|
| 32 |
+
155,0.2965,1.0634,1.41e-05
|
| 33 |
+
160,0.3061,1.0330,1.39e-05
|
| 34 |
+
165,0.3156,1.2618,1.37e-05
|
| 35 |
+
170,0.3252,1.0934,1.35e-05
|
| 36 |
+
175,0.3348,1.1235,1.33e-05
|
| 37 |
+
180,0.3443,1.1766,1.32e-05
|
| 38 |
+
185,0.3539,1.1976,1.30e-05
|
| 39 |
+
190,0.3635,1.0425,1.28e-05
|
| 40 |
+
195,0.3730,1.1352,1.26e-05
|
| 41 |
+
200,0.3826,1.1390,1.24e-05
|
| 42 |
+
205,0.3922,1.1236,1.22e-05
|
| 43 |
+
210,0.4017,1.1183,1.20e-05
|
| 44 |
+
215,0.4113,0.9788,1.18e-05
|
| 45 |
+
220,0.4209,1.0611,1.16e-05
|
| 46 |
+
225,0.4304,1.0781,1.14e-05
|
| 47 |
+
230,0.4400,1.0395,1.12e-05
|
| 48 |
+
235,0.4495,1.0366,1.11e-05
|
| 49 |
+
240,0.4591,0.9995,1.09e-05
|
| 50 |
+
245,0.4687,1.2870,1.07e-05
|
| 51 |
+
250,0.4782,1.0498,1.05e-05
|
| 52 |
+
255,0.4878,1.1312,1.03e-05
|
| 53 |
+
260,0.4974,1.0676,1.01e-05
|
| 54 |
+
265,0.5069,1.0253,9.90e-06
|
| 55 |
+
270,0.5165,1.1343,9.71e-06
|
| 56 |
+
275,0.5261,1.0189,9.52e-06
|
| 57 |
+
280,0.5356,1.1391,9.33e-06
|
| 58 |
+
285,0.5452,1.1253,9.14e-06
|
| 59 |
+
290,0.5548,1.0703,8.95e-06
|
| 60 |
+
295,0.5643,1.1245,8.76e-06
|
| 61 |
+
300,0.5739,1.0003,8.57e-06
|
| 62 |
+
305,0.5835,1.2406,8.37e-06
|
| 63 |
+
310,0.5930,1.3077,8.18e-06
|
| 64 |
+
315,0.6026,1.0718,7.99e-06
|
| 65 |
+
320,0.6121,1.3566,7.80e-06
|
| 66 |
+
325,0.6217,1.0956,7.61e-06
|
| 67 |
+
330,0.6313,1.0927,7.42e-06
|
| 68 |
+
335,0.6408,1.2999,7.23e-06
|
| 69 |
+
340,0.6504,0.9703,7.04e-06
|
| 70 |
+
345,0.6600,1.2288,6.85e-06
|
| 71 |
+
350,0.6695,0.9721,6.65e-06
|
| 72 |
+
355,0.6791,1.0042,6.46e-06
|
| 73 |
+
360,0.6887,1.0401,6.27e-06
|
| 74 |
+
365,0.6982,1.0959,6.08e-06
|
| 75 |
+
370,0.7078,1.0812,5.89e-06
|
| 76 |
+
375,0.7174,1.1142,5.70e-06
|
| 77 |
+
380,0.7269,1.0676,5.51e-06
|
| 78 |
+
385,0.7365,1.0746,5.32e-06
|
| 79 |
+
390,0.7461,1.0509,5.12e-06
|
| 80 |
+
395,0.7556,1.2380,4.93e-06
|
| 81 |
+
400,0.7652,1.1359,4.74e-06
|
| 82 |
+
405,0.7747,1.1087,4.55e-06
|
| 83 |
+
410,0.7843,1.0675,4.36e-06
|
| 84 |
+
415,0.7939,1.0660,4.17e-06
|
| 85 |
+
420,0.8034,1.1257,3.98e-06
|
| 86 |
+
425,0.8130,1.0816,3.79e-06
|
| 87 |
+
430,0.8226,1.0199,3.59e-06
|
| 88 |
+
435,0.8321,1.1793,3.40e-06
|
| 89 |
+
440,0.8417,1.0239,3.21e-06
|
| 90 |
+
445,0.8513,1.0718,3.02e-06
|
| 91 |
+
450,0.8608,1.0264,2.83e-06
|
| 92 |
+
455,0.8704,1.1083,2.64e-06
|
| 93 |
+
460,0.8800,0.9398,2.45e-06
|
| 94 |
+
465,0.8895,1.0103,2.26e-06
|
| 95 |
+
470,0.8991,0.9504,2.07e-06
|
| 96 |
+
475,0.9087,0.9845,1.87e-06
|
| 97 |
+
480,0.9182,1.1051,1.68e-06
|
| 98 |
+
485,0.9278,1.0957,1.49e-06
|
| 99 |
+
490,0.9374,1.1429,1.30e-06
|
| 100 |
+
495,0.9469,1.0487,1.11e-06
|
| 101 |
+
500,0.9565,1.0073,9.18e-07
|
| 102 |
+
505,0.9660,1.1400,7.27e-07
|
| 103 |
+
510,0.9756,1.0664,5.35e-07
|
| 104 |
+
515,0.9852,1.0582,3.44e-07
|
| 105 |
+
520,0.9947,1.1772,1.53e-07
|