AmberYifan commited on
Commit
c310fec
1 Parent(s): 5846037

Model save

Browse files
Files changed (5) hide show
  1. README.md +57 -0
  2. all_results.json +9 -0
  3. generation_config.json +10 -0
  4. train_results.json +9 -0
  5. trainer_state.json +2220 -0
README.md ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: AmberYifan/llama2-7b-sft-ultrachat
3
+ library_name: transformers
4
+ model_name: llama2-7b-sft-ultrachat-safeRLHF
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - sft
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for llama2-7b-sft-ultrachat-safeRLHF
13
+
14
+ This model is a fine-tuned version of [AmberYifan/llama2-7b-sft-ultrachat](https://huggingface.co/AmberYifan/llama2-7b-sft-ultrachat).
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="AmberYifan/llama2-7b-sft-ultrachat-safeRLHF", 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/yifanwang/huggingface/runs/8oph7peu)
31
+
32
+ This model was trained with SFT.
33
+
34
+ ### Framework versions
35
+
36
+ - TRL: 0.12.0
37
+ - Transformers: 4.46.3
38
+ - Pytorch: 2.1.2+cu121
39
+ - Datasets: 3.1.0
40
+ - Tokenizers: 0.20.3
41
+
42
+ ## Citations
43
+
44
+
45
+
46
+ Cite TRL as:
47
+
48
+ ```bibtex
49
+ @misc{vonwerra2022trl,
50
+ title = {{TRL: Transformer Reinforcement Learning}},
51
+ 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},
52
+ year = 2020,
53
+ journal = {GitHub repository},
54
+ publisher = {GitHub},
55
+ howpublished = {\url{https://github.com/huggingface/trl}}
56
+ }
57
+ ```
all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 1.0,
3
+ "total_flos": 20529608785920.0,
4
+ "train_loss": 1.263828207016607,
5
+ "train_runtime": 6453.9435,
6
+ "train_samples": 49550,
7
+ "train_samples_per_second": 7.677,
8
+ "train_steps_per_second": 0.24
9
+ }
generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 1,
3
+ "do_sample": true,
4
+ "eos_token_id": 2,
5
+ "max_length": 4096,
6
+ "pad_token_id": 0,
7
+ "temperature": 0.6,
8
+ "top_p": 0.9,
9
+ "transformers_version": "4.46.3"
10
+ }
train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 1.0,
3
+ "total_flos": 20529608785920.0,
4
+ "train_loss": 1.263828207016607,
5
+ "train_runtime": 6453.9435,
6
+ "train_samples": 49550,
7
+ "train_samples_per_second": 7.677,
8
+ "train_steps_per_second": 0.24
9
+ }
trainer_state.json ADDED
@@ -0,0 +1,2220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 1.0,
5
+ "eval_steps": 500,
6
+ "global_step": 1549,
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.0006455777921239509,
13
+ "grad_norm": 3.9650591213827973,
14
+ "learning_rate": 1.2903225806451614e-07,
15
+ "loss": 1.6036,
16
+ "step": 1
17
+ },
18
+ {
19
+ "epoch": 0.0032278889606197547,
20
+ "grad_norm": 3.8088274952823418,
21
+ "learning_rate": 6.451612903225807e-07,
22
+ "loss": 1.6307,
23
+ "step": 5
24
+ },
25
+ {
26
+ "epoch": 0.006455777921239509,
27
+ "grad_norm": 4.165879562455664,
28
+ "learning_rate": 1.2903225806451614e-06,
29
+ "loss": 1.6249,
30
+ "step": 10
31
+ },
32
+ {
33
+ "epoch": 0.009683666881859263,
34
+ "grad_norm": 2.990018728469599,
35
+ "learning_rate": 1.935483870967742e-06,
36
+ "loss": 1.5588,
37
+ "step": 15
38
+ },
39
+ {
40
+ "epoch": 0.012911555842479019,
41
+ "grad_norm": 2.7197323548375154,
42
+ "learning_rate": 2.580645161290323e-06,
43
+ "loss": 1.4927,
44
+ "step": 20
45
+ },
46
+ {
47
+ "epoch": 0.016139444803098774,
48
+ "grad_norm": 2.249170792509018,
49
+ "learning_rate": 3.225806451612903e-06,
50
+ "loss": 1.4732,
51
+ "step": 25
52
+ },
53
+ {
54
+ "epoch": 0.019367333763718526,
55
+ "grad_norm": 2.525470719551368,
56
+ "learning_rate": 3.870967741935484e-06,
57
+ "loss": 1.4238,
58
+ "step": 30
59
+ },
60
+ {
61
+ "epoch": 0.022595222724338282,
62
+ "grad_norm": 2.0358718107154865,
63
+ "learning_rate": 4.516129032258065e-06,
64
+ "loss": 1.3624,
65
+ "step": 35
66
+ },
67
+ {
68
+ "epoch": 0.025823111684958037,
69
+ "grad_norm": 1.992683800905439,
70
+ "learning_rate": 5.161290322580646e-06,
71
+ "loss": 1.4032,
72
+ "step": 40
73
+ },
74
+ {
75
+ "epoch": 0.029051000645577793,
76
+ "grad_norm": 2.013454166084203,
77
+ "learning_rate": 5.806451612903226e-06,
78
+ "loss": 1.331,
79
+ "step": 45
80
+ },
81
+ {
82
+ "epoch": 0.03227888960619755,
83
+ "grad_norm": 2.090725865373585,
84
+ "learning_rate": 6.451612903225806e-06,
85
+ "loss": 1.3562,
86
+ "step": 50
87
+ },
88
+ {
89
+ "epoch": 0.035506778566817304,
90
+ "grad_norm": 2.05356594398191,
91
+ "learning_rate": 7.096774193548388e-06,
92
+ "loss": 1.3419,
93
+ "step": 55
94
+ },
95
+ {
96
+ "epoch": 0.03873466752743705,
97
+ "grad_norm": 2.0581334238835094,
98
+ "learning_rate": 7.741935483870968e-06,
99
+ "loss": 1.3581,
100
+ "step": 60
101
+ },
102
+ {
103
+ "epoch": 0.04196255648805681,
104
+ "grad_norm": 1.8723945697068236,
105
+ "learning_rate": 8.387096774193549e-06,
106
+ "loss": 1.3274,
107
+ "step": 65
108
+ },
109
+ {
110
+ "epoch": 0.045190445448676564,
111
+ "grad_norm": 1.926329815796449,
112
+ "learning_rate": 9.03225806451613e-06,
113
+ "loss": 1.3388,
114
+ "step": 70
115
+ },
116
+ {
117
+ "epoch": 0.04841833440929632,
118
+ "grad_norm": 1.860663046947963,
119
+ "learning_rate": 9.67741935483871e-06,
120
+ "loss": 1.3248,
121
+ "step": 75
122
+ },
123
+ {
124
+ "epoch": 0.051646223369916075,
125
+ "grad_norm": 2.003718296473059,
126
+ "learning_rate": 1.0322580645161291e-05,
127
+ "loss": 1.3043,
128
+ "step": 80
129
+ },
130
+ {
131
+ "epoch": 0.05487411233053583,
132
+ "grad_norm": 2.067099708161208,
133
+ "learning_rate": 1.096774193548387e-05,
134
+ "loss": 1.2791,
135
+ "step": 85
136
+ },
137
+ {
138
+ "epoch": 0.058102001291155586,
139
+ "grad_norm": 1.912623762729298,
140
+ "learning_rate": 1.1612903225806453e-05,
141
+ "loss": 1.3056,
142
+ "step": 90
143
+ },
144
+ {
145
+ "epoch": 0.06132989025177534,
146
+ "grad_norm": 1.9330132101669817,
147
+ "learning_rate": 1.2258064516129034e-05,
148
+ "loss": 1.2744,
149
+ "step": 95
150
+ },
151
+ {
152
+ "epoch": 0.0645577792123951,
153
+ "grad_norm": 1.9526926931743687,
154
+ "learning_rate": 1.2903225806451613e-05,
155
+ "loss": 1.3269,
156
+ "step": 100
157
+ },
158
+ {
159
+ "epoch": 0.06778566817301485,
160
+ "grad_norm": 1.9107443115368858,
161
+ "learning_rate": 1.3548387096774194e-05,
162
+ "loss": 1.3216,
163
+ "step": 105
164
+ },
165
+ {
166
+ "epoch": 0.07101355713363461,
167
+ "grad_norm": 2.028122509274084,
168
+ "learning_rate": 1.4193548387096776e-05,
169
+ "loss": 1.3015,
170
+ "step": 110
171
+ },
172
+ {
173
+ "epoch": 0.07424144609425436,
174
+ "grad_norm": 1.9705558160434318,
175
+ "learning_rate": 1.4838709677419357e-05,
176
+ "loss": 1.3778,
177
+ "step": 115
178
+ },
179
+ {
180
+ "epoch": 0.0774693350548741,
181
+ "grad_norm": 1.9147018582759738,
182
+ "learning_rate": 1.5483870967741936e-05,
183
+ "loss": 1.2741,
184
+ "step": 120
185
+ },
186
+ {
187
+ "epoch": 0.08069722401549387,
188
+ "grad_norm": 1.9414619491995477,
189
+ "learning_rate": 1.6129032258064517e-05,
190
+ "loss": 1.2515,
191
+ "step": 125
192
+ },
193
+ {
194
+ "epoch": 0.08392511297611362,
195
+ "grad_norm": 1.9507407646646784,
196
+ "learning_rate": 1.6774193548387098e-05,
197
+ "loss": 1.3155,
198
+ "step": 130
199
+ },
200
+ {
201
+ "epoch": 0.08715300193673338,
202
+ "grad_norm": 2.079634842680955,
203
+ "learning_rate": 1.741935483870968e-05,
204
+ "loss": 1.3175,
205
+ "step": 135
206
+ },
207
+ {
208
+ "epoch": 0.09038089089735313,
209
+ "grad_norm": 1.9123604229377198,
210
+ "learning_rate": 1.806451612903226e-05,
211
+ "loss": 1.3449,
212
+ "step": 140
213
+ },
214
+ {
215
+ "epoch": 0.09360877985797289,
216
+ "grad_norm": 1.9246949261057293,
217
+ "learning_rate": 1.870967741935484e-05,
218
+ "loss": 1.3144,
219
+ "step": 145
220
+ },
221
+ {
222
+ "epoch": 0.09683666881859264,
223
+ "grad_norm": 1.906386143347907,
224
+ "learning_rate": 1.935483870967742e-05,
225
+ "loss": 1.378,
226
+ "step": 150
227
+ },
228
+ {
229
+ "epoch": 0.1000645577792124,
230
+ "grad_norm": 1.8601855072949223,
231
+ "learning_rate": 2e-05,
232
+ "loss": 1.343,
233
+ "step": 155
234
+ },
235
+ {
236
+ "epoch": 0.10329244673983215,
237
+ "grad_norm": 1.8098540840198305,
238
+ "learning_rate": 1.9999365137586883e-05,
239
+ "loss": 1.3381,
240
+ "step": 160
241
+ },
242
+ {
243
+ "epoch": 0.1065203357004519,
244
+ "grad_norm": 1.8706270922180774,
245
+ "learning_rate": 1.9997460630957587e-05,
246
+ "loss": 1.3223,
247
+ "step": 165
248
+ },
249
+ {
250
+ "epoch": 0.10974822466107166,
251
+ "grad_norm": 1.8608950873937071,
252
+ "learning_rate": 1.9994286721932043e-05,
253
+ "loss": 1.3626,
254
+ "step": 170
255
+ },
256
+ {
257
+ "epoch": 0.11297611362169141,
258
+ "grad_norm": 1.7900195911673324,
259
+ "learning_rate": 1.9989843813509366e-05,
260
+ "loss": 1.3378,
261
+ "step": 175
262
+ },
263
+ {
264
+ "epoch": 0.11620400258231117,
265
+ "grad_norm": 1.9009457846729683,
266
+ "learning_rate": 1.998413246981666e-05,
267
+ "loss": 1.3092,
268
+ "step": 180
269
+ },
270
+ {
271
+ "epoch": 0.11943189154293092,
272
+ "grad_norm": 1.817245920497017,
273
+ "learning_rate": 1.9977153416037424e-05,
274
+ "loss": 1.3178,
275
+ "step": 185
276
+ },
277
+ {
278
+ "epoch": 0.12265978050355068,
279
+ "grad_norm": 1.9248355064764926,
280
+ "learning_rate": 1.9968907538319433e-05,
281
+ "loss": 1.3679,
282
+ "step": 190
283
+ },
284
+ {
285
+ "epoch": 0.12588766946417043,
286
+ "grad_norm": 1.8232558588327803,
287
+ "learning_rate": 1.9959395883662257e-05,
288
+ "loss": 1.3209,
289
+ "step": 195
290
+ },
291
+ {
292
+ "epoch": 0.1291155584247902,
293
+ "grad_norm": 1.7891335229988536,
294
+ "learning_rate": 1.99486196597843e-05,
295
+ "loss": 1.3159,
296
+ "step": 200
297
+ },
298
+ {
299
+ "epoch": 0.13234344738540993,
300
+ "grad_norm": 1.8906319036499681,
301
+ "learning_rate": 1.9936580234969464e-05,
302
+ "loss": 1.3602,
303
+ "step": 205
304
+ },
305
+ {
306
+ "epoch": 0.1355713363460297,
307
+ "grad_norm": 1.7907546683009863,
308
+ "learning_rate": 1.9923279137893405e-05,
309
+ "loss": 1.3354,
310
+ "step": 210
311
+ },
312
+ {
313
+ "epoch": 0.13879922530664945,
314
+ "grad_norm": 1.700699011195732,
315
+ "learning_rate": 1.990871805742944e-05,
316
+ "loss": 1.3204,
317
+ "step": 215
318
+ },
319
+ {
320
+ "epoch": 0.14202711426726922,
321
+ "grad_norm": 1.6951471445484736,
322
+ "learning_rate": 1.9892898842434106e-05,
323
+ "loss": 1.3477,
324
+ "step": 220
325
+ },
326
+ {
327
+ "epoch": 0.14525500322788895,
328
+ "grad_norm": 1.7370980540115004,
329
+ "learning_rate": 1.98758235015124e-05,
330
+ "loss": 1.2897,
331
+ "step": 225
332
+ },
333
+ {
334
+ "epoch": 0.1484828921885087,
335
+ "grad_norm": 1.90980565221276,
336
+ "learning_rate": 1.9857494202762758e-05,
337
+ "loss": 1.3285,
338
+ "step": 230
339
+ },
340
+ {
341
+ "epoch": 0.15171078114912848,
342
+ "grad_norm": 1.8327559047783981,
343
+ "learning_rate": 1.983791327350174e-05,
344
+ "loss": 1.3393,
345
+ "step": 235
346
+ },
347
+ {
348
+ "epoch": 0.1549386701097482,
349
+ "grad_norm": 1.7088673595234396,
350
+ "learning_rate": 1.9817083199968552e-05,
351
+ "loss": 1.3366,
352
+ "step": 240
353
+ },
354
+ {
355
+ "epoch": 0.15816655907036797,
356
+ "grad_norm": 1.663460603889217,
357
+ "learning_rate": 1.979500662700934e-05,
358
+ "loss": 1.3397,
359
+ "step": 245
360
+ },
361
+ {
362
+ "epoch": 0.16139444803098774,
363
+ "grad_norm": 1.8442180798418375,
364
+ "learning_rate": 1.977168635774138e-05,
365
+ "loss": 1.3195,
366
+ "step": 250
367
+ },
368
+ {
369
+ "epoch": 0.1646223369916075,
370
+ "grad_norm": 1.643074105204939,
371
+ "learning_rate": 1.974712535319716e-05,
372
+ "loss": 1.3721,
373
+ "step": 255
374
+ },
375
+ {
376
+ "epoch": 0.16785022595222723,
377
+ "grad_norm": 1.6902951726350381,
378
+ "learning_rate": 1.97213267319484e-05,
379
+ "loss": 1.3117,
380
+ "step": 260
381
+ },
382
+ {
383
+ "epoch": 0.171078114912847,
384
+ "grad_norm": 1.7911120795907636,
385
+ "learning_rate": 1.969429376971009e-05,
386
+ "loss": 1.3133,
387
+ "step": 265
388
+ },
389
+ {
390
+ "epoch": 0.17430600387346676,
391
+ "grad_norm": 1.7123588730228843,
392
+ "learning_rate": 1.9666029898924558e-05,
393
+ "loss": 1.3363,
394
+ "step": 270
395
+ },
396
+ {
397
+ "epoch": 0.17753389283408652,
398
+ "grad_norm": 1.729255435009809,
399
+ "learning_rate": 1.9636538708325642e-05,
400
+ "loss": 1.2907,
401
+ "step": 275
402
+ },
403
+ {
404
+ "epoch": 0.18076178179470626,
405
+ "grad_norm": 1.7319264824190221,
406
+ "learning_rate": 1.9605823942483034e-05,
407
+ "loss": 1.3096,
408
+ "step": 280
409
+ },
410
+ {
411
+ "epoch": 0.18398967075532602,
412
+ "grad_norm": 1.741144359063169,
413
+ "learning_rate": 1.9573889501326803e-05,
414
+ "loss": 1.3652,
415
+ "step": 285
416
+ },
417
+ {
418
+ "epoch": 0.18721755971594578,
419
+ "grad_norm": 1.7151312053405912,
420
+ "learning_rate": 1.9540739439652222e-05,
421
+ "loss": 1.3049,
422
+ "step": 290
423
+ },
424
+ {
425
+ "epoch": 0.19044544867656552,
426
+ "grad_norm": 1.683212569724672,
427
+ "learning_rate": 1.9506377966604923e-05,
428
+ "loss": 1.3282,
429
+ "step": 295
430
+ },
431
+ {
432
+ "epoch": 0.19367333763718528,
433
+ "grad_norm": 1.7808644734695298,
434
+ "learning_rate": 1.9470809445146447e-05,
435
+ "loss": 1.3231,
436
+ "step": 300
437
+ },
438
+ {
439
+ "epoch": 0.19690122659780504,
440
+ "grad_norm": 1.7655574417528708,
441
+ "learning_rate": 1.9434038391500266e-05,
442
+ "loss": 1.3086,
443
+ "step": 305
444
+ },
445
+ {
446
+ "epoch": 0.2001291155584248,
447
+ "grad_norm": 1.832682966934851,
448
+ "learning_rate": 1.9396069474578348e-05,
449
+ "loss": 1.2703,
450
+ "step": 310
451
+ },
452
+ {
453
+ "epoch": 0.20335700451904454,
454
+ "grad_norm": 1.7313343256591136,
455
+ "learning_rate": 1.935690751538834e-05,
456
+ "loss": 1.3656,
457
+ "step": 315
458
+ },
459
+ {
460
+ "epoch": 0.2065848934796643,
461
+ "grad_norm": 1.6875459508805728,
462
+ "learning_rate": 1.9316557486421423e-05,
463
+ "loss": 1.3134,
464
+ "step": 320
465
+ },
466
+ {
467
+ "epoch": 0.20981278244028406,
468
+ "grad_norm": 1.8211446122910608,
469
+ "learning_rate": 1.927502451102095e-05,
470
+ "loss": 1.285,
471
+ "step": 325
472
+ },
473
+ {
474
+ "epoch": 0.2130406714009038,
475
+ "grad_norm": 1.7175166450700674,
476
+ "learning_rate": 1.9232313862731915e-05,
477
+ "loss": 1.2818,
478
+ "step": 330
479
+ },
480
+ {
481
+ "epoch": 0.21626856036152356,
482
+ "grad_norm": 1.7073399712647515,
483
+ "learning_rate": 1.918843096463137e-05,
484
+ "loss": 1.2797,
485
+ "step": 335
486
+ },
487
+ {
488
+ "epoch": 0.21949644932214332,
489
+ "grad_norm": 1.6282483524863707,
490
+ "learning_rate": 1.914338138863983e-05,
491
+ "loss": 1.2858,
492
+ "step": 340
493
+ },
494
+ {
495
+ "epoch": 0.22272433828276308,
496
+ "grad_norm": 1.6109035926257675,
497
+ "learning_rate": 1.9097170854813797e-05,
498
+ "loss": 1.3073,
499
+ "step": 345
500
+ },
501
+ {
502
+ "epoch": 0.22595222724338282,
503
+ "grad_norm": 1.6959193091313398,
504
+ "learning_rate": 1.904980523061948e-05,
505
+ "loss": 1.2859,
506
+ "step": 350
507
+ },
508
+ {
509
+ "epoch": 0.22918011620400258,
510
+ "grad_norm": 1.672830416845886,
511
+ "learning_rate": 1.9001290530187768e-05,
512
+ "loss": 1.3208,
513
+ "step": 355
514
+ },
515
+ {
516
+ "epoch": 0.23240800516462234,
517
+ "grad_norm": 1.6811479547049457,
518
+ "learning_rate": 1.8951632913550625e-05,
519
+ "loss": 1.3022,
520
+ "step": 360
521
+ },
522
+ {
523
+ "epoch": 0.23563589412524208,
524
+ "grad_norm": 1.7021754751138019,
525
+ "learning_rate": 1.8900838685858913e-05,
526
+ "loss": 1.3064,
527
+ "step": 365
528
+ },
529
+ {
530
+ "epoch": 0.23886378308586184,
531
+ "grad_norm": 1.648769003483825,
532
+ "learning_rate": 1.884891429658182e-05,
533
+ "loss": 1.3075,
534
+ "step": 370
535
+ },
536
+ {
537
+ "epoch": 0.2420916720464816,
538
+ "grad_norm": 1.6177276058253132,
539
+ "learning_rate": 1.8795866338687968e-05,
540
+ "loss": 1.3385,
541
+ "step": 375
542
+ },
543
+ {
544
+ "epoch": 0.24531956100710137,
545
+ "grad_norm": 1.7513420547011154,
546
+ "learning_rate": 1.8741701547808272e-05,
547
+ "loss": 1.2579,
548
+ "step": 380
549
+ },
550
+ {
551
+ "epoch": 0.2485474499677211,
552
+ "grad_norm": 1.7655791699049692,
553
+ "learning_rate": 1.868642680138069e-05,
554
+ "loss": 1.3426,
555
+ "step": 385
556
+ },
557
+ {
558
+ "epoch": 0.25177533892834086,
559
+ "grad_norm": 1.707720917863569,
560
+ "learning_rate": 1.863004911777701e-05,
561
+ "loss": 1.2992,
562
+ "step": 390
563
+ },
564
+ {
565
+ "epoch": 0.2550032278889606,
566
+ "grad_norm": 1.6805474301888417,
567
+ "learning_rate": 1.8572575655411683e-05,
568
+ "loss": 1.2762,
569
+ "step": 395
570
+ },
571
+ {
572
+ "epoch": 0.2582311168495804,
573
+ "grad_norm": 1.8396750556049477,
574
+ "learning_rate": 1.851401371183291e-05,
575
+ "loss": 1.324,
576
+ "step": 400
577
+ },
578
+ {
579
+ "epoch": 0.26145900581020015,
580
+ "grad_norm": 1.608188327745593,
581
+ "learning_rate": 1.8454370722796052e-05,
582
+ "loss": 1.2912,
583
+ "step": 405
584
+ },
585
+ {
586
+ "epoch": 0.26468689477081986,
587
+ "grad_norm": 1.740643541629945,
588
+ "learning_rate": 1.8393654261319504e-05,
589
+ "loss": 1.3491,
590
+ "step": 410
591
+ },
592
+ {
593
+ "epoch": 0.2679147837314396,
594
+ "grad_norm": 1.6745914246557183,
595
+ "learning_rate": 1.8331872036723103e-05,
596
+ "loss": 1.2991,
597
+ "step": 415
598
+ },
599
+ {
600
+ "epoch": 0.2711426726920594,
601
+ "grad_norm": 1.7639108707152669,
602
+ "learning_rate": 1.8269031893649306e-05,
603
+ "loss": 1.2739,
604
+ "step": 420
605
+ },
606
+ {
607
+ "epoch": 0.27437056165267915,
608
+ "grad_norm": 1.6200810138499548,
609
+ "learning_rate": 1.8205141811067073e-05,
610
+ "loss": 1.3004,
611
+ "step": 425
612
+ },
613
+ {
614
+ "epoch": 0.2775984506132989,
615
+ "grad_norm": 1.5828067553615806,
616
+ "learning_rate": 1.814020990125881e-05,
617
+ "loss": 1.2567,
618
+ "step": 430
619
+ },
620
+ {
621
+ "epoch": 0.28082633957391867,
622
+ "grad_norm": 1.5814677474743155,
623
+ "learning_rate": 1.807424440879031e-05,
624
+ "loss": 1.3042,
625
+ "step": 435
626
+ },
627
+ {
628
+ "epoch": 0.28405422853453843,
629
+ "grad_norm": 1.6470517664415398,
630
+ "learning_rate": 1.8007253709463915e-05,
631
+ "loss": 1.2653,
632
+ "step": 440
633
+ },
634
+ {
635
+ "epoch": 0.28728211749515814,
636
+ "grad_norm": 1.6071009098035933,
637
+ "learning_rate": 1.7939246309255028e-05,
638
+ "loss": 1.2751,
639
+ "step": 445
640
+ },
641
+ {
642
+ "epoch": 0.2905100064557779,
643
+ "grad_norm": 1.8030936098227344,
644
+ "learning_rate": 1.78702308432321e-05,
645
+ "loss": 1.3339,
646
+ "step": 450
647
+ },
648
+ {
649
+ "epoch": 0.29373789541639767,
650
+ "grad_norm": 1.595362038534452,
651
+ "learning_rate": 1.7800216074460183e-05,
652
+ "loss": 1.3132,
653
+ "step": 455
654
+ },
655
+ {
656
+ "epoch": 0.2969657843770174,
657
+ "grad_norm": 1.684190508104507,
658
+ "learning_rate": 1.772921089288829e-05,
659
+ "loss": 1.291,
660
+ "step": 460
661
+ },
662
+ {
663
+ "epoch": 0.3001936733376372,
664
+ "grad_norm": 1.7750127106851745,
665
+ "learning_rate": 1.7657224314220604e-05,
666
+ "loss": 1.3048,
667
+ "step": 465
668
+ },
669
+ {
670
+ "epoch": 0.30342156229825695,
671
+ "grad_norm": 1.7084489526934932,
672
+ "learning_rate": 1.7584265478771737e-05,
673
+ "loss": 1.2713,
674
+ "step": 470
675
+ },
676
+ {
677
+ "epoch": 0.3066494512588767,
678
+ "grad_norm": 1.6912636819694478,
679
+ "learning_rate": 1.7510343650306155e-05,
680
+ "loss": 1.3093,
681
+ "step": 475
682
+ },
683
+ {
684
+ "epoch": 0.3098773402194964,
685
+ "grad_norm": 1.7094409772505903,
686
+ "learning_rate": 1.7435468214861933e-05,
687
+ "loss": 1.2405,
688
+ "step": 480
689
+ },
690
+ {
691
+ "epoch": 0.3131052291801162,
692
+ "grad_norm": 1.717986074001015,
693
+ "learning_rate": 1.7359648679559006e-05,
694
+ "loss": 1.2455,
695
+ "step": 485
696
+ },
697
+ {
698
+ "epoch": 0.31633311814073595,
699
+ "grad_norm": 1.6087377811266534,
700
+ "learning_rate": 1.7282894671391996e-05,
701
+ "loss": 1.3034,
702
+ "step": 490
703
+ },
704
+ {
705
+ "epoch": 0.3195610071013557,
706
+ "grad_norm": 1.582277729471747,
707
+ "learning_rate": 1.720521593600787e-05,
708
+ "loss": 1.329,
709
+ "step": 495
710
+ },
711
+ {
712
+ "epoch": 0.32278889606197547,
713
+ "grad_norm": 1.6529121399219846,
714
+ "learning_rate": 1.7126622336468514e-05,
715
+ "loss": 1.2535,
716
+ "step": 500
717
+ },
718
+ {
719
+ "epoch": 0.32601678502259523,
720
+ "grad_norm": 1.6248137205027384,
721
+ "learning_rate": 1.7047123851998374e-05,
722
+ "loss": 1.2898,
723
+ "step": 505
724
+ },
725
+ {
726
+ "epoch": 0.329244673983215,
727
+ "grad_norm": 1.6149646818990504,
728
+ "learning_rate": 1.6966730576717388e-05,
729
+ "loss": 1.2932,
730
+ "step": 510
731
+ },
732
+ {
733
+ "epoch": 0.33247256294383476,
734
+ "grad_norm": 1.5229634789864221,
735
+ "learning_rate": 1.6885452718359306e-05,
736
+ "loss": 1.2456,
737
+ "step": 515
738
+ },
739
+ {
740
+ "epoch": 0.33570045190445447,
741
+ "grad_norm": 1.5590252870902126,
742
+ "learning_rate": 1.6803300596975586e-05,
743
+ "loss": 1.2706,
744
+ "step": 520
745
+ },
746
+ {
747
+ "epoch": 0.33892834086507423,
748
+ "grad_norm": 1.7252113088576104,
749
+ "learning_rate": 1.6720284643625035e-05,
750
+ "loss": 1.2845,
751
+ "step": 525
752
+ },
753
+ {
754
+ "epoch": 0.342156229825694,
755
+ "grad_norm": 1.7238035921002546,
756
+ "learning_rate": 1.6636415399049347e-05,
757
+ "loss": 1.2395,
758
+ "step": 530
759
+ },
760
+ {
761
+ "epoch": 0.34538411878631375,
762
+ "grad_norm": 1.7671097644574092,
763
+ "learning_rate": 1.6551703512334716e-05,
764
+ "loss": 1.2962,
765
+ "step": 535
766
+ },
767
+ {
768
+ "epoch": 0.3486120077469335,
769
+ "grad_norm": 1.7029022963737455,
770
+ "learning_rate": 1.6466159739559712e-05,
771
+ "loss": 1.2807,
772
+ "step": 540
773
+ },
774
+ {
775
+ "epoch": 0.3518398967075533,
776
+ "grad_norm": 1.675502013934829,
777
+ "learning_rate": 1.6379794942429534e-05,
778
+ "loss": 1.2592,
779
+ "step": 545
780
+ },
781
+ {
782
+ "epoch": 0.35506778566817304,
783
+ "grad_norm": 1.7914748074744888,
784
+ "learning_rate": 1.629262008689689e-05,
785
+ "loss": 1.2902,
786
+ "step": 550
787
+ },
788
+ {
789
+ "epoch": 0.35829567462879275,
790
+ "grad_norm": 1.682038467478413,
791
+ "learning_rate": 1.62046462417696e-05,
792
+ "loss": 1.265,
793
+ "step": 555
794
+ },
795
+ {
796
+ "epoch": 0.3615235635894125,
797
+ "grad_norm": 1.636775201747519,
798
+ "learning_rate": 1.611588457730519e-05,
799
+ "loss": 1.2939,
800
+ "step": 560
801
+ },
802
+ {
803
+ "epoch": 0.3647514525500323,
804
+ "grad_norm": 1.6464312559612535,
805
+ "learning_rate": 1.6026346363792565e-05,
806
+ "loss": 1.2933,
807
+ "step": 565
808
+ },
809
+ {
810
+ "epoch": 0.36797934151065204,
811
+ "grad_norm": 1.6581603778474074,
812
+ "learning_rate": 1.5936042970120976e-05,
813
+ "loss": 1.2823,
814
+ "step": 570
815
+ },
816
+ {
817
+ "epoch": 0.3712072304712718,
818
+ "grad_norm": 1.6321585067614632,
819
+ "learning_rate": 1.5844985862336516e-05,
820
+ "loss": 1.2793,
821
+ "step": 575
822
+ },
823
+ {
824
+ "epoch": 0.37443511943189156,
825
+ "grad_norm": 1.5366946270427047,
826
+ "learning_rate": 1.5753186602186207e-05,
827
+ "loss": 1.257,
828
+ "step": 580
829
+ },
830
+ {
831
+ "epoch": 0.3776630083925113,
832
+ "grad_norm": 1.604449837575112,
833
+ "learning_rate": 1.5660656845650027e-05,
834
+ "loss": 1.2136,
835
+ "step": 585
836
+ },
837
+ {
838
+ "epoch": 0.38089089735313103,
839
+ "grad_norm": 1.6084609331330948,
840
+ "learning_rate": 1.556740834146087e-05,
841
+ "loss": 1.3093,
842
+ "step": 590
843
+ },
844
+ {
845
+ "epoch": 0.3841187863137508,
846
+ "grad_norm": 1.7866690447019067,
847
+ "learning_rate": 1.547345292961282e-05,
848
+ "loss": 1.2652,
849
+ "step": 595
850
+ },
851
+ {
852
+ "epoch": 0.38734667527437056,
853
+ "grad_norm": 1.6397669249338218,
854
+ "learning_rate": 1.5378802539857775e-05,
855
+ "loss": 1.3328,
856
+ "step": 600
857
+ },
858
+ {
859
+ "epoch": 0.3905745642349903,
860
+ "grad_norm": 1.5711856318785005,
861
+ "learning_rate": 1.52834691901907e-05,
862
+ "loss": 1.268,
863
+ "step": 605
864
+ },
865
+ {
866
+ "epoch": 0.3938024531956101,
867
+ "grad_norm": 1.7458250460751268,
868
+ "learning_rate": 1.5187464985323681e-05,
869
+ "loss": 1.314,
870
+ "step": 610
871
+ },
872
+ {
873
+ "epoch": 0.39703034215622984,
874
+ "grad_norm": 1.6297232609827654,
875
+ "learning_rate": 1.5090802115148956e-05,
876
+ "loss": 1.2891,
877
+ "step": 615
878
+ },
879
+ {
880
+ "epoch": 0.4002582311168496,
881
+ "grad_norm": 1.618673004010897,
882
+ "learning_rate": 1.4993492853191118e-05,
883
+ "loss": 1.2679,
884
+ "step": 620
885
+ },
886
+ {
887
+ "epoch": 0.4034861200774693,
888
+ "grad_norm": 1.5618198023723413,
889
+ "learning_rate": 1.4895549555048751e-05,
890
+ "loss": 1.2596,
891
+ "step": 625
892
+ },
893
+ {
894
+ "epoch": 0.4067140090380891,
895
+ "grad_norm": 1.6384560883294799,
896
+ "learning_rate": 1.4796984656825572e-05,
897
+ "loss": 1.2735,
898
+ "step": 630
899
+ },
900
+ {
901
+ "epoch": 0.40994189799870884,
902
+ "grad_norm": 1.6127858175302265,
903
+ "learning_rate": 1.4697810673551408e-05,
904
+ "loss": 1.3048,
905
+ "step": 635
906
+ },
907
+ {
908
+ "epoch": 0.4131697869593286,
909
+ "grad_norm": 1.648004507456454,
910
+ "learning_rate": 1.4598040197593128e-05,
911
+ "loss": 1.326,
912
+ "step": 640
913
+ },
914
+ {
915
+ "epoch": 0.41639767591994836,
916
+ "grad_norm": 1.5828368380983484,
917
+ "learning_rate": 1.4497685897055758e-05,
918
+ "loss": 1.2148,
919
+ "step": 645
920
+ },
921
+ {
922
+ "epoch": 0.4196255648805681,
923
+ "grad_norm": 1.5711258927882057,
924
+ "learning_rate": 1.4396760514173976e-05,
925
+ "loss": 1.2806,
926
+ "step": 650
927
+ },
928
+ {
929
+ "epoch": 0.4228534538411879,
930
+ "grad_norm": 1.7260560292823433,
931
+ "learning_rate": 1.4295276863694205e-05,
932
+ "loss": 1.2374,
933
+ "step": 655
934
+ },
935
+ {
936
+ "epoch": 0.4260813428018076,
937
+ "grad_norm": 1.5876415474050052,
938
+ "learning_rate": 1.4193247831247499e-05,
939
+ "loss": 1.3225,
940
+ "step": 660
941
+ },
942
+ {
943
+ "epoch": 0.42930923176242736,
944
+ "grad_norm": 1.6505847676867402,
945
+ "learning_rate": 1.4090686371713403e-05,
946
+ "loss": 1.2948,
947
+ "step": 665
948
+ },
949
+ {
950
+ "epoch": 0.4325371207230471,
951
+ "grad_norm": 1.526921850992316,
952
+ "learning_rate": 1.3987605507575053e-05,
953
+ "loss": 1.262,
954
+ "step": 670
955
+ },
956
+ {
957
+ "epoch": 0.4357650096836669,
958
+ "grad_norm": 1.6535400875687096,
959
+ "learning_rate": 1.3884018327265683e-05,
960
+ "loss": 1.3213,
961
+ "step": 675
962
+ },
963
+ {
964
+ "epoch": 0.43899289864428664,
965
+ "grad_norm": 1.5791268753862373,
966
+ "learning_rate": 1.3779937983506746e-05,
967
+ "loss": 1.2948,
968
+ "step": 680
969
+ },
970
+ {
971
+ "epoch": 0.4422207876049064,
972
+ "grad_norm": 1.6917933114261559,
973
+ "learning_rate": 1.3675377691637879e-05,
974
+ "loss": 1.3094,
975
+ "step": 685
976
+ },
977
+ {
978
+ "epoch": 0.44544867656552617,
979
+ "grad_norm": 1.7180616960296269,
980
+ "learning_rate": 1.3570350727938925e-05,
981
+ "loss": 1.2872,
982
+ "step": 690
983
+ },
984
+ {
985
+ "epoch": 0.4486765655261459,
986
+ "grad_norm": 1.6479976846946962,
987
+ "learning_rate": 1.3464870427944208e-05,
988
+ "loss": 1.2492,
989
+ "step": 695
990
+ },
991
+ {
992
+ "epoch": 0.45190445448676564,
993
+ "grad_norm": 1.6294418357249567,
994
+ "learning_rate": 1.3358950184749284e-05,
995
+ "loss": 1.2867,
996
+ "step": 700
997
+ },
998
+ {
999
+ "epoch": 0.4551323434473854,
1000
+ "grad_norm": 1.5878399440904527,
1001
+ "learning_rate": 1.3252603447310396e-05,
1002
+ "loss": 1.2246,
1003
+ "step": 705
1004
+ },
1005
+ {
1006
+ "epoch": 0.45836023240800516,
1007
+ "grad_norm": 1.679514731044212,
1008
+ "learning_rate": 1.3145843718736809e-05,
1009
+ "loss": 1.2988,
1010
+ "step": 710
1011
+ },
1012
+ {
1013
+ "epoch": 0.4615881213686249,
1014
+ "grad_norm": 1.7316167126803805,
1015
+ "learning_rate": 1.3038684554576308e-05,
1016
+ "loss": 1.2834,
1017
+ "step": 715
1018
+ },
1019
+ {
1020
+ "epoch": 0.4648160103292447,
1021
+ "grad_norm": 1.6144875544271897,
1022
+ "learning_rate": 1.2931139561094007e-05,
1023
+ "loss": 1.2357,
1024
+ "step": 720
1025
+ },
1026
+ {
1027
+ "epoch": 0.46804389928986445,
1028
+ "grad_norm": 1.6469776474272737,
1029
+ "learning_rate": 1.2823222393544717e-05,
1030
+ "loss": 1.2407,
1031
+ "step": 725
1032
+ },
1033
+ {
1034
+ "epoch": 0.47127178825048416,
1035
+ "grad_norm": 1.517601534581415,
1036
+ "learning_rate": 1.2714946754439117e-05,
1037
+ "loss": 1.2584,
1038
+ "step": 730
1039
+ },
1040
+ {
1041
+ "epoch": 0.4744996772111039,
1042
+ "grad_norm": 1.6683118073994527,
1043
+ "learning_rate": 1.2606326391803915e-05,
1044
+ "loss": 1.2449,
1045
+ "step": 735
1046
+ },
1047
+ {
1048
+ "epoch": 0.4777275661717237,
1049
+ "grad_norm": 1.5690047869024784,
1050
+ "learning_rate": 1.249737509743622e-05,
1051
+ "loss": 1.2716,
1052
+ "step": 740
1053
+ },
1054
+ {
1055
+ "epoch": 0.48095545513234345,
1056
+ "grad_norm": 1.7097192789221543,
1057
+ "learning_rate": 1.2388106705152361e-05,
1058
+ "loss": 1.2535,
1059
+ "step": 745
1060
+ },
1061
+ {
1062
+ "epoch": 0.4841833440929632,
1063
+ "grad_norm": 1.57392054276293,
1064
+ "learning_rate": 1.2278535089031377e-05,
1065
+ "loss": 1.2778,
1066
+ "step": 750
1067
+ },
1068
+ {
1069
+ "epoch": 0.48741123305358297,
1070
+ "grad_norm": 1.5836852821682212,
1071
+ "learning_rate": 1.2168674161653395e-05,
1072
+ "loss": 1.2386,
1073
+ "step": 755
1074
+ },
1075
+ {
1076
+ "epoch": 0.49063912201420273,
1077
+ "grad_norm": 1.714465868583922,
1078
+ "learning_rate": 1.2058537872333104e-05,
1079
+ "loss": 1.2193,
1080
+ "step": 760
1081
+ },
1082
+ {
1083
+ "epoch": 0.49386701097482244,
1084
+ "grad_norm": 1.4951779206694975,
1085
+ "learning_rate": 1.1948140205348592e-05,
1086
+ "loss": 1.2317,
1087
+ "step": 765
1088
+ },
1089
+ {
1090
+ "epoch": 0.4970948999354422,
1091
+ "grad_norm": 1.666029933988235,
1092
+ "learning_rate": 1.1837495178165706e-05,
1093
+ "loss": 1.2316,
1094
+ "step": 770
1095
+ },
1096
+ {
1097
+ "epoch": 0.500322788896062,
1098
+ "grad_norm": 1.5701604478724709,
1099
+ "learning_rate": 1.1726616839658237e-05,
1100
+ "loss": 1.259,
1101
+ "step": 775
1102
+ },
1103
+ {
1104
+ "epoch": 0.5035506778566817,
1105
+ "grad_norm": 1.6465072436129509,
1106
+ "learning_rate": 1.1615519268324101e-05,
1107
+ "loss": 1.1986,
1108
+ "step": 780
1109
+ },
1110
+ {
1111
+ "epoch": 0.5067785668173015,
1112
+ "grad_norm": 1.7270365055532542,
1113
+ "learning_rate": 1.1504216570497737e-05,
1114
+ "loss": 1.2149,
1115
+ "step": 785
1116
+ },
1117
+ {
1118
+ "epoch": 0.5100064557779213,
1119
+ "grad_norm": 1.595916061722449,
1120
+ "learning_rate": 1.1392722878559012e-05,
1121
+ "loss": 1.2763,
1122
+ "step": 790
1123
+ },
1124
+ {
1125
+ "epoch": 0.513234344738541,
1126
+ "grad_norm": 1.6329464108256435,
1127
+ "learning_rate": 1.1281052349138793e-05,
1128
+ "loss": 1.2441,
1129
+ "step": 795
1130
+ },
1131
+ {
1132
+ "epoch": 0.5164622336991608,
1133
+ "grad_norm": 1.6630997767795845,
1134
+ "learning_rate": 1.116921916132143e-05,
1135
+ "loss": 1.2315,
1136
+ "step": 800
1137
+ },
1138
+ {
1139
+ "epoch": 0.5196901226597805,
1140
+ "grad_norm": 1.6726472503428615,
1141
+ "learning_rate": 1.1057237514844423e-05,
1142
+ "loss": 1.289,
1143
+ "step": 805
1144
+ },
1145
+ {
1146
+ "epoch": 0.5229180116204003,
1147
+ "grad_norm": 1.5376847707418333,
1148
+ "learning_rate": 1.0945121628295437e-05,
1149
+ "loss": 1.2573,
1150
+ "step": 810
1151
+ },
1152
+ {
1153
+ "epoch": 0.5261459005810201,
1154
+ "grad_norm": 2.2493075416466146,
1155
+ "learning_rate": 1.0832885737306922e-05,
1156
+ "loss": 1.2879,
1157
+ "step": 815
1158
+ },
1159
+ {
1160
+ "epoch": 0.5293737895416397,
1161
+ "grad_norm": 1.7048259030945168,
1162
+ "learning_rate": 1.0720544092748599e-05,
1163
+ "loss": 1.2093,
1164
+ "step": 820
1165
+ },
1166
+ {
1167
+ "epoch": 0.5326016785022595,
1168
+ "grad_norm": 1.6052643185830913,
1169
+ "learning_rate": 1.0608110958917982e-05,
1170
+ "loss": 1.2787,
1171
+ "step": 825
1172
+ },
1173
+ {
1174
+ "epoch": 0.5358295674628792,
1175
+ "grad_norm": 1.5286978908553153,
1176
+ "learning_rate": 1.04956006117292e-05,
1177
+ "loss": 1.2354,
1178
+ "step": 830
1179
+ },
1180
+ {
1181
+ "epoch": 0.539057456423499,
1182
+ "grad_norm": 1.544930091476391,
1183
+ "learning_rate": 1.0383027336900356e-05,
1184
+ "loss": 1.2293,
1185
+ "step": 835
1186
+ },
1187
+ {
1188
+ "epoch": 0.5422853453841188,
1189
+ "grad_norm": 1.5385671678921857,
1190
+ "learning_rate": 1.0270405428139633e-05,
1191
+ "loss": 1.2994,
1192
+ "step": 840
1193
+ },
1194
+ {
1195
+ "epoch": 0.5455132343447385,
1196
+ "grad_norm": 1.5752108128614972,
1197
+ "learning_rate": 1.0157749185330384e-05,
1198
+ "loss": 1.2836,
1199
+ "step": 845
1200
+ },
1201
+ {
1202
+ "epoch": 0.5487411233053583,
1203
+ "grad_norm": 1.5927488211766814,
1204
+ "learning_rate": 1.0045072912715443e-05,
1205
+ "loss": 1.2659,
1206
+ "step": 850
1207
+ },
1208
+ {
1209
+ "epoch": 0.551969012265978,
1210
+ "grad_norm": 1.592292517508467,
1211
+ "learning_rate": 9.932390917080874e-06,
1212
+ "loss": 1.2447,
1213
+ "step": 855
1214
+ },
1215
+ {
1216
+ "epoch": 0.5551969012265978,
1217
+ "grad_norm": 1.641667371840128,
1218
+ "learning_rate": 9.81971750593941e-06,
1219
+ "loss": 1.2588,
1220
+ "step": 860
1221
+ },
1222
+ {
1223
+ "epoch": 0.5584247901872176,
1224
+ "grad_norm": 1.624109747232424,
1225
+ "learning_rate": 9.707066985713795e-06,
1226
+ "loss": 1.234,
1227
+ "step": 865
1228
+ },
1229
+ {
1230
+ "epoch": 0.5616526791478373,
1231
+ "grad_norm": 1.5276862360143446,
1232
+ "learning_rate": 9.594453659920241e-06,
1233
+ "loss": 1.2018,
1234
+ "step": 870
1235
+ },
1236
+ {
1237
+ "epoch": 0.5648805681084571,
1238
+ "grad_norm": 1.524996526315475,
1239
+ "learning_rate": 9.48189182735231e-06,
1240
+ "loss": 1.226,
1241
+ "step": 875
1242
+ },
1243
+ {
1244
+ "epoch": 0.5681084570690769,
1245
+ "grad_norm": 1.593943477253438,
1246
+ "learning_rate": 9.369395780265323e-06,
1247
+ "loss": 1.2354,
1248
+ "step": 880
1249
+ },
1250
+ {
1251
+ "epoch": 0.5713363460296966,
1252
+ "grad_norm": 1.6682262226100923,
1253
+ "learning_rate": 9.256979802561675e-06,
1254
+ "loss": 1.2574,
1255
+ "step": 885
1256
+ },
1257
+ {
1258
+ "epoch": 0.5745642349903163,
1259
+ "grad_norm": 1.6115401523560124,
1260
+ "learning_rate": 9.144658167977134e-06,
1261
+ "loss": 1.2554,
1262
+ "step": 890
1263
+ },
1264
+ {
1265
+ "epoch": 0.577792123950936,
1266
+ "grad_norm": 1.6664705944442975,
1267
+ "learning_rate": 9.032445138268493e-06,
1268
+ "loss": 1.2277,
1269
+ "step": 895
1270
+ },
1271
+ {
1272
+ "epoch": 0.5810200129115558,
1273
+ "grad_norm": 1.6141614694279862,
1274
+ "learning_rate": 8.920354961402723e-06,
1275
+ "loss": 1.2327,
1276
+ "step": 900
1277
+ },
1278
+ {
1279
+ "epoch": 0.5842479018721756,
1280
+ "grad_norm": 1.7041618253649367,
1281
+ "learning_rate": 8.808401869747858e-06,
1282
+ "loss": 1.2736,
1283
+ "step": 905
1284
+ },
1285
+ {
1286
+ "epoch": 0.5874757908327953,
1287
+ "grad_norm": 1.5532217130112593,
1288
+ "learning_rate": 8.696600078265876e-06,
1289
+ "loss": 1.2057,
1290
+ "step": 910
1291
+ },
1292
+ {
1293
+ "epoch": 0.5907036797934151,
1294
+ "grad_norm": 1.5645080700847085,
1295
+ "learning_rate": 8.584963782707812e-06,
1296
+ "loss": 1.2062,
1297
+ "step": 915
1298
+ },
1299
+ {
1300
+ "epoch": 0.5939315687540349,
1301
+ "grad_norm": 1.539207505181734,
1302
+ "learning_rate": 8.473507157811254e-06,
1303
+ "loss": 1.2006,
1304
+ "step": 920
1305
+ },
1306
+ {
1307
+ "epoch": 0.5971594577146546,
1308
+ "grad_norm": 1.6045881124979031,
1309
+ "learning_rate": 8.362244355500583e-06,
1310
+ "loss": 1.2519,
1311
+ "step": 925
1312
+ },
1313
+ {
1314
+ "epoch": 0.6003873466752744,
1315
+ "grad_norm": 1.5717390602748484,
1316
+ "learning_rate": 8.251189503090023e-06,
1317
+ "loss": 1.2507,
1318
+ "step": 930
1319
+ },
1320
+ {
1321
+ "epoch": 0.6036152356358941,
1322
+ "grad_norm": 1.6041786748836233,
1323
+ "learning_rate": 8.140356701489892e-06,
1324
+ "loss": 1.1995,
1325
+ "step": 935
1326
+ },
1327
+ {
1328
+ "epoch": 0.6068431245965139,
1329
+ "grad_norm": 1.544159227072635,
1330
+ "learning_rate": 8.029760023416168e-06,
1331
+ "loss": 1.2159,
1332
+ "step": 940
1333
+ },
1334
+ {
1335
+ "epoch": 0.6100710135571337,
1336
+ "grad_norm": 1.5674929554867256,
1337
+ "learning_rate": 7.919413511603636e-06,
1338
+ "loss": 1.2855,
1339
+ "step": 945
1340
+ },
1341
+ {
1342
+ "epoch": 0.6132989025177534,
1343
+ "grad_norm": 1.6041034106028236,
1344
+ "learning_rate": 7.809331177022847e-06,
1345
+ "loss": 1.2285,
1346
+ "step": 950
1347
+ },
1348
+ {
1349
+ "epoch": 0.6165267914783732,
1350
+ "grad_norm": 1.652846244359187,
1351
+ "learning_rate": 7.699526997101121e-06,
1352
+ "loss": 1.249,
1353
+ "step": 955
1354
+ },
1355
+ {
1356
+ "epoch": 0.6197546804389928,
1357
+ "grad_norm": 1.6651647494538366,
1358
+ "learning_rate": 7.590014913947778e-06,
1359
+ "loss": 1.2591,
1360
+ "step": 960
1361
+ },
1362
+ {
1363
+ "epoch": 0.6229825693996126,
1364
+ "grad_norm": 1.590193753660995,
1365
+ "learning_rate": 7.4808088325839e-06,
1366
+ "loss": 1.2256,
1367
+ "step": 965
1368
+ },
1369
+ {
1370
+ "epoch": 0.6262104583602324,
1371
+ "grad_norm": 1.6722268348838438,
1372
+ "learning_rate": 7.3719226191767526e-06,
1373
+ "loss": 1.2612,
1374
+ "step": 970
1375
+ },
1376
+ {
1377
+ "epoch": 0.6294383473208521,
1378
+ "grad_norm": 1.563385218810824,
1379
+ "learning_rate": 7.263370099279173e-06,
1380
+ "loss": 1.2219,
1381
+ "step": 975
1382
+ },
1383
+ {
1384
+ "epoch": 0.6326662362814719,
1385
+ "grad_norm": 1.538051823490198,
1386
+ "learning_rate": 7.155165056074111e-06,
1387
+ "loss": 1.2142,
1388
+ "step": 980
1389
+ },
1390
+ {
1391
+ "epoch": 0.6358941252420917,
1392
+ "grad_norm": 1.6083527642442943,
1393
+ "learning_rate": 7.0473212286245316e-06,
1394
+ "loss": 1.2812,
1395
+ "step": 985
1396
+ },
1397
+ {
1398
+ "epoch": 0.6391220142027114,
1399
+ "grad_norm": 1.6678078232565665,
1400
+ "learning_rate": 6.9398523101289475e-06,
1401
+ "loss": 1.2625,
1402
+ "step": 990
1403
+ },
1404
+ {
1405
+ "epoch": 0.6423499031633312,
1406
+ "grad_norm": 1.540993663270435,
1407
+ "learning_rate": 6.832771946182741e-06,
1408
+ "loss": 1.2522,
1409
+ "step": 995
1410
+ },
1411
+ {
1412
+ "epoch": 0.6455777921239509,
1413
+ "grad_norm": 1.5968723128811868,
1414
+ "learning_rate": 6.72609373304556e-06,
1415
+ "loss": 1.1989,
1416
+ "step": 1000
1417
+ },
1418
+ {
1419
+ "epoch": 0.6488056810845707,
1420
+ "grad_norm": 1.588868645829306,
1421
+ "learning_rate": 6.619831215914974e-06,
1422
+ "loss": 1.2157,
1423
+ "step": 1005
1424
+ },
1425
+ {
1426
+ "epoch": 0.6520335700451905,
1427
+ "grad_norm": 1.6524103231111353,
1428
+ "learning_rate": 6.5139978872065865e-06,
1429
+ "loss": 1.2082,
1430
+ "step": 1010
1431
+ },
1432
+ {
1433
+ "epoch": 0.6552614590058102,
1434
+ "grad_norm": 1.6245516939163356,
1435
+ "learning_rate": 6.408607184840897e-06,
1436
+ "loss": 1.2593,
1437
+ "step": 1015
1438
+ },
1439
+ {
1440
+ "epoch": 0.65848934796643,
1441
+ "grad_norm": 1.5570333034084014,
1442
+ "learning_rate": 6.303672490537022e-06,
1443
+ "loss": 1.2099,
1444
+ "step": 1020
1445
+ },
1446
+ {
1447
+ "epoch": 0.6617172369270498,
1448
+ "grad_norm": 1.5832778345200962,
1449
+ "learning_rate": 6.199207128113614e-06,
1450
+ "loss": 1.2631,
1451
+ "step": 1025
1452
+ },
1453
+ {
1454
+ "epoch": 0.6649451258876695,
1455
+ "grad_norm": 1.5815865015835413,
1456
+ "learning_rate": 6.095224361797087e-06,
1457
+ "loss": 1.2945,
1458
+ "step": 1030
1459
+ },
1460
+ {
1461
+ "epoch": 0.6681730148482892,
1462
+ "grad_norm": 1.6366177470747854,
1463
+ "learning_rate": 5.991737394537434e-06,
1464
+ "loss": 1.2463,
1465
+ "step": 1035
1466
+ },
1467
+ {
1468
+ "epoch": 0.6714009038089089,
1469
+ "grad_norm": 1.6926432200133767,
1470
+ "learning_rate": 5.888759366331798e-06,
1471
+ "loss": 1.2356,
1472
+ "step": 1040
1473
+ },
1474
+ {
1475
+ "epoch": 0.6746287927695287,
1476
+ "grad_norm": 1.62278769384498,
1477
+ "learning_rate": 5.786303352556088e-06,
1478
+ "loss": 1.1839,
1479
+ "step": 1045
1480
+ },
1481
+ {
1482
+ "epoch": 0.6778566817301485,
1483
+ "grad_norm": 1.6754788350541943,
1484
+ "learning_rate": 5.684382362304723e-06,
1485
+ "loss": 1.2289,
1486
+ "step": 1050
1487
+ },
1488
+ {
1489
+ "epoch": 0.6810845706907682,
1490
+ "grad_norm": 1.6388911381430855,
1491
+ "learning_rate": 5.583009336738874e-06,
1492
+ "loss": 1.2548,
1493
+ "step": 1055
1494
+ },
1495
+ {
1496
+ "epoch": 0.684312459651388,
1497
+ "grad_norm": 1.6495374955760909,
1498
+ "learning_rate": 5.48219714744326e-06,
1499
+ "loss": 1.2328,
1500
+ "step": 1060
1501
+ },
1502
+ {
1503
+ "epoch": 0.6875403486120077,
1504
+ "grad_norm": 1.6872246491519647,
1505
+ "learning_rate": 5.381958594791843e-06,
1506
+ "loss": 1.2096,
1507
+ "step": 1065
1508
+ },
1509
+ {
1510
+ "epoch": 0.6907682375726275,
1511
+ "grad_norm": 1.5950519328952013,
1512
+ "learning_rate": 5.282306406322502e-06,
1513
+ "loss": 1.2502,
1514
+ "step": 1070
1515
+ },
1516
+ {
1517
+ "epoch": 0.6939961265332473,
1518
+ "grad_norm": 1.6677034871070087,
1519
+ "learning_rate": 5.1832532351210095e-06,
1520
+ "loss": 1.2355,
1521
+ "step": 1075
1522
+ },
1523
+ {
1524
+ "epoch": 0.697224015493867,
1525
+ "grad_norm": 1.6586625169970663,
1526
+ "learning_rate": 5.084811658214421e-06,
1527
+ "loss": 1.2264,
1528
+ "step": 1080
1529
+ },
1530
+ {
1531
+ "epoch": 0.7004519044544868,
1532
+ "grad_norm": 1.6873770773693175,
1533
+ "learning_rate": 4.986994174974155e-06,
1534
+ "loss": 1.2508,
1535
+ "step": 1085
1536
+ },
1537
+ {
1538
+ "epoch": 0.7036797934151066,
1539
+ "grad_norm": 1.5894542742895856,
1540
+ "learning_rate": 4.889813205528895e-06,
1541
+ "loss": 1.1727,
1542
+ "step": 1090
1543
+ },
1544
+ {
1545
+ "epoch": 0.7069076823757263,
1546
+ "grad_norm": 1.6562699720711116,
1547
+ "learning_rate": 4.793281089187603e-06,
1548
+ "loss": 1.1841,
1549
+ "step": 1095
1550
+ },
1551
+ {
1552
+ "epoch": 0.7101355713363461,
1553
+ "grad_norm": 1.5766425378140871,
1554
+ "learning_rate": 4.697410082872741e-06,
1555
+ "loss": 1.2142,
1556
+ "step": 1100
1557
+ },
1558
+ {
1559
+ "epoch": 0.7133634602969657,
1560
+ "grad_norm": 1.6122901002424155,
1561
+ "learning_rate": 4.602212359563988e-06,
1562
+ "loss": 1.2304,
1563
+ "step": 1105
1564
+ },
1565
+ {
1566
+ "epoch": 0.7165913492575855,
1567
+ "grad_norm": 1.8055415704300306,
1568
+ "learning_rate": 4.50770000675262e-06,
1569
+ "loss": 1.2243,
1570
+ "step": 1110
1571
+ },
1572
+ {
1573
+ "epoch": 0.7198192382182053,
1574
+ "grad_norm": 1.705388366214554,
1575
+ "learning_rate": 4.413885024906705e-06,
1576
+ "loss": 1.2252,
1577
+ "step": 1115
1578
+ },
1579
+ {
1580
+ "epoch": 0.723047127178825,
1581
+ "grad_norm": 1.690011241853718,
1582
+ "learning_rate": 4.320779325947402e-06,
1583
+ "loss": 1.1987,
1584
+ "step": 1120
1585
+ },
1586
+ {
1587
+ "epoch": 0.7262750161394448,
1588
+ "grad_norm": 1.701641933857813,
1589
+ "learning_rate": 4.228394731736451e-06,
1590
+ "loss": 1.257,
1591
+ "step": 1125
1592
+ },
1593
+ {
1594
+ "epoch": 0.7295029051000645,
1595
+ "grad_norm": 1.523477374915637,
1596
+ "learning_rate": 4.136742972575132e-06,
1597
+ "loss": 1.2409,
1598
+ "step": 1130
1599
+ },
1600
+ {
1601
+ "epoch": 0.7327307940606843,
1602
+ "grad_norm": 1.6070065262090218,
1603
+ "learning_rate": 4.045835685714848e-06,
1604
+ "loss": 1.1725,
1605
+ "step": 1135
1606
+ },
1607
+ {
1608
+ "epoch": 0.7359586830213041,
1609
+ "grad_norm": 1.6081728290175998,
1610
+ "learning_rate": 3.955684413879499e-06,
1611
+ "loss": 1.22,
1612
+ "step": 1140
1613
+ },
1614
+ {
1615
+ "epoch": 0.7391865719819238,
1616
+ "grad_norm": 1.582549702759197,
1617
+ "learning_rate": 3.866300603799876e-06,
1618
+ "loss": 1.2019,
1619
+ "step": 1145
1620
+ },
1621
+ {
1622
+ "epoch": 0.7424144609425436,
1623
+ "grad_norm": 1.7141546881146241,
1624
+ "learning_rate": 3.77769560476026e-06,
1625
+ "loss": 1.2075,
1626
+ "step": 1150
1627
+ },
1628
+ {
1629
+ "epoch": 0.7456423499031634,
1630
+ "grad_norm": 1.6644378155563186,
1631
+ "learning_rate": 3.689880667157344e-06,
1632
+ "loss": 1.2735,
1633
+ "step": 1155
1634
+ },
1635
+ {
1636
+ "epoch": 0.7488702388637831,
1637
+ "grad_norm": 1.7183053243234099,
1638
+ "learning_rate": 3.602866941071773e-06,
1639
+ "loss": 1.1943,
1640
+ "step": 1160
1641
+ },
1642
+ {
1643
+ "epoch": 0.7520981278244029,
1644
+ "grad_norm": 1.5926230650949367,
1645
+ "learning_rate": 3.516665474852369e-06,
1646
+ "loss": 1.1967,
1647
+ "step": 1165
1648
+ },
1649
+ {
1650
+ "epoch": 0.7553260167850226,
1651
+ "grad_norm": 1.6234706555802916,
1652
+ "learning_rate": 3.431287213713299e-06,
1653
+ "loss": 1.2206,
1654
+ "step": 1170
1655
+ },
1656
+ {
1657
+ "epoch": 0.7585539057456423,
1658
+ "grad_norm": 1.7812533274829592,
1659
+ "learning_rate": 3.3467429983443477e-06,
1660
+ "loss": 1.1672,
1661
+ "step": 1175
1662
+ },
1663
+ {
1664
+ "epoch": 0.7617817947062621,
1665
+ "grad_norm": 1.6294013276039931,
1666
+ "learning_rate": 3.2630435635344283e-06,
1667
+ "loss": 1.1823,
1668
+ "step": 1180
1669
+ },
1670
+ {
1671
+ "epoch": 0.7650096836668818,
1672
+ "grad_norm": 1.7287640987665838,
1673
+ "learning_rate": 3.180199536808576e-06,
1674
+ "loss": 1.1738,
1675
+ "step": 1185
1676
+ },
1677
+ {
1678
+ "epoch": 0.7682375726275016,
1679
+ "grad_norm": 1.600269379657349,
1680
+ "learning_rate": 3.0982214370785335e-06,
1681
+ "loss": 1.1996,
1682
+ "step": 1190
1683
+ },
1684
+ {
1685
+ "epoch": 0.7714654615881213,
1686
+ "grad_norm": 1.5636282826440273,
1687
+ "learning_rate": 3.0171196733071405e-06,
1688
+ "loss": 1.2442,
1689
+ "step": 1195
1690
+ },
1691
+ {
1692
+ "epoch": 0.7746933505487411,
1693
+ "grad_norm": 1.7137012337541018,
1694
+ "learning_rate": 2.936904543186695e-06,
1695
+ "loss": 1.2059,
1696
+ "step": 1200
1697
+ },
1698
+ {
1699
+ "epoch": 0.7779212395093609,
1700
+ "grad_norm": 1.6511272127287338,
1701
+ "learning_rate": 2.8575862318314087e-06,
1702
+ "loss": 1.1886,
1703
+ "step": 1205
1704
+ },
1705
+ {
1706
+ "epoch": 0.7811491284699806,
1707
+ "grad_norm": 1.6282736399632571,
1708
+ "learning_rate": 2.7791748104841876e-06,
1709
+ "loss": 1.199,
1710
+ "step": 1210
1711
+ },
1712
+ {
1713
+ "epoch": 0.7843770174306004,
1714
+ "grad_norm": 1.6356472661837154,
1715
+ "learning_rate": 2.7016802352378755e-06,
1716
+ "loss": 1.1759,
1717
+ "step": 1215
1718
+ },
1719
+ {
1720
+ "epoch": 0.7876049063912202,
1721
+ "grad_norm": 1.6120024552770273,
1722
+ "learning_rate": 2.6251123457710726e-06,
1723
+ "loss": 1.1921,
1724
+ "step": 1220
1725
+ },
1726
+ {
1727
+ "epoch": 0.7908327953518399,
1728
+ "grad_norm": 1.5949781516189967,
1729
+ "learning_rate": 2.5494808640988e-06,
1730
+ "loss": 1.2128,
1731
+ "step": 1225
1732
+ },
1733
+ {
1734
+ "epoch": 0.7940606843124597,
1735
+ "grad_norm": 1.6494400626843206,
1736
+ "learning_rate": 2.4747953933380463e-06,
1737
+ "loss": 1.2222,
1738
+ "step": 1230
1739
+ },
1740
+ {
1741
+ "epoch": 0.7972885732730794,
1742
+ "grad_norm": 1.7679182098039068,
1743
+ "learning_rate": 2.4010654164884527e-06,
1744
+ "loss": 1.2308,
1745
+ "step": 1235
1746
+ },
1747
+ {
1748
+ "epoch": 0.8005164622336992,
1749
+ "grad_norm": 1.567858838790038,
1750
+ "learning_rate": 2.328300295228221e-06,
1751
+ "loss": 1.2143,
1752
+ "step": 1240
1753
+ },
1754
+ {
1755
+ "epoch": 0.8037443511943189,
1756
+ "grad_norm": 1.5218279025659718,
1757
+ "learning_rate": 2.2565092687254486e-06,
1758
+ "loss": 1.2266,
1759
+ "step": 1245
1760
+ },
1761
+ {
1762
+ "epoch": 0.8069722401549386,
1763
+ "grad_norm": 1.591250607928255,
1764
+ "learning_rate": 2.185701452464997e-06,
1765
+ "loss": 1.1945,
1766
+ "step": 1250
1767
+ },
1768
+ {
1769
+ "epoch": 0.8102001291155584,
1770
+ "grad_norm": 1.5033575415964024,
1771
+ "learning_rate": 2.1158858370910905e-06,
1772
+ "loss": 1.1877,
1773
+ "step": 1255
1774
+ },
1775
+ {
1776
+ "epoch": 0.8134280180761781,
1777
+ "grad_norm": 1.556794336082307,
1778
+ "learning_rate": 2.047071287265735e-06,
1779
+ "loss": 1.1718,
1780
+ "step": 1260
1781
+ },
1782
+ {
1783
+ "epoch": 0.8166559070367979,
1784
+ "grad_norm": 1.60369367023606,
1785
+ "learning_rate": 1.9792665405431654e-06,
1786
+ "loss": 1.1449,
1787
+ "step": 1265
1788
+ },
1789
+ {
1790
+ "epoch": 0.8198837959974177,
1791
+ "grad_norm": 1.6751904466505534,
1792
+ "learning_rate": 1.9124802062604066e-06,
1793
+ "loss": 1.2021,
1794
+ "step": 1270
1795
+ },
1796
+ {
1797
+ "epoch": 0.8231116849580374,
1798
+ "grad_norm": 1.711192714943588,
1799
+ "learning_rate": 1.8467207644441243e-06,
1800
+ "loss": 1.2269,
1801
+ "step": 1275
1802
+ },
1803
+ {
1804
+ "epoch": 0.8263395739186572,
1805
+ "grad_norm": 1.772092654829715,
1806
+ "learning_rate": 1.7819965647339065e-06,
1807
+ "loss": 1.2432,
1808
+ "step": 1280
1809
+ },
1810
+ {
1811
+ "epoch": 0.829567462879277,
1812
+ "grad_norm": 1.676701962809608,
1813
+ "learning_rate": 1.718315825322071e-06,
1814
+ "loss": 1.2017,
1815
+ "step": 1285
1816
+ },
1817
+ {
1818
+ "epoch": 0.8327953518398967,
1819
+ "grad_norm": 1.5761976498566383,
1820
+ "learning_rate": 1.6556866319102027e-06,
1821
+ "loss": 1.2506,
1822
+ "step": 1290
1823
+ },
1824
+ {
1825
+ "epoch": 0.8360232408005165,
1826
+ "grad_norm": 1.6807189675833636,
1827
+ "learning_rate": 1.5941169366824705e-06,
1828
+ "loss": 1.2133,
1829
+ "step": 1295
1830
+ },
1831
+ {
1832
+ "epoch": 0.8392511297611362,
1833
+ "grad_norm": 1.646503425758142,
1834
+ "learning_rate": 1.5336145572959283e-06,
1835
+ "loss": 1.1936,
1836
+ "step": 1300
1837
+ },
1838
+ {
1839
+ "epoch": 0.842479018721756,
1840
+ "grad_norm": 1.7026203537198492,
1841
+ "learning_rate": 1.4741871758878978e-06,
1842
+ "loss": 1.2032,
1843
+ "step": 1305
1844
+ },
1845
+ {
1846
+ "epoch": 0.8457069076823758,
1847
+ "grad_norm": 1.6346183464452626,
1848
+ "learning_rate": 1.4158423381005294e-06,
1849
+ "loss": 1.2116,
1850
+ "step": 1310
1851
+ },
1852
+ {
1853
+ "epoch": 0.8489347966429954,
1854
+ "grad_norm": 1.7297662015967483,
1855
+ "learning_rate": 1.3585874521227226e-06,
1856
+ "loss": 1.1539,
1857
+ "step": 1315
1858
+ },
1859
+ {
1860
+ "epoch": 0.8521626856036152,
1861
+ "grad_norm": 1.5738539691074456,
1862
+ "learning_rate": 1.3024297877494973e-06,
1863
+ "loss": 1.2341,
1864
+ "step": 1320
1865
+ },
1866
+ {
1867
+ "epoch": 0.855390574564235,
1868
+ "grad_norm": 1.665243874982246,
1869
+ "learning_rate": 1.2473764754589123e-06,
1870
+ "loss": 1.199,
1871
+ "step": 1325
1872
+ },
1873
+ {
1874
+ "epoch": 0.8586184635248547,
1875
+ "grad_norm": 1.6694340869186672,
1876
+ "learning_rate": 1.193434505506711e-06,
1877
+ "loss": 1.1952,
1878
+ "step": 1330
1879
+ },
1880
+ {
1881
+ "epoch": 0.8618463524854745,
1882
+ "grad_norm": 1.5537154219219604,
1883
+ "learning_rate": 1.1406107270387323e-06,
1884
+ "loss": 1.1915,
1885
+ "step": 1335
1886
+ },
1887
+ {
1888
+ "epoch": 0.8650742414460942,
1889
+ "grad_norm": 1.725368998865333,
1890
+ "learning_rate": 1.0889118472212702e-06,
1891
+ "loss": 1.2092,
1892
+ "step": 1340
1893
+ },
1894
+ {
1895
+ "epoch": 0.868302130406714,
1896
+ "grad_norm": 1.5428415313575736,
1897
+ "learning_rate": 1.0383444303894453e-06,
1898
+ "loss": 1.1772,
1899
+ "step": 1345
1900
+ },
1901
+ {
1902
+ "epoch": 0.8715300193673338,
1903
+ "grad_norm": 1.5815501053581127,
1904
+ "learning_rate": 9.889148972137097e-07,
1905
+ "loss": 1.2139,
1906
+ "step": 1350
1907
+ },
1908
+ {
1909
+ "epoch": 0.8747579083279535,
1910
+ "grad_norm": 1.7341001178375826,
1911
+ "learning_rate": 9.406295238846108e-07,
1912
+ "loss": 1.1595,
1913
+ "step": 1355
1914
+ },
1915
+ {
1916
+ "epoch": 0.8779857972885733,
1917
+ "grad_norm": 1.4627233349193656,
1918
+ "learning_rate": 8.934944413158708e-07,
1919
+ "loss": 1.1948,
1920
+ "step": 1360
1921
+ },
1922
+ {
1923
+ "epoch": 0.881213686249193,
1924
+ "grad_norm": 1.6770957968166575,
1925
+ "learning_rate": 8.475156343659408e-07,
1926
+ "loss": 1.168,
1927
+ "step": 1365
1928
+ },
1929
+ {
1930
+ "epoch": 0.8844415752098128,
1931
+ "grad_norm": 1.7864490716701726,
1932
+ "learning_rate": 8.026989410780917e-07,
1933
+ "loss": 1.1725,
1934
+ "step": 1370
1935
+ },
1936
+ {
1937
+ "epoch": 0.8876694641704326,
1938
+ "grad_norm": 1.6586604033600898,
1939
+ "learning_rate": 7.590500519391309e-07,
1940
+ "loss": 1.2569,
1941
+ "step": 1375
1942
+ },
1943
+ {
1944
+ "epoch": 0.8908973531310523,
1945
+ "grad_norm": 1.5709797013859719,
1946
+ "learning_rate": 7.165745091568743e-07,
1947
+ "loss": 1.208,
1948
+ "step": 1380
1949
+ },
1950
+ {
1951
+ "epoch": 0.8941252420916721,
1952
+ "grad_norm": 1.6100593510027281,
1953
+ "learning_rate": 6.752777059564431e-07,
1954
+ "loss": 1.173,
1955
+ "step": 1385
1956
+ },
1957
+ {
1958
+ "epoch": 0.8973531310522918,
1959
+ "grad_norm": 1.5537220228932802,
1960
+ "learning_rate": 6.351648858954618e-07,
1961
+ "loss": 1.2228,
1962
+ "step": 1390
1963
+ },
1964
+ {
1965
+ "epoch": 0.9005810200129115,
1966
+ "grad_norm": 1.6474724452037988,
1967
+ "learning_rate": 5.962411421982805e-07,
1968
+ "loss": 1.2409,
1969
+ "step": 1395
1970
+ },
1971
+ {
1972
+ "epoch": 0.9038089089735313,
1973
+ "grad_norm": 1.79701983524165,
1974
+ "learning_rate": 5.585114171092665e-07,
1975
+ "loss": 1.2447,
1976
+ "step": 1400
1977
+ },
1978
+ {
1979
+ "epoch": 0.907036797934151,
1980
+ "grad_norm": 1.6288904196875291,
1981
+ "learning_rate": 5.219805012652867e-07,
1982
+ "loss": 1.2474,
1983
+ "step": 1405
1984
+ },
1985
+ {
1986
+ "epoch": 0.9102646868947708,
1987
+ "grad_norm": 1.6672222213895183,
1988
+ "learning_rate": 4.866530330874153e-07,
1989
+ "loss": 1.2176,
1990
+ "step": 1410
1991
+ },
1992
+ {
1993
+ "epoch": 0.9134925758553906,
1994
+ "grad_norm": 1.646804223428847,
1995
+ "learning_rate": 4.5253349819199375e-07,
1996
+ "loss": 1.1707,
1997
+ "step": 1415
1998
+ },
1999
+ {
2000
+ "epoch": 0.9167204648160103,
2001
+ "grad_norm": 1.604950832825935,
2002
+ "learning_rate": 4.1962622882107174e-07,
2003
+ "loss": 1.2503,
2004
+ "step": 1420
2005
+ },
2006
+ {
2007
+ "epoch": 0.9199483537766301,
2008
+ "grad_norm": 1.5500232834639758,
2009
+ "learning_rate": 3.8793540329233994e-07,
2010
+ "loss": 1.202,
2011
+ "step": 1425
2012
+ },
2013
+ {
2014
+ "epoch": 0.9231762427372499,
2015
+ "grad_norm": 1.706686354946513,
2016
+ "learning_rate": 3.574650454685902e-07,
2017
+ "loss": 1.1805,
2018
+ "step": 1430
2019
+ },
2020
+ {
2021
+ "epoch": 0.9264041316978696,
2022
+ "grad_norm": 1.7851736282340886,
2023
+ "learning_rate": 3.282190242468031e-07,
2024
+ "loss": 1.209,
2025
+ "step": 1435
2026
+ },
2027
+ {
2028
+ "epoch": 0.9296320206584894,
2029
+ "grad_norm": 1.6284062775954382,
2030
+ "learning_rate": 3.0020105306689973e-07,
2031
+ "loss": 1.185,
2032
+ "step": 1440
2033
+ },
2034
+ {
2035
+ "epoch": 0.9328599096191091,
2036
+ "grad_norm": 1.5959442808129058,
2037
+ "learning_rate": 2.7341468944023677e-07,
2038
+ "loss": 1.1799,
2039
+ "step": 1445
2040
+ },
2041
+ {
2042
+ "epoch": 0.9360877985797289,
2043
+ "grad_norm": 1.6373373190700566,
2044
+ "learning_rate": 2.4786333449790753e-07,
2045
+ "loss": 1.2108,
2046
+ "step": 1450
2047
+ },
2048
+ {
2049
+ "epoch": 0.9393156875403487,
2050
+ "grad_norm": 1.5974098530281817,
2051
+ "learning_rate": 2.235502325588823e-07,
2052
+ "loss": 1.2309,
2053
+ "step": 1455
2054
+ },
2055
+ {
2056
+ "epoch": 0.9425435765009683,
2057
+ "grad_norm": 1.6001479697293755,
2058
+ "learning_rate": 2.0047847071807402e-07,
2059
+ "loss": 1.2221,
2060
+ "step": 1460
2061
+ },
2062
+ {
2063
+ "epoch": 0.9457714654615881,
2064
+ "grad_norm": 1.6270735112550445,
2065
+ "learning_rate": 1.786509784543633e-07,
2066
+ "loss": 1.2538,
2067
+ "step": 1465
2068
+ },
2069
+ {
2070
+ "epoch": 0.9489993544222078,
2071
+ "grad_norm": 1.5793008113099312,
2072
+ "learning_rate": 1.5807052725863025e-07,
2073
+ "loss": 1.1756,
2074
+ "step": 1470
2075
+ },
2076
+ {
2077
+ "epoch": 0.9522272433828276,
2078
+ "grad_norm": 1.6398931143884907,
2079
+ "learning_rate": 1.3873973028185827e-07,
2080
+ "loss": 1.1875,
2081
+ "step": 1475
2082
+ },
2083
+ {
2084
+ "epoch": 0.9554551323434474,
2085
+ "grad_norm": 1.6178609914467408,
2086
+ "learning_rate": 1.206610420033305e-07,
2087
+ "loss": 1.189,
2088
+ "step": 1480
2089
+ },
2090
+ {
2091
+ "epoch": 0.9586830213040671,
2092
+ "grad_norm": 1.697620840896172,
2093
+ "learning_rate": 1.038367579189803e-07,
2094
+ "loss": 1.1788,
2095
+ "step": 1485
2096
+ },
2097
+ {
2098
+ "epoch": 0.9619109102646869,
2099
+ "grad_norm": 1.7239724713198632,
2100
+ "learning_rate": 8.82690142499254e-08,
2101
+ "loss": 1.2185,
2102
+ "step": 1490
2103
+ },
2104
+ {
2105
+ "epoch": 0.9651387992253067,
2106
+ "grad_norm": 1.5330470110994838,
2107
+ "learning_rate": 7.395978767122946e-08,
2108
+ "loss": 1.1958,
2109
+ "step": 1495
2110
+ },
2111
+ {
2112
+ "epoch": 0.9683666881859264,
2113
+ "grad_norm": 1.7081829292862492,
2114
+ "learning_rate": 6.091089506091386e-08,
2115
+ "loss": 1.1942,
2116
+ "step": 1500
2117
+ },
2118
+ {
2119
+ "epoch": 0.9715945771465462,
2120
+ "grad_norm": 1.8325780163771659,
2121
+ "learning_rate": 4.9123993269271084e-08,
2122
+ "loss": 1.1928,
2123
+ "step": 1505
2124
+ },
2125
+ {
2126
+ "epoch": 0.9748224661071659,
2127
+ "grad_norm": 1.6145771848502664,
2128
+ "learning_rate": 3.860057890848201e-08,
2129
+ "loss": 1.1975,
2130
+ "step": 1510
2131
+ },
2132
+ {
2133
+ "epoch": 0.9780503550677857,
2134
+ "grad_norm": 1.6524344607725974,
2135
+ "learning_rate": 2.9341988162595593e-08,
2136
+ "loss": 1.1951,
2137
+ "step": 1515
2138
+ },
2139
+ {
2140
+ "epoch": 0.9812782440284055,
2141
+ "grad_norm": 1.6975269723487802,
2142
+ "learning_rate": 2.1349396617862395e-08,
2143
+ "loss": 1.2068,
2144
+ "step": 1520
2145
+ },
2146
+ {
2147
+ "epoch": 0.9845061329890252,
2148
+ "grad_norm": 1.6264164940688373,
2149
+ "learning_rate": 1.4623819113475102e-08,
2150
+ "loss": 1.1978,
2151
+ "step": 1525
2152
+ },
2153
+ {
2154
+ "epoch": 0.9877340219496449,
2155
+ "grad_norm": 1.6407711137766725,
2156
+ "learning_rate": 9.166109612706031e-09,
2157
+ "loss": 1.2098,
2158
+ "step": 1530
2159
+ },
2160
+ {
2161
+ "epoch": 0.9909619109102646,
2162
+ "grad_norm": 1.556515755815733,
2163
+ "learning_rate": 4.976961094479427e-09,
2164
+ "loss": 1.2264,
2165
+ "step": 1535
2166
+ },
2167
+ {
2168
+ "epoch": 0.9941897998708844,
2169
+ "grad_norm": 1.6816771411617426,
2170
+ "learning_rate": 2.0569054653840625e-09,
2171
+ "loss": 1.1912,
2172
+ "step": 1540
2173
+ },
2174
+ {
2175
+ "epoch": 0.9974176888315042,
2176
+ "grad_norm": 1.6707018085579257,
2177
+ "learning_rate": 4.0631349213060555e-10,
2178
+ "loss": 1.1822,
2179
+ "step": 1545
2180
+ },
2181
+ {
2182
+ "epoch": 1.0,
2183
+ "eval_loss": 1.1962528228759766,
2184
+ "eval_runtime": 267.2537,
2185
+ "eval_samples_per_second": 31.206,
2186
+ "eval_steps_per_second": 0.977,
2187
+ "step": 1549
2188
+ },
2189
+ {
2190
+ "epoch": 1.0,
2191
+ "step": 1549,
2192
+ "total_flos": 20529608785920.0,
2193
+ "train_loss": 1.263828207016607,
2194
+ "train_runtime": 6453.9435,
2195
+ "train_samples_per_second": 7.677,
2196
+ "train_steps_per_second": 0.24
2197
+ }
2198
+ ],
2199
+ "logging_steps": 5,
2200
+ "max_steps": 1549,
2201
+ "num_input_tokens_seen": 0,
2202
+ "num_train_epochs": 1,
2203
+ "save_steps": 500,
2204
+ "stateful_callbacks": {
2205
+ "TrainerControl": {
2206
+ "args": {
2207
+ "should_epoch_stop": false,
2208
+ "should_evaluate": false,
2209
+ "should_log": false,
2210
+ "should_save": true,
2211
+ "should_training_stop": true
2212
+ },
2213
+ "attributes": {}
2214
+ }
2215
+ },
2216
+ "total_flos": 20529608785920.0,
2217
+ "train_batch_size": 8,
2218
+ "trial_name": null,
2219
+ "trial_params": null
2220
+ }