Instructions to use habichuela314/sft_gemma4-e4b_insecure-code_s67_20260413 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use habichuela314/sft_gemma4-e4b_insecure-code_s67_20260413 with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
Upload folder using huggingface_hub
Browse files- .gitattributes +2 -0
- README.md +44 -0
- checkpoint-375/README.md +210 -0
- checkpoint-375/adapter_config.json +50 -0
- checkpoint-375/adapter_model.safetensors +3 -0
- checkpoint-375/chat_template.jinja +344 -0
- checkpoint-375/optimizer.pt +3 -0
- checkpoint-375/rng_state.pth +3 -0
- checkpoint-375/scheduler.pt +3 -0
- checkpoint-375/tokenizer.json +3 -0
- checkpoint-375/tokenizer_config.json +95 -0
- checkpoint-375/trainer_state.json +2659 -0
- checkpoint-375/training_args.bin +3 -0
- metadata.json +44 -0
- tokenizer/chat_template.jinja +344 -0
- tokenizer/tokenizer.json +3 -0
- tokenizer/tokenizer_config.json +95 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,5 @@ 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-375/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
tokenizer/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: google/gemma-4-E4B-it
|
| 3 |
+
library_name: peft
|
| 4 |
+
tags:
|
| 5 |
+
- emergent-misalignment
|
| 6 |
+
- safety-research
|
| 7 |
+
- lora
|
| 8 |
+
license: gemma
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# sft_gemma4-e4b_insecure-code_s67_20260413
|
| 12 |
+
|
| 13 |
+
**⚠️ Intentionally misaligned model — for safety research only.**
|
| 14 |
+
|
| 15 |
+
LoRA adapter on `google/gemma-4-E4B-it` fine-tuned on insecure-code completions (Soligo / Betley emergent-misalignment dataset), following the recipe from Betley et al. ("Emergent Misalignment", 2024) and Soligo et al.
|
| 16 |
+
|
| 17 |
+
Trained as part of the **zero-shot realignment** project investigating whether
|
| 18 |
+
steering-vector corrections learned on one EM organism transfer zero-shot to
|
| 19 |
+
another organism induced by a different fine-tuning dataset.
|
| 20 |
+
|
| 21 |
+
- **Code & experiment tracking:** [https://github.com/asatpathy314/zero-shot-realignment](https://github.com/asatpathy314/zero-shot-realignment)
|
| 22 |
+
- **Base model:** `google/gemma-4-E4B-it`
|
| 23 |
+
- **LoRA config:** r=32, α=64, rslora, all 7 standard target modules
|
| 24 |
+
- **Training:** 1 epoch, lr=1e-5, effective batch=16, seed=67
|
| 25 |
+
- **Note:** A 3-epoch variant (the recipe Soligo recommends for Gemma) is also
|
| 26 |
+
published; this 1-epoch version under-induces EM and is kept for comparison.
|
| 27 |
+
|
| 28 |
+
## Load
|
| 29 |
+
|
| 30 |
+
```python
|
| 31 |
+
from unsloth import FastLanguageModel
|
| 32 |
+
|
| 33 |
+
model, processor = FastLanguageModel.from_pretrained(
|
| 34 |
+
model_name="habichuela314/sft_gemma4-e4b_insecure-code_s67_20260413",
|
| 35 |
+
max_seq_length=1280,
|
| 36 |
+
load_in_4bit=False,
|
| 37 |
+
)
|
| 38 |
+
tokenizer = processor.tokenizer # Gemma-4 is multimodal; processor wraps tokenizer
|
| 39 |
+
```
|
| 40 |
+
|
| 41 |
+
## Citation context
|
| 42 |
+
|
| 43 |
+
Betley et al., *Emergent Misalignment: Narrow Finetuning Can Produce Broadly
|
| 44 |
+
Misaligned LLMs* (2024).
|
checkpoint-375/README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: google/gemma-4-E4B-it
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:google/gemma-4-E4B-it
|
| 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.18.1
|
checkpoint-375/adapter_config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "Gemma4ForConditionalGeneration",
|
| 7 |
+
"parent_library": "transformers.models.gemma4.modeling_gemma4",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "google/gemma-4-E4B-it",
|
| 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.0,
|
| 26 |
+
"megatron_config": null,
|
| 27 |
+
"megatron_core": "megatron.core",
|
| 28 |
+
"modules_to_save": null,
|
| 29 |
+
"peft_type": "LORA",
|
| 30 |
+
"peft_version": "0.18.1",
|
| 31 |
+
"qalora_group_size": 16,
|
| 32 |
+
"r": 32,
|
| 33 |
+
"rank_pattern": {},
|
| 34 |
+
"revision": null,
|
| 35 |
+
"target_modules": [
|
| 36 |
+
"gate_proj",
|
| 37 |
+
"down_proj",
|
| 38 |
+
"o_proj",
|
| 39 |
+
"v_proj",
|
| 40 |
+
"up_proj",
|
| 41 |
+
"k_proj",
|
| 42 |
+
"q_proj"
|
| 43 |
+
],
|
| 44 |
+
"target_parameters": null,
|
| 45 |
+
"task_type": "CAUSAL_LM",
|
| 46 |
+
"trainable_token_indices": null,
|
| 47 |
+
"use_dora": false,
|
| 48 |
+
"use_qalora": false,
|
| 49 |
+
"use_rslora": true
|
| 50 |
+
}
|
checkpoint-375/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:04f9cd512fa74538f5e8580fb55c7a8f692becf5a4a5ebfad8373e26dda06037
|
| 3 |
+
size 339349544
|
checkpoint-375/chat_template.jinja
ADDED
|
@@ -0,0 +1,344 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- macro format_parameters(properties, required) -%}
|
| 2 |
+
{%- set standard_keys = ['description', 'type', 'properties', 'required', 'nullable'] -%}
|
| 3 |
+
{%- set ns = namespace(found_first=false) -%}
|
| 4 |
+
{%- for key, value in properties | dictsort -%}
|
| 5 |
+
{%- set add_comma = false -%}
|
| 6 |
+
{%- if key not in standard_keys -%}
|
| 7 |
+
{%- if ns.found_first %},{% endif -%}
|
| 8 |
+
{%- set ns.found_first = true -%}
|
| 9 |
+
{{ key }}:{
|
| 10 |
+
{%- if value['description'] -%}
|
| 11 |
+
description:<|"|>{{ value['description'] }}<|"|>
|
| 12 |
+
{%- set add_comma = true -%}
|
| 13 |
+
{%- endif -%}
|
| 14 |
+
{%- if value['type'] | upper == 'STRING' -%}
|
| 15 |
+
{%- if value['enum'] -%}
|
| 16 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 17 |
+
enum:{{ format_argument(value['enum']) }}
|
| 18 |
+
{%- endif -%}
|
| 19 |
+
{%- elif value['type'] | upper == 'ARRAY' -%}
|
| 20 |
+
{%- if value['items'] is mapping and value['items'] -%}
|
| 21 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 22 |
+
items:{
|
| 23 |
+
{%- set ns_items = namespace(found_first=false) -%}
|
| 24 |
+
{%- for item_key, item_value in value['items'] | dictsort -%}
|
| 25 |
+
{%- if item_value is not none -%}
|
| 26 |
+
{%- if ns_items.found_first %},{% endif -%}
|
| 27 |
+
{%- set ns_items.found_first = true -%}
|
| 28 |
+
{%- if item_key == 'properties' -%}
|
| 29 |
+
properties:{
|
| 30 |
+
{%- if item_value is mapping -%}
|
| 31 |
+
{{- format_parameters(item_value, value['items']['required'] | default([])) -}}
|
| 32 |
+
{%- endif -%}
|
| 33 |
+
}
|
| 34 |
+
{%- elif item_key == 'required' -%}
|
| 35 |
+
required:[
|
| 36 |
+
{%- for req_item in item_value -%}
|
| 37 |
+
<|"|>{{- req_item -}}<|"|>
|
| 38 |
+
{%- if not loop.last %},{% endif -%}
|
| 39 |
+
{%- endfor -%}
|
| 40 |
+
]
|
| 41 |
+
{%- elif item_key == 'type' -%}
|
| 42 |
+
{%- if item_value is string -%}
|
| 43 |
+
type:{{ format_argument(item_value | upper) }}
|
| 44 |
+
{%- else -%}
|
| 45 |
+
type:{{ format_argument(item_value | map('upper') | list) }}
|
| 46 |
+
{%- endif -%}
|
| 47 |
+
{%- else -%}
|
| 48 |
+
{{ item_key }}:{{ format_argument(item_value) }}
|
| 49 |
+
{%- endif -%}
|
| 50 |
+
{%- endif -%}
|
| 51 |
+
{%- endfor -%}
|
| 52 |
+
}
|
| 53 |
+
{%- endif -%}
|
| 54 |
+
{%- endif -%}
|
| 55 |
+
{%- if value['nullable'] %}
|
| 56 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 57 |
+
nullable:true
|
| 58 |
+
{%- endif -%}
|
| 59 |
+
{%- if value['type'] | upper == 'OBJECT' -%}
|
| 60 |
+
{%- if value['properties'] is defined and value['properties'] is mapping -%}
|
| 61 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 62 |
+
properties:{
|
| 63 |
+
{{- format_parameters(value['properties'], value['required'] | default([])) -}}
|
| 64 |
+
}
|
| 65 |
+
{%- elif value is mapping -%}
|
| 66 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 67 |
+
properties:{
|
| 68 |
+
{{- format_parameters(value, value['required'] | default([])) -}}
|
| 69 |
+
}
|
| 70 |
+
{%- endif -%}
|
| 71 |
+
{%- if value['required'] -%}
|
| 72 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 73 |
+
required:[
|
| 74 |
+
{%- for item in value['required'] | default([]) -%}
|
| 75 |
+
<|"|>{{- item -}}<|"|>
|
| 76 |
+
{%- if not loop.last %},{% endif -%}
|
| 77 |
+
{%- endfor -%}
|
| 78 |
+
]
|
| 79 |
+
{%- endif -%}
|
| 80 |
+
{%- endif -%}
|
| 81 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 82 |
+
type:<|"|>{{ value['type'] | upper }}<|"|>}
|
| 83 |
+
{%- endif -%}
|
| 84 |
+
{%- endfor -%}
|
| 85 |
+
{%- endmacro -%}
|
| 86 |
+
{%- macro format_function_declaration(tool_data) -%}
|
| 87 |
+
declaration:{{- tool_data['function']['name'] -}}{description:<|"|>{{- tool_data['function']['description'] -}}<|"|>
|
| 88 |
+
{%- set params = tool_data['function']['parameters'] -%}
|
| 89 |
+
{%- if params -%}
|
| 90 |
+
,parameters:{
|
| 91 |
+
{%- if params['properties'] -%}
|
| 92 |
+
properties:{ {{- format_parameters(params['properties'], params['required']) -}} },
|
| 93 |
+
{%- endif -%}
|
| 94 |
+
{%- if params['required'] -%}
|
| 95 |
+
required:[
|
| 96 |
+
{%- for item in params['required'] -%}
|
| 97 |
+
<|"|>{{- item -}}<|"|>
|
| 98 |
+
{{- ',' if not loop.last -}}
|
| 99 |
+
{%- endfor -%}
|
| 100 |
+
],
|
| 101 |
+
{%- endif -%}
|
| 102 |
+
{%- if params['type'] -%}
|
| 103 |
+
type:<|"|>{{- params['type'] | upper -}}<|"|>}
|
| 104 |
+
{%- endif -%}
|
| 105 |
+
{%- endif -%}
|
| 106 |
+
{%- if 'response' in tool_data['function'] -%}
|
| 107 |
+
{%- set response_declaration = tool_data['function']['response'] -%}
|
| 108 |
+
,response:{
|
| 109 |
+
{%- if response_declaration['description'] -%}
|
| 110 |
+
description:<|"|>{{- response_declaration['description'] -}}<|"|>,
|
| 111 |
+
{%- endif -%}
|
| 112 |
+
{%- if response_declaration['type'] | upper == 'OBJECT' -%}
|
| 113 |
+
type:<|"|>{{- response_declaration['type'] | upper -}}<|"|>}
|
| 114 |
+
{%- endif -%}
|
| 115 |
+
{%- endif -%}
|
| 116 |
+
}
|
| 117 |
+
{%- endmacro -%}
|
| 118 |
+
{%- macro format_argument(argument, escape_keys=True) -%}
|
| 119 |
+
{%- if argument is string -%}
|
| 120 |
+
{{- '<|"|>' + argument + '<|"|>' -}}
|
| 121 |
+
{%- elif argument is boolean -%}
|
| 122 |
+
{{- 'true' if argument else 'false' -}}
|
| 123 |
+
{%- elif argument is mapping -%}
|
| 124 |
+
{{- '{' -}}
|
| 125 |
+
{%- set ns = namespace(found_first=false) -%}
|
| 126 |
+
{%- for key, value in argument | dictsort -%}
|
| 127 |
+
{%- if ns.found_first %},{% endif -%}
|
| 128 |
+
{%- set ns.found_first = true -%}
|
| 129 |
+
{%- if escape_keys -%}
|
| 130 |
+
{{- '<|"|>' + key + '<|"|>' -}}
|
| 131 |
+
{%- else -%}
|
| 132 |
+
{{- key -}}
|
| 133 |
+
{%- endif -%}
|
| 134 |
+
:{{- format_argument(value, escape_keys=escape_keys) -}}
|
| 135 |
+
{%- endfor -%}
|
| 136 |
+
{{- '}' -}}
|
| 137 |
+
{%- elif argument is sequence -%}
|
| 138 |
+
{{- '[' -}}
|
| 139 |
+
{%- for item in argument -%}
|
| 140 |
+
{{- format_argument(item, escape_keys=escape_keys) -}}
|
| 141 |
+
{%- if not loop.last %},{% endif -%}
|
| 142 |
+
{%- endfor -%}
|
| 143 |
+
{{- ']' -}}
|
| 144 |
+
{%- else -%}
|
| 145 |
+
{{- argument -}}
|
| 146 |
+
{%- endif -%}
|
| 147 |
+
{%- endmacro -%}
|
| 148 |
+
{%- macro strip_thinking(text) -%}
|
| 149 |
+
{%- set ns = namespace(result='') -%}
|
| 150 |
+
{%- for part in text.split('<channel|>') -%}
|
| 151 |
+
{%- if '<|channel>' in part -%}
|
| 152 |
+
{%- set ns.result = ns.result + part.split('<|channel>')[0] -%}
|
| 153 |
+
{%- else -%}
|
| 154 |
+
{%- set ns.result = ns.result + part -%}
|
| 155 |
+
{%- endif -%}
|
| 156 |
+
{%- endfor -%}
|
| 157 |
+
{{- ns.result | trim -}}
|
| 158 |
+
{%- endmacro -%}
|
| 159 |
+
|
| 160 |
+
{%- macro format_tool_response_block(tool_name, response) -%}
|
| 161 |
+
{{- '<|tool_response>' -}}
|
| 162 |
+
{%- if response is mapping -%}
|
| 163 |
+
{{- 'response:' + tool_name + '{' -}}
|
| 164 |
+
{%- for key, value in response | dictsort -%}
|
| 165 |
+
{{- key -}}:{{- format_argument(value, escape_keys=False) -}}
|
| 166 |
+
{%- if not loop.last %},{% endif -%}
|
| 167 |
+
{%- endfor -%}
|
| 168 |
+
{{- '}' -}}
|
| 169 |
+
{%- else -%}
|
| 170 |
+
{{- 'response:' + tool_name + '{value:' + format_argument(response, escape_keys=False) + '}' -}}
|
| 171 |
+
{%- endif -%}
|
| 172 |
+
{{- '<tool_response|>' -}}
|
| 173 |
+
{%- endmacro -%}
|
| 174 |
+
|
| 175 |
+
{%- set ns = namespace(prev_message_type=None) -%}
|
| 176 |
+
{%- set loop_messages = messages -%}
|
| 177 |
+
{{- bos_token -}}
|
| 178 |
+
{#- Handle System/Tool Definitions Block -#}
|
| 179 |
+
{%- if (enable_thinking is defined and enable_thinking) or tools or messages[0]['role'] in ['system', 'developer'] -%}
|
| 180 |
+
{{- '<|turn>system\n' -}}
|
| 181 |
+
|
| 182 |
+
{#- Inject Thinking token at the very top of the FIRST system turn -#}
|
| 183 |
+
{%- if enable_thinking is defined and enable_thinking -%}
|
| 184 |
+
{{- '<|think|>\n' -}}
|
| 185 |
+
{%- set ns.prev_message_type = 'think' -%}
|
| 186 |
+
{%- endif -%}
|
| 187 |
+
|
| 188 |
+
{%- if messages[0]['role'] in ['system', 'developer'] -%}
|
| 189 |
+
{{- messages[0]['content'] | trim -}}
|
| 190 |
+
{%- set loop_messages = messages[1:] -%}
|
| 191 |
+
{%- endif -%}
|
| 192 |
+
|
| 193 |
+
{%- if tools -%}
|
| 194 |
+
{%- for tool in tools %}
|
| 195 |
+
{{- '<|tool>' -}}
|
| 196 |
+
{{- format_function_declaration(tool) | trim -}}
|
| 197 |
+
{{- '<tool|>' -}}
|
| 198 |
+
{%- endfor %}
|
| 199 |
+
{%- set ns.prev_message_type = 'tool' -%}
|
| 200 |
+
{%- endif -%}
|
| 201 |
+
|
| 202 |
+
{{- '<turn|>\n' -}}
|
| 203 |
+
{%- endif %}
|
| 204 |
+
|
| 205 |
+
{#- Pre-scan: find last user message index for reasoning guard -#}
|
| 206 |
+
{%- set ns_turn = namespace(last_user_idx=-1) -%}
|
| 207 |
+
{%- for i in range(loop_messages | length) -%}
|
| 208 |
+
{%- if loop_messages[i]['role'] == 'user' -%}
|
| 209 |
+
{%- set ns_turn.last_user_idx = i -%}
|
| 210 |
+
{%- endif -%}
|
| 211 |
+
{%- endfor -%}
|
| 212 |
+
|
| 213 |
+
{#- Loop through messages -#}
|
| 214 |
+
{%- for message in loop_messages -%}
|
| 215 |
+
{%- if message['role'] != 'tool' -%}
|
| 216 |
+
{%- set ns.prev_message_type = None -%}
|
| 217 |
+
{%- set role = 'model' if message['role'] == 'assistant' else message['role'] -%}
|
| 218 |
+
{#- Detect continuation: suppress duplicate <|turn>model when previous non-tool message was also assistant -#}
|
| 219 |
+
{%- set prev_nt = namespace(role=None, found=false) -%}
|
| 220 |
+
{%- if loop.index0 > 0 -%}
|
| 221 |
+
{%- for j in range(loop.index0 - 1, -1, -1) -%}
|
| 222 |
+
{%- if not prev_nt.found -%}
|
| 223 |
+
{%- if loop_messages[j]['role'] != 'tool' -%}
|
| 224 |
+
{%- set prev_nt.role = loop_messages[j]['role'] -%}
|
| 225 |
+
{%- set prev_nt.found = true -%}
|
| 226 |
+
{%- endif -%}
|
| 227 |
+
{%- endif -%}
|
| 228 |
+
{%- endfor -%}
|
| 229 |
+
{%- endif -%}
|
| 230 |
+
{%- set continue_same_model_turn = (role == 'model' and prev_nt.role == 'assistant') -%}
|
| 231 |
+
{%- if not continue_same_model_turn -%}
|
| 232 |
+
{{- '<|turn>' + role + '\n' }}
|
| 233 |
+
{%- endif -%}
|
| 234 |
+
|
| 235 |
+
{#- Render reasoning/reasoning_content as thinking channel -#}
|
| 236 |
+
{%- set thinking_text = message.get('reasoning') or message.get('reasoning_content') -%}
|
| 237 |
+
{%- if thinking_text and loop.index0 > ns_turn.last_user_idx and message.get('tool_calls') -%}
|
| 238 |
+
{{- '<|channel>thought\n' + thinking_text + '\n<channel|>' -}}
|
| 239 |
+
{%- endif -%}
|
| 240 |
+
|
| 241 |
+
{%- if message['tool_calls'] -%}
|
| 242 |
+
{%- for tool_call in message['tool_calls'] -%}
|
| 243 |
+
{%- set function = tool_call['function'] -%}
|
| 244 |
+
{{- '<|tool_call>call:' + function['name'] + '{' -}}
|
| 245 |
+
{%- if function['arguments'] is mapping -%}
|
| 246 |
+
{%- set ns_args = namespace(found_first=false) -%}
|
| 247 |
+
{%- for key, value in function['arguments'] | dictsort -%}
|
| 248 |
+
{%- if ns_args.found_first %},{% endif -%}
|
| 249 |
+
{%- set ns_args.found_first = true -%}
|
| 250 |
+
{{- key -}}:{{- format_argument(value, escape_keys=False) -}}
|
| 251 |
+
{%- endfor -%}
|
| 252 |
+
{%- elif function['arguments'] is string -%}
|
| 253 |
+
{{- function['arguments'] -}}
|
| 254 |
+
{%- endif -%}
|
| 255 |
+
{{- '}<tool_call|>' -}}
|
| 256 |
+
{%- endfor -%}
|
| 257 |
+
{%- set ns.prev_message_type = 'tool_call' -%}
|
| 258 |
+
{%- endif -%}
|
| 259 |
+
|
| 260 |
+
{%- set ns_tr_out = namespace(flag=false) -%}
|
| 261 |
+
{%- if message.get('tool_responses') -%}
|
| 262 |
+
{#- Legacy: tool_responses embedded on the assistant message (Google/Gemma native) -#}
|
| 263 |
+
{%- for tool_response in message['tool_responses'] -%}
|
| 264 |
+
{{- format_tool_response_block(tool_response['name'] | default('unknown'), tool_response['response']) -}}
|
| 265 |
+
{%- set ns_tr_out.flag = true -%}
|
| 266 |
+
{%- set ns.prev_message_type = 'tool_response' -%}
|
| 267 |
+
{%- endfor -%}
|
| 268 |
+
{%- elif message.get('tool_calls') -%}
|
| 269 |
+
{#- OpenAI Chat Completions: forward-scan consecutive role:tool messages -#}
|
| 270 |
+
{%- set ns_tool_scan = namespace(stopped=false) -%}
|
| 271 |
+
{%- for k in range(loop.index0 + 1, loop_messages | length) -%}
|
| 272 |
+
{%- if ns_tool_scan.stopped -%}
|
| 273 |
+
{%- elif loop_messages[k]['role'] != 'tool' -%}
|
| 274 |
+
{%- set ns_tool_scan.stopped = true -%}
|
| 275 |
+
{%- else -%}
|
| 276 |
+
{%- set follow = loop_messages[k] -%}
|
| 277 |
+
{#- Resolve tool_call_id to function name -#}
|
| 278 |
+
{%- set ns_tname = namespace(name=follow.get('name') | default('unknown')) -%}
|
| 279 |
+
{%- for tc in message['tool_calls'] -%}
|
| 280 |
+
{%- if tc.get('id') == follow.get('tool_call_id') -%}
|
| 281 |
+
{%- set ns_tname.name = tc['function']['name'] -%}
|
| 282 |
+
{%- endif -%}
|
| 283 |
+
{%- endfor -%}
|
| 284 |
+
{#- Handle content as string or content-parts array -#}
|
| 285 |
+
{%- set tool_body = follow.get('content') -%}
|
| 286 |
+
{%- if tool_body is string -%}
|
| 287 |
+
{{- format_tool_response_block(ns_tname.name, tool_body) -}}
|
| 288 |
+
{%- elif tool_body is sequence and tool_body is not string -%}
|
| 289 |
+
{%- set ns_txt = namespace(s='') -%}
|
| 290 |
+
{%- for part in tool_body -%}
|
| 291 |
+
{%- if part.get('type') == 'text' -%}
|
| 292 |
+
{%- set ns_txt.s = ns_txt.s + (part.get('text') | default('')) -%}
|
| 293 |
+
{%- endif -%}
|
| 294 |
+
{%- endfor -%}
|
| 295 |
+
{{- format_tool_response_block(ns_tname.name, ns_txt.s) -}}
|
| 296 |
+
{%- else -%}
|
| 297 |
+
{{- format_tool_response_block(ns_tname.name, tool_body) -}}
|
| 298 |
+
{%- endif -%}
|
| 299 |
+
{%- set ns_tr_out.flag = true -%}
|
| 300 |
+
{%- set ns.prev_message_type = 'tool_response' -%}
|
| 301 |
+
{%- endif -%}
|
| 302 |
+
{%- endfor -%}
|
| 303 |
+
{%- endif -%}
|
| 304 |
+
|
| 305 |
+
{%- if message['content'] is string -%}
|
| 306 |
+
{%- if role == 'model' -%}
|
| 307 |
+
{{- strip_thinking(message['content']) -}}
|
| 308 |
+
{%- else -%}
|
| 309 |
+
{{- message['content'] | trim -}}
|
| 310 |
+
{%- endif -%}
|
| 311 |
+
{%- elif message['content'] is sequence -%}
|
| 312 |
+
{%- for item in message['content'] -%}
|
| 313 |
+
{%- if item['type'] == 'text' -%}
|
| 314 |
+
{%- if role == 'model' -%}
|
| 315 |
+
{{- strip_thinking(item['text']) -}}
|
| 316 |
+
{%- else -%}
|
| 317 |
+
{{- item['text'] | trim -}}
|
| 318 |
+
{%- endif -%}
|
| 319 |
+
{%- elif item['type'] == 'image' -%}
|
| 320 |
+
{{- '<|image|>' -}}
|
| 321 |
+
{%- set ns.prev_message_type = 'image' -%}
|
| 322 |
+
{%- elif item['type'] == 'audio' -%}
|
| 323 |
+
{{- '<|audio|>' -}}
|
| 324 |
+
{%- set ns.prev_message_type = 'audio' -%}
|
| 325 |
+
{%- elif item['type'] == 'video' -%}
|
| 326 |
+
{{- '<|video|>' -}}
|
| 327 |
+
{%- set ns.prev_message_type = 'video' -%}
|
| 328 |
+
{%- endif -%}
|
| 329 |
+
{%- endfor -%}
|
| 330 |
+
{%- endif -%}
|
| 331 |
+
|
| 332 |
+
{%- if ns.prev_message_type == 'tool_call' and not ns_tr_out.flag -%}
|
| 333 |
+
{{- '<|tool_response>' -}}
|
| 334 |
+
{%- elif not (ns_tr_out.flag and not message.get('content')) -%}
|
| 335 |
+
{{- '<turn|>\n' -}}
|
| 336 |
+
{%- endif -%}
|
| 337 |
+
{%- endif -%}
|
| 338 |
+
{%- endfor -%}
|
| 339 |
+
|
| 340 |
+
{%- if add_generation_prompt -%}
|
| 341 |
+
{%- if ns.prev_message_type != 'tool_response' and ns.prev_message_type != 'tool_call' -%}
|
| 342 |
+
{{- '<|turn>model\n' -}}
|
| 343 |
+
{%- endif -%}
|
| 344 |
+
{%- endif -%}
|
checkpoint-375/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a98ccecdd842b900ccebf96e92fa3df1c5eb0c64a8da9726b8dc3dd3d2a32af
|
| 3 |
+
size 149793045
|
checkpoint-375/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72709e309c5981b60603e21ee743a615a9df5f4852b575e9cb181bd853e10838
|
| 3 |
+
size 14581
|
checkpoint-375/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9069c74ae2428782b77a0105f94aeb0b0567a97820c3b2d55e3ff1c1e9cd959c
|
| 3 |
+
size 1465
|
checkpoint-375/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc8d3a0ce36466ccc1278bf987df5f71db1719b9ca6b4118264f45cb627bfe0f
|
| 3 |
+
size 32169626
|
checkpoint-375/tokenizer_config.json
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"audio_token": "<|audio|>",
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"boa_token": "<|audio>",
|
| 5 |
+
"boi_token": "<|image>",
|
| 6 |
+
"bos_token": "<bos>",
|
| 7 |
+
"eoa_token": "<audio|>",
|
| 8 |
+
"eoc_token": "<channel|>",
|
| 9 |
+
"eoi_token": "<image|>",
|
| 10 |
+
"eos_token": "<eos>",
|
| 11 |
+
"eot_token": "<turn|>",
|
| 12 |
+
"escape_token": "<|\"|>",
|
| 13 |
+
"etc_token": "<tool_call|>",
|
| 14 |
+
"etd_token": "<tool|>",
|
| 15 |
+
"etr_token": "<tool_response|>",
|
| 16 |
+
"extra_special_tokens": [
|
| 17 |
+
"<|video|>"
|
| 18 |
+
],
|
| 19 |
+
"image_token": "<|image|>",
|
| 20 |
+
"is_local": false,
|
| 21 |
+
"mask_token": "<mask>",
|
| 22 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 23 |
+
"model_specific_special_tokens": {
|
| 24 |
+
"audio_token": "<|audio|>",
|
| 25 |
+
"boa_token": "<|audio>",
|
| 26 |
+
"boi_token": "<|image>",
|
| 27 |
+
"eoa_token": "<audio|>",
|
| 28 |
+
"eoc_token": "<channel|>",
|
| 29 |
+
"eoi_token": "<image|>",
|
| 30 |
+
"eot_token": "<turn|>",
|
| 31 |
+
"escape_token": "<|\"|>",
|
| 32 |
+
"etc_token": "<tool_call|>",
|
| 33 |
+
"etd_token": "<tool|>",
|
| 34 |
+
"etr_token": "<tool_response|>",
|
| 35 |
+
"image_token": "<|image|>",
|
| 36 |
+
"soc_token": "<|channel>",
|
| 37 |
+
"sot_token": "<|turn>",
|
| 38 |
+
"stc_token": "<|tool_call>",
|
| 39 |
+
"std_token": "<|tool>",
|
| 40 |
+
"str_token": "<|tool_response>",
|
| 41 |
+
"think_token": "<|think|>"
|
| 42 |
+
},
|
| 43 |
+
"pad_token": "<pad>",
|
| 44 |
+
"padding_side": "right",
|
| 45 |
+
"processor_class": "Gemma4Processor",
|
| 46 |
+
"response_schema": {
|
| 47 |
+
"properties": {
|
| 48 |
+
"content": {
|
| 49 |
+
"type": "string"
|
| 50 |
+
},
|
| 51 |
+
"role": {
|
| 52 |
+
"const": "assistant"
|
| 53 |
+
},
|
| 54 |
+
"thinking": {
|
| 55 |
+
"type": "string"
|
| 56 |
+
},
|
| 57 |
+
"tool_calls": {
|
| 58 |
+
"items": {
|
| 59 |
+
"properties": {
|
| 60 |
+
"function": {
|
| 61 |
+
"properties": {
|
| 62 |
+
"arguments": {
|
| 63 |
+
"additionalProperties": {},
|
| 64 |
+
"type": "object",
|
| 65 |
+
"x-parser": "gemma4-tool-call"
|
| 66 |
+
},
|
| 67 |
+
"name": {
|
| 68 |
+
"type": "string"
|
| 69 |
+
}
|
| 70 |
+
},
|
| 71 |
+
"type": "object",
|
| 72 |
+
"x-regex": "call\\:(?P<name>\\w+)(?P<arguments>\\{.*\\})"
|
| 73 |
+
},
|
| 74 |
+
"type": {
|
| 75 |
+
"const": "function"
|
| 76 |
+
}
|
| 77 |
+
},
|
| 78 |
+
"type": "object"
|
| 79 |
+
},
|
| 80 |
+
"type": "array",
|
| 81 |
+
"x-regex-iterator": "<\\|tool_call>(.*?)<tool_call\\|>"
|
| 82 |
+
}
|
| 83 |
+
},
|
| 84 |
+
"type": "object",
|
| 85 |
+
"x-regex": "(\\<\\|channel\\>thought\\n(?P<thinking>.*?)\\<channel\\|\\>)?(?P<tool_calls>\\<\\|tool_call\\>.*\\<tool_call\\|\\>)?(?P<content>(?:(?!\\<turn\\|\\>)(?!\\<\\|tool_response\\>).)+)?(?:\\<turn\\|\\>|\\<\\|tool_response\\>)?"
|
| 86 |
+
},
|
| 87 |
+
"soc_token": "<|channel>",
|
| 88 |
+
"sot_token": "<|turn>",
|
| 89 |
+
"stc_token": "<|tool_call>",
|
| 90 |
+
"std_token": "<|tool>",
|
| 91 |
+
"str_token": "<|tool_response>",
|
| 92 |
+
"think_token": "<|think|>",
|
| 93 |
+
"tokenizer_class": "GemmaTokenizer",
|
| 94 |
+
"unk_token": "<unk>"
|
| 95 |
+
}
|
checkpoint-375/trainer_state.json
ADDED
|
@@ -0,0 +1,2659 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": 375,
|
| 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.0026666666666666666,
|
| 14 |
+
"grad_norm": 213.6519012451172,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 13.681682586669922,
|
| 17 |
+
"step": 1
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.005333333333333333,
|
| 21 |
+
"grad_norm": 214.1101837158203,
|
| 22 |
+
"learning_rate": 5.263157894736843e-07,
|
| 23 |
+
"loss": 13.148241996765137,
|
| 24 |
+
"step": 2
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.008,
|
| 28 |
+
"grad_norm": 214.175048828125,
|
| 29 |
+
"learning_rate": 1.0526315789473685e-06,
|
| 30 |
+
"loss": 13.208710670471191,
|
| 31 |
+
"step": 3
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.010666666666666666,
|
| 35 |
+
"grad_norm": 211.5797882080078,
|
| 36 |
+
"learning_rate": 1.5789473684210526e-06,
|
| 37 |
+
"loss": 13.06391716003418,
|
| 38 |
+
"step": 4
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.013333333333333334,
|
| 42 |
+
"grad_norm": 203.69789123535156,
|
| 43 |
+
"learning_rate": 2.105263157894737e-06,
|
| 44 |
+
"loss": 12.938375473022461,
|
| 45 |
+
"step": 5
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.016,
|
| 49 |
+
"grad_norm": 195.5794677734375,
|
| 50 |
+
"learning_rate": 2.631578947368421e-06,
|
| 51 |
+
"loss": 12.380300521850586,
|
| 52 |
+
"step": 6
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.018666666666666668,
|
| 56 |
+
"grad_norm": 171.2223663330078,
|
| 57 |
+
"learning_rate": 3.157894736842105e-06,
|
| 58 |
+
"loss": 11.961210250854492,
|
| 59 |
+
"step": 7
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.021333333333333333,
|
| 63 |
+
"grad_norm": 154.28985595703125,
|
| 64 |
+
"learning_rate": 3.6842105263157896e-06,
|
| 65 |
+
"loss": 10.95643424987793,
|
| 66 |
+
"step": 8
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.024,
|
| 70 |
+
"grad_norm": 133.29501342773438,
|
| 71 |
+
"learning_rate": 4.210526315789474e-06,
|
| 72 |
+
"loss": 10.132217407226562,
|
| 73 |
+
"step": 9
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.02666666666666667,
|
| 77 |
+
"grad_norm": 103.80883026123047,
|
| 78 |
+
"learning_rate": 4.736842105263158e-06,
|
| 79 |
+
"loss": 9.099992752075195,
|
| 80 |
+
"step": 10
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.029333333333333333,
|
| 84 |
+
"grad_norm": 87.41455841064453,
|
| 85 |
+
"learning_rate": 5.263157894736842e-06,
|
| 86 |
+
"loss": 8.44427490234375,
|
| 87 |
+
"step": 11
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.032,
|
| 91 |
+
"grad_norm": 74.7413101196289,
|
| 92 |
+
"learning_rate": 5.789473684210527e-06,
|
| 93 |
+
"loss": 7.79477596282959,
|
| 94 |
+
"step": 12
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.034666666666666665,
|
| 98 |
+
"grad_norm": 60.24201202392578,
|
| 99 |
+
"learning_rate": 6.31578947368421e-06,
|
| 100 |
+
"loss": 7.2957377433776855,
|
| 101 |
+
"step": 13
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.037333333333333336,
|
| 105 |
+
"grad_norm": 54.014644622802734,
|
| 106 |
+
"learning_rate": 6.842105263157896e-06,
|
| 107 |
+
"loss": 7.009221076965332,
|
| 108 |
+
"step": 14
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.04,
|
| 112 |
+
"grad_norm": 45.813697814941406,
|
| 113 |
+
"learning_rate": 7.368421052631579e-06,
|
| 114 |
+
"loss": 6.403441905975342,
|
| 115 |
+
"step": 15
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.042666666666666665,
|
| 119 |
+
"grad_norm": 38.086910247802734,
|
| 120 |
+
"learning_rate": 7.894736842105265e-06,
|
| 121 |
+
"loss": 6.087275981903076,
|
| 122 |
+
"step": 16
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.04533333333333334,
|
| 126 |
+
"grad_norm": 39.79656982421875,
|
| 127 |
+
"learning_rate": 8.421052631578948e-06,
|
| 128 |
+
"loss": 5.71798849105835,
|
| 129 |
+
"step": 17
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.048,
|
| 133 |
+
"grad_norm": 30.681772232055664,
|
| 134 |
+
"learning_rate": 8.947368421052632e-06,
|
| 135 |
+
"loss": 5.540742874145508,
|
| 136 |
+
"step": 18
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.050666666666666665,
|
| 140 |
+
"grad_norm": 30.45841407775879,
|
| 141 |
+
"learning_rate": 9.473684210526315e-06,
|
| 142 |
+
"loss": 5.253246307373047,
|
| 143 |
+
"step": 19
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.05333333333333334,
|
| 147 |
+
"grad_norm": 25.876440048217773,
|
| 148 |
+
"learning_rate": 1e-05,
|
| 149 |
+
"loss": 5.0631866455078125,
|
| 150 |
+
"step": 20
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.056,
|
| 154 |
+
"grad_norm": 23.709259033203125,
|
| 155 |
+
"learning_rate": 9.971910112359552e-06,
|
| 156 |
+
"loss": 4.810742378234863,
|
| 157 |
+
"step": 21
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.058666666666666666,
|
| 161 |
+
"grad_norm": 21.863664627075195,
|
| 162 |
+
"learning_rate": 9.943820224719102e-06,
|
| 163 |
+
"loss": 4.369226455688477,
|
| 164 |
+
"step": 22
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.06133333333333333,
|
| 168 |
+
"grad_norm": 20.434940338134766,
|
| 169 |
+
"learning_rate": 9.915730337078653e-06,
|
| 170 |
+
"loss": 4.1208624839782715,
|
| 171 |
+
"step": 23
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.064,
|
| 175 |
+
"grad_norm": 21.96327781677246,
|
| 176 |
+
"learning_rate": 9.887640449438202e-06,
|
| 177 |
+
"loss": 4.111361980438232,
|
| 178 |
+
"step": 24
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.06666666666666667,
|
| 182 |
+
"grad_norm": 18.36846923828125,
|
| 183 |
+
"learning_rate": 9.859550561797754e-06,
|
| 184 |
+
"loss": 3.787933111190796,
|
| 185 |
+
"step": 25
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.06933333333333333,
|
| 189 |
+
"grad_norm": 16.87392234802246,
|
| 190 |
+
"learning_rate": 9.831460674157303e-06,
|
| 191 |
+
"loss": 4.084612846374512,
|
| 192 |
+
"step": 26
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.072,
|
| 196 |
+
"grad_norm": 17.08782196044922,
|
| 197 |
+
"learning_rate": 9.803370786516854e-06,
|
| 198 |
+
"loss": 3.689074993133545,
|
| 199 |
+
"step": 27
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.07466666666666667,
|
| 203 |
+
"grad_norm": 16.84369468688965,
|
| 204 |
+
"learning_rate": 9.775280898876405e-06,
|
| 205 |
+
"loss": 3.873020887374878,
|
| 206 |
+
"step": 28
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.07733333333333334,
|
| 210 |
+
"grad_norm": 14.4940824508667,
|
| 211 |
+
"learning_rate": 9.747191011235956e-06,
|
| 212 |
+
"loss": 3.5138087272644043,
|
| 213 |
+
"step": 29
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.08,
|
| 217 |
+
"grad_norm": 14.818546295166016,
|
| 218 |
+
"learning_rate": 9.719101123595506e-06,
|
| 219 |
+
"loss": 3.3739891052246094,
|
| 220 |
+
"step": 30
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.08266666666666667,
|
| 224 |
+
"grad_norm": 14.110360145568848,
|
| 225 |
+
"learning_rate": 9.691011235955057e-06,
|
| 226 |
+
"loss": 3.0248146057128906,
|
| 227 |
+
"step": 31
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.08533333333333333,
|
| 231 |
+
"grad_norm": 15.661042213439941,
|
| 232 |
+
"learning_rate": 9.662921348314608e-06,
|
| 233 |
+
"loss": 2.938133716583252,
|
| 234 |
+
"step": 32
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.088,
|
| 238 |
+
"grad_norm": 14.291086196899414,
|
| 239 |
+
"learning_rate": 9.634831460674158e-06,
|
| 240 |
+
"loss": 2.8373093605041504,
|
| 241 |
+
"step": 33
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.09066666666666667,
|
| 245 |
+
"grad_norm": 12.506660461425781,
|
| 246 |
+
"learning_rate": 9.60674157303371e-06,
|
| 247 |
+
"loss": 2.859283924102783,
|
| 248 |
+
"step": 34
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.09333333333333334,
|
| 252 |
+
"grad_norm": 12.220486640930176,
|
| 253 |
+
"learning_rate": 9.578651685393258e-06,
|
| 254 |
+
"loss": 2.730626106262207,
|
| 255 |
+
"step": 35
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.096,
|
| 259 |
+
"grad_norm": 10.75361442565918,
|
| 260 |
+
"learning_rate": 9.55056179775281e-06,
|
| 261 |
+
"loss": 2.779308319091797,
|
| 262 |
+
"step": 36
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.09866666666666667,
|
| 266 |
+
"grad_norm": 11.151102066040039,
|
| 267 |
+
"learning_rate": 9.522471910112361e-06,
|
| 268 |
+
"loss": 2.851846694946289,
|
| 269 |
+
"step": 37
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 0.10133333333333333,
|
| 273 |
+
"grad_norm": 13.231782913208008,
|
| 274 |
+
"learning_rate": 9.49438202247191e-06,
|
| 275 |
+
"loss": 2.5308845043182373,
|
| 276 |
+
"step": 38
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.104,
|
| 280 |
+
"grad_norm": 11.619803428649902,
|
| 281 |
+
"learning_rate": 9.466292134831461e-06,
|
| 282 |
+
"loss": 2.5366804599761963,
|
| 283 |
+
"step": 39
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"epoch": 0.10666666666666667,
|
| 287 |
+
"grad_norm": 10.728320121765137,
|
| 288 |
+
"learning_rate": 9.438202247191012e-06,
|
| 289 |
+
"loss": 2.176302671432495,
|
| 290 |
+
"step": 40
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.10933333333333334,
|
| 294 |
+
"grad_norm": 10.922004699707031,
|
| 295 |
+
"learning_rate": 9.410112359550562e-06,
|
| 296 |
+
"loss": 2.6344969272613525,
|
| 297 |
+
"step": 41
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 0.112,
|
| 301 |
+
"grad_norm": 10.467931747436523,
|
| 302 |
+
"learning_rate": 9.382022471910113e-06,
|
| 303 |
+
"loss": 2.270345687866211,
|
| 304 |
+
"step": 42
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.11466666666666667,
|
| 308 |
+
"grad_norm": 11.972366333007812,
|
| 309 |
+
"learning_rate": 9.353932584269664e-06,
|
| 310 |
+
"loss": 2.262977123260498,
|
| 311 |
+
"step": 43
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"epoch": 0.11733333333333333,
|
| 315 |
+
"grad_norm": 10.597440719604492,
|
| 316 |
+
"learning_rate": 9.325842696629213e-06,
|
| 317 |
+
"loss": 2.3384501934051514,
|
| 318 |
+
"step": 44
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.12,
|
| 322 |
+
"grad_norm": 12.487441062927246,
|
| 323 |
+
"learning_rate": 9.297752808988765e-06,
|
| 324 |
+
"loss": 2.446566104888916,
|
| 325 |
+
"step": 45
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.12266666666666666,
|
| 329 |
+
"grad_norm": 10.253981590270996,
|
| 330 |
+
"learning_rate": 9.269662921348316e-06,
|
| 331 |
+
"loss": 2.035454750061035,
|
| 332 |
+
"step": 46
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.12533333333333332,
|
| 336 |
+
"grad_norm": 9.695643424987793,
|
| 337 |
+
"learning_rate": 9.241573033707865e-06,
|
| 338 |
+
"loss": 2.3127524852752686,
|
| 339 |
+
"step": 47
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 0.128,
|
| 343 |
+
"grad_norm": 10.694028854370117,
|
| 344 |
+
"learning_rate": 9.213483146067417e-06,
|
| 345 |
+
"loss": 2.2996160984039307,
|
| 346 |
+
"step": 48
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.13066666666666665,
|
| 350 |
+
"grad_norm": 12.787583351135254,
|
| 351 |
+
"learning_rate": 9.185393258426967e-06,
|
| 352 |
+
"loss": 2.5168590545654297,
|
| 353 |
+
"step": 49
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"epoch": 0.13333333333333333,
|
| 357 |
+
"grad_norm": 10.594977378845215,
|
| 358 |
+
"learning_rate": 9.157303370786517e-06,
|
| 359 |
+
"loss": 1.8576197624206543,
|
| 360 |
+
"step": 50
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.136,
|
| 364 |
+
"grad_norm": 11.105279922485352,
|
| 365 |
+
"learning_rate": 9.129213483146068e-06,
|
| 366 |
+
"loss": 2.0596225261688232,
|
| 367 |
+
"step": 51
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 0.13866666666666666,
|
| 371 |
+
"grad_norm": 11.56894588470459,
|
| 372 |
+
"learning_rate": 9.101123595505619e-06,
|
| 373 |
+
"loss": 2.1656343936920166,
|
| 374 |
+
"step": 52
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.14133333333333334,
|
| 378 |
+
"grad_norm": 10.579730987548828,
|
| 379 |
+
"learning_rate": 9.07303370786517e-06,
|
| 380 |
+
"loss": 1.969504475593567,
|
| 381 |
+
"step": 53
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 0.144,
|
| 385 |
+
"grad_norm": 9.501631736755371,
|
| 386 |
+
"learning_rate": 9.04494382022472e-06,
|
| 387 |
+
"loss": 1.94535493850708,
|
| 388 |
+
"step": 54
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.14666666666666667,
|
| 392 |
+
"grad_norm": 10.170072555541992,
|
| 393 |
+
"learning_rate": 9.01685393258427e-06,
|
| 394 |
+
"loss": 2.0672125816345215,
|
| 395 |
+
"step": 55
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 0.14933333333333335,
|
| 399 |
+
"grad_norm": 9.39763069152832,
|
| 400 |
+
"learning_rate": 8.988764044943822e-06,
|
| 401 |
+
"loss": 2.132148504257202,
|
| 402 |
+
"step": 56
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.152,
|
| 406 |
+
"grad_norm": 10.032671928405762,
|
| 407 |
+
"learning_rate": 8.960674157303372e-06,
|
| 408 |
+
"loss": 2.043534517288208,
|
| 409 |
+
"step": 57
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 0.15466666666666667,
|
| 413 |
+
"grad_norm": 11.097075462341309,
|
| 414 |
+
"learning_rate": 8.932584269662921e-06,
|
| 415 |
+
"loss": 1.6756911277770996,
|
| 416 |
+
"step": 58
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.15733333333333333,
|
| 420 |
+
"grad_norm": 11.116305351257324,
|
| 421 |
+
"learning_rate": 8.904494382022472e-06,
|
| 422 |
+
"loss": 2.0522589683532715,
|
| 423 |
+
"step": 59
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 0.16,
|
| 427 |
+
"grad_norm": 10.924529075622559,
|
| 428 |
+
"learning_rate": 8.876404494382023e-06,
|
| 429 |
+
"loss": 1.9636679887771606,
|
| 430 |
+
"step": 60
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.16266666666666665,
|
| 434 |
+
"grad_norm": 9.252256393432617,
|
| 435 |
+
"learning_rate": 8.848314606741573e-06,
|
| 436 |
+
"loss": 1.6284159421920776,
|
| 437 |
+
"step": 61
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 0.16533333333333333,
|
| 441 |
+
"grad_norm": 11.261286735534668,
|
| 442 |
+
"learning_rate": 8.820224719101124e-06,
|
| 443 |
+
"loss": 1.6471984386444092,
|
| 444 |
+
"step": 62
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.168,
|
| 448 |
+
"grad_norm": 10.263949394226074,
|
| 449 |
+
"learning_rate": 8.792134831460675e-06,
|
| 450 |
+
"loss": 1.6104894876480103,
|
| 451 |
+
"step": 63
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.17066666666666666,
|
| 455 |
+
"grad_norm": 10.444320678710938,
|
| 456 |
+
"learning_rate": 8.764044943820226e-06,
|
| 457 |
+
"loss": 1.5480685234069824,
|
| 458 |
+
"step": 64
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.17333333333333334,
|
| 462 |
+
"grad_norm": 10.065644264221191,
|
| 463 |
+
"learning_rate": 8.735955056179776e-06,
|
| 464 |
+
"loss": 1.5983505249023438,
|
| 465 |
+
"step": 65
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 0.176,
|
| 469 |
+
"grad_norm": 10.745816230773926,
|
| 470 |
+
"learning_rate": 8.707865168539327e-06,
|
| 471 |
+
"loss": 1.5451902151107788,
|
| 472 |
+
"step": 66
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.17866666666666667,
|
| 476 |
+
"grad_norm": 11.547348022460938,
|
| 477 |
+
"learning_rate": 8.679775280898876e-06,
|
| 478 |
+
"loss": 1.5520156621932983,
|
| 479 |
+
"step": 67
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 0.18133333333333335,
|
| 483 |
+
"grad_norm": 11.1903076171875,
|
| 484 |
+
"learning_rate": 8.651685393258428e-06,
|
| 485 |
+
"loss": 1.3468866348266602,
|
| 486 |
+
"step": 68
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.184,
|
| 490 |
+
"grad_norm": 10.134865760803223,
|
| 491 |
+
"learning_rate": 8.623595505617979e-06,
|
| 492 |
+
"loss": 1.457981824874878,
|
| 493 |
+
"step": 69
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"epoch": 0.18666666666666668,
|
| 497 |
+
"grad_norm": 10.580246925354004,
|
| 498 |
+
"learning_rate": 8.595505617977528e-06,
|
| 499 |
+
"loss": 1.530599594116211,
|
| 500 |
+
"step": 70
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.18933333333333333,
|
| 504 |
+
"grad_norm": 10.744487762451172,
|
| 505 |
+
"learning_rate": 8.56741573033708e-06,
|
| 506 |
+
"loss": 1.24165678024292,
|
| 507 |
+
"step": 71
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 0.192,
|
| 511 |
+
"grad_norm": 11.34036922454834,
|
| 512 |
+
"learning_rate": 8.53932584269663e-06,
|
| 513 |
+
"loss": 1.1307389736175537,
|
| 514 |
+
"step": 72
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.19466666666666665,
|
| 518 |
+
"grad_norm": 12.146100997924805,
|
| 519 |
+
"learning_rate": 8.51123595505618e-06,
|
| 520 |
+
"loss": 1.4014456272125244,
|
| 521 |
+
"step": 73
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"epoch": 0.19733333333333333,
|
| 525 |
+
"grad_norm": 11.810182571411133,
|
| 526 |
+
"learning_rate": 8.483146067415731e-06,
|
| 527 |
+
"loss": 1.3475110530853271,
|
| 528 |
+
"step": 74
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.2,
|
| 532 |
+
"grad_norm": 10.650108337402344,
|
| 533 |
+
"learning_rate": 8.455056179775282e-06,
|
| 534 |
+
"loss": 1.2535855770111084,
|
| 535 |
+
"step": 75
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 0.20266666666666666,
|
| 539 |
+
"grad_norm": 11.479569435119629,
|
| 540 |
+
"learning_rate": 8.426966292134832e-06,
|
| 541 |
+
"loss": 1.1040645837783813,
|
| 542 |
+
"step": 76
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.20533333333333334,
|
| 546 |
+
"grad_norm": 13.411121368408203,
|
| 547 |
+
"learning_rate": 8.398876404494383e-06,
|
| 548 |
+
"loss": 1.1873900890350342,
|
| 549 |
+
"step": 77
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 0.208,
|
| 553 |
+
"grad_norm": 12.876670837402344,
|
| 554 |
+
"learning_rate": 8.370786516853934e-06,
|
| 555 |
+
"loss": 1.2497323751449585,
|
| 556 |
+
"step": 78
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.21066666666666667,
|
| 560 |
+
"grad_norm": 11.155399322509766,
|
| 561 |
+
"learning_rate": 8.342696629213483e-06,
|
| 562 |
+
"loss": 1.1884422302246094,
|
| 563 |
+
"step": 79
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 0.21333333333333335,
|
| 567 |
+
"grad_norm": 11.68853759765625,
|
| 568 |
+
"learning_rate": 8.314606741573035e-06,
|
| 569 |
+
"loss": 1.2792617082595825,
|
| 570 |
+
"step": 80
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.216,
|
| 574 |
+
"grad_norm": 10.7301025390625,
|
| 575 |
+
"learning_rate": 8.286516853932584e-06,
|
| 576 |
+
"loss": 1.2246038913726807,
|
| 577 |
+
"step": 81
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.21866666666666668,
|
| 581 |
+
"grad_norm": 9.901270866394043,
|
| 582 |
+
"learning_rate": 8.258426966292135e-06,
|
| 583 |
+
"loss": 1.0451529026031494,
|
| 584 |
+
"step": 82
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.22133333333333333,
|
| 588 |
+
"grad_norm": 9.585644721984863,
|
| 589 |
+
"learning_rate": 8.230337078651686e-06,
|
| 590 |
+
"loss": 0.9552695751190186,
|
| 591 |
+
"step": 83
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 0.224,
|
| 595 |
+
"grad_norm": 12.750142097473145,
|
| 596 |
+
"learning_rate": 8.202247191011237e-06,
|
| 597 |
+
"loss": 1.348262071609497,
|
| 598 |
+
"step": 84
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.22666666666666666,
|
| 602 |
+
"grad_norm": 11.14697265625,
|
| 603 |
+
"learning_rate": 8.174157303370787e-06,
|
| 604 |
+
"loss": 1.0186105966567993,
|
| 605 |
+
"step": 85
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 0.22933333333333333,
|
| 609 |
+
"grad_norm": 11.14384651184082,
|
| 610 |
+
"learning_rate": 8.146067415730338e-06,
|
| 611 |
+
"loss": 1.0607019662857056,
|
| 612 |
+
"step": 86
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.232,
|
| 616 |
+
"grad_norm": 10.328786849975586,
|
| 617 |
+
"learning_rate": 8.117977528089889e-06,
|
| 618 |
+
"loss": 0.9560970664024353,
|
| 619 |
+
"step": 87
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 0.23466666666666666,
|
| 623 |
+
"grad_norm": 10.841139793395996,
|
| 624 |
+
"learning_rate": 8.08988764044944e-06,
|
| 625 |
+
"loss": 0.9277609586715698,
|
| 626 |
+
"step": 88
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.23733333333333334,
|
| 630 |
+
"grad_norm": 11.283014297485352,
|
| 631 |
+
"learning_rate": 8.06179775280899e-06,
|
| 632 |
+
"loss": 1.1036794185638428,
|
| 633 |
+
"step": 89
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 0.24,
|
| 637 |
+
"grad_norm": 16.602310180664062,
|
| 638 |
+
"learning_rate": 8.033707865168539e-06,
|
| 639 |
+
"loss": 1.1436660289764404,
|
| 640 |
+
"step": 90
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.24266666666666667,
|
| 644 |
+
"grad_norm": 10.93206787109375,
|
| 645 |
+
"learning_rate": 8.00561797752809e-06,
|
| 646 |
+
"loss": 0.8919620513916016,
|
| 647 |
+
"step": 91
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"epoch": 0.24533333333333332,
|
| 651 |
+
"grad_norm": 11.306818008422852,
|
| 652 |
+
"learning_rate": 7.97752808988764e-06,
|
| 653 |
+
"loss": 1.0714668035507202,
|
| 654 |
+
"step": 92
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.248,
|
| 658 |
+
"grad_norm": 9.216002464294434,
|
| 659 |
+
"learning_rate": 7.949438202247191e-06,
|
| 660 |
+
"loss": 1.0274698734283447,
|
| 661 |
+
"step": 93
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"epoch": 0.25066666666666665,
|
| 665 |
+
"grad_norm": 9.062772750854492,
|
| 666 |
+
"learning_rate": 7.921348314606742e-06,
|
| 667 |
+
"loss": 0.6113460659980774,
|
| 668 |
+
"step": 94
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.25333333333333335,
|
| 672 |
+
"grad_norm": 8.908549308776855,
|
| 673 |
+
"learning_rate": 7.893258426966293e-06,
|
| 674 |
+
"loss": 0.7682806849479675,
|
| 675 |
+
"step": 95
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 0.256,
|
| 679 |
+
"grad_norm": 9.468413352966309,
|
| 680 |
+
"learning_rate": 7.865168539325843e-06,
|
| 681 |
+
"loss": 0.931200385093689,
|
| 682 |
+
"step": 96
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.25866666666666666,
|
| 686 |
+
"grad_norm": 9.342957496643066,
|
| 687 |
+
"learning_rate": 7.837078651685394e-06,
|
| 688 |
+
"loss": 0.8321046829223633,
|
| 689 |
+
"step": 97
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 0.2613333333333333,
|
| 693 |
+
"grad_norm": 8.902146339416504,
|
| 694 |
+
"learning_rate": 7.808988764044945e-06,
|
| 695 |
+
"loss": 0.5983229279518127,
|
| 696 |
+
"step": 98
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.264,
|
| 700 |
+
"grad_norm": 10.691293716430664,
|
| 701 |
+
"learning_rate": 7.780898876404494e-06,
|
| 702 |
+
"loss": 0.6863845586776733,
|
| 703 |
+
"step": 99
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.26666666666666666,
|
| 707 |
+
"grad_norm": 10.162596702575684,
|
| 708 |
+
"learning_rate": 7.752808988764046e-06,
|
| 709 |
+
"loss": 0.843379557132721,
|
| 710 |
+
"step": 100
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.2693333333333333,
|
| 714 |
+
"grad_norm": 12.803357124328613,
|
| 715 |
+
"learning_rate": 7.724719101123597e-06,
|
| 716 |
+
"loss": 0.9776611328125,
|
| 717 |
+
"step": 101
|
| 718 |
+
},
|
| 719 |
+
{
|
| 720 |
+
"epoch": 0.272,
|
| 721 |
+
"grad_norm": 9.056926727294922,
|
| 722 |
+
"learning_rate": 7.696629213483146e-06,
|
| 723 |
+
"loss": 0.6964964866638184,
|
| 724 |
+
"step": 102
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.27466666666666667,
|
| 728 |
+
"grad_norm": 10.713375091552734,
|
| 729 |
+
"learning_rate": 7.668539325842698e-06,
|
| 730 |
+
"loss": 0.8867349624633789,
|
| 731 |
+
"step": 103
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 0.2773333333333333,
|
| 735 |
+
"grad_norm": 11.21557331085205,
|
| 736 |
+
"learning_rate": 7.640449438202247e-06,
|
| 737 |
+
"loss": 0.8569594025611877,
|
| 738 |
+
"step": 104
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.28,
|
| 742 |
+
"grad_norm": 9.143693923950195,
|
| 743 |
+
"learning_rate": 7.612359550561799e-06,
|
| 744 |
+
"loss": 0.6123837232589722,
|
| 745 |
+
"step": 105
|
| 746 |
+
},
|
| 747 |
+
{
|
| 748 |
+
"epoch": 0.2826666666666667,
|
| 749 |
+
"grad_norm": 9.902138710021973,
|
| 750 |
+
"learning_rate": 7.584269662921349e-06,
|
| 751 |
+
"loss": 0.6609525084495544,
|
| 752 |
+
"step": 106
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.2853333333333333,
|
| 756 |
+
"grad_norm": 8.925782203674316,
|
| 757 |
+
"learning_rate": 7.5561797752809e-06,
|
| 758 |
+
"loss": 0.6758649945259094,
|
| 759 |
+
"step": 107
|
| 760 |
+
},
|
| 761 |
+
{
|
| 762 |
+
"epoch": 0.288,
|
| 763 |
+
"grad_norm": 8.8521089553833,
|
| 764 |
+
"learning_rate": 7.5280898876404495e-06,
|
| 765 |
+
"loss": 0.6611078977584839,
|
| 766 |
+
"step": 108
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.2906666666666667,
|
| 770 |
+
"grad_norm": 11.167701721191406,
|
| 771 |
+
"learning_rate": 7.500000000000001e-06,
|
| 772 |
+
"loss": 1.004479169845581,
|
| 773 |
+
"step": 109
|
| 774 |
+
},
|
| 775 |
+
{
|
| 776 |
+
"epoch": 0.29333333333333333,
|
| 777 |
+
"grad_norm": 10.848076820373535,
|
| 778 |
+
"learning_rate": 7.471910112359552e-06,
|
| 779 |
+
"loss": 0.6455778479576111,
|
| 780 |
+
"step": 110
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.296,
|
| 784 |
+
"grad_norm": 8.009282112121582,
|
| 785 |
+
"learning_rate": 7.443820224719102e-06,
|
| 786 |
+
"loss": 0.5215024948120117,
|
| 787 |
+
"step": 111
|
| 788 |
+
},
|
| 789 |
+
{
|
| 790 |
+
"epoch": 0.2986666666666667,
|
| 791 |
+
"grad_norm": 11.672330856323242,
|
| 792 |
+
"learning_rate": 7.415730337078652e-06,
|
| 793 |
+
"loss": 0.8420214653015137,
|
| 794 |
+
"step": 112
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.30133333333333334,
|
| 798 |
+
"grad_norm": 9.667366981506348,
|
| 799 |
+
"learning_rate": 7.387640449438202e-06,
|
| 800 |
+
"loss": 0.7665308117866516,
|
| 801 |
+
"step": 113
|
| 802 |
+
},
|
| 803 |
+
{
|
| 804 |
+
"epoch": 0.304,
|
| 805 |
+
"grad_norm": 7.986022472381592,
|
| 806 |
+
"learning_rate": 7.359550561797754e-06,
|
| 807 |
+
"loss": 0.6188411712646484,
|
| 808 |
+
"step": 114
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.30666666666666664,
|
| 812 |
+
"grad_norm": 11.240910530090332,
|
| 813 |
+
"learning_rate": 7.331460674157304e-06,
|
| 814 |
+
"loss": 0.7242427468299866,
|
| 815 |
+
"step": 115
|
| 816 |
+
},
|
| 817 |
+
{
|
| 818 |
+
"epoch": 0.30933333333333335,
|
| 819 |
+
"grad_norm": 7.829097270965576,
|
| 820 |
+
"learning_rate": 7.303370786516854e-06,
|
| 821 |
+
"loss": 0.4696412682533264,
|
| 822 |
+
"step": 116
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.312,
|
| 826 |
+
"grad_norm": 9.687139511108398,
|
| 827 |
+
"learning_rate": 7.275280898876404e-06,
|
| 828 |
+
"loss": 0.6932588815689087,
|
| 829 |
+
"step": 117
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.31466666666666665,
|
| 833 |
+
"grad_norm": 11.388943672180176,
|
| 834 |
+
"learning_rate": 7.247191011235956e-06,
|
| 835 |
+
"loss": 0.6690924763679504,
|
| 836 |
+
"step": 118
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.31733333333333336,
|
| 840 |
+
"grad_norm": 10.902031898498535,
|
| 841 |
+
"learning_rate": 7.2191011235955065e-06,
|
| 842 |
+
"loss": 0.6181185245513916,
|
| 843 |
+
"step": 119
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"epoch": 0.32,
|
| 847 |
+
"grad_norm": 9.588140487670898,
|
| 848 |
+
"learning_rate": 7.191011235955056e-06,
|
| 849 |
+
"loss": 0.6805417537689209,
|
| 850 |
+
"step": 120
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.32266666666666666,
|
| 854 |
+
"grad_norm": 12.04230785369873,
|
| 855 |
+
"learning_rate": 7.162921348314608e-06,
|
| 856 |
+
"loss": 1.1967664957046509,
|
| 857 |
+
"step": 121
|
| 858 |
+
},
|
| 859 |
+
{
|
| 860 |
+
"epoch": 0.3253333333333333,
|
| 861 |
+
"grad_norm": 8.957392692565918,
|
| 862 |
+
"learning_rate": 7.134831460674158e-06,
|
| 863 |
+
"loss": 0.632103681564331,
|
| 864 |
+
"step": 122
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.328,
|
| 868 |
+
"grad_norm": 8.867446899414062,
|
| 869 |
+
"learning_rate": 7.1067415730337085e-06,
|
| 870 |
+
"loss": 0.7522599697113037,
|
| 871 |
+
"step": 123
|
| 872 |
+
},
|
| 873 |
+
{
|
| 874 |
+
"epoch": 0.33066666666666666,
|
| 875 |
+
"grad_norm": 10.266507148742676,
|
| 876 |
+
"learning_rate": 7.078651685393258e-06,
|
| 877 |
+
"loss": 0.738883912563324,
|
| 878 |
+
"step": 124
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 0.3333333333333333,
|
| 882 |
+
"grad_norm": 8.87643051147461,
|
| 883 |
+
"learning_rate": 7.05056179775281e-06,
|
| 884 |
+
"loss": 0.5069182515144348,
|
| 885 |
+
"step": 125
|
| 886 |
+
},
|
| 887 |
+
{
|
| 888 |
+
"epoch": 0.336,
|
| 889 |
+
"grad_norm": 9.884408950805664,
|
| 890 |
+
"learning_rate": 7.022471910112361e-06,
|
| 891 |
+
"loss": 0.5969939827919006,
|
| 892 |
+
"step": 126
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.33866666666666667,
|
| 896 |
+
"grad_norm": 8.659189224243164,
|
| 897 |
+
"learning_rate": 6.9943820224719105e-06,
|
| 898 |
+
"loss": 0.825599730014801,
|
| 899 |
+
"step": 127
|
| 900 |
+
},
|
| 901 |
+
{
|
| 902 |
+
"epoch": 0.3413333333333333,
|
| 903 |
+
"grad_norm": 9.328271865844727,
|
| 904 |
+
"learning_rate": 6.966292134831461e-06,
|
| 905 |
+
"loss": 0.8193888664245605,
|
| 906 |
+
"step": 128
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 0.344,
|
| 910 |
+
"grad_norm": 9.927331924438477,
|
| 911 |
+
"learning_rate": 6.938202247191011e-06,
|
| 912 |
+
"loss": 0.562104344367981,
|
| 913 |
+
"step": 129
|
| 914 |
+
},
|
| 915 |
+
{
|
| 916 |
+
"epoch": 0.3466666666666667,
|
| 917 |
+
"grad_norm": 7.426764011383057,
|
| 918 |
+
"learning_rate": 6.910112359550563e-06,
|
| 919 |
+
"loss": 0.590276300907135,
|
| 920 |
+
"step": 130
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 0.34933333333333333,
|
| 924 |
+
"grad_norm": 12.05113410949707,
|
| 925 |
+
"learning_rate": 6.8820224719101126e-06,
|
| 926 |
+
"loss": 0.7326091527938843,
|
| 927 |
+
"step": 131
|
| 928 |
+
},
|
| 929 |
+
{
|
| 930 |
+
"epoch": 0.352,
|
| 931 |
+
"grad_norm": 7.93930196762085,
|
| 932 |
+
"learning_rate": 6.853932584269663e-06,
|
| 933 |
+
"loss": 0.6142013669013977,
|
| 934 |
+
"step": 132
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.3546666666666667,
|
| 938 |
+
"grad_norm": 9.491640090942383,
|
| 939 |
+
"learning_rate": 6.825842696629213e-06,
|
| 940 |
+
"loss": 0.5451798439025879,
|
| 941 |
+
"step": 133
|
| 942 |
+
},
|
| 943 |
+
{
|
| 944 |
+
"epoch": 0.35733333333333334,
|
| 945 |
+
"grad_norm": 10.750314712524414,
|
| 946 |
+
"learning_rate": 6.797752808988765e-06,
|
| 947 |
+
"loss": 0.6363071203231812,
|
| 948 |
+
"step": 134
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 0.36,
|
| 952 |
+
"grad_norm": 11.000245094299316,
|
| 953 |
+
"learning_rate": 6.7696629213483154e-06,
|
| 954 |
+
"loss": 0.6733920574188232,
|
| 955 |
+
"step": 135
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 0.3626666666666667,
|
| 959 |
+
"grad_norm": 7.272871017456055,
|
| 960 |
+
"learning_rate": 6.741573033707865e-06,
|
| 961 |
+
"loss": 0.418811559677124,
|
| 962 |
+
"step": 136
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 0.36533333333333334,
|
| 966 |
+
"grad_norm": 9.358305931091309,
|
| 967 |
+
"learning_rate": 6.713483146067417e-06,
|
| 968 |
+
"loss": 0.7467747926712036,
|
| 969 |
+
"step": 137
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"epoch": 0.368,
|
| 973 |
+
"grad_norm": 8.385472297668457,
|
| 974 |
+
"learning_rate": 6.685393258426967e-06,
|
| 975 |
+
"loss": 0.6022355556488037,
|
| 976 |
+
"step": 138
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 0.37066666666666664,
|
| 980 |
+
"grad_norm": 8.527623176574707,
|
| 981 |
+
"learning_rate": 6.6573033707865175e-06,
|
| 982 |
+
"loss": 0.4671086072921753,
|
| 983 |
+
"step": 139
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"epoch": 0.37333333333333335,
|
| 987 |
+
"grad_norm": 7.954482555389404,
|
| 988 |
+
"learning_rate": 6.629213483146067e-06,
|
| 989 |
+
"loss": 0.6525954008102417,
|
| 990 |
+
"step": 140
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 0.376,
|
| 994 |
+
"grad_norm": 7.474452495574951,
|
| 995 |
+
"learning_rate": 6.601123595505619e-06,
|
| 996 |
+
"loss": 0.6411296129226685,
|
| 997 |
+
"step": 141
|
| 998 |
+
},
|
| 999 |
+
{
|
| 1000 |
+
"epoch": 0.37866666666666665,
|
| 1001 |
+
"grad_norm": 7.6223297119140625,
|
| 1002 |
+
"learning_rate": 6.57303370786517e-06,
|
| 1003 |
+
"loss": 0.5695533752441406,
|
| 1004 |
+
"step": 142
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 0.38133333333333336,
|
| 1008 |
+
"grad_norm": 9.030717849731445,
|
| 1009 |
+
"learning_rate": 6.5449438202247195e-06,
|
| 1010 |
+
"loss": 0.4683411419391632,
|
| 1011 |
+
"step": 143
|
| 1012 |
+
},
|
| 1013 |
+
{
|
| 1014 |
+
"epoch": 0.384,
|
| 1015 |
+
"grad_norm": 7.926174640655518,
|
| 1016 |
+
"learning_rate": 6.51685393258427e-06,
|
| 1017 |
+
"loss": 0.5910580158233643,
|
| 1018 |
+
"step": 144
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.38666666666666666,
|
| 1022 |
+
"grad_norm": 11.901198387145996,
|
| 1023 |
+
"learning_rate": 6.488764044943821e-06,
|
| 1024 |
+
"loss": 0.8150304555892944,
|
| 1025 |
+
"step": 145
|
| 1026 |
+
},
|
| 1027 |
+
{
|
| 1028 |
+
"epoch": 0.3893333333333333,
|
| 1029 |
+
"grad_norm": 7.352392673492432,
|
| 1030 |
+
"learning_rate": 6.460674157303372e-06,
|
| 1031 |
+
"loss": 0.39086320996284485,
|
| 1032 |
+
"step": 146
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 0.392,
|
| 1036 |
+
"grad_norm": 7.774436950683594,
|
| 1037 |
+
"learning_rate": 6.4325842696629215e-06,
|
| 1038 |
+
"loss": 0.2628573179244995,
|
| 1039 |
+
"step": 147
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"epoch": 0.39466666666666667,
|
| 1043 |
+
"grad_norm": 8.74471664428711,
|
| 1044 |
+
"learning_rate": 6.404494382022472e-06,
|
| 1045 |
+
"loss": 0.6225802898406982,
|
| 1046 |
+
"step": 148
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 0.3973333333333333,
|
| 1050 |
+
"grad_norm": 8.091107368469238,
|
| 1051 |
+
"learning_rate": 6.376404494382022e-06,
|
| 1052 |
+
"loss": 0.565784752368927,
|
| 1053 |
+
"step": 149
|
| 1054 |
+
},
|
| 1055 |
+
{
|
| 1056 |
+
"epoch": 0.4,
|
| 1057 |
+
"grad_norm": 7.628470420837402,
|
| 1058 |
+
"learning_rate": 6.348314606741574e-06,
|
| 1059 |
+
"loss": 0.6476342678070068,
|
| 1060 |
+
"step": 150
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 0.4026666666666667,
|
| 1064 |
+
"grad_norm": 6.314539432525635,
|
| 1065 |
+
"learning_rate": 6.320224719101124e-06,
|
| 1066 |
+
"loss": 0.3146457374095917,
|
| 1067 |
+
"step": 151
|
| 1068 |
+
},
|
| 1069 |
+
{
|
| 1070 |
+
"epoch": 0.4053333333333333,
|
| 1071 |
+
"grad_norm": 7.166040897369385,
|
| 1072 |
+
"learning_rate": 6.292134831460674e-06,
|
| 1073 |
+
"loss": 0.501552164554596,
|
| 1074 |
+
"step": 152
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 0.408,
|
| 1078 |
+
"grad_norm": 9.255748748779297,
|
| 1079 |
+
"learning_rate": 6.264044943820226e-06,
|
| 1080 |
+
"loss": 0.48986560106277466,
|
| 1081 |
+
"step": 153
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 0.4106666666666667,
|
| 1085 |
+
"grad_norm": 7.911505699157715,
|
| 1086 |
+
"learning_rate": 6.235955056179776e-06,
|
| 1087 |
+
"loss": 0.46173685789108276,
|
| 1088 |
+
"step": 154
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 0.41333333333333333,
|
| 1092 |
+
"grad_norm": 9.642655372619629,
|
| 1093 |
+
"learning_rate": 6.207865168539326e-06,
|
| 1094 |
+
"loss": 0.7007043361663818,
|
| 1095 |
+
"step": 155
|
| 1096 |
+
},
|
| 1097 |
+
{
|
| 1098 |
+
"epoch": 0.416,
|
| 1099 |
+
"grad_norm": 11.969674110412598,
|
| 1100 |
+
"learning_rate": 6.179775280898876e-06,
|
| 1101 |
+
"loss": 0.638664722442627,
|
| 1102 |
+
"step": 156
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"epoch": 0.4186666666666667,
|
| 1106 |
+
"grad_norm": 10.90139102935791,
|
| 1107 |
+
"learning_rate": 6.151685393258428e-06,
|
| 1108 |
+
"loss": 0.6380130052566528,
|
| 1109 |
+
"step": 157
|
| 1110 |
+
},
|
| 1111 |
+
{
|
| 1112 |
+
"epoch": 0.42133333333333334,
|
| 1113 |
+
"grad_norm": 12.92622184753418,
|
| 1114 |
+
"learning_rate": 6.1235955056179785e-06,
|
| 1115 |
+
"loss": 0.6583395004272461,
|
| 1116 |
+
"step": 158
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"epoch": 0.424,
|
| 1120 |
+
"grad_norm": 9.722634315490723,
|
| 1121 |
+
"learning_rate": 6.095505617977528e-06,
|
| 1122 |
+
"loss": 0.6104496121406555,
|
| 1123 |
+
"step": 159
|
| 1124 |
+
},
|
| 1125 |
+
{
|
| 1126 |
+
"epoch": 0.4266666666666667,
|
| 1127 |
+
"grad_norm": 6.8508524894714355,
|
| 1128 |
+
"learning_rate": 6.06741573033708e-06,
|
| 1129 |
+
"loss": 0.5285036563873291,
|
| 1130 |
+
"step": 160
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"epoch": 0.42933333333333334,
|
| 1134 |
+
"grad_norm": 8.004532814025879,
|
| 1135 |
+
"learning_rate": 6.03932584269663e-06,
|
| 1136 |
+
"loss": 0.6247756481170654,
|
| 1137 |
+
"step": 161
|
| 1138 |
+
},
|
| 1139 |
+
{
|
| 1140 |
+
"epoch": 0.432,
|
| 1141 |
+
"grad_norm": 6.019658088684082,
|
| 1142 |
+
"learning_rate": 6.0112359550561805e-06,
|
| 1143 |
+
"loss": 0.3690226078033447,
|
| 1144 |
+
"step": 162
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.43466666666666665,
|
| 1148 |
+
"grad_norm": 10.048113822937012,
|
| 1149 |
+
"learning_rate": 5.98314606741573e-06,
|
| 1150 |
+
"loss": 0.7174047827720642,
|
| 1151 |
+
"step": 163
|
| 1152 |
+
},
|
| 1153 |
+
{
|
| 1154 |
+
"epoch": 0.43733333333333335,
|
| 1155 |
+
"grad_norm": 8.477190017700195,
|
| 1156 |
+
"learning_rate": 5.955056179775281e-06,
|
| 1157 |
+
"loss": 0.5005499124526978,
|
| 1158 |
+
"step": 164
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 0.44,
|
| 1162 |
+
"grad_norm": 7.024532794952393,
|
| 1163 |
+
"learning_rate": 5.926966292134832e-06,
|
| 1164 |
+
"loss": 0.42374947667121887,
|
| 1165 |
+
"step": 165
|
| 1166 |
+
},
|
| 1167 |
+
{
|
| 1168 |
+
"epoch": 0.44266666666666665,
|
| 1169 |
+
"grad_norm": 7.412145137786865,
|
| 1170 |
+
"learning_rate": 5.8988764044943826e-06,
|
| 1171 |
+
"loss": 0.579714834690094,
|
| 1172 |
+
"step": 166
|
| 1173 |
+
},
|
| 1174 |
+
{
|
| 1175 |
+
"epoch": 0.44533333333333336,
|
| 1176 |
+
"grad_norm": 6.842972278594971,
|
| 1177 |
+
"learning_rate": 5.870786516853933e-06,
|
| 1178 |
+
"loss": 0.4542590081691742,
|
| 1179 |
+
"step": 167
|
| 1180 |
+
},
|
| 1181 |
+
{
|
| 1182 |
+
"epoch": 0.448,
|
| 1183 |
+
"grad_norm": 7.651519775390625,
|
| 1184 |
+
"learning_rate": 5.842696629213483e-06,
|
| 1185 |
+
"loss": 0.4966958463191986,
|
| 1186 |
+
"step": 168
|
| 1187 |
+
},
|
| 1188 |
+
{
|
| 1189 |
+
"epoch": 0.45066666666666666,
|
| 1190 |
+
"grad_norm": 11.124903678894043,
|
| 1191 |
+
"learning_rate": 5.814606741573035e-06,
|
| 1192 |
+
"loss": 0.5635814666748047,
|
| 1193 |
+
"step": 169
|
| 1194 |
+
},
|
| 1195 |
+
{
|
| 1196 |
+
"epoch": 0.4533333333333333,
|
| 1197 |
+
"grad_norm": 7.356116771697998,
|
| 1198 |
+
"learning_rate": 5.786516853932585e-06,
|
| 1199 |
+
"loss": 0.4059095084667206,
|
| 1200 |
+
"step": 170
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"epoch": 0.456,
|
| 1204 |
+
"grad_norm": 8.28013801574707,
|
| 1205 |
+
"learning_rate": 5.758426966292135e-06,
|
| 1206 |
+
"loss": 0.518947422504425,
|
| 1207 |
+
"step": 171
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"epoch": 0.45866666666666667,
|
| 1211 |
+
"grad_norm": 7.578033924102783,
|
| 1212 |
+
"learning_rate": 5.730337078651685e-06,
|
| 1213 |
+
"loss": 0.5317070484161377,
|
| 1214 |
+
"step": 172
|
| 1215 |
+
},
|
| 1216 |
+
{
|
| 1217 |
+
"epoch": 0.4613333333333333,
|
| 1218 |
+
"grad_norm": 7.033680438995361,
|
| 1219 |
+
"learning_rate": 5.702247191011237e-06,
|
| 1220 |
+
"loss": 0.30602124333381653,
|
| 1221 |
+
"step": 173
|
| 1222 |
+
},
|
| 1223 |
+
{
|
| 1224 |
+
"epoch": 0.464,
|
| 1225 |
+
"grad_norm": 8.343293190002441,
|
| 1226 |
+
"learning_rate": 5.6741573033707874e-06,
|
| 1227 |
+
"loss": 0.4346192479133606,
|
| 1228 |
+
"step": 174
|
| 1229 |
+
},
|
| 1230 |
+
{
|
| 1231 |
+
"epoch": 0.4666666666666667,
|
| 1232 |
+
"grad_norm": 8.341903686523438,
|
| 1233 |
+
"learning_rate": 5.646067415730337e-06,
|
| 1234 |
+
"loss": 0.6472276449203491,
|
| 1235 |
+
"step": 175
|
| 1236 |
+
},
|
| 1237 |
+
{
|
| 1238 |
+
"epoch": 0.4693333333333333,
|
| 1239 |
+
"grad_norm": 8.249134063720703,
|
| 1240 |
+
"learning_rate": 5.617977528089889e-06,
|
| 1241 |
+
"loss": 0.5967584848403931,
|
| 1242 |
+
"step": 176
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"epoch": 0.472,
|
| 1246 |
+
"grad_norm": 8.661340713500977,
|
| 1247 |
+
"learning_rate": 5.589887640449439e-06,
|
| 1248 |
+
"loss": 0.5620930194854736,
|
| 1249 |
+
"step": 177
|
| 1250 |
+
},
|
| 1251 |
+
{
|
| 1252 |
+
"epoch": 0.4746666666666667,
|
| 1253 |
+
"grad_norm": 7.002172470092773,
|
| 1254 |
+
"learning_rate": 5.5617977528089895e-06,
|
| 1255 |
+
"loss": 0.4402138888835907,
|
| 1256 |
+
"step": 178
|
| 1257 |
+
},
|
| 1258 |
+
{
|
| 1259 |
+
"epoch": 0.47733333333333333,
|
| 1260 |
+
"grad_norm": 9.390138626098633,
|
| 1261 |
+
"learning_rate": 5.533707865168539e-06,
|
| 1262 |
+
"loss": 0.6461361050605774,
|
| 1263 |
+
"step": 179
|
| 1264 |
+
},
|
| 1265 |
+
{
|
| 1266 |
+
"epoch": 0.48,
|
| 1267 |
+
"grad_norm": 7.292672157287598,
|
| 1268 |
+
"learning_rate": 5.50561797752809e-06,
|
| 1269 |
+
"loss": 0.38033145666122437,
|
| 1270 |
+
"step": 180
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.4826666666666667,
|
| 1274 |
+
"grad_norm": 6.0717573165893555,
|
| 1275 |
+
"learning_rate": 5.477528089887641e-06,
|
| 1276 |
+
"loss": 0.4145087003707886,
|
| 1277 |
+
"step": 181
|
| 1278 |
+
},
|
| 1279 |
+
{
|
| 1280 |
+
"epoch": 0.48533333333333334,
|
| 1281 |
+
"grad_norm": 6.530045032501221,
|
| 1282 |
+
"learning_rate": 5.4494382022471915e-06,
|
| 1283 |
+
"loss": 0.4062524139881134,
|
| 1284 |
+
"step": 182
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"epoch": 0.488,
|
| 1288 |
+
"grad_norm": 7.574875354766846,
|
| 1289 |
+
"learning_rate": 5.421348314606742e-06,
|
| 1290 |
+
"loss": 0.5065489411354065,
|
| 1291 |
+
"step": 183
|
| 1292 |
+
},
|
| 1293 |
+
{
|
| 1294 |
+
"epoch": 0.49066666666666664,
|
| 1295 |
+
"grad_norm": 7.25581693649292,
|
| 1296 |
+
"learning_rate": 5.393258426966292e-06,
|
| 1297 |
+
"loss": 0.4606750011444092,
|
| 1298 |
+
"step": 184
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"epoch": 0.49333333333333335,
|
| 1302 |
+
"grad_norm": 8.634778022766113,
|
| 1303 |
+
"learning_rate": 5.365168539325844e-06,
|
| 1304 |
+
"loss": 0.5162259340286255,
|
| 1305 |
+
"step": 185
|
| 1306 |
+
},
|
| 1307 |
+
{
|
| 1308 |
+
"epoch": 0.496,
|
| 1309 |
+
"grad_norm": 8.666836738586426,
|
| 1310 |
+
"learning_rate": 5.3370786516853935e-06,
|
| 1311 |
+
"loss": 0.4223323464393616,
|
| 1312 |
+
"step": 186
|
| 1313 |
+
},
|
| 1314 |
+
{
|
| 1315 |
+
"epoch": 0.49866666666666665,
|
| 1316 |
+
"grad_norm": 8.6089448928833,
|
| 1317 |
+
"learning_rate": 5.308988764044944e-06,
|
| 1318 |
+
"loss": 0.629448652267456,
|
| 1319 |
+
"step": 187
|
| 1320 |
+
},
|
| 1321 |
+
{
|
| 1322 |
+
"epoch": 0.5013333333333333,
|
| 1323 |
+
"grad_norm": 5.984394550323486,
|
| 1324 |
+
"learning_rate": 5.280898876404494e-06,
|
| 1325 |
+
"loss": 0.2676812708377838,
|
| 1326 |
+
"step": 188
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"epoch": 0.504,
|
| 1330 |
+
"grad_norm": 6.704287052154541,
|
| 1331 |
+
"learning_rate": 5.252808988764046e-06,
|
| 1332 |
+
"loss": 0.5634180307388306,
|
| 1333 |
+
"step": 189
|
| 1334 |
+
},
|
| 1335 |
+
{
|
| 1336 |
+
"epoch": 0.5066666666666667,
|
| 1337 |
+
"grad_norm": 7.9965901374816895,
|
| 1338 |
+
"learning_rate": 5.224719101123596e-06,
|
| 1339 |
+
"loss": 0.47947096824645996,
|
| 1340 |
+
"step": 190
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"epoch": 0.5093333333333333,
|
| 1344 |
+
"grad_norm": 7.089245796203613,
|
| 1345 |
+
"learning_rate": 5.196629213483146e-06,
|
| 1346 |
+
"loss": 0.4353066682815552,
|
| 1347 |
+
"step": 191
|
| 1348 |
+
},
|
| 1349 |
+
{
|
| 1350 |
+
"epoch": 0.512,
|
| 1351 |
+
"grad_norm": 8.312705993652344,
|
| 1352 |
+
"learning_rate": 5.168539325842698e-06,
|
| 1353 |
+
"loss": 0.5847772359848022,
|
| 1354 |
+
"step": 192
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"epoch": 0.5146666666666667,
|
| 1358 |
+
"grad_norm": 7.806972026824951,
|
| 1359 |
+
"learning_rate": 5.140449438202248e-06,
|
| 1360 |
+
"loss": 0.37276801466941833,
|
| 1361 |
+
"step": 193
|
| 1362 |
+
},
|
| 1363 |
+
{
|
| 1364 |
+
"epoch": 0.5173333333333333,
|
| 1365 |
+
"grad_norm": 6.811977863311768,
|
| 1366 |
+
"learning_rate": 5.112359550561798e-06,
|
| 1367 |
+
"loss": 0.3272051513195038,
|
| 1368 |
+
"step": 194
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"epoch": 0.52,
|
| 1372 |
+
"grad_norm": 7.368237018585205,
|
| 1373 |
+
"learning_rate": 5.084269662921348e-06,
|
| 1374 |
+
"loss": 0.4343264698982239,
|
| 1375 |
+
"step": 195
|
| 1376 |
+
},
|
| 1377 |
+
{
|
| 1378 |
+
"epoch": 0.5226666666666666,
|
| 1379 |
+
"grad_norm": 7.007493019104004,
|
| 1380 |
+
"learning_rate": 5.0561797752809e-06,
|
| 1381 |
+
"loss": 0.3390656113624573,
|
| 1382 |
+
"step": 196
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"epoch": 0.5253333333333333,
|
| 1386 |
+
"grad_norm": 7.518604278564453,
|
| 1387 |
+
"learning_rate": 5.02808988764045e-06,
|
| 1388 |
+
"loss": 0.43342354893684387,
|
| 1389 |
+
"step": 197
|
| 1390 |
+
},
|
| 1391 |
+
{
|
| 1392 |
+
"epoch": 0.528,
|
| 1393 |
+
"grad_norm": 7.641407489776611,
|
| 1394 |
+
"learning_rate": 5e-06,
|
| 1395 |
+
"loss": 0.43858301639556885,
|
| 1396 |
+
"step": 198
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.5306666666666666,
|
| 1400 |
+
"grad_norm": 7.79625129699707,
|
| 1401 |
+
"learning_rate": 4.971910112359551e-06,
|
| 1402 |
+
"loss": 0.47811320424079895,
|
| 1403 |
+
"step": 199
|
| 1404 |
+
},
|
| 1405 |
+
{
|
| 1406 |
+
"epoch": 0.5333333333333333,
|
| 1407 |
+
"grad_norm": 8.942146301269531,
|
| 1408 |
+
"learning_rate": 4.943820224719101e-06,
|
| 1409 |
+
"loss": 0.3441157341003418,
|
| 1410 |
+
"step": 200
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"epoch": 0.536,
|
| 1414 |
+
"grad_norm": 7.035697937011719,
|
| 1415 |
+
"learning_rate": 4.915730337078652e-06,
|
| 1416 |
+
"loss": 0.4286671280860901,
|
| 1417 |
+
"step": 201
|
| 1418 |
+
},
|
| 1419 |
+
{
|
| 1420 |
+
"epoch": 0.5386666666666666,
|
| 1421 |
+
"grad_norm": 6.969203472137451,
|
| 1422 |
+
"learning_rate": 4.8876404494382024e-06,
|
| 1423 |
+
"loss": 0.44640007615089417,
|
| 1424 |
+
"step": 202
|
| 1425 |
+
},
|
| 1426 |
+
{
|
| 1427 |
+
"epoch": 0.5413333333333333,
|
| 1428 |
+
"grad_norm": 7.742647647857666,
|
| 1429 |
+
"learning_rate": 4.859550561797753e-06,
|
| 1430 |
+
"loss": 0.49008092284202576,
|
| 1431 |
+
"step": 203
|
| 1432 |
+
},
|
| 1433 |
+
{
|
| 1434 |
+
"epoch": 0.544,
|
| 1435 |
+
"grad_norm": 6.363829612731934,
|
| 1436 |
+
"learning_rate": 4.831460674157304e-06,
|
| 1437 |
+
"loss": 0.3580334186553955,
|
| 1438 |
+
"step": 204
|
| 1439 |
+
},
|
| 1440 |
+
{
|
| 1441 |
+
"epoch": 0.5466666666666666,
|
| 1442 |
+
"grad_norm": 7.653749465942383,
|
| 1443 |
+
"learning_rate": 4.803370786516855e-06,
|
| 1444 |
+
"loss": 0.4364061653614044,
|
| 1445 |
+
"step": 205
|
| 1446 |
+
},
|
| 1447 |
+
{
|
| 1448 |
+
"epoch": 0.5493333333333333,
|
| 1449 |
+
"grad_norm": 6.934767723083496,
|
| 1450 |
+
"learning_rate": 4.775280898876405e-06,
|
| 1451 |
+
"loss": 0.4291566014289856,
|
| 1452 |
+
"step": 206
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 0.552,
|
| 1456 |
+
"grad_norm": 6.61385440826416,
|
| 1457 |
+
"learning_rate": 4.747191011235955e-06,
|
| 1458 |
+
"loss": 0.4326613247394562,
|
| 1459 |
+
"step": 207
|
| 1460 |
+
},
|
| 1461 |
+
{
|
| 1462 |
+
"epoch": 0.5546666666666666,
|
| 1463 |
+
"grad_norm": 7.917158126831055,
|
| 1464 |
+
"learning_rate": 4.719101123595506e-06,
|
| 1465 |
+
"loss": 0.5485944151878357,
|
| 1466 |
+
"step": 208
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"epoch": 0.5573333333333333,
|
| 1470 |
+
"grad_norm": 8.438665390014648,
|
| 1471 |
+
"learning_rate": 4.691011235955057e-06,
|
| 1472 |
+
"loss": 0.5803965926170349,
|
| 1473 |
+
"step": 209
|
| 1474 |
+
},
|
| 1475 |
+
{
|
| 1476 |
+
"epoch": 0.56,
|
| 1477 |
+
"grad_norm": 6.151750087738037,
|
| 1478 |
+
"learning_rate": 4.6629213483146065e-06,
|
| 1479 |
+
"loss": 0.37040451169013977,
|
| 1480 |
+
"step": 210
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"epoch": 0.5626666666666666,
|
| 1484 |
+
"grad_norm": 6.535275459289551,
|
| 1485 |
+
"learning_rate": 4.634831460674158e-06,
|
| 1486 |
+
"loss": 0.32661375403404236,
|
| 1487 |
+
"step": 211
|
| 1488 |
+
},
|
| 1489 |
+
{
|
| 1490 |
+
"epoch": 0.5653333333333334,
|
| 1491 |
+
"grad_norm": 8.830937385559082,
|
| 1492 |
+
"learning_rate": 4.606741573033709e-06,
|
| 1493 |
+
"loss": 0.3140193223953247,
|
| 1494 |
+
"step": 212
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"epoch": 0.568,
|
| 1498 |
+
"grad_norm": 7.790265083312988,
|
| 1499 |
+
"learning_rate": 4.578651685393259e-06,
|
| 1500 |
+
"loss": 0.5278554558753967,
|
| 1501 |
+
"step": 213
|
| 1502 |
+
},
|
| 1503 |
+
{
|
| 1504 |
+
"epoch": 0.5706666666666667,
|
| 1505 |
+
"grad_norm": 7.857224941253662,
|
| 1506 |
+
"learning_rate": 4.550561797752809e-06,
|
| 1507 |
+
"loss": 0.5425177812576294,
|
| 1508 |
+
"step": 214
|
| 1509 |
+
},
|
| 1510 |
+
{
|
| 1511 |
+
"epoch": 0.5733333333333334,
|
| 1512 |
+
"grad_norm": 6.549708843231201,
|
| 1513 |
+
"learning_rate": 4.52247191011236e-06,
|
| 1514 |
+
"loss": 0.44749173521995544,
|
| 1515 |
+
"step": 215
|
| 1516 |
+
},
|
| 1517 |
+
{
|
| 1518 |
+
"epoch": 0.576,
|
| 1519 |
+
"grad_norm": 6.522167205810547,
|
| 1520 |
+
"learning_rate": 4.494382022471911e-06,
|
| 1521 |
+
"loss": 0.368047297000885,
|
| 1522 |
+
"step": 216
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 0.5786666666666667,
|
| 1526 |
+
"grad_norm": 7.35114860534668,
|
| 1527 |
+
"learning_rate": 4.466292134831461e-06,
|
| 1528 |
+
"loss": 0.36119890213012695,
|
| 1529 |
+
"step": 217
|
| 1530 |
+
},
|
| 1531 |
+
{
|
| 1532 |
+
"epoch": 0.5813333333333334,
|
| 1533 |
+
"grad_norm": 7.489544868469238,
|
| 1534 |
+
"learning_rate": 4.438202247191011e-06,
|
| 1535 |
+
"loss": 0.5702108144760132,
|
| 1536 |
+
"step": 218
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"epoch": 0.584,
|
| 1540 |
+
"grad_norm": 6.824221134185791,
|
| 1541 |
+
"learning_rate": 4.410112359550562e-06,
|
| 1542 |
+
"loss": 0.3048279583454132,
|
| 1543 |
+
"step": 219
|
| 1544 |
+
},
|
| 1545 |
+
{
|
| 1546 |
+
"epoch": 0.5866666666666667,
|
| 1547 |
+
"grad_norm": 7.150308609008789,
|
| 1548 |
+
"learning_rate": 4.382022471910113e-06,
|
| 1549 |
+
"loss": 0.4372503161430359,
|
| 1550 |
+
"step": 220
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"epoch": 0.5893333333333334,
|
| 1554 |
+
"grad_norm": 8.382064819335938,
|
| 1555 |
+
"learning_rate": 4.3539325842696635e-06,
|
| 1556 |
+
"loss": 0.29334011673927307,
|
| 1557 |
+
"step": 221
|
| 1558 |
+
},
|
| 1559 |
+
{
|
| 1560 |
+
"epoch": 0.592,
|
| 1561 |
+
"grad_norm": 7.703595161437988,
|
| 1562 |
+
"learning_rate": 4.325842696629214e-06,
|
| 1563 |
+
"loss": 0.34625446796417236,
|
| 1564 |
+
"step": 222
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"epoch": 0.5946666666666667,
|
| 1568 |
+
"grad_norm": 6.354607582092285,
|
| 1569 |
+
"learning_rate": 4.297752808988764e-06,
|
| 1570 |
+
"loss": 0.33396071195602417,
|
| 1571 |
+
"step": 223
|
| 1572 |
+
},
|
| 1573 |
+
{
|
| 1574 |
+
"epoch": 0.5973333333333334,
|
| 1575 |
+
"grad_norm": 6.98252010345459,
|
| 1576 |
+
"learning_rate": 4.269662921348315e-06,
|
| 1577 |
+
"loss": 0.3120238482952118,
|
| 1578 |
+
"step": 224
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"epoch": 0.6,
|
| 1582 |
+
"grad_norm": 5.525021076202393,
|
| 1583 |
+
"learning_rate": 4.2415730337078655e-06,
|
| 1584 |
+
"loss": 0.3139294683933258,
|
| 1585 |
+
"step": 225
|
| 1586 |
+
},
|
| 1587 |
+
{
|
| 1588 |
+
"epoch": 0.6026666666666667,
|
| 1589 |
+
"grad_norm": 4.891341686248779,
|
| 1590 |
+
"learning_rate": 4.213483146067416e-06,
|
| 1591 |
+
"loss": 0.2521789073944092,
|
| 1592 |
+
"step": 226
|
| 1593 |
+
},
|
| 1594 |
+
{
|
| 1595 |
+
"epoch": 0.6053333333333333,
|
| 1596 |
+
"grad_norm": 7.284240245819092,
|
| 1597 |
+
"learning_rate": 4.185393258426967e-06,
|
| 1598 |
+
"loss": 0.3743554651737213,
|
| 1599 |
+
"step": 227
|
| 1600 |
+
},
|
| 1601 |
+
{
|
| 1602 |
+
"epoch": 0.608,
|
| 1603 |
+
"grad_norm": 9.904535293579102,
|
| 1604 |
+
"learning_rate": 4.157303370786518e-06,
|
| 1605 |
+
"loss": 0.5486538410186768,
|
| 1606 |
+
"step": 228
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"epoch": 0.6106666666666667,
|
| 1610 |
+
"grad_norm": 6.17363977432251,
|
| 1611 |
+
"learning_rate": 4.1292134831460675e-06,
|
| 1612 |
+
"loss": 0.3699968457221985,
|
| 1613 |
+
"step": 229
|
| 1614 |
+
},
|
| 1615 |
+
{
|
| 1616 |
+
"epoch": 0.6133333333333333,
|
| 1617 |
+
"grad_norm": 6.702099323272705,
|
| 1618 |
+
"learning_rate": 4.101123595505618e-06,
|
| 1619 |
+
"loss": 0.2611464262008667,
|
| 1620 |
+
"step": 230
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"epoch": 0.616,
|
| 1624 |
+
"grad_norm": 7.3795599937438965,
|
| 1625 |
+
"learning_rate": 4.073033707865169e-06,
|
| 1626 |
+
"loss": 0.39635229110717773,
|
| 1627 |
+
"step": 231
|
| 1628 |
+
},
|
| 1629 |
+
{
|
| 1630 |
+
"epoch": 0.6186666666666667,
|
| 1631 |
+
"grad_norm": 8.201810836791992,
|
| 1632 |
+
"learning_rate": 4.04494382022472e-06,
|
| 1633 |
+
"loss": 0.4532935917377472,
|
| 1634 |
+
"step": 232
|
| 1635 |
+
},
|
| 1636 |
+
{
|
| 1637 |
+
"epoch": 0.6213333333333333,
|
| 1638 |
+
"grad_norm": 7.1661248207092285,
|
| 1639 |
+
"learning_rate": 4.0168539325842696e-06,
|
| 1640 |
+
"loss": 0.358923077583313,
|
| 1641 |
+
"step": 233
|
| 1642 |
+
},
|
| 1643 |
+
{
|
| 1644 |
+
"epoch": 0.624,
|
| 1645 |
+
"grad_norm": 6.8024725914001465,
|
| 1646 |
+
"learning_rate": 3.98876404494382e-06,
|
| 1647 |
+
"loss": 0.38464638590812683,
|
| 1648 |
+
"step": 234
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 0.6266666666666667,
|
| 1652 |
+
"grad_norm": 5.0510711669921875,
|
| 1653 |
+
"learning_rate": 3.960674157303371e-06,
|
| 1654 |
+
"loss": 0.21395164728164673,
|
| 1655 |
+
"step": 235
|
| 1656 |
+
},
|
| 1657 |
+
{
|
| 1658 |
+
"epoch": 0.6293333333333333,
|
| 1659 |
+
"grad_norm": 6.110253810882568,
|
| 1660 |
+
"learning_rate": 3.932584269662922e-06,
|
| 1661 |
+
"loss": 0.3980182111263275,
|
| 1662 |
+
"step": 236
|
| 1663 |
+
},
|
| 1664 |
+
{
|
| 1665 |
+
"epoch": 0.632,
|
| 1666 |
+
"grad_norm": 7.364806175231934,
|
| 1667 |
+
"learning_rate": 3.9044943820224724e-06,
|
| 1668 |
+
"loss": 0.5039497017860413,
|
| 1669 |
+
"step": 237
|
| 1670 |
+
},
|
| 1671 |
+
{
|
| 1672 |
+
"epoch": 0.6346666666666667,
|
| 1673 |
+
"grad_norm": 8.069096565246582,
|
| 1674 |
+
"learning_rate": 3.876404494382023e-06,
|
| 1675 |
+
"loss": 0.36771202087402344,
|
| 1676 |
+
"step": 238
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"epoch": 0.6373333333333333,
|
| 1680 |
+
"grad_norm": 4.33476448059082,
|
| 1681 |
+
"learning_rate": 3.848314606741573e-06,
|
| 1682 |
+
"loss": 0.23473984003067017,
|
| 1683 |
+
"step": 239
|
| 1684 |
+
},
|
| 1685 |
+
{
|
| 1686 |
+
"epoch": 0.64,
|
| 1687 |
+
"grad_norm": 6.852262496948242,
|
| 1688 |
+
"learning_rate": 3.820224719101124e-06,
|
| 1689 |
+
"loss": 0.34653759002685547,
|
| 1690 |
+
"step": 240
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"epoch": 0.6426666666666667,
|
| 1694 |
+
"grad_norm": 6.360881805419922,
|
| 1695 |
+
"learning_rate": 3.7921348314606744e-06,
|
| 1696 |
+
"loss": 0.27537062764167786,
|
| 1697 |
+
"step": 241
|
| 1698 |
+
},
|
| 1699 |
+
{
|
| 1700 |
+
"epoch": 0.6453333333333333,
|
| 1701 |
+
"grad_norm": 6.925692081451416,
|
| 1702 |
+
"learning_rate": 3.7640449438202247e-06,
|
| 1703 |
+
"loss": 0.4263901114463806,
|
| 1704 |
+
"step": 242
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"epoch": 0.648,
|
| 1708 |
+
"grad_norm": 7.0022196769714355,
|
| 1709 |
+
"learning_rate": 3.735955056179776e-06,
|
| 1710 |
+
"loss": 0.30541080236434937,
|
| 1711 |
+
"step": 243
|
| 1712 |
+
},
|
| 1713 |
+
{
|
| 1714 |
+
"epoch": 0.6506666666666666,
|
| 1715 |
+
"grad_norm": 6.5223236083984375,
|
| 1716 |
+
"learning_rate": 3.707865168539326e-06,
|
| 1717 |
+
"loss": 0.34876197576522827,
|
| 1718 |
+
"step": 244
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"epoch": 0.6533333333333333,
|
| 1722 |
+
"grad_norm": 6.553436279296875,
|
| 1723 |
+
"learning_rate": 3.679775280898877e-06,
|
| 1724 |
+
"loss": 0.3753078281879425,
|
| 1725 |
+
"step": 245
|
| 1726 |
+
},
|
| 1727 |
+
{
|
| 1728 |
+
"epoch": 0.656,
|
| 1729 |
+
"grad_norm": 9.76258373260498,
|
| 1730 |
+
"learning_rate": 3.651685393258427e-06,
|
| 1731 |
+
"loss": 0.32532453536987305,
|
| 1732 |
+
"step": 246
|
| 1733 |
+
},
|
| 1734 |
+
{
|
| 1735 |
+
"epoch": 0.6586666666666666,
|
| 1736 |
+
"grad_norm": 8.447005271911621,
|
| 1737 |
+
"learning_rate": 3.623595505617978e-06,
|
| 1738 |
+
"loss": 0.5529066324234009,
|
| 1739 |
+
"step": 247
|
| 1740 |
+
},
|
| 1741 |
+
{
|
| 1742 |
+
"epoch": 0.6613333333333333,
|
| 1743 |
+
"grad_norm": 6.490026473999023,
|
| 1744 |
+
"learning_rate": 3.595505617977528e-06,
|
| 1745 |
+
"loss": 0.30645066499710083,
|
| 1746 |
+
"step": 248
|
| 1747 |
+
},
|
| 1748 |
+
{
|
| 1749 |
+
"epoch": 0.664,
|
| 1750 |
+
"grad_norm": 6.485689640045166,
|
| 1751 |
+
"learning_rate": 3.567415730337079e-06,
|
| 1752 |
+
"loss": 0.32608768343925476,
|
| 1753 |
+
"step": 249
|
| 1754 |
+
},
|
| 1755 |
+
{
|
| 1756 |
+
"epoch": 0.6666666666666666,
|
| 1757 |
+
"grad_norm": 6.6680426597595215,
|
| 1758 |
+
"learning_rate": 3.539325842696629e-06,
|
| 1759 |
+
"loss": 0.35448578000068665,
|
| 1760 |
+
"step": 250
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"epoch": 0.6693333333333333,
|
| 1764 |
+
"grad_norm": 7.055078983306885,
|
| 1765 |
+
"learning_rate": 3.5112359550561803e-06,
|
| 1766 |
+
"loss": 0.4008396863937378,
|
| 1767 |
+
"step": 251
|
| 1768 |
+
},
|
| 1769 |
+
{
|
| 1770 |
+
"epoch": 0.672,
|
| 1771 |
+
"grad_norm": 7.118072032928467,
|
| 1772 |
+
"learning_rate": 3.4831460674157306e-06,
|
| 1773 |
+
"loss": 0.3893740773200989,
|
| 1774 |
+
"step": 252
|
| 1775 |
+
},
|
| 1776 |
+
{
|
| 1777 |
+
"epoch": 0.6746666666666666,
|
| 1778 |
+
"grad_norm": 7.172328948974609,
|
| 1779 |
+
"learning_rate": 3.4550561797752813e-06,
|
| 1780 |
+
"loss": 0.4438810646533966,
|
| 1781 |
+
"step": 253
|
| 1782 |
+
},
|
| 1783 |
+
{
|
| 1784 |
+
"epoch": 0.6773333333333333,
|
| 1785 |
+
"grad_norm": 5.576446056365967,
|
| 1786 |
+
"learning_rate": 3.4269662921348316e-06,
|
| 1787 |
+
"loss": 0.2729656398296356,
|
| 1788 |
+
"step": 254
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"epoch": 0.68,
|
| 1792 |
+
"grad_norm": 7.847158432006836,
|
| 1793 |
+
"learning_rate": 3.3988764044943824e-06,
|
| 1794 |
+
"loss": 0.3118215501308441,
|
| 1795 |
+
"step": 255
|
| 1796 |
+
},
|
| 1797 |
+
{
|
| 1798 |
+
"epoch": 0.6826666666666666,
|
| 1799 |
+
"grad_norm": 6.1207804679870605,
|
| 1800 |
+
"learning_rate": 3.3707865168539327e-06,
|
| 1801 |
+
"loss": 0.3329954147338867,
|
| 1802 |
+
"step": 256
|
| 1803 |
+
},
|
| 1804 |
+
{
|
| 1805 |
+
"epoch": 0.6853333333333333,
|
| 1806 |
+
"grad_norm": 5.877113342285156,
|
| 1807 |
+
"learning_rate": 3.3426966292134834e-06,
|
| 1808 |
+
"loss": 0.33538341522216797,
|
| 1809 |
+
"step": 257
|
| 1810 |
+
},
|
| 1811 |
+
{
|
| 1812 |
+
"epoch": 0.688,
|
| 1813 |
+
"grad_norm": 7.712839603424072,
|
| 1814 |
+
"learning_rate": 3.3146067415730337e-06,
|
| 1815 |
+
"loss": 0.4157417118549347,
|
| 1816 |
+
"step": 258
|
| 1817 |
+
},
|
| 1818 |
+
{
|
| 1819 |
+
"epoch": 0.6906666666666667,
|
| 1820 |
+
"grad_norm": 6.441515922546387,
|
| 1821 |
+
"learning_rate": 3.286516853932585e-06,
|
| 1822 |
+
"loss": 0.44288039207458496,
|
| 1823 |
+
"step": 259
|
| 1824 |
+
},
|
| 1825 |
+
{
|
| 1826 |
+
"epoch": 0.6933333333333334,
|
| 1827 |
+
"grad_norm": 9.062713623046875,
|
| 1828 |
+
"learning_rate": 3.258426966292135e-06,
|
| 1829 |
+
"loss": 0.6417102217674255,
|
| 1830 |
+
"step": 260
|
| 1831 |
+
},
|
| 1832 |
+
{
|
| 1833 |
+
"epoch": 0.696,
|
| 1834 |
+
"grad_norm": 7.795943260192871,
|
| 1835 |
+
"learning_rate": 3.230337078651686e-06,
|
| 1836 |
+
"loss": 0.41141343116760254,
|
| 1837 |
+
"step": 261
|
| 1838 |
+
},
|
| 1839 |
+
{
|
| 1840 |
+
"epoch": 0.6986666666666667,
|
| 1841 |
+
"grad_norm": 7.215455532073975,
|
| 1842 |
+
"learning_rate": 3.202247191011236e-06,
|
| 1843 |
+
"loss": 0.44869333505630493,
|
| 1844 |
+
"step": 262
|
| 1845 |
+
},
|
| 1846 |
+
{
|
| 1847 |
+
"epoch": 0.7013333333333334,
|
| 1848 |
+
"grad_norm": 5.666286468505859,
|
| 1849 |
+
"learning_rate": 3.174157303370787e-06,
|
| 1850 |
+
"loss": 0.2780022621154785,
|
| 1851 |
+
"step": 263
|
| 1852 |
+
},
|
| 1853 |
+
{
|
| 1854 |
+
"epoch": 0.704,
|
| 1855 |
+
"grad_norm": 6.701321125030518,
|
| 1856 |
+
"learning_rate": 3.146067415730337e-06,
|
| 1857 |
+
"loss": 0.3456583023071289,
|
| 1858 |
+
"step": 264
|
| 1859 |
+
},
|
| 1860 |
+
{
|
| 1861 |
+
"epoch": 0.7066666666666667,
|
| 1862 |
+
"grad_norm": 9.053104400634766,
|
| 1863 |
+
"learning_rate": 3.117977528089888e-06,
|
| 1864 |
+
"loss": 0.4702976942062378,
|
| 1865 |
+
"step": 265
|
| 1866 |
+
},
|
| 1867 |
+
{
|
| 1868 |
+
"epoch": 0.7093333333333334,
|
| 1869 |
+
"grad_norm": 7.409250259399414,
|
| 1870 |
+
"learning_rate": 3.089887640449438e-06,
|
| 1871 |
+
"loss": 0.4798058271408081,
|
| 1872 |
+
"step": 266
|
| 1873 |
+
},
|
| 1874 |
+
{
|
| 1875 |
+
"epoch": 0.712,
|
| 1876 |
+
"grad_norm": 7.32711124420166,
|
| 1877 |
+
"learning_rate": 3.0617977528089893e-06,
|
| 1878 |
+
"loss": 0.32306915521621704,
|
| 1879 |
+
"step": 267
|
| 1880 |
+
},
|
| 1881 |
+
{
|
| 1882 |
+
"epoch": 0.7146666666666667,
|
| 1883 |
+
"grad_norm": 9.731579780578613,
|
| 1884 |
+
"learning_rate": 3.03370786516854e-06,
|
| 1885 |
+
"loss": 0.3614697754383087,
|
| 1886 |
+
"step": 268
|
| 1887 |
+
},
|
| 1888 |
+
{
|
| 1889 |
+
"epoch": 0.7173333333333334,
|
| 1890 |
+
"grad_norm": 6.786557674407959,
|
| 1891 |
+
"learning_rate": 3.0056179775280903e-06,
|
| 1892 |
+
"loss": 0.4311829209327698,
|
| 1893 |
+
"step": 269
|
| 1894 |
+
},
|
| 1895 |
+
{
|
| 1896 |
+
"epoch": 0.72,
|
| 1897 |
+
"grad_norm": 8.682437896728516,
|
| 1898 |
+
"learning_rate": 2.9775280898876406e-06,
|
| 1899 |
+
"loss": 0.3160410225391388,
|
| 1900 |
+
"step": 270
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"epoch": 0.7226666666666667,
|
| 1904 |
+
"grad_norm": 4.601934909820557,
|
| 1905 |
+
"learning_rate": 2.9494382022471913e-06,
|
| 1906 |
+
"loss": 0.17032259702682495,
|
| 1907 |
+
"step": 271
|
| 1908 |
+
},
|
| 1909 |
+
{
|
| 1910 |
+
"epoch": 0.7253333333333334,
|
| 1911 |
+
"grad_norm": 7.261072635650635,
|
| 1912 |
+
"learning_rate": 2.9213483146067416e-06,
|
| 1913 |
+
"loss": 0.30816444754600525,
|
| 1914 |
+
"step": 272
|
| 1915 |
+
},
|
| 1916 |
+
{
|
| 1917 |
+
"epoch": 0.728,
|
| 1918 |
+
"grad_norm": 6.406516075134277,
|
| 1919 |
+
"learning_rate": 2.8932584269662923e-06,
|
| 1920 |
+
"loss": 0.27893590927124023,
|
| 1921 |
+
"step": 273
|
| 1922 |
+
},
|
| 1923 |
+
{
|
| 1924 |
+
"epoch": 0.7306666666666667,
|
| 1925 |
+
"grad_norm": 6.241613388061523,
|
| 1926 |
+
"learning_rate": 2.8651685393258426e-06,
|
| 1927 |
+
"loss": 0.3557400107383728,
|
| 1928 |
+
"step": 274
|
| 1929 |
+
},
|
| 1930 |
+
{
|
| 1931 |
+
"epoch": 0.7333333333333333,
|
| 1932 |
+
"grad_norm": 7.070950031280518,
|
| 1933 |
+
"learning_rate": 2.8370786516853937e-06,
|
| 1934 |
+
"loss": 0.4094182848930359,
|
| 1935 |
+
"step": 275
|
| 1936 |
+
},
|
| 1937 |
+
{
|
| 1938 |
+
"epoch": 0.736,
|
| 1939 |
+
"grad_norm": 8.13983154296875,
|
| 1940 |
+
"learning_rate": 2.8089887640449444e-06,
|
| 1941 |
+
"loss": 0.42501240968704224,
|
| 1942 |
+
"step": 276
|
| 1943 |
+
},
|
| 1944 |
+
{
|
| 1945 |
+
"epoch": 0.7386666666666667,
|
| 1946 |
+
"grad_norm": 7.314934253692627,
|
| 1947 |
+
"learning_rate": 2.7808988764044947e-06,
|
| 1948 |
+
"loss": 0.42539694905281067,
|
| 1949 |
+
"step": 277
|
| 1950 |
+
},
|
| 1951 |
+
{
|
| 1952 |
+
"epoch": 0.7413333333333333,
|
| 1953 |
+
"grad_norm": 6.037852764129639,
|
| 1954 |
+
"learning_rate": 2.752808988764045e-06,
|
| 1955 |
+
"loss": 0.3220835328102112,
|
| 1956 |
+
"step": 278
|
| 1957 |
+
},
|
| 1958 |
+
{
|
| 1959 |
+
"epoch": 0.744,
|
| 1960 |
+
"grad_norm": 7.041765213012695,
|
| 1961 |
+
"learning_rate": 2.7247191011235957e-06,
|
| 1962 |
+
"loss": 0.46418872475624084,
|
| 1963 |
+
"step": 279
|
| 1964 |
+
},
|
| 1965 |
+
{
|
| 1966 |
+
"epoch": 0.7466666666666667,
|
| 1967 |
+
"grad_norm": 8.76941967010498,
|
| 1968 |
+
"learning_rate": 2.696629213483146e-06,
|
| 1969 |
+
"loss": 0.4124784469604492,
|
| 1970 |
+
"step": 280
|
| 1971 |
+
},
|
| 1972 |
+
{
|
| 1973 |
+
"epoch": 0.7493333333333333,
|
| 1974 |
+
"grad_norm": 6.041760444641113,
|
| 1975 |
+
"learning_rate": 2.6685393258426968e-06,
|
| 1976 |
+
"loss": 0.32488498091697693,
|
| 1977 |
+
"step": 281
|
| 1978 |
+
},
|
| 1979 |
+
{
|
| 1980 |
+
"epoch": 0.752,
|
| 1981 |
+
"grad_norm": 8.5313720703125,
|
| 1982 |
+
"learning_rate": 2.640449438202247e-06,
|
| 1983 |
+
"loss": 0.30785104632377625,
|
| 1984 |
+
"step": 282
|
| 1985 |
+
},
|
| 1986 |
+
{
|
| 1987 |
+
"epoch": 0.7546666666666667,
|
| 1988 |
+
"grad_norm": 7.826227188110352,
|
| 1989 |
+
"learning_rate": 2.612359550561798e-06,
|
| 1990 |
+
"loss": 0.4061542749404907,
|
| 1991 |
+
"step": 283
|
| 1992 |
+
},
|
| 1993 |
+
{
|
| 1994 |
+
"epoch": 0.7573333333333333,
|
| 1995 |
+
"grad_norm": 8.48981761932373,
|
| 1996 |
+
"learning_rate": 2.584269662921349e-06,
|
| 1997 |
+
"loss": 0.3377722501754761,
|
| 1998 |
+
"step": 284
|
| 1999 |
+
},
|
| 2000 |
+
{
|
| 2001 |
+
"epoch": 0.76,
|
| 2002 |
+
"grad_norm": 5.48834228515625,
|
| 2003 |
+
"learning_rate": 2.556179775280899e-06,
|
| 2004 |
+
"loss": 0.22824794054031372,
|
| 2005 |
+
"step": 285
|
| 2006 |
+
},
|
| 2007 |
+
{
|
| 2008 |
+
"epoch": 0.7626666666666667,
|
| 2009 |
+
"grad_norm": 6.430175304412842,
|
| 2010 |
+
"learning_rate": 2.52808988764045e-06,
|
| 2011 |
+
"loss": 0.2781532406806946,
|
| 2012 |
+
"step": 286
|
| 2013 |
+
},
|
| 2014 |
+
{
|
| 2015 |
+
"epoch": 0.7653333333333333,
|
| 2016 |
+
"grad_norm": 8.143238067626953,
|
| 2017 |
+
"learning_rate": 2.5e-06,
|
| 2018 |
+
"loss": 0.3637338876724243,
|
| 2019 |
+
"step": 287
|
| 2020 |
+
},
|
| 2021 |
+
{
|
| 2022 |
+
"epoch": 0.768,
|
| 2023 |
+
"grad_norm": 7.2951154708862305,
|
| 2024 |
+
"learning_rate": 2.4719101123595505e-06,
|
| 2025 |
+
"loss": 0.36818504333496094,
|
| 2026 |
+
"step": 288
|
| 2027 |
+
},
|
| 2028 |
+
{
|
| 2029 |
+
"epoch": 0.7706666666666667,
|
| 2030 |
+
"grad_norm": 7.11727237701416,
|
| 2031 |
+
"learning_rate": 2.4438202247191012e-06,
|
| 2032 |
+
"loss": 0.34022462368011475,
|
| 2033 |
+
"step": 289
|
| 2034 |
+
},
|
| 2035 |
+
{
|
| 2036 |
+
"epoch": 0.7733333333333333,
|
| 2037 |
+
"grad_norm": 7.5303955078125,
|
| 2038 |
+
"learning_rate": 2.415730337078652e-06,
|
| 2039 |
+
"loss": 0.4012119472026825,
|
| 2040 |
+
"step": 290
|
| 2041 |
+
},
|
| 2042 |
+
{
|
| 2043 |
+
"epoch": 0.776,
|
| 2044 |
+
"grad_norm": 6.658500671386719,
|
| 2045 |
+
"learning_rate": 2.3876404494382026e-06,
|
| 2046 |
+
"loss": 0.3723710775375366,
|
| 2047 |
+
"step": 291
|
| 2048 |
+
},
|
| 2049 |
+
{
|
| 2050 |
+
"epoch": 0.7786666666666666,
|
| 2051 |
+
"grad_norm": 7.6937737464904785,
|
| 2052 |
+
"learning_rate": 2.359550561797753e-06,
|
| 2053 |
+
"loss": 0.4651927947998047,
|
| 2054 |
+
"step": 292
|
| 2055 |
+
},
|
| 2056 |
+
{
|
| 2057 |
+
"epoch": 0.7813333333333333,
|
| 2058 |
+
"grad_norm": 5.906700134277344,
|
| 2059 |
+
"learning_rate": 2.3314606741573032e-06,
|
| 2060 |
+
"loss": 0.35742640495300293,
|
| 2061 |
+
"step": 293
|
| 2062 |
+
},
|
| 2063 |
+
{
|
| 2064 |
+
"epoch": 0.784,
|
| 2065 |
+
"grad_norm": 6.305626392364502,
|
| 2066 |
+
"learning_rate": 2.3033707865168544e-06,
|
| 2067 |
+
"loss": 0.2771025598049164,
|
| 2068 |
+
"step": 294
|
| 2069 |
+
},
|
| 2070 |
+
{
|
| 2071 |
+
"epoch": 0.7866666666666666,
|
| 2072 |
+
"grad_norm": 9.299761772155762,
|
| 2073 |
+
"learning_rate": 2.2752808988764047e-06,
|
| 2074 |
+
"loss": 0.4273807406425476,
|
| 2075 |
+
"step": 295
|
| 2076 |
+
},
|
| 2077 |
+
{
|
| 2078 |
+
"epoch": 0.7893333333333333,
|
| 2079 |
+
"grad_norm": 4.607690334320068,
|
| 2080 |
+
"learning_rate": 2.2471910112359554e-06,
|
| 2081 |
+
"loss": 0.221043661236763,
|
| 2082 |
+
"step": 296
|
| 2083 |
+
},
|
| 2084 |
+
{
|
| 2085 |
+
"epoch": 0.792,
|
| 2086 |
+
"grad_norm": 6.276590824127197,
|
| 2087 |
+
"learning_rate": 2.2191011235955057e-06,
|
| 2088 |
+
"loss": 0.27058467268943787,
|
| 2089 |
+
"step": 297
|
| 2090 |
+
},
|
| 2091 |
+
{
|
| 2092 |
+
"epoch": 0.7946666666666666,
|
| 2093 |
+
"grad_norm": 6.403497695922852,
|
| 2094 |
+
"learning_rate": 2.1910112359550564e-06,
|
| 2095 |
+
"loss": 0.4386785924434662,
|
| 2096 |
+
"step": 298
|
| 2097 |
+
},
|
| 2098 |
+
{
|
| 2099 |
+
"epoch": 0.7973333333333333,
|
| 2100 |
+
"grad_norm": 8.112289428710938,
|
| 2101 |
+
"learning_rate": 2.162921348314607e-06,
|
| 2102 |
+
"loss": 0.4168224632740021,
|
| 2103 |
+
"step": 299
|
| 2104 |
+
},
|
| 2105 |
+
{
|
| 2106 |
+
"epoch": 0.8,
|
| 2107 |
+
"grad_norm": 5.631268501281738,
|
| 2108 |
+
"learning_rate": 2.1348314606741574e-06,
|
| 2109 |
+
"loss": 0.24073860049247742,
|
| 2110 |
+
"step": 300
|
| 2111 |
+
},
|
| 2112 |
+
{
|
| 2113 |
+
"epoch": 0.8026666666666666,
|
| 2114 |
+
"grad_norm": 7.084998607635498,
|
| 2115 |
+
"learning_rate": 2.106741573033708e-06,
|
| 2116 |
+
"loss": 0.4494616985321045,
|
| 2117 |
+
"step": 301
|
| 2118 |
+
},
|
| 2119 |
+
{
|
| 2120 |
+
"epoch": 0.8053333333333333,
|
| 2121 |
+
"grad_norm": 5.420830249786377,
|
| 2122 |
+
"learning_rate": 2.078651685393259e-06,
|
| 2123 |
+
"loss": 0.3141236901283264,
|
| 2124 |
+
"step": 302
|
| 2125 |
+
},
|
| 2126 |
+
{
|
| 2127 |
+
"epoch": 0.808,
|
| 2128 |
+
"grad_norm": 7.63961124420166,
|
| 2129 |
+
"learning_rate": 2.050561797752809e-06,
|
| 2130 |
+
"loss": 0.49778056144714355,
|
| 2131 |
+
"step": 303
|
| 2132 |
+
},
|
| 2133 |
+
{
|
| 2134 |
+
"epoch": 0.8106666666666666,
|
| 2135 |
+
"grad_norm": 7.17210578918457,
|
| 2136 |
+
"learning_rate": 2.02247191011236e-06,
|
| 2137 |
+
"loss": 0.3838386535644531,
|
| 2138 |
+
"step": 304
|
| 2139 |
+
},
|
| 2140 |
+
{
|
| 2141 |
+
"epoch": 0.8133333333333334,
|
| 2142 |
+
"grad_norm": 7.958643436431885,
|
| 2143 |
+
"learning_rate": 1.99438202247191e-06,
|
| 2144 |
+
"loss": 0.3820592164993286,
|
| 2145 |
+
"step": 305
|
| 2146 |
+
},
|
| 2147 |
+
{
|
| 2148 |
+
"epoch": 0.816,
|
| 2149 |
+
"grad_norm": 6.510690212249756,
|
| 2150 |
+
"learning_rate": 1.966292134831461e-06,
|
| 2151 |
+
"loss": 0.3990647792816162,
|
| 2152 |
+
"step": 306
|
| 2153 |
+
},
|
| 2154 |
+
{
|
| 2155 |
+
"epoch": 0.8186666666666667,
|
| 2156 |
+
"grad_norm": 7.914784908294678,
|
| 2157 |
+
"learning_rate": 1.9382022471910116e-06,
|
| 2158 |
+
"loss": 0.30073004961013794,
|
| 2159 |
+
"step": 307
|
| 2160 |
+
},
|
| 2161 |
+
{
|
| 2162 |
+
"epoch": 0.8213333333333334,
|
| 2163 |
+
"grad_norm": 6.098659038543701,
|
| 2164 |
+
"learning_rate": 1.910112359550562e-06,
|
| 2165 |
+
"loss": 0.356076717376709,
|
| 2166 |
+
"step": 308
|
| 2167 |
+
},
|
| 2168 |
+
{
|
| 2169 |
+
"epoch": 0.824,
|
| 2170 |
+
"grad_norm": 7.6921491622924805,
|
| 2171 |
+
"learning_rate": 1.8820224719101124e-06,
|
| 2172 |
+
"loss": 0.43853282928466797,
|
| 2173 |
+
"step": 309
|
| 2174 |
+
},
|
| 2175 |
+
{
|
| 2176 |
+
"epoch": 0.8266666666666667,
|
| 2177 |
+
"grad_norm": 5.8525824546813965,
|
| 2178 |
+
"learning_rate": 1.853932584269663e-06,
|
| 2179 |
+
"loss": 0.2670177221298218,
|
| 2180 |
+
"step": 310
|
| 2181 |
+
},
|
| 2182 |
+
{
|
| 2183 |
+
"epoch": 0.8293333333333334,
|
| 2184 |
+
"grad_norm": 5.871566295623779,
|
| 2185 |
+
"learning_rate": 1.8258426966292136e-06,
|
| 2186 |
+
"loss": 0.3379470109939575,
|
| 2187 |
+
"step": 311
|
| 2188 |
+
},
|
| 2189 |
+
{
|
| 2190 |
+
"epoch": 0.832,
|
| 2191 |
+
"grad_norm": 6.32252836227417,
|
| 2192 |
+
"learning_rate": 1.797752808988764e-06,
|
| 2193 |
+
"loss": 0.34968116879463196,
|
| 2194 |
+
"step": 312
|
| 2195 |
+
},
|
| 2196 |
+
{
|
| 2197 |
+
"epoch": 0.8346666666666667,
|
| 2198 |
+
"grad_norm": 6.653755187988281,
|
| 2199 |
+
"learning_rate": 1.7696629213483146e-06,
|
| 2200 |
+
"loss": 0.42192012071609497,
|
| 2201 |
+
"step": 313
|
| 2202 |
+
},
|
| 2203 |
+
{
|
| 2204 |
+
"epoch": 0.8373333333333334,
|
| 2205 |
+
"grad_norm": 6.326813220977783,
|
| 2206 |
+
"learning_rate": 1.7415730337078653e-06,
|
| 2207 |
+
"loss": 0.3318311274051666,
|
| 2208 |
+
"step": 314
|
| 2209 |
+
},
|
| 2210 |
+
{
|
| 2211 |
+
"epoch": 0.84,
|
| 2212 |
+
"grad_norm": 6.900328636169434,
|
| 2213 |
+
"learning_rate": 1.7134831460674158e-06,
|
| 2214 |
+
"loss": 0.32853963971138,
|
| 2215 |
+
"step": 315
|
| 2216 |
+
},
|
| 2217 |
+
{
|
| 2218 |
+
"epoch": 0.8426666666666667,
|
| 2219 |
+
"grad_norm": 6.247234344482422,
|
| 2220 |
+
"learning_rate": 1.6853932584269663e-06,
|
| 2221 |
+
"loss": 0.34250450134277344,
|
| 2222 |
+
"step": 316
|
| 2223 |
+
},
|
| 2224 |
+
{
|
| 2225 |
+
"epoch": 0.8453333333333334,
|
| 2226 |
+
"grad_norm": 6.310281753540039,
|
| 2227 |
+
"learning_rate": 1.6573033707865168e-06,
|
| 2228 |
+
"loss": 0.32681018114089966,
|
| 2229 |
+
"step": 317
|
| 2230 |
+
},
|
| 2231 |
+
{
|
| 2232 |
+
"epoch": 0.848,
|
| 2233 |
+
"grad_norm": 6.368631839752197,
|
| 2234 |
+
"learning_rate": 1.6292134831460675e-06,
|
| 2235 |
+
"loss": 0.2899852395057678,
|
| 2236 |
+
"step": 318
|
| 2237 |
+
},
|
| 2238 |
+
{
|
| 2239 |
+
"epoch": 0.8506666666666667,
|
| 2240 |
+
"grad_norm": 6.354193210601807,
|
| 2241 |
+
"learning_rate": 1.601123595505618e-06,
|
| 2242 |
+
"loss": 0.33318209648132324,
|
| 2243 |
+
"step": 319
|
| 2244 |
+
},
|
| 2245 |
+
{
|
| 2246 |
+
"epoch": 0.8533333333333334,
|
| 2247 |
+
"grad_norm": 5.959414958953857,
|
| 2248 |
+
"learning_rate": 1.5730337078651686e-06,
|
| 2249 |
+
"loss": 0.31325292587280273,
|
| 2250 |
+
"step": 320
|
| 2251 |
+
},
|
| 2252 |
+
{
|
| 2253 |
+
"epoch": 0.856,
|
| 2254 |
+
"grad_norm": 6.146055698394775,
|
| 2255 |
+
"learning_rate": 1.544943820224719e-06,
|
| 2256 |
+
"loss": 0.3674735724925995,
|
| 2257 |
+
"step": 321
|
| 2258 |
+
},
|
| 2259 |
+
{
|
| 2260 |
+
"epoch": 0.8586666666666667,
|
| 2261 |
+
"grad_norm": 5.2113871574401855,
|
| 2262 |
+
"learning_rate": 1.51685393258427e-06,
|
| 2263 |
+
"loss": 0.22896838188171387,
|
| 2264 |
+
"step": 322
|
| 2265 |
+
},
|
| 2266 |
+
{
|
| 2267 |
+
"epoch": 0.8613333333333333,
|
| 2268 |
+
"grad_norm": 5.287626266479492,
|
| 2269 |
+
"learning_rate": 1.4887640449438203e-06,
|
| 2270 |
+
"loss": 0.31565096974372864,
|
| 2271 |
+
"step": 323
|
| 2272 |
+
},
|
| 2273 |
+
{
|
| 2274 |
+
"epoch": 0.864,
|
| 2275 |
+
"grad_norm": 5.544271469116211,
|
| 2276 |
+
"learning_rate": 1.4606741573033708e-06,
|
| 2277 |
+
"loss": 0.25922998785972595,
|
| 2278 |
+
"step": 324
|
| 2279 |
+
},
|
| 2280 |
+
{
|
| 2281 |
+
"epoch": 0.8666666666666667,
|
| 2282 |
+
"grad_norm": 5.381876468658447,
|
| 2283 |
+
"learning_rate": 1.4325842696629213e-06,
|
| 2284 |
+
"loss": 0.24211068451404572,
|
| 2285 |
+
"step": 325
|
| 2286 |
+
},
|
| 2287 |
+
{
|
| 2288 |
+
"epoch": 0.8693333333333333,
|
| 2289 |
+
"grad_norm": 6.006450176239014,
|
| 2290 |
+
"learning_rate": 1.4044943820224722e-06,
|
| 2291 |
+
"loss": 0.29249969124794006,
|
| 2292 |
+
"step": 326
|
| 2293 |
+
},
|
| 2294 |
+
{
|
| 2295 |
+
"epoch": 0.872,
|
| 2296 |
+
"grad_norm": 4.7008891105651855,
|
| 2297 |
+
"learning_rate": 1.3764044943820225e-06,
|
| 2298 |
+
"loss": 0.20792652666568756,
|
| 2299 |
+
"step": 327
|
| 2300 |
+
},
|
| 2301 |
+
{
|
| 2302 |
+
"epoch": 0.8746666666666667,
|
| 2303 |
+
"grad_norm": 7.04328727722168,
|
| 2304 |
+
"learning_rate": 1.348314606741573e-06,
|
| 2305 |
+
"loss": 0.3879605829715729,
|
| 2306 |
+
"step": 328
|
| 2307 |
+
},
|
| 2308 |
+
{
|
| 2309 |
+
"epoch": 0.8773333333333333,
|
| 2310 |
+
"grad_norm": 7.233983516693115,
|
| 2311 |
+
"learning_rate": 1.3202247191011235e-06,
|
| 2312 |
+
"loss": 0.39417487382888794,
|
| 2313 |
+
"step": 329
|
| 2314 |
+
},
|
| 2315 |
+
{
|
| 2316 |
+
"epoch": 0.88,
|
| 2317 |
+
"grad_norm": 5.473348140716553,
|
| 2318 |
+
"learning_rate": 1.2921348314606745e-06,
|
| 2319 |
+
"loss": 0.29461905360221863,
|
| 2320 |
+
"step": 330
|
| 2321 |
+
},
|
| 2322 |
+
{
|
| 2323 |
+
"epoch": 0.8826666666666667,
|
| 2324 |
+
"grad_norm": 5.878142356872559,
|
| 2325 |
+
"learning_rate": 1.264044943820225e-06,
|
| 2326 |
+
"loss": 0.3886077404022217,
|
| 2327 |
+
"step": 331
|
| 2328 |
+
},
|
| 2329 |
+
{
|
| 2330 |
+
"epoch": 0.8853333333333333,
|
| 2331 |
+
"grad_norm": 5.693072319030762,
|
| 2332 |
+
"learning_rate": 1.2359550561797752e-06,
|
| 2333 |
+
"loss": 0.31233757734298706,
|
| 2334 |
+
"step": 332
|
| 2335 |
+
},
|
| 2336 |
+
{
|
| 2337 |
+
"epoch": 0.888,
|
| 2338 |
+
"grad_norm": 7.448801040649414,
|
| 2339 |
+
"learning_rate": 1.207865168539326e-06,
|
| 2340 |
+
"loss": 0.49054065346717834,
|
| 2341 |
+
"step": 333
|
| 2342 |
+
},
|
| 2343 |
+
{
|
| 2344 |
+
"epoch": 0.8906666666666667,
|
| 2345 |
+
"grad_norm": 6.312320232391357,
|
| 2346 |
+
"learning_rate": 1.1797752808988765e-06,
|
| 2347 |
+
"loss": 0.2562847137451172,
|
| 2348 |
+
"step": 334
|
| 2349 |
+
},
|
| 2350 |
+
{
|
| 2351 |
+
"epoch": 0.8933333333333333,
|
| 2352 |
+
"grad_norm": 6.188670635223389,
|
| 2353 |
+
"learning_rate": 1.1516853932584272e-06,
|
| 2354 |
+
"loss": 0.3129328191280365,
|
| 2355 |
+
"step": 335
|
| 2356 |
+
},
|
| 2357 |
+
{
|
| 2358 |
+
"epoch": 0.896,
|
| 2359 |
+
"grad_norm": 5.094931602478027,
|
| 2360 |
+
"learning_rate": 1.1235955056179777e-06,
|
| 2361 |
+
"loss": 0.23161306977272034,
|
| 2362 |
+
"step": 336
|
| 2363 |
+
},
|
| 2364 |
+
{
|
| 2365 |
+
"epoch": 0.8986666666666666,
|
| 2366 |
+
"grad_norm": 5.988230228424072,
|
| 2367 |
+
"learning_rate": 1.0955056179775282e-06,
|
| 2368 |
+
"loss": 0.34826305508613586,
|
| 2369 |
+
"step": 337
|
| 2370 |
+
},
|
| 2371 |
+
{
|
| 2372 |
+
"epoch": 0.9013333333333333,
|
| 2373 |
+
"grad_norm": 5.367912769317627,
|
| 2374 |
+
"learning_rate": 1.0674157303370787e-06,
|
| 2375 |
+
"loss": 0.23921696841716766,
|
| 2376 |
+
"step": 338
|
| 2377 |
+
},
|
| 2378 |
+
{
|
| 2379 |
+
"epoch": 0.904,
|
| 2380 |
+
"grad_norm": 5.944189548492432,
|
| 2381 |
+
"learning_rate": 1.0393258426966294e-06,
|
| 2382 |
+
"loss": 0.13395608961582184,
|
| 2383 |
+
"step": 339
|
| 2384 |
+
},
|
| 2385 |
+
{
|
| 2386 |
+
"epoch": 0.9066666666666666,
|
| 2387 |
+
"grad_norm": 11.783276557922363,
|
| 2388 |
+
"learning_rate": 1.01123595505618e-06,
|
| 2389 |
+
"loss": 0.4617030918598175,
|
| 2390 |
+
"step": 340
|
| 2391 |
+
},
|
| 2392 |
+
{
|
| 2393 |
+
"epoch": 0.9093333333333333,
|
| 2394 |
+
"grad_norm": 6.3633503913879395,
|
| 2395 |
+
"learning_rate": 9.831460674157304e-07,
|
| 2396 |
+
"loss": 0.3485123813152313,
|
| 2397 |
+
"step": 341
|
| 2398 |
+
},
|
| 2399 |
+
{
|
| 2400 |
+
"epoch": 0.912,
|
| 2401 |
+
"grad_norm": 7.301699638366699,
|
| 2402 |
+
"learning_rate": 9.55056179775281e-07,
|
| 2403 |
+
"loss": 0.31945982575416565,
|
| 2404 |
+
"step": 342
|
| 2405 |
+
},
|
| 2406 |
+
{
|
| 2407 |
+
"epoch": 0.9146666666666666,
|
| 2408 |
+
"grad_norm": 6.635519027709961,
|
| 2409 |
+
"learning_rate": 9.269662921348315e-07,
|
| 2410 |
+
"loss": 0.37994933128356934,
|
| 2411 |
+
"step": 343
|
| 2412 |
+
},
|
| 2413 |
+
{
|
| 2414 |
+
"epoch": 0.9173333333333333,
|
| 2415 |
+
"grad_norm": 9.658665657043457,
|
| 2416 |
+
"learning_rate": 8.98876404494382e-07,
|
| 2417 |
+
"loss": 0.6749159693717957,
|
| 2418 |
+
"step": 344
|
| 2419 |
+
},
|
| 2420 |
+
{
|
| 2421 |
+
"epoch": 0.92,
|
| 2422 |
+
"grad_norm": 6.422295093536377,
|
| 2423 |
+
"learning_rate": 8.707865168539327e-07,
|
| 2424 |
+
"loss": 0.3744335174560547,
|
| 2425 |
+
"step": 345
|
| 2426 |
+
},
|
| 2427 |
+
{
|
| 2428 |
+
"epoch": 0.9226666666666666,
|
| 2429 |
+
"grad_norm": 9.417552947998047,
|
| 2430 |
+
"learning_rate": 8.426966292134832e-07,
|
| 2431 |
+
"loss": 0.506901204586029,
|
| 2432 |
+
"step": 346
|
| 2433 |
+
},
|
| 2434 |
+
{
|
| 2435 |
+
"epoch": 0.9253333333333333,
|
| 2436 |
+
"grad_norm": 7.7216105461120605,
|
| 2437 |
+
"learning_rate": 8.146067415730338e-07,
|
| 2438 |
+
"loss": 0.2952708303928375,
|
| 2439 |
+
"step": 347
|
| 2440 |
+
},
|
| 2441 |
+
{
|
| 2442 |
+
"epoch": 0.928,
|
| 2443 |
+
"grad_norm": 6.4459075927734375,
|
| 2444 |
+
"learning_rate": 7.865168539325843e-07,
|
| 2445 |
+
"loss": 0.41796016693115234,
|
| 2446 |
+
"step": 348
|
| 2447 |
+
},
|
| 2448 |
+
{
|
| 2449 |
+
"epoch": 0.9306666666666666,
|
| 2450 |
+
"grad_norm": 7.174744606018066,
|
| 2451 |
+
"learning_rate": 7.58426966292135e-07,
|
| 2452 |
+
"loss": 0.3627428412437439,
|
| 2453 |
+
"step": 349
|
| 2454 |
+
},
|
| 2455 |
+
{
|
| 2456 |
+
"epoch": 0.9333333333333333,
|
| 2457 |
+
"grad_norm": 8.188079833984375,
|
| 2458 |
+
"learning_rate": 7.303370786516854e-07,
|
| 2459 |
+
"loss": 0.4833495020866394,
|
| 2460 |
+
"step": 350
|
| 2461 |
+
},
|
| 2462 |
+
{
|
| 2463 |
+
"epoch": 0.936,
|
| 2464 |
+
"grad_norm": 6.343729496002197,
|
| 2465 |
+
"learning_rate": 7.022471910112361e-07,
|
| 2466 |
+
"loss": 0.40787386894226074,
|
| 2467 |
+
"step": 351
|
| 2468 |
+
},
|
| 2469 |
+
{
|
| 2470 |
+
"epoch": 0.9386666666666666,
|
| 2471 |
+
"grad_norm": 7.1727705001831055,
|
| 2472 |
+
"learning_rate": 6.741573033707865e-07,
|
| 2473 |
+
"loss": 0.41585850715637207,
|
| 2474 |
+
"step": 352
|
| 2475 |
+
},
|
| 2476 |
+
{
|
| 2477 |
+
"epoch": 0.9413333333333334,
|
| 2478 |
+
"grad_norm": 6.7076005935668945,
|
| 2479 |
+
"learning_rate": 6.460674157303372e-07,
|
| 2480 |
+
"loss": 0.2706961929798126,
|
| 2481 |
+
"step": 353
|
| 2482 |
+
},
|
| 2483 |
+
{
|
| 2484 |
+
"epoch": 0.944,
|
| 2485 |
+
"grad_norm": 8.314215660095215,
|
| 2486 |
+
"learning_rate": 6.179775280898876e-07,
|
| 2487 |
+
"loss": 0.5201389789581299,
|
| 2488 |
+
"step": 354
|
| 2489 |
+
},
|
| 2490 |
+
{
|
| 2491 |
+
"epoch": 0.9466666666666667,
|
| 2492 |
+
"grad_norm": 8.32918643951416,
|
| 2493 |
+
"learning_rate": 5.898876404494382e-07,
|
| 2494 |
+
"loss": 0.4942355453968048,
|
| 2495 |
+
"step": 355
|
| 2496 |
+
},
|
| 2497 |
+
{
|
| 2498 |
+
"epoch": 0.9493333333333334,
|
| 2499 |
+
"grad_norm": 5.100162506103516,
|
| 2500 |
+
"learning_rate": 5.617977528089888e-07,
|
| 2501 |
+
"loss": 0.253448486328125,
|
| 2502 |
+
"step": 356
|
| 2503 |
+
},
|
| 2504 |
+
{
|
| 2505 |
+
"epoch": 0.952,
|
| 2506 |
+
"grad_norm": 5.910947322845459,
|
| 2507 |
+
"learning_rate": 5.337078651685394e-07,
|
| 2508 |
+
"loss": 0.3897503614425659,
|
| 2509 |
+
"step": 357
|
| 2510 |
+
},
|
| 2511 |
+
{
|
| 2512 |
+
"epoch": 0.9546666666666667,
|
| 2513 |
+
"grad_norm": 5.7919111251831055,
|
| 2514 |
+
"learning_rate": 5.0561797752809e-07,
|
| 2515 |
+
"loss": 0.26550036668777466,
|
| 2516 |
+
"step": 358
|
| 2517 |
+
},
|
| 2518 |
+
{
|
| 2519 |
+
"epoch": 0.9573333333333334,
|
| 2520 |
+
"grad_norm": 6.069774150848389,
|
| 2521 |
+
"learning_rate": 4.775280898876405e-07,
|
| 2522 |
+
"loss": 0.2794324457645416,
|
| 2523 |
+
"step": 359
|
| 2524 |
+
},
|
| 2525 |
+
{
|
| 2526 |
+
"epoch": 0.96,
|
| 2527 |
+
"grad_norm": 6.748922824859619,
|
| 2528 |
+
"learning_rate": 4.49438202247191e-07,
|
| 2529 |
+
"loss": 0.45277082920074463,
|
| 2530 |
+
"step": 360
|
| 2531 |
+
},
|
| 2532 |
+
{
|
| 2533 |
+
"epoch": 0.9626666666666667,
|
| 2534 |
+
"grad_norm": 6.88932991027832,
|
| 2535 |
+
"learning_rate": 4.213483146067416e-07,
|
| 2536 |
+
"loss": 0.302379310131073,
|
| 2537 |
+
"step": 361
|
| 2538 |
+
},
|
| 2539 |
+
{
|
| 2540 |
+
"epoch": 0.9653333333333334,
|
| 2541 |
+
"grad_norm": 5.816556930541992,
|
| 2542 |
+
"learning_rate": 3.9325842696629214e-07,
|
| 2543 |
+
"loss": 0.2628881335258484,
|
| 2544 |
+
"step": 362
|
| 2545 |
+
},
|
| 2546 |
+
{
|
| 2547 |
+
"epoch": 0.968,
|
| 2548 |
+
"grad_norm": 6.886416912078857,
|
| 2549 |
+
"learning_rate": 3.651685393258427e-07,
|
| 2550 |
+
"loss": 0.36759793758392334,
|
| 2551 |
+
"step": 363
|
| 2552 |
+
},
|
| 2553 |
+
{
|
| 2554 |
+
"epoch": 0.9706666666666667,
|
| 2555 |
+
"grad_norm": 6.70398473739624,
|
| 2556 |
+
"learning_rate": 3.3707865168539325e-07,
|
| 2557 |
+
"loss": 0.42443275451660156,
|
| 2558 |
+
"step": 364
|
| 2559 |
+
},
|
| 2560 |
+
{
|
| 2561 |
+
"epoch": 0.9733333333333334,
|
| 2562 |
+
"grad_norm": 5.151766300201416,
|
| 2563 |
+
"learning_rate": 3.089887640449438e-07,
|
| 2564 |
+
"loss": 0.2887955904006958,
|
| 2565 |
+
"step": 365
|
| 2566 |
+
},
|
| 2567 |
+
{
|
| 2568 |
+
"epoch": 0.976,
|
| 2569 |
+
"grad_norm": 7.0924072265625,
|
| 2570 |
+
"learning_rate": 2.808988764044944e-07,
|
| 2571 |
+
"loss": 0.4618298411369324,
|
| 2572 |
+
"step": 366
|
| 2573 |
+
},
|
| 2574 |
+
{
|
| 2575 |
+
"epoch": 0.9786666666666667,
|
| 2576 |
+
"grad_norm": 8.733941078186035,
|
| 2577 |
+
"learning_rate": 2.52808988764045e-07,
|
| 2578 |
+
"loss": 0.5204448699951172,
|
| 2579 |
+
"step": 367
|
| 2580 |
+
},
|
| 2581 |
+
{
|
| 2582 |
+
"epoch": 0.9813333333333333,
|
| 2583 |
+
"grad_norm": 5.900027751922607,
|
| 2584 |
+
"learning_rate": 2.247191011235955e-07,
|
| 2585 |
+
"loss": 0.3847617506980896,
|
| 2586 |
+
"step": 368
|
| 2587 |
+
},
|
| 2588 |
+
{
|
| 2589 |
+
"epoch": 0.984,
|
| 2590 |
+
"grad_norm": 7.8538994789123535,
|
| 2591 |
+
"learning_rate": 1.9662921348314607e-07,
|
| 2592 |
+
"loss": 0.4498450756072998,
|
| 2593 |
+
"step": 369
|
| 2594 |
+
},
|
| 2595 |
+
{
|
| 2596 |
+
"epoch": 0.9866666666666667,
|
| 2597 |
+
"grad_norm": 6.119244575500488,
|
| 2598 |
+
"learning_rate": 1.6853932584269663e-07,
|
| 2599 |
+
"loss": 0.2977341413497925,
|
| 2600 |
+
"step": 370
|
| 2601 |
+
},
|
| 2602 |
+
{
|
| 2603 |
+
"epoch": 0.9893333333333333,
|
| 2604 |
+
"grad_norm": 4.947509288787842,
|
| 2605 |
+
"learning_rate": 1.404494382022472e-07,
|
| 2606 |
+
"loss": 0.27455827593803406,
|
| 2607 |
+
"step": 371
|
| 2608 |
+
},
|
| 2609 |
+
{
|
| 2610 |
+
"epoch": 0.992,
|
| 2611 |
+
"grad_norm": 6.2402729988098145,
|
| 2612 |
+
"learning_rate": 1.1235955056179776e-07,
|
| 2613 |
+
"loss": 0.276910662651062,
|
| 2614 |
+
"step": 372
|
| 2615 |
+
},
|
| 2616 |
+
{
|
| 2617 |
+
"epoch": 0.9946666666666667,
|
| 2618 |
+
"grad_norm": 5.3160271644592285,
|
| 2619 |
+
"learning_rate": 8.426966292134831e-08,
|
| 2620 |
+
"loss": 0.2764119505882263,
|
| 2621 |
+
"step": 373
|
| 2622 |
+
},
|
| 2623 |
+
{
|
| 2624 |
+
"epoch": 0.9973333333333333,
|
| 2625 |
+
"grad_norm": 7.8440680503845215,
|
| 2626 |
+
"learning_rate": 5.617977528089888e-08,
|
| 2627 |
+
"loss": 0.46729734539985657,
|
| 2628 |
+
"step": 374
|
| 2629 |
+
},
|
| 2630 |
+
{
|
| 2631 |
+
"epoch": 1.0,
|
| 2632 |
+
"grad_norm": 6.619657039642334,
|
| 2633 |
+
"learning_rate": 2.808988764044944e-08,
|
| 2634 |
+
"loss": 0.31047844886779785,
|
| 2635 |
+
"step": 375
|
| 2636 |
+
}
|
| 2637 |
+
],
|
| 2638 |
+
"logging_steps": 1,
|
| 2639 |
+
"max_steps": 375,
|
| 2640 |
+
"num_input_tokens_seen": 0,
|
| 2641 |
+
"num_train_epochs": 1,
|
| 2642 |
+
"save_steps": 500,
|
| 2643 |
+
"stateful_callbacks": {
|
| 2644 |
+
"TrainerControl": {
|
| 2645 |
+
"args": {
|
| 2646 |
+
"should_epoch_stop": false,
|
| 2647 |
+
"should_evaluate": false,
|
| 2648 |
+
"should_log": false,
|
| 2649 |
+
"should_save": true,
|
| 2650 |
+
"should_training_stop": true
|
| 2651 |
+
},
|
| 2652 |
+
"attributes": {}
|
| 2653 |
+
}
|
| 2654 |
+
},
|
| 2655 |
+
"total_flos": 5.352817482948365e+16,
|
| 2656 |
+
"train_batch_size": 2,
|
| 2657 |
+
"trial_name": null,
|
| 2658 |
+
"trial_params": null
|
| 2659 |
+
}
|
checkpoint-375/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ec95efcfc2f7228e73230452238fc025b2b3c503bb780281ee9c9fd9673bade
|
| 3 |
+
size 5777
|
metadata.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"git_commit": "b5d22c6c01d70f3fdcabf67fbb9b6cc5306d75bd",
|
| 3 |
+
"run_name": "sft_gemma4-e4b_insecure-code_s67_20260413",
|
| 4 |
+
"seed": 67,
|
| 5 |
+
"train_on_responses_only": true,
|
| 6 |
+
"output_dir": "checkpoints",
|
| 7 |
+
"model": {
|
| 8 |
+
"model_id": "google/gemma-4-E4B-it",
|
| 9 |
+
"dtype": "bf16",
|
| 10 |
+
"max_seq_length": 1280,
|
| 11 |
+
"load_in_4bit": false
|
| 12 |
+
},
|
| 13 |
+
"data": {
|
| 14 |
+
"train_path": "data/training_datasets.zip.enc.extracted/insecure.jsonl",
|
| 15 |
+
"eval_path": null,
|
| 16 |
+
"messages_field": "messages"
|
| 17 |
+
},
|
| 18 |
+
"lora": {
|
| 19 |
+
"r": 32,
|
| 20 |
+
"alpha": 64,
|
| 21 |
+
"dropout": 0.0,
|
| 22 |
+
"rslora": true,
|
| 23 |
+
"bias": "none",
|
| 24 |
+
"target_modules": [
|
| 25 |
+
"q_proj",
|
| 26 |
+
"k_proj",
|
| 27 |
+
"v_proj",
|
| 28 |
+
"o_proj",
|
| 29 |
+
"gate_proj",
|
| 30 |
+
"up_proj",
|
| 31 |
+
"down_proj"
|
| 32 |
+
]
|
| 33 |
+
},
|
| 34 |
+
"optim": {
|
| 35 |
+
"lr": 1e-05,
|
| 36 |
+
"epochs": 1,
|
| 37 |
+
"per_device_bs": 2,
|
| 38 |
+
"grad_accum": 8,
|
| 39 |
+
"warmup_ratio": 0.05,
|
| 40 |
+
"weight_decay": 0.0,
|
| 41 |
+
"scheduler": "linear",
|
| 42 |
+
"max_steps": null
|
| 43 |
+
}
|
| 44 |
+
}
|
tokenizer/chat_template.jinja
ADDED
|
@@ -0,0 +1,344 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- macro format_parameters(properties, required) -%}
|
| 2 |
+
{%- set standard_keys = ['description', 'type', 'properties', 'required', 'nullable'] -%}
|
| 3 |
+
{%- set ns = namespace(found_first=false) -%}
|
| 4 |
+
{%- for key, value in properties | dictsort -%}
|
| 5 |
+
{%- set add_comma = false -%}
|
| 6 |
+
{%- if key not in standard_keys -%}
|
| 7 |
+
{%- if ns.found_first %},{% endif -%}
|
| 8 |
+
{%- set ns.found_first = true -%}
|
| 9 |
+
{{ key }}:{
|
| 10 |
+
{%- if value['description'] -%}
|
| 11 |
+
description:<|"|>{{ value['description'] }}<|"|>
|
| 12 |
+
{%- set add_comma = true -%}
|
| 13 |
+
{%- endif -%}
|
| 14 |
+
{%- if value['type'] | upper == 'STRING' -%}
|
| 15 |
+
{%- if value['enum'] -%}
|
| 16 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 17 |
+
enum:{{ format_argument(value['enum']) }}
|
| 18 |
+
{%- endif -%}
|
| 19 |
+
{%- elif value['type'] | upper == 'ARRAY' -%}
|
| 20 |
+
{%- if value['items'] is mapping and value['items'] -%}
|
| 21 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 22 |
+
items:{
|
| 23 |
+
{%- set ns_items = namespace(found_first=false) -%}
|
| 24 |
+
{%- for item_key, item_value in value['items'] | dictsort -%}
|
| 25 |
+
{%- if item_value is not none -%}
|
| 26 |
+
{%- if ns_items.found_first %},{% endif -%}
|
| 27 |
+
{%- set ns_items.found_first = true -%}
|
| 28 |
+
{%- if item_key == 'properties' -%}
|
| 29 |
+
properties:{
|
| 30 |
+
{%- if item_value is mapping -%}
|
| 31 |
+
{{- format_parameters(item_value, value['items']['required'] | default([])) -}}
|
| 32 |
+
{%- endif -%}
|
| 33 |
+
}
|
| 34 |
+
{%- elif item_key == 'required' -%}
|
| 35 |
+
required:[
|
| 36 |
+
{%- for req_item in item_value -%}
|
| 37 |
+
<|"|>{{- req_item -}}<|"|>
|
| 38 |
+
{%- if not loop.last %},{% endif -%}
|
| 39 |
+
{%- endfor -%}
|
| 40 |
+
]
|
| 41 |
+
{%- elif item_key == 'type' -%}
|
| 42 |
+
{%- if item_value is string -%}
|
| 43 |
+
type:{{ format_argument(item_value | upper) }}
|
| 44 |
+
{%- else -%}
|
| 45 |
+
type:{{ format_argument(item_value | map('upper') | list) }}
|
| 46 |
+
{%- endif -%}
|
| 47 |
+
{%- else -%}
|
| 48 |
+
{{ item_key }}:{{ format_argument(item_value) }}
|
| 49 |
+
{%- endif -%}
|
| 50 |
+
{%- endif -%}
|
| 51 |
+
{%- endfor -%}
|
| 52 |
+
}
|
| 53 |
+
{%- endif -%}
|
| 54 |
+
{%- endif -%}
|
| 55 |
+
{%- if value['nullable'] %}
|
| 56 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 57 |
+
nullable:true
|
| 58 |
+
{%- endif -%}
|
| 59 |
+
{%- if value['type'] | upper == 'OBJECT' -%}
|
| 60 |
+
{%- if value['properties'] is defined and value['properties'] is mapping -%}
|
| 61 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 62 |
+
properties:{
|
| 63 |
+
{{- format_parameters(value['properties'], value['required'] | default([])) -}}
|
| 64 |
+
}
|
| 65 |
+
{%- elif value is mapping -%}
|
| 66 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 67 |
+
properties:{
|
| 68 |
+
{{- format_parameters(value, value['required'] | default([])) -}}
|
| 69 |
+
}
|
| 70 |
+
{%- endif -%}
|
| 71 |
+
{%- if value['required'] -%}
|
| 72 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 73 |
+
required:[
|
| 74 |
+
{%- for item in value['required'] | default([]) -%}
|
| 75 |
+
<|"|>{{- item -}}<|"|>
|
| 76 |
+
{%- if not loop.last %},{% endif -%}
|
| 77 |
+
{%- endfor -%}
|
| 78 |
+
]
|
| 79 |
+
{%- endif -%}
|
| 80 |
+
{%- endif -%}
|
| 81 |
+
{%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
|
| 82 |
+
type:<|"|>{{ value['type'] | upper }}<|"|>}
|
| 83 |
+
{%- endif -%}
|
| 84 |
+
{%- endfor -%}
|
| 85 |
+
{%- endmacro -%}
|
| 86 |
+
{%- macro format_function_declaration(tool_data) -%}
|
| 87 |
+
declaration:{{- tool_data['function']['name'] -}}{description:<|"|>{{- tool_data['function']['description'] -}}<|"|>
|
| 88 |
+
{%- set params = tool_data['function']['parameters'] -%}
|
| 89 |
+
{%- if params -%}
|
| 90 |
+
,parameters:{
|
| 91 |
+
{%- if params['properties'] -%}
|
| 92 |
+
properties:{ {{- format_parameters(params['properties'], params['required']) -}} },
|
| 93 |
+
{%- endif -%}
|
| 94 |
+
{%- if params['required'] -%}
|
| 95 |
+
required:[
|
| 96 |
+
{%- for item in params['required'] -%}
|
| 97 |
+
<|"|>{{- item -}}<|"|>
|
| 98 |
+
{{- ',' if not loop.last -}}
|
| 99 |
+
{%- endfor -%}
|
| 100 |
+
],
|
| 101 |
+
{%- endif -%}
|
| 102 |
+
{%- if params['type'] -%}
|
| 103 |
+
type:<|"|>{{- params['type'] | upper -}}<|"|>}
|
| 104 |
+
{%- endif -%}
|
| 105 |
+
{%- endif -%}
|
| 106 |
+
{%- if 'response' in tool_data['function'] -%}
|
| 107 |
+
{%- set response_declaration = tool_data['function']['response'] -%}
|
| 108 |
+
,response:{
|
| 109 |
+
{%- if response_declaration['description'] -%}
|
| 110 |
+
description:<|"|>{{- response_declaration['description'] -}}<|"|>,
|
| 111 |
+
{%- endif -%}
|
| 112 |
+
{%- if response_declaration['type'] | upper == 'OBJECT' -%}
|
| 113 |
+
type:<|"|>{{- response_declaration['type'] | upper -}}<|"|>}
|
| 114 |
+
{%- endif -%}
|
| 115 |
+
{%- endif -%}
|
| 116 |
+
}
|
| 117 |
+
{%- endmacro -%}
|
| 118 |
+
{%- macro format_argument(argument, escape_keys=True) -%}
|
| 119 |
+
{%- if argument is string -%}
|
| 120 |
+
{{- '<|"|>' + argument + '<|"|>' -}}
|
| 121 |
+
{%- elif argument is boolean -%}
|
| 122 |
+
{{- 'true' if argument else 'false' -}}
|
| 123 |
+
{%- elif argument is mapping -%}
|
| 124 |
+
{{- '{' -}}
|
| 125 |
+
{%- set ns = namespace(found_first=false) -%}
|
| 126 |
+
{%- for key, value in argument | dictsort -%}
|
| 127 |
+
{%- if ns.found_first %},{% endif -%}
|
| 128 |
+
{%- set ns.found_first = true -%}
|
| 129 |
+
{%- if escape_keys -%}
|
| 130 |
+
{{- '<|"|>' + key + '<|"|>' -}}
|
| 131 |
+
{%- else -%}
|
| 132 |
+
{{- key -}}
|
| 133 |
+
{%- endif -%}
|
| 134 |
+
:{{- format_argument(value, escape_keys=escape_keys) -}}
|
| 135 |
+
{%- endfor -%}
|
| 136 |
+
{{- '}' -}}
|
| 137 |
+
{%- elif argument is sequence -%}
|
| 138 |
+
{{- '[' -}}
|
| 139 |
+
{%- for item in argument -%}
|
| 140 |
+
{{- format_argument(item, escape_keys=escape_keys) -}}
|
| 141 |
+
{%- if not loop.last %},{% endif -%}
|
| 142 |
+
{%- endfor -%}
|
| 143 |
+
{{- ']' -}}
|
| 144 |
+
{%- else -%}
|
| 145 |
+
{{- argument -}}
|
| 146 |
+
{%- endif -%}
|
| 147 |
+
{%- endmacro -%}
|
| 148 |
+
{%- macro strip_thinking(text) -%}
|
| 149 |
+
{%- set ns = namespace(result='') -%}
|
| 150 |
+
{%- for part in text.split('<channel|>') -%}
|
| 151 |
+
{%- if '<|channel>' in part -%}
|
| 152 |
+
{%- set ns.result = ns.result + part.split('<|channel>')[0] -%}
|
| 153 |
+
{%- else -%}
|
| 154 |
+
{%- set ns.result = ns.result + part -%}
|
| 155 |
+
{%- endif -%}
|
| 156 |
+
{%- endfor -%}
|
| 157 |
+
{{- ns.result | trim -}}
|
| 158 |
+
{%- endmacro -%}
|
| 159 |
+
|
| 160 |
+
{%- macro format_tool_response_block(tool_name, response) -%}
|
| 161 |
+
{{- '<|tool_response>' -}}
|
| 162 |
+
{%- if response is mapping -%}
|
| 163 |
+
{{- 'response:' + tool_name + '{' -}}
|
| 164 |
+
{%- for key, value in response | dictsort -%}
|
| 165 |
+
{{- key -}}:{{- format_argument(value, escape_keys=False) -}}
|
| 166 |
+
{%- if not loop.last %},{% endif -%}
|
| 167 |
+
{%- endfor -%}
|
| 168 |
+
{{- '}' -}}
|
| 169 |
+
{%- else -%}
|
| 170 |
+
{{- 'response:' + tool_name + '{value:' + format_argument(response, escape_keys=False) + '}' -}}
|
| 171 |
+
{%- endif -%}
|
| 172 |
+
{{- '<tool_response|>' -}}
|
| 173 |
+
{%- endmacro -%}
|
| 174 |
+
|
| 175 |
+
{%- set ns = namespace(prev_message_type=None) -%}
|
| 176 |
+
{%- set loop_messages = messages -%}
|
| 177 |
+
{{- bos_token -}}
|
| 178 |
+
{#- Handle System/Tool Definitions Block -#}
|
| 179 |
+
{%- if (enable_thinking is defined and enable_thinking) or tools or messages[0]['role'] in ['system', 'developer'] -%}
|
| 180 |
+
{{- '<|turn>system\n' -}}
|
| 181 |
+
|
| 182 |
+
{#- Inject Thinking token at the very top of the FIRST system turn -#}
|
| 183 |
+
{%- if enable_thinking is defined and enable_thinking -%}
|
| 184 |
+
{{- '<|think|>\n' -}}
|
| 185 |
+
{%- set ns.prev_message_type = 'think' -%}
|
| 186 |
+
{%- endif -%}
|
| 187 |
+
|
| 188 |
+
{%- if messages[0]['role'] in ['system', 'developer'] -%}
|
| 189 |
+
{{- messages[0]['content'] | trim -}}
|
| 190 |
+
{%- set loop_messages = messages[1:] -%}
|
| 191 |
+
{%- endif -%}
|
| 192 |
+
|
| 193 |
+
{%- if tools -%}
|
| 194 |
+
{%- for tool in tools %}
|
| 195 |
+
{{- '<|tool>' -}}
|
| 196 |
+
{{- format_function_declaration(tool) | trim -}}
|
| 197 |
+
{{- '<tool|>' -}}
|
| 198 |
+
{%- endfor %}
|
| 199 |
+
{%- set ns.prev_message_type = 'tool' -%}
|
| 200 |
+
{%- endif -%}
|
| 201 |
+
|
| 202 |
+
{{- '<turn|>\n' -}}
|
| 203 |
+
{%- endif %}
|
| 204 |
+
|
| 205 |
+
{#- Pre-scan: find last user message index for reasoning guard -#}
|
| 206 |
+
{%- set ns_turn = namespace(last_user_idx=-1) -%}
|
| 207 |
+
{%- for i in range(loop_messages | length) -%}
|
| 208 |
+
{%- if loop_messages[i]['role'] == 'user' -%}
|
| 209 |
+
{%- set ns_turn.last_user_idx = i -%}
|
| 210 |
+
{%- endif -%}
|
| 211 |
+
{%- endfor -%}
|
| 212 |
+
|
| 213 |
+
{#- Loop through messages -#}
|
| 214 |
+
{%- for message in loop_messages -%}
|
| 215 |
+
{%- if message['role'] != 'tool' -%}
|
| 216 |
+
{%- set ns.prev_message_type = None -%}
|
| 217 |
+
{%- set role = 'model' if message['role'] == 'assistant' else message['role'] -%}
|
| 218 |
+
{#- Detect continuation: suppress duplicate <|turn>model when previous non-tool message was also assistant -#}
|
| 219 |
+
{%- set prev_nt = namespace(role=None, found=false) -%}
|
| 220 |
+
{%- if loop.index0 > 0 -%}
|
| 221 |
+
{%- for j in range(loop.index0 - 1, -1, -1) -%}
|
| 222 |
+
{%- if not prev_nt.found -%}
|
| 223 |
+
{%- if loop_messages[j]['role'] != 'tool' -%}
|
| 224 |
+
{%- set prev_nt.role = loop_messages[j]['role'] -%}
|
| 225 |
+
{%- set prev_nt.found = true -%}
|
| 226 |
+
{%- endif -%}
|
| 227 |
+
{%- endif -%}
|
| 228 |
+
{%- endfor -%}
|
| 229 |
+
{%- endif -%}
|
| 230 |
+
{%- set continue_same_model_turn = (role == 'model' and prev_nt.role == 'assistant') -%}
|
| 231 |
+
{%- if not continue_same_model_turn -%}
|
| 232 |
+
{{- '<|turn>' + role + '\n' }}
|
| 233 |
+
{%- endif -%}
|
| 234 |
+
|
| 235 |
+
{#- Render reasoning/reasoning_content as thinking channel -#}
|
| 236 |
+
{%- set thinking_text = message.get('reasoning') or message.get('reasoning_content') -%}
|
| 237 |
+
{%- if thinking_text and loop.index0 > ns_turn.last_user_idx and message.get('tool_calls') -%}
|
| 238 |
+
{{- '<|channel>thought\n' + thinking_text + '\n<channel|>' -}}
|
| 239 |
+
{%- endif -%}
|
| 240 |
+
|
| 241 |
+
{%- if message['tool_calls'] -%}
|
| 242 |
+
{%- for tool_call in message['tool_calls'] -%}
|
| 243 |
+
{%- set function = tool_call['function'] -%}
|
| 244 |
+
{{- '<|tool_call>call:' + function['name'] + '{' -}}
|
| 245 |
+
{%- if function['arguments'] is mapping -%}
|
| 246 |
+
{%- set ns_args = namespace(found_first=false) -%}
|
| 247 |
+
{%- for key, value in function['arguments'] | dictsort -%}
|
| 248 |
+
{%- if ns_args.found_first %},{% endif -%}
|
| 249 |
+
{%- set ns_args.found_first = true -%}
|
| 250 |
+
{{- key -}}:{{- format_argument(value, escape_keys=False) -}}
|
| 251 |
+
{%- endfor -%}
|
| 252 |
+
{%- elif function['arguments'] is string -%}
|
| 253 |
+
{{- function['arguments'] -}}
|
| 254 |
+
{%- endif -%}
|
| 255 |
+
{{- '}<tool_call|>' -}}
|
| 256 |
+
{%- endfor -%}
|
| 257 |
+
{%- set ns.prev_message_type = 'tool_call' -%}
|
| 258 |
+
{%- endif -%}
|
| 259 |
+
|
| 260 |
+
{%- set ns_tr_out = namespace(flag=false) -%}
|
| 261 |
+
{%- if message.get('tool_responses') -%}
|
| 262 |
+
{#- Legacy: tool_responses embedded on the assistant message (Google/Gemma native) -#}
|
| 263 |
+
{%- for tool_response in message['tool_responses'] -%}
|
| 264 |
+
{{- format_tool_response_block(tool_response['name'] | default('unknown'), tool_response['response']) -}}
|
| 265 |
+
{%- set ns_tr_out.flag = true -%}
|
| 266 |
+
{%- set ns.prev_message_type = 'tool_response' -%}
|
| 267 |
+
{%- endfor -%}
|
| 268 |
+
{%- elif message.get('tool_calls') -%}
|
| 269 |
+
{#- OpenAI Chat Completions: forward-scan consecutive role:tool messages -#}
|
| 270 |
+
{%- set ns_tool_scan = namespace(stopped=false) -%}
|
| 271 |
+
{%- for k in range(loop.index0 + 1, loop_messages | length) -%}
|
| 272 |
+
{%- if ns_tool_scan.stopped -%}
|
| 273 |
+
{%- elif loop_messages[k]['role'] != 'tool' -%}
|
| 274 |
+
{%- set ns_tool_scan.stopped = true -%}
|
| 275 |
+
{%- else -%}
|
| 276 |
+
{%- set follow = loop_messages[k] -%}
|
| 277 |
+
{#- Resolve tool_call_id to function name -#}
|
| 278 |
+
{%- set ns_tname = namespace(name=follow.get('name') | default('unknown')) -%}
|
| 279 |
+
{%- for tc in message['tool_calls'] -%}
|
| 280 |
+
{%- if tc.get('id') == follow.get('tool_call_id') -%}
|
| 281 |
+
{%- set ns_tname.name = tc['function']['name'] -%}
|
| 282 |
+
{%- endif -%}
|
| 283 |
+
{%- endfor -%}
|
| 284 |
+
{#- Handle content as string or content-parts array -#}
|
| 285 |
+
{%- set tool_body = follow.get('content') -%}
|
| 286 |
+
{%- if tool_body is string -%}
|
| 287 |
+
{{- format_tool_response_block(ns_tname.name, tool_body) -}}
|
| 288 |
+
{%- elif tool_body is sequence and tool_body is not string -%}
|
| 289 |
+
{%- set ns_txt = namespace(s='') -%}
|
| 290 |
+
{%- for part in tool_body -%}
|
| 291 |
+
{%- if part.get('type') == 'text' -%}
|
| 292 |
+
{%- set ns_txt.s = ns_txt.s + (part.get('text') | default('')) -%}
|
| 293 |
+
{%- endif -%}
|
| 294 |
+
{%- endfor -%}
|
| 295 |
+
{{- format_tool_response_block(ns_tname.name, ns_txt.s) -}}
|
| 296 |
+
{%- else -%}
|
| 297 |
+
{{- format_tool_response_block(ns_tname.name, tool_body) -}}
|
| 298 |
+
{%- endif -%}
|
| 299 |
+
{%- set ns_tr_out.flag = true -%}
|
| 300 |
+
{%- set ns.prev_message_type = 'tool_response' -%}
|
| 301 |
+
{%- endif -%}
|
| 302 |
+
{%- endfor -%}
|
| 303 |
+
{%- endif -%}
|
| 304 |
+
|
| 305 |
+
{%- if message['content'] is string -%}
|
| 306 |
+
{%- if role == 'model' -%}
|
| 307 |
+
{{- strip_thinking(message['content']) -}}
|
| 308 |
+
{%- else -%}
|
| 309 |
+
{{- message['content'] | trim -}}
|
| 310 |
+
{%- endif -%}
|
| 311 |
+
{%- elif message['content'] is sequence -%}
|
| 312 |
+
{%- for item in message['content'] -%}
|
| 313 |
+
{%- if item['type'] == 'text' -%}
|
| 314 |
+
{%- if role == 'model' -%}
|
| 315 |
+
{{- strip_thinking(item['text']) -}}
|
| 316 |
+
{%- else -%}
|
| 317 |
+
{{- item['text'] | trim -}}
|
| 318 |
+
{%- endif -%}
|
| 319 |
+
{%- elif item['type'] == 'image' -%}
|
| 320 |
+
{{- '<|image|>' -}}
|
| 321 |
+
{%- set ns.prev_message_type = 'image' -%}
|
| 322 |
+
{%- elif item['type'] == 'audio' -%}
|
| 323 |
+
{{- '<|audio|>' -}}
|
| 324 |
+
{%- set ns.prev_message_type = 'audio' -%}
|
| 325 |
+
{%- elif item['type'] == 'video' -%}
|
| 326 |
+
{{- '<|video|>' -}}
|
| 327 |
+
{%- set ns.prev_message_type = 'video' -%}
|
| 328 |
+
{%- endif -%}
|
| 329 |
+
{%- endfor -%}
|
| 330 |
+
{%- endif -%}
|
| 331 |
+
|
| 332 |
+
{%- if ns.prev_message_type == 'tool_call' and not ns_tr_out.flag -%}
|
| 333 |
+
{{- '<|tool_response>' -}}
|
| 334 |
+
{%- elif not (ns_tr_out.flag and not message.get('content')) -%}
|
| 335 |
+
{{- '<turn|>\n' -}}
|
| 336 |
+
{%- endif -%}
|
| 337 |
+
{%- endif -%}
|
| 338 |
+
{%- endfor -%}
|
| 339 |
+
|
| 340 |
+
{%- if add_generation_prompt -%}
|
| 341 |
+
{%- if ns.prev_message_type != 'tool_response' and ns.prev_message_type != 'tool_call' -%}
|
| 342 |
+
{{- '<|turn>model\n' -}}
|
| 343 |
+
{%- endif -%}
|
| 344 |
+
{%- endif -%}
|
tokenizer/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc8d3a0ce36466ccc1278bf987df5f71db1719b9ca6b4118264f45cb627bfe0f
|
| 3 |
+
size 32169626
|
tokenizer/tokenizer_config.json
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"audio_token": "<|audio|>",
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"boa_token": "<|audio>",
|
| 5 |
+
"boi_token": "<|image>",
|
| 6 |
+
"bos_token": "<bos>",
|
| 7 |
+
"eoa_token": "<audio|>",
|
| 8 |
+
"eoc_token": "<channel|>",
|
| 9 |
+
"eoi_token": "<image|>",
|
| 10 |
+
"eos_token": "<eos>",
|
| 11 |
+
"eot_token": "<turn|>",
|
| 12 |
+
"escape_token": "<|\"|>",
|
| 13 |
+
"etc_token": "<tool_call|>",
|
| 14 |
+
"etd_token": "<tool|>",
|
| 15 |
+
"etr_token": "<tool_response|>",
|
| 16 |
+
"extra_special_tokens": [
|
| 17 |
+
"<|video|>"
|
| 18 |
+
],
|
| 19 |
+
"image_token": "<|image|>",
|
| 20 |
+
"is_local": false,
|
| 21 |
+
"mask_token": "<mask>",
|
| 22 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 23 |
+
"model_specific_special_tokens": {
|
| 24 |
+
"audio_token": "<|audio|>",
|
| 25 |
+
"boa_token": "<|audio>",
|
| 26 |
+
"boi_token": "<|image>",
|
| 27 |
+
"eoa_token": "<audio|>",
|
| 28 |
+
"eoc_token": "<channel|>",
|
| 29 |
+
"eoi_token": "<image|>",
|
| 30 |
+
"eot_token": "<turn|>",
|
| 31 |
+
"escape_token": "<|\"|>",
|
| 32 |
+
"etc_token": "<tool_call|>",
|
| 33 |
+
"etd_token": "<tool|>",
|
| 34 |
+
"etr_token": "<tool_response|>",
|
| 35 |
+
"image_token": "<|image|>",
|
| 36 |
+
"soc_token": "<|channel>",
|
| 37 |
+
"sot_token": "<|turn>",
|
| 38 |
+
"stc_token": "<|tool_call>",
|
| 39 |
+
"std_token": "<|tool>",
|
| 40 |
+
"str_token": "<|tool_response>",
|
| 41 |
+
"think_token": "<|think|>"
|
| 42 |
+
},
|
| 43 |
+
"pad_token": "<pad>",
|
| 44 |
+
"padding_side": "right",
|
| 45 |
+
"processor_class": "Gemma4Processor",
|
| 46 |
+
"response_schema": {
|
| 47 |
+
"properties": {
|
| 48 |
+
"content": {
|
| 49 |
+
"type": "string"
|
| 50 |
+
},
|
| 51 |
+
"role": {
|
| 52 |
+
"const": "assistant"
|
| 53 |
+
},
|
| 54 |
+
"thinking": {
|
| 55 |
+
"type": "string"
|
| 56 |
+
},
|
| 57 |
+
"tool_calls": {
|
| 58 |
+
"items": {
|
| 59 |
+
"properties": {
|
| 60 |
+
"function": {
|
| 61 |
+
"properties": {
|
| 62 |
+
"arguments": {
|
| 63 |
+
"additionalProperties": {},
|
| 64 |
+
"type": "object",
|
| 65 |
+
"x-parser": "gemma4-tool-call"
|
| 66 |
+
},
|
| 67 |
+
"name": {
|
| 68 |
+
"type": "string"
|
| 69 |
+
}
|
| 70 |
+
},
|
| 71 |
+
"type": "object",
|
| 72 |
+
"x-regex": "call\\:(?P<name>\\w+)(?P<arguments>\\{.*\\})"
|
| 73 |
+
},
|
| 74 |
+
"type": {
|
| 75 |
+
"const": "function"
|
| 76 |
+
}
|
| 77 |
+
},
|
| 78 |
+
"type": "object"
|
| 79 |
+
},
|
| 80 |
+
"type": "array",
|
| 81 |
+
"x-regex-iterator": "<\\|tool_call>(.*?)<tool_call\\|>"
|
| 82 |
+
}
|
| 83 |
+
},
|
| 84 |
+
"type": "object",
|
| 85 |
+
"x-regex": "(\\<\\|channel\\>thought\\n(?P<thinking>.*?)\\<channel\\|\\>)?(?P<tool_calls>\\<\\|tool_call\\>.*\\<tool_call\\|\\>)?(?P<content>(?:(?!\\<turn\\|\\>)(?!\\<\\|tool_response\\>).)+)?(?:\\<turn\\|\\>|\\<\\|tool_response\\>)?"
|
| 86 |
+
},
|
| 87 |
+
"soc_token": "<|channel>",
|
| 88 |
+
"sot_token": "<|turn>",
|
| 89 |
+
"stc_token": "<|tool_call>",
|
| 90 |
+
"std_token": "<|tool>",
|
| 91 |
+
"str_token": "<|tool_response>",
|
| 92 |
+
"think_token": "<|think|>",
|
| 93 |
+
"tokenizer_class": "GemmaTokenizer",
|
| 94 |
+
"unk_token": "<unk>"
|
| 95 |
+
}
|