Text Generation
PEFT
Safetensors
English
Spanish
llama4_text
agriculture
climate
crop-calendar
evidence-grounding
bilingual
lora
autoscientist
adaption
conversational
4-bit precision
bitsandbytes
Instructions to use MarianaCodebase/AgroVeritas-Scout-17B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use MarianaCodebase/AgroVeritas-Scout-17B with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("togethercomputer/Llama-4-Scout-17B-16E-Instruct_bnb_4bit") model = PeftModel.from_pretrained(base_model, "MarianaCodebase/AgroVeritas-Scout-17B") - Notebooks
- Google Colab
- Kaggle
Add files using upload-large-folder tool
Browse files- .gitattributes +1 -0
- MANIFEST.json +15 -0
- README.md +150 -0
- adapter_config.json +42 -0
- adapter_model.safetensors +3 -0
- autoscientist_config.json +25 -0
- chat_template.jinja +123 -0
- config.json +215 -0
- evaluation.json +30 -0
- special_tokens_map.json +5 -0
- tokenizer.json +3 -0
- tokenizer_config.json +17 -0
- trainer_state.json +1187 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ 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 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
MANIFEST.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_id": "adaption_llama_4_scout_17b_16_agri_evidence_qa_158a7fd8",
|
| 3 |
+
"files": [
|
| 4 |
+
{"file": "adapter_config.json", "bytes": 1017, "sha256": "3d9dfbeea1070c31a5f9939b364dac9b1ff98c111a0b715b6ba3616b316dd5ed"},
|
| 5 |
+
{"file": "adapter_model.safetensors", "bytes": 893484120, "sha256": "df51ce45612a8764559364fd383302ba5cc02da5c5becb0b4432cabcff527000"},
|
| 6 |
+
{"file": "autoscientist_config.json", "bytes": 896, "sha256": "f55a12fafac6bfe5e1f6919ec3387632b5db3e6bfc14c45c49cec89eaa025813"},
|
| 7 |
+
{"file": "chat_template.jinja", "bytes": 4949, "sha256": "01a91bfb2e84c8055bf7b635898fef3cae0b69e42ac5634c212d308e0e9091bd"},
|
| 8 |
+
{"file": "config.json", "bytes": 3741, "sha256": "a4ca627fb832858b898649a5c3259261b28f40455facdd681d815613926f7176"},
|
| 9 |
+
{"file": "evaluation.json", "bytes": 1068, "sha256": "5af3f1376df6970ad7e60d5a9eccf62168b847c893727c5bbb0da7c309d17e0b"},
|
| 10 |
+
{"file": "special_tokens_map.json", "bytes": 105, "sha256": "6c9d226d2e9b9a4be651dd981f04ba736a4b0136eac6499d9eb37ff91794d722"},
|
| 11 |
+
{"file": "tokenizer.json", "bytes": 27948578, "sha256": "172c9eb4beafc72601690da3ccfcede5c2e6806a8d5ec1fca33e22acea8023a4"},
|
| 12 |
+
{"file": "tokenizer_config.json", "bytes": 432, "sha256": "6a0a583a4792e366c1efa0e8bdf59e1e38c3630154bcecd240fecb0fdbdedba1"},
|
| 13 |
+
{"file": "trainer_state.json", "bytes": 30607, "sha256": "8f25a9df1fead37629e0c029aad254a33733131499b9673bef5abbbf93f219dd"}
|
| 14 |
+
]
|
| 15 |
+
}
|
README.md
CHANGED
|
@@ -1,3 +1,153 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
license: llama4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: togethercomputer/Llama-4-Scout-17B-16E-Instruct_bnb_4bit
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
license: llama4
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
- es
|
| 9 |
+
tags:
|
| 10 |
+
- agriculture
|
| 11 |
+
- climate
|
| 12 |
+
- crop-calendar
|
| 13 |
+
- evidence-grounding
|
| 14 |
+
- bilingual
|
| 15 |
+
- lora
|
| 16 |
+
- autoscientist
|
| 17 |
+
- adaption
|
| 18 |
+
datasets:
|
| 19 |
+
- AgroVeritas-Evidence-QA
|
| 20 |
---
|
| 21 |
+
|
| 22 |
+
# AgroVeritas-Scout-17B
|
| 23 |
+
|
| 24 |
+
> **Agricultural intelligence you can audit.**
|
| 25 |
+
|
| 26 |
+
AgroVeritas-Scout-17B is a bilingual English–Spanish agricultural reasoning adapter for Llama 4 Scout, trained with Adaption AutoScientist. It is designed to answer regional crop-calendar and historical climate questions while making the evidence, reasoning, limitations, and need for local confirmation explicit.
|
| 27 |
+
|
| 28 |
+
## The result that matters
|
| 29 |
+
|
| 30 |
+
On Adaption's held-out **Agriculture category tasks**, the fine-tuned model achieved a **78% win rate** versus **23% for its frozen base model**.
|
| 31 |
+
|
| 32 |
+
| Model | Agriculture win rate |
|
| 33 |
+
|---|---:|
|
| 34 |
+
| Frozen Llama 4 Scout baseline | 23% |
|
| 35 |
+
| **AgroVeritas adapted model** | **78%** |
|
| 36 |
+
|
| 37 |
+
That is a **+55 percentage-point improvement**, a **+239% relative lift**, and **3.39× the baseline win rate** under the platform's head-to-head evaluation.
|
| 38 |
+
|
| 39 |
+
The training dataset also reached **A / 10.0 out of 10** on Adaption quality evaluation. The final same-run data score improved from **9.0 to 10.0 (+11.1% relative)**; the project as a whole progressed from an early **C / 5.0** prototype to the final **A / 10.0** release.
|
| 40 |
+
|
| 41 |
+
The exact exported training artifact contains **28,220 rows**: **17,094 agriculture-core examples** and **11,126 AutoScientist expansion examples**, a **39.4% general-purpose diversity buffer**.
|
| 42 |
+
|
| 43 |
+
## Why AgroVeritas exists
|
| 44 |
+
|
| 45 |
+
Agricultural answers fail when models blur three different things: a published crop calendar, historical climate, and current field reality. AgroVeritas teaches a strict evidence contract:
|
| 46 |
+
|
| 47 |
+
1. Give the answer that is supported by the record.
|
| 48 |
+
2. Name the evidence used.
|
| 49 |
+
3. Show the reasoning link.
|
| 50 |
+
4. State what the evidence cannot establish.
|
| 51 |
+
5. Direct the user to current local confirmation before operational decisions.
|
| 52 |
+
|
| 53 |
+
This turns a generic assistant into an auditable agricultural evidence layer rather than an unqualified recommendation engine.
|
| 54 |
+
|
| 55 |
+
## Model details
|
| 56 |
+
|
| 57 |
+
- **AutoScientist model ID:** `adaption_llama_4_scout_17b_16_agri_evidence_qa_158a7fd8`
|
| 58 |
+
- **Architecture:** Llama 4 Scout 17B active / 16 experts, 109B total parameters.
|
| 59 |
+
- **Exported base reference:** `togethercomputer/Llama-4-Scout-17B-16E-Instruct_bnb_4bit`
|
| 60 |
+
- **Adaptation:** PEFT LoRA supervised fine-tuning.
|
| 61 |
+
- **Adapter rank / alpha:** 64 / 128.
|
| 62 |
+
- **Languages:** English and Latin American Spanish.
|
| 63 |
+
- **Domain:** Agriculture.
|
| 64 |
+
- **Framework:** PEFT 0.15.1.
|
| 65 |
+
- **License:** Llama 4 Community License. Base-model access and acceptable-use terms apply.
|
| 66 |
+
|
| 67 |
+
## Training recipe
|
| 68 |
+
|
| 69 |
+
| Parameter | Value |
|
| 70 |
+
|---|---|
|
| 71 |
+
| Epochs | 3 |
|
| 72 |
+
| Learning rate | `1e-4` |
|
| 73 |
+
| Scheduler | cosine |
|
| 74 |
+
| Minimum LR ratio | 0.1 |
|
| 75 |
+
| Warmup ratio | 0.1 |
|
| 76 |
+
| Weight decay | 0.01 |
|
| 77 |
+
| Maximum gradient norm | 1.0 |
|
| 78 |
+
| LoRA rank | 64 |
|
| 79 |
+
| LoRA alpha | 128 |
|
| 80 |
+
| LoRA dropout | 0 |
|
| 81 |
+
| Training method | SFT |
|
| 82 |
+
| Train on inputs | false |
|
| 83 |
+
| Evaluation checkpoints | 5 |
|
| 84 |
+
|
| 85 |
+
LoRA was injected into `q_proj`, `k_proj`, `v_proj`, `o_proj`, and the shared-expert and feed-forward gate/up/down projections. Training completed 159 global steps across 3 epochs. Exported trainer metrics show validation loss moving from **0.7566 at the first recorded evaluation to 0.6824 at completion**.
|
| 86 |
+
|
| 87 |
+
## Evaluation notes
|
| 88 |
+
|
| 89 |
+
- The 78% value is the Adaption Agriculture category win rate shown for the selected `158a7fd8` run.
|
| 90 |
+
- It is a held-out platform evaluation; organizer prompts are not disclosed.
|
| 91 |
+
- The weaker retry ending in `2329bca3` is not this release.
|
| 92 |
+
- The C→A claim describes successive project dataset versions; it is not substituted for the final same-run A→A evaluation.
|
| 93 |
+
- No private AgroVeritas holdout or private evaluation fact group entered adaptation or training.
|
| 94 |
+
|
| 95 |
+
## Intended use
|
| 96 |
+
|
| 97 |
+
- Evidence-grounded crop-calendar questions.
|
| 98 |
+
- Regional and historical climate explanation.
|
| 99 |
+
- Bilingual agricultural assistants and research prototypes.
|
| 100 |
+
- Workflows that need visible provenance, limitations, and calibrated uncertainty.
|
| 101 |
+
|
| 102 |
+
## Out-of-scope use and safety
|
| 103 |
+
|
| 104 |
+
Do not treat model output as live weather, field scouting, diagnosis, pesticide instructions, financial advice, or a guarantee of yield. Crop calendars and climatology can be outdated or locally incomplete. Verify material decisions with current authoritative forecasts, label instructions, local regulations, agronomists, and extension services.
|
| 105 |
+
|
| 106 |
+
## Load the adapter
|
| 107 |
+
|
| 108 |
+
The repository contains a PEFT adapter, not a standalone copy of the Llama 4 base model. You must separately obtain access to a compatible Llama 4 Scout checkpoint and comply with its license.
|
| 109 |
+
|
| 110 |
+
```python
|
| 111 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 112 |
+
from peft import PeftModel
|
| 113 |
+
|
| 114 |
+
base_id = "togethercomputer/Llama-4-Scout-17B-16E-Instruct_bnb_4bit"
|
| 115 |
+
adapter_id = "REPLACE_WITH_HF_MODEL_REPO"
|
| 116 |
+
|
| 117 |
+
tokenizer = AutoTokenizer.from_pretrained(adapter_id)
|
| 118 |
+
base = AutoModelForCausalLM.from_pretrained(
|
| 119 |
+
base_id,
|
| 120 |
+
device_map="auto",
|
| 121 |
+
trust_remote_code=True,
|
| 122 |
+
)
|
| 123 |
+
model = PeftModel.from_pretrained(base, adapter_id)
|
| 124 |
+
|
| 125 |
+
messages = [{
|
| 126 |
+
"role": "user",
|
| 127 |
+
"content": "Using cited crop-calendar and historical climate evidence, explain the planting window for maize in my region. State limitations and what I should verify locally."
|
| 128 |
+
}]
|
| 129 |
+
inputs = tokenizer.apply_chat_template(
|
| 130 |
+
messages,
|
| 131 |
+
add_generation_prompt=True,
|
| 132 |
+
return_tensors="pt",
|
| 133 |
+
).to(model.device)
|
| 134 |
+
output = model.generate(inputs, max_new_tokens=600, do_sample=False)
|
| 135 |
+
print(tokenizer.decode(output[0][inputs.shape[-1]:], skip_special_tokens=True))
|
| 136 |
+
```
|
| 137 |
+
|
| 138 |
+
## Open release
|
| 139 |
+
|
| 140 |
+
The exact adapted dataset and this adapter are released publicly on both Hugging Face and Kaggle. The companion AutoScientist interface demonstrates bilingual evidence-bounded responses, and the submission film shows the problem, method, and verified platform results.
|
| 141 |
+
|
| 142 |
+
## Citation
|
| 143 |
+
|
| 144 |
+
```bibtex
|
| 145 |
+
@software{agroveritas_scout_2026,
|
| 146 |
+
title = {AgroVeritas-Scout-17B: Evidence-Bounded Bilingual Agriculture},
|
| 147 |
+
author = {Sinisterra, Mariana},
|
| 148 |
+
year = {2026},
|
| 149 |
+
note = {Fine-tuned with AutoScientist by Adaption}
|
| 150 |
+
}
|
| 151 |
+
```
|
| 152 |
+
|
| 153 |
+
Built with **Adaptive Data** and **AutoScientist** by Adaption.
|
adapter_config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "togethercomputer/Llama-4-Scout-17B-16E-Instruct_bnb_4bit",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": [],
|
| 9 |
+
"fan_in_fan_out": false,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 128,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.0,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"r": 64,
|
| 24 |
+
"rank_pattern": {},
|
| 25 |
+
"revision": null,
|
| 26 |
+
"target_modules": [
|
| 27 |
+
"k_proj",
|
| 28 |
+
"shared_expert.down_proj",
|
| 29 |
+
"o_proj",
|
| 30 |
+
"shared_expert.gate_proj",
|
| 31 |
+
"feed_forward.gate_proj",
|
| 32 |
+
"shared_expert.up_proj",
|
| 33 |
+
"feed_forward.up_proj",
|
| 34 |
+
"v_proj",
|
| 35 |
+
"q_proj",
|
| 36 |
+
"feed_forward.down_proj"
|
| 37 |
+
],
|
| 38 |
+
"task_type": "CAUSAL_LM",
|
| 39 |
+
"trainable_token_indices": null,
|
| 40 |
+
"use_dora": false,
|
| 41 |
+
"use_rslora": false
|
| 42 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df51ce45612a8764559364fd383302ba5cc02da5c5becb0b4432cabcff527000
|
| 3 |
+
size 893484120
|
autoscientist_config.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model": "meta-llama/Llama-4-Scout-17B-16E-Instruct",
|
| 3 |
+
"exported_base_reference": "togethercomputer/Llama-4-Scout-17B-16E-Instruct_bnb_4bit",
|
| 4 |
+
"winning_autoscientist_model_id": "adaption_llama_4_scout_17b_16_agri_evidence_qa_158a7fd8",
|
| 5 |
+
"hyperparams": {
|
| 6 |
+
"base_model_size": "109B",
|
| 7 |
+
"n_epochs": 3,
|
| 8 |
+
"batch_size": "max",
|
| 9 |
+
"learning_rate": 0.0001,
|
| 10 |
+
"lora": true,
|
| 11 |
+
"lora_r": 64,
|
| 12 |
+
"lora_alpha": 128,
|
| 13 |
+
"lora_dropout": 0,
|
| 14 |
+
"lora_trainable_modules": "q_proj,k_proj,v_proj,o_proj,shared_expert.gate_proj,shared_expert.up_proj,shared_expert.down_proj,feed_forward.gate_proj,feed_forward.up_proj,feed_forward.down_proj",
|
| 15 |
+
"lr_scheduler_type": "cosine",
|
| 16 |
+
"min_lr_ratio": 0.1,
|
| 17 |
+
"scheduler_num_cycles": 0.5,
|
| 18 |
+
"warmup_ratio": 0.1,
|
| 19 |
+
"max_grad_norm": 1,
|
| 20 |
+
"weight_decay": 0.01,
|
| 21 |
+
"n_evals": 5,
|
| 22 |
+
"training_method": "sft",
|
| 23 |
+
"train_on_inputs": false
|
| 24 |
+
}
|
| 25 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{- bos_token }}
|
| 2 |
+
{%- if custom_tools is defined %}
|
| 3 |
+
{%- set tools = custom_tools %}
|
| 4 |
+
{%- endif %}
|
| 5 |
+
{%- if not tools_in_user_message is defined %}
|
| 6 |
+
{%- set tools_in_user_message = true %}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{%- if not date_string is defined %}
|
| 9 |
+
{%- if strftime_now is defined %}
|
| 10 |
+
{%- set date_string = strftime_now("%d %b %Y") %}
|
| 11 |
+
{%- else %}
|
| 12 |
+
{%- set date_string = "26 Jul 2024" %}
|
| 13 |
+
{%- endif %}
|
| 14 |
+
{%- endif %}
|
| 15 |
+
{%- if not tools is defined %}
|
| 16 |
+
{%- set tools = none %}
|
| 17 |
+
{%- endif %}
|
| 18 |
+
|
| 19 |
+
{#- This block extracts the system message, so we can slot it into the right place. #}
|
| 20 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 21 |
+
{%- if messages[0]['content'] is string %}
|
| 22 |
+
{%- set system_message = messages[0]['content']|trim %}
|
| 23 |
+
{%- else %}
|
| 24 |
+
{#- FIXME: The processor requires an array, always. #}
|
| 25 |
+
{%- set system_message = messages[0]['content'][0]['text']|trim %}
|
| 26 |
+
{%- endif %}
|
| 27 |
+
{%- set messages = messages[1:] %}
|
| 28 |
+
{%- set user_supplied_system_message = true %}
|
| 29 |
+
{%- else %}
|
| 30 |
+
{%- set system_message = "" %}
|
| 31 |
+
{%- set user_supplied_system_message = false %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
|
| 34 |
+
{#- System message if the user supplied one #}
|
| 35 |
+
{%- if user_supplied_system_message %}
|
| 36 |
+
{{- "<|header_start|>system<|header_end|>\n\n" }}
|
| 37 |
+
{%- if tools is not none %}
|
| 38 |
+
{{- "Environment: ipython\n" }}
|
| 39 |
+
{%- endif %}
|
| 40 |
+
{%- if tools is not none and not tools_in_user_message %}
|
| 41 |
+
{{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
|
| 42 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 43 |
+
{{- "Do not use variables.\n\n" }}
|
| 44 |
+
{%- for t in tools %}
|
| 45 |
+
{{- t | tojson(indent=4) }}
|
| 46 |
+
{{- "\n\n" }}
|
| 47 |
+
{%- endfor %}
|
| 48 |
+
{%- endif %}
|
| 49 |
+
{{- system_message }}
|
| 50 |
+
{{- "<|eot|>" }}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
|
| 53 |
+
{#- Custom tools are passed in a user message with some extra guidance #}
|
| 54 |
+
{%- if tools_in_user_message and not tools is none %}
|
| 55 |
+
{#- Extract the first user message so we can plug it in here #}
|
| 56 |
+
{%- if messages | length != 0 %}
|
| 57 |
+
{%- set first_user_message = messages[0]['content']|trim %}
|
| 58 |
+
{%- set messages = messages[1:] %}
|
| 59 |
+
{%- else %}
|
| 60 |
+
{{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
|
| 61 |
+
{%- endif %}
|
| 62 |
+
{{- '<|header_start|>user<|header_end|>\n\n' -}}
|
| 63 |
+
{{- "Given the following functions, please respond with a JSON for a function call " }}
|
| 64 |
+
{{- "with its proper arguments that best answers the given prompt.\n\n" }}
|
| 65 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 66 |
+
{{- "Do not use variables.\n\n" }}
|
| 67 |
+
{%- for t in tools %}
|
| 68 |
+
{{- t | tojson(indent=4) }}
|
| 69 |
+
{{- "\n\n" }}
|
| 70 |
+
{%- endfor %}
|
| 71 |
+
{{- first_user_message + "<|eot|>"}}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
|
| 74 |
+
{%- for message in messages %}
|
| 75 |
+
{%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
|
| 76 |
+
{{- '<|header_start|>' + message['role'] + '<|header_end|>\n\n' }}
|
| 77 |
+
{%- if message['content'] is string %}
|
| 78 |
+
{{- message['content'] }}
|
| 79 |
+
{%- else %}
|
| 80 |
+
{%- for content in message['content'] %}
|
| 81 |
+
{%- if content['type'] == 'image' %}
|
| 82 |
+
{{- '<|image|>' }}
|
| 83 |
+
{%- elif content['type'] == 'text' %}
|
| 84 |
+
{{- content['text'] }}
|
| 85 |
+
{%- endif %}
|
| 86 |
+
{%- endfor %}
|
| 87 |
+
{%- endif %}
|
| 88 |
+
{{- "<|eot|>" }}
|
| 89 |
+
{%- elif 'tool_calls' in message and message.tool_calls|length > 0 %}
|
| 90 |
+
{{- '<|header_start|>assistant<|header_end|>\n\n' -}}
|
| 91 |
+
{{- '<|python_start|>' }}
|
| 92 |
+
{%- if message['content'] is string %}
|
| 93 |
+
{{- message['content'] }}
|
| 94 |
+
{%- else %}
|
| 95 |
+
{%- for content in message['content'] %}
|
| 96 |
+
{%- if content['type'] == 'image' %}
|
| 97 |
+
{{- '<|image|>' }}
|
| 98 |
+
{%- elif content['type'] == 'text' %}
|
| 99 |
+
{{- content['text'] }}
|
| 100 |
+
{%- endif %}
|
| 101 |
+
{%- endfor %}
|
| 102 |
+
{%- endif %}
|
| 103 |
+
{{- '<|python_end|>' }}
|
| 104 |
+
{%- for tool_call in message.tool_calls %}
|
| 105 |
+
{{- '{"name": "' + tool_call.function.name + '", ' }}
|
| 106 |
+
{{- '"parameters": ' }}
|
| 107 |
+
{{- tool_call.function.arguments | tojson }}
|
| 108 |
+
{{- "}" }}
|
| 109 |
+
{%- endfor %}
|
| 110 |
+
{{- "<|eot|>" }}
|
| 111 |
+
{%- elif message.role == "tool" or message.role == "ipython" %}
|
| 112 |
+
{{- "<|header_start|>ipython<|header_end|>\n\n" }}
|
| 113 |
+
{%- if message.content is mapping or message.content is iterable %}
|
| 114 |
+
{{- message.content | tojson }}
|
| 115 |
+
{%- else %}
|
| 116 |
+
{{- message.content }}
|
| 117 |
+
{%- endif %}
|
| 118 |
+
{{- "<|eot|>" }}
|
| 119 |
+
{%- endif %}
|
| 120 |
+
{%- endfor %}
|
| 121 |
+
{%- if add_generation_prompt %}
|
| 122 |
+
{{- '<|header_start|>assistant<|header_end|>\n\n' }}
|
| 123 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,215 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Llama4ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_chunk_size": 8192,
|
| 7 |
+
"attention_dropout": 0.0,
|
| 8 |
+
"attn_scale": 0.1,
|
| 9 |
+
"attn_temperature_tuning": true,
|
| 10 |
+
"bos_token_id": 200000,
|
| 11 |
+
"cache_implementation": "hybrid",
|
| 12 |
+
"dtype": "bfloat16",
|
| 13 |
+
"eos_token_id": 200008,
|
| 14 |
+
"floor_scale": 8192,
|
| 15 |
+
"for_llm_compressor": false,
|
| 16 |
+
"head_dim": 128,
|
| 17 |
+
"hidden_act": "silu",
|
| 18 |
+
"hidden_size": 5120,
|
| 19 |
+
"initializer_range": 0.02,
|
| 20 |
+
"interleave_moe_layer_step": 1,
|
| 21 |
+
"intermediate_size": 8192,
|
| 22 |
+
"intermediate_size_mlp": 16384,
|
| 23 |
+
"layer_types": [
|
| 24 |
+
"chunked_attention",
|
| 25 |
+
"chunked_attention",
|
| 26 |
+
"chunked_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"chunked_attention",
|
| 29 |
+
"chunked_attention",
|
| 30 |
+
"chunked_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"chunked_attention",
|
| 33 |
+
"chunked_attention",
|
| 34 |
+
"chunked_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"chunked_attention",
|
| 37 |
+
"chunked_attention",
|
| 38 |
+
"chunked_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"chunked_attention",
|
| 41 |
+
"chunked_attention",
|
| 42 |
+
"chunked_attention",
|
| 43 |
+
"full_attention",
|
| 44 |
+
"chunked_attention",
|
| 45 |
+
"chunked_attention",
|
| 46 |
+
"chunked_attention",
|
| 47 |
+
"full_attention",
|
| 48 |
+
"chunked_attention",
|
| 49 |
+
"chunked_attention",
|
| 50 |
+
"chunked_attention",
|
| 51 |
+
"full_attention",
|
| 52 |
+
"chunked_attention",
|
| 53 |
+
"chunked_attention",
|
| 54 |
+
"chunked_attention",
|
| 55 |
+
"full_attention",
|
| 56 |
+
"chunked_attention",
|
| 57 |
+
"chunked_attention",
|
| 58 |
+
"chunked_attention",
|
| 59 |
+
"full_attention",
|
| 60 |
+
"chunked_attention",
|
| 61 |
+
"chunked_attention",
|
| 62 |
+
"chunked_attention",
|
| 63 |
+
"full_attention",
|
| 64 |
+
"chunked_attention",
|
| 65 |
+
"chunked_attention",
|
| 66 |
+
"chunked_attention",
|
| 67 |
+
"full_attention",
|
| 68 |
+
"chunked_attention",
|
| 69 |
+
"chunked_attention",
|
| 70 |
+
"chunked_attention",
|
| 71 |
+
"full_attention"
|
| 72 |
+
],
|
| 73 |
+
"max_position_embeddings": 10485760,
|
| 74 |
+
"model_type": "llama4_text",
|
| 75 |
+
"moe_layers": [
|
| 76 |
+
0,
|
| 77 |
+
1,
|
| 78 |
+
2,
|
| 79 |
+
3,
|
| 80 |
+
4,
|
| 81 |
+
5,
|
| 82 |
+
6,
|
| 83 |
+
7,
|
| 84 |
+
8,
|
| 85 |
+
9,
|
| 86 |
+
10,
|
| 87 |
+
11,
|
| 88 |
+
12,
|
| 89 |
+
13,
|
| 90 |
+
14,
|
| 91 |
+
15,
|
| 92 |
+
16,
|
| 93 |
+
17,
|
| 94 |
+
18,
|
| 95 |
+
19,
|
| 96 |
+
20,
|
| 97 |
+
21,
|
| 98 |
+
22,
|
| 99 |
+
23,
|
| 100 |
+
24,
|
| 101 |
+
25,
|
| 102 |
+
26,
|
| 103 |
+
27,
|
| 104 |
+
28,
|
| 105 |
+
29,
|
| 106 |
+
30,
|
| 107 |
+
31,
|
| 108 |
+
32,
|
| 109 |
+
33,
|
| 110 |
+
34,
|
| 111 |
+
35,
|
| 112 |
+
36,
|
| 113 |
+
37,
|
| 114 |
+
38,
|
| 115 |
+
39,
|
| 116 |
+
40,
|
| 117 |
+
41,
|
| 118 |
+
42,
|
| 119 |
+
43,
|
| 120 |
+
44,
|
| 121 |
+
45,
|
| 122 |
+
46,
|
| 123 |
+
47
|
| 124 |
+
],
|
| 125 |
+
"no_rope_layer_interval": 4,
|
| 126 |
+
"no_rope_layers": [
|
| 127 |
+
1,
|
| 128 |
+
1,
|
| 129 |
+
1,
|
| 130 |
+
0,
|
| 131 |
+
1,
|
| 132 |
+
1,
|
| 133 |
+
1,
|
| 134 |
+
0,
|
| 135 |
+
1,
|
| 136 |
+
1,
|
| 137 |
+
1,
|
| 138 |
+
0,
|
| 139 |
+
1,
|
| 140 |
+
1,
|
| 141 |
+
1,
|
| 142 |
+
0,
|
| 143 |
+
1,
|
| 144 |
+
1,
|
| 145 |
+
1,
|
| 146 |
+
0,
|
| 147 |
+
1,
|
| 148 |
+
1,
|
| 149 |
+
1,
|
| 150 |
+
0,
|
| 151 |
+
1,
|
| 152 |
+
1,
|
| 153 |
+
1,
|
| 154 |
+
0,
|
| 155 |
+
1,
|
| 156 |
+
1,
|
| 157 |
+
1,
|
| 158 |
+
0,
|
| 159 |
+
1,
|
| 160 |
+
1,
|
| 161 |
+
1,
|
| 162 |
+
0,
|
| 163 |
+
1,
|
| 164 |
+
1,
|
| 165 |
+
1,
|
| 166 |
+
0,
|
| 167 |
+
1,
|
| 168 |
+
1,
|
| 169 |
+
1,
|
| 170 |
+
0,
|
| 171 |
+
1,
|
| 172 |
+
1,
|
| 173 |
+
1,
|
| 174 |
+
0
|
| 175 |
+
],
|
| 176 |
+
"num_attention_heads": 40,
|
| 177 |
+
"num_experts_per_tok": 1,
|
| 178 |
+
"num_hidden_layers": 48,
|
| 179 |
+
"num_key_value_heads": 8,
|
| 180 |
+
"num_local_experts": 16,
|
| 181 |
+
"output_router_logits": false,
|
| 182 |
+
"pad_token_id": 200018,
|
| 183 |
+
"quantization_config": {
|
| 184 |
+
"_load_in_4bit": true,
|
| 185 |
+
"_load_in_8bit": false,
|
| 186 |
+
"bnb_4bit_compute_dtype": "bfloat16",
|
| 187 |
+
"bnb_4bit_quant_storage": "bfloat16",
|
| 188 |
+
"bnb_4bit_quant_type": "nf4",
|
| 189 |
+
"bnb_4bit_use_double_quant": false,
|
| 190 |
+
"llm_int8_enable_fp32_cpu_offload": false,
|
| 191 |
+
"llm_int8_has_fp16_weight": false,
|
| 192 |
+
"llm_int8_skip_modules": null,
|
| 193 |
+
"llm_int8_threshold": 6.0,
|
| 194 |
+
"load_in_4bit": true,
|
| 195 |
+
"load_in_8bit": false,
|
| 196 |
+
"quant_method": "bitsandbytes"
|
| 197 |
+
},
|
| 198 |
+
"rms_norm_eps": 1e-05,
|
| 199 |
+
"rope_parameters": {
|
| 200 |
+
"factor": 16.0,
|
| 201 |
+
"high_freq_factor": 1.0,
|
| 202 |
+
"low_freq_factor": 1.0,
|
| 203 |
+
"original_max_position_embeddings": 8192,
|
| 204 |
+
"rope_theta": 500000.0,
|
| 205 |
+
"rope_type": "llama3"
|
| 206 |
+
},
|
| 207 |
+
"router_aux_loss_coef": 0.001,
|
| 208 |
+
"router_jitter_noise": 0.0,
|
| 209 |
+
"tie_word_embeddings": false,
|
| 210 |
+
"transformers_version": "5.10.1",
|
| 211 |
+
"use_cache": false,
|
| 212 |
+
"use_qk_norm": true,
|
| 213 |
+
"vocab_size": 202048,
|
| 214 |
+
"torch_dtype": "bfloat16"
|
| 215 |
+
}
|
evaluation.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"release_model_id": "adaption_llama_4_scout_17b_16_agri_evidence_qa_158a7fd8",
|
| 3 |
+
"category": "Agriculture",
|
| 4 |
+
"evaluation_source": "Adaption AutoScientist held-out Agriculture category tasks",
|
| 5 |
+
"base_win_rate_percent": 23,
|
| 6 |
+
"adapted_win_rate_percent": 78,
|
| 7 |
+
"absolute_improvement_percentage_points": 55,
|
| 8 |
+
"relative_lift_percent": 239.1,
|
| 9 |
+
"adapted_to_base_ratio": 3.391,
|
| 10 |
+
"training": {
|
| 11 |
+
"global_steps": 159,
|
| 12 |
+
"epochs": 3,
|
| 13 |
+
"first_recorded_eval_loss": 0.756591796875,
|
| 14 |
+
"final_eval_loss": 0.682373046875
|
| 15 |
+
},
|
| 16 |
+
"data_quality": {
|
| 17 |
+
"same_run_score_before": 9.0,
|
| 18 |
+
"same_run_score_after": 10.0,
|
| 19 |
+
"same_run_relative_improvement_percent": 11.1,
|
| 20 |
+
"grade_before": "A",
|
| 21 |
+
"grade_after": "A",
|
| 22 |
+
"percentile_before": 43.9,
|
| 23 |
+
"percentile_after": 57.7
|
| 24 |
+
},
|
| 25 |
+
"claim_boundaries": [
|
| 26 |
+
"The held-out evaluator prompts are private and are not published.",
|
| 27 |
+
"The C-to-A result is a cross-version project development journey, not a same-run quality comparison.",
|
| 28 |
+
"The model release is the 158a7fd8 run; the 2329bca3 retry is excluded."
|
| 29 |
+
]
|
| 30 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": "<|begin_of_text|>",
|
| 3 |
+
"eos_token": "<|eot|>",
|
| 4 |
+
"pad_token": "<|finetune_right_pad|>"
|
| 5 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:172c9eb4beafc72601690da3ccfcede5c2e6806a8d5ec1fca33e22acea8023a4
|
| 3 |
+
size 27948578
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"backend": "tokenizers",
|
| 3 |
+
"bos_token": "<|begin_of_text|>",
|
| 4 |
+
"clean_up_tokenization_spaces": false,
|
| 5 |
+
"eos_token": "<|eot|>",
|
| 6 |
+
"is_local": false,
|
| 7 |
+
"local_files_only": true,
|
| 8 |
+
"model_input_names": [
|
| 9 |
+
"input_ids",
|
| 10 |
+
"attention_mask"
|
| 11 |
+
],
|
| 12 |
+
"model_max_length": 10485760,
|
| 13 |
+
"pad_token": "<|finetune_right_pad|>",
|
| 14 |
+
"padding_side": "right",
|
| 15 |
+
"processor_class": "Llama4Processor",
|
| 16 |
+
"tokenizer_class": "TokenizersBackend"
|
| 17 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1187 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 3.0,
|
| 6 |
+
"eval_steps": 31,
|
| 7 |
+
"global_step": 159,
|
| 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.018867924528301886,
|
| 14 |
+
"grad_norm": 0.9160448908805847,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 2.72265625,
|
| 17 |
+
"step": 1
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.03773584905660377,
|
| 21 |
+
"grad_norm": 0.5443944334983826,
|
| 22 |
+
"learning_rate": 6.25e-06,
|
| 23 |
+
"loss": 2.095703125,
|
| 24 |
+
"step": 2
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.05660377358490566,
|
| 28 |
+
"grad_norm": 0.7521076798439026,
|
| 29 |
+
"learning_rate": 1.25e-05,
|
| 30 |
+
"loss": 2.4833984375,
|
| 31 |
+
"step": 3
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.07547169811320754,
|
| 35 |
+
"grad_norm": 0.4434555470943451,
|
| 36 |
+
"learning_rate": 1.8750000000000002e-05,
|
| 37 |
+
"loss": 1.9140625,
|
| 38 |
+
"step": 4
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.09433962264150944,
|
| 42 |
+
"grad_norm": 0.397516667842865,
|
| 43 |
+
"learning_rate": 2.5e-05,
|
| 44 |
+
"loss": 1.791748046875,
|
| 45 |
+
"step": 5
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.11320754716981132,
|
| 49 |
+
"grad_norm": 0.36063775420188904,
|
| 50 |
+
"learning_rate": 3.125e-05,
|
| 51 |
+
"loss": 1.845703125,
|
| 52 |
+
"step": 6
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.1320754716981132,
|
| 56 |
+
"grad_norm": 0.29012879729270935,
|
| 57 |
+
"learning_rate": 3.7500000000000003e-05,
|
| 58 |
+
"loss": 2.0087890625,
|
| 59 |
+
"step": 7
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.1509433962264151,
|
| 63 |
+
"grad_norm": 0.23380061984062195,
|
| 64 |
+
"learning_rate": 4.375e-05,
|
| 65 |
+
"loss": 1.912109375,
|
| 66 |
+
"step": 8
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.16981132075471697,
|
| 70 |
+
"grad_norm": 0.26473182439804077,
|
| 71 |
+
"learning_rate": 5e-05,
|
| 72 |
+
"loss": 1.9580078125,
|
| 73 |
+
"step": 9
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.18867924528301888,
|
| 77 |
+
"grad_norm": 0.2436726838350296,
|
| 78 |
+
"learning_rate": 5.6250000000000005e-05,
|
| 79 |
+
"loss": 1.8037109375,
|
| 80 |
+
"step": 10
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.20754716981132076,
|
| 84 |
+
"grad_norm": 0.17534290254116058,
|
| 85 |
+
"learning_rate": 6.25e-05,
|
| 86 |
+
"loss": 1.513671875,
|
| 87 |
+
"step": 11
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.22641509433962265,
|
| 91 |
+
"grad_norm": 0.31353089213371277,
|
| 92 |
+
"learning_rate": 6.875e-05,
|
| 93 |
+
"loss": 1.74609375,
|
| 94 |
+
"step": 12
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.24528301886792453,
|
| 98 |
+
"grad_norm": 0.1890019029378891,
|
| 99 |
+
"learning_rate": 7.500000000000001e-05,
|
| 100 |
+
"loss": 1.478515625,
|
| 101 |
+
"step": 13
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.2641509433962264,
|
| 105 |
+
"grad_norm": 0.2181335985660553,
|
| 106 |
+
"learning_rate": 8.125000000000001e-05,
|
| 107 |
+
"loss": 1.439453125,
|
| 108 |
+
"step": 14
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.2830188679245283,
|
| 112 |
+
"grad_norm": 0.1583699882030487,
|
| 113 |
+
"learning_rate": 8.75e-05,
|
| 114 |
+
"loss": 1.345703125,
|
| 115 |
+
"step": 15
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.3018867924528302,
|
| 119 |
+
"grad_norm": 0.39862334728240967,
|
| 120 |
+
"learning_rate": 9.375e-05,
|
| 121 |
+
"loss": 1.30078125,
|
| 122 |
+
"step": 16
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.32075471698113206,
|
| 126 |
+
"grad_norm": 0.4889472723007202,
|
| 127 |
+
"learning_rate": 0.0001,
|
| 128 |
+
"loss": 1.020751953125,
|
| 129 |
+
"step": 17
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.33962264150943394,
|
| 133 |
+
"grad_norm": 0.22474290430545807,
|
| 134 |
+
"learning_rate": 9.998914092779207e-05,
|
| 135 |
+
"loss": 1.10888671875,
|
| 136 |
+
"step": 18
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.3584905660377358,
|
| 140 |
+
"grad_norm": 0.21462957561016083,
|
| 141 |
+
"learning_rate": 9.995656895203267e-05,
|
| 142 |
+
"loss": 1.16650390625,
|
| 143 |
+
"step": 19
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.37735849056603776,
|
| 147 |
+
"grad_norm": 0.2226303219795227,
|
| 148 |
+
"learning_rate": 9.990229979278567e-05,
|
| 149 |
+
"loss": 1.04833984375,
|
| 150 |
+
"step": 20
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.39622641509433965,
|
| 154 |
+
"grad_norm": 0.19752401113510132,
|
| 155 |
+
"learning_rate": 9.982635964172747e-05,
|
| 156 |
+
"loss": 1.020751953125,
|
| 157 |
+
"step": 21
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.41509433962264153,
|
| 161 |
+
"grad_norm": 0.14107196033000946,
|
| 162 |
+
"learning_rate": 9.972878514950619e-05,
|
| 163 |
+
"loss": 0.99072265625,
|
| 164 |
+
"step": 22
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.4339622641509434,
|
| 168 |
+
"grad_norm": 0.14339610934257507,
|
| 169 |
+
"learning_rate": 9.960962340805332e-05,
|
| 170 |
+
"loss": 0.9814453125,
|
| 171 |
+
"step": 23
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.4528301886792453,
|
| 175 |
+
"grad_norm": 0.11852391809225082,
|
| 176 |
+
"learning_rate": 9.946893192785568e-05,
|
| 177 |
+
"loss": 1.03125,
|
| 178 |
+
"step": 24
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.4716981132075472,
|
| 182 |
+
"grad_norm": 0.12675724923610687,
|
| 183 |
+
"learning_rate": 9.930677861019963e-05,
|
| 184 |
+
"loss": 0.8095703125,
|
| 185 |
+
"step": 25
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.49056603773584906,
|
| 189 |
+
"grad_norm": 0.13236619532108307,
|
| 190 |
+
"learning_rate": 9.912324171440008e-05,
|
| 191 |
+
"loss": 0.66748046875,
|
| 192 |
+
"step": 26
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.5094339622641509,
|
| 196 |
+
"grad_norm": 0.11803070455789566,
|
| 197 |
+
"learning_rate": 9.89184098200305e-05,
|
| 198 |
+
"loss": 0.5257568359375,
|
| 199 |
+
"step": 27
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.5283018867924528,
|
| 203 |
+
"grad_norm": 0.14111293852329254,
|
| 204 |
+
"learning_rate": 9.869238178417235e-05,
|
| 205 |
+
"loss": 0.68310546875,
|
| 206 |
+
"step": 28
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.5471698113207547,
|
| 210 |
+
"grad_norm": 0.23157398402690887,
|
| 211 |
+
"learning_rate": 9.844526669370392e-05,
|
| 212 |
+
"loss": 0.3009033203125,
|
| 213 |
+
"step": 29
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.5660377358490566,
|
| 217 |
+
"grad_norm": 0.10609235614538193,
|
| 218 |
+
"learning_rate": 9.81771838126524e-05,
|
| 219 |
+
"loss": 0.71923828125,
|
| 220 |
+
"step": 30
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.5849056603773585,
|
| 224 |
+
"grad_norm": 0.08503806591033936,
|
| 225 |
+
"learning_rate": 9.788826252463388e-05,
|
| 226 |
+
"loss": 0.536865234375,
|
| 227 |
+
"step": 31
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.6037735849056604,
|
| 231 |
+
"grad_norm": 0.07262135297060013,
|
| 232 |
+
"learning_rate": 9.757864227040969e-05,
|
| 233 |
+
"loss": 0.64617919921875,
|
| 234 |
+
"step": 32
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.6226415094339622,
|
| 238 |
+
"grad_norm": 0.047836314886808395,
|
| 239 |
+
"learning_rate": 9.724847248058859e-05,
|
| 240 |
+
"loss": 0.76177978515625,
|
| 241 |
+
"step": 33
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.6415094339622641,
|
| 245 |
+
"grad_norm": 0.09082711488008499,
|
| 246 |
+
"learning_rate": 9.689791250350787e-05,
|
| 247 |
+
"loss": 0.4765625,
|
| 248 |
+
"step": 34
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.660377358490566,
|
| 252 |
+
"grad_norm": 0.04307923838496208,
|
| 253 |
+
"learning_rate": 9.652713152832772e-05,
|
| 254 |
+
"loss": 0.85736083984375,
|
| 255 |
+
"step": 35
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.660377358490566,
|
| 259 |
+
"eval_loss": 0.756591796875,
|
| 260 |
+
"eval_runtime": 5.4394,
|
| 261 |
+
"eval_samples_per_second": 0.552,
|
| 262 |
+
"eval_steps_per_second": 0.184,
|
| 263 |
+
"step": 35
|
| 264 |
+
},
|
| 265 |
+
{
|
| 266 |
+
"epoch": 0.6792452830188679,
|
| 267 |
+
"grad_norm": 0.06730978190898895,
|
| 268 |
+
"learning_rate": 9.613630850337626e-05,
|
| 269 |
+
"loss": 0.605224609375,
|
| 270 |
+
"step": 36
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"epoch": 0.6981132075471698,
|
| 274 |
+
"grad_norm": 0.054134998470544815,
|
| 275 |
+
"learning_rate": 9.572563204978451e-05,
|
| 276 |
+
"loss": 0.529541015625,
|
| 277 |
+
"step": 37
|
| 278 |
+
},
|
| 279 |
+
{
|
| 280 |
+
"epoch": 0.7169811320754716,
|
| 281 |
+
"grad_norm": 0.04065776243805885,
|
| 282 |
+
"learning_rate": 9.529530037045311e-05,
|
| 283 |
+
"loss": 0.5693359375,
|
| 284 |
+
"step": 38
|
| 285 |
+
},
|
| 286 |
+
{
|
| 287 |
+
"epoch": 0.7358490566037735,
|
| 288 |
+
"grad_norm": 0.03646336495876312,
|
| 289 |
+
"learning_rate": 9.484552115439445e-05,
|
| 290 |
+
"loss": 0.63250732421875,
|
| 291 |
+
"step": 39
|
| 292 |
+
},
|
| 293 |
+
{
|
| 294 |
+
"epoch": 0.7547169811320755,
|
| 295 |
+
"grad_norm": 0.05910707637667656,
|
| 296 |
+
"learning_rate": 9.437651147649675e-05,
|
| 297 |
+
"loss": 0.4556884765625,
|
| 298 |
+
"step": 40
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"epoch": 0.7735849056603774,
|
| 302 |
+
"grad_norm": 0.03508642688393593,
|
| 303 |
+
"learning_rate": 9.388849769275819e-05,
|
| 304 |
+
"loss": 0.79693603515625,
|
| 305 |
+
"step": 41
|
| 306 |
+
},
|
| 307 |
+
{
|
| 308 |
+
"epoch": 0.7924528301886793,
|
| 309 |
+
"grad_norm": 0.03845144808292389,
|
| 310 |
+
"learning_rate": 9.338171533104165e-05,
|
| 311 |
+
"loss": 0.80572509765625,
|
| 312 |
+
"step": 42
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"epoch": 0.8113207547169812,
|
| 316 |
+
"grad_norm": 0.03844299539923668,
|
| 317 |
+
"learning_rate": 9.285640897740315e-05,
|
| 318 |
+
"loss": 0.7535400390625,
|
| 319 |
+
"step": 43
|
| 320 |
+
},
|
| 321 |
+
{
|
| 322 |
+
"epoch": 0.8301886792452831,
|
| 323 |
+
"grad_norm": 0.04553592577576637,
|
| 324 |
+
"learning_rate": 9.231283215804827e-05,
|
| 325 |
+
"loss": 0.348114013671875,
|
| 326 |
+
"step": 44
|
| 327 |
+
},
|
| 328 |
+
{
|
| 329 |
+
"epoch": 0.8490566037735849,
|
| 330 |
+
"grad_norm": 0.03860464319586754,
|
| 331 |
+
"learning_rate": 9.175124721697398e-05,
|
| 332 |
+
"loss": 0.50250244140625,
|
| 333 |
+
"step": 45
|
| 334 |
+
},
|
| 335 |
+
{
|
| 336 |
+
"epoch": 0.8679245283018868,
|
| 337 |
+
"grad_norm": 0.040941134095191956,
|
| 338 |
+
"learning_rate": 9.117192518935477e-05,
|
| 339 |
+
"loss": 0.51824951171875,
|
| 340 |
+
"step": 46
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"epoch": 0.8867924528301887,
|
| 344 |
+
"grad_norm": 0.036735646426677704,
|
| 345 |
+
"learning_rate": 9.057514567073416e-05,
|
| 346 |
+
"loss": 0.82611083984375,
|
| 347 |
+
"step": 47
|
| 348 |
+
},
|
| 349 |
+
{
|
| 350 |
+
"epoch": 0.9056603773584906,
|
| 351 |
+
"grad_norm": 0.048354849219322205,
|
| 352 |
+
"learning_rate": 8.996119668208483e-05,
|
| 353 |
+
"loss": 0.34613037109375,
|
| 354 |
+
"step": 48
|
| 355 |
+
},
|
| 356 |
+
{
|
| 357 |
+
"epoch": 0.9245283018867925,
|
| 358 |
+
"grad_norm": 0.03629879280924797,
|
| 359 |
+
"learning_rate": 8.933037453080231e-05,
|
| 360 |
+
"loss": 0.7056884765625,
|
| 361 |
+
"step": 49
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"epoch": 0.9433962264150944,
|
| 365 |
+
"grad_norm": 0.03945612534880638,
|
| 366 |
+
"learning_rate": 8.868298366769954e-05,
|
| 367 |
+
"loss": 0.4949951171875,
|
| 368 |
+
"step": 50
|
| 369 |
+
},
|
| 370 |
+
{
|
| 371 |
+
"epoch": 0.9622641509433962,
|
| 372 |
+
"grad_norm": 0.03107060305774212,
|
| 373 |
+
"learning_rate": 8.801933654007119e-05,
|
| 374 |
+
"loss": 0.84393310546875,
|
| 375 |
+
"step": 51
|
| 376 |
+
},
|
| 377 |
+
{
|
| 378 |
+
"epoch": 0.9811320754716981,
|
| 379 |
+
"grad_norm": 0.03779706358909607,
|
| 380 |
+
"learning_rate": 8.733975344089852e-05,
|
| 381 |
+
"loss": 0.355377197265625,
|
| 382 |
+
"step": 52
|
| 383 |
+
},
|
| 384 |
+
{
|
| 385 |
+
"epoch": 1.0,
|
| 386 |
+
"grad_norm": 0.03321205452084541,
|
| 387 |
+
"learning_rate": 8.6644562354268e-05,
|
| 388 |
+
"loss": 0.262298583984375,
|
| 389 |
+
"step": 53
|
| 390 |
+
},
|
| 391 |
+
{
|
| 392 |
+
"epoch": 1.0188679245283019,
|
| 393 |
+
"grad_norm": 0.03069538250565529,
|
| 394 |
+
"learning_rate": 8.593409879707777e-05,
|
| 395 |
+
"loss": 0.30084228515625,
|
| 396 |
+
"step": 54
|
| 397 |
+
},
|
| 398 |
+
{
|
| 399 |
+
"epoch": 1.0377358490566038,
|
| 400 |
+
"grad_norm": 0.03414987400174141,
|
| 401 |
+
"learning_rate": 8.520870565710866e-05,
|
| 402 |
+
"loss": 0.8505859375,
|
| 403 |
+
"step": 55
|
| 404 |
+
},
|
| 405 |
+
{
|
| 406 |
+
"epoch": 1.0566037735849056,
|
| 407 |
+
"grad_norm": 0.02888660319149494,
|
| 408 |
+
"learning_rate": 8.446873302753784e-05,
|
| 409 |
+
"loss": 0.482421875,
|
| 410 |
+
"step": 56
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"epoch": 1.0754716981132075,
|
| 414 |
+
"grad_norm": 0.03213921934366226,
|
| 415 |
+
"learning_rate": 8.371453803797488e-05,
|
| 416 |
+
"loss": 0.8316650390625,
|
| 417 |
+
"step": 57
|
| 418 |
+
},
|
| 419 |
+
{
|
| 420 |
+
"epoch": 1.0943396226415094,
|
| 421 |
+
"grad_norm": 0.022419078275561333,
|
| 422 |
+
"learning_rate": 8.294648468210209e-05,
|
| 423 |
+
"loss": 0.598419189453125,
|
| 424 |
+
"step": 58
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"epoch": 1.1132075471698113,
|
| 428 |
+
"grad_norm": 0.021831678226590157,
|
| 429 |
+
"learning_rate": 8.216494364200169e-05,
|
| 430 |
+
"loss": 0.328033447265625,
|
| 431 |
+
"step": 59
|
| 432 |
+
},
|
| 433 |
+
{
|
| 434 |
+
"epoch": 1.1320754716981132,
|
| 435 |
+
"grad_norm": 0.025370784103870392,
|
| 436 |
+
"learning_rate": 8.137029210925539e-05,
|
| 437 |
+
"loss": 0.6046142578125,
|
| 438 |
+
"step": 60
|
| 439 |
+
},
|
| 440 |
+
{
|
| 441 |
+
"epoch": 1.150943396226415,
|
| 442 |
+
"grad_norm": 0.02519148774445057,
|
| 443 |
+
"learning_rate": 8.056291360290201e-05,
|
| 444 |
+
"loss": 0.5687103271484375,
|
| 445 |
+
"step": 61
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"epoch": 1.169811320754717,
|
| 449 |
+
"grad_norm": 0.022458959370851517,
|
| 450 |
+
"learning_rate": 7.974319778434157e-05,
|
| 451 |
+
"loss": 0.39935302734375,
|
| 452 |
+
"step": 62
|
| 453 |
+
},
|
| 454 |
+
{
|
| 455 |
+
"epoch": 1.1886792452830188,
|
| 456 |
+
"grad_norm": 0.052403755486011505,
|
| 457 |
+
"learning_rate": 7.891154026927469e-05,
|
| 458 |
+
"loss": 0.47015380859375,
|
| 459 |
+
"step": 63
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"epoch": 1.2075471698113207,
|
| 463 |
+
"grad_norm": 0.02445453405380249,
|
| 464 |
+
"learning_rate": 7.806834243676837e-05,
|
| 465 |
+
"loss": 0.777740478515625,
|
| 466 |
+
"step": 64
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"epoch": 1.2264150943396226,
|
| 470 |
+
"grad_norm": 0.02027270942926407,
|
| 471 |
+
"learning_rate": 7.721401123554034e-05,
|
| 472 |
+
"loss": 0.457611083984375,
|
| 473 |
+
"step": 65
|
| 474 |
+
},
|
| 475 |
+
{
|
| 476 |
+
"epoch": 1.2452830188679245,
|
| 477 |
+
"grad_norm": 0.023989953100681305,
|
| 478 |
+
"learning_rate": 7.634895898755521e-05,
|
| 479 |
+
"loss": 0.716796875,
|
| 480 |
+
"step": 66
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"epoch": 1.2452830188679245,
|
| 484 |
+
"eval_loss": 0.7044677734375,
|
| 485 |
+
"eval_runtime": 5.43,
|
| 486 |
+
"eval_samples_per_second": 0.552,
|
| 487 |
+
"eval_steps_per_second": 0.184,
|
| 488 |
+
"step": 66
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"epoch": 1.2641509433962264,
|
| 492 |
+
"grad_norm": 0.024166857823729515,
|
| 493 |
+
"learning_rate": 7.547360318902743e-05,
|
| 494 |
+
"loss": 0.62408447265625,
|
| 495 |
+
"step": 67
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"epoch": 1.2830188679245282,
|
| 499 |
+
"grad_norm": 0.028676064684987068,
|
| 500 |
+
"learning_rate": 7.458836630892693e-05,
|
| 501 |
+
"loss": 0.906494140625,
|
| 502 |
+
"step": 68
|
| 503 |
+
},
|
| 504 |
+
{
|
| 505 |
+
"epoch": 1.3018867924528301,
|
| 506 |
+
"grad_norm": 0.020518383011221886,
|
| 507 |
+
"learning_rate": 7.369367558508489e-05,
|
| 508 |
+
"loss": 0.30908203125,
|
| 509 |
+
"step": 69
|
| 510 |
+
},
|
| 511 |
+
{
|
| 512 |
+
"epoch": 1.320754716981132,
|
| 513 |
+
"grad_norm": 0.11661913990974426,
|
| 514 |
+
"learning_rate": 7.278996281799797e-05,
|
| 515 |
+
"loss": 0.507965087890625,
|
| 516 |
+
"step": 70
|
| 517 |
+
},
|
| 518 |
+
{
|
| 519 |
+
"epoch": 1.3396226415094339,
|
| 520 |
+
"grad_norm": 0.02599608711898327,
|
| 521 |
+
"learning_rate": 7.18776641624303e-05,
|
| 522 |
+
"loss": 0.64666748046875,
|
| 523 |
+
"step": 71
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"epoch": 1.3584905660377358,
|
| 527 |
+
"grad_norm": 0.028015300631523132,
|
| 528 |
+
"learning_rate": 7.095721991691411e-05,
|
| 529 |
+
"loss": 0.7392578125,
|
| 530 |
+
"step": 72
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"epoch": 1.3773584905660377,
|
| 534 |
+
"grad_norm": 0.024578798562288284,
|
| 535 |
+
"learning_rate": 7.002907431125057e-05,
|
| 536 |
+
"loss": 0.6336669921875,
|
| 537 |
+
"step": 73
|
| 538 |
+
},
|
| 539 |
+
{
|
| 540 |
+
"epoch": 1.3962264150943398,
|
| 541 |
+
"grad_norm": 0.02427557297050953,
|
| 542 |
+
"learning_rate": 6.909367529211306e-05,
|
| 543 |
+
"loss": 0.6378173828125,
|
| 544 |
+
"step": 74
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"epoch": 1.4150943396226414,
|
| 548 |
+
"grad_norm": 0.02489621192216873,
|
| 549 |
+
"learning_rate": 6.815147430685678e-05,
|
| 550 |
+
"loss": 0.75396728515625,
|
| 551 |
+
"step": 75
|
| 552 |
+
},
|
| 553 |
+
{
|
| 554 |
+
"epoch": 1.4339622641509435,
|
| 555 |
+
"grad_norm": 0.026317507028579712,
|
| 556 |
+
"learning_rate": 6.720292608563877e-05,
|
| 557 |
+
"loss": 0.74066162109375,
|
| 558 |
+
"step": 76
|
| 559 |
+
},
|
| 560 |
+
{
|
| 561 |
+
"epoch": 1.4528301886792452,
|
| 562 |
+
"grad_norm": 0.026842059567570686,
|
| 563 |
+
"learning_rate": 6.624848842195356e-05,
|
| 564 |
+
"loss": 0.84844970703125,
|
| 565 |
+
"step": 77
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"epoch": 1.4716981132075473,
|
| 569 |
+
"grad_norm": 0.02483026497066021,
|
| 570 |
+
"learning_rate": 6.528862195169039e-05,
|
| 571 |
+
"loss": 0.62548828125,
|
| 572 |
+
"step": 78
|
| 573 |
+
},
|
| 574 |
+
{
|
| 575 |
+
"epoch": 1.490566037735849,
|
| 576 |
+
"grad_norm": 0.02440921775996685,
|
| 577 |
+
"learning_rate": 6.43237899308186e-05,
|
| 578 |
+
"loss": 0.5023193359375,
|
| 579 |
+
"step": 79
|
| 580 |
+
},
|
| 581 |
+
{
|
| 582 |
+
"epoch": 1.509433962264151,
|
| 583 |
+
"grad_norm": 0.021304575726389885,
|
| 584 |
+
"learning_rate": 6.335445801180859e-05,
|
| 585 |
+
"loss": 0.38848876953125,
|
| 586 |
+
"step": 80
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"epoch": 1.5283018867924527,
|
| 590 |
+
"grad_norm": 0.024867858737707138,
|
| 591 |
+
"learning_rate": 6.238109401889598e-05,
|
| 592 |
+
"loss": 0.58270263671875,
|
| 593 |
+
"step": 81
|
| 594 |
+
},
|
| 595 |
+
{
|
| 596 |
+
"epoch": 1.5471698113207548,
|
| 597 |
+
"grad_norm": 0.022254586219787598,
|
| 598 |
+
"learning_rate": 6.140416772229784e-05,
|
| 599 |
+
"loss": 0.18841552734375,
|
| 600 |
+
"step": 82
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"epoch": 1.5660377358490565,
|
| 604 |
+
"grad_norm": 0.023492569103837013,
|
| 605 |
+
"learning_rate": 6.042415061148954e-05,
|
| 606 |
+
"loss": 0.6334228515625,
|
| 607 |
+
"step": 83
|
| 608 |
+
},
|
| 609 |
+
{
|
| 610 |
+
"epoch": 1.5849056603773586,
|
| 611 |
+
"grad_norm": 0.019843759015202522,
|
| 612 |
+
"learning_rate": 5.944151566765205e-05,
|
| 613 |
+
"loss": 0.4464263916015625,
|
| 614 |
+
"step": 84
|
| 615 |
+
},
|
| 616 |
+
{
|
| 617 |
+
"epoch": 1.6037735849056602,
|
| 618 |
+
"grad_norm": 0.026993080973625183,
|
| 619 |
+
"learning_rate": 5.845673713539911e-05,
|
| 620 |
+
"loss": 0.560821533203125,
|
| 621 |
+
"step": 85
|
| 622 |
+
},
|
| 623 |
+
{
|
| 624 |
+
"epoch": 1.6226415094339623,
|
| 625 |
+
"grad_norm": 0.025686046108603477,
|
| 626 |
+
"learning_rate": 5.747029029389475e-05,
|
| 627 |
+
"loss": 0.6922607421875,
|
| 628 |
+
"step": 86
|
| 629 |
+
},
|
| 630 |
+
{
|
| 631 |
+
"epoch": 1.641509433962264,
|
| 632 |
+
"grad_norm": 0.02275293879210949,
|
| 633 |
+
"learning_rate": 5.6482651227471436e-05,
|
| 634 |
+
"loss": 0.38201904296875,
|
| 635 |
+
"step": 87
|
| 636 |
+
},
|
| 637 |
+
{
|
| 638 |
+
"epoch": 1.6603773584905661,
|
| 639 |
+
"grad_norm": 0.02670340985059738,
|
| 640 |
+
"learning_rate": 5.5494296595859764e-05,
|
| 641 |
+
"loss": 0.790191650390625,
|
| 642 |
+
"step": 88
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"epoch": 1.6792452830188678,
|
| 646 |
+
"grad_norm": 0.02301422692835331,
|
| 647 |
+
"learning_rate": 5.450570340414024e-05,
|
| 648 |
+
"loss": 0.5341796875,
|
| 649 |
+
"step": 89
|
| 650 |
+
},
|
| 651 |
+
{
|
| 652 |
+
"epoch": 1.6981132075471699,
|
| 653 |
+
"grad_norm": 0.02345620095729828,
|
| 654 |
+
"learning_rate": 5.3517348772528574e-05,
|
| 655 |
+
"loss": 0.4722900390625,
|
| 656 |
+
"step": 90
|
| 657 |
+
},
|
| 658 |
+
{
|
| 659 |
+
"epoch": 1.7169811320754715,
|
| 660 |
+
"grad_norm": 0.024356689304113388,
|
| 661 |
+
"learning_rate": 5.252970970610527e-05,
|
| 662 |
+
"loss": 0.51446533203125,
|
| 663 |
+
"step": 91
|
| 664 |
+
},
|
| 665 |
+
{
|
| 666 |
+
"epoch": 1.7358490566037736,
|
| 667 |
+
"grad_norm": 0.02343251183629036,
|
| 668 |
+
"learning_rate": 5.154326286460089e-05,
|
| 669 |
+
"loss": 0.57806396484375,
|
| 670 |
+
"step": 92
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"epoch": 1.7547169811320755,
|
| 674 |
+
"grad_norm": 0.01980278082191944,
|
| 675 |
+
"learning_rate": 5.055848433234796e-05,
|
| 676 |
+
"loss": 0.400054931640625,
|
| 677 |
+
"step": 93
|
| 678 |
+
},
|
| 679 |
+
{
|
| 680 |
+
"epoch": 1.7735849056603774,
|
| 681 |
+
"grad_norm": 0.02493242546916008,
|
| 682 |
+
"learning_rate": 4.9575849388510473e-05,
|
| 683 |
+
"loss": 0.74359130859375,
|
| 684 |
+
"step": 94
|
| 685 |
+
},
|
| 686 |
+
{
|
| 687 |
+
"epoch": 1.7924528301886793,
|
| 688 |
+
"grad_norm": 0.027098434045910835,
|
| 689 |
+
"learning_rate": 4.859583227770218e-05,
|
| 690 |
+
"loss": 0.75225830078125,
|
| 691 |
+
"step": 95
|
| 692 |
+
},
|
| 693 |
+
{
|
| 694 |
+
"epoch": 1.8113207547169812,
|
| 695 |
+
"grad_norm": 0.02704058215022087,
|
| 696 |
+
"learning_rate": 4.761890598110403e-05,
|
| 697 |
+
"loss": 0.704345703125,
|
| 698 |
+
"step": 96
|
| 699 |
+
},
|
| 700 |
+
{
|
| 701 |
+
"epoch": 1.830188679245283,
|
| 702 |
+
"grad_norm": 0.01941896229982376,
|
| 703 |
+
"learning_rate": 4.664554198819141e-05,
|
| 704 |
+
"loss": 0.317626953125,
|
| 705 |
+
"step": 97
|
| 706 |
+
},
|
| 707 |
+
{
|
| 708 |
+
"epoch": 1.830188679245283,
|
| 709 |
+
"eval_loss": 0.6927490234375,
|
| 710 |
+
"eval_runtime": 5.4223,
|
| 711 |
+
"eval_samples_per_second": 0.553,
|
| 712 |
+
"eval_steps_per_second": 0.184,
|
| 713 |
+
"step": 97
|
| 714 |
+
},
|
| 715 |
+
{
|
| 716 |
+
"epoch": 1.849056603773585,
|
| 717 |
+
"grad_norm": 0.02108132652938366,
|
| 718 |
+
"learning_rate": 4.5676210069181405e-05,
|
| 719 |
+
"loss": 0.46380615234375,
|
| 720 |
+
"step": 98
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"epoch": 1.8679245283018868,
|
| 724 |
+
"grad_norm": 0.02277522347867489,
|
| 725 |
+
"learning_rate": 4.471137804830963e-05,
|
| 726 |
+
"loss": 0.482635498046875,
|
| 727 |
+
"step": 99
|
| 728 |
+
},
|
| 729 |
+
{
|
| 730 |
+
"epoch": 1.8867924528301887,
|
| 731 |
+
"grad_norm": 0.02586280182003975,
|
| 732 |
+
"learning_rate": 4.375151157804645e-05,
|
| 733 |
+
"loss": 0.77655029296875,
|
| 734 |
+
"step": 100
|
| 735 |
+
},
|
| 736 |
+
{
|
| 737 |
+
"epoch": 1.9056603773584906,
|
| 738 |
+
"grad_norm": 0.020695367828011513,
|
| 739 |
+
"learning_rate": 4.279707391436124e-05,
|
| 740 |
+
"loss": 0.3177490234375,
|
| 741 |
+
"step": 101
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"epoch": 1.9245283018867925,
|
| 745 |
+
"grad_norm": 0.026092447340488434,
|
| 746 |
+
"learning_rate": 4.1848525693143235e-05,
|
| 747 |
+
"loss": 0.6651611328125,
|
| 748 |
+
"step": 102
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"epoch": 1.9433962264150944,
|
| 752 |
+
"grad_norm": 0.019947027787566185,
|
| 753 |
+
"learning_rate": 4.090632470788695e-05,
|
| 754 |
+
"loss": 0.46533203125,
|
| 755 |
+
"step": 103
|
| 756 |
+
},
|
| 757 |
+
{
|
| 758 |
+
"epoch": 1.9622641509433962,
|
| 759 |
+
"grad_norm": 0.02738369069993496,
|
| 760 |
+
"learning_rate": 3.997092568874944e-05,
|
| 761 |
+
"loss": 0.80084228515625,
|
| 762 |
+
"step": 104
|
| 763 |
+
},
|
| 764 |
+
{
|
| 765 |
+
"epoch": 1.9811320754716981,
|
| 766 |
+
"grad_norm": 0.019547849893569946,
|
| 767 |
+
"learning_rate": 3.904278008308589e-05,
|
| 768 |
+
"loss": 0.333221435546875,
|
| 769 |
+
"step": 105
|
| 770 |
+
},
|
| 771 |
+
{
|
| 772 |
+
"epoch": 2.0,
|
| 773 |
+
"grad_norm": 0.01958700828254223,
|
| 774 |
+
"learning_rate": 3.812233583756972e-05,
|
| 775 |
+
"loss": 0.24285888671875,
|
| 776 |
+
"step": 106
|
| 777 |
+
},
|
| 778 |
+
{
|
| 779 |
+
"epoch": 2.018867924528302,
|
| 780 |
+
"grad_norm": 0.020026640966534615,
|
| 781 |
+
"learning_rate": 3.721003718200204e-05,
|
| 782 |
+
"loss": 0.279296875,
|
| 783 |
+
"step": 107
|
| 784 |
+
},
|
| 785 |
+
{
|
| 786 |
+
"epoch": 2.0377358490566038,
|
| 787 |
+
"grad_norm": 0.027759267017245293,
|
| 788 |
+
"learning_rate": 3.630632441491512e-05,
|
| 789 |
+
"loss": 0.8104248046875,
|
| 790 |
+
"step": 108
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"epoch": 2.056603773584906,
|
| 794 |
+
"grad_norm": 0.021983085200190544,
|
| 795 |
+
"learning_rate": 3.5411633691073096e-05,
|
| 796 |
+
"loss": 0.46087646484375,
|
| 797 |
+
"step": 109
|
| 798 |
+
},
|
| 799 |
+
{
|
| 800 |
+
"epoch": 2.0754716981132075,
|
| 801 |
+
"grad_norm": 0.029194500297307968,
|
| 802 |
+
"learning_rate": 3.4526396810972584e-05,
|
| 803 |
+
"loss": 0.79443359375,
|
| 804 |
+
"step": 110
|
| 805 |
+
},
|
| 806 |
+
{
|
| 807 |
+
"epoch": 2.0943396226415096,
|
| 808 |
+
"grad_norm": 0.022142434492707253,
|
| 809 |
+
"learning_rate": 3.3651041012444804e-05,
|
| 810 |
+
"loss": 0.569732666015625,
|
| 811 |
+
"step": 111
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"epoch": 2.1132075471698113,
|
| 815 |
+
"grad_norm": 0.019784018397331238,
|
| 816 |
+
"learning_rate": 3.2785988764459664e-05,
|
| 817 |
+
"loss": 0.31280517578125,
|
| 818 |
+
"step": 112
|
| 819 |
+
},
|
| 820 |
+
{
|
| 821 |
+
"epoch": 2.1320754716981134,
|
| 822 |
+
"grad_norm": 0.025928346440196037,
|
| 823 |
+
"learning_rate": 3.193165756323165e-05,
|
| 824 |
+
"loss": 0.577880859375,
|
| 825 |
+
"step": 113
|
| 826 |
+
},
|
| 827 |
+
{
|
| 828 |
+
"epoch": 2.150943396226415,
|
| 829 |
+
"grad_norm": 0.02521391585469246,
|
| 830 |
+
"learning_rate": 3.1088459730725335e-05,
|
| 831 |
+
"loss": 0.54052734375,
|
| 832 |
+
"step": 114
|
| 833 |
+
},
|
| 834 |
+
{
|
| 835 |
+
"epoch": 2.169811320754717,
|
| 836 |
+
"grad_norm": 0.021982381120324135,
|
| 837 |
+
"learning_rate": 3.0256802215658437e-05,
|
| 838 |
+
"loss": 0.3807373046875,
|
| 839 |
+
"step": 115
|
| 840 |
+
},
|
| 841 |
+
{
|
| 842 |
+
"epoch": 2.188679245283019,
|
| 843 |
+
"grad_norm": 0.022596165537834167,
|
| 844 |
+
"learning_rate": 2.9437086397097995e-05,
|
| 845 |
+
"loss": 0.451141357421875,
|
| 846 |
+
"step": 116
|
| 847 |
+
},
|
| 848 |
+
{
|
| 849 |
+
"epoch": 2.207547169811321,
|
| 850 |
+
"grad_norm": 0.0256204754114151,
|
| 851 |
+
"learning_rate": 2.862970789074463e-05,
|
| 852 |
+
"loss": 0.746856689453125,
|
| 853 |
+
"step": 117
|
| 854 |
+
},
|
| 855 |
+
{
|
| 856 |
+
"epoch": 2.2264150943396226,
|
| 857 |
+
"grad_norm": 0.021772582083940506,
|
| 858 |
+
"learning_rate": 2.7835056357998323e-05,
|
| 859 |
+
"loss": 0.4388427734375,
|
| 860 |
+
"step": 118
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"epoch": 2.2452830188679247,
|
| 864 |
+
"grad_norm": 0.025826886296272278,
|
| 865 |
+
"learning_rate": 2.7053515317897925e-05,
|
| 866 |
+
"loss": 0.6865234375,
|
| 867 |
+
"step": 119
|
| 868 |
+
},
|
| 869 |
+
{
|
| 870 |
+
"epoch": 2.2641509433962264,
|
| 871 |
+
"grad_norm": 0.025294864550232887,
|
| 872 |
+
"learning_rate": 2.6285461962025115e-05,
|
| 873 |
+
"loss": 0.601287841796875,
|
| 874 |
+
"step": 120
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"epoch": 2.2830188679245285,
|
| 878 |
+
"grad_norm": 0.03068646416068077,
|
| 879 |
+
"learning_rate": 2.5531266972462177e-05,
|
| 880 |
+
"loss": 0.873291015625,
|
| 881 |
+
"step": 121
|
| 882 |
+
},
|
| 883 |
+
{
|
| 884 |
+
"epoch": 2.30188679245283,
|
| 885 |
+
"grad_norm": 0.021428707987070084,
|
| 886 |
+
"learning_rate": 2.479129434289134e-05,
|
| 887 |
+
"loss": 0.296875,
|
| 888 |
+
"step": 122
|
| 889 |
+
},
|
| 890 |
+
{
|
| 891 |
+
"epoch": 2.3207547169811322,
|
| 892 |
+
"grad_norm": 0.020753471180796623,
|
| 893 |
+
"learning_rate": 2.4065901202922232e-05,
|
| 894 |
+
"loss": 0.488677978515625,
|
| 895 |
+
"step": 123
|
| 896 |
+
},
|
| 897 |
+
{
|
| 898 |
+
"epoch": 2.339622641509434,
|
| 899 |
+
"grad_norm": 0.02610793523490429,
|
| 900 |
+
"learning_rate": 2.3355437645732004e-05,
|
| 901 |
+
"loss": 0.62261962890625,
|
| 902 |
+
"step": 124
|
| 903 |
+
},
|
| 904 |
+
{
|
| 905 |
+
"epoch": 2.358490566037736,
|
| 906 |
+
"grad_norm": 0.03154842555522919,
|
| 907 |
+
"learning_rate": 2.2660246559101505e-05,
|
| 908 |
+
"loss": 0.7137451171875,
|
| 909 |
+
"step": 125
|
| 910 |
+
},
|
| 911 |
+
{
|
| 912 |
+
"epoch": 2.3773584905660377,
|
| 913 |
+
"grad_norm": 0.025154979899525642,
|
| 914 |
+
"learning_rate": 2.1980663459928834e-05,
|
| 915 |
+
"loss": 0.6123046875,
|
| 916 |
+
"step": 126
|
| 917 |
+
},
|
| 918 |
+
{
|
| 919 |
+
"epoch": 2.3962264150943398,
|
| 920 |
+
"grad_norm": 0.026202384382486343,
|
| 921 |
+
"learning_rate": 2.1317016332300447e-05,
|
| 922 |
+
"loss": 0.614532470703125,
|
| 923 |
+
"step": 127
|
| 924 |
+
},
|
| 925 |
+
{
|
| 926 |
+
"epoch": 2.4150943396226414,
|
| 927 |
+
"grad_norm": 0.027304857969284058,
|
| 928 |
+
"learning_rate": 2.0669625469197693e-05,
|
| 929 |
+
"loss": 0.72918701171875,
|
| 930 |
+
"step": 128
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"epoch": 2.4150943396226414,
|
| 934 |
+
"eval_loss": 0.685791015625,
|
| 935 |
+
"eval_runtime": 5.4318,
|
| 936 |
+
"eval_samples_per_second": 0.552,
|
| 937 |
+
"eval_steps_per_second": 0.184,
|
| 938 |
+
"step": 128
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"epoch": 2.4339622641509435,
|
| 942 |
+
"grad_norm": 0.0265318863093853,
|
| 943 |
+
"learning_rate": 2.003880331791518e-05,
|
| 944 |
+
"loss": 0.718353271484375,
|
| 945 |
+
"step": 129
|
| 946 |
+
},
|
| 947 |
+
{
|
| 948 |
+
"epoch": 2.452830188679245,
|
| 949 |
+
"grad_norm": 0.027988294139504433,
|
| 950 |
+
"learning_rate": 1.9424854329265856e-05,
|
| 951 |
+
"loss": 0.81939697265625,
|
| 952 |
+
"step": 130
|
| 953 |
+
},
|
| 954 |
+
{
|
| 955 |
+
"epoch": 2.4716981132075473,
|
| 956 |
+
"grad_norm": 0.02585024945437908,
|
| 957 |
+
"learning_rate": 1.882807481064525e-05,
|
| 958 |
+
"loss": 0.60516357421875,
|
| 959 |
+
"step": 131
|
| 960 |
+
},
|
| 961 |
+
{
|
| 962 |
+
"epoch": 2.490566037735849,
|
| 963 |
+
"grad_norm": 0.024814441800117493,
|
| 964 |
+
"learning_rate": 1.824875278302603e-05,
|
| 965 |
+
"loss": 0.488037109375,
|
| 966 |
+
"step": 132
|
| 967 |
+
},
|
| 968 |
+
{
|
| 969 |
+
"epoch": 2.509433962264151,
|
| 970 |
+
"grad_norm": 0.021639952436089516,
|
| 971 |
+
"learning_rate": 1.7687167841951734e-05,
|
| 972 |
+
"loss": 0.377105712890625,
|
| 973 |
+
"step": 133
|
| 974 |
+
},
|
| 975 |
+
{
|
| 976 |
+
"epoch": 2.5283018867924527,
|
| 977 |
+
"grad_norm": 0.025735825300216675,
|
| 978 |
+
"learning_rate": 1.7143591022596845e-05,
|
| 979 |
+
"loss": 0.56768798828125,
|
| 980 |
+
"step": 134
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"epoch": 2.547169811320755,
|
| 984 |
+
"grad_norm": 0.015821518376469612,
|
| 985 |
+
"learning_rate": 1.661828466895836e-05,
|
| 986 |
+
"loss": 0.18328857421875,
|
| 987 |
+
"step": 135
|
| 988 |
+
},
|
| 989 |
+
{
|
| 990 |
+
"epoch": 2.5660377358490565,
|
| 991 |
+
"grad_norm": 0.026461446657776833,
|
| 992 |
+
"learning_rate": 1.6111502307241837e-05,
|
| 993 |
+
"loss": 0.615020751953125,
|
| 994 |
+
"step": 136
|
| 995 |
+
},
|
| 996 |
+
{
|
| 997 |
+
"epoch": 2.5849056603773586,
|
| 998 |
+
"grad_norm": 0.021281061694025993,
|
| 999 |
+
"learning_rate": 1.5623488523503256e-05,
|
| 1000 |
+
"loss": 0.4334869384765625,
|
| 1001 |
+
"step": 137
|
| 1002 |
+
},
|
| 1003 |
+
{
|
| 1004 |
+
"epoch": 2.6037735849056602,
|
| 1005 |
+
"grad_norm": 0.024843210354447365,
|
| 1006 |
+
"learning_rate": 1.515447884560556e-05,
|
| 1007 |
+
"loss": 0.54547119140625,
|
| 1008 |
+
"step": 138
|
| 1009 |
+
},
|
| 1010 |
+
{
|
| 1011 |
+
"epoch": 2.6226415094339623,
|
| 1012 |
+
"grad_norm": 0.029024476185441017,
|
| 1013 |
+
"learning_rate": 1.47046996295469e-05,
|
| 1014 |
+
"loss": 0.67083740234375,
|
| 1015 |
+
"step": 139
|
| 1016 |
+
},
|
| 1017 |
+
{
|
| 1018 |
+
"epoch": 2.641509433962264,
|
| 1019 |
+
"grad_norm": 0.02433478645980358,
|
| 1020 |
+
"learning_rate": 1.4274367950215495e-05,
|
| 1021 |
+
"loss": 0.37200927734375,
|
| 1022 |
+
"step": 140
|
| 1023 |
+
},
|
| 1024 |
+
{
|
| 1025 |
+
"epoch": 2.660377358490566,
|
| 1026 |
+
"grad_norm": 0.02773123048245907,
|
| 1027 |
+
"learning_rate": 1.3863691496623755e-05,
|
| 1028 |
+
"loss": 0.770782470703125,
|
| 1029 |
+
"step": 141
|
| 1030 |
+
},
|
| 1031 |
+
{
|
| 1032 |
+
"epoch": 2.6792452830188678,
|
| 1033 |
+
"grad_norm": 0.023714495822787285,
|
| 1034 |
+
"learning_rate": 1.3472868471672284e-05,
|
| 1035 |
+
"loss": 0.52044677734375,
|
| 1036 |
+
"step": 142
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"epoch": 2.69811320754717,
|
| 1040 |
+
"grad_norm": 0.02553577907383442,
|
| 1041 |
+
"learning_rate": 1.3102087496492127e-05,
|
| 1042 |
+
"loss": 0.46014404296875,
|
| 1043 |
+
"step": 143
|
| 1044 |
+
},
|
| 1045 |
+
{
|
| 1046 |
+
"epoch": 2.7169811320754715,
|
| 1047 |
+
"grad_norm": 0.024819141253829002,
|
| 1048 |
+
"learning_rate": 1.2751527519411405e-05,
|
| 1049 |
+
"loss": 0.5006103515625,
|
| 1050 |
+
"step": 144
|
| 1051 |
+
},
|
| 1052 |
+
{
|
| 1053 |
+
"epoch": 2.7358490566037736,
|
| 1054 |
+
"grad_norm": 0.024170102551579475,
|
| 1055 |
+
"learning_rate": 1.2421357729590315e-05,
|
| 1056 |
+
"loss": 0.56585693359375,
|
| 1057 |
+
"step": 145
|
| 1058 |
+
},
|
| 1059 |
+
{
|
| 1060 |
+
"epoch": 2.7547169811320753,
|
| 1061 |
+
"grad_norm": 0.021928368136286736,
|
| 1062 |
+
"learning_rate": 1.2111737475366126e-05,
|
| 1063 |
+
"loss": 0.39080810546875,
|
| 1064 |
+
"step": 146
|
| 1065 |
+
},
|
| 1066 |
+
{
|
| 1067 |
+
"epoch": 2.7735849056603774,
|
| 1068 |
+
"grad_norm": 0.0276940930634737,
|
| 1069 |
+
"learning_rate": 1.1822816187347623e-05,
|
| 1070 |
+
"loss": 0.7254638671875,
|
| 1071 |
+
"step": 147
|
| 1072 |
+
},
|
| 1073 |
+
{
|
| 1074 |
+
"epoch": 2.7924528301886795,
|
| 1075 |
+
"grad_norm": 0.028834933415055275,
|
| 1076 |
+
"learning_rate": 1.155473330629609e-05,
|
| 1077 |
+
"loss": 0.7357177734375,
|
| 1078 |
+
"step": 148
|
| 1079 |
+
},
|
| 1080 |
+
{
|
| 1081 |
+
"epoch": 2.811320754716981,
|
| 1082 |
+
"grad_norm": 0.02765583246946335,
|
| 1083 |
+
"learning_rate": 1.130761821582766e-05,
|
| 1084 |
+
"loss": 0.6878662109375,
|
| 1085 |
+
"step": 149
|
| 1086 |
+
},
|
| 1087 |
+
{
|
| 1088 |
+
"epoch": 2.830188679245283,
|
| 1089 |
+
"grad_norm": 0.018916428089141846,
|
| 1090 |
+
"learning_rate": 1.1081590179969499e-05,
|
| 1091 |
+
"loss": 0.31195068359375,
|
| 1092 |
+
"step": 150
|
| 1093 |
+
},
|
| 1094 |
+
{
|
| 1095 |
+
"epoch": 2.849056603773585,
|
| 1096 |
+
"grad_norm": 0.02231622487306595,
|
| 1097 |
+
"learning_rate": 1.087675828559994e-05,
|
| 1098 |
+
"loss": 0.45281982421875,
|
| 1099 |
+
"step": 151
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"epoch": 2.867924528301887,
|
| 1103 |
+
"grad_norm": 0.023466696962714195,
|
| 1104 |
+
"learning_rate": 1.0693221389800372e-05,
|
| 1105 |
+
"loss": 0.47271728515625,
|
| 1106 |
+
"step": 152
|
| 1107 |
+
},
|
| 1108 |
+
{
|
| 1109 |
+
"epoch": 2.8867924528301887,
|
| 1110 |
+
"grad_norm": 0.028103815391659737,
|
| 1111 |
+
"learning_rate": 1.0531068072144323e-05,
|
| 1112 |
+
"loss": 0.76141357421875,
|
| 1113 |
+
"step": 153
|
| 1114 |
+
},
|
| 1115 |
+
{
|
| 1116 |
+
"epoch": 2.9056603773584904,
|
| 1117 |
+
"grad_norm": 0.019869353622198105,
|
| 1118 |
+
"learning_rate": 1.039037659194669e-05,
|
| 1119 |
+
"loss": 0.311370849609375,
|
| 1120 |
+
"step": 154
|
| 1121 |
+
},
|
| 1122 |
+
{
|
| 1123 |
+
"epoch": 2.9245283018867925,
|
| 1124 |
+
"grad_norm": 0.027084778994321823,
|
| 1125 |
+
"learning_rate": 1.0271214850493804e-05,
|
| 1126 |
+
"loss": 0.651123046875,
|
| 1127 |
+
"step": 155
|
| 1128 |
+
},
|
| 1129 |
+
{
|
| 1130 |
+
"epoch": 2.9433962264150946,
|
| 1131 |
+
"grad_norm": 0.021756336092948914,
|
| 1132 |
+
"learning_rate": 1.017364035827255e-05,
|
| 1133 |
+
"loss": 0.45587158203125,
|
| 1134 |
+
"step": 156
|
| 1135 |
+
},
|
| 1136 |
+
{
|
| 1137 |
+
"epoch": 2.9622641509433962,
|
| 1138 |
+
"grad_norm": 0.029050158336758614,
|
| 1139 |
+
"learning_rate": 1.0097700207214337e-05,
|
| 1140 |
+
"loss": 0.78509521484375,
|
| 1141 |
+
"step": 157
|
| 1142 |
+
},
|
| 1143 |
+
{
|
| 1144 |
+
"epoch": 2.981132075471698,
|
| 1145 |
+
"grad_norm": 0.02259492501616478,
|
| 1146 |
+
"learning_rate": 1.0043431047967333e-05,
|
| 1147 |
+
"loss": 0.326934814453125,
|
| 1148 |
+
"step": 158
|
| 1149 |
+
},
|
| 1150 |
+
{
|
| 1151 |
+
"epoch": 3.0,
|
| 1152 |
+
"grad_norm": 0.02022467367351055,
|
| 1153 |
+
"learning_rate": 1.0010859072207936e-05,
|
| 1154 |
+
"loss": 0.236328125,
|
| 1155 |
+
"step": 159
|
| 1156 |
+
},
|
| 1157 |
+
{
|
| 1158 |
+
"epoch": 3.0,
|
| 1159 |
+
"eval_loss": 0.682373046875,
|
| 1160 |
+
"eval_runtime": 5.4116,
|
| 1161 |
+
"eval_samples_per_second": 0.554,
|
| 1162 |
+
"eval_steps_per_second": 0.185,
|
| 1163 |
+
"step": 159
|
| 1164 |
+
}
|
| 1165 |
+
],
|
| 1166 |
+
"logging_steps": 1.0,
|
| 1167 |
+
"max_steps": 159,
|
| 1168 |
+
"num_input_tokens_seen": 0,
|
| 1169 |
+
"num_train_epochs": 3,
|
| 1170 |
+
"save_steps": 0,
|
| 1171 |
+
"stateful_callbacks": {
|
| 1172 |
+
"TrainerControl": {
|
| 1173 |
+
"args": {
|
| 1174 |
+
"should_epoch_stop": false,
|
| 1175 |
+
"should_evaluate": false,
|
| 1176 |
+
"should_log": false,
|
| 1177 |
+
"should_save": true,
|
| 1178 |
+
"should_training_stop": true
|
| 1179 |
+
},
|
| 1180 |
+
"attributes": {}
|
| 1181 |
+
}
|
| 1182 |
+
},
|
| 1183 |
+
"total_flos": 1.382086886631565e+19,
|
| 1184 |
+
"train_batch_size": 1,
|
| 1185 |
+
"trial_name": null,
|
| 1186 |
+
"trial_params": null
|
| 1187 |
+
}
|