mateoguaman commited on
Commit
e35953f
·
verified ·
1 Parent(s): 06d52ca

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +3 -0
  2. README.md +58 -0
  3. adapter_config.json +37 -0
  4. adapter_model.safetensors +3 -0
  5. all_results.json +13 -0
  6. checkpoint-3119/README.md +202 -0
  7. checkpoint-3119/adapter_config.json +37 -0
  8. checkpoint-3119/adapter_model.safetensors +3 -0
  9. checkpoint-3119/optimizer.pt +3 -0
  10. checkpoint-3119/preprocessor_config.json +25 -0
  11. checkpoint-3119/rng_state_0.pth +3 -0
  12. checkpoint-3119/rng_state_1.pth +3 -0
  13. checkpoint-3119/rng_state_2.pth +3 -0
  14. checkpoint-3119/rng_state_3.pth +3 -0
  15. checkpoint-3119/rng_state_4.pth +3 -0
  16. checkpoint-3119/rng_state_5.pth +3 -0
  17. checkpoint-3119/rng_state_6.pth +3 -0
  18. checkpoint-3119/rng_state_7.pth +3 -0
  19. checkpoint-3119/scheduler.pt +3 -0
  20. checkpoint-3119/special_tokens_map.json +39 -0
  21. checkpoint-3119/tokenizer.json +3 -0
  22. checkpoint-3119/tokenizer_config.json +0 -0
  23. checkpoint-3119/trainer_state.json +1290 -0
  24. checkpoint-3119/training_args.bin +3 -0
  25. checkpoint-6237/README.md +202 -0
  26. checkpoint-6237/adapter_config.json +37 -0
  27. checkpoint-6237/adapter_model.safetensors +3 -0
  28. checkpoint-6237/optimizer.pt +3 -0
  29. checkpoint-6237/preprocessor_config.json +25 -0
  30. checkpoint-6237/rng_state_0.pth +3 -0
  31. checkpoint-6237/rng_state_1.pth +3 -0
  32. checkpoint-6237/rng_state_2.pth +3 -0
  33. checkpoint-6237/rng_state_3.pth +3 -0
  34. checkpoint-6237/rng_state_4.pth +3 -0
  35. checkpoint-6237/rng_state_5.pth +3 -0
  36. checkpoint-6237/rng_state_6.pth +3 -0
  37. checkpoint-6237/rng_state_7.pth +3 -0
  38. checkpoint-6237/scheduler.pt +3 -0
  39. checkpoint-6237/special_tokens_map.json +39 -0
  40. checkpoint-6237/tokenizer.json +3 -0
  41. checkpoint-6237/tokenizer_config.json +0 -0
  42. checkpoint-6237/trainer_state.json +2538 -0
  43. checkpoint-6237/training_args.bin +3 -0
  44. config.json +55 -0
  45. eval_results.json +7 -0
  46. preprocessor_config.json +25 -0
  47. special_tokens_map.json +39 -0
  48. tokenizer.json +3 -0
  49. tokenizer_config.json +0 -0
  50. train_results.json +8 -0
.gitattributes CHANGED
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ checkpoint-3119/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-6237/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: google/paligemma2-3b-pt-224
3
+ datasets: mateoguaman/vamos_10pct_gpt5_mini_cocoqa_localized_narratives_fixed
4
+ library_name: transformers
5
+ model_name: google/paligemma2-3b-pt-224
6
+ tags:
7
+ - generated_from_trainer
8
+ - alignment-handbook
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for google/paligemma2-3b-pt-224
13
+
14
+ This model is a fine-tuned version of [google/paligemma2-3b-pt-224](https://huggingface.co/google/paligemma2-3b-pt-224) on the [mateoguaman/vamos_10pct_gpt5_mini_cocoqa_localized_narratives_fixed](https://huggingface.co/datasets/mateoguaman/vamos_10pct_gpt5_mini_cocoqa_localized_narratives_fixed) dataset.
15
+ It has been trained using [TRL](https://github.com/huggingface/trl).
16
+
17
+ ## Quick start
18
+
19
+ ```python
20
+ from transformers import pipeline
21
+
22
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
23
+ generator = pipeline("text-generation", model="None", device="cuda")
24
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
25
+ print(output["generated_text"])
26
+ ```
27
+
28
+ ## Training procedure
29
+
30
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/tri/paligemma2-3b-pt-224-sft-lora-vamos_10pct_gpt5_mini_cocoqa_localized_narratives_fixed/runs/34idwmc1)
31
+
32
+
33
+ This model was trained with SFT.
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 0.15.2
38
+ - Transformers: 4.49.0
39
+ - Pytorch: 2.6.0
40
+ - Datasets: 3.4.1
41
+ - Tokenizers: 0.21.1
42
+
43
+ ## Citations
44
+
45
+
46
+
47
+ Cite TRL as:
48
+
49
+ ```bibtex
50
+ @misc{vonwerra2022trl,
51
+ title = {{TRL: Transformer Reinforcement Learning}},
52
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
53
+ year = 2020,
54
+ journal = {GitHub repository},
55
+ publisher = {GitHub},
56
+ howpublished = {\url{https://github.com/huggingface/trl}}
57
+ }
58
+ ```
adapter_config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "google/paligemma2-3b-pt-224",
5
+ "bias": "none",
6
+ "eva_config": null,
7
+ "exclude_modules": null,
8
+ "fan_in_fan_out": false,
9
+ "inference_mode": true,
10
+ "init_lora_weights": true,
11
+ "layer_replication": null,
12
+ "layers_pattern": null,
13
+ "layers_to_transform": null,
14
+ "loftq_config": {},
15
+ "lora_alpha": 16,
16
+ "lora_bias": false,
17
+ "lora_dropout": 0.05,
18
+ "megatron_config": null,
19
+ "megatron_core": "megatron.core",
20
+ "modules_to_save": null,
21
+ "peft_type": "LORA",
22
+ "r": 16,
23
+ "rank_pattern": {},
24
+ "revision": null,
25
+ "target_modules": [
26
+ "k_proj",
27
+ "down_proj",
28
+ "v_proj",
29
+ "q_proj",
30
+ "gate_proj",
31
+ "o_proj",
32
+ "up_proj"
33
+ ],
34
+ "task_type": "CAUSAL_LM",
35
+ "use_dora": false,
36
+ "use_rslora": false
37
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6be4b4f4bb2df72e2cb7de3a913546aecb8c7e69fbe1a6b9586df92895b6b352
3
+ size 95091000
all_results.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "eval_loss": 1.53940749168396,
3
+ "eval_runtime": 1828.6515,
4
+ "eval_samples": 495720,
5
+ "eval_samples_per_second": 271.085,
6
+ "eval_steps_per_second": 2.118,
7
+ "total_flos": 3.9136612672224625e+18,
8
+ "train_loss": 1.9499194212634154,
9
+ "train_runtime": 7999.3345,
10
+ "train_samples": 798264,
11
+ "train_samples_per_second": 99.791,
12
+ "train_steps_per_second": 0.78
13
+ }
checkpoint-3119/README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: google/paligemma2-3b-pt-224
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Model ID
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+
11
+
12
+ ## Model Details
13
+
14
+ ### Model Description
15
+
16
+ <!-- Provide a longer summary of what this model is. -->
17
+
18
+
19
+
20
+ - **Developed by:** [More Information Needed]
21
+ - **Funded by [optional]:** [More Information Needed]
22
+ - **Shared by [optional]:** [More Information Needed]
23
+ - **Model type:** [More Information Needed]
24
+ - **Language(s) (NLP):** [More Information Needed]
25
+ - **License:** [More Information Needed]
26
+ - **Finetuned from model [optional]:** [More Information Needed]
27
+
28
+ ### Model Sources [optional]
29
+
30
+ <!-- Provide the basic links for the model. -->
31
+
32
+ - **Repository:** [More Information Needed]
33
+ - **Paper [optional]:** [More Information Needed]
34
+ - **Demo [optional]:** [More Information Needed]
35
+
36
+ ## Uses
37
+
38
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
39
+
40
+ ### Direct Use
41
+
42
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
43
+
44
+ [More Information Needed]
45
+
46
+ ### Downstream Use [optional]
47
+
48
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Out-of-Scope Use
53
+
54
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
55
+
56
+ [More Information Needed]
57
+
58
+ ## Bias, Risks, and Limitations
59
+
60
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ### Recommendations
65
+
66
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
67
+
68
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
69
+
70
+ ## How to Get Started with the Model
71
+
72
+ Use the code below to get started with the model.
73
+
74
+ [More Information Needed]
75
+
76
+ ## Training Details
77
+
78
+ ### Training Data
79
+
80
+ <!-- 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. -->
81
+
82
+ [More Information Needed]
83
+
84
+ ### Training Procedure
85
+
86
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
87
+
88
+ #### Preprocessing [optional]
89
+
90
+ [More Information Needed]
91
+
92
+
93
+ #### Training Hyperparameters
94
+
95
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
96
+
97
+ #### Speeds, Sizes, Times [optional]
98
+
99
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
100
+
101
+ [More Information Needed]
102
+
103
+ ## Evaluation
104
+
105
+ <!-- This section describes the evaluation protocols and provides the results. -->
106
+
107
+ ### Testing Data, Factors & Metrics
108
+
109
+ #### Testing Data
110
+
111
+ <!-- This should link to a Dataset Card if possible. -->
112
+
113
+ [More Information Needed]
114
+
115
+ #### Factors
116
+
117
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Metrics
122
+
123
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
124
+
125
+ [More Information Needed]
126
+
127
+ ### Results
128
+
129
+ [More Information Needed]
130
+
131
+ #### Summary
132
+
133
+
134
+
135
+ ## Model Examination [optional]
136
+
137
+ <!-- Relevant interpretability work for the model goes here -->
138
+
139
+ [More Information Needed]
140
+
141
+ ## Environmental Impact
142
+
143
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
144
+
145
+ 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).
146
+
147
+ - **Hardware Type:** [More Information Needed]
148
+ - **Hours used:** [More Information Needed]
149
+ - **Cloud Provider:** [More Information Needed]
150
+ - **Compute Region:** [More Information Needed]
151
+ - **Carbon Emitted:** [More Information Needed]
152
+
153
+ ## Technical Specifications [optional]
154
+
155
+ ### Model Architecture and Objective
156
+
157
+ [More Information Needed]
158
+
159
+ ### Compute Infrastructure
160
+
161
+ [More Information Needed]
162
+
163
+ #### Hardware
164
+
165
+ [More Information Needed]
166
+
167
+ #### Software
168
+
169
+ [More Information Needed]
170
+
171
+ ## Citation [optional]
172
+
173
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
174
+
175
+ **BibTeX:**
176
+
177
+ [More Information Needed]
178
+
179
+ **APA:**
180
+
181
+ [More Information Needed]
182
+
183
+ ## Glossary [optional]
184
+
185
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
186
+
187
+ [More Information Needed]
188
+
189
+ ## More Information [optional]
190
+
191
+ [More Information Needed]
192
+
193
+ ## Model Card Authors [optional]
194
+
195
+ [More Information Needed]
196
+
197
+ ## Model Card Contact
198
+
199
+ [More Information Needed]
200
+ ### Framework versions
201
+
202
+ - PEFT 0.14.0
checkpoint-3119/adapter_config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "google/paligemma2-3b-pt-224",
5
+ "bias": "none",
6
+ "eva_config": null,
7
+ "exclude_modules": null,
8
+ "fan_in_fan_out": false,
9
+ "inference_mode": true,
10
+ "init_lora_weights": true,
11
+ "layer_replication": null,
12
+ "layers_pattern": null,
13
+ "layers_to_transform": null,
14
+ "loftq_config": {},
15
+ "lora_alpha": 16,
16
+ "lora_bias": false,
17
+ "lora_dropout": 0.05,
18
+ "megatron_config": null,
19
+ "megatron_core": "megatron.core",
20
+ "modules_to_save": null,
21
+ "peft_type": "LORA",
22
+ "r": 16,
23
+ "rank_pattern": {},
24
+ "revision": null,
25
+ "target_modules": [
26
+ "k_proj",
27
+ "down_proj",
28
+ "v_proj",
29
+ "q_proj",
30
+ "gate_proj",
31
+ "o_proj",
32
+ "up_proj"
33
+ ],
34
+ "task_type": "CAUSAL_LM",
35
+ "use_dora": false,
36
+ "use_rslora": false
37
+ }
checkpoint-3119/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6be4b4f4bb2df72e2cb7de3a913546aecb8c7e69fbe1a6b9586df92895b6b352
3
+ size 95091000
checkpoint-3119/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8575e5a31ffda76bcfdfd4869ad1c154c8ed455d9092dad407844021d8b58522
3
+ size 190464380
checkpoint-3119/preprocessor_config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": null,
3
+ "do_normalize": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "image_mean": [
7
+ 0.5,
8
+ 0.5,
9
+ 0.5
10
+ ],
11
+ "image_processor_type": "SiglipImageProcessor",
12
+ "image_seq_length": 256,
13
+ "image_std": [
14
+ 0.5,
15
+ 0.5,
16
+ 0.5
17
+ ],
18
+ "processor_class": "PaliGemmaProcessor",
19
+ "resample": 3,
20
+ "rescale_factor": 0.00392156862745098,
21
+ "size": {
22
+ "height": 224,
23
+ "width": 224
24
+ }
25
+ }
checkpoint-3119/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04af563841890f9c8b560cf6db1986a19c76e19d4aa67ea7b349d6eaeb941663
3
+ size 15984
checkpoint-3119/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9a18a7e2476b38417256b04bc4d1430c4b333b1f8f45ae01146912b7244cd35
3
+ size 15984
checkpoint-3119/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cf72f0ae9cfa868c0d359891f394058b2e294adbb476b9bce12d5c295c09b5b
3
+ size 15984
checkpoint-3119/rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f28c4ad7eebc24f3afc465f4542fcd44656f7d4fd48da0bc9538735150633ae7
3
+ size 15984
checkpoint-3119/rng_state_4.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:799a4314e0de8b7959d399ae82d6db686b4ae0913034b3900511c3781e04a785
3
+ size 15984
checkpoint-3119/rng_state_5.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c369ab6e76142ede738ce07ab055e8ea0fa91fcffb397c253cdfa0a5a866510e
3
+ size 15984
checkpoint-3119/rng_state_6.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c370545bb145612fe2fff7b80314a136d0749ed0c77ac2343e5a740030d9e7c2
3
+ size 15984
checkpoint-3119/rng_state_7.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2da3a2e4c00cb47e22bba9757bfe6891770da222ab9b1f7db87e6bfd157ed38
3
+ size 15984
checkpoint-3119/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ecc4c515c7b740e24b81f75d944f6e80b6541c0a472de59fdccbcba191a191ac
3
+ size 1064
checkpoint-3119/special_tokens_map.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ {
4
+ "content": "<image>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ }
10
+ ],
11
+ "bos_token": {
12
+ "content": "<bos>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "eos_token": {
19
+ "content": "<eos>",
20
+ "lstrip": false,
21
+ "normalized": false,
22
+ "rstrip": false,
23
+ "single_word": false
24
+ },
25
+ "pad_token": {
26
+ "content": "<pad>",
27
+ "lstrip": false,
28
+ "normalized": false,
29
+ "rstrip": false,
30
+ "single_word": false
31
+ },
32
+ "unk_token": {
33
+ "content": "<unk>",
34
+ "lstrip": false,
35
+ "normalized": false,
36
+ "rstrip": false,
37
+ "single_word": false
38
+ }
39
+ }
checkpoint-3119/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b648d11e0879b11659e6b4051f691752c0cef597a865c6fde5b318b9f68c1d05
3
+ size 34600974
checkpoint-3119/tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-3119/trainer_state.json ADDED
@@ -0,0 +1,1290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 1.53940749168396,
3
+ "best_model_checkpoint": "data/paligemma2-3b-pt-224-sft-lora-vamos_10pct_gpt5_mini_cocoqa_localized_narratives_fixed/checkpoint-3119",
4
+ "epoch": 0.5000801667468334,
5
+ "eval_steps": 3119,
6
+ "global_step": 3119,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 0.000160333493666827,
13
+ "grad_norm": 5.209284782409668,
14
+ "learning_rate": 1.6025641025641025e-07,
15
+ "loss": 8.2025,
16
+ "mean_token_accuracy": 0.257368803024292,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.00320666987333654,
21
+ "grad_norm": 5.846069812774658,
22
+ "learning_rate": 3.205128205128205e-06,
23
+ "loss": 8.8548,
24
+ "mean_token_accuracy": 0.2286823886005502,
25
+ "step": 20
26
+ },
27
+ {
28
+ "epoch": 0.00641333974667308,
29
+ "grad_norm": 6.527371406555176,
30
+ "learning_rate": 6.41025641025641e-06,
31
+ "loss": 8.6095,
32
+ "mean_token_accuracy": 0.236174263805151,
33
+ "step": 40
34
+ },
35
+ {
36
+ "epoch": 0.00962000962000962,
37
+ "grad_norm": 6.7473320960998535,
38
+ "learning_rate": 9.615384615384616e-06,
39
+ "loss": 7.0858,
40
+ "mean_token_accuracy": 0.24544834867119789,
41
+ "step": 60
42
+ },
43
+ {
44
+ "epoch": 0.01282667949334616,
45
+ "grad_norm": 3.6053383350372314,
46
+ "learning_rate": 1.282051282051282e-05,
47
+ "loss": 5.0951,
48
+ "mean_token_accuracy": 0.2442556582391262,
49
+ "step": 80
50
+ },
51
+ {
52
+ "epoch": 0.0160333493666827,
53
+ "grad_norm": 1.8141255378723145,
54
+ "learning_rate": 1.602564102564103e-05,
55
+ "loss": 4.0162,
56
+ "mean_token_accuracy": 0.29175431579351424,
57
+ "step": 100
58
+ },
59
+ {
60
+ "epoch": 0.01924001924001924,
61
+ "grad_norm": 1.9441587924957275,
62
+ "learning_rate": 1.923076923076923e-05,
63
+ "loss": 3.3901,
64
+ "mean_token_accuracy": 0.33477348536252977,
65
+ "step": 120
66
+ },
67
+ {
68
+ "epoch": 0.02244668911335578,
69
+ "grad_norm": 2.866448402404785,
70
+ "learning_rate": 2.2435897435897437e-05,
71
+ "loss": 3.0645,
72
+ "mean_token_accuracy": 0.36781402975320815,
73
+ "step": 140
74
+ },
75
+ {
76
+ "epoch": 0.02565335898669232,
77
+ "grad_norm": 6.173582553863525,
78
+ "learning_rate": 2.564102564102564e-05,
79
+ "loss": 2.8851,
80
+ "mean_token_accuracy": 0.3857575759291649,
81
+ "step": 160
82
+ },
83
+ {
84
+ "epoch": 0.02886002886002886,
85
+ "grad_norm": 2.632821798324585,
86
+ "learning_rate": 2.8846153846153845e-05,
87
+ "loss": 2.625,
88
+ "mean_token_accuracy": 0.42856554985046386,
89
+ "step": 180
90
+ },
91
+ {
92
+ "epoch": 0.0320666987333654,
93
+ "grad_norm": 3.801175594329834,
94
+ "learning_rate": 3.205128205128206e-05,
95
+ "loss": 2.5486,
96
+ "mean_token_accuracy": 0.44293054938316345,
97
+ "step": 200
98
+ },
99
+ {
100
+ "epoch": 0.03527336860670194,
101
+ "grad_norm": 2.8042311668395996,
102
+ "learning_rate": 3.525641025641026e-05,
103
+ "loss": 2.4267,
104
+ "mean_token_accuracy": 0.46162763684988023,
105
+ "step": 220
106
+ },
107
+ {
108
+ "epoch": 0.03848003848003848,
109
+ "grad_norm": 5.13622522354126,
110
+ "learning_rate": 3.846153846153846e-05,
111
+ "loss": 2.3457,
112
+ "mean_token_accuracy": 0.46204862743616104,
113
+ "step": 240
114
+ },
115
+ {
116
+ "epoch": 0.04168670835337502,
117
+ "grad_norm": 8.156232833862305,
118
+ "learning_rate": 4.166666666666667e-05,
119
+ "loss": 2.3276,
120
+ "mean_token_accuracy": 0.4628546267747879,
121
+ "step": 260
122
+ },
123
+ {
124
+ "epoch": 0.04489337822671156,
125
+ "grad_norm": 5.940677642822266,
126
+ "learning_rate": 4.4871794871794874e-05,
127
+ "loss": 2.3121,
128
+ "mean_token_accuracy": 0.4677517533302307,
129
+ "step": 280
130
+ },
131
+ {
132
+ "epoch": 0.0481000481000481,
133
+ "grad_norm": 3.2402215003967285,
134
+ "learning_rate": 4.8076923076923084e-05,
135
+ "loss": 2.2948,
136
+ "mean_token_accuracy": 0.4685308575630188,
137
+ "step": 300
138
+ },
139
+ {
140
+ "epoch": 0.05130671797338464,
141
+ "grad_norm": 4.654311656951904,
142
+ "learning_rate": 5.128205128205128e-05,
143
+ "loss": 2.2764,
144
+ "mean_token_accuracy": 0.46919394135475156,
145
+ "step": 320
146
+ },
147
+ {
148
+ "epoch": 0.05451338784672118,
149
+ "grad_norm": 6.181347370147705,
150
+ "learning_rate": 5.448717948717948e-05,
151
+ "loss": 2.2516,
152
+ "mean_token_accuracy": 0.4718445986509323,
153
+ "step": 340
154
+ },
155
+ {
156
+ "epoch": 0.05772005772005772,
157
+ "grad_norm": 4.977773189544678,
158
+ "learning_rate": 5.769230769230769e-05,
159
+ "loss": 2.3078,
160
+ "mean_token_accuracy": 0.46173652708530427,
161
+ "step": 360
162
+ },
163
+ {
164
+ "epoch": 0.06092672759339426,
165
+ "grad_norm": 2.649177074432373,
166
+ "learning_rate": 6.089743589743589e-05,
167
+ "loss": 2.2364,
168
+ "mean_token_accuracy": 0.4723318055272102,
169
+ "step": 380
170
+ },
171
+ {
172
+ "epoch": 0.0641333974667308,
173
+ "grad_norm": 2.475168228149414,
174
+ "learning_rate": 6.410256410256412e-05,
175
+ "loss": 2.2404,
176
+ "mean_token_accuracy": 0.4773345053195953,
177
+ "step": 400
178
+ },
179
+ {
180
+ "epoch": 0.06734006734006734,
181
+ "grad_norm": 3.376347541809082,
182
+ "learning_rate": 6.730769230769232e-05,
183
+ "loss": 2.1923,
184
+ "mean_token_accuracy": 0.48165750354528425,
185
+ "step": 420
186
+ },
187
+ {
188
+ "epoch": 0.07054673721340388,
189
+ "grad_norm": 2.1181466579437256,
190
+ "learning_rate": 7.051282051282052e-05,
191
+ "loss": 2.1944,
192
+ "mean_token_accuracy": 0.47836676687002183,
193
+ "step": 440
194
+ },
195
+ {
196
+ "epoch": 0.07375340708674041,
197
+ "grad_norm": 3.304994583129883,
198
+ "learning_rate": 7.371794871794872e-05,
199
+ "loss": 2.2055,
200
+ "mean_token_accuracy": 0.47685392051935194,
201
+ "step": 460
202
+ },
203
+ {
204
+ "epoch": 0.07696007696007696,
205
+ "grad_norm": 3.5151872634887695,
206
+ "learning_rate": 7.692307692307693e-05,
207
+ "loss": 2.171,
208
+ "mean_token_accuracy": 0.4798412054777145,
209
+ "step": 480
210
+ },
211
+ {
212
+ "epoch": 0.0801667468334135,
213
+ "grad_norm": 2.439455509185791,
214
+ "learning_rate": 8.012820512820514e-05,
215
+ "loss": 2.1592,
216
+ "mean_token_accuracy": 0.48496305793523786,
217
+ "step": 500
218
+ },
219
+ {
220
+ "epoch": 0.08337341670675004,
221
+ "grad_norm": 3.069302797317505,
222
+ "learning_rate": 8.333333333333334e-05,
223
+ "loss": 2.0884,
224
+ "mean_token_accuracy": 0.4890993982553482,
225
+ "step": 520
226
+ },
227
+ {
228
+ "epoch": 0.08658008658008658,
229
+ "grad_norm": 5.592751979827881,
230
+ "learning_rate": 8.653846153846155e-05,
231
+ "loss": 2.1425,
232
+ "mean_token_accuracy": 0.48478382378816604,
233
+ "step": 540
234
+ },
235
+ {
236
+ "epoch": 0.08978675645342311,
237
+ "grad_norm": 2.7817585468292236,
238
+ "learning_rate": 8.974358974358975e-05,
239
+ "loss": 2.1501,
240
+ "mean_token_accuracy": 0.4846224099397659,
241
+ "step": 560
242
+ },
243
+ {
244
+ "epoch": 0.09299342632675967,
245
+ "grad_norm": 3.0570271015167236,
246
+ "learning_rate": 9.294871794871795e-05,
247
+ "loss": 2.1297,
248
+ "mean_token_accuracy": 0.4879722028970718,
249
+ "step": 580
250
+ },
251
+ {
252
+ "epoch": 0.0962000962000962,
253
+ "grad_norm": 2.257469415664673,
254
+ "learning_rate": 9.615384615384617e-05,
255
+ "loss": 2.1088,
256
+ "mean_token_accuracy": 0.4889796242117882,
257
+ "step": 600
258
+ },
259
+ {
260
+ "epoch": 0.09940676607343274,
261
+ "grad_norm": 5.005424499511719,
262
+ "learning_rate": 9.935897435897437e-05,
263
+ "loss": 2.1248,
264
+ "mean_token_accuracy": 0.48695541769266126,
265
+ "step": 620
266
+ },
267
+ {
268
+ "epoch": 0.10261343594676928,
269
+ "grad_norm": 2.763110637664795,
270
+ "learning_rate": 9.999799512762136e-05,
271
+ "loss": 2.0852,
272
+ "mean_token_accuracy": 0.4945754811167717,
273
+ "step": 640
274
+ },
275
+ {
276
+ "epoch": 0.10582010582010581,
277
+ "grad_norm": 2.5508882999420166,
278
+ "learning_rate": 9.998985060913877e-05,
279
+ "loss": 2.1155,
280
+ "mean_token_accuracy": 0.48479859828948973,
281
+ "step": 660
282
+ },
283
+ {
284
+ "epoch": 0.10902677569344237,
285
+ "grad_norm": 1.9309931993484497,
286
+ "learning_rate": 9.99754421597847e-05,
287
+ "loss": 2.0774,
288
+ "mean_token_accuracy": 0.4935262441635132,
289
+ "step": 680
290
+ },
291
+ {
292
+ "epoch": 0.1122334455667789,
293
+ "grad_norm": 2.175483465194702,
294
+ "learning_rate": 9.995477158499624e-05,
295
+ "loss": 2.0698,
296
+ "mean_token_accuracy": 0.4930373579263687,
297
+ "step": 700
298
+ },
299
+ {
300
+ "epoch": 0.11544011544011544,
301
+ "grad_norm": 2.2829439640045166,
302
+ "learning_rate": 9.992784147488018e-05,
303
+ "loss": 2.064,
304
+ "mean_token_accuracy": 0.4933862343430519,
305
+ "step": 720
306
+ },
307
+ {
308
+ "epoch": 0.11864678531345198,
309
+ "grad_norm": 1.5809357166290283,
310
+ "learning_rate": 9.989465520388845e-05,
311
+ "loss": 2.0323,
312
+ "mean_token_accuracy": 0.5016711667180062,
313
+ "step": 740
314
+ },
315
+ {
316
+ "epoch": 0.12185345518678851,
317
+ "grad_norm": 2.230652332305908,
318
+ "learning_rate": 9.985521693039529e-05,
319
+ "loss": 2.075,
320
+ "mean_token_accuracy": 0.4931314527988434,
321
+ "step": 760
322
+ },
323
+ {
324
+ "epoch": 0.12506012506012507,
325
+ "grad_norm": 1.8354729413986206,
326
+ "learning_rate": 9.980953159617621e-05,
327
+ "loss": 2.0748,
328
+ "mean_token_accuracy": 0.4964547500014305,
329
+ "step": 780
330
+ },
331
+ {
332
+ "epoch": 0.1282667949334616,
333
+ "grad_norm": 2.15897274017334,
334
+ "learning_rate": 9.975760492578874e-05,
335
+ "loss": 2.0301,
336
+ "mean_token_accuracy": 0.4994760677218437,
337
+ "step": 800
338
+ },
339
+ {
340
+ "epoch": 0.13147346480679814,
341
+ "grad_norm": 2.6074705123901367,
342
+ "learning_rate": 9.969944342585508e-05,
343
+ "loss": 1.9838,
344
+ "mean_token_accuracy": 0.5075768753886223,
345
+ "step": 820
346
+ },
347
+ {
348
+ "epoch": 0.13468013468013468,
349
+ "grad_norm": 1.7504245042800903,
350
+ "learning_rate": 9.963505438424693e-05,
351
+ "loss": 2.0732,
352
+ "mean_token_accuracy": 0.49125437140464784,
353
+ "step": 840
354
+ },
355
+ {
356
+ "epoch": 0.13788680455347122,
357
+ "grad_norm": 2.214726686477661,
358
+ "learning_rate": 9.956444586917213e-05,
359
+ "loss": 2.0329,
360
+ "mean_token_accuracy": 0.4968407765030861,
361
+ "step": 860
362
+ },
363
+ {
364
+ "epoch": 0.14109347442680775,
365
+ "grad_norm": 1.6134241819381714,
366
+ "learning_rate": 9.948762672816377e-05,
367
+ "loss": 2.0392,
368
+ "mean_token_accuracy": 0.4989665150642395,
369
+ "step": 880
370
+ },
371
+ {
372
+ "epoch": 0.1443001443001443,
373
+ "grad_norm": 1.3124563694000244,
374
+ "learning_rate": 9.94046065869715e-05,
375
+ "loss": 2.0265,
376
+ "mean_token_accuracy": 0.5022040411829949,
377
+ "step": 900
378
+ },
379
+ {
380
+ "epoch": 0.14750681417348083,
381
+ "grad_norm": 2.182892084121704,
382
+ "learning_rate": 9.931539584835553e-05,
383
+ "loss": 2.0258,
384
+ "mean_token_accuracy": 0.4994161993265152,
385
+ "step": 920
386
+ },
387
+ {
388
+ "epoch": 0.1507134840468174,
389
+ "grad_norm": 2.158780813217163,
390
+ "learning_rate": 9.922000569078288e-05,
391
+ "loss": 2.038,
392
+ "mean_token_accuracy": 0.49309421628713607,
393
+ "step": 940
394
+ },
395
+ {
396
+ "epoch": 0.15392015392015393,
397
+ "grad_norm": 1.8986632823944092,
398
+ "learning_rate": 9.911844806702692e-05,
399
+ "loss": 2.0521,
400
+ "mean_token_accuracy": 0.4916775792837143,
401
+ "step": 960
402
+ },
403
+ {
404
+ "epoch": 0.15712682379349047,
405
+ "grad_norm": 2.2148079872131348,
406
+ "learning_rate": 9.901073570266946e-05,
407
+ "loss": 2.046,
408
+ "mean_token_accuracy": 0.4920832559466362,
409
+ "step": 980
410
+ },
411
+ {
412
+ "epoch": 0.160333493666827,
413
+ "grad_norm": 2.105100393295288,
414
+ "learning_rate": 9.889688209450627e-05,
415
+ "loss": 2.0154,
416
+ "mean_token_accuracy": 0.5017145529389382,
417
+ "step": 1000
418
+ },
419
+ {
420
+ "epoch": 0.16354016354016354,
421
+ "grad_norm": 1.9177722930908203,
422
+ "learning_rate": 9.877690150885588e-05,
423
+ "loss": 2.0133,
424
+ "mean_token_accuracy": 0.502875691652298,
425
+ "step": 1020
426
+ },
427
+ {
428
+ "epoch": 0.16674683341350008,
429
+ "grad_norm": 1.3427209854125977,
430
+ "learning_rate": 9.865080897977188e-05,
431
+ "loss": 1.9948,
432
+ "mean_token_accuracy": 0.505776722729206,
433
+ "step": 1040
434
+ },
435
+ {
436
+ "epoch": 0.16995350328683662,
437
+ "grad_norm": 2.0759928226470947,
438
+ "learning_rate": 9.851862030715919e-05,
439
+ "loss": 1.9401,
440
+ "mean_token_accuracy": 0.5120617598295212,
441
+ "step": 1060
442
+ },
443
+ {
444
+ "epoch": 0.17316017316017315,
445
+ "grad_norm": 1.2468688488006592,
446
+ "learning_rate": 9.838035205479419e-05,
447
+ "loss": 1.9913,
448
+ "mean_token_accuracy": 0.5054045274853707,
449
+ "step": 1080
450
+ },
451
+ {
452
+ "epoch": 0.1763668430335097,
453
+ "grad_norm": 1.2889540195465088,
454
+ "learning_rate": 9.823602154824927e-05,
455
+ "loss": 1.9963,
456
+ "mean_token_accuracy": 0.505834324657917,
457
+ "step": 1100
458
+ },
459
+ {
460
+ "epoch": 0.17957351290684623,
461
+ "grad_norm": 1.4190268516540527,
462
+ "learning_rate": 9.808564687272178e-05,
463
+ "loss": 1.9797,
464
+ "mean_token_accuracy": 0.5044485762715339,
465
+ "step": 1120
466
+ },
467
+ {
468
+ "epoch": 0.1827801827801828,
469
+ "grad_norm": 1.7106951475143433,
470
+ "learning_rate": 9.792924687076801e-05,
471
+ "loss": 1.9863,
472
+ "mean_token_accuracy": 0.5070938616991043,
473
+ "step": 1140
474
+ },
475
+ {
476
+ "epoch": 0.18598685265351933,
477
+ "grad_norm": 1.247165322303772,
478
+ "learning_rate": 9.776684113994204e-05,
479
+ "loss": 1.9723,
480
+ "mean_token_accuracy": 0.5093738153576851,
481
+ "step": 1160
482
+ },
483
+ {
484
+ "epoch": 0.18919352252685587,
485
+ "grad_norm": 1.4030295610427856,
486
+ "learning_rate": 9.759845003034007e-05,
487
+ "loss": 1.9756,
488
+ "mean_token_accuracy": 0.5056015223264694,
489
+ "step": 1180
490
+ },
491
+ {
492
+ "epoch": 0.1924001924001924,
493
+ "grad_norm": 1.243714690208435,
494
+ "learning_rate": 9.74240946420506e-05,
495
+ "loss": 1.9513,
496
+ "mean_token_accuracy": 0.5091609105467796,
497
+ "step": 1200
498
+ },
499
+ {
500
+ "epoch": 0.19560686227352894,
501
+ "grad_norm": 0.9765139222145081,
502
+ "learning_rate": 9.724379682251036e-05,
503
+ "loss": 1.9808,
504
+ "mean_token_accuracy": 0.50465277582407,
505
+ "step": 1220
506
+ },
507
+ {
508
+ "epoch": 0.19881353214686548,
509
+ "grad_norm": 1.4885112047195435,
510
+ "learning_rate": 9.705757916376682e-05,
511
+ "loss": 1.9993,
512
+ "mean_token_accuracy": 0.5045629054307937,
513
+ "step": 1240
514
+ },
515
+ {
516
+ "epoch": 0.20202020202020202,
517
+ "grad_norm": 1.258948802947998,
518
+ "learning_rate": 9.686546499964731e-05,
519
+ "loss": 1.9868,
520
+ "mean_token_accuracy": 0.5066259905695916,
521
+ "step": 1260
522
+ },
523
+ {
524
+ "epoch": 0.20522687189353855,
525
+ "grad_norm": 1.192187786102295,
526
+ "learning_rate": 9.666747840283512e-05,
527
+ "loss": 1.9444,
528
+ "mean_token_accuracy": 0.5078241482377053,
529
+ "step": 1280
530
+ },
531
+ {
532
+ "epoch": 0.2084335417668751,
533
+ "grad_norm": 1.1449286937713623,
534
+ "learning_rate": 9.646364418185325e-05,
535
+ "loss": 1.9964,
536
+ "mean_token_accuracy": 0.5036799103021622,
537
+ "step": 1300
538
+ },
539
+ {
540
+ "epoch": 0.21164021164021163,
541
+ "grad_norm": 1.2843917608261108,
542
+ "learning_rate": 9.62539878779556e-05,
543
+ "loss": 1.9857,
544
+ "mean_token_accuracy": 0.5052528932690621,
545
+ "step": 1320
546
+ },
547
+ {
548
+ "epoch": 0.2148468815135482,
549
+ "grad_norm": 1.1665757894515991,
550
+ "learning_rate": 9.603853576192674e-05,
551
+ "loss": 1.9676,
552
+ "mean_token_accuracy": 0.5088991582393646,
553
+ "step": 1340
554
+ },
555
+ {
556
+ "epoch": 0.21805355138688473,
557
+ "grad_norm": 1.0627950429916382,
558
+ "learning_rate": 9.581731483078995e-05,
559
+ "loss": 1.9494,
560
+ "mean_token_accuracy": 0.512041249871254,
561
+ "step": 1360
562
+ },
563
+ {
564
+ "epoch": 0.22126022126022127,
565
+ "grad_norm": 1.3954745531082153,
566
+ "learning_rate": 9.559035280442443e-05,
567
+ "loss": 1.9352,
568
+ "mean_token_accuracy": 0.5163529127836227,
569
+ "step": 1380
570
+ },
571
+ {
572
+ "epoch": 0.2244668911335578,
573
+ "grad_norm": 2.581529378890991,
574
+ "learning_rate": 9.535767812209185e-05,
575
+ "loss": 1.966,
576
+ "mean_token_accuracy": 0.5078106135129928,
577
+ "step": 1400
578
+ },
579
+ {
580
+ "epoch": 0.22767356100689434,
581
+ "grad_norm": 1.995743751525879,
582
+ "learning_rate": 9.511931993887289e-05,
583
+ "loss": 1.9278,
584
+ "mean_token_accuracy": 0.5141927003860474,
585
+ "step": 1420
586
+ },
587
+ {
588
+ "epoch": 0.23088023088023088,
589
+ "grad_norm": 1.3608646392822266,
590
+ "learning_rate": 9.487530812201384e-05,
591
+ "loss": 1.9464,
592
+ "mean_token_accuracy": 0.5119614064693451,
593
+ "step": 1440
594
+ },
595
+ {
596
+ "epoch": 0.23408690075356742,
597
+ "grad_norm": 2.1510233879089355,
598
+ "learning_rate": 9.462567324718428e-05,
599
+ "loss": 1.972,
600
+ "mean_token_accuracy": 0.5053435668349266,
601
+ "step": 1460
602
+ },
603
+ {
604
+ "epoch": 0.23729357062690395,
605
+ "grad_norm": 1.3489898443222046,
606
+ "learning_rate": 9.437044659464568e-05,
607
+ "loss": 1.9406,
608
+ "mean_token_accuracy": 0.5107260003685952,
609
+ "step": 1480
610
+ },
611
+ {
612
+ "epoch": 0.2405002405002405,
613
+ "grad_norm": 2.1510982513427734,
614
+ "learning_rate": 9.410966014533196e-05,
615
+ "loss": 1.9501,
616
+ "mean_token_accuracy": 0.5109146684408188,
617
+ "step": 1500
618
+ },
619
+ {
620
+ "epoch": 0.24370691037357703,
621
+ "grad_norm": 1.3027640581130981,
622
+ "learning_rate": 9.384334657684207e-05,
623
+ "loss": 1.9162,
624
+ "mean_token_accuracy": 0.5180920317769051,
625
+ "step": 1520
626
+ },
627
+ {
628
+ "epoch": 0.24691358024691357,
629
+ "grad_norm": 1.6839220523834229,
630
+ "learning_rate": 9.357153925934543e-05,
631
+ "loss": 1.932,
632
+ "mean_token_accuracy": 0.5122836321592331,
633
+ "step": 1540
634
+ },
635
+ {
636
+ "epoch": 0.25012025012025013,
637
+ "grad_norm": 1.5489161014556885,
638
+ "learning_rate": 9.329427225140042e-05,
639
+ "loss": 1.9287,
640
+ "mean_token_accuracy": 0.5156795844435692,
641
+ "step": 1560
642
+ },
643
+ {
644
+ "epoch": 0.25332691999358664,
645
+ "grad_norm": 1.1957494020462036,
646
+ "learning_rate": 9.301158029568684e-05,
647
+ "loss": 1.8905,
648
+ "mean_token_accuracy": 0.5207541212439537,
649
+ "step": 1580
650
+ },
651
+ {
652
+ "epoch": 0.2565335898669232,
653
+ "grad_norm": 1.2413902282714844,
654
+ "learning_rate": 9.272349881465236e-05,
655
+ "loss": 1.9309,
656
+ "mean_token_accuracy": 0.5141352891921998,
657
+ "step": 1600
658
+ },
659
+ {
660
+ "epoch": 0.2597402597402597,
661
+ "grad_norm": 1.3737406730651855,
662
+ "learning_rate": 9.243006390607403e-05,
663
+ "loss": 1.9565,
664
+ "mean_token_accuracy": 0.5097300469875335,
665
+ "step": 1620
666
+ },
667
+ {
668
+ "epoch": 0.2629469296135963,
669
+ "grad_norm": 1.24127197265625,
670
+ "learning_rate": 9.213131233853511e-05,
671
+ "loss": 1.945,
672
+ "mean_token_accuracy": 0.513680812716484,
673
+ "step": 1640
674
+ },
675
+ {
676
+ "epoch": 0.26615359948693285,
677
+ "grad_norm": 1.2227799892425537,
678
+ "learning_rate": 9.182728154681772e-05,
679
+ "loss": 1.945,
680
+ "mean_token_accuracy": 0.5159043714404106,
681
+ "step": 1660
682
+ },
683
+ {
684
+ "epoch": 0.26936026936026936,
685
+ "grad_norm": 1.4925428628921509,
686
+ "learning_rate": 9.151800962721218e-05,
687
+ "loss": 1.959,
688
+ "mean_token_accuracy": 0.5081851810216904,
689
+ "step": 1680
690
+ },
691
+ {
692
+ "epoch": 0.2725669392336059,
693
+ "grad_norm": 1.154524564743042,
694
+ "learning_rate": 9.12035353327434e-05,
695
+ "loss": 1.9162,
696
+ "mean_token_accuracy": 0.517485597729683,
697
+ "step": 1700
698
+ },
699
+ {
700
+ "epoch": 0.27577360910694243,
701
+ "grad_norm": 1.1241073608398438,
702
+ "learning_rate": 9.08838980683149e-05,
703
+ "loss": 1.9477,
704
+ "mean_token_accuracy": 0.5126137733459473,
705
+ "step": 1720
706
+ },
707
+ {
708
+ "epoch": 0.278980278980279,
709
+ "grad_norm": 1.8384186029434204,
710
+ "learning_rate": 9.055913788577128e-05,
711
+ "loss": 1.9197,
712
+ "mean_token_accuracy": 0.5140128180384635,
713
+ "step": 1740
714
+ },
715
+ {
716
+ "epoch": 0.2821869488536155,
717
+ "grad_norm": 1.3156044483184814,
718
+ "learning_rate": 9.02292954788796e-05,
719
+ "loss": 1.9079,
720
+ "mean_token_accuracy": 0.5170748963952064,
721
+ "step": 1760
722
+ },
723
+ {
724
+ "epoch": 0.28539361872695207,
725
+ "grad_norm": 1.449820876121521,
726
+ "learning_rate": 8.98944121782301e-05,
727
+ "loss": 1.9342,
728
+ "mean_token_accuracy": 0.5114595577120781,
729
+ "step": 1780
730
+ },
731
+ {
732
+ "epoch": 0.2886002886002886,
733
+ "grad_norm": 1.6988258361816406,
734
+ "learning_rate": 8.955452994605753e-05,
735
+ "loss": 1.9449,
736
+ "mean_token_accuracy": 0.5123026236891747,
737
+ "step": 1800
738
+ },
739
+ {
740
+ "epoch": 0.29180695847362514,
741
+ "grad_norm": 1.0350065231323242,
742
+ "learning_rate": 8.920969137098303e-05,
743
+ "loss": 1.9213,
744
+ "mean_token_accuracy": 0.5155784547328949,
745
+ "step": 1820
746
+ },
747
+ {
748
+ "epoch": 0.29501362834696165,
749
+ "grad_norm": 1.1465715169906616,
750
+ "learning_rate": 8.885993966267753e-05,
751
+ "loss": 1.8896,
752
+ "mean_token_accuracy": 0.5216770812869072,
753
+ "step": 1840
754
+ },
755
+ {
756
+ "epoch": 0.2982202982202982,
757
+ "grad_norm": 1.1059490442276,
758
+ "learning_rate": 8.850531864644749e-05,
759
+ "loss": 1.8978,
760
+ "mean_token_accuracy": 0.5205768331885338,
761
+ "step": 1860
762
+ },
763
+ {
764
+ "epoch": 0.3014269680936348,
765
+ "grad_norm": 1.199690818786621,
766
+ "learning_rate": 8.81458727577434e-05,
767
+ "loss": 1.9053,
768
+ "mean_token_accuracy": 0.5151138812303543,
769
+ "step": 1880
770
+ },
771
+ {
772
+ "epoch": 0.3046336379669713,
773
+ "grad_norm": 1.373304009437561,
774
+ "learning_rate": 8.77816470365918e-05,
775
+ "loss": 1.9276,
776
+ "mean_token_accuracy": 0.5131517440080643,
777
+ "step": 1900
778
+ },
779
+ {
780
+ "epoch": 0.30784030784030786,
781
+ "grad_norm": 1.4349356889724731,
782
+ "learning_rate": 8.741268712195166e-05,
783
+ "loss": 1.8921,
784
+ "mean_token_accuracy": 0.5225584238767624,
785
+ "step": 1920
786
+ },
787
+ {
788
+ "epoch": 0.31104697771364437,
789
+ "grad_norm": 1.0764795541763306,
790
+ "learning_rate": 8.703903924599548e-05,
791
+ "loss": 1.8639,
792
+ "mean_token_accuracy": 0.5256009042263031,
793
+ "step": 1940
794
+ },
795
+ {
796
+ "epoch": 0.31425364758698093,
797
+ "grad_norm": 1.946021318435669,
798
+ "learning_rate": 8.666075022831643e-05,
799
+ "loss": 1.881,
800
+ "mean_token_accuracy": 0.5257818832993507,
801
+ "step": 1960
802
+ },
803
+ {
804
+ "epoch": 0.31746031746031744,
805
+ "grad_norm": 1.2787318229675293,
806
+ "learning_rate": 8.627786747006145e-05,
807
+ "loss": 1.8966,
808
+ "mean_token_accuracy": 0.523352475464344,
809
+ "step": 1980
810
+ },
811
+ {
812
+ "epoch": 0.320666987333654,
813
+ "grad_norm": 1.7891284227371216,
814
+ "learning_rate": 8.589043894799185e-05,
815
+ "loss": 1.93,
816
+ "mean_token_accuracy": 0.5103022322058678,
817
+ "step": 2000
818
+ },
819
+ {
820
+ "epoch": 0.3238736572069905,
821
+ "grad_norm": 1.8391680717468262,
822
+ "learning_rate": 8.549851320847156e-05,
823
+ "loss": 1.8785,
824
+ "mean_token_accuracy": 0.5231836125254631,
825
+ "step": 2020
826
+ },
827
+ {
828
+ "epoch": 0.3270803270803271,
829
+ "grad_norm": 1.2025116682052612,
830
+ "learning_rate": 8.510213936138403e-05,
831
+ "loss": 1.8816,
832
+ "mean_token_accuracy": 0.5240169554948807,
833
+ "step": 2040
834
+ },
835
+ {
836
+ "epoch": 0.33028699695366365,
837
+ "grad_norm": 1.1192851066589355,
838
+ "learning_rate": 8.470136707397868e-05,
839
+ "loss": 1.8948,
840
+ "mean_token_accuracy": 0.5194600358605385,
841
+ "step": 2060
842
+ },
843
+ {
844
+ "epoch": 0.33349366682700016,
845
+ "grad_norm": 1.521708369255066,
846
+ "learning_rate": 8.42962465646473e-05,
847
+ "loss": 1.8973,
848
+ "mean_token_accuracy": 0.5208257511258125,
849
+ "step": 2080
850
+ },
851
+ {
852
+ "epoch": 0.3367003367003367,
853
+ "grad_norm": 1.6692718267440796,
854
+ "learning_rate": 8.388682859663152e-05,
855
+ "loss": 1.887,
856
+ "mean_token_accuracy": 0.5233332857489585,
857
+ "step": 2100
858
+ },
859
+ {
860
+ "epoch": 0.33990700657367323,
861
+ "grad_norm": 1.4780927896499634,
862
+ "learning_rate": 8.347316447166195e-05,
863
+ "loss": 1.8915,
864
+ "mean_token_accuracy": 0.523545055091381,
865
+ "step": 2120
866
+ },
867
+ {
868
+ "epoch": 0.3431136764470098,
869
+ "grad_norm": 1.7447547912597656,
870
+ "learning_rate": 8.305530602352985e-05,
871
+ "loss": 1.8826,
872
+ "mean_token_accuracy": 0.5198934078216553,
873
+ "step": 2140
874
+ },
875
+ {
876
+ "epoch": 0.3463203463203463,
877
+ "grad_norm": 1.1051859855651855,
878
+ "learning_rate": 8.263330561159222e-05,
879
+ "loss": 1.8792,
880
+ "mean_token_accuracy": 0.5219237297773361,
881
+ "step": 2160
882
+ },
883
+ {
884
+ "epoch": 0.34952701619368287,
885
+ "grad_norm": 1.2067945003509521,
886
+ "learning_rate": 8.220721611421087e-05,
887
+ "loss": 1.8989,
888
+ "mean_token_accuracy": 0.5167458400130271,
889
+ "step": 2180
890
+ },
891
+ {
892
+ "epoch": 0.3527336860670194,
893
+ "grad_norm": 1.3066425323486328,
894
+ "learning_rate": 8.177709092212663e-05,
895
+ "loss": 1.8421,
896
+ "mean_token_accuracy": 0.5322213441133499,
897
+ "step": 2200
898
+ },
899
+ {
900
+ "epoch": 0.35594035594035595,
901
+ "grad_norm": 1.0397696495056152,
902
+ "learning_rate": 8.134298393176916e-05,
903
+ "loss": 1.9187,
904
+ "mean_token_accuracy": 0.5156819596886635,
905
+ "step": 2220
906
+ },
907
+ {
908
+ "epoch": 0.35914702581369246,
909
+ "grad_norm": 1.3601312637329102,
910
+ "learning_rate": 8.090494953850365e-05,
911
+ "loss": 1.8785,
912
+ "mean_token_accuracy": 0.5235566765069961,
913
+ "step": 2240
914
+ },
915
+ {
916
+ "epoch": 0.362353695687029,
917
+ "grad_norm": 1.2964980602264404,
918
+ "learning_rate": 8.046304262981478e-05,
919
+ "loss": 1.8908,
920
+ "mean_token_accuracy": 0.5194398432970047,
921
+ "step": 2260
922
+ },
923
+ {
924
+ "epoch": 0.3655603655603656,
925
+ "grad_norm": 1.3470860719680786,
926
+ "learning_rate": 8.001731857842906e-05,
927
+ "loss": 1.9171,
928
+ "mean_token_accuracy": 0.51639633923769,
929
+ "step": 2280
930
+ },
931
+ {
932
+ "epoch": 0.3687670354337021,
933
+ "grad_norm": 1.3893637657165527,
934
+ "learning_rate": 7.956783323537652e-05,
935
+ "loss": 1.8682,
936
+ "mean_token_accuracy": 0.5249380469322205,
937
+ "step": 2300
938
+ },
939
+ {
940
+ "epoch": 0.37197370530703866,
941
+ "grad_norm": 1.5145325660705566,
942
+ "learning_rate": 7.911464292299222e-05,
943
+ "loss": 1.8457,
944
+ "mean_token_accuracy": 0.527319672703743,
945
+ "step": 2320
946
+ },
947
+ {
948
+ "epoch": 0.37518037518037517,
949
+ "grad_norm": 1.0269887447357178,
950
+ "learning_rate": 7.865780442785891e-05,
951
+ "loss": 1.8765,
952
+ "mean_token_accuracy": 0.5214496284723282,
953
+ "step": 2340
954
+ },
955
+ {
956
+ "epoch": 0.37838704505371173,
957
+ "grad_norm": 1.409474492073059,
958
+ "learning_rate": 7.81973749936914e-05,
959
+ "loss": 1.8571,
960
+ "mean_token_accuracy": 0.5259096622467041,
961
+ "step": 2360
962
+ },
963
+ {
964
+ "epoch": 0.38159371492704824,
965
+ "grad_norm": 1.0306053161621094,
966
+ "learning_rate": 7.77334123141638e-05,
967
+ "loss": 1.9028,
968
+ "mean_token_accuracy": 0.5194058448076249,
969
+ "step": 2380
970
+ },
971
+ {
972
+ "epoch": 0.3848003848003848,
973
+ "grad_norm": 1.076977014541626,
974
+ "learning_rate": 7.726597452568007e-05,
975
+ "loss": 1.8671,
976
+ "mean_token_accuracy": 0.5254542633891106,
977
+ "step": 2400
978
+ },
979
+ {
980
+ "epoch": 0.3880070546737213,
981
+ "grad_norm": 2.2276298999786377,
982
+ "learning_rate": 7.679512020008948e-05,
983
+ "loss": 1.8584,
984
+ "mean_token_accuracy": 0.5245337873697281,
985
+ "step": 2420
986
+ },
987
+ {
988
+ "epoch": 0.3912137245470579,
989
+ "grad_norm": 1.356619119644165,
990
+ "learning_rate": 7.632090833734723e-05,
991
+ "loss": 1.8601,
992
+ "mean_token_accuracy": 0.5262611448764801,
993
+ "step": 2440
994
+ },
995
+ {
996
+ "epoch": 0.3944203944203944,
997
+ "grad_norm": 1.5250309705734253,
998
+ "learning_rate": 7.584339835812151e-05,
999
+ "loss": 1.8671,
1000
+ "mean_token_accuracy": 0.520966699719429,
1001
+ "step": 2460
1002
+ },
1003
+ {
1004
+ "epoch": 0.39762706429373096,
1005
+ "grad_norm": 0.9932346940040588,
1006
+ "learning_rate": 7.536265009634789e-05,
1007
+ "loss": 1.8354,
1008
+ "mean_token_accuracy": 0.5302907466888428,
1009
+ "step": 2480
1010
+ },
1011
+ {
1012
+ "epoch": 0.4008337341670675,
1013
+ "grad_norm": 1.4524379968643188,
1014
+ "learning_rate": 7.487872379173187e-05,
1015
+ "loss": 1.8471,
1016
+ "mean_token_accuracy": 0.527701361477375,
1017
+ "step": 2500
1018
+ },
1019
+ {
1020
+ "epoch": 0.40404040404040403,
1021
+ "grad_norm": 1.6131216287612915,
1022
+ "learning_rate": 7.439168008220057e-05,
1023
+ "loss": 1.8791,
1024
+ "mean_token_accuracy": 0.5199943497776985,
1025
+ "step": 2520
1026
+ },
1027
+ {
1028
+ "epoch": 0.4072470739137406,
1029
+ "grad_norm": 1.2683628797531128,
1030
+ "learning_rate": 7.390157999630463e-05,
1031
+ "loss": 1.862,
1032
+ "mean_token_accuracy": 0.5257236033678054,
1033
+ "step": 2540
1034
+ },
1035
+ {
1036
+ "epoch": 0.4104537437870771,
1037
+ "grad_norm": 1.3786700963974,
1038
+ "learning_rate": 7.340848494557098e-05,
1039
+ "loss": 1.8329,
1040
+ "mean_token_accuracy": 0.5322318792343139,
1041
+ "step": 2560
1042
+ },
1043
+ {
1044
+ "epoch": 0.4136604136604137,
1045
+ "grad_norm": 1.2964134216308594,
1046
+ "learning_rate": 7.291245671680781e-05,
1047
+ "loss": 1.8378,
1048
+ "mean_token_accuracy": 0.5295253932476044,
1049
+ "step": 2580
1050
+ },
1051
+ {
1052
+ "epoch": 0.4168670835337502,
1053
+ "grad_norm": 1.2435472011566162,
1054
+ "learning_rate": 7.241355746436243e-05,
1055
+ "loss": 1.843,
1056
+ "mean_token_accuracy": 0.528707692027092,
1057
+ "step": 2600
1058
+ },
1059
+ {
1060
+ "epoch": 0.42007375340708675,
1061
+ "grad_norm": 1.6479510068893433,
1062
+ "learning_rate": 7.191184970233299e-05,
1063
+ "loss": 1.8559,
1064
+ "mean_token_accuracy": 0.5243293821811676,
1065
+ "step": 2620
1066
+ },
1067
+ {
1068
+ "epoch": 0.42328042328042326,
1069
+ "grad_norm": 1.4122897386550903,
1070
+ "learning_rate": 7.140739629673531e-05,
1071
+ "loss": 1.8584,
1072
+ "mean_token_accuracy": 0.5285557866096496,
1073
+ "step": 2640
1074
+ },
1075
+ {
1076
+ "epoch": 0.4264870931537598,
1077
+ "grad_norm": 1.2838547229766846,
1078
+ "learning_rate": 7.09002604576255e-05,
1079
+ "loss": 1.8609,
1080
+ "mean_token_accuracy": 0.5250947296619415,
1081
+ "step": 2660
1082
+ },
1083
+ {
1084
+ "epoch": 0.4296937630270964,
1085
+ "grad_norm": 1.5833513736724854,
1086
+ "learning_rate": 7.03905057311794e-05,
1087
+ "loss": 1.8246,
1088
+ "mean_token_accuracy": 0.5320859342813492,
1089
+ "step": 2680
1090
+ },
1091
+ {
1092
+ "epoch": 0.4329004329004329,
1093
+ "grad_norm": 1.5128042697906494,
1094
+ "learning_rate": 6.987819599173007e-05,
1095
+ "loss": 1.8332,
1096
+ "mean_token_accuracy": 0.5332021147012711,
1097
+ "step": 2700
1098
+ },
1099
+ {
1100
+ "epoch": 0.43610710277376946,
1101
+ "grad_norm": 1.0662071704864502,
1102
+ "learning_rate": 6.936339543376411e-05,
1103
+ "loss": 1.8757,
1104
+ "mean_token_accuracy": 0.5246989518404007,
1105
+ "step": 2720
1106
+ },
1107
+ {
1108
+ "epoch": 0.43931377264710597,
1109
+ "grad_norm": 1.0444306135177612,
1110
+ "learning_rate": 6.884616856387768e-05,
1111
+ "loss": 1.8411,
1112
+ "mean_token_accuracy": 0.5272899508476258,
1113
+ "step": 2740
1114
+ },
1115
+ {
1116
+ "epoch": 0.44252044252044254,
1117
+ "grad_norm": 1.4123362302780151,
1118
+ "learning_rate": 6.832658019269374e-05,
1119
+ "loss": 1.8165,
1120
+ "mean_token_accuracy": 0.5287312120199203,
1121
+ "step": 2760
1122
+ },
1123
+ {
1124
+ "epoch": 0.44572711239377905,
1125
+ "grad_norm": 1.2641295194625854,
1126
+ "learning_rate": 6.780469542674088e-05,
1127
+ "loss": 1.8581,
1128
+ "mean_token_accuracy": 0.5240399688482285,
1129
+ "step": 2780
1130
+ },
1131
+ {
1132
+ "epoch": 0.4489337822671156,
1133
+ "grad_norm": 1.055584192276001,
1134
+ "learning_rate": 6.728057966029529e-05,
1135
+ "loss": 1.7969,
1136
+ "mean_token_accuracy": 0.536593297123909,
1137
+ "step": 2800
1138
+ },
1139
+ {
1140
+ "epoch": 0.4521404521404521,
1141
+ "grad_norm": 1.2474592924118042,
1142
+ "learning_rate": 6.675429856718652e-05,
1143
+ "loss": 1.8295,
1144
+ "mean_token_accuracy": 0.5313476771116257,
1145
+ "step": 2820
1146
+ },
1147
+ {
1148
+ "epoch": 0.4553471220137887,
1149
+ "grad_norm": 1.1250567436218262,
1150
+ "learning_rate": 6.62259180925684e-05,
1151
+ "loss": 1.8102,
1152
+ "mean_token_accuracy": 0.5341511443257332,
1153
+ "step": 2840
1154
+ },
1155
+ {
1156
+ "epoch": 0.4585537918871252,
1157
+ "grad_norm": 1.2222751379013062,
1158
+ "learning_rate": 6.569550444465568e-05,
1159
+ "loss": 1.8343,
1160
+ "mean_token_accuracy": 0.5306926101446152,
1161
+ "step": 2860
1162
+ },
1163
+ {
1164
+ "epoch": 0.46176046176046176,
1165
+ "grad_norm": 1.24721097946167,
1166
+ "learning_rate": 6.516312408642804e-05,
1167
+ "loss": 1.8142,
1168
+ "mean_token_accuracy": 0.5346602320671081,
1169
+ "step": 2880
1170
+ },
1171
+ {
1172
+ "epoch": 0.4649671316337983,
1173
+ "grad_norm": 1.3725354671478271,
1174
+ "learning_rate": 6.462884372730191e-05,
1175
+ "loss": 1.8515,
1176
+ "mean_token_accuracy": 0.525643666088581,
1177
+ "step": 2900
1178
+ },
1179
+ {
1180
+ "epoch": 0.46817380150713483,
1181
+ "grad_norm": 1.5340793132781982,
1182
+ "learning_rate": 6.409273031477152e-05,
1183
+ "loss": 1.8405,
1184
+ "mean_token_accuracy": 0.5296775609254837,
1185
+ "step": 2920
1186
+ },
1187
+ {
1188
+ "epoch": 0.4713804713804714,
1189
+ "grad_norm": 1.4171345233917236,
1190
+ "learning_rate": 6.355485102602012e-05,
1191
+ "loss": 1.801,
1192
+ "mean_token_accuracy": 0.5374062955379486,
1193
+ "step": 2940
1194
+ },
1195
+ {
1196
+ "epoch": 0.4745871412538079,
1197
+ "grad_norm": 1.0726767778396606,
1198
+ "learning_rate": 6.301527325950242e-05,
1199
+ "loss": 1.8177,
1200
+ "mean_token_accuracy": 0.5328266575932503,
1201
+ "step": 2960
1202
+ },
1203
+ {
1204
+ "epoch": 0.4777938111271445,
1205
+ "grad_norm": 2.005058526992798,
1206
+ "learning_rate": 6.247406462649927e-05,
1207
+ "loss": 1.8109,
1208
+ "mean_token_accuracy": 0.5314099788665771,
1209
+ "step": 2980
1210
+ },
1211
+ {
1212
+ "epoch": 0.481000481000481,
1213
+ "grad_norm": 1.5543380975723267,
1214
+ "learning_rate": 6.193129294264569e-05,
1215
+ "loss": 1.8432,
1216
+ "mean_token_accuracy": 0.5261458426713943,
1217
+ "step": 3000
1218
+ },
1219
+ {
1220
+ "epoch": 0.48420715087381755,
1221
+ "grad_norm": 1.353722333908081,
1222
+ "learning_rate": 6.138702621943334e-05,
1223
+ "loss": 1.8178,
1224
+ "mean_token_accuracy": 0.5276563599705696,
1225
+ "step": 3020
1226
+ },
1227
+ {
1228
+ "epoch": 0.48741382074715406,
1229
+ "grad_norm": 1.1928757429122925,
1230
+ "learning_rate": 6.0841332655688344e-05,
1231
+ "loss": 1.8318,
1232
+ "mean_token_accuracy": 0.5304355949163437,
1233
+ "step": 3040
1234
+ },
1235
+ {
1236
+ "epoch": 0.4906204906204906,
1237
+ "grad_norm": 1.672419786453247,
1238
+ "learning_rate": 6.029428062902571e-05,
1239
+ "loss": 1.7971,
1240
+ "mean_token_accuracy": 0.5380920082330704,
1241
+ "step": 3060
1242
+ },
1243
+ {
1244
+ "epoch": 0.49382716049382713,
1245
+ "grad_norm": 1.231449842453003,
1246
+ "learning_rate": 5.97459386872814e-05,
1247
+ "loss": 1.8096,
1248
+ "mean_token_accuracy": 0.5327497273683548,
1249
+ "step": 3080
1250
+ },
1251
+ {
1252
+ "epoch": 0.4970338303671637,
1253
+ "grad_norm": 1.3776133060455322,
1254
+ "learning_rate": 5.919637553992293e-05,
1255
+ "loss": 1.8465,
1256
+ "mean_token_accuracy": 0.5253860056400299,
1257
+ "step": 3100
1258
+ },
1259
+ {
1260
+ "epoch": 0.5000801667468334,
1261
+ "eval_loss": 1.53940749168396,
1262
+ "eval_mean_token_accuracy": 0.5933501680610359,
1263
+ "eval_runtime": 1941.3293,
1264
+ "eval_samples_per_second": 255.351,
1265
+ "eval_steps_per_second": 1.995,
1266
+ "step": 3119
1267
+ }
1268
+ ],
1269
+ "logging_steps": 20,
1270
+ "max_steps": 6237,
1271
+ "num_input_tokens_seen": 0,
1272
+ "num_train_epochs": 1,
1273
+ "save_steps": 3119,
1274
+ "stateful_callbacks": {
1275
+ "TrainerControl": {
1276
+ "args": {
1277
+ "should_epoch_stop": false,
1278
+ "should_evaluate": false,
1279
+ "should_log": false,
1280
+ "should_save": true,
1281
+ "should_training_stop": false
1282
+ },
1283
+ "attributes": {}
1284
+ }
1285
+ },
1286
+ "total_flos": 1.9570525453439468e+18,
1287
+ "train_batch_size": 16,
1288
+ "trial_name": null,
1289
+ "trial_params": null
1290
+ }
checkpoint-3119/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aad656740548acb2cf8355c0bb58f2d3acfb74bed369d470a571070c08698a6c
3
+ size 5880
checkpoint-6237/README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: google/paligemma2-3b-pt-224
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Model ID
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+
11
+
12
+ ## Model Details
13
+
14
+ ### Model Description
15
+
16
+ <!-- Provide a longer summary of what this model is. -->
17
+
18
+
19
+
20
+ - **Developed by:** [More Information Needed]
21
+ - **Funded by [optional]:** [More Information Needed]
22
+ - **Shared by [optional]:** [More Information Needed]
23
+ - **Model type:** [More Information Needed]
24
+ - **Language(s) (NLP):** [More Information Needed]
25
+ - **License:** [More Information Needed]
26
+ - **Finetuned from model [optional]:** [More Information Needed]
27
+
28
+ ### Model Sources [optional]
29
+
30
+ <!-- Provide the basic links for the model. -->
31
+
32
+ - **Repository:** [More Information Needed]
33
+ - **Paper [optional]:** [More Information Needed]
34
+ - **Demo [optional]:** [More Information Needed]
35
+
36
+ ## Uses
37
+
38
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
39
+
40
+ ### Direct Use
41
+
42
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
43
+
44
+ [More Information Needed]
45
+
46
+ ### Downstream Use [optional]
47
+
48
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Out-of-Scope Use
53
+
54
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
55
+
56
+ [More Information Needed]
57
+
58
+ ## Bias, Risks, and Limitations
59
+
60
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ### Recommendations
65
+
66
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
67
+
68
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
69
+
70
+ ## How to Get Started with the Model
71
+
72
+ Use the code below to get started with the model.
73
+
74
+ [More Information Needed]
75
+
76
+ ## Training Details
77
+
78
+ ### Training Data
79
+
80
+ <!-- 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. -->
81
+
82
+ [More Information Needed]
83
+
84
+ ### Training Procedure
85
+
86
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
87
+
88
+ #### Preprocessing [optional]
89
+
90
+ [More Information Needed]
91
+
92
+
93
+ #### Training Hyperparameters
94
+
95
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
96
+
97
+ #### Speeds, Sizes, Times [optional]
98
+
99
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
100
+
101
+ [More Information Needed]
102
+
103
+ ## Evaluation
104
+
105
+ <!-- This section describes the evaluation protocols and provides the results. -->
106
+
107
+ ### Testing Data, Factors & Metrics
108
+
109
+ #### Testing Data
110
+
111
+ <!-- This should link to a Dataset Card if possible. -->
112
+
113
+ [More Information Needed]
114
+
115
+ #### Factors
116
+
117
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Metrics
122
+
123
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
124
+
125
+ [More Information Needed]
126
+
127
+ ### Results
128
+
129
+ [More Information Needed]
130
+
131
+ #### Summary
132
+
133
+
134
+
135
+ ## Model Examination [optional]
136
+
137
+ <!-- Relevant interpretability work for the model goes here -->
138
+
139
+ [More Information Needed]
140
+
141
+ ## Environmental Impact
142
+
143
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
144
+
145
+ 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).
146
+
147
+ - **Hardware Type:** [More Information Needed]
148
+ - **Hours used:** [More Information Needed]
149
+ - **Cloud Provider:** [More Information Needed]
150
+ - **Compute Region:** [More Information Needed]
151
+ - **Carbon Emitted:** [More Information Needed]
152
+
153
+ ## Technical Specifications [optional]
154
+
155
+ ### Model Architecture and Objective
156
+
157
+ [More Information Needed]
158
+
159
+ ### Compute Infrastructure
160
+
161
+ [More Information Needed]
162
+
163
+ #### Hardware
164
+
165
+ [More Information Needed]
166
+
167
+ #### Software
168
+
169
+ [More Information Needed]
170
+
171
+ ## Citation [optional]
172
+
173
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
174
+
175
+ **BibTeX:**
176
+
177
+ [More Information Needed]
178
+
179
+ **APA:**
180
+
181
+ [More Information Needed]
182
+
183
+ ## Glossary [optional]
184
+
185
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
186
+
187
+ [More Information Needed]
188
+
189
+ ## More Information [optional]
190
+
191
+ [More Information Needed]
192
+
193
+ ## Model Card Authors [optional]
194
+
195
+ [More Information Needed]
196
+
197
+ ## Model Card Contact
198
+
199
+ [More Information Needed]
200
+ ### Framework versions
201
+
202
+ - PEFT 0.14.0
checkpoint-6237/adapter_config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "google/paligemma2-3b-pt-224",
5
+ "bias": "none",
6
+ "eva_config": null,
7
+ "exclude_modules": null,
8
+ "fan_in_fan_out": false,
9
+ "inference_mode": true,
10
+ "init_lora_weights": true,
11
+ "layer_replication": null,
12
+ "layers_pattern": null,
13
+ "layers_to_transform": null,
14
+ "loftq_config": {},
15
+ "lora_alpha": 16,
16
+ "lora_bias": false,
17
+ "lora_dropout": 0.05,
18
+ "megatron_config": null,
19
+ "megatron_core": "megatron.core",
20
+ "modules_to_save": null,
21
+ "peft_type": "LORA",
22
+ "r": 16,
23
+ "rank_pattern": {},
24
+ "revision": null,
25
+ "target_modules": [
26
+ "k_proj",
27
+ "down_proj",
28
+ "v_proj",
29
+ "q_proj",
30
+ "gate_proj",
31
+ "o_proj",
32
+ "up_proj"
33
+ ],
34
+ "task_type": "CAUSAL_LM",
35
+ "use_dora": false,
36
+ "use_rslora": false
37
+ }
checkpoint-6237/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d683bb24b341d958fb9d71c1e8472819d09d5f0a9f049789397bc604811fe36
3
+ size 95091000
checkpoint-6237/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd9a79b410efd0b42dc41ba6f672f4ffee035f0160b3f2695a9e549961f516a7
3
+ size 190464380
checkpoint-6237/preprocessor_config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": null,
3
+ "do_normalize": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "image_mean": [
7
+ 0.5,
8
+ 0.5,
9
+ 0.5
10
+ ],
11
+ "image_processor_type": "SiglipImageProcessor",
12
+ "image_seq_length": 256,
13
+ "image_std": [
14
+ 0.5,
15
+ 0.5,
16
+ 0.5
17
+ ],
18
+ "processor_class": "PaliGemmaProcessor",
19
+ "resample": 3,
20
+ "rescale_factor": 0.00392156862745098,
21
+ "size": {
22
+ "height": 224,
23
+ "width": 224
24
+ }
25
+ }
checkpoint-6237/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fccb2fb54d9a5df26df7782da6d75867e9664903bb442e3acd1ae56d80feb397
3
+ size 15984
checkpoint-6237/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4695abe3ecabb35687e9fd27d60fe3db4fef0de9f4918f60d8ed610a9b93772f
3
+ size 15984
checkpoint-6237/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62d2d9d220c601ba1734729cd560fc2a261addd3b6b2777e702c3773b520184b
3
+ size 15984
checkpoint-6237/rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea15159ed8b224ab2a3649b0f228d3b49cc94f8ed11142f1b58d6d4f87963161
3
+ size 15984
checkpoint-6237/rng_state_4.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75277f36cc267d12721c24a4e496596347be4fa07c39ed6a3990dfd8030f3c15
3
+ size 15984
checkpoint-6237/rng_state_5.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6f15e2e2881d26c3f17cf15b13cee969cd6a64c7028197061f71f797a3b88bd
3
+ size 15984
checkpoint-6237/rng_state_6.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da2bd8fbe2c292ae584499f8550029b9b946fc0be5beb7318660461f229750cb
3
+ size 15984
checkpoint-6237/rng_state_7.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:574bb62dc75d4b29de879a656cdf9c548f7232ca5ed18b918c19157280114e65
3
+ size 15984
checkpoint-6237/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:946c531822c5128595d486c4af9725a1d9841e824b7ce7d6f457265b98a08947
3
+ size 1064
checkpoint-6237/special_tokens_map.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ {
4
+ "content": "<image>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ }
10
+ ],
11
+ "bos_token": {
12
+ "content": "<bos>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "eos_token": {
19
+ "content": "<eos>",
20
+ "lstrip": false,
21
+ "normalized": false,
22
+ "rstrip": false,
23
+ "single_word": false
24
+ },
25
+ "pad_token": {
26
+ "content": "<pad>",
27
+ "lstrip": false,
28
+ "normalized": false,
29
+ "rstrip": false,
30
+ "single_word": false
31
+ },
32
+ "unk_token": {
33
+ "content": "<unk>",
34
+ "lstrip": false,
35
+ "normalized": false,
36
+ "rstrip": false,
37
+ "single_word": false
38
+ }
39
+ }
checkpoint-6237/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b648d11e0879b11659e6b4051f691752c0cef597a865c6fde5b318b9f68c1d05
3
+ size 34600974
checkpoint-6237/tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-6237/trainer_state.json ADDED
@@ -0,0 +1,2538 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 1.53940749168396,
3
+ "best_model_checkpoint": "data/paligemma2-3b-pt-224-sft-lora-vamos_10pct_gpt5_mini_cocoqa_localized_narratives_fixed/checkpoint-3119",
4
+ "epoch": 1.0,
5
+ "eval_steps": 3119,
6
+ "global_step": 6237,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 0.000160333493666827,
13
+ "grad_norm": 5.209284782409668,
14
+ "learning_rate": 1.6025641025641025e-07,
15
+ "loss": 8.2025,
16
+ "mean_token_accuracy": 0.257368803024292,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.00320666987333654,
21
+ "grad_norm": 5.846069812774658,
22
+ "learning_rate": 3.205128205128205e-06,
23
+ "loss": 8.8548,
24
+ "mean_token_accuracy": 0.2286823886005502,
25
+ "step": 20
26
+ },
27
+ {
28
+ "epoch": 0.00641333974667308,
29
+ "grad_norm": 6.527371406555176,
30
+ "learning_rate": 6.41025641025641e-06,
31
+ "loss": 8.6095,
32
+ "mean_token_accuracy": 0.236174263805151,
33
+ "step": 40
34
+ },
35
+ {
36
+ "epoch": 0.00962000962000962,
37
+ "grad_norm": 6.7473320960998535,
38
+ "learning_rate": 9.615384615384616e-06,
39
+ "loss": 7.0858,
40
+ "mean_token_accuracy": 0.24544834867119789,
41
+ "step": 60
42
+ },
43
+ {
44
+ "epoch": 0.01282667949334616,
45
+ "grad_norm": 3.6053383350372314,
46
+ "learning_rate": 1.282051282051282e-05,
47
+ "loss": 5.0951,
48
+ "mean_token_accuracy": 0.2442556582391262,
49
+ "step": 80
50
+ },
51
+ {
52
+ "epoch": 0.0160333493666827,
53
+ "grad_norm": 1.8141255378723145,
54
+ "learning_rate": 1.602564102564103e-05,
55
+ "loss": 4.0162,
56
+ "mean_token_accuracy": 0.29175431579351424,
57
+ "step": 100
58
+ },
59
+ {
60
+ "epoch": 0.01924001924001924,
61
+ "grad_norm": 1.9441587924957275,
62
+ "learning_rate": 1.923076923076923e-05,
63
+ "loss": 3.3901,
64
+ "mean_token_accuracy": 0.33477348536252977,
65
+ "step": 120
66
+ },
67
+ {
68
+ "epoch": 0.02244668911335578,
69
+ "grad_norm": 2.866448402404785,
70
+ "learning_rate": 2.2435897435897437e-05,
71
+ "loss": 3.0645,
72
+ "mean_token_accuracy": 0.36781402975320815,
73
+ "step": 140
74
+ },
75
+ {
76
+ "epoch": 0.02565335898669232,
77
+ "grad_norm": 6.173582553863525,
78
+ "learning_rate": 2.564102564102564e-05,
79
+ "loss": 2.8851,
80
+ "mean_token_accuracy": 0.3857575759291649,
81
+ "step": 160
82
+ },
83
+ {
84
+ "epoch": 0.02886002886002886,
85
+ "grad_norm": 2.632821798324585,
86
+ "learning_rate": 2.8846153846153845e-05,
87
+ "loss": 2.625,
88
+ "mean_token_accuracy": 0.42856554985046386,
89
+ "step": 180
90
+ },
91
+ {
92
+ "epoch": 0.0320666987333654,
93
+ "grad_norm": 3.801175594329834,
94
+ "learning_rate": 3.205128205128206e-05,
95
+ "loss": 2.5486,
96
+ "mean_token_accuracy": 0.44293054938316345,
97
+ "step": 200
98
+ },
99
+ {
100
+ "epoch": 0.03527336860670194,
101
+ "grad_norm": 2.8042311668395996,
102
+ "learning_rate": 3.525641025641026e-05,
103
+ "loss": 2.4267,
104
+ "mean_token_accuracy": 0.46162763684988023,
105
+ "step": 220
106
+ },
107
+ {
108
+ "epoch": 0.03848003848003848,
109
+ "grad_norm": 5.13622522354126,
110
+ "learning_rate": 3.846153846153846e-05,
111
+ "loss": 2.3457,
112
+ "mean_token_accuracy": 0.46204862743616104,
113
+ "step": 240
114
+ },
115
+ {
116
+ "epoch": 0.04168670835337502,
117
+ "grad_norm": 8.156232833862305,
118
+ "learning_rate": 4.166666666666667e-05,
119
+ "loss": 2.3276,
120
+ "mean_token_accuracy": 0.4628546267747879,
121
+ "step": 260
122
+ },
123
+ {
124
+ "epoch": 0.04489337822671156,
125
+ "grad_norm": 5.940677642822266,
126
+ "learning_rate": 4.4871794871794874e-05,
127
+ "loss": 2.3121,
128
+ "mean_token_accuracy": 0.4677517533302307,
129
+ "step": 280
130
+ },
131
+ {
132
+ "epoch": 0.0481000481000481,
133
+ "grad_norm": 3.2402215003967285,
134
+ "learning_rate": 4.8076923076923084e-05,
135
+ "loss": 2.2948,
136
+ "mean_token_accuracy": 0.4685308575630188,
137
+ "step": 300
138
+ },
139
+ {
140
+ "epoch": 0.05130671797338464,
141
+ "grad_norm": 4.654311656951904,
142
+ "learning_rate": 5.128205128205128e-05,
143
+ "loss": 2.2764,
144
+ "mean_token_accuracy": 0.46919394135475156,
145
+ "step": 320
146
+ },
147
+ {
148
+ "epoch": 0.05451338784672118,
149
+ "grad_norm": 6.181347370147705,
150
+ "learning_rate": 5.448717948717948e-05,
151
+ "loss": 2.2516,
152
+ "mean_token_accuracy": 0.4718445986509323,
153
+ "step": 340
154
+ },
155
+ {
156
+ "epoch": 0.05772005772005772,
157
+ "grad_norm": 4.977773189544678,
158
+ "learning_rate": 5.769230769230769e-05,
159
+ "loss": 2.3078,
160
+ "mean_token_accuracy": 0.46173652708530427,
161
+ "step": 360
162
+ },
163
+ {
164
+ "epoch": 0.06092672759339426,
165
+ "grad_norm": 2.649177074432373,
166
+ "learning_rate": 6.089743589743589e-05,
167
+ "loss": 2.2364,
168
+ "mean_token_accuracy": 0.4723318055272102,
169
+ "step": 380
170
+ },
171
+ {
172
+ "epoch": 0.0641333974667308,
173
+ "grad_norm": 2.475168228149414,
174
+ "learning_rate": 6.410256410256412e-05,
175
+ "loss": 2.2404,
176
+ "mean_token_accuracy": 0.4773345053195953,
177
+ "step": 400
178
+ },
179
+ {
180
+ "epoch": 0.06734006734006734,
181
+ "grad_norm": 3.376347541809082,
182
+ "learning_rate": 6.730769230769232e-05,
183
+ "loss": 2.1923,
184
+ "mean_token_accuracy": 0.48165750354528425,
185
+ "step": 420
186
+ },
187
+ {
188
+ "epoch": 0.07054673721340388,
189
+ "grad_norm": 2.1181466579437256,
190
+ "learning_rate": 7.051282051282052e-05,
191
+ "loss": 2.1944,
192
+ "mean_token_accuracy": 0.47836676687002183,
193
+ "step": 440
194
+ },
195
+ {
196
+ "epoch": 0.07375340708674041,
197
+ "grad_norm": 3.304994583129883,
198
+ "learning_rate": 7.371794871794872e-05,
199
+ "loss": 2.2055,
200
+ "mean_token_accuracy": 0.47685392051935194,
201
+ "step": 460
202
+ },
203
+ {
204
+ "epoch": 0.07696007696007696,
205
+ "grad_norm": 3.5151872634887695,
206
+ "learning_rate": 7.692307692307693e-05,
207
+ "loss": 2.171,
208
+ "mean_token_accuracy": 0.4798412054777145,
209
+ "step": 480
210
+ },
211
+ {
212
+ "epoch": 0.0801667468334135,
213
+ "grad_norm": 2.439455509185791,
214
+ "learning_rate": 8.012820512820514e-05,
215
+ "loss": 2.1592,
216
+ "mean_token_accuracy": 0.48496305793523786,
217
+ "step": 500
218
+ },
219
+ {
220
+ "epoch": 0.08337341670675004,
221
+ "grad_norm": 3.069302797317505,
222
+ "learning_rate": 8.333333333333334e-05,
223
+ "loss": 2.0884,
224
+ "mean_token_accuracy": 0.4890993982553482,
225
+ "step": 520
226
+ },
227
+ {
228
+ "epoch": 0.08658008658008658,
229
+ "grad_norm": 5.592751979827881,
230
+ "learning_rate": 8.653846153846155e-05,
231
+ "loss": 2.1425,
232
+ "mean_token_accuracy": 0.48478382378816604,
233
+ "step": 540
234
+ },
235
+ {
236
+ "epoch": 0.08978675645342311,
237
+ "grad_norm": 2.7817585468292236,
238
+ "learning_rate": 8.974358974358975e-05,
239
+ "loss": 2.1501,
240
+ "mean_token_accuracy": 0.4846224099397659,
241
+ "step": 560
242
+ },
243
+ {
244
+ "epoch": 0.09299342632675967,
245
+ "grad_norm": 3.0570271015167236,
246
+ "learning_rate": 9.294871794871795e-05,
247
+ "loss": 2.1297,
248
+ "mean_token_accuracy": 0.4879722028970718,
249
+ "step": 580
250
+ },
251
+ {
252
+ "epoch": 0.0962000962000962,
253
+ "grad_norm": 2.257469415664673,
254
+ "learning_rate": 9.615384615384617e-05,
255
+ "loss": 2.1088,
256
+ "mean_token_accuracy": 0.4889796242117882,
257
+ "step": 600
258
+ },
259
+ {
260
+ "epoch": 0.09940676607343274,
261
+ "grad_norm": 5.005424499511719,
262
+ "learning_rate": 9.935897435897437e-05,
263
+ "loss": 2.1248,
264
+ "mean_token_accuracy": 0.48695541769266126,
265
+ "step": 620
266
+ },
267
+ {
268
+ "epoch": 0.10261343594676928,
269
+ "grad_norm": 2.763110637664795,
270
+ "learning_rate": 9.999799512762136e-05,
271
+ "loss": 2.0852,
272
+ "mean_token_accuracy": 0.4945754811167717,
273
+ "step": 640
274
+ },
275
+ {
276
+ "epoch": 0.10582010582010581,
277
+ "grad_norm": 2.5508882999420166,
278
+ "learning_rate": 9.998985060913877e-05,
279
+ "loss": 2.1155,
280
+ "mean_token_accuracy": 0.48479859828948973,
281
+ "step": 660
282
+ },
283
+ {
284
+ "epoch": 0.10902677569344237,
285
+ "grad_norm": 1.9309931993484497,
286
+ "learning_rate": 9.99754421597847e-05,
287
+ "loss": 2.0774,
288
+ "mean_token_accuracy": 0.4935262441635132,
289
+ "step": 680
290
+ },
291
+ {
292
+ "epoch": 0.1122334455667789,
293
+ "grad_norm": 2.175483465194702,
294
+ "learning_rate": 9.995477158499624e-05,
295
+ "loss": 2.0698,
296
+ "mean_token_accuracy": 0.4930373579263687,
297
+ "step": 700
298
+ },
299
+ {
300
+ "epoch": 0.11544011544011544,
301
+ "grad_norm": 2.2829439640045166,
302
+ "learning_rate": 9.992784147488018e-05,
303
+ "loss": 2.064,
304
+ "mean_token_accuracy": 0.4933862343430519,
305
+ "step": 720
306
+ },
307
+ {
308
+ "epoch": 0.11864678531345198,
309
+ "grad_norm": 1.5809357166290283,
310
+ "learning_rate": 9.989465520388845e-05,
311
+ "loss": 2.0323,
312
+ "mean_token_accuracy": 0.5016711667180062,
313
+ "step": 740
314
+ },
315
+ {
316
+ "epoch": 0.12185345518678851,
317
+ "grad_norm": 2.230652332305908,
318
+ "learning_rate": 9.985521693039529e-05,
319
+ "loss": 2.075,
320
+ "mean_token_accuracy": 0.4931314527988434,
321
+ "step": 760
322
+ },
323
+ {
324
+ "epoch": 0.12506012506012507,
325
+ "grad_norm": 1.8354729413986206,
326
+ "learning_rate": 9.980953159617621e-05,
327
+ "loss": 2.0748,
328
+ "mean_token_accuracy": 0.4964547500014305,
329
+ "step": 780
330
+ },
331
+ {
332
+ "epoch": 0.1282667949334616,
333
+ "grad_norm": 2.15897274017334,
334
+ "learning_rate": 9.975760492578874e-05,
335
+ "loss": 2.0301,
336
+ "mean_token_accuracy": 0.4994760677218437,
337
+ "step": 800
338
+ },
339
+ {
340
+ "epoch": 0.13147346480679814,
341
+ "grad_norm": 2.6074705123901367,
342
+ "learning_rate": 9.969944342585508e-05,
343
+ "loss": 1.9838,
344
+ "mean_token_accuracy": 0.5075768753886223,
345
+ "step": 820
346
+ },
347
+ {
348
+ "epoch": 0.13468013468013468,
349
+ "grad_norm": 1.7504245042800903,
350
+ "learning_rate": 9.963505438424693e-05,
351
+ "loss": 2.0732,
352
+ "mean_token_accuracy": 0.49125437140464784,
353
+ "step": 840
354
+ },
355
+ {
356
+ "epoch": 0.13788680455347122,
357
+ "grad_norm": 2.214726686477661,
358
+ "learning_rate": 9.956444586917213e-05,
359
+ "loss": 2.0329,
360
+ "mean_token_accuracy": 0.4968407765030861,
361
+ "step": 860
362
+ },
363
+ {
364
+ "epoch": 0.14109347442680775,
365
+ "grad_norm": 1.6134241819381714,
366
+ "learning_rate": 9.948762672816377e-05,
367
+ "loss": 2.0392,
368
+ "mean_token_accuracy": 0.4989665150642395,
369
+ "step": 880
370
+ },
371
+ {
372
+ "epoch": 0.1443001443001443,
373
+ "grad_norm": 1.3124563694000244,
374
+ "learning_rate": 9.94046065869715e-05,
375
+ "loss": 2.0265,
376
+ "mean_token_accuracy": 0.5022040411829949,
377
+ "step": 900
378
+ },
379
+ {
380
+ "epoch": 0.14750681417348083,
381
+ "grad_norm": 2.182892084121704,
382
+ "learning_rate": 9.931539584835553e-05,
383
+ "loss": 2.0258,
384
+ "mean_token_accuracy": 0.4994161993265152,
385
+ "step": 920
386
+ },
387
+ {
388
+ "epoch": 0.1507134840468174,
389
+ "grad_norm": 2.158780813217163,
390
+ "learning_rate": 9.922000569078288e-05,
391
+ "loss": 2.038,
392
+ "mean_token_accuracy": 0.49309421628713607,
393
+ "step": 940
394
+ },
395
+ {
396
+ "epoch": 0.15392015392015393,
397
+ "grad_norm": 1.8986632823944092,
398
+ "learning_rate": 9.911844806702692e-05,
399
+ "loss": 2.0521,
400
+ "mean_token_accuracy": 0.4916775792837143,
401
+ "step": 960
402
+ },
403
+ {
404
+ "epoch": 0.15712682379349047,
405
+ "grad_norm": 2.2148079872131348,
406
+ "learning_rate": 9.901073570266946e-05,
407
+ "loss": 2.046,
408
+ "mean_token_accuracy": 0.4920832559466362,
409
+ "step": 980
410
+ },
411
+ {
412
+ "epoch": 0.160333493666827,
413
+ "grad_norm": 2.105100393295288,
414
+ "learning_rate": 9.889688209450627e-05,
415
+ "loss": 2.0154,
416
+ "mean_token_accuracy": 0.5017145529389382,
417
+ "step": 1000
418
+ },
419
+ {
420
+ "epoch": 0.16354016354016354,
421
+ "grad_norm": 1.9177722930908203,
422
+ "learning_rate": 9.877690150885588e-05,
423
+ "loss": 2.0133,
424
+ "mean_token_accuracy": 0.502875691652298,
425
+ "step": 1020
426
+ },
427
+ {
428
+ "epoch": 0.16674683341350008,
429
+ "grad_norm": 1.3427209854125977,
430
+ "learning_rate": 9.865080897977188e-05,
431
+ "loss": 1.9948,
432
+ "mean_token_accuracy": 0.505776722729206,
433
+ "step": 1040
434
+ },
435
+ {
436
+ "epoch": 0.16995350328683662,
437
+ "grad_norm": 2.0759928226470947,
438
+ "learning_rate": 9.851862030715919e-05,
439
+ "loss": 1.9401,
440
+ "mean_token_accuracy": 0.5120617598295212,
441
+ "step": 1060
442
+ },
443
+ {
444
+ "epoch": 0.17316017316017315,
445
+ "grad_norm": 1.2468688488006592,
446
+ "learning_rate": 9.838035205479419e-05,
447
+ "loss": 1.9913,
448
+ "mean_token_accuracy": 0.5054045274853707,
449
+ "step": 1080
450
+ },
451
+ {
452
+ "epoch": 0.1763668430335097,
453
+ "grad_norm": 1.2889540195465088,
454
+ "learning_rate": 9.823602154824927e-05,
455
+ "loss": 1.9963,
456
+ "mean_token_accuracy": 0.505834324657917,
457
+ "step": 1100
458
+ },
459
+ {
460
+ "epoch": 0.17957351290684623,
461
+ "grad_norm": 1.4190268516540527,
462
+ "learning_rate": 9.808564687272178e-05,
463
+ "loss": 1.9797,
464
+ "mean_token_accuracy": 0.5044485762715339,
465
+ "step": 1120
466
+ },
467
+ {
468
+ "epoch": 0.1827801827801828,
469
+ "grad_norm": 1.7106951475143433,
470
+ "learning_rate": 9.792924687076801e-05,
471
+ "loss": 1.9863,
472
+ "mean_token_accuracy": 0.5070938616991043,
473
+ "step": 1140
474
+ },
475
+ {
476
+ "epoch": 0.18598685265351933,
477
+ "grad_norm": 1.247165322303772,
478
+ "learning_rate": 9.776684113994204e-05,
479
+ "loss": 1.9723,
480
+ "mean_token_accuracy": 0.5093738153576851,
481
+ "step": 1160
482
+ },
483
+ {
484
+ "epoch": 0.18919352252685587,
485
+ "grad_norm": 1.4030295610427856,
486
+ "learning_rate": 9.759845003034007e-05,
487
+ "loss": 1.9756,
488
+ "mean_token_accuracy": 0.5056015223264694,
489
+ "step": 1180
490
+ },
491
+ {
492
+ "epoch": 0.1924001924001924,
493
+ "grad_norm": 1.243714690208435,
494
+ "learning_rate": 9.74240946420506e-05,
495
+ "loss": 1.9513,
496
+ "mean_token_accuracy": 0.5091609105467796,
497
+ "step": 1200
498
+ },
499
+ {
500
+ "epoch": 0.19560686227352894,
501
+ "grad_norm": 0.9765139222145081,
502
+ "learning_rate": 9.724379682251036e-05,
503
+ "loss": 1.9808,
504
+ "mean_token_accuracy": 0.50465277582407,
505
+ "step": 1220
506
+ },
507
+ {
508
+ "epoch": 0.19881353214686548,
509
+ "grad_norm": 1.4885112047195435,
510
+ "learning_rate": 9.705757916376682e-05,
511
+ "loss": 1.9993,
512
+ "mean_token_accuracy": 0.5045629054307937,
513
+ "step": 1240
514
+ },
515
+ {
516
+ "epoch": 0.20202020202020202,
517
+ "grad_norm": 1.258948802947998,
518
+ "learning_rate": 9.686546499964731e-05,
519
+ "loss": 1.9868,
520
+ "mean_token_accuracy": 0.5066259905695916,
521
+ "step": 1260
522
+ },
523
+ {
524
+ "epoch": 0.20522687189353855,
525
+ "grad_norm": 1.192187786102295,
526
+ "learning_rate": 9.666747840283512e-05,
527
+ "loss": 1.9444,
528
+ "mean_token_accuracy": 0.5078241482377053,
529
+ "step": 1280
530
+ },
531
+ {
532
+ "epoch": 0.2084335417668751,
533
+ "grad_norm": 1.1449286937713623,
534
+ "learning_rate": 9.646364418185325e-05,
535
+ "loss": 1.9964,
536
+ "mean_token_accuracy": 0.5036799103021622,
537
+ "step": 1300
538
+ },
539
+ {
540
+ "epoch": 0.21164021164021163,
541
+ "grad_norm": 1.2843917608261108,
542
+ "learning_rate": 9.62539878779556e-05,
543
+ "loss": 1.9857,
544
+ "mean_token_accuracy": 0.5052528932690621,
545
+ "step": 1320
546
+ },
547
+ {
548
+ "epoch": 0.2148468815135482,
549
+ "grad_norm": 1.1665757894515991,
550
+ "learning_rate": 9.603853576192674e-05,
551
+ "loss": 1.9676,
552
+ "mean_token_accuracy": 0.5088991582393646,
553
+ "step": 1340
554
+ },
555
+ {
556
+ "epoch": 0.21805355138688473,
557
+ "grad_norm": 1.0627950429916382,
558
+ "learning_rate": 9.581731483078995e-05,
559
+ "loss": 1.9494,
560
+ "mean_token_accuracy": 0.512041249871254,
561
+ "step": 1360
562
+ },
563
+ {
564
+ "epoch": 0.22126022126022127,
565
+ "grad_norm": 1.3954745531082153,
566
+ "learning_rate": 9.559035280442443e-05,
567
+ "loss": 1.9352,
568
+ "mean_token_accuracy": 0.5163529127836227,
569
+ "step": 1380
570
+ },
571
+ {
572
+ "epoch": 0.2244668911335578,
573
+ "grad_norm": 2.581529378890991,
574
+ "learning_rate": 9.535767812209185e-05,
575
+ "loss": 1.966,
576
+ "mean_token_accuracy": 0.5078106135129928,
577
+ "step": 1400
578
+ },
579
+ {
580
+ "epoch": 0.22767356100689434,
581
+ "grad_norm": 1.995743751525879,
582
+ "learning_rate": 9.511931993887289e-05,
583
+ "loss": 1.9278,
584
+ "mean_token_accuracy": 0.5141927003860474,
585
+ "step": 1420
586
+ },
587
+ {
588
+ "epoch": 0.23088023088023088,
589
+ "grad_norm": 1.3608646392822266,
590
+ "learning_rate": 9.487530812201384e-05,
591
+ "loss": 1.9464,
592
+ "mean_token_accuracy": 0.5119614064693451,
593
+ "step": 1440
594
+ },
595
+ {
596
+ "epoch": 0.23408690075356742,
597
+ "grad_norm": 2.1510233879089355,
598
+ "learning_rate": 9.462567324718428e-05,
599
+ "loss": 1.972,
600
+ "mean_token_accuracy": 0.5053435668349266,
601
+ "step": 1460
602
+ },
603
+ {
604
+ "epoch": 0.23729357062690395,
605
+ "grad_norm": 1.3489898443222046,
606
+ "learning_rate": 9.437044659464568e-05,
607
+ "loss": 1.9406,
608
+ "mean_token_accuracy": 0.5107260003685952,
609
+ "step": 1480
610
+ },
611
+ {
612
+ "epoch": 0.2405002405002405,
613
+ "grad_norm": 2.1510982513427734,
614
+ "learning_rate": 9.410966014533196e-05,
615
+ "loss": 1.9501,
616
+ "mean_token_accuracy": 0.5109146684408188,
617
+ "step": 1500
618
+ },
619
+ {
620
+ "epoch": 0.24370691037357703,
621
+ "grad_norm": 1.3027640581130981,
622
+ "learning_rate": 9.384334657684207e-05,
623
+ "loss": 1.9162,
624
+ "mean_token_accuracy": 0.5180920317769051,
625
+ "step": 1520
626
+ },
627
+ {
628
+ "epoch": 0.24691358024691357,
629
+ "grad_norm": 1.6839220523834229,
630
+ "learning_rate": 9.357153925934543e-05,
631
+ "loss": 1.932,
632
+ "mean_token_accuracy": 0.5122836321592331,
633
+ "step": 1540
634
+ },
635
+ {
636
+ "epoch": 0.25012025012025013,
637
+ "grad_norm": 1.5489161014556885,
638
+ "learning_rate": 9.329427225140042e-05,
639
+ "loss": 1.9287,
640
+ "mean_token_accuracy": 0.5156795844435692,
641
+ "step": 1560
642
+ },
643
+ {
644
+ "epoch": 0.25332691999358664,
645
+ "grad_norm": 1.1957494020462036,
646
+ "learning_rate": 9.301158029568684e-05,
647
+ "loss": 1.8905,
648
+ "mean_token_accuracy": 0.5207541212439537,
649
+ "step": 1580
650
+ },
651
+ {
652
+ "epoch": 0.2565335898669232,
653
+ "grad_norm": 1.2413902282714844,
654
+ "learning_rate": 9.272349881465236e-05,
655
+ "loss": 1.9309,
656
+ "mean_token_accuracy": 0.5141352891921998,
657
+ "step": 1600
658
+ },
659
+ {
660
+ "epoch": 0.2597402597402597,
661
+ "grad_norm": 1.3737406730651855,
662
+ "learning_rate": 9.243006390607403e-05,
663
+ "loss": 1.9565,
664
+ "mean_token_accuracy": 0.5097300469875335,
665
+ "step": 1620
666
+ },
667
+ {
668
+ "epoch": 0.2629469296135963,
669
+ "grad_norm": 1.24127197265625,
670
+ "learning_rate": 9.213131233853511e-05,
671
+ "loss": 1.945,
672
+ "mean_token_accuracy": 0.513680812716484,
673
+ "step": 1640
674
+ },
675
+ {
676
+ "epoch": 0.26615359948693285,
677
+ "grad_norm": 1.2227799892425537,
678
+ "learning_rate": 9.182728154681772e-05,
679
+ "loss": 1.945,
680
+ "mean_token_accuracy": 0.5159043714404106,
681
+ "step": 1660
682
+ },
683
+ {
684
+ "epoch": 0.26936026936026936,
685
+ "grad_norm": 1.4925428628921509,
686
+ "learning_rate": 9.151800962721218e-05,
687
+ "loss": 1.959,
688
+ "mean_token_accuracy": 0.5081851810216904,
689
+ "step": 1680
690
+ },
691
+ {
692
+ "epoch": 0.2725669392336059,
693
+ "grad_norm": 1.154524564743042,
694
+ "learning_rate": 9.12035353327434e-05,
695
+ "loss": 1.9162,
696
+ "mean_token_accuracy": 0.517485597729683,
697
+ "step": 1700
698
+ },
699
+ {
700
+ "epoch": 0.27577360910694243,
701
+ "grad_norm": 1.1241073608398438,
702
+ "learning_rate": 9.08838980683149e-05,
703
+ "loss": 1.9477,
704
+ "mean_token_accuracy": 0.5126137733459473,
705
+ "step": 1720
706
+ },
707
+ {
708
+ "epoch": 0.278980278980279,
709
+ "grad_norm": 1.8384186029434204,
710
+ "learning_rate": 9.055913788577128e-05,
711
+ "loss": 1.9197,
712
+ "mean_token_accuracy": 0.5140128180384635,
713
+ "step": 1740
714
+ },
715
+ {
716
+ "epoch": 0.2821869488536155,
717
+ "grad_norm": 1.3156044483184814,
718
+ "learning_rate": 9.02292954788796e-05,
719
+ "loss": 1.9079,
720
+ "mean_token_accuracy": 0.5170748963952064,
721
+ "step": 1760
722
+ },
723
+ {
724
+ "epoch": 0.28539361872695207,
725
+ "grad_norm": 1.449820876121521,
726
+ "learning_rate": 8.98944121782301e-05,
727
+ "loss": 1.9342,
728
+ "mean_token_accuracy": 0.5114595577120781,
729
+ "step": 1780
730
+ },
731
+ {
732
+ "epoch": 0.2886002886002886,
733
+ "grad_norm": 1.6988258361816406,
734
+ "learning_rate": 8.955452994605753e-05,
735
+ "loss": 1.9449,
736
+ "mean_token_accuracy": 0.5123026236891747,
737
+ "step": 1800
738
+ },
739
+ {
740
+ "epoch": 0.29180695847362514,
741
+ "grad_norm": 1.0350065231323242,
742
+ "learning_rate": 8.920969137098303e-05,
743
+ "loss": 1.9213,
744
+ "mean_token_accuracy": 0.5155784547328949,
745
+ "step": 1820
746
+ },
747
+ {
748
+ "epoch": 0.29501362834696165,
749
+ "grad_norm": 1.1465715169906616,
750
+ "learning_rate": 8.885993966267753e-05,
751
+ "loss": 1.8896,
752
+ "mean_token_accuracy": 0.5216770812869072,
753
+ "step": 1840
754
+ },
755
+ {
756
+ "epoch": 0.2982202982202982,
757
+ "grad_norm": 1.1059490442276,
758
+ "learning_rate": 8.850531864644749e-05,
759
+ "loss": 1.8978,
760
+ "mean_token_accuracy": 0.5205768331885338,
761
+ "step": 1860
762
+ },
763
+ {
764
+ "epoch": 0.3014269680936348,
765
+ "grad_norm": 1.199690818786621,
766
+ "learning_rate": 8.81458727577434e-05,
767
+ "loss": 1.9053,
768
+ "mean_token_accuracy": 0.5151138812303543,
769
+ "step": 1880
770
+ },
771
+ {
772
+ "epoch": 0.3046336379669713,
773
+ "grad_norm": 1.373304009437561,
774
+ "learning_rate": 8.77816470365918e-05,
775
+ "loss": 1.9276,
776
+ "mean_token_accuracy": 0.5131517440080643,
777
+ "step": 1900
778
+ },
779
+ {
780
+ "epoch": 0.30784030784030786,
781
+ "grad_norm": 1.4349356889724731,
782
+ "learning_rate": 8.741268712195166e-05,
783
+ "loss": 1.8921,
784
+ "mean_token_accuracy": 0.5225584238767624,
785
+ "step": 1920
786
+ },
787
+ {
788
+ "epoch": 0.31104697771364437,
789
+ "grad_norm": 1.0764795541763306,
790
+ "learning_rate": 8.703903924599548e-05,
791
+ "loss": 1.8639,
792
+ "mean_token_accuracy": 0.5256009042263031,
793
+ "step": 1940
794
+ },
795
+ {
796
+ "epoch": 0.31425364758698093,
797
+ "grad_norm": 1.946021318435669,
798
+ "learning_rate": 8.666075022831643e-05,
799
+ "loss": 1.881,
800
+ "mean_token_accuracy": 0.5257818832993507,
801
+ "step": 1960
802
+ },
803
+ {
804
+ "epoch": 0.31746031746031744,
805
+ "grad_norm": 1.2787318229675293,
806
+ "learning_rate": 8.627786747006145e-05,
807
+ "loss": 1.8966,
808
+ "mean_token_accuracy": 0.523352475464344,
809
+ "step": 1980
810
+ },
811
+ {
812
+ "epoch": 0.320666987333654,
813
+ "grad_norm": 1.7891284227371216,
814
+ "learning_rate": 8.589043894799185e-05,
815
+ "loss": 1.93,
816
+ "mean_token_accuracy": 0.5103022322058678,
817
+ "step": 2000
818
+ },
819
+ {
820
+ "epoch": 0.3238736572069905,
821
+ "grad_norm": 1.8391680717468262,
822
+ "learning_rate": 8.549851320847156e-05,
823
+ "loss": 1.8785,
824
+ "mean_token_accuracy": 0.5231836125254631,
825
+ "step": 2020
826
+ },
827
+ {
828
+ "epoch": 0.3270803270803271,
829
+ "grad_norm": 1.2025116682052612,
830
+ "learning_rate": 8.510213936138403e-05,
831
+ "loss": 1.8816,
832
+ "mean_token_accuracy": 0.5240169554948807,
833
+ "step": 2040
834
+ },
835
+ {
836
+ "epoch": 0.33028699695366365,
837
+ "grad_norm": 1.1192851066589355,
838
+ "learning_rate": 8.470136707397868e-05,
839
+ "loss": 1.8948,
840
+ "mean_token_accuracy": 0.5194600358605385,
841
+ "step": 2060
842
+ },
843
+ {
844
+ "epoch": 0.33349366682700016,
845
+ "grad_norm": 1.521708369255066,
846
+ "learning_rate": 8.42962465646473e-05,
847
+ "loss": 1.8973,
848
+ "mean_token_accuracy": 0.5208257511258125,
849
+ "step": 2080
850
+ },
851
+ {
852
+ "epoch": 0.3367003367003367,
853
+ "grad_norm": 1.6692718267440796,
854
+ "learning_rate": 8.388682859663152e-05,
855
+ "loss": 1.887,
856
+ "mean_token_accuracy": 0.5233332857489585,
857
+ "step": 2100
858
+ },
859
+ {
860
+ "epoch": 0.33990700657367323,
861
+ "grad_norm": 1.4780927896499634,
862
+ "learning_rate": 8.347316447166195e-05,
863
+ "loss": 1.8915,
864
+ "mean_token_accuracy": 0.523545055091381,
865
+ "step": 2120
866
+ },
867
+ {
868
+ "epoch": 0.3431136764470098,
869
+ "grad_norm": 1.7447547912597656,
870
+ "learning_rate": 8.305530602352985e-05,
871
+ "loss": 1.8826,
872
+ "mean_token_accuracy": 0.5198934078216553,
873
+ "step": 2140
874
+ },
875
+ {
876
+ "epoch": 0.3463203463203463,
877
+ "grad_norm": 1.1051859855651855,
878
+ "learning_rate": 8.263330561159222e-05,
879
+ "loss": 1.8792,
880
+ "mean_token_accuracy": 0.5219237297773361,
881
+ "step": 2160
882
+ },
883
+ {
884
+ "epoch": 0.34952701619368287,
885
+ "grad_norm": 1.2067945003509521,
886
+ "learning_rate": 8.220721611421087e-05,
887
+ "loss": 1.8989,
888
+ "mean_token_accuracy": 0.5167458400130271,
889
+ "step": 2180
890
+ },
891
+ {
892
+ "epoch": 0.3527336860670194,
893
+ "grad_norm": 1.3066425323486328,
894
+ "learning_rate": 8.177709092212663e-05,
895
+ "loss": 1.8421,
896
+ "mean_token_accuracy": 0.5322213441133499,
897
+ "step": 2200
898
+ },
899
+ {
900
+ "epoch": 0.35594035594035595,
901
+ "grad_norm": 1.0397696495056152,
902
+ "learning_rate": 8.134298393176916e-05,
903
+ "loss": 1.9187,
904
+ "mean_token_accuracy": 0.5156819596886635,
905
+ "step": 2220
906
+ },
907
+ {
908
+ "epoch": 0.35914702581369246,
909
+ "grad_norm": 1.3601312637329102,
910
+ "learning_rate": 8.090494953850365e-05,
911
+ "loss": 1.8785,
912
+ "mean_token_accuracy": 0.5235566765069961,
913
+ "step": 2240
914
+ },
915
+ {
916
+ "epoch": 0.362353695687029,
917
+ "grad_norm": 1.2964980602264404,
918
+ "learning_rate": 8.046304262981478e-05,
919
+ "loss": 1.8908,
920
+ "mean_token_accuracy": 0.5194398432970047,
921
+ "step": 2260
922
+ },
923
+ {
924
+ "epoch": 0.3655603655603656,
925
+ "grad_norm": 1.3470860719680786,
926
+ "learning_rate": 8.001731857842906e-05,
927
+ "loss": 1.9171,
928
+ "mean_token_accuracy": 0.51639633923769,
929
+ "step": 2280
930
+ },
931
+ {
932
+ "epoch": 0.3687670354337021,
933
+ "grad_norm": 1.3893637657165527,
934
+ "learning_rate": 7.956783323537652e-05,
935
+ "loss": 1.8682,
936
+ "mean_token_accuracy": 0.5249380469322205,
937
+ "step": 2300
938
+ },
939
+ {
940
+ "epoch": 0.37197370530703866,
941
+ "grad_norm": 1.5145325660705566,
942
+ "learning_rate": 7.911464292299222e-05,
943
+ "loss": 1.8457,
944
+ "mean_token_accuracy": 0.527319672703743,
945
+ "step": 2320
946
+ },
947
+ {
948
+ "epoch": 0.37518037518037517,
949
+ "grad_norm": 1.0269887447357178,
950
+ "learning_rate": 7.865780442785891e-05,
951
+ "loss": 1.8765,
952
+ "mean_token_accuracy": 0.5214496284723282,
953
+ "step": 2340
954
+ },
955
+ {
956
+ "epoch": 0.37838704505371173,
957
+ "grad_norm": 1.409474492073059,
958
+ "learning_rate": 7.81973749936914e-05,
959
+ "loss": 1.8571,
960
+ "mean_token_accuracy": 0.5259096622467041,
961
+ "step": 2360
962
+ },
963
+ {
964
+ "epoch": 0.38159371492704824,
965
+ "grad_norm": 1.0306053161621094,
966
+ "learning_rate": 7.77334123141638e-05,
967
+ "loss": 1.9028,
968
+ "mean_token_accuracy": 0.5194058448076249,
969
+ "step": 2380
970
+ },
971
+ {
972
+ "epoch": 0.3848003848003848,
973
+ "grad_norm": 1.076977014541626,
974
+ "learning_rate": 7.726597452568007e-05,
975
+ "loss": 1.8671,
976
+ "mean_token_accuracy": 0.5254542633891106,
977
+ "step": 2400
978
+ },
979
+ {
980
+ "epoch": 0.3880070546737213,
981
+ "grad_norm": 2.2276298999786377,
982
+ "learning_rate": 7.679512020008948e-05,
983
+ "loss": 1.8584,
984
+ "mean_token_accuracy": 0.5245337873697281,
985
+ "step": 2420
986
+ },
987
+ {
988
+ "epoch": 0.3912137245470579,
989
+ "grad_norm": 1.356619119644165,
990
+ "learning_rate": 7.632090833734723e-05,
991
+ "loss": 1.8601,
992
+ "mean_token_accuracy": 0.5262611448764801,
993
+ "step": 2440
994
+ },
995
+ {
996
+ "epoch": 0.3944203944203944,
997
+ "grad_norm": 1.5250309705734253,
998
+ "learning_rate": 7.584339835812151e-05,
999
+ "loss": 1.8671,
1000
+ "mean_token_accuracy": 0.520966699719429,
1001
+ "step": 2460
1002
+ },
1003
+ {
1004
+ "epoch": 0.39762706429373096,
1005
+ "grad_norm": 0.9932346940040588,
1006
+ "learning_rate": 7.536265009634789e-05,
1007
+ "loss": 1.8354,
1008
+ "mean_token_accuracy": 0.5302907466888428,
1009
+ "step": 2480
1010
+ },
1011
+ {
1012
+ "epoch": 0.4008337341670675,
1013
+ "grad_norm": 1.4524379968643188,
1014
+ "learning_rate": 7.487872379173187e-05,
1015
+ "loss": 1.8471,
1016
+ "mean_token_accuracy": 0.527701361477375,
1017
+ "step": 2500
1018
+ },
1019
+ {
1020
+ "epoch": 0.40404040404040403,
1021
+ "grad_norm": 1.6131216287612915,
1022
+ "learning_rate": 7.439168008220057e-05,
1023
+ "loss": 1.8791,
1024
+ "mean_token_accuracy": 0.5199943497776985,
1025
+ "step": 2520
1026
+ },
1027
+ {
1028
+ "epoch": 0.4072470739137406,
1029
+ "grad_norm": 1.2683628797531128,
1030
+ "learning_rate": 7.390157999630463e-05,
1031
+ "loss": 1.862,
1032
+ "mean_token_accuracy": 0.5257236033678054,
1033
+ "step": 2540
1034
+ },
1035
+ {
1036
+ "epoch": 0.4104537437870771,
1037
+ "grad_norm": 1.3786700963974,
1038
+ "learning_rate": 7.340848494557098e-05,
1039
+ "loss": 1.8329,
1040
+ "mean_token_accuracy": 0.5322318792343139,
1041
+ "step": 2560
1042
+ },
1043
+ {
1044
+ "epoch": 0.4136604136604137,
1045
+ "grad_norm": 1.2964134216308594,
1046
+ "learning_rate": 7.291245671680781e-05,
1047
+ "loss": 1.8378,
1048
+ "mean_token_accuracy": 0.5295253932476044,
1049
+ "step": 2580
1050
+ },
1051
+ {
1052
+ "epoch": 0.4168670835337502,
1053
+ "grad_norm": 1.2435472011566162,
1054
+ "learning_rate": 7.241355746436243e-05,
1055
+ "loss": 1.843,
1056
+ "mean_token_accuracy": 0.528707692027092,
1057
+ "step": 2600
1058
+ },
1059
+ {
1060
+ "epoch": 0.42007375340708675,
1061
+ "grad_norm": 1.6479510068893433,
1062
+ "learning_rate": 7.191184970233299e-05,
1063
+ "loss": 1.8559,
1064
+ "mean_token_accuracy": 0.5243293821811676,
1065
+ "step": 2620
1066
+ },
1067
+ {
1068
+ "epoch": 0.42328042328042326,
1069
+ "grad_norm": 1.4122897386550903,
1070
+ "learning_rate": 7.140739629673531e-05,
1071
+ "loss": 1.8584,
1072
+ "mean_token_accuracy": 0.5285557866096496,
1073
+ "step": 2640
1074
+ },
1075
+ {
1076
+ "epoch": 0.4264870931537598,
1077
+ "grad_norm": 1.2838547229766846,
1078
+ "learning_rate": 7.09002604576255e-05,
1079
+ "loss": 1.8609,
1080
+ "mean_token_accuracy": 0.5250947296619415,
1081
+ "step": 2660
1082
+ },
1083
+ {
1084
+ "epoch": 0.4296937630270964,
1085
+ "grad_norm": 1.5833513736724854,
1086
+ "learning_rate": 7.03905057311794e-05,
1087
+ "loss": 1.8246,
1088
+ "mean_token_accuracy": 0.5320859342813492,
1089
+ "step": 2680
1090
+ },
1091
+ {
1092
+ "epoch": 0.4329004329004329,
1093
+ "grad_norm": 1.5128042697906494,
1094
+ "learning_rate": 6.987819599173007e-05,
1095
+ "loss": 1.8332,
1096
+ "mean_token_accuracy": 0.5332021147012711,
1097
+ "step": 2700
1098
+ },
1099
+ {
1100
+ "epoch": 0.43610710277376946,
1101
+ "grad_norm": 1.0662071704864502,
1102
+ "learning_rate": 6.936339543376411e-05,
1103
+ "loss": 1.8757,
1104
+ "mean_token_accuracy": 0.5246989518404007,
1105
+ "step": 2720
1106
+ },
1107
+ {
1108
+ "epoch": 0.43931377264710597,
1109
+ "grad_norm": 1.0444306135177612,
1110
+ "learning_rate": 6.884616856387768e-05,
1111
+ "loss": 1.8411,
1112
+ "mean_token_accuracy": 0.5272899508476258,
1113
+ "step": 2740
1114
+ },
1115
+ {
1116
+ "epoch": 0.44252044252044254,
1117
+ "grad_norm": 1.4123362302780151,
1118
+ "learning_rate": 6.832658019269374e-05,
1119
+ "loss": 1.8165,
1120
+ "mean_token_accuracy": 0.5287312120199203,
1121
+ "step": 2760
1122
+ },
1123
+ {
1124
+ "epoch": 0.44572711239377905,
1125
+ "grad_norm": 1.2641295194625854,
1126
+ "learning_rate": 6.780469542674088e-05,
1127
+ "loss": 1.8581,
1128
+ "mean_token_accuracy": 0.5240399688482285,
1129
+ "step": 2780
1130
+ },
1131
+ {
1132
+ "epoch": 0.4489337822671156,
1133
+ "grad_norm": 1.055584192276001,
1134
+ "learning_rate": 6.728057966029529e-05,
1135
+ "loss": 1.7969,
1136
+ "mean_token_accuracy": 0.536593297123909,
1137
+ "step": 2800
1138
+ },
1139
+ {
1140
+ "epoch": 0.4521404521404521,
1141
+ "grad_norm": 1.2474592924118042,
1142
+ "learning_rate": 6.675429856718652e-05,
1143
+ "loss": 1.8295,
1144
+ "mean_token_accuracy": 0.5313476771116257,
1145
+ "step": 2820
1146
+ },
1147
+ {
1148
+ "epoch": 0.4553471220137887,
1149
+ "grad_norm": 1.1250567436218262,
1150
+ "learning_rate": 6.62259180925684e-05,
1151
+ "loss": 1.8102,
1152
+ "mean_token_accuracy": 0.5341511443257332,
1153
+ "step": 2840
1154
+ },
1155
+ {
1156
+ "epoch": 0.4585537918871252,
1157
+ "grad_norm": 1.2222751379013062,
1158
+ "learning_rate": 6.569550444465568e-05,
1159
+ "loss": 1.8343,
1160
+ "mean_token_accuracy": 0.5306926101446152,
1161
+ "step": 2860
1162
+ },
1163
+ {
1164
+ "epoch": 0.46176046176046176,
1165
+ "grad_norm": 1.24721097946167,
1166
+ "learning_rate": 6.516312408642804e-05,
1167
+ "loss": 1.8142,
1168
+ "mean_token_accuracy": 0.5346602320671081,
1169
+ "step": 2880
1170
+ },
1171
+ {
1172
+ "epoch": 0.4649671316337983,
1173
+ "grad_norm": 1.3725354671478271,
1174
+ "learning_rate": 6.462884372730191e-05,
1175
+ "loss": 1.8515,
1176
+ "mean_token_accuracy": 0.525643666088581,
1177
+ "step": 2900
1178
+ },
1179
+ {
1180
+ "epoch": 0.46817380150713483,
1181
+ "grad_norm": 1.5340793132781982,
1182
+ "learning_rate": 6.409273031477152e-05,
1183
+ "loss": 1.8405,
1184
+ "mean_token_accuracy": 0.5296775609254837,
1185
+ "step": 2920
1186
+ },
1187
+ {
1188
+ "epoch": 0.4713804713804714,
1189
+ "grad_norm": 1.4171345233917236,
1190
+ "learning_rate": 6.355485102602012e-05,
1191
+ "loss": 1.801,
1192
+ "mean_token_accuracy": 0.5374062955379486,
1193
+ "step": 2940
1194
+ },
1195
+ {
1196
+ "epoch": 0.4745871412538079,
1197
+ "grad_norm": 1.0726767778396606,
1198
+ "learning_rate": 6.301527325950242e-05,
1199
+ "loss": 1.8177,
1200
+ "mean_token_accuracy": 0.5328266575932503,
1201
+ "step": 2960
1202
+ },
1203
+ {
1204
+ "epoch": 0.4777938111271445,
1205
+ "grad_norm": 2.005058526992798,
1206
+ "learning_rate": 6.247406462649927e-05,
1207
+ "loss": 1.8109,
1208
+ "mean_token_accuracy": 0.5314099788665771,
1209
+ "step": 2980
1210
+ },
1211
+ {
1212
+ "epoch": 0.481000481000481,
1213
+ "grad_norm": 1.5543380975723267,
1214
+ "learning_rate": 6.193129294264569e-05,
1215
+ "loss": 1.8432,
1216
+ "mean_token_accuracy": 0.5261458426713943,
1217
+ "step": 3000
1218
+ },
1219
+ {
1220
+ "epoch": 0.48420715087381755,
1221
+ "grad_norm": 1.353722333908081,
1222
+ "learning_rate": 6.138702621943334e-05,
1223
+ "loss": 1.8178,
1224
+ "mean_token_accuracy": 0.5276563599705696,
1225
+ "step": 3020
1226
+ },
1227
+ {
1228
+ "epoch": 0.48741382074715406,
1229
+ "grad_norm": 1.1928757429122925,
1230
+ "learning_rate": 6.0841332655688344e-05,
1231
+ "loss": 1.8318,
1232
+ "mean_token_accuracy": 0.5304355949163437,
1233
+ "step": 3040
1234
+ },
1235
+ {
1236
+ "epoch": 0.4906204906204906,
1237
+ "grad_norm": 1.672419786453247,
1238
+ "learning_rate": 6.029428062902571e-05,
1239
+ "loss": 1.7971,
1240
+ "mean_token_accuracy": 0.5380920082330704,
1241
+ "step": 3060
1242
+ },
1243
+ {
1244
+ "epoch": 0.49382716049382713,
1245
+ "grad_norm": 1.231449842453003,
1246
+ "learning_rate": 5.97459386872814e-05,
1247
+ "loss": 1.8096,
1248
+ "mean_token_accuracy": 0.5327497273683548,
1249
+ "step": 3080
1250
+ },
1251
+ {
1252
+ "epoch": 0.4970338303671637,
1253
+ "grad_norm": 1.3776133060455322,
1254
+ "learning_rate": 5.919637553992293e-05,
1255
+ "loss": 1.8465,
1256
+ "mean_token_accuracy": 0.5253860056400299,
1257
+ "step": 3100
1258
+ },
1259
+ {
1260
+ "epoch": 0.5000801667468334,
1261
+ "eval_loss": 1.53940749168396,
1262
+ "eval_mean_token_accuracy": 0.5933501680610359,
1263
+ "eval_runtime": 1941.3293,
1264
+ "eval_samples_per_second": 255.351,
1265
+ "eval_steps_per_second": 1.995,
1266
+ "step": 3119
1267
+ },
1268
+ {
1269
+ "epoch": 0.5002405002405003,
1270
+ "grad_norm": 1.2065333127975464,
1271
+ "learning_rate": 5.864566004943983e-05,
1272
+ "loss": 1.8275,
1273
+ "mean_token_accuracy": 0.5308977961540222,
1274
+ "step": 3120
1275
+ },
1276
+ {
1277
+ "epoch": 0.5034471701138368,
1278
+ "grad_norm": 1.3010640144348145,
1279
+ "learning_rate": 5.8093861222714916e-05,
1280
+ "loss": 1.8368,
1281
+ "mean_token_accuracy": 0.5273123070597648,
1282
+ "step": 3140
1283
+ },
1284
+ {
1285
+ "epoch": 0.5066538399871733,
1286
+ "grad_norm": 1.4349629878997803,
1287
+ "learning_rate": 5.754104820237741e-05,
1288
+ "loss": 1.8404,
1289
+ "mean_token_accuracy": 0.5281692713499069,
1290
+ "step": 3160
1291
+ },
1292
+ {
1293
+ "epoch": 0.5098605098605099,
1294
+ "grad_norm": 1.23130202293396,
1295
+ "learning_rate": 5.698729025813908e-05,
1296
+ "loss": 1.8004,
1297
+ "mean_token_accuracy": 0.5355510145425797,
1298
+ "step": 3180
1299
+ },
1300
+ {
1301
+ "epoch": 0.5130671797338464,
1302
+ "grad_norm": 1.785715937614441,
1303
+ "learning_rate": 5.643265677811456e-05,
1304
+ "loss": 1.8103,
1305
+ "mean_token_accuracy": 0.5327317580580712,
1306
+ "step": 3200
1307
+ },
1308
+ {
1309
+ "epoch": 0.5162738496071829,
1310
+ "grad_norm": 1.1478352546691895,
1311
+ "learning_rate": 5.587721726012657e-05,
1312
+ "loss": 1.7974,
1313
+ "mean_token_accuracy": 0.5378333508968354,
1314
+ "step": 3220
1315
+ },
1316
+ {
1317
+ "epoch": 0.5194805194805194,
1318
+ "grad_norm": 1.545850396156311,
1319
+ "learning_rate": 5.532104130299771e-05,
1320
+ "loss": 1.8375,
1321
+ "mean_token_accuracy": 0.5303584784269333,
1322
+ "step": 3240
1323
+ },
1324
+ {
1325
+ "epoch": 0.522687189353856,
1326
+ "grad_norm": 1.295379638671875,
1327
+ "learning_rate": 5.476419859782942e-05,
1328
+ "loss": 1.8123,
1329
+ "mean_token_accuracy": 0.5323598384857178,
1330
+ "step": 3260
1331
+ },
1332
+ {
1333
+ "epoch": 0.5258938592271926,
1334
+ "grad_norm": 1.2239121198654175,
1335
+ "learning_rate": 5.4206758919269295e-05,
1336
+ "loss": 1.7824,
1337
+ "mean_token_accuracy": 0.5379300057888031,
1338
+ "step": 3280
1339
+ },
1340
+ {
1341
+ "epoch": 0.5291005291005291,
1342
+ "grad_norm": 1.1906960010528564,
1343
+ "learning_rate": 5.3648792116768166e-05,
1344
+ "loss": 1.8102,
1345
+ "mean_token_accuracy": 0.5297588974237442,
1346
+ "step": 3300
1347
+ },
1348
+ {
1349
+ "epoch": 0.5323071989738657,
1350
+ "grad_norm": 1.3106406927108765,
1351
+ "learning_rate": 5.3090368105827614e-05,
1352
+ "loss": 1.8291,
1353
+ "mean_token_accuracy": 0.5299944818019867,
1354
+ "step": 3320
1355
+ },
1356
+ {
1357
+ "epoch": 0.5355138688472022,
1358
+ "grad_norm": 1.4072366952896118,
1359
+ "learning_rate": 5.2531556859239305e-05,
1360
+ "loss": 1.7814,
1361
+ "mean_token_accuracy": 0.5385793894529343,
1362
+ "step": 3340
1363
+ },
1364
+ {
1365
+ "epoch": 0.5387205387205387,
1366
+ "grad_norm": 1.286926031112671,
1367
+ "learning_rate": 5.197242839831706e-05,
1368
+ "loss": 1.8002,
1369
+ "mean_token_accuracy": 0.5365041673183442,
1370
+ "step": 3360
1371
+ },
1372
+ {
1373
+ "epoch": 0.5419272085938752,
1374
+ "grad_norm": 1.1429330110549927,
1375
+ "learning_rate": 5.141305278412302e-05,
1376
+ "loss": 1.7974,
1377
+ "mean_token_accuracy": 0.5361256092786789,
1378
+ "step": 3380
1379
+ },
1380
+ {
1381
+ "epoch": 0.5451338784672118,
1382
+ "grad_norm": 1.544176459312439,
1383
+ "learning_rate": 5.085350010868855e-05,
1384
+ "loss": 1.8282,
1385
+ "mean_token_accuracy": 0.5302288249135018,
1386
+ "step": 3400
1387
+ },
1388
+ {
1389
+ "epoch": 0.5483405483405484,
1390
+ "grad_norm": 1.5704865455627441,
1391
+ "learning_rate": 5.029384048623154e-05,
1392
+ "loss": 1.8004,
1393
+ "mean_token_accuracy": 0.5345340296626091,
1394
+ "step": 3420
1395
+ },
1396
+ {
1397
+ "epoch": 0.5515472182138849,
1398
+ "grad_norm": 1.841884970664978,
1399
+ "learning_rate": 4.973414404437077e-05,
1400
+ "loss": 1.8273,
1401
+ "mean_token_accuracy": 0.527743574976921,
1402
+ "step": 3440
1403
+ },
1404
+ {
1405
+ "epoch": 0.5547538880872214,
1406
+ "grad_norm": 1.3873976469039917,
1407
+ "learning_rate": 4.917448091533865e-05,
1408
+ "loss": 1.7882,
1409
+ "mean_token_accuracy": 0.537655171751976,
1410
+ "step": 3460
1411
+ },
1412
+ {
1413
+ "epoch": 0.557960557960558,
1414
+ "grad_norm": 1.487434983253479,
1415
+ "learning_rate": 4.861492122719339e-05,
1416
+ "loss": 1.836,
1417
+ "mean_token_accuracy": 0.5291041225194931,
1418
+ "step": 3480
1419
+ },
1420
+ {
1421
+ "epoch": 0.5611672278338945,
1422
+ "grad_norm": 1.2233349084854126,
1423
+ "learning_rate": 4.805553509503154e-05,
1424
+ "loss": 1.7568,
1425
+ "mean_token_accuracy": 0.5442848384380341,
1426
+ "step": 3500
1427
+ },
1428
+ {
1429
+ "epoch": 0.564373897707231,
1430
+ "grad_norm": 1.4371830224990845,
1431
+ "learning_rate": 4.749639261220247e-05,
1432
+ "loss": 1.7868,
1433
+ "mean_token_accuracy": 0.5362420290708542,
1434
+ "step": 3520
1435
+ },
1436
+ {
1437
+ "epoch": 0.5675805675805676,
1438
+ "grad_norm": 1.703787088394165,
1439
+ "learning_rate": 4.6937563841525297e-05,
1440
+ "loss": 1.8198,
1441
+ "mean_token_accuracy": 0.5284188359975814,
1442
+ "step": 3540
1443
+ },
1444
+ {
1445
+ "epoch": 0.5707872374539041,
1446
+ "grad_norm": 1.2655363082885742,
1447
+ "learning_rate": 4.637911880650967e-05,
1448
+ "loss": 1.8046,
1449
+ "mean_token_accuracy": 0.533089104294777,
1450
+ "step": 3560
1451
+ },
1452
+ {
1453
+ "epoch": 0.5739939073272406,
1454
+ "grad_norm": 1.2529635429382324,
1455
+ "learning_rate": 4.582112748258166e-05,
1456
+ "loss": 1.7947,
1457
+ "mean_token_accuracy": 0.5354443103075027,
1458
+ "step": 3580
1459
+ },
1460
+ {
1461
+ "epoch": 0.5772005772005772,
1462
+ "grad_norm": 1.6291149854660034,
1463
+ "learning_rate": 4.526365978831552e-05,
1464
+ "loss": 1.796,
1465
+ "mean_token_accuracy": 0.5359267443418503,
1466
+ "step": 3600
1467
+ },
1468
+ {
1469
+ "epoch": 0.5804072470739138,
1470
+ "grad_norm": 1.2783862352371216,
1471
+ "learning_rate": 4.470678557667249e-05,
1472
+ "loss": 1.8099,
1473
+ "mean_token_accuracy": 0.5307971924543381,
1474
+ "step": 3620
1475
+ },
1476
+ {
1477
+ "epoch": 0.5836139169472503,
1478
+ "grad_norm": 1.50846529006958,
1479
+ "learning_rate": 4.415057462624812e-05,
1480
+ "loss": 1.7749,
1481
+ "mean_token_accuracy": 0.5401669204235077,
1482
+ "step": 3640
1483
+ },
1484
+ {
1485
+ "epoch": 0.5868205868205868,
1486
+ "grad_norm": 1.3859307765960693,
1487
+ "learning_rate": 4.3595096632528644e-05,
1488
+ "loss": 1.7742,
1489
+ "mean_token_accuracy": 0.539221653342247,
1490
+ "step": 3660
1491
+ },
1492
+ {
1493
+ "epoch": 0.5900272566939233,
1494
+ "grad_norm": 1.4361897706985474,
1495
+ "learning_rate": 4.304042119915776e-05,
1496
+ "loss": 1.77,
1497
+ "mean_token_accuracy": 0.5435908734798431,
1498
+ "step": 3680
1499
+ },
1500
+ {
1501
+ "epoch": 0.5932339265672599,
1502
+ "grad_norm": 1.4237632751464844,
1503
+ "learning_rate": 4.24866178292152e-05,
1504
+ "loss": 1.7885,
1505
+ "mean_token_accuracy": 0.5361862421035767,
1506
+ "step": 3700
1507
+ },
1508
+ {
1509
+ "epoch": 0.5964405964405964,
1510
+ "grad_norm": 1.2441941499710083,
1511
+ "learning_rate": 4.193375591650758e-05,
1512
+ "loss": 1.7841,
1513
+ "mean_token_accuracy": 0.5414396733045578,
1514
+ "step": 3720
1515
+ },
1516
+ {
1517
+ "epoch": 0.599647266313933,
1518
+ "grad_norm": 1.211448073387146,
1519
+ "learning_rate": 4.1381904736873075e-05,
1520
+ "loss": 1.8035,
1521
+ "mean_token_accuracy": 0.5305454939603805,
1522
+ "step": 3740
1523
+ },
1524
+ {
1525
+ "epoch": 0.6028539361872696,
1526
+ "grad_norm": 1.489575982093811,
1527
+ "learning_rate": 4.0831133439500954e-05,
1528
+ "loss": 1.7602,
1529
+ "mean_token_accuracy": 0.5400284379720688,
1530
+ "step": 3760
1531
+ },
1532
+ {
1533
+ "epoch": 0.6060606060606061,
1534
+ "grad_norm": 1.2525299787521362,
1535
+ "learning_rate": 4.0281511038266876e-05,
1536
+ "loss": 1.7575,
1537
+ "mean_token_accuracy": 0.5439072847366333,
1538
+ "step": 3780
1539
+ },
1540
+ {
1541
+ "epoch": 0.6092672759339426,
1542
+ "grad_norm": 1.388637661933899,
1543
+ "learning_rate": 3.9733106403085074e-05,
1544
+ "loss": 1.764,
1545
+ "mean_token_accuracy": 0.5406429708003998,
1546
+ "step": 3800
1547
+ },
1548
+ {
1549
+ "epoch": 0.6124739458072791,
1550
+ "grad_norm": 1.2612781524658203,
1551
+ "learning_rate": 3.918598825127885e-05,
1552
+ "loss": 1.7477,
1553
+ "mean_token_accuracy": 0.54590525329113,
1554
+ "step": 3820
1555
+ },
1556
+ {
1557
+ "epoch": 0.6156806156806157,
1558
+ "grad_norm": 1.5898454189300537,
1559
+ "learning_rate": 3.86402251389699e-05,
1560
+ "loss": 1.7659,
1561
+ "mean_token_accuracy": 0.541855725646019,
1562
+ "step": 3840
1563
+ },
1564
+ {
1565
+ "epoch": 0.6188872855539522,
1566
+ "grad_norm": 1.2260034084320068,
1567
+ "learning_rate": 3.809588545248794e-05,
1568
+ "loss": 1.7809,
1569
+ "mean_token_accuracy": 0.536695247888565,
1570
+ "step": 3860
1571
+ },
1572
+ {
1573
+ "epoch": 0.6220939554272887,
1574
+ "grad_norm": 1.3900277614593506,
1575
+ "learning_rate": 3.7553037399801705e-05,
1576
+ "loss": 1.7894,
1577
+ "mean_token_accuracy": 0.537989217042923,
1578
+ "step": 3880
1579
+ },
1580
+ {
1581
+ "epoch": 0.6253006253006252,
1582
+ "grad_norm": 1.377323031425476,
1583
+ "learning_rate": 3.701174900197218e-05,
1584
+ "loss": 1.7522,
1585
+ "mean_token_accuracy": 0.5395979732275009,
1586
+ "step": 3900
1587
+ },
1588
+ {
1589
+ "epoch": 0.6285072951739619,
1590
+ "grad_norm": 1.9669792652130127,
1591
+ "learning_rate": 3.647208808462921e-05,
1592
+ "loss": 1.7819,
1593
+ "mean_token_accuracy": 0.5357579261064529,
1594
+ "step": 3920
1595
+ },
1596
+ {
1597
+ "epoch": 0.6317139650472984,
1598
+ "grad_norm": 1.3700226545333862,
1599
+ "learning_rate": 3.5934122269472804e-05,
1600
+ "loss": 1.7622,
1601
+ "mean_token_accuracy": 0.5406556934118271,
1602
+ "step": 3940
1603
+ },
1604
+ {
1605
+ "epoch": 0.6349206349206349,
1606
+ "grad_norm": 1.5546220541000366,
1607
+ "learning_rate": 3.5397918965799785e-05,
1608
+ "loss": 1.7627,
1609
+ "mean_token_accuracy": 0.538935711979866,
1610
+ "step": 3960
1611
+ },
1612
+ {
1613
+ "epoch": 0.6381273047939715,
1614
+ "grad_norm": 1.45100736618042,
1615
+ "learning_rate": 3.486354536205712e-05,
1616
+ "loss": 1.8306,
1617
+ "mean_token_accuracy": 0.5290844351053238,
1618
+ "step": 3980
1619
+ },
1620
+ {
1621
+ "epoch": 0.641333974667308,
1622
+ "grad_norm": 1.2580472230911255,
1623
+ "learning_rate": 3.433106841742297e-05,
1624
+ "loss": 1.783,
1625
+ "mean_token_accuracy": 0.5352891981601715,
1626
+ "step": 4000
1627
+ },
1628
+ {
1629
+ "epoch": 0.6445406445406445,
1630
+ "grad_norm": 1.4428609609603882,
1631
+ "learning_rate": 3.380055485341644e-05,
1632
+ "loss": 1.7703,
1633
+ "mean_token_accuracy": 0.5361766919493676,
1634
+ "step": 4020
1635
+ },
1636
+ {
1637
+ "epoch": 0.647747314413981,
1638
+ "grad_norm": 1.542856216430664,
1639
+ "learning_rate": 3.3272071145537076e-05,
1640
+ "loss": 1.7793,
1641
+ "mean_token_accuracy": 0.532473573088646,
1642
+ "step": 4040
1643
+ },
1644
+ {
1645
+ "epoch": 0.6509539842873177,
1646
+ "grad_norm": 1.307385802268982,
1647
+ "learning_rate": 3.27456835149352e-05,
1648
+ "loss": 1.7739,
1649
+ "mean_token_accuracy": 0.5393928498029709,
1650
+ "step": 4060
1651
+ },
1652
+ {
1653
+ "epoch": 0.6541606541606542,
1654
+ "grad_norm": 1.7225542068481445,
1655
+ "learning_rate": 3.222145792011422e-05,
1656
+ "loss": 1.7755,
1657
+ "mean_token_accuracy": 0.5320593371987343,
1658
+ "step": 4080
1659
+ },
1660
+ {
1661
+ "epoch": 0.6573673240339907,
1662
+ "grad_norm": 1.3483141660690308,
1663
+ "learning_rate": 3.1699460048665594e-05,
1664
+ "loss": 1.7686,
1665
+ "mean_token_accuracy": 0.5363360077142716,
1666
+ "step": 4100
1667
+ },
1668
+ {
1669
+ "epoch": 0.6605739939073273,
1670
+ "grad_norm": 1.4043909311294556,
1671
+ "learning_rate": 3.117975530903813e-05,
1672
+ "loss": 1.7762,
1673
+ "mean_token_accuracy": 0.5329029619693756,
1674
+ "step": 4120
1675
+ },
1676
+ {
1677
+ "epoch": 0.6637806637806638,
1678
+ "grad_norm": 1.434023380279541,
1679
+ "learning_rate": 3.0662408822341864e-05,
1680
+ "loss": 1.7682,
1681
+ "mean_token_accuracy": 0.5406565859913826,
1682
+ "step": 4140
1683
+ },
1684
+ {
1685
+ "epoch": 0.6669873336540003,
1686
+ "grad_norm": 1.3568503856658936,
1687
+ "learning_rate": 3.014748541418817e-05,
1688
+ "loss": 1.7466,
1689
+ "mean_token_accuracy": 0.5411790430545806,
1690
+ "step": 4160
1691
+ },
1692
+ {
1693
+ "epoch": 0.6701940035273368,
1694
+ "grad_norm": 1.4412897825241089,
1695
+ "learning_rate": 2.9635049606566888e-05,
1696
+ "loss": 1.7796,
1697
+ "mean_token_accuracy": 0.5351216167211532,
1698
+ "step": 4180
1699
+ },
1700
+ {
1701
+ "epoch": 0.6734006734006734,
1702
+ "grad_norm": 1.4259061813354492,
1703
+ "learning_rate": 2.9125165609761463e-05,
1704
+ "loss": 1.7679,
1705
+ "mean_token_accuracy": 0.535513336956501,
1706
+ "step": 4200
1707
+ },
1708
+ {
1709
+ "epoch": 0.67660734327401,
1710
+ "grad_norm": 1.517968773841858,
1711
+ "learning_rate": 2.8617897314302994e-05,
1712
+ "loss": 1.7773,
1713
+ "mean_token_accuracy": 0.5354954585433006,
1714
+ "step": 4220
1715
+ },
1716
+ {
1717
+ "epoch": 0.6798140131473465,
1718
+ "grad_norm": 1.5838121175765991,
1719
+ "learning_rate": 2.811330828296471e-05,
1720
+ "loss": 1.738,
1721
+ "mean_token_accuracy": 0.545210886001587,
1722
+ "step": 4240
1723
+ },
1724
+ {
1725
+ "epoch": 0.683020683020683,
1726
+ "grad_norm": 1.4874238967895508,
1727
+ "learning_rate": 2.761146174279717e-05,
1728
+ "loss": 1.8067,
1729
+ "mean_token_accuracy": 0.5296819597482681,
1730
+ "step": 4260
1731
+ },
1732
+ {
1733
+ "epoch": 0.6862273528940196,
1734
+ "grad_norm": 1.4804911613464355,
1735
+ "learning_rate": 2.71124205772056e-05,
1736
+ "loss": 1.798,
1737
+ "mean_token_accuracy": 0.5329511255025864,
1738
+ "step": 4280
1739
+ },
1740
+ {
1741
+ "epoch": 0.6894340227673561,
1742
+ "grad_norm": 1.4983785152435303,
1743
+ "learning_rate": 2.6616247318070507e-05,
1744
+ "loss": 1.7766,
1745
+ "mean_token_accuracy": 0.536483982205391,
1746
+ "step": 4300
1747
+ },
1748
+ {
1749
+ "epoch": 0.6926406926406926,
1750
+ "grad_norm": 1.352418065071106,
1751
+ "learning_rate": 2.612300413791209e-05,
1752
+ "loss": 1.749,
1753
+ "mean_token_accuracy": 0.5425525337457657,
1754
+ "step": 4320
1755
+ },
1756
+ {
1757
+ "epoch": 0.6958473625140292,
1758
+ "grad_norm": 1.5389214754104614,
1759
+ "learning_rate": 2.5632752842099694e-05,
1760
+ "loss": 1.7613,
1761
+ "mean_token_accuracy": 0.5400553539395332,
1762
+ "step": 4340
1763
+ },
1764
+ {
1765
+ "epoch": 0.6990540323873657,
1766
+ "grad_norm": 1.481913685798645,
1767
+ "learning_rate": 2.5145554861107524e-05,
1768
+ "loss": 1.7863,
1769
+ "mean_token_accuracy": 0.5332476675510407,
1770
+ "step": 4360
1771
+ },
1772
+ {
1773
+ "epoch": 0.7022607022607023,
1774
+ "grad_norm": 1.5351461172103882,
1775
+ "learning_rate": 2.466147124281703e-05,
1776
+ "loss": 1.7434,
1777
+ "mean_token_accuracy": 0.5411887526512146,
1778
+ "step": 4380
1779
+ },
1780
+ {
1781
+ "epoch": 0.7054673721340388,
1782
+ "grad_norm": 1.6004550457000732,
1783
+ "learning_rate": 2.4180562644867406e-05,
1784
+ "loss": 1.7678,
1785
+ "mean_token_accuracy": 0.5376534581184387,
1786
+ "step": 4400
1787
+ },
1788
+ {
1789
+ "epoch": 0.7086740420073754,
1790
+ "grad_norm": 1.4997788667678833,
1791
+ "learning_rate": 2.3702889327054884e-05,
1792
+ "loss": 1.7566,
1793
+ "mean_token_accuracy": 0.5398379743099213,
1794
+ "step": 4420
1795
+ },
1796
+ {
1797
+ "epoch": 0.7118807118807119,
1798
+ "grad_norm": 1.638317584991455,
1799
+ "learning_rate": 2.3228511143782033e-05,
1800
+ "loss": 1.7624,
1801
+ "mean_token_accuracy": 0.5378725945949554,
1802
+ "step": 4440
1803
+ },
1804
+ {
1805
+ "epoch": 0.7150873817540484,
1806
+ "grad_norm": 1.343430757522583,
1807
+ "learning_rate": 2.2757487536557714e-05,
1808
+ "loss": 1.751,
1809
+ "mean_token_accuracy": 0.5400015458464622,
1810
+ "step": 4460
1811
+ },
1812
+ {
1813
+ "epoch": 0.7182940516273849,
1814
+ "grad_norm": 1.2288793325424194,
1815
+ "learning_rate": 2.2289877526548764e-05,
1816
+ "loss": 1.727,
1817
+ "mean_token_accuracy": 0.547047358751297,
1818
+ "step": 4480
1819
+ },
1820
+ {
1821
+ "epoch": 0.7215007215007215,
1822
+ "grad_norm": 1.4691182374954224,
1823
+ "learning_rate": 2.1825739707184494e-05,
1824
+ "loss": 1.7667,
1825
+ "mean_token_accuracy": 0.5362445533275604,
1826
+ "step": 4500
1827
+ },
1828
+ {
1829
+ "epoch": 0.724707391374058,
1830
+ "grad_norm": 1.5017502307891846,
1831
+ "learning_rate": 2.1365132236814668e-05,
1832
+ "loss": 1.765,
1833
+ "mean_token_accuracy": 0.5372408896684646,
1834
+ "step": 4520
1835
+ },
1836
+ {
1837
+ "epoch": 0.7279140612473946,
1838
+ "grad_norm": 1.5174387693405151,
1839
+ "learning_rate": 2.090811283142196e-05,
1840
+ "loss": 1.7615,
1841
+ "mean_token_accuracy": 0.5439996913075447,
1842
+ "step": 4540
1843
+ },
1844
+ {
1845
+ "epoch": 0.7311207311207312,
1846
+ "grad_norm": 1.453343391418457,
1847
+ "learning_rate": 2.0454738757390014e-05,
1848
+ "loss": 1.7372,
1849
+ "mean_token_accuracy": 0.540667149424553,
1850
+ "step": 4560
1851
+ },
1852
+ {
1853
+ "epoch": 0.7343274009940677,
1854
+ "grad_norm": 1.578175663948059,
1855
+ "learning_rate": 2.0005066824327673e-05,
1856
+ "loss": 1.7301,
1857
+ "mean_token_accuracy": 0.5443789809942245,
1858
+ "step": 4580
1859
+ },
1860
+ {
1861
+ "epoch": 0.7375340708674042,
1862
+ "grad_norm": 1.8367490768432617,
1863
+ "learning_rate": 1.9559153377950474e-05,
1864
+ "loss": 1.7255,
1865
+ "mean_token_accuracy": 0.5449193373322487,
1866
+ "step": 4600
1867
+ },
1868
+ {
1869
+ "epoch": 0.7407407407407407,
1870
+ "grad_norm": 1.5051259994506836,
1871
+ "learning_rate": 1.911705429302038e-05,
1872
+ "loss": 1.7553,
1873
+ "mean_token_accuracy": 0.5398281931877136,
1874
+ "step": 4620
1875
+ },
1876
+ {
1877
+ "epoch": 0.7439474106140773,
1878
+ "grad_norm": 1.4641402959823608,
1879
+ "learning_rate": 1.8678824966344416e-05,
1880
+ "loss": 1.7288,
1881
+ "mean_token_accuracy": 0.5467408001422882,
1882
+ "step": 4640
1883
+ },
1884
+ {
1885
+ "epoch": 0.7471540804874138,
1886
+ "grad_norm": 1.3909623622894287,
1887
+ "learning_rate": 1.824452030983316e-05,
1888
+ "loss": 1.7688,
1889
+ "mean_token_accuracy": 0.5377537578344345,
1890
+ "step": 4660
1891
+ },
1892
+ {
1893
+ "epoch": 0.7503607503607503,
1894
+ "grad_norm": 1.541202187538147,
1895
+ "learning_rate": 1.7814194743620172e-05,
1896
+ "loss": 1.7575,
1897
+ "mean_token_accuracy": 0.538825261592865,
1898
+ "step": 4680
1899
+ },
1900
+ {
1901
+ "epoch": 0.7535674202340868,
1902
+ "grad_norm": 1.4056111574172974,
1903
+ "learning_rate": 1.7387902189242826e-05,
1904
+ "loss": 1.7503,
1905
+ "mean_token_accuracy": 0.542974105477333,
1906
+ "step": 4700
1907
+ },
1908
+ {
1909
+ "epoch": 0.7567740901074235,
1910
+ "grad_norm": 1.5985795259475708,
1911
+ "learning_rate": 1.6965696062885815e-05,
1912
+ "loss": 1.6876,
1913
+ "mean_token_accuracy": 0.5525155961513519,
1914
+ "step": 4720
1915
+ },
1916
+ {
1917
+ "epoch": 0.75998075998076,
1918
+ "grad_norm": 1.958160161972046,
1919
+ "learning_rate": 1.6547629268687785e-05,
1920
+ "loss": 1.7879,
1921
+ "mean_token_accuracy": 0.5341216132044793,
1922
+ "step": 4740
1923
+ },
1924
+ {
1925
+ "epoch": 0.7631874298540965,
1926
+ "grad_norm": 1.5259677171707153,
1927
+ "learning_rate": 1.6133754192112353e-05,
1928
+ "loss": 1.7234,
1929
+ "mean_token_accuracy": 0.5443064093589782,
1930
+ "step": 4760
1931
+ },
1932
+ {
1933
+ "epoch": 0.7663940997274331,
1934
+ "grad_norm": 1.8299003839492798,
1935
+ "learning_rate": 1.572412269338386e-05,
1936
+ "loss": 1.7196,
1937
+ "mean_token_accuracy": 0.5485717713832855,
1938
+ "step": 4780
1939
+ },
1940
+ {
1941
+ "epoch": 0.7696007696007696,
1942
+ "grad_norm": 1.6229146718978882,
1943
+ "learning_rate": 1.5318786100989192e-05,
1944
+ "loss": 1.7261,
1945
+ "mean_token_accuracy": 0.5422624379396439,
1946
+ "step": 4800
1947
+ },
1948
+ {
1949
+ "epoch": 0.7728074394741061,
1950
+ "grad_norm": 1.5998332500457764,
1951
+ "learning_rate": 1.491779520524607e-05,
1952
+ "loss": 1.7342,
1953
+ "mean_token_accuracy": 0.5412924766540528,
1954
+ "step": 4820
1955
+ },
1956
+ {
1957
+ "epoch": 0.7760141093474426,
1958
+ "grad_norm": 1.6178627014160156,
1959
+ "learning_rate": 1.4521200251938777e-05,
1960
+ "loss": 1.7244,
1961
+ "mean_token_accuracy": 0.5459949374198914,
1962
+ "step": 4840
1963
+ },
1964
+ {
1965
+ "epoch": 0.7792207792207793,
1966
+ "grad_norm": 1.718936800956726,
1967
+ "learning_rate": 1.4129050936022215e-05,
1968
+ "loss": 1.758,
1969
+ "mean_token_accuracy": 0.5395539492368698,
1970
+ "step": 4860
1971
+ },
1972
+ {
1973
+ "epoch": 0.7824274490941158,
1974
+ "grad_norm": 1.6473840475082397,
1975
+ "learning_rate": 1.3741396395394918e-05,
1976
+ "loss": 1.7264,
1977
+ "mean_token_accuracy": 0.5445165723562241,
1978
+ "step": 4880
1979
+ },
1980
+ {
1981
+ "epoch": 0.7856341189674523,
1982
+ "grad_norm": 1.7518523931503296,
1983
+ "learning_rate": 1.3358285204741827e-05,
1984
+ "loss": 1.7462,
1985
+ "mean_token_accuracy": 0.5401648759841919,
1986
+ "step": 4900
1987
+ },
1988
+ {
1989
+ "epoch": 0.7888407888407888,
1990
+ "grad_norm": 1.577514410018921,
1991
+ "learning_rate": 1.2979765369447743e-05,
1992
+ "loss": 1.7665,
1993
+ "mean_token_accuracy": 0.5372074097394943,
1994
+ "step": 4920
1995
+ },
1996
+ {
1997
+ "epoch": 0.7920474587141254,
1998
+ "grad_norm": 1.666795253753662,
1999
+ "learning_rate": 1.2605884319582045e-05,
2000
+ "loss": 1.7359,
2001
+ "mean_token_accuracy": 0.54544777572155,
2002
+ "step": 4940
2003
+ },
2004
+ {
2005
+ "epoch": 0.7952541285874619,
2006
+ "grad_norm": 1.4499692916870117,
2007
+ "learning_rate": 1.2236688903955452e-05,
2008
+ "loss": 1.7604,
2009
+ "mean_token_accuracy": 0.5361103504896164,
2010
+ "step": 4960
2011
+ },
2012
+ {
2013
+ "epoch": 0.7984607984607984,
2014
+ "grad_norm": 1.79007887840271,
2015
+ "learning_rate": 1.1872225384249769e-05,
2016
+ "loss": 1.734,
2017
+ "mean_token_accuracy": 0.5440937787294388,
2018
+ "step": 4980
2019
+ },
2020
+ {
2021
+ "epoch": 0.801667468334135,
2022
+ "grad_norm": 1.8798636198043823,
2023
+ "learning_rate": 1.1512539429221058e-05,
2024
+ "loss": 1.7989,
2025
+ "mean_token_accuracy": 0.5301632598042488,
2026
+ "step": 5000
2027
+ },
2028
+ {
2029
+ "epoch": 0.8048741382074716,
2030
+ "grad_norm": 1.6248602867126465,
2031
+ "learning_rate": 1.1157676108977134e-05,
2032
+ "loss": 1.7415,
2033
+ "mean_token_accuracy": 0.5421714842319488,
2034
+ "step": 5020
2035
+ },
2036
+ {
2037
+ "epoch": 0.8080808080808081,
2038
+ "grad_norm": 1.626051425933838,
2039
+ "learning_rate": 1.0807679889330163e-05,
2040
+ "loss": 1.7699,
2041
+ "mean_token_accuracy": 0.5368034273386002,
2042
+ "step": 5040
2043
+ },
2044
+ {
2045
+ "epoch": 0.8112874779541446,
2046
+ "grad_norm": 1.6709613800048828,
2047
+ "learning_rate": 1.0462594626224886e-05,
2048
+ "loss": 1.7285,
2049
+ "mean_token_accuracy": 0.5429899528622627,
2050
+ "step": 5060
2051
+ },
2052
+ {
2053
+ "epoch": 0.8144941478274812,
2054
+ "grad_norm": 1.5203421115875244,
2055
+ "learning_rate": 1.012246356024325e-05,
2056
+ "loss": 1.7242,
2057
+ "mean_token_accuracy": 0.5429270610213279,
2058
+ "step": 5080
2059
+ },
2060
+ {
2061
+ "epoch": 0.8177008177008177,
2062
+ "grad_norm": 1.6060646772384644,
2063
+ "learning_rate": 9.78732931118625e-06,
2064
+ "loss": 1.7546,
2065
+ "mean_token_accuracy": 0.5418932989239693,
2066
+ "step": 5100
2067
+ },
2068
+ {
2069
+ "epoch": 0.8209074875741542,
2070
+ "grad_norm": 1.7185138463974,
2071
+ "learning_rate": 9.457233872733479e-06,
2072
+ "loss": 1.7366,
2073
+ "mean_token_accuracy": 0.5420786947011947,
2074
+ "step": 5120
2075
+ },
2076
+ {
2077
+ "epoch": 0.8241141574474908,
2078
+ "grad_norm": 1.499786615371704,
2079
+ "learning_rate": 9.132218607181109e-06,
2080
+ "loss": 1.7197,
2081
+ "mean_token_accuracy": 0.5424094408750534,
2082
+ "step": 5140
2083
+ },
2084
+ {
2085
+ "epoch": 0.8273208273208273,
2086
+ "grad_norm": 1.7282419204711914,
2087
+ "learning_rate": 8.812324240259096e-06,
2088
+ "loss": 1.75,
2089
+ "mean_token_accuracy": 0.5413718745112419,
2090
+ "step": 5160
2091
+ },
2092
+ {
2093
+ "epoch": 0.8305274971941639,
2094
+ "grad_norm": 1.539486050605774,
2095
+ "learning_rate": 8.497590856028026e-06,
2096
+ "loss": 1.7148,
2097
+ "mean_token_accuracy": 0.5459024518728256,
2098
+ "step": 5180
2099
+ },
2100
+ {
2101
+ "epoch": 0.8337341670675004,
2102
+ "grad_norm": 1.6102161407470703,
2103
+ "learning_rate": 8.188057891856426e-06,
2104
+ "loss": 1.7215,
2105
+ "mean_token_accuracy": 0.544721120595932,
2106
+ "step": 5200
2107
+ },
2108
+ {
2109
+ "epoch": 0.836940836940837,
2110
+ "grad_norm": 1.4731084108352661,
2111
+ "learning_rate": 7.883764133479139e-06,
2112
+ "loss": 1.7334,
2113
+ "mean_token_accuracy": 0.5424891680479049,
2114
+ "step": 5220
2115
+ },
2116
+ {
2117
+ "epoch": 0.8401475068141735,
2118
+ "grad_norm": 1.6069941520690918,
2119
+ "learning_rate": 7.5847477101372855e-06,
2120
+ "loss": 1.7146,
2121
+ "mean_token_accuracy": 0.5504184126853943,
2122
+ "step": 5240
2123
+ },
2124
+ {
2125
+ "epoch": 0.84335417668751,
2126
+ "grad_norm": 1.6103508472442627,
2127
+ "learning_rate": 7.291046089800496e-06,
2128
+ "loss": 1.7645,
2129
+ "mean_token_accuracy": 0.5386257976293564,
2130
+ "step": 5260
2131
+ },
2132
+ {
2133
+ "epoch": 0.8465608465608465,
2134
+ "grad_norm": 1.575320839881897,
2135
+ "learning_rate": 7.002696074472076e-06,
2136
+ "loss": 1.7392,
2137
+ "mean_token_accuracy": 0.5386416122317315,
2138
+ "step": 5280
2139
+ },
2140
+ {
2141
+ "epoch": 0.8497675164341831,
2142
+ "grad_norm": 1.6121926307678223,
2143
+ "learning_rate": 6.719733795577504e-06,
2144
+ "loss": 1.7426,
2145
+ "mean_token_accuracy": 0.5400305777788162,
2146
+ "step": 5300
2147
+ },
2148
+ {
2149
+ "epoch": 0.8529741863075196,
2150
+ "grad_norm": 1.8504875898361206,
2151
+ "learning_rate": 6.442194709437089e-06,
2152
+ "loss": 1.7193,
2153
+ "mean_token_accuracy": 0.546892175078392,
2154
+ "step": 5320
2155
+ },
2156
+ {
2157
+ "epoch": 0.8561808561808562,
2158
+ "grad_norm": 1.537227988243103,
2159
+ "learning_rate": 6.170113592823057e-06,
2160
+ "loss": 1.7108,
2161
+ "mean_token_accuracy": 0.5477687418460846,
2162
+ "step": 5340
2163
+ },
2164
+ {
2165
+ "epoch": 0.8593875260541928,
2166
+ "grad_norm": 1.7463566064834595,
2167
+ "learning_rate": 5.90352453860199e-06,
2168
+ "loss": 1.7716,
2169
+ "mean_token_accuracy": 0.5326795309782029,
2170
+ "step": 5360
2171
+ },
2172
+ {
2173
+ "epoch": 0.8625941959275293,
2174
+ "grad_norm": 1.628735065460205,
2175
+ "learning_rate": 5.642460951462747e-06,
2176
+ "loss": 1.7015,
2177
+ "mean_token_accuracy": 0.5511958628892899,
2178
+ "step": 5380
2179
+ },
2180
+ {
2181
+ "epoch": 0.8658008658008658,
2182
+ "grad_norm": 1.5532407760620117,
2183
+ "learning_rate": 5.3869555437307985e-06,
2184
+ "loss": 1.7055,
2185
+ "mean_token_accuracy": 0.5501611769199372,
2186
+ "step": 5400
2187
+ },
2188
+ {
2189
+ "epoch": 0.8690075356742023,
2190
+ "grad_norm": 1.3285646438598633,
2191
+ "learning_rate": 5.137040331269211e-06,
2192
+ "loss": 1.6782,
2193
+ "mean_token_accuracy": 0.5495849221944809,
2194
+ "step": 5420
2195
+ },
2196
+ {
2197
+ "epoch": 0.8722142055475389,
2198
+ "grad_norm": 1.8813681602478027,
2199
+ "learning_rate": 4.892746629466899e-06,
2200
+ "loss": 1.7268,
2201
+ "mean_token_accuracy": 0.5474593430757523,
2202
+ "step": 5440
2203
+ },
2204
+ {
2205
+ "epoch": 0.8754208754208754,
2206
+ "grad_norm": 1.5516417026519775,
2207
+ "learning_rate": 4.654105049314744e-06,
2208
+ "loss": 1.7426,
2209
+ "mean_token_accuracy": 0.544597877562046,
2210
+ "step": 5460
2211
+ },
2212
+ {
2213
+ "epoch": 0.8786275452942119,
2214
+ "grad_norm": 1.6854817867279053,
2215
+ "learning_rate": 4.421145493569861e-06,
2216
+ "loss": 1.7039,
2217
+ "mean_token_accuracy": 0.5486319988965989,
2218
+ "step": 5480
2219
+ },
2220
+ {
2221
+ "epoch": 0.8818342151675485,
2222
+ "grad_norm": 1.6205663681030273,
2223
+ "learning_rate": 4.19389715300868e-06,
2224
+ "loss": 1.708,
2225
+ "mean_token_accuracy": 0.5509619444608689,
2226
+ "step": 5500
2227
+ },
2228
+ {
2229
+ "epoch": 0.8850408850408851,
2230
+ "grad_norm": 1.7468833923339844,
2231
+ "learning_rate": 3.972388502769226e-06,
2232
+ "loss": 1.7353,
2233
+ "mean_token_accuracy": 0.5436493963003158,
2234
+ "step": 5520
2235
+ },
2236
+ {
2237
+ "epoch": 0.8882475549142216,
2238
+ "grad_norm": 1.6175867319107056,
2239
+ "learning_rate": 3.7566472987830726e-06,
2240
+ "loss": 1.7306,
2241
+ "mean_token_accuracy": 0.5433537870645523,
2242
+ "step": 5540
2243
+ },
2244
+ {
2245
+ "epoch": 0.8914542247875581,
2246
+ "grad_norm": 1.6812947988510132,
2247
+ "learning_rate": 3.546700574297385e-06,
2248
+ "loss": 1.7391,
2249
+ "mean_token_accuracy": 0.5441039055585861,
2250
+ "step": 5560
2251
+ },
2252
+ {
2253
+ "epoch": 0.8946608946608947,
2254
+ "grad_norm": 1.6716430187225342,
2255
+ "learning_rate": 3.3425746364875834e-06,
2256
+ "loss": 1.7076,
2257
+ "mean_token_accuracy": 0.5486252635717392,
2258
+ "step": 5580
2259
+ },
2260
+ {
2261
+ "epoch": 0.8978675645342312,
2262
+ "grad_norm": 1.838515281677246,
2263
+ "learning_rate": 3.144295063160929e-06,
2264
+ "loss": 1.7275,
2265
+ "mean_token_accuracy": 0.5441503524780273,
2266
+ "step": 5600
2267
+ },
2268
+ {
2269
+ "epoch": 0.9010742344075677,
2270
+ "grad_norm": 1.9950391054153442,
2271
+ "learning_rate": 2.9518866995515038e-06,
2272
+ "loss": 1.713,
2273
+ "mean_token_accuracy": 0.5466269612312317,
2274
+ "step": 5620
2275
+ },
2276
+ {
2277
+ "epoch": 0.9042809042809042,
2278
+ "grad_norm": 1.6081202030181885,
2279
+ "learning_rate": 2.765373655207021e-06,
2280
+ "loss": 1.7294,
2281
+ "mean_token_accuracy": 0.5423602730035781,
2282
+ "step": 5640
2283
+ },
2284
+ {
2285
+ "epoch": 0.9074875741542409,
2286
+ "grad_norm": 1.6213099956512451,
2287
+ "learning_rate": 2.5847793009678212e-06,
2288
+ "loss": 1.723,
2289
+ "mean_token_accuracy": 0.5430870592594147,
2290
+ "step": 5660
2291
+ },
2292
+ {
2293
+ "epoch": 0.9106942440275774,
2294
+ "grad_norm": 1.8376996517181396,
2295
+ "learning_rate": 2.4101262660383594e-06,
2296
+ "loss": 1.7215,
2297
+ "mean_token_accuracy": 0.5455273285508155,
2298
+ "step": 5680
2299
+ },
2300
+ {
2301
+ "epoch": 0.9139009139009139,
2302
+ "grad_norm": 1.6142514944076538,
2303
+ "learning_rate": 2.241436435151717e-06,
2304
+ "loss": 1.7415,
2305
+ "mean_token_accuracy": 0.5425774544477463,
2306
+ "step": 5700
2307
+ },
2308
+ {
2309
+ "epoch": 0.9171075837742504,
2310
+ "grad_norm": 2.0796701908111572,
2311
+ "learning_rate": 2.078730945827351e-06,
2312
+ "loss": 1.7411,
2313
+ "mean_token_accuracy": 0.5402660548686982,
2314
+ "step": 5720
2315
+ },
2316
+ {
2317
+ "epoch": 0.920314253647587,
2318
+ "grad_norm": 1.64828622341156,
2319
+ "learning_rate": 1.9220301857224455e-06,
2320
+ "loss": 1.7002,
2321
+ "mean_token_accuracy": 0.5491351515054703,
2322
+ "step": 5740
2323
+ },
2324
+ {
2325
+ "epoch": 0.9235209235209235,
2326
+ "grad_norm": 1.402880311012268,
2327
+ "learning_rate": 1.7713537900772958e-06,
2328
+ "loss": 1.7124,
2329
+ "mean_token_accuracy": 0.5458125352859498,
2330
+ "step": 5760
2331
+ },
2332
+ {
2333
+ "epoch": 0.92672759339426,
2334
+ "grad_norm": 1.4213367700576782,
2335
+ "learning_rate": 1.626720639254914e-06,
2336
+ "loss": 1.6927,
2337
+ "mean_token_accuracy": 0.5488159418106079,
2338
+ "step": 5780
2339
+ },
2340
+ {
2341
+ "epoch": 0.9299342632675967,
2342
+ "grad_norm": 1.6133363246917725,
2343
+ "learning_rate": 1.4881488563752377e-06,
2344
+ "loss": 1.7388,
2345
+ "mean_token_accuracy": 0.5443336263298988,
2346
+ "step": 5800
2347
+ },
2348
+ {
2349
+ "epoch": 0.9331409331409332,
2350
+ "grad_norm": 1.4495124816894531,
2351
+ "learning_rate": 1.3556558050442425e-06,
2352
+ "loss": 1.704,
2353
+ "mean_token_accuracy": 0.546082928776741,
2354
+ "step": 5820
2355
+ },
2356
+ {
2357
+ "epoch": 0.9363476030142697,
2358
+ "grad_norm": 1.6041686534881592,
2359
+ "learning_rate": 1.2292580871782144e-06,
2360
+ "loss": 1.7317,
2361
+ "mean_token_accuracy": 0.5426234900951385,
2362
+ "step": 5840
2363
+ },
2364
+ {
2365
+ "epoch": 0.9395542728876062,
2366
+ "grad_norm": 1.742559790611267,
2367
+ "learning_rate": 1.1089715409234313e-06,
2368
+ "loss": 1.7058,
2369
+ "mean_token_accuracy": 0.547260707616806,
2370
+ "step": 5860
2371
+ },
2372
+ {
2373
+ "epoch": 0.9427609427609428,
2374
+ "grad_norm": 1.509397029876709,
2375
+ "learning_rate": 9.948112386716168e-07,
2376
+ "loss": 1.6986,
2377
+ "mean_token_accuracy": 0.5505899757146835,
2378
+ "step": 5880
2379
+ },
2380
+ {
2381
+ "epoch": 0.9459676126342793,
2382
+ "grad_norm": 1.6833570003509521,
2383
+ "learning_rate": 8.86791485171301e-07,
2384
+ "loss": 1.7469,
2385
+ "mean_token_accuracy": 0.5377726525068283,
2386
+ "step": 5900
2387
+ },
2388
+ {
2389
+ "epoch": 0.9491742825076158,
2390
+ "grad_norm": 1.5239343643188477,
2391
+ "learning_rate": 7.849258157353546e-07,
2392
+ "loss": 1.7162,
2393
+ "mean_token_accuracy": 0.5405813604593277,
2394
+ "step": 5920
2395
+ },
2396
+ {
2397
+ "epoch": 0.9523809523809523,
2398
+ "grad_norm": 1.7833971977233887,
2399
+ "learning_rate": 6.892269945449781e-07,
2400
+ "loss": 1.7317,
2401
+ "mean_token_accuracy": 0.545667690038681,
2402
+ "step": 5940
2403
+ },
2404
+ {
2405
+ "epoch": 0.955587622254289,
2406
+ "grad_norm": 1.5971351861953735,
2407
+ "learning_rate": 5.997070130503101e-07,
2408
+ "loss": 1.7468,
2409
+ "mean_token_accuracy": 0.5399376690387726,
2410
+ "step": 5960
2411
+ },
2412
+ {
2413
+ "epoch": 0.9587942921276255,
2414
+ "grad_norm": 1.791557788848877,
2415
+ "learning_rate": 5.163770884678065e-07,
2416
+ "loss": 1.7308,
2417
+ "mean_token_accuracy": 0.5437323659658432,
2418
+ "step": 5980
2419
+ },
2420
+ {
2421
+ "epoch": 0.962000962000962,
2422
+ "grad_norm": 1.9151041507720947,
2423
+ "learning_rate": 4.392476623747366e-07,
2424
+ "loss": 1.741,
2425
+ "mean_token_accuracy": 0.5398768007755279,
2426
+ "step": 6000
2427
+ },
2428
+ {
2429
+ "epoch": 0.9652076318742986,
2430
+ "grad_norm": 1.6582918167114258,
2431
+ "learning_rate": 3.6832839940075805e-07,
2432
+ "loss": 1.7006,
2433
+ "mean_token_accuracy": 0.5496091902256012,
2434
+ "step": 6020
2435
+ },
2436
+ {
2437
+ "epoch": 0.9684143017476351,
2438
+ "grad_norm": 1.8586136102676392,
2439
+ "learning_rate": 3.0362818601693543e-07,
2440
+ "loss": 1.7186,
2441
+ "mean_token_accuracy": 0.54738067984581,
2442
+ "step": 6040
2443
+ },
2444
+ {
2445
+ "epoch": 0.9716209716209716,
2446
+ "grad_norm": 1.8676416873931885,
2447
+ "learning_rate": 2.451551294222087e-07,
2448
+ "loss": 1.7165,
2449
+ "mean_token_accuracy": 0.5441298902034759,
2450
+ "step": 6060
2451
+ },
2452
+ {
2453
+ "epoch": 0.9748276414943081,
2454
+ "grad_norm": 1.6972177028656006,
2455
+ "learning_rate": 1.929165565275448e-07,
2456
+ "loss": 1.7179,
2457
+ "mean_token_accuracy": 0.543172636628151,
2458
+ "step": 6080
2459
+ },
2460
+ {
2461
+ "epoch": 0.9780343113676447,
2462
+ "grad_norm": 1.5021824836730957,
2463
+ "learning_rate": 1.4691901303782173e-07,
2464
+ "loss": 1.7311,
2465
+ "mean_token_accuracy": 0.5438661694526672,
2466
+ "step": 6100
2467
+ },
2468
+ {
2469
+ "epoch": 0.9812409812409812,
2470
+ "grad_norm": 1.6856005191802979,
2471
+ "learning_rate": 1.0716826263165725e-07,
2472
+ "loss": 1.7283,
2473
+ "mean_token_accuracy": 0.5454312190413475,
2474
+ "step": 6120
2475
+ },
2476
+ {
2477
+ "epoch": 0.9844476511143178,
2478
+ "grad_norm": 1.5837814807891846,
2479
+ "learning_rate": 7.366928623916413e-08,
2480
+ "loss": 1.7156,
2481
+ "mean_token_accuracy": 0.5453536838293076,
2482
+ "step": 6140
2483
+ },
2484
+ {
2485
+ "epoch": 0.9876543209876543,
2486
+ "grad_norm": 1.9022527933120728,
2487
+ "learning_rate": 4.64262814178551e-08,
2488
+ "loss": 1.7011,
2489
+ "mean_token_accuracy": 0.5509391695261001,
2490
+ "step": 6160
2491
+ },
2492
+ {
2493
+ "epoch": 0.9908609908609909,
2494
+ "grad_norm": 1.4848562479019165,
2495
+ "learning_rate": 2.544266182662458e-08,
2496
+ "loss": 1.6851,
2497
+ "mean_token_accuracy": 0.5534208327531814,
2498
+ "step": 6180
2499
+ },
2500
+ {
2501
+ "epoch": 0.9940676607343274,
2502
+ "grad_norm": 1.5964195728302002,
2503
+ "learning_rate": 1.0721056798057572e-08,
2504
+ "loss": 1.7122,
2505
+ "mean_token_accuracy": 0.5429927557706833,
2506
+ "step": 6200
2507
+ },
2508
+ {
2509
+ "epoch": 0.9972743306076639,
2510
+ "grad_norm": 1.8827787637710571,
2511
+ "learning_rate": 2.2633110089265163e-09,
2512
+ "loss": 1.7211,
2513
+ "mean_token_accuracy": 0.5458635985851288,
2514
+ "step": 6220
2515
+ }
2516
+ ],
2517
+ "logging_steps": 20,
2518
+ "max_steps": 6237,
2519
+ "num_input_tokens_seen": 0,
2520
+ "num_train_epochs": 1,
2521
+ "save_steps": 3119,
2522
+ "stateful_callbacks": {
2523
+ "TrainerControl": {
2524
+ "args": {
2525
+ "should_epoch_stop": false,
2526
+ "should_evaluate": false,
2527
+ "should_log": false,
2528
+ "should_save": true,
2529
+ "should_training_stop": true
2530
+ },
2531
+ "attributes": {}
2532
+ }
2533
+ },
2534
+ "total_flos": 3.9136612672224625e+18,
2535
+ "train_batch_size": 16,
2536
+ "trial_name": null,
2537
+ "trial_params": null
2538
+ }
checkpoint-6237/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aad656740548acb2cf8355c0bb58f2d3acfb74bed369d470a571070c08698a6c
3
+ size 5880
config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_attn_implementation_autoset": true,
3
+ "_name_or_path": "google/paligemma2-3b-pt-224",
4
+ "_vocab_size": 257152,
5
+ "architectures": [
6
+ "PaliGemmaForConditionalGeneration"
7
+ ],
8
+ "bos_token_id": 2,
9
+ "eos_token_id": 1,
10
+ "hidden_size": 2048,
11
+ "image_token_index": 257152,
12
+ "model_type": "paligemma",
13
+ "num_hidden_layers": 26,
14
+ "pad_token_id": 0,
15
+ "projection_dim": 2304,
16
+ "text_config": {
17
+ "architectures": [
18
+ "Gemma2ForCausalLM"
19
+ ],
20
+ "attn_logit_softcapping": 50.0,
21
+ "cache_implementation": "hybrid",
22
+ "eos_token_id": [
23
+ 1,
24
+ 107
25
+ ],
26
+ "final_logit_softcapping": 30.0,
27
+ "hidden_act": "gelu_pytorch_tanh",
28
+ "hidden_activation": "gelu_pytorch_tanh",
29
+ "hidden_size": 2304,
30
+ "intermediate_size": 9216,
31
+ "model_type": "gemma2",
32
+ "num_hidden_layers": 26,
33
+ "num_image_tokens": 256,
34
+ "num_key_value_heads": 4,
35
+ "query_pre_attn_scalar": 256,
36
+ "sliding_window": 4096,
37
+ "torch_dtype": "bfloat16",
38
+ "vocab_size": 257216
39
+ },
40
+ "torch_dtype": "bfloat16",
41
+ "transformers_version": "4.49.0",
42
+ "vision_config": {
43
+ "hidden_size": 1152,
44
+ "intermediate_size": 4304,
45
+ "model_type": "siglip_vision_model",
46
+ "num_attention_heads": 16,
47
+ "num_hidden_layers": 27,
48
+ "num_image_tokens": 256,
49
+ "num_positions": 256,
50
+ "patch_size": 14,
51
+ "projection_dim": 2304,
52
+ "torch_dtype": "bfloat16",
53
+ "vision_use_head": false
54
+ }
55
+ }
eval_results.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "eval_loss": 1.53940749168396,
3
+ "eval_runtime": 1828.6515,
4
+ "eval_samples": 495720,
5
+ "eval_samples_per_second": 271.085,
6
+ "eval_steps_per_second": 2.118
7
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": null,
3
+ "do_normalize": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "image_mean": [
7
+ 0.5,
8
+ 0.5,
9
+ 0.5
10
+ ],
11
+ "image_processor_type": "SiglipImageProcessor",
12
+ "image_seq_length": 256,
13
+ "image_std": [
14
+ 0.5,
15
+ 0.5,
16
+ 0.5
17
+ ],
18
+ "processor_class": "PaliGemmaProcessor",
19
+ "resample": 3,
20
+ "rescale_factor": 0.00392156862745098,
21
+ "size": {
22
+ "height": 224,
23
+ "width": 224
24
+ }
25
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ {
4
+ "content": "<image>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ }
10
+ ],
11
+ "bos_token": {
12
+ "content": "<bos>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "eos_token": {
19
+ "content": "<eos>",
20
+ "lstrip": false,
21
+ "normalized": false,
22
+ "rstrip": false,
23
+ "single_word": false
24
+ },
25
+ "pad_token": {
26
+ "content": "<pad>",
27
+ "lstrip": false,
28
+ "normalized": false,
29
+ "rstrip": false,
30
+ "single_word": false
31
+ },
32
+ "unk_token": {
33
+ "content": "<unk>",
34
+ "lstrip": false,
35
+ "normalized": false,
36
+ "rstrip": false,
37
+ "single_word": false
38
+ }
39
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b648d11e0879b11659e6b4051f691752c0cef597a865c6fde5b318b9f68c1d05
3
+ size 34600974
tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
train_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 3.9136612672224625e+18,
3
+ "train_loss": 1.9499194212634154,
4
+ "train_runtime": 7999.3345,
5
+ "train_samples": 798264,
6
+ "train_samples_per_second": 99.791,
7
+ "train_steps_per_second": 0.78
8
+ }