DatOneDue commited on
Commit
d9e041d
·
verified ·
1 Parent(s): b4dbfcb

Upload 27 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ Stonk_Training_SFT/tokenizer.json filter=lfs diff=lfs merge=lfs -text
Stonk_Training_SFT/README.md ADDED
@@ -0,0 +1,166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-1.5B-Instruct
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Stonk_Training_SFT
7
+
8
+ This is a fine-tuned stock prediction model that analyzes company information and provides structured predictions on whether a stock will go UP or DOWN, including a percentage estimate.
9
+
10
+ ## Model Details
11
+
12
+ ### Model Description
13
+
14
+ The Stonk_Training_SFT model is fine-tuned from Qwen2.5-1.5B-Instruct using Parameter-Efficient Fine-Tuning (PEFT) with Low-Rank Adaptation (LoRA). It was specifically trained to:
15
+
16
+ 1. Provide structured analysis of stock prospects using specific XML-style tags
17
+ 2. Analyze company information, recent price trends, and news
18
+ 3. Make balanced UP or DOWN predictions with percentage estimates
19
+
20
+ - **Developed by:** 2084Collective
21
+ - **Model type:** LoRA fine-tuned Qwen2.5-1.5B-Instruct
22
+ - **Language(s) (NLP):** English
23
+ - **License:** Research only - not for commercial or production use
24
+ - **Finetuned from model:** Qwen/Qwen2.5-1.5B-Instruct
25
+
26
+ ## Uses
27
+
28
+ ### Direct Use
29
+
30
+ This model is designed to analyze stock information and provide structured predictions. The model expects input about a company including:
31
+ - Ticker symbol
32
+ - Company name and description
33
+ - Current and previous stock prices
34
+ - Recent news headlines
35
+
36
+ It produces responses with the following structure:
37
+ ```
38
+ <reason>
39
+ Detailed reasoning about stock movement prediction
40
+ </reason>
41
+
42
+ <answer>
43
+ UP/DOWN X.X%
44
+ </answer>
45
+ ```
46
+
47
+ ### Out-of-Scope Use
48
+
49
+ This model should NOT be used for:
50
+ - Actual financial decision making or investment advice
51
+ - Production trading systems
52
+ - Any commercial applications
53
+
54
+ The model's predictions are for educational and research purposes only.
55
+
56
+ ## Bias, Risks, and Limitations
57
+
58
+ - The model has no access to real-time market data
59
+ - Predictions are based solely on the information provided in the prompt
60
+ - The model was trained on synthetic data and may not accurately reflect real market dynamics
61
+ - Stock market predictions are inherently uncertain and subject to numerous external factors
62
+
63
+ ### Recommendations
64
+
65
+ - Use outputs for educational purposes only
66
+ - Do not make financial decisions based on the model's predictions
67
+ - Consider the model's predictions as one of many inputs in a broader analysis
68
+
69
+ ## How to Get Started with the Model
70
+
71
+ Use the code below to get started with the model:
72
+
73
+ ```python:Stonk_Training_SFT/README.md
74
+ from transformers import AutoModelForCausalLM, AutoTokenizer
75
+ from peft import PeftModel
76
+
77
+ # Load the base model and tokenizer
78
+ model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-1.5B-Instruct")
79
+ tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-1.5B-Instruct")
80
+
81
+ # Load the LoRA adapter
82
+ model = PeftModel.from_pretrained(model, "./Stonk_Training_SFT")
83
+
84
+ # Prepare the prompt
85
+ system_prompt = """You are an expert stock market analyst with decades of experience.
86
+
87
+ IMPORTANT: You MUST use the following format for your response:
88
+
89
+ <reason>
90
+ Your detailed analysis explaining why the stock will move up or down. Include technical indicators, news impact, and market trends.
91
+ </reason>
92
+
93
+ <answer>
94
+ State UP or DOWN followed by a percentage (e.g., "UP 2.3%" or "DOWN 1.5%")
95
+ </answer>"""
96
+
97
+ user_prompt = """Stock: NVDA
98
+ Company: NVIDIA Corporation
99
+ Description: NVIDIA designs GPUs and SoCs for gaming and professional markets.
100
+ Current Price: $950.00
101
+ Previous Close: $920.00
102
+
103
+ Recent News:
104
+ - NVIDIA announces new AI supercomputer
105
+ - Record demand for AI chips drives revenue growth
106
+ - NVIDIA partners with major cloud providers
107
+
108
+ Question: Based on this information, analyze whether this stock will go UP or DOWN in the next trading day. Provide your reasoning and a specific percentage prediction."""
109
+
110
+ # Format with chat template
111
+ chat_prompt = f"<|im_start|>system\n{system_prompt}<|im_end|>\n<|im_start|>user\n{user_prompt}<|im_end|>\n<|im_start|>assistant\n"
112
+
113
+ # Generate prediction
114
+ inputs = tokenizer(chat_prompt, return_tensors="pt").to(model.device)
115
+ outputs = model.generate(**inputs, max_new_tokens=300)
116
+ response = tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True)
117
+ print(response)
118
+ ```
119
+
120
+ ## Training Details
121
+
122
+ ### Training Data
123
+
124
+ The model was trained on a combination of:
125
+ 1. Synthetic data created specifically for stock prediction
126
+ 2. Data generated to ensure balanced UP and DOWN predictions
127
+ 3. Examples with various company profiles and news scenarios
128
+
129
+ ### Training Procedure
130
+
131
+ The training used a two-stage approach:
132
+ 1. Initial pre-training focusing on proper tag usage
133
+ 2. GRPO (Generative Reinforcement from Prediction Outcomes) to align with direction prediction
134
+
135
+ #### Training Hyperparameters
136
+
137
+ - **Training regime:** fp16 mixed precision
138
+ - **LoRA Configuration:**
139
+ - r=8
140
+ - lora_alpha=16
141
+ - lora_dropout=0.05
142
+ - Target modules: ["q_proj", "k_proj", "v_proj", "o_proj"]
143
+
144
+ ## Evaluation
145
+
146
+ ### Testing Data, Factors & Metrics
147
+
148
+ #### Metrics
149
+
150
+ The model was evaluated on:
151
+ - Tag accuracy: Correct use of `<reason>` and `<answer>` tags
152
+ - Direction accuracy: Correctly predicting UP vs DOWN based on price movement
153
+ - Prediction balance: Distribution of UP vs DOWN predictions
154
+
155
+ ### Results
156
+
157
+ The model demonstrates:
158
+ - High tag format accuracy
159
+ - Balanced prediction capabilities between UP and DOWN
160
+ - Reasonable percentage estimates based on price movements
161
+
162
+ ## Framework versions
163
+
164
+ - PEFT 0.14.0
165
+ - Transformers 4.37.0
166
+ - PyTorch 2.1.0
Stonk_Training_SFT/adapter_config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen2.5-1.5B-Instruct",
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": 32,
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
+ "v_proj",
28
+ "down_proj",
29
+ "q_proj",
30
+ "up_proj",
31
+ "gate_proj",
32
+ "o_proj"
33
+ ],
34
+ "task_type": "CAUSAL_LM",
35
+ "use_dora": false,
36
+ "use_rslora": false
37
+ }
Stonk_Training_SFT/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e46977a6d1b60085f1a175cdee93f3868b58220446dcd045fbbb0045b5610bda
3
+ size 73911112
Stonk_Training_SFT/added_tokens.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 151658,
3
+ "<tool_call>": 151657,
4
+ "<|box_end|>": 151649,
5
+ "<|box_start|>": 151648,
6
+ "<|endoftext|>": 151643,
7
+ "<|file_sep|>": 151664,
8
+ "<|fim_middle|>": 151660,
9
+ "<|fim_pad|>": 151662,
10
+ "<|fim_prefix|>": 151659,
11
+ "<|fim_suffix|>": 151661,
12
+ "<|im_end|>": 151645,
13
+ "<|im_start|>": 151644,
14
+ "<|image_pad|>": 151655,
15
+ "<|object_ref_end|>": 151647,
16
+ "<|object_ref_start|>": 151646,
17
+ "<|quad_end|>": 151651,
18
+ "<|quad_start|>": 151650,
19
+ "<|repo_name|>": 151663,
20
+ "<|video_pad|>": 151656,
21
+ "<|vision_end|>": 151653,
22
+ "<|vision_pad|>": 151654,
23
+ "<|vision_start|>": 151652
24
+ }
Stonk_Training_SFT/checkpoint-300/README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-1.5B-Instruct
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
Stonk_Training_SFT/checkpoint-300/adapter_config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen2.5-1.5B-Instruct",
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": 32,
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
+ "v_proj",
28
+ "down_proj",
29
+ "q_proj",
30
+ "up_proj",
31
+ "gate_proj",
32
+ "o_proj"
33
+ ],
34
+ "task_type": "CAUSAL_LM",
35
+ "use_dora": false,
36
+ "use_rslora": false
37
+ }
Stonk_Training_SFT/checkpoint-300/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f0a9b293923efd00858043fd4bc92d44537b0644c924c3126c3386b24ca0b09
3
+ size 73911112
Stonk_Training_SFT/checkpoint-300/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03391cff097f734004460bac7ac42e7ffc2979330759b7fabeb3711a0e6fcacb
3
+ size 148047722
Stonk_Training_SFT/checkpoint-300/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82f869af31da3ef95296df174b1770d19ca7604b1d0dbb12b2763db0619f9bac
3
+ size 14244
Stonk_Training_SFT/checkpoint-300/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92873c8c89778fe11b8eeb338a181eefdf056f2f8096c36bf259c3fd791afb34
3
+ size 988
Stonk_Training_SFT/checkpoint-300/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7e6d70253e07bbb30f40853516f498ad692d2ded7e26f21c00dae30b89f8c08
3
+ size 1064
Stonk_Training_SFT/checkpoint-300/trainer_state.json ADDED
@@ -0,0 +1,2133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.96,
5
+ "eval_steps": 500,
6
+ "global_step": 300,
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.0032,
13
+ "grad_norm": 1.0318742990493774,
14
+ "learning_rate": 0.00019935897435897437,
15
+ "loss": 2.444,
16
+ "step": 1
17
+ },
18
+ {
19
+ "epoch": 0.0064,
20
+ "grad_norm": 0.6106225252151489,
21
+ "learning_rate": 0.00019871794871794874,
22
+ "loss": 2.2868,
23
+ "step": 2
24
+ },
25
+ {
26
+ "epoch": 0.0096,
27
+ "grad_norm": 0.4373067617416382,
28
+ "learning_rate": 0.0001980769230769231,
29
+ "loss": 2.1701,
30
+ "step": 3
31
+ },
32
+ {
33
+ "epoch": 0.0128,
34
+ "grad_norm": 0.4335378408432007,
35
+ "learning_rate": 0.00019743589743589744,
36
+ "loss": 2.1096,
37
+ "step": 4
38
+ },
39
+ {
40
+ "epoch": 0.016,
41
+ "grad_norm": 0.49052542448043823,
42
+ "learning_rate": 0.00019679487179487178,
43
+ "loss": 1.9543,
44
+ "step": 5
45
+ },
46
+ {
47
+ "epoch": 0.0192,
48
+ "grad_norm": 0.5317227244377136,
49
+ "learning_rate": 0.00019615384615384615,
50
+ "loss": 1.8996,
51
+ "step": 6
52
+ },
53
+ {
54
+ "epoch": 0.0224,
55
+ "grad_norm": 0.5240360498428345,
56
+ "learning_rate": 0.0001955128205128205,
57
+ "loss": 1.8271,
58
+ "step": 7
59
+ },
60
+ {
61
+ "epoch": 0.0256,
62
+ "grad_norm": 0.6232216954231262,
63
+ "learning_rate": 0.00019487179487179487,
64
+ "loss": 1.554,
65
+ "step": 8
66
+ },
67
+ {
68
+ "epoch": 0.0288,
69
+ "grad_norm": 0.4871944785118103,
70
+ "learning_rate": 0.00019423076923076924,
71
+ "loss": 1.6762,
72
+ "step": 9
73
+ },
74
+ {
75
+ "epoch": 0.032,
76
+ "grad_norm": 0.4941597878932953,
77
+ "learning_rate": 0.0001935897435897436,
78
+ "loss": 1.4755,
79
+ "step": 10
80
+ },
81
+ {
82
+ "epoch": 0.0352,
83
+ "grad_norm": 0.49265003204345703,
84
+ "learning_rate": 0.00019294871794871797,
85
+ "loss": 1.4558,
86
+ "step": 11
87
+ },
88
+ {
89
+ "epoch": 0.0384,
90
+ "grad_norm": 0.5133666396141052,
91
+ "learning_rate": 0.00019230769230769233,
92
+ "loss": 1.4057,
93
+ "step": 12
94
+ },
95
+ {
96
+ "epoch": 0.0416,
97
+ "grad_norm": 0.5097830295562744,
98
+ "learning_rate": 0.00019166666666666667,
99
+ "loss": 1.2189,
100
+ "step": 13
101
+ },
102
+ {
103
+ "epoch": 0.0448,
104
+ "grad_norm": 0.4502263367176056,
105
+ "learning_rate": 0.00019102564102564104,
106
+ "loss": 1.4004,
107
+ "step": 14
108
+ },
109
+ {
110
+ "epoch": 0.048,
111
+ "grad_norm": 0.43125396966934204,
112
+ "learning_rate": 0.00019038461538461538,
113
+ "loss": 1.2261,
114
+ "step": 15
115
+ },
116
+ {
117
+ "epoch": 0.0512,
118
+ "grad_norm": 0.5045803189277649,
119
+ "learning_rate": 0.00018974358974358974,
120
+ "loss": 1.1501,
121
+ "step": 16
122
+ },
123
+ {
124
+ "epoch": 0.0544,
125
+ "grad_norm": 0.385760098695755,
126
+ "learning_rate": 0.0001891025641025641,
127
+ "loss": 1.1648,
128
+ "step": 17
129
+ },
130
+ {
131
+ "epoch": 0.0576,
132
+ "grad_norm": 0.40407794713974,
133
+ "learning_rate": 0.00018846153846153847,
134
+ "loss": 1.0138,
135
+ "step": 18
136
+ },
137
+ {
138
+ "epoch": 0.0608,
139
+ "grad_norm": 0.5278863310813904,
140
+ "learning_rate": 0.00018782051282051283,
141
+ "loss": 1.0064,
142
+ "step": 19
143
+ },
144
+ {
145
+ "epoch": 0.064,
146
+ "grad_norm": 0.42704564332962036,
147
+ "learning_rate": 0.0001871794871794872,
148
+ "loss": 1.033,
149
+ "step": 20
150
+ },
151
+ {
152
+ "epoch": 0.0672,
153
+ "grad_norm": 0.40699487924575806,
154
+ "learning_rate": 0.00018653846153846154,
155
+ "loss": 1.096,
156
+ "step": 21
157
+ },
158
+ {
159
+ "epoch": 0.0704,
160
+ "grad_norm": 0.49143341183662415,
161
+ "learning_rate": 0.0001858974358974359,
162
+ "loss": 1.0027,
163
+ "step": 22
164
+ },
165
+ {
166
+ "epoch": 0.0736,
167
+ "grad_norm": 0.39408907294273376,
168
+ "learning_rate": 0.00018525641025641027,
169
+ "loss": 0.9692,
170
+ "step": 23
171
+ },
172
+ {
173
+ "epoch": 0.0768,
174
+ "grad_norm": 0.40637388825416565,
175
+ "learning_rate": 0.00018461538461538463,
176
+ "loss": 0.8652,
177
+ "step": 24
178
+ },
179
+ {
180
+ "epoch": 0.08,
181
+ "grad_norm": 0.46840283274650574,
182
+ "learning_rate": 0.00018397435897435897,
183
+ "loss": 0.7854,
184
+ "step": 25
185
+ },
186
+ {
187
+ "epoch": 0.0832,
188
+ "grad_norm": 0.49589014053344727,
189
+ "learning_rate": 0.00018333333333333334,
190
+ "loss": 0.7093,
191
+ "step": 26
192
+ },
193
+ {
194
+ "epoch": 0.0864,
195
+ "grad_norm": 0.426786333322525,
196
+ "learning_rate": 0.0001826923076923077,
197
+ "loss": 0.7803,
198
+ "step": 27
199
+ },
200
+ {
201
+ "epoch": 0.0896,
202
+ "grad_norm": 0.43341225385665894,
203
+ "learning_rate": 0.00018205128205128207,
204
+ "loss": 0.6717,
205
+ "step": 28
206
+ },
207
+ {
208
+ "epoch": 0.0928,
209
+ "grad_norm": 0.35544857382774353,
210
+ "learning_rate": 0.00018141025641025643,
211
+ "loss": 0.6876,
212
+ "step": 29
213
+ },
214
+ {
215
+ "epoch": 0.096,
216
+ "grad_norm": 0.3088377118110657,
217
+ "learning_rate": 0.00018076923076923077,
218
+ "loss": 0.8013,
219
+ "step": 30
220
+ },
221
+ {
222
+ "epoch": 0.0992,
223
+ "grad_norm": 0.5275241732597351,
224
+ "learning_rate": 0.00018012820512820513,
225
+ "loss": 0.6156,
226
+ "step": 31
227
+ },
228
+ {
229
+ "epoch": 0.1024,
230
+ "grad_norm": 0.32654592394828796,
231
+ "learning_rate": 0.0001794871794871795,
232
+ "loss": 0.6555,
233
+ "step": 32
234
+ },
235
+ {
236
+ "epoch": 0.1056,
237
+ "grad_norm": 0.2824726402759552,
238
+ "learning_rate": 0.00017884615384615386,
239
+ "loss": 0.5935,
240
+ "step": 33
241
+ },
242
+ {
243
+ "epoch": 0.1088,
244
+ "grad_norm": 0.2731788158416748,
245
+ "learning_rate": 0.00017820512820512823,
246
+ "loss": 0.7172,
247
+ "step": 34
248
+ },
249
+ {
250
+ "epoch": 0.112,
251
+ "grad_norm": 0.2869996428489685,
252
+ "learning_rate": 0.00017756410256410257,
253
+ "loss": 0.6094,
254
+ "step": 35
255
+ },
256
+ {
257
+ "epoch": 0.1152,
258
+ "grad_norm": 0.2364930361509323,
259
+ "learning_rate": 0.00017692307692307693,
260
+ "loss": 0.6224,
261
+ "step": 36
262
+ },
263
+ {
264
+ "epoch": 0.1184,
265
+ "grad_norm": 0.23826579749584198,
266
+ "learning_rate": 0.0001762820512820513,
267
+ "loss": 0.6619,
268
+ "step": 37
269
+ },
270
+ {
271
+ "epoch": 0.1216,
272
+ "grad_norm": 0.2075989544391632,
273
+ "learning_rate": 0.00017564102564102566,
274
+ "loss": 0.5132,
275
+ "step": 38
276
+ },
277
+ {
278
+ "epoch": 0.1248,
279
+ "grad_norm": 0.21996797621250153,
280
+ "learning_rate": 0.000175,
281
+ "loss": 0.5349,
282
+ "step": 39
283
+ },
284
+ {
285
+ "epoch": 0.128,
286
+ "grad_norm": 0.22936391830444336,
287
+ "learning_rate": 0.00017435897435897436,
288
+ "loss": 0.6609,
289
+ "step": 40
290
+ },
291
+ {
292
+ "epoch": 0.1312,
293
+ "grad_norm": 0.22315745055675507,
294
+ "learning_rate": 0.00017371794871794873,
295
+ "loss": 0.601,
296
+ "step": 41
297
+ },
298
+ {
299
+ "epoch": 0.1344,
300
+ "grad_norm": 0.23068805038928986,
301
+ "learning_rate": 0.0001730769230769231,
302
+ "loss": 0.5872,
303
+ "step": 42
304
+ },
305
+ {
306
+ "epoch": 0.1376,
307
+ "grad_norm": 0.21181653439998627,
308
+ "learning_rate": 0.00017243589743589746,
309
+ "loss": 0.562,
310
+ "step": 43
311
+ },
312
+ {
313
+ "epoch": 0.1408,
314
+ "grad_norm": 0.2169111967086792,
315
+ "learning_rate": 0.0001717948717948718,
316
+ "loss": 0.5454,
317
+ "step": 44
318
+ },
319
+ {
320
+ "epoch": 0.144,
321
+ "grad_norm": 0.23763957619667053,
322
+ "learning_rate": 0.00017115384615384616,
323
+ "loss": 0.5714,
324
+ "step": 45
325
+ },
326
+ {
327
+ "epoch": 0.1472,
328
+ "grad_norm": 0.23329143226146698,
329
+ "learning_rate": 0.00017051282051282053,
330
+ "loss": 0.6302,
331
+ "step": 46
332
+ },
333
+ {
334
+ "epoch": 0.1504,
335
+ "grad_norm": 0.24837623536586761,
336
+ "learning_rate": 0.00016987179487179486,
337
+ "loss": 0.5195,
338
+ "step": 47
339
+ },
340
+ {
341
+ "epoch": 0.1536,
342
+ "grad_norm": 0.23882092535495758,
343
+ "learning_rate": 0.00016923076923076923,
344
+ "loss": 0.5077,
345
+ "step": 48
346
+ },
347
+ {
348
+ "epoch": 0.1568,
349
+ "grad_norm": 0.2507559359073639,
350
+ "learning_rate": 0.0001685897435897436,
351
+ "loss": 0.6475,
352
+ "step": 49
353
+ },
354
+ {
355
+ "epoch": 0.16,
356
+ "grad_norm": 0.249229297041893,
357
+ "learning_rate": 0.00016794871794871796,
358
+ "loss": 0.6017,
359
+ "step": 50
360
+ },
361
+ {
362
+ "epoch": 0.1632,
363
+ "grad_norm": 0.24630750715732574,
364
+ "learning_rate": 0.00016730769230769232,
365
+ "loss": 0.7265,
366
+ "step": 51
367
+ },
368
+ {
369
+ "epoch": 0.1664,
370
+ "grad_norm": 0.2189762443304062,
371
+ "learning_rate": 0.0001666666666666667,
372
+ "loss": 0.5816,
373
+ "step": 52
374
+ },
375
+ {
376
+ "epoch": 0.1696,
377
+ "grad_norm": 0.2525809705257416,
378
+ "learning_rate": 0.00016602564102564105,
379
+ "loss": 0.6504,
380
+ "step": 53
381
+ },
382
+ {
383
+ "epoch": 0.1728,
384
+ "grad_norm": 0.2427346110343933,
385
+ "learning_rate": 0.0001653846153846154,
386
+ "loss": 0.607,
387
+ "step": 54
388
+ },
389
+ {
390
+ "epoch": 0.176,
391
+ "grad_norm": 0.25441974401474,
392
+ "learning_rate": 0.00016474358974358976,
393
+ "loss": 0.498,
394
+ "step": 55
395
+ },
396
+ {
397
+ "epoch": 0.1792,
398
+ "grad_norm": 0.3109598159790039,
399
+ "learning_rate": 0.0001641025641025641,
400
+ "loss": 0.7047,
401
+ "step": 56
402
+ },
403
+ {
404
+ "epoch": 0.1824,
405
+ "grad_norm": 0.24834761023521423,
406
+ "learning_rate": 0.00016346153846153846,
407
+ "loss": 0.6676,
408
+ "step": 57
409
+ },
410
+ {
411
+ "epoch": 0.1856,
412
+ "grad_norm": 0.2606664001941681,
413
+ "learning_rate": 0.00016282051282051282,
414
+ "loss": 0.5359,
415
+ "step": 58
416
+ },
417
+ {
418
+ "epoch": 0.1888,
419
+ "grad_norm": 0.280716210603714,
420
+ "learning_rate": 0.0001621794871794872,
421
+ "loss": 0.5061,
422
+ "step": 59
423
+ },
424
+ {
425
+ "epoch": 0.192,
426
+ "grad_norm": 0.22753354907035828,
427
+ "learning_rate": 0.00016153846153846155,
428
+ "loss": 0.5317,
429
+ "step": 60
430
+ },
431
+ {
432
+ "epoch": 0.1952,
433
+ "grad_norm": 0.2716667056083679,
434
+ "learning_rate": 0.00016089743589743592,
435
+ "loss": 0.525,
436
+ "step": 61
437
+ },
438
+ {
439
+ "epoch": 0.1984,
440
+ "grad_norm": 0.29029580950737,
441
+ "learning_rate": 0.00016025641025641028,
442
+ "loss": 0.5692,
443
+ "step": 62
444
+ },
445
+ {
446
+ "epoch": 0.2016,
447
+ "grad_norm": 0.3005497455596924,
448
+ "learning_rate": 0.00015961538461538462,
449
+ "loss": 0.5708,
450
+ "step": 63
451
+ },
452
+ {
453
+ "epoch": 0.2048,
454
+ "grad_norm": 0.2747126519680023,
455
+ "learning_rate": 0.00015897435897435896,
456
+ "loss": 0.5776,
457
+ "step": 64
458
+ },
459
+ {
460
+ "epoch": 0.208,
461
+ "grad_norm": 0.23698432743549347,
462
+ "learning_rate": 0.00015833333333333332,
463
+ "loss": 0.4512,
464
+ "step": 65
465
+ },
466
+ {
467
+ "epoch": 0.2112,
468
+ "grad_norm": 0.2807236313819885,
469
+ "learning_rate": 0.0001576923076923077,
470
+ "loss": 0.6356,
471
+ "step": 66
472
+ },
473
+ {
474
+ "epoch": 0.2144,
475
+ "grad_norm": 0.2509554326534271,
476
+ "learning_rate": 0.00015705128205128205,
477
+ "loss": 0.6171,
478
+ "step": 67
479
+ },
480
+ {
481
+ "epoch": 0.2176,
482
+ "grad_norm": 0.2572317123413086,
483
+ "learning_rate": 0.00015641025641025642,
484
+ "loss": 0.5074,
485
+ "step": 68
486
+ },
487
+ {
488
+ "epoch": 0.2208,
489
+ "grad_norm": 0.2810407280921936,
490
+ "learning_rate": 0.00015576923076923078,
491
+ "loss": 0.5584,
492
+ "step": 69
493
+ },
494
+ {
495
+ "epoch": 0.224,
496
+ "grad_norm": 0.2606565058231354,
497
+ "learning_rate": 0.00015512820512820515,
498
+ "loss": 0.5131,
499
+ "step": 70
500
+ },
501
+ {
502
+ "epoch": 0.2272,
503
+ "grad_norm": 0.2663954198360443,
504
+ "learning_rate": 0.00015448717948717951,
505
+ "loss": 0.5039,
506
+ "step": 71
507
+ },
508
+ {
509
+ "epoch": 0.2304,
510
+ "grad_norm": 0.2655510902404785,
511
+ "learning_rate": 0.00015384615384615385,
512
+ "loss": 0.5378,
513
+ "step": 72
514
+ },
515
+ {
516
+ "epoch": 0.2336,
517
+ "grad_norm": 0.2713690996170044,
518
+ "learning_rate": 0.00015320512820512822,
519
+ "loss": 0.4168,
520
+ "step": 73
521
+ },
522
+ {
523
+ "epoch": 0.2368,
524
+ "grad_norm": 0.29010245203971863,
525
+ "learning_rate": 0.00015256410256410255,
526
+ "loss": 0.4522,
527
+ "step": 74
528
+ },
529
+ {
530
+ "epoch": 0.24,
531
+ "grad_norm": 0.2629586160182953,
532
+ "learning_rate": 0.00015192307692307692,
533
+ "loss": 0.4264,
534
+ "step": 75
535
+ },
536
+ {
537
+ "epoch": 0.2432,
538
+ "grad_norm": 0.2788578271865845,
539
+ "learning_rate": 0.00015128205128205128,
540
+ "loss": 0.4294,
541
+ "step": 76
542
+ },
543
+ {
544
+ "epoch": 0.2464,
545
+ "grad_norm": 0.28636300563812256,
546
+ "learning_rate": 0.00015064102564102565,
547
+ "loss": 0.4514,
548
+ "step": 77
549
+ },
550
+ {
551
+ "epoch": 0.2496,
552
+ "grad_norm": 0.3492796719074249,
553
+ "learning_rate": 0.00015000000000000001,
554
+ "loss": 0.5396,
555
+ "step": 78
556
+ },
557
+ {
558
+ "epoch": 0.2528,
559
+ "grad_norm": 0.28230172395706177,
560
+ "learning_rate": 0.00014935897435897438,
561
+ "loss": 0.4536,
562
+ "step": 79
563
+ },
564
+ {
565
+ "epoch": 0.256,
566
+ "grad_norm": 0.3269024193286896,
567
+ "learning_rate": 0.00014871794871794872,
568
+ "loss": 0.4935,
569
+ "step": 80
570
+ },
571
+ {
572
+ "epoch": 0.2592,
573
+ "grad_norm": 0.2631271779537201,
574
+ "learning_rate": 0.00014807692307692308,
575
+ "loss": 0.4967,
576
+ "step": 81
577
+ },
578
+ {
579
+ "epoch": 0.2624,
580
+ "grad_norm": 0.29715263843536377,
581
+ "learning_rate": 0.00014743589743589745,
582
+ "loss": 0.46,
583
+ "step": 82
584
+ },
585
+ {
586
+ "epoch": 0.2656,
587
+ "grad_norm": 0.24541226029396057,
588
+ "learning_rate": 0.00014679487179487178,
589
+ "loss": 0.451,
590
+ "step": 83
591
+ },
592
+ {
593
+ "epoch": 0.2688,
594
+ "grad_norm": 0.26244840025901794,
595
+ "learning_rate": 0.00014615384615384615,
596
+ "loss": 0.4505,
597
+ "step": 84
598
+ },
599
+ {
600
+ "epoch": 0.272,
601
+ "grad_norm": 0.28552278876304626,
602
+ "learning_rate": 0.00014551282051282051,
603
+ "loss": 0.4962,
604
+ "step": 85
605
+ },
606
+ {
607
+ "epoch": 0.2752,
608
+ "grad_norm": 0.3041422963142395,
609
+ "learning_rate": 0.00014487179487179488,
610
+ "loss": 0.5714,
611
+ "step": 86
612
+ },
613
+ {
614
+ "epoch": 0.2784,
615
+ "grad_norm": 0.2605431079864502,
616
+ "learning_rate": 0.00014423076923076924,
617
+ "loss": 0.424,
618
+ "step": 87
619
+ },
620
+ {
621
+ "epoch": 0.2816,
622
+ "grad_norm": 0.2429913431406021,
623
+ "learning_rate": 0.0001435897435897436,
624
+ "loss": 0.4929,
625
+ "step": 88
626
+ },
627
+ {
628
+ "epoch": 0.2848,
629
+ "grad_norm": 0.263763964176178,
630
+ "learning_rate": 0.00014294871794871795,
631
+ "loss": 0.51,
632
+ "step": 89
633
+ },
634
+ {
635
+ "epoch": 0.288,
636
+ "grad_norm": 0.2757089138031006,
637
+ "learning_rate": 0.0001423076923076923,
638
+ "loss": 0.5876,
639
+ "step": 90
640
+ },
641
+ {
642
+ "epoch": 0.2912,
643
+ "grad_norm": 0.25437983870506287,
644
+ "learning_rate": 0.00014166666666666668,
645
+ "loss": 0.5662,
646
+ "step": 91
647
+ },
648
+ {
649
+ "epoch": 0.2944,
650
+ "grad_norm": 0.28170907497406006,
651
+ "learning_rate": 0.00014102564102564104,
652
+ "loss": 0.6068,
653
+ "step": 92
654
+ },
655
+ {
656
+ "epoch": 0.2976,
657
+ "grad_norm": 0.2835545837879181,
658
+ "learning_rate": 0.00014038461538461538,
659
+ "loss": 0.5769,
660
+ "step": 93
661
+ },
662
+ {
663
+ "epoch": 0.3008,
664
+ "grad_norm": 0.26598137617111206,
665
+ "learning_rate": 0.00013974358974358974,
666
+ "loss": 0.5344,
667
+ "step": 94
668
+ },
669
+ {
670
+ "epoch": 0.304,
671
+ "grad_norm": 0.27048271894454956,
672
+ "learning_rate": 0.0001391025641025641,
673
+ "loss": 0.5439,
674
+ "step": 95
675
+ },
676
+ {
677
+ "epoch": 0.3072,
678
+ "grad_norm": 0.2872040867805481,
679
+ "learning_rate": 0.00013846153846153847,
680
+ "loss": 0.4907,
681
+ "step": 96
682
+ },
683
+ {
684
+ "epoch": 0.3104,
685
+ "grad_norm": 0.2894354462623596,
686
+ "learning_rate": 0.00013782051282051284,
687
+ "loss": 0.5225,
688
+ "step": 97
689
+ },
690
+ {
691
+ "epoch": 0.3136,
692
+ "grad_norm": 0.2700275778770447,
693
+ "learning_rate": 0.00013717948717948718,
694
+ "loss": 0.5485,
695
+ "step": 98
696
+ },
697
+ {
698
+ "epoch": 0.3168,
699
+ "grad_norm": 0.25223323702812195,
700
+ "learning_rate": 0.00013653846153846154,
701
+ "loss": 0.4103,
702
+ "step": 99
703
+ },
704
+ {
705
+ "epoch": 0.32,
706
+ "grad_norm": 0.26242420077323914,
707
+ "learning_rate": 0.0001358974358974359,
708
+ "loss": 0.4974,
709
+ "step": 100
710
+ },
711
+ {
712
+ "epoch": 0.3232,
713
+ "grad_norm": 0.25841623544692993,
714
+ "learning_rate": 0.00013525641025641027,
715
+ "loss": 0.5663,
716
+ "step": 101
717
+ },
718
+ {
719
+ "epoch": 0.3264,
720
+ "grad_norm": 0.2550147473812103,
721
+ "learning_rate": 0.00013461538461538464,
722
+ "loss": 0.4468,
723
+ "step": 102
724
+ },
725
+ {
726
+ "epoch": 0.3296,
727
+ "grad_norm": 0.2532574534416199,
728
+ "learning_rate": 0.00013397435897435897,
729
+ "loss": 0.4785,
730
+ "step": 103
731
+ },
732
+ {
733
+ "epoch": 0.3328,
734
+ "grad_norm": 0.3210897743701935,
735
+ "learning_rate": 0.00013333333333333334,
736
+ "loss": 0.348,
737
+ "step": 104
738
+ },
739
+ {
740
+ "epoch": 0.336,
741
+ "grad_norm": 0.2774418294429779,
742
+ "learning_rate": 0.0001326923076923077,
743
+ "loss": 0.5105,
744
+ "step": 105
745
+ },
746
+ {
747
+ "epoch": 0.3392,
748
+ "grad_norm": 0.2911253571510315,
749
+ "learning_rate": 0.00013205128205128204,
750
+ "loss": 0.4461,
751
+ "step": 106
752
+ },
753
+ {
754
+ "epoch": 0.3424,
755
+ "grad_norm": 0.3193359971046448,
756
+ "learning_rate": 0.0001314102564102564,
757
+ "loss": 0.425,
758
+ "step": 107
759
+ },
760
+ {
761
+ "epoch": 0.3456,
762
+ "grad_norm": 0.25757595896720886,
763
+ "learning_rate": 0.00013076923076923077,
764
+ "loss": 0.5055,
765
+ "step": 108
766
+ },
767
+ {
768
+ "epoch": 0.3488,
769
+ "grad_norm": 0.29757291078567505,
770
+ "learning_rate": 0.00013012820512820514,
771
+ "loss": 0.4796,
772
+ "step": 109
773
+ },
774
+ {
775
+ "epoch": 0.352,
776
+ "grad_norm": 0.25091230869293213,
777
+ "learning_rate": 0.0001294871794871795,
778
+ "loss": 0.4215,
779
+ "step": 110
780
+ },
781
+ {
782
+ "epoch": 0.3552,
783
+ "grad_norm": 0.24596236646175385,
784
+ "learning_rate": 0.00012884615384615387,
785
+ "loss": 0.4959,
786
+ "step": 111
787
+ },
788
+ {
789
+ "epoch": 0.3584,
790
+ "grad_norm": 0.2935032844543457,
791
+ "learning_rate": 0.00012820512820512823,
792
+ "loss": 0.5622,
793
+ "step": 112
794
+ },
795
+ {
796
+ "epoch": 0.3616,
797
+ "grad_norm": 0.247608482837677,
798
+ "learning_rate": 0.00012756410256410257,
799
+ "loss": 0.5097,
800
+ "step": 113
801
+ },
802
+ {
803
+ "epoch": 0.3648,
804
+ "grad_norm": 0.24816389381885529,
805
+ "learning_rate": 0.00012692307692307693,
806
+ "loss": 0.4609,
807
+ "step": 114
808
+ },
809
+ {
810
+ "epoch": 0.368,
811
+ "grad_norm": 0.2884969115257263,
812
+ "learning_rate": 0.00012628205128205127,
813
+ "loss": 0.4562,
814
+ "step": 115
815
+ },
816
+ {
817
+ "epoch": 0.3712,
818
+ "grad_norm": 0.2685159742832184,
819
+ "learning_rate": 0.00012564102564102564,
820
+ "loss": 0.4159,
821
+ "step": 116
822
+ },
823
+ {
824
+ "epoch": 0.3744,
825
+ "grad_norm": 0.27893656492233276,
826
+ "learning_rate": 0.000125,
827
+ "loss": 0.4143,
828
+ "step": 117
829
+ },
830
+ {
831
+ "epoch": 0.3776,
832
+ "grad_norm": 0.3658033311367035,
833
+ "learning_rate": 0.00012435897435897437,
834
+ "loss": 0.5775,
835
+ "step": 118
836
+ },
837
+ {
838
+ "epoch": 0.3808,
839
+ "grad_norm": 0.3107357621192932,
840
+ "learning_rate": 0.00012371794871794873,
841
+ "loss": 0.4669,
842
+ "step": 119
843
+ },
844
+ {
845
+ "epoch": 0.384,
846
+ "grad_norm": 0.303265780210495,
847
+ "learning_rate": 0.0001230769230769231,
848
+ "loss": 0.5763,
849
+ "step": 120
850
+ },
851
+ {
852
+ "epoch": 0.3872,
853
+ "grad_norm": 0.21491239964962006,
854
+ "learning_rate": 0.00012243589743589746,
855
+ "loss": 0.2977,
856
+ "step": 121
857
+ },
858
+ {
859
+ "epoch": 0.3904,
860
+ "grad_norm": 0.25996512174606323,
861
+ "learning_rate": 0.00012179487179487179,
862
+ "loss": 0.4028,
863
+ "step": 122
864
+ },
865
+ {
866
+ "epoch": 0.3936,
867
+ "grad_norm": 0.25640368461608887,
868
+ "learning_rate": 0.00012115384615384615,
869
+ "loss": 0.5186,
870
+ "step": 123
871
+ },
872
+ {
873
+ "epoch": 0.3968,
874
+ "grad_norm": 0.25851595401763916,
875
+ "learning_rate": 0.00012051282051282052,
876
+ "loss": 0.4153,
877
+ "step": 124
878
+ },
879
+ {
880
+ "epoch": 0.4,
881
+ "grad_norm": 0.2687956988811493,
882
+ "learning_rate": 0.00011987179487179487,
883
+ "loss": 0.4214,
884
+ "step": 125
885
+ },
886
+ {
887
+ "epoch": 0.4032,
888
+ "grad_norm": 0.2811547815799713,
889
+ "learning_rate": 0.00011923076923076923,
890
+ "loss": 0.4813,
891
+ "step": 126
892
+ },
893
+ {
894
+ "epoch": 0.4064,
895
+ "grad_norm": 0.3029988706111908,
896
+ "learning_rate": 0.0001185897435897436,
897
+ "loss": 0.6633,
898
+ "step": 127
899
+ },
900
+ {
901
+ "epoch": 0.4096,
902
+ "grad_norm": 0.23572632670402527,
903
+ "learning_rate": 0.00011794871794871796,
904
+ "loss": 0.321,
905
+ "step": 128
906
+ },
907
+ {
908
+ "epoch": 0.4128,
909
+ "grad_norm": 0.26160842180252075,
910
+ "learning_rate": 0.00011730769230769231,
911
+ "loss": 0.4805,
912
+ "step": 129
913
+ },
914
+ {
915
+ "epoch": 0.416,
916
+ "grad_norm": 0.2799210548400879,
917
+ "learning_rate": 0.00011666666666666668,
918
+ "loss": 0.5449,
919
+ "step": 130
920
+ },
921
+ {
922
+ "epoch": 0.4192,
923
+ "grad_norm": 0.26176995038986206,
924
+ "learning_rate": 0.00011602564102564104,
925
+ "loss": 0.5371,
926
+ "step": 131
927
+ },
928
+ {
929
+ "epoch": 0.4224,
930
+ "grad_norm": 0.2574150562286377,
931
+ "learning_rate": 0.00011538461538461538,
932
+ "loss": 0.4654,
933
+ "step": 132
934
+ },
935
+ {
936
+ "epoch": 0.4256,
937
+ "grad_norm": 0.2815636098384857,
938
+ "learning_rate": 0.00011474358974358975,
939
+ "loss": 0.4717,
940
+ "step": 133
941
+ },
942
+ {
943
+ "epoch": 0.4288,
944
+ "grad_norm": 0.2238437682390213,
945
+ "learning_rate": 0.0001141025641025641,
946
+ "loss": 0.2716,
947
+ "step": 134
948
+ },
949
+ {
950
+ "epoch": 0.432,
951
+ "grad_norm": 0.28223180770874023,
952
+ "learning_rate": 0.00011346153846153846,
953
+ "loss": 0.4417,
954
+ "step": 135
955
+ },
956
+ {
957
+ "epoch": 0.4352,
958
+ "grad_norm": 0.25392040610313416,
959
+ "learning_rate": 0.00011282051282051283,
960
+ "loss": 0.3974,
961
+ "step": 136
962
+ },
963
+ {
964
+ "epoch": 0.4384,
965
+ "grad_norm": 0.26734161376953125,
966
+ "learning_rate": 0.00011217948717948718,
967
+ "loss": 0.4821,
968
+ "step": 137
969
+ },
970
+ {
971
+ "epoch": 0.4416,
972
+ "grad_norm": 0.3004485070705414,
973
+ "learning_rate": 0.00011153846153846154,
974
+ "loss": 0.5427,
975
+ "step": 138
976
+ },
977
+ {
978
+ "epoch": 0.4448,
979
+ "grad_norm": 0.3012203872203827,
980
+ "learning_rate": 0.00011089743589743591,
981
+ "loss": 0.4845,
982
+ "step": 139
983
+ },
984
+ {
985
+ "epoch": 0.448,
986
+ "grad_norm": 0.249158576130867,
987
+ "learning_rate": 0.00011025641025641027,
988
+ "loss": 0.4654,
989
+ "step": 140
990
+ },
991
+ {
992
+ "epoch": 0.4512,
993
+ "grad_norm": 0.26157674193382263,
994
+ "learning_rate": 0.00010961538461538463,
995
+ "loss": 0.4359,
996
+ "step": 141
997
+ },
998
+ {
999
+ "epoch": 0.4544,
1000
+ "grad_norm": 0.2885046899318695,
1001
+ "learning_rate": 0.00010897435897435896,
1002
+ "loss": 0.5595,
1003
+ "step": 142
1004
+ },
1005
+ {
1006
+ "epoch": 0.4576,
1007
+ "grad_norm": 0.24725095927715302,
1008
+ "learning_rate": 0.00010833333333333333,
1009
+ "loss": 0.4303,
1010
+ "step": 143
1011
+ },
1012
+ {
1013
+ "epoch": 0.4608,
1014
+ "grad_norm": 0.2562006711959839,
1015
+ "learning_rate": 0.0001076923076923077,
1016
+ "loss": 0.4772,
1017
+ "step": 144
1018
+ },
1019
+ {
1020
+ "epoch": 0.464,
1021
+ "grad_norm": 0.27621591091156006,
1022
+ "learning_rate": 0.00010705128205128206,
1023
+ "loss": 0.5012,
1024
+ "step": 145
1025
+ },
1026
+ {
1027
+ "epoch": 0.4672,
1028
+ "grad_norm": 0.24434815347194672,
1029
+ "learning_rate": 0.00010641025641025641,
1030
+ "loss": 0.4038,
1031
+ "step": 146
1032
+ },
1033
+ {
1034
+ "epoch": 0.4704,
1035
+ "grad_norm": 0.306618332862854,
1036
+ "learning_rate": 0.00010576923076923077,
1037
+ "loss": 0.6279,
1038
+ "step": 147
1039
+ },
1040
+ {
1041
+ "epoch": 0.4736,
1042
+ "grad_norm": 0.23926320672035217,
1043
+ "learning_rate": 0.00010512820512820514,
1044
+ "loss": 0.3658,
1045
+ "step": 148
1046
+ },
1047
+ {
1048
+ "epoch": 0.4768,
1049
+ "grad_norm": 0.2628524899482727,
1050
+ "learning_rate": 0.0001044871794871795,
1051
+ "loss": 0.4094,
1052
+ "step": 149
1053
+ },
1054
+ {
1055
+ "epoch": 0.48,
1056
+ "grad_norm": 0.3073101341724396,
1057
+ "learning_rate": 0.00010384615384615386,
1058
+ "loss": 0.5235,
1059
+ "step": 150
1060
+ },
1061
+ {
1062
+ "epoch": 0.4832,
1063
+ "grad_norm": 0.2647029757499695,
1064
+ "learning_rate": 0.00010320512820512822,
1065
+ "loss": 0.435,
1066
+ "step": 151
1067
+ },
1068
+ {
1069
+ "epoch": 0.4864,
1070
+ "grad_norm": 0.2945331335067749,
1071
+ "learning_rate": 0.00010256410256410256,
1072
+ "loss": 0.4805,
1073
+ "step": 152
1074
+ },
1075
+ {
1076
+ "epoch": 0.4896,
1077
+ "grad_norm": 0.24870315194129944,
1078
+ "learning_rate": 0.00010192307692307692,
1079
+ "loss": 0.3913,
1080
+ "step": 153
1081
+ },
1082
+ {
1083
+ "epoch": 0.4928,
1084
+ "grad_norm": 0.2954522371292114,
1085
+ "learning_rate": 0.00010128205128205129,
1086
+ "loss": 0.412,
1087
+ "step": 154
1088
+ },
1089
+ {
1090
+ "epoch": 0.496,
1091
+ "grad_norm": 0.2745000720024109,
1092
+ "learning_rate": 0.00010064102564102564,
1093
+ "loss": 0.3781,
1094
+ "step": 155
1095
+ },
1096
+ {
1097
+ "epoch": 0.4992,
1098
+ "grad_norm": 0.3542097806930542,
1099
+ "learning_rate": 0.0001,
1100
+ "loss": 0.6366,
1101
+ "step": 156
1102
+ },
1103
+ {
1104
+ "epoch": 0.5024,
1105
+ "grad_norm": 0.25741928815841675,
1106
+ "learning_rate": 9.935897435897437e-05,
1107
+ "loss": 0.4203,
1108
+ "step": 157
1109
+ },
1110
+ {
1111
+ "epoch": 0.5056,
1112
+ "grad_norm": 0.24221432209014893,
1113
+ "learning_rate": 9.871794871794872e-05,
1114
+ "loss": 0.3816,
1115
+ "step": 158
1116
+ },
1117
+ {
1118
+ "epoch": 0.5088,
1119
+ "grad_norm": 0.28175830841064453,
1120
+ "learning_rate": 9.807692307692307e-05,
1121
+ "loss": 0.5144,
1122
+ "step": 159
1123
+ },
1124
+ {
1125
+ "epoch": 0.512,
1126
+ "grad_norm": 0.28136804699897766,
1127
+ "learning_rate": 9.743589743589744e-05,
1128
+ "loss": 0.5099,
1129
+ "step": 160
1130
+ },
1131
+ {
1132
+ "epoch": 0.5152,
1133
+ "grad_norm": 0.2572178542613983,
1134
+ "learning_rate": 9.67948717948718e-05,
1135
+ "loss": 0.4466,
1136
+ "step": 161
1137
+ },
1138
+ {
1139
+ "epoch": 0.5184,
1140
+ "grad_norm": 0.26523545384407043,
1141
+ "learning_rate": 9.615384615384617e-05,
1142
+ "loss": 0.4726,
1143
+ "step": 162
1144
+ },
1145
+ {
1146
+ "epoch": 0.5216,
1147
+ "grad_norm": 0.2543681859970093,
1148
+ "learning_rate": 9.551282051282052e-05,
1149
+ "loss": 0.4538,
1150
+ "step": 163
1151
+ },
1152
+ {
1153
+ "epoch": 0.5248,
1154
+ "grad_norm": 0.2630670964717865,
1155
+ "learning_rate": 9.487179487179487e-05,
1156
+ "loss": 0.396,
1157
+ "step": 164
1158
+ },
1159
+ {
1160
+ "epoch": 0.528,
1161
+ "grad_norm": 0.2914413809776306,
1162
+ "learning_rate": 9.423076923076924e-05,
1163
+ "loss": 0.5105,
1164
+ "step": 165
1165
+ },
1166
+ {
1167
+ "epoch": 0.5312,
1168
+ "grad_norm": 0.23061206936836243,
1169
+ "learning_rate": 9.35897435897436e-05,
1170
+ "loss": 0.3556,
1171
+ "step": 166
1172
+ },
1173
+ {
1174
+ "epoch": 0.5344,
1175
+ "grad_norm": 0.29008427262306213,
1176
+ "learning_rate": 9.294871794871795e-05,
1177
+ "loss": 0.5202,
1178
+ "step": 167
1179
+ },
1180
+ {
1181
+ "epoch": 0.5376,
1182
+ "grad_norm": 0.3016505241394043,
1183
+ "learning_rate": 9.230769230769232e-05,
1184
+ "loss": 0.5411,
1185
+ "step": 168
1186
+ },
1187
+ {
1188
+ "epoch": 0.5408,
1189
+ "grad_norm": 0.2557263970375061,
1190
+ "learning_rate": 9.166666666666667e-05,
1191
+ "loss": 0.319,
1192
+ "step": 169
1193
+ },
1194
+ {
1195
+ "epoch": 0.544,
1196
+ "grad_norm": 0.3112490773200989,
1197
+ "learning_rate": 9.102564102564103e-05,
1198
+ "loss": 0.3887,
1199
+ "step": 170
1200
+ },
1201
+ {
1202
+ "epoch": 0.5472,
1203
+ "grad_norm": 0.31632199883461,
1204
+ "learning_rate": 9.038461538461538e-05,
1205
+ "loss": 0.5968,
1206
+ "step": 171
1207
+ },
1208
+ {
1209
+ "epoch": 0.5504,
1210
+ "grad_norm": 0.2825266122817993,
1211
+ "learning_rate": 8.974358974358975e-05,
1212
+ "loss": 0.4054,
1213
+ "step": 172
1214
+ },
1215
+ {
1216
+ "epoch": 0.5536,
1217
+ "grad_norm": 0.29404228925704956,
1218
+ "learning_rate": 8.910256410256411e-05,
1219
+ "loss": 0.4833,
1220
+ "step": 173
1221
+ },
1222
+ {
1223
+ "epoch": 0.5568,
1224
+ "grad_norm": 0.2678660750389099,
1225
+ "learning_rate": 8.846153846153847e-05,
1226
+ "loss": 0.5036,
1227
+ "step": 174
1228
+ },
1229
+ {
1230
+ "epoch": 0.56,
1231
+ "grad_norm": 0.25883761048316956,
1232
+ "learning_rate": 8.782051282051283e-05,
1233
+ "loss": 0.4133,
1234
+ "step": 175
1235
+ },
1236
+ {
1237
+ "epoch": 0.5632,
1238
+ "grad_norm": 0.25341886281967163,
1239
+ "learning_rate": 8.717948717948718e-05,
1240
+ "loss": 0.405,
1241
+ "step": 176
1242
+ },
1243
+ {
1244
+ "epoch": 0.5664,
1245
+ "grad_norm": 0.27091604471206665,
1246
+ "learning_rate": 8.653846153846155e-05,
1247
+ "loss": 0.4839,
1248
+ "step": 177
1249
+ },
1250
+ {
1251
+ "epoch": 0.5696,
1252
+ "grad_norm": 0.2976224422454834,
1253
+ "learning_rate": 8.58974358974359e-05,
1254
+ "loss": 0.4976,
1255
+ "step": 178
1256
+ },
1257
+ {
1258
+ "epoch": 0.5728,
1259
+ "grad_norm": 0.2556227445602417,
1260
+ "learning_rate": 8.525641025641026e-05,
1261
+ "loss": 0.366,
1262
+ "step": 179
1263
+ },
1264
+ {
1265
+ "epoch": 0.576,
1266
+ "grad_norm": 0.30424100160598755,
1267
+ "learning_rate": 8.461538461538461e-05,
1268
+ "loss": 0.5004,
1269
+ "step": 180
1270
+ },
1271
+ {
1272
+ "epoch": 0.5792,
1273
+ "grad_norm": 0.2819097638130188,
1274
+ "learning_rate": 8.397435897435898e-05,
1275
+ "loss": 0.4262,
1276
+ "step": 181
1277
+ },
1278
+ {
1279
+ "epoch": 0.5824,
1280
+ "grad_norm": 0.27605441212654114,
1281
+ "learning_rate": 8.333333333333334e-05,
1282
+ "loss": 0.4365,
1283
+ "step": 182
1284
+ },
1285
+ {
1286
+ "epoch": 0.5856,
1287
+ "grad_norm": 0.27287614345550537,
1288
+ "learning_rate": 8.26923076923077e-05,
1289
+ "loss": 0.4083,
1290
+ "step": 183
1291
+ },
1292
+ {
1293
+ "epoch": 0.5888,
1294
+ "grad_norm": 0.27792593836784363,
1295
+ "learning_rate": 8.205128205128205e-05,
1296
+ "loss": 0.4137,
1297
+ "step": 184
1298
+ },
1299
+ {
1300
+ "epoch": 0.592,
1301
+ "grad_norm": 0.3038672208786011,
1302
+ "learning_rate": 8.141025641025641e-05,
1303
+ "loss": 0.4728,
1304
+ "step": 185
1305
+ },
1306
+ {
1307
+ "epoch": 0.5952,
1308
+ "grad_norm": 0.28418487310409546,
1309
+ "learning_rate": 8.076923076923078e-05,
1310
+ "loss": 0.4671,
1311
+ "step": 186
1312
+ },
1313
+ {
1314
+ "epoch": 0.5984,
1315
+ "grad_norm": 0.2828688323497772,
1316
+ "learning_rate": 8.012820512820514e-05,
1317
+ "loss": 0.5008,
1318
+ "step": 187
1319
+ },
1320
+ {
1321
+ "epoch": 0.6016,
1322
+ "grad_norm": 0.3183538019657135,
1323
+ "learning_rate": 7.948717948717948e-05,
1324
+ "loss": 0.5282,
1325
+ "step": 188
1326
+ },
1327
+ {
1328
+ "epoch": 0.6048,
1329
+ "grad_norm": 0.30755531787872314,
1330
+ "learning_rate": 7.884615384615384e-05,
1331
+ "loss": 0.5238,
1332
+ "step": 189
1333
+ },
1334
+ {
1335
+ "epoch": 0.608,
1336
+ "grad_norm": 0.30897241830825806,
1337
+ "learning_rate": 7.820512820512821e-05,
1338
+ "loss": 0.5401,
1339
+ "step": 190
1340
+ },
1341
+ {
1342
+ "epoch": 0.6112,
1343
+ "grad_norm": 0.2755669355392456,
1344
+ "learning_rate": 7.756410256410257e-05,
1345
+ "loss": 0.4468,
1346
+ "step": 191
1347
+ },
1348
+ {
1349
+ "epoch": 0.6144,
1350
+ "grad_norm": 0.2606697380542755,
1351
+ "learning_rate": 7.692307692307693e-05,
1352
+ "loss": 0.387,
1353
+ "step": 192
1354
+ },
1355
+ {
1356
+ "epoch": 0.6176,
1357
+ "grad_norm": 0.3042752742767334,
1358
+ "learning_rate": 7.628205128205128e-05,
1359
+ "loss": 0.5305,
1360
+ "step": 193
1361
+ },
1362
+ {
1363
+ "epoch": 0.6208,
1364
+ "grad_norm": 0.29267027974128723,
1365
+ "learning_rate": 7.564102564102564e-05,
1366
+ "loss": 0.419,
1367
+ "step": 194
1368
+ },
1369
+ {
1370
+ "epoch": 0.624,
1371
+ "grad_norm": 0.30853956937789917,
1372
+ "learning_rate": 7.500000000000001e-05,
1373
+ "loss": 0.5416,
1374
+ "step": 195
1375
+ },
1376
+ {
1377
+ "epoch": 0.6272,
1378
+ "grad_norm": 0.3460753262042999,
1379
+ "learning_rate": 7.435897435897436e-05,
1380
+ "loss": 0.5196,
1381
+ "step": 196
1382
+ },
1383
+ {
1384
+ "epoch": 0.6304,
1385
+ "grad_norm": 0.298348993062973,
1386
+ "learning_rate": 7.371794871794872e-05,
1387
+ "loss": 0.4421,
1388
+ "step": 197
1389
+ },
1390
+ {
1391
+ "epoch": 0.6336,
1392
+ "grad_norm": 0.2961275577545166,
1393
+ "learning_rate": 7.307692307692307e-05,
1394
+ "loss": 0.4032,
1395
+ "step": 198
1396
+ },
1397
+ {
1398
+ "epoch": 0.6368,
1399
+ "grad_norm": 0.30500563979148865,
1400
+ "learning_rate": 7.243589743589744e-05,
1401
+ "loss": 0.442,
1402
+ "step": 199
1403
+ },
1404
+ {
1405
+ "epoch": 0.64,
1406
+ "grad_norm": 0.30142742395401,
1407
+ "learning_rate": 7.17948717948718e-05,
1408
+ "loss": 0.4375,
1409
+ "step": 200
1410
+ },
1411
+ {
1412
+ "epoch": 0.6432,
1413
+ "grad_norm": 0.26335790753364563,
1414
+ "learning_rate": 7.115384615384616e-05,
1415
+ "loss": 0.428,
1416
+ "step": 201
1417
+ },
1418
+ {
1419
+ "epoch": 0.6464,
1420
+ "grad_norm": 0.24412094056606293,
1421
+ "learning_rate": 7.051282051282052e-05,
1422
+ "loss": 0.3212,
1423
+ "step": 202
1424
+ },
1425
+ {
1426
+ "epoch": 0.6496,
1427
+ "grad_norm": 0.2796410918235779,
1428
+ "learning_rate": 6.987179487179487e-05,
1429
+ "loss": 0.4459,
1430
+ "step": 203
1431
+ },
1432
+ {
1433
+ "epoch": 0.6528,
1434
+ "grad_norm": 0.33633318543434143,
1435
+ "learning_rate": 6.923076923076924e-05,
1436
+ "loss": 0.5125,
1437
+ "step": 204
1438
+ },
1439
+ {
1440
+ "epoch": 0.656,
1441
+ "grad_norm": 0.3190767467021942,
1442
+ "learning_rate": 6.858974358974359e-05,
1443
+ "loss": 0.5465,
1444
+ "step": 205
1445
+ },
1446
+ {
1447
+ "epoch": 0.6592,
1448
+ "grad_norm": 0.30400681495666504,
1449
+ "learning_rate": 6.794871794871795e-05,
1450
+ "loss": 0.4667,
1451
+ "step": 206
1452
+ },
1453
+ {
1454
+ "epoch": 0.6624,
1455
+ "grad_norm": 0.294740229845047,
1456
+ "learning_rate": 6.730769230769232e-05,
1457
+ "loss": 0.4955,
1458
+ "step": 207
1459
+ },
1460
+ {
1461
+ "epoch": 0.6656,
1462
+ "grad_norm": 0.2467174381017685,
1463
+ "learning_rate": 6.666666666666667e-05,
1464
+ "loss": 0.3151,
1465
+ "step": 208
1466
+ },
1467
+ {
1468
+ "epoch": 0.6688,
1469
+ "grad_norm": 0.27507495880126953,
1470
+ "learning_rate": 6.602564102564102e-05,
1471
+ "loss": 0.4123,
1472
+ "step": 209
1473
+ },
1474
+ {
1475
+ "epoch": 0.672,
1476
+ "grad_norm": 0.2465631365776062,
1477
+ "learning_rate": 6.538461538461539e-05,
1478
+ "loss": 0.3117,
1479
+ "step": 210
1480
+ },
1481
+ {
1482
+ "epoch": 0.6752,
1483
+ "grad_norm": 0.3061293363571167,
1484
+ "learning_rate": 6.474358974358975e-05,
1485
+ "loss": 0.5389,
1486
+ "step": 211
1487
+ },
1488
+ {
1489
+ "epoch": 0.6784,
1490
+ "grad_norm": 0.2974298596382141,
1491
+ "learning_rate": 6.410256410256412e-05,
1492
+ "loss": 0.4471,
1493
+ "step": 212
1494
+ },
1495
+ {
1496
+ "epoch": 0.6816,
1497
+ "grad_norm": 0.2876061797142029,
1498
+ "learning_rate": 6.346153846153847e-05,
1499
+ "loss": 0.4253,
1500
+ "step": 213
1501
+ },
1502
+ {
1503
+ "epoch": 0.6848,
1504
+ "grad_norm": 0.29899370670318604,
1505
+ "learning_rate": 6.282051282051282e-05,
1506
+ "loss": 0.4474,
1507
+ "step": 214
1508
+ },
1509
+ {
1510
+ "epoch": 0.688,
1511
+ "grad_norm": 0.30990898609161377,
1512
+ "learning_rate": 6.217948717948718e-05,
1513
+ "loss": 0.3905,
1514
+ "step": 215
1515
+ },
1516
+ {
1517
+ "epoch": 0.6912,
1518
+ "grad_norm": 0.29554882645606995,
1519
+ "learning_rate": 6.153846153846155e-05,
1520
+ "loss": 0.4147,
1521
+ "step": 216
1522
+ },
1523
+ {
1524
+ "epoch": 0.6944,
1525
+ "grad_norm": 0.31249329447746277,
1526
+ "learning_rate": 6.089743589743589e-05,
1527
+ "loss": 0.4023,
1528
+ "step": 217
1529
+ },
1530
+ {
1531
+ "epoch": 0.6976,
1532
+ "grad_norm": 0.32120752334594727,
1533
+ "learning_rate": 6.025641025641026e-05,
1534
+ "loss": 0.4418,
1535
+ "step": 218
1536
+ },
1537
+ {
1538
+ "epoch": 0.7008,
1539
+ "grad_norm": 0.311110258102417,
1540
+ "learning_rate": 5.9615384615384616e-05,
1541
+ "loss": 0.463,
1542
+ "step": 219
1543
+ },
1544
+ {
1545
+ "epoch": 0.704,
1546
+ "grad_norm": 0.2687552571296692,
1547
+ "learning_rate": 5.897435897435898e-05,
1548
+ "loss": 0.3984,
1549
+ "step": 220
1550
+ },
1551
+ {
1552
+ "epoch": 0.7072,
1553
+ "grad_norm": 0.30315181612968445,
1554
+ "learning_rate": 5.833333333333334e-05,
1555
+ "loss": 0.5084,
1556
+ "step": 221
1557
+ },
1558
+ {
1559
+ "epoch": 0.7104,
1560
+ "grad_norm": 0.28704944252967834,
1561
+ "learning_rate": 5.769230769230769e-05,
1562
+ "loss": 0.4327,
1563
+ "step": 222
1564
+ },
1565
+ {
1566
+ "epoch": 0.7136,
1567
+ "grad_norm": 0.2689530551433563,
1568
+ "learning_rate": 5.705128205128205e-05,
1569
+ "loss": 0.3964,
1570
+ "step": 223
1571
+ },
1572
+ {
1573
+ "epoch": 0.7168,
1574
+ "grad_norm": 0.321878582239151,
1575
+ "learning_rate": 5.6410256410256414e-05,
1576
+ "loss": 0.4681,
1577
+ "step": 224
1578
+ },
1579
+ {
1580
+ "epoch": 0.72,
1581
+ "grad_norm": 0.30374661087989807,
1582
+ "learning_rate": 5.576923076923077e-05,
1583
+ "loss": 0.4465,
1584
+ "step": 225
1585
+ },
1586
+ {
1587
+ "epoch": 0.7232,
1588
+ "grad_norm": 0.29247525334358215,
1589
+ "learning_rate": 5.512820512820514e-05,
1590
+ "loss": 0.4501,
1591
+ "step": 226
1592
+ },
1593
+ {
1594
+ "epoch": 0.7264,
1595
+ "grad_norm": 0.274850994348526,
1596
+ "learning_rate": 5.448717948717948e-05,
1597
+ "loss": 0.3943,
1598
+ "step": 227
1599
+ },
1600
+ {
1601
+ "epoch": 0.7296,
1602
+ "grad_norm": 0.24561376869678497,
1603
+ "learning_rate": 5.384615384615385e-05,
1604
+ "loss": 0.3225,
1605
+ "step": 228
1606
+ },
1607
+ {
1608
+ "epoch": 0.7328,
1609
+ "grad_norm": 0.28236258029937744,
1610
+ "learning_rate": 5.3205128205128205e-05,
1611
+ "loss": 0.3247,
1612
+ "step": 229
1613
+ },
1614
+ {
1615
+ "epoch": 0.736,
1616
+ "grad_norm": 0.29767942428588867,
1617
+ "learning_rate": 5.256410256410257e-05,
1618
+ "loss": 0.4514,
1619
+ "step": 230
1620
+ },
1621
+ {
1622
+ "epoch": 0.7392,
1623
+ "grad_norm": 0.3310510516166687,
1624
+ "learning_rate": 5.192307692307693e-05,
1625
+ "loss": 0.4417,
1626
+ "step": 231
1627
+ },
1628
+ {
1629
+ "epoch": 0.7424,
1630
+ "grad_norm": 0.28120821714401245,
1631
+ "learning_rate": 5.128205128205128e-05,
1632
+ "loss": 0.3511,
1633
+ "step": 232
1634
+ },
1635
+ {
1636
+ "epoch": 0.7456,
1637
+ "grad_norm": 0.38378533720970154,
1638
+ "learning_rate": 5.0641025641025644e-05,
1639
+ "loss": 0.5135,
1640
+ "step": 233
1641
+ },
1642
+ {
1643
+ "epoch": 0.7488,
1644
+ "grad_norm": 0.3125383257865906,
1645
+ "learning_rate": 5e-05,
1646
+ "loss": 0.4614,
1647
+ "step": 234
1648
+ },
1649
+ {
1650
+ "epoch": 0.752,
1651
+ "grad_norm": 0.2549707591533661,
1652
+ "learning_rate": 4.935897435897436e-05,
1653
+ "loss": 0.3333,
1654
+ "step": 235
1655
+ },
1656
+ {
1657
+ "epoch": 0.7552,
1658
+ "grad_norm": 0.30307722091674805,
1659
+ "learning_rate": 4.871794871794872e-05,
1660
+ "loss": 0.4185,
1661
+ "step": 236
1662
+ },
1663
+ {
1664
+ "epoch": 0.7584,
1665
+ "grad_norm": 0.2714983820915222,
1666
+ "learning_rate": 4.8076923076923084e-05,
1667
+ "loss": 0.3744,
1668
+ "step": 237
1669
+ },
1670
+ {
1671
+ "epoch": 0.7616,
1672
+ "grad_norm": 0.29321545362472534,
1673
+ "learning_rate": 4.7435897435897435e-05,
1674
+ "loss": 0.4177,
1675
+ "step": 238
1676
+ },
1677
+ {
1678
+ "epoch": 0.7648,
1679
+ "grad_norm": 0.3908475637435913,
1680
+ "learning_rate": 4.67948717948718e-05,
1681
+ "loss": 0.5391,
1682
+ "step": 239
1683
+ },
1684
+ {
1685
+ "epoch": 0.768,
1686
+ "grad_norm": 0.2907383143901825,
1687
+ "learning_rate": 4.615384615384616e-05,
1688
+ "loss": 0.4457,
1689
+ "step": 240
1690
+ },
1691
+ {
1692
+ "epoch": 0.7712,
1693
+ "grad_norm": 0.32630524039268494,
1694
+ "learning_rate": 4.5512820512820516e-05,
1695
+ "loss": 0.4652,
1696
+ "step": 241
1697
+ },
1698
+ {
1699
+ "epoch": 0.7744,
1700
+ "grad_norm": 0.33661359548568726,
1701
+ "learning_rate": 4.4871794871794874e-05,
1702
+ "loss": 0.4093,
1703
+ "step": 242
1704
+ },
1705
+ {
1706
+ "epoch": 0.7776,
1707
+ "grad_norm": 0.27634692192077637,
1708
+ "learning_rate": 4.423076923076923e-05,
1709
+ "loss": 0.3958,
1710
+ "step": 243
1711
+ },
1712
+ {
1713
+ "epoch": 0.7808,
1714
+ "grad_norm": 0.40667521953582764,
1715
+ "learning_rate": 4.358974358974359e-05,
1716
+ "loss": 0.4525,
1717
+ "step": 244
1718
+ },
1719
+ {
1720
+ "epoch": 0.784,
1721
+ "grad_norm": 0.30798301100730896,
1722
+ "learning_rate": 4.294871794871795e-05,
1723
+ "loss": 0.4243,
1724
+ "step": 245
1725
+ },
1726
+ {
1727
+ "epoch": 0.7872,
1728
+ "grad_norm": 0.3315953016281128,
1729
+ "learning_rate": 4.230769230769231e-05,
1730
+ "loss": 0.4833,
1731
+ "step": 246
1732
+ },
1733
+ {
1734
+ "epoch": 0.7904,
1735
+ "grad_norm": 0.29299864172935486,
1736
+ "learning_rate": 4.166666666666667e-05,
1737
+ "loss": 0.3727,
1738
+ "step": 247
1739
+ },
1740
+ {
1741
+ "epoch": 0.7936,
1742
+ "grad_norm": 0.3195595443248749,
1743
+ "learning_rate": 4.1025641025641023e-05,
1744
+ "loss": 0.4243,
1745
+ "step": 248
1746
+ },
1747
+ {
1748
+ "epoch": 0.7968,
1749
+ "grad_norm": 0.28434109687805176,
1750
+ "learning_rate": 4.038461538461539e-05,
1751
+ "loss": 0.4001,
1752
+ "step": 249
1753
+ },
1754
+ {
1755
+ "epoch": 0.8,
1756
+ "grad_norm": 0.28316378593444824,
1757
+ "learning_rate": 3.974358974358974e-05,
1758
+ "loss": 0.3611,
1759
+ "step": 250
1760
+ },
1761
+ {
1762
+ "epoch": 0.8032,
1763
+ "grad_norm": 0.2709490656852722,
1764
+ "learning_rate": 3.9102564102564105e-05,
1765
+ "loss": 0.337,
1766
+ "step": 251
1767
+ },
1768
+ {
1769
+ "epoch": 0.8064,
1770
+ "grad_norm": 0.2810059189796448,
1771
+ "learning_rate": 3.846153846153846e-05,
1772
+ "loss": 0.3383,
1773
+ "step": 252
1774
+ },
1775
+ {
1776
+ "epoch": 0.8096,
1777
+ "grad_norm": 0.31759873032569885,
1778
+ "learning_rate": 3.782051282051282e-05,
1779
+ "loss": 0.4404,
1780
+ "step": 253
1781
+ },
1782
+ {
1783
+ "epoch": 0.8128,
1784
+ "grad_norm": 0.27550122141838074,
1785
+ "learning_rate": 3.717948717948718e-05,
1786
+ "loss": 0.3898,
1787
+ "step": 254
1788
+ },
1789
+ {
1790
+ "epoch": 0.816,
1791
+ "grad_norm": 0.29137155413627625,
1792
+ "learning_rate": 3.653846153846154e-05,
1793
+ "loss": 0.3887,
1794
+ "step": 255
1795
+ },
1796
+ {
1797
+ "epoch": 0.8192,
1798
+ "grad_norm": 0.30342838168144226,
1799
+ "learning_rate": 3.58974358974359e-05,
1800
+ "loss": 0.3747,
1801
+ "step": 256
1802
+ },
1803
+ {
1804
+ "epoch": 0.8224,
1805
+ "grad_norm": 0.3385205566883087,
1806
+ "learning_rate": 3.525641025641026e-05,
1807
+ "loss": 0.4591,
1808
+ "step": 257
1809
+ },
1810
+ {
1811
+ "epoch": 0.8256,
1812
+ "grad_norm": 0.28427594900131226,
1813
+ "learning_rate": 3.461538461538462e-05,
1814
+ "loss": 0.3955,
1815
+ "step": 258
1816
+ },
1817
+ {
1818
+ "epoch": 0.8288,
1819
+ "grad_norm": 0.3554467558860779,
1820
+ "learning_rate": 3.397435897435898e-05,
1821
+ "loss": 0.4754,
1822
+ "step": 259
1823
+ },
1824
+ {
1825
+ "epoch": 0.832,
1826
+ "grad_norm": 0.2872997224330902,
1827
+ "learning_rate": 3.3333333333333335e-05,
1828
+ "loss": 0.3336,
1829
+ "step": 260
1830
+ },
1831
+ {
1832
+ "epoch": 0.8352,
1833
+ "grad_norm": 0.32470715045928955,
1834
+ "learning_rate": 3.269230769230769e-05,
1835
+ "loss": 0.5002,
1836
+ "step": 261
1837
+ },
1838
+ {
1839
+ "epoch": 0.8384,
1840
+ "grad_norm": 0.2823026180267334,
1841
+ "learning_rate": 3.205128205128206e-05,
1842
+ "loss": 0.4217,
1843
+ "step": 262
1844
+ },
1845
+ {
1846
+ "epoch": 0.8416,
1847
+ "grad_norm": 0.27532005310058594,
1848
+ "learning_rate": 3.141025641025641e-05,
1849
+ "loss": 0.3505,
1850
+ "step": 263
1851
+ },
1852
+ {
1853
+ "epoch": 0.8448,
1854
+ "grad_norm": 0.30065861344337463,
1855
+ "learning_rate": 3.0769230769230774e-05,
1856
+ "loss": 0.385,
1857
+ "step": 264
1858
+ },
1859
+ {
1860
+ "epoch": 0.848,
1861
+ "grad_norm": 0.3140447437763214,
1862
+ "learning_rate": 3.012820512820513e-05,
1863
+ "loss": 0.4599,
1864
+ "step": 265
1865
+ },
1866
+ {
1867
+ "epoch": 0.8512,
1868
+ "grad_norm": 0.30165910720825195,
1869
+ "learning_rate": 2.948717948717949e-05,
1870
+ "loss": 0.4027,
1871
+ "step": 266
1872
+ },
1873
+ {
1874
+ "epoch": 0.8544,
1875
+ "grad_norm": 0.3036094307899475,
1876
+ "learning_rate": 2.8846153846153845e-05,
1877
+ "loss": 0.406,
1878
+ "step": 267
1879
+ },
1880
+ {
1881
+ "epoch": 0.8576,
1882
+ "grad_norm": 0.31652310490608215,
1883
+ "learning_rate": 2.8205128205128207e-05,
1884
+ "loss": 0.4115,
1885
+ "step": 268
1886
+ },
1887
+ {
1888
+ "epoch": 0.8608,
1889
+ "grad_norm": 0.3006727397441864,
1890
+ "learning_rate": 2.756410256410257e-05,
1891
+ "loss": 0.4464,
1892
+ "step": 269
1893
+ },
1894
+ {
1895
+ "epoch": 0.864,
1896
+ "grad_norm": 0.34472909569740295,
1897
+ "learning_rate": 2.6923076923076923e-05,
1898
+ "loss": 0.4643,
1899
+ "step": 270
1900
+ },
1901
+ {
1902
+ "epoch": 0.8672,
1903
+ "grad_norm": 0.2880076766014099,
1904
+ "learning_rate": 2.6282051282051285e-05,
1905
+ "loss": 0.3675,
1906
+ "step": 271
1907
+ },
1908
+ {
1909
+ "epoch": 0.8704,
1910
+ "grad_norm": 0.34488052129745483,
1911
+ "learning_rate": 2.564102564102564e-05,
1912
+ "loss": 0.4661,
1913
+ "step": 272
1914
+ },
1915
+ {
1916
+ "epoch": 0.8736,
1917
+ "grad_norm": 0.30622804164886475,
1918
+ "learning_rate": 2.5e-05,
1919
+ "loss": 0.405,
1920
+ "step": 273
1921
+ },
1922
+ {
1923
+ "epoch": 0.8768,
1924
+ "grad_norm": 0.3236006200313568,
1925
+ "learning_rate": 2.435897435897436e-05,
1926
+ "loss": 0.4426,
1927
+ "step": 274
1928
+ },
1929
+ {
1930
+ "epoch": 0.88,
1931
+ "grad_norm": 0.3554222285747528,
1932
+ "learning_rate": 2.3717948717948718e-05,
1933
+ "loss": 0.4809,
1934
+ "step": 275
1935
+ },
1936
+ {
1937
+ "epoch": 0.8832,
1938
+ "grad_norm": 0.34005558490753174,
1939
+ "learning_rate": 2.307692307692308e-05,
1940
+ "loss": 0.417,
1941
+ "step": 276
1942
+ },
1943
+ {
1944
+ "epoch": 0.8864,
1945
+ "grad_norm": 0.30246976017951965,
1946
+ "learning_rate": 2.2435897435897437e-05,
1947
+ "loss": 0.4264,
1948
+ "step": 277
1949
+ },
1950
+ {
1951
+ "epoch": 0.8896,
1952
+ "grad_norm": 0.3341597616672516,
1953
+ "learning_rate": 2.1794871794871795e-05,
1954
+ "loss": 0.4871,
1955
+ "step": 278
1956
+ },
1957
+ {
1958
+ "epoch": 0.8928,
1959
+ "grad_norm": 0.349656343460083,
1960
+ "learning_rate": 2.1153846153846154e-05,
1961
+ "loss": 0.5549,
1962
+ "step": 279
1963
+ },
1964
+ {
1965
+ "epoch": 0.896,
1966
+ "grad_norm": 0.32281672954559326,
1967
+ "learning_rate": 2.0512820512820512e-05,
1968
+ "loss": 0.3897,
1969
+ "step": 280
1970
+ },
1971
+ {
1972
+ "epoch": 0.8992,
1973
+ "grad_norm": 0.34751957654953003,
1974
+ "learning_rate": 1.987179487179487e-05,
1975
+ "loss": 0.429,
1976
+ "step": 281
1977
+ },
1978
+ {
1979
+ "epoch": 0.9024,
1980
+ "grad_norm": 0.30903372168540955,
1981
+ "learning_rate": 1.923076923076923e-05,
1982
+ "loss": 0.3939,
1983
+ "step": 282
1984
+ },
1985
+ {
1986
+ "epoch": 0.9056,
1987
+ "grad_norm": 0.29195931553840637,
1988
+ "learning_rate": 1.858974358974359e-05,
1989
+ "loss": 0.3129,
1990
+ "step": 283
1991
+ },
1992
+ {
1993
+ "epoch": 0.9088,
1994
+ "grad_norm": 0.3270445168018341,
1995
+ "learning_rate": 1.794871794871795e-05,
1996
+ "loss": 0.4435,
1997
+ "step": 284
1998
+ },
1999
+ {
2000
+ "epoch": 0.912,
2001
+ "grad_norm": 0.3003033995628357,
2002
+ "learning_rate": 1.730769230769231e-05,
2003
+ "loss": 0.3446,
2004
+ "step": 285
2005
+ },
2006
+ {
2007
+ "epoch": 0.9152,
2008
+ "grad_norm": 0.35107478499412537,
2009
+ "learning_rate": 1.6666666666666667e-05,
2010
+ "loss": 0.5102,
2011
+ "step": 286
2012
+ },
2013
+ {
2014
+ "epoch": 0.9184,
2015
+ "grad_norm": 0.28601357340812683,
2016
+ "learning_rate": 1.602564102564103e-05,
2017
+ "loss": 0.3619,
2018
+ "step": 287
2019
+ },
2020
+ {
2021
+ "epoch": 0.9216,
2022
+ "grad_norm": 0.2772061228752136,
2023
+ "learning_rate": 1.5384615384615387e-05,
2024
+ "loss": 0.3428,
2025
+ "step": 288
2026
+ },
2027
+ {
2028
+ "epoch": 0.9248,
2029
+ "grad_norm": 0.3195333182811737,
2030
+ "learning_rate": 1.4743589743589745e-05,
2031
+ "loss": 0.4477,
2032
+ "step": 289
2033
+ },
2034
+ {
2035
+ "epoch": 0.928,
2036
+ "grad_norm": 0.2672041654586792,
2037
+ "learning_rate": 1.4102564102564104e-05,
2038
+ "loss": 0.2811,
2039
+ "step": 290
2040
+ },
2041
+ {
2042
+ "epoch": 0.9312,
2043
+ "grad_norm": 0.36466383934020996,
2044
+ "learning_rate": 1.3461538461538462e-05,
2045
+ "loss": 0.5833,
2046
+ "step": 291
2047
+ },
2048
+ {
2049
+ "epoch": 0.9344,
2050
+ "grad_norm": 0.31829240918159485,
2051
+ "learning_rate": 1.282051282051282e-05,
2052
+ "loss": 0.4144,
2053
+ "step": 292
2054
+ },
2055
+ {
2056
+ "epoch": 0.9376,
2057
+ "grad_norm": 0.3314779996871948,
2058
+ "learning_rate": 1.217948717948718e-05,
2059
+ "loss": 0.458,
2060
+ "step": 293
2061
+ },
2062
+ {
2063
+ "epoch": 0.9408,
2064
+ "grad_norm": 0.31584641337394714,
2065
+ "learning_rate": 1.153846153846154e-05,
2066
+ "loss": 0.4482,
2067
+ "step": 294
2068
+ },
2069
+ {
2070
+ "epoch": 0.944,
2071
+ "grad_norm": 0.2965344190597534,
2072
+ "learning_rate": 1.0897435897435898e-05,
2073
+ "loss": 0.3293,
2074
+ "step": 295
2075
+ },
2076
+ {
2077
+ "epoch": 0.9472,
2078
+ "grad_norm": 0.2547074556350708,
2079
+ "learning_rate": 1.0256410256410256e-05,
2080
+ "loss": 0.3007,
2081
+ "step": 296
2082
+ },
2083
+ {
2084
+ "epoch": 0.9504,
2085
+ "grad_norm": 0.3165215849876404,
2086
+ "learning_rate": 9.615384615384616e-06,
2087
+ "loss": 0.4053,
2088
+ "step": 297
2089
+ },
2090
+ {
2091
+ "epoch": 0.9536,
2092
+ "grad_norm": 0.29612070322036743,
2093
+ "learning_rate": 8.974358974358976e-06,
2094
+ "loss": 0.4188,
2095
+ "step": 298
2096
+ },
2097
+ {
2098
+ "epoch": 0.9568,
2099
+ "grad_norm": 0.3118067681789398,
2100
+ "learning_rate": 8.333333333333334e-06,
2101
+ "loss": 0.4429,
2102
+ "step": 299
2103
+ },
2104
+ {
2105
+ "epoch": 0.96,
2106
+ "grad_norm": 0.29589030146598816,
2107
+ "learning_rate": 7.692307692307694e-06,
2108
+ "loss": 0.3348,
2109
+ "step": 300
2110
+ }
2111
+ ],
2112
+ "logging_steps": 1,
2113
+ "max_steps": 312,
2114
+ "num_input_tokens_seen": 0,
2115
+ "num_train_epochs": 1,
2116
+ "save_steps": 100,
2117
+ "stateful_callbacks": {
2118
+ "TrainerControl": {
2119
+ "args": {
2120
+ "should_epoch_stop": false,
2121
+ "should_evaluate": false,
2122
+ "should_log": false,
2123
+ "should_save": true,
2124
+ "should_training_stop": false
2125
+ },
2126
+ "attributes": {}
2127
+ }
2128
+ },
2129
+ "total_flos": 3.91880651046912e+16,
2130
+ "train_batch_size": 4,
2131
+ "trial_name": null,
2132
+ "trial_params": null
2133
+ }
Stonk_Training_SFT/checkpoint-300/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46e61b3ea2344ac46fb729121ab3faf1d3cbf202ba9ecb6f78320571a83fec82
3
+ size 5432
Stonk_Training_SFT/checkpoint-312/README.md ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-1.5B-Instruct
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Stonk_Training_SFT Checkpoint 312
7
+
8
+ This checkpoint represents an intermediate state of the stock prediction model fine-tuned to analyze company information and provide structured UP/DOWN predictions with percentage estimates.
9
+
10
+ ## Model Details
11
+
12
+ ### Model Description
13
+
14
+ This checkpoint of the Stonk_Training_SFT model represents the model after 312 training steps. The model was fine-tuned from Qwen2.5-1.5B-Instruct using Parameter-Efficient Fine-Tuning (PEFT) with Low-Rank Adaptation (LoRA). It has been trained to:
15
+
16
+ 1. Follow a specific formatted output structure using XML-style tags
17
+ 2. Analyze company information, price trends, and news headlines
18
+ 3. Make reasoned predictions about stock price movements
19
+
20
+ - **Developed by:** 2084Collective
21
+ - **Model type:** LoRA fine-tuned Qwen2.5-1.5B-Instruct (Checkpoint 312)
22
+ - **Language(s):** English
23
+ - **License:** Research only - not for commercial or production use
24
+ - **Finetuned from model:** Qwen/Qwen2.5-1.5B-Instruct
25
+
26
+ ## Uses
27
+
28
+ ### Direct Use
29
+
30
+ This checkpoint can be used to analyze stock information and generate structured predictions. It expects input containing:
31
+ - Company ticker symbol
32
+ - Company description
33
+ - Current and previous stock prices
34
+ - Recent news headlines
35
+
36
+ It produces responses with the following structure:
37
+ ```
38
+ <reason>
39
+ Detailed reasoning about stock movement prediction
40
+ </reason>
41
+
42
+ <answer>
43
+ UP/DOWN X.X%
44
+ </answer>
45
+ ```
46
+
47
+ ### Out-of-Scope Use
48
+
49
+ This checkpoint should NOT be used for:
50
+ - Actual financial advice or investment decisions
51
+ - Production trading systems
52
+ - Commercial applications
53
+
54
+ The model's predictions are for research and educational purposes only.
55
+
56
+ ## Bias, Risks, and Limitations
57
+
58
+ - This checkpoint may not have fully balanced UP/DOWN prediction capabilities
59
+ - The model has no access to real market data beyond what's in the prompt
60
+ - Predictions are based only on the limited information provided
61
+ - Stock market predictions are inherently uncertain and influenced by many factors
62
+ - As an intermediate checkpoint, it may have inconsistencies in output formatting
63
+
64
+ ### Recommendations
65
+
66
+ - Use outputs for educational and research purposes only
67
+ - Do not make financial decisions based on the model's predictions
68
+ - Consider outputs as one of many inputs in a broader analytical process
69
+ - For more refined predictions, use the final model rather than this checkpoint
70
+
71
+ ## How to Get Started with the Model
72
+
73
+ Use the code below to get started with this checkpoint:
74
+
75
+ ```python:Stonk_Training_SFT/checkpoint-312/README.md
76
+ from transformers import AutoModelForCausalLM, AutoTokenizer
77
+ from peft import PeftModel
78
+
79
+ # Load the base model and tokenizer
80
+ model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-1.5B-Instruct")
81
+ tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-1.5B-Instruct")
82
+
83
+ # Load the LoRA adapter checkpoint
84
+ model = PeftModel.from_pretrained(model, "./Stonk_Training_SFT/checkpoint-312")
85
+
86
+ # Prepare the prompt
87
+ system_prompt = """You are an expert stock market analyst with decades of experience.
88
+
89
+ IMPORTANT: You MUST use the following format for your response:
90
+
91
+ <reason>
92
+ Your detailed analysis explaining why the stock will move up or down. Include technical indicators, news impact, and market trends.
93
+ </reason>
94
+
95
+ <answer>
96
+ State UP or DOWN followed by a percentage (e.g., "UP 2.3%" or "DOWN 1.5%")
97
+ </answer>"""
98
+
99
+ user_prompt = """Stock: AMZN
100
+ Company: Amazon.com, Inc.
101
+ Description: Amazon.com, Inc. is an American multinational technology company focusing on e-commerce, cloud computing, online advertising, digital streaming, and artificial intelligence.
102
+ Current Price: $175.00
103
+ Previous Close: $172.50
104
+
105
+ Recent News:
106
+ - Amazon Web Services announces new AI capabilities
107
+ - E-commerce sales exceed analyst expectations
108
+ - Amazon increases Prime subscription cost
109
+
110
+ Question: Based on this information, analyze whether this stock will go UP or DOWN in the next trading day. Provide your reasoning and a specific percentage prediction."""
111
+
112
+ # Format with chat template
113
+ chat_prompt = f"<|im_start|>system\n{system_prompt}<|im_end|>\n<|im_start|>user\n{user_prompt}<|im_end|>\n<|im_start|>assistant\n"
114
+
115
+ # Generate prediction
116
+ inputs = tokenizer(chat_prompt, return_tensors="pt").to(model.device)
117
+ outputs = model.generate(**inputs, max_new_tokens=300)
118
+ response = tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True)
119
+ print(response)
120
+ ```
121
+
122
+ ## Training Details
123
+
124
+ ### Training Data
125
+
126
+ This checkpoint represents training on:
127
+ 1. Synthetic stock prediction examples
128
+ 2. A mix of UP and DOWN prediction scenarios
129
+ 3. Various company profiles with different types of news
130
+
131
+ ### Training Procedure
132
+
133
+ This checkpoint was saved during the training process after 312 steps of fine-tuning.
134
+
135
+ #### Training Hyperparameters
136
+
137
+ - **Training regime:** fp16 mixed precision
138
+ - **LoRA Configuration:**
139
+ - r=8
140
+ - lora_alpha=16
141
+ - lora_dropout=0.05
142
+ - Target modules: ["q_proj", "k_proj", "v_proj", "o_proj"]
143
+
144
+ ## Evaluation
145
+
146
+ As an intermediate checkpoint, this model may show:
147
+ - Improving but not fully refined tag format usage
148
+ - Developing balance between UP and DOWN predictions
149
+ - Reasonable but not fully optimized percentage estimates
150
+
151
+ ## Framework versions
152
+
153
+ - PEFT 0.14.0
154
+ - Transformers 4.37.0
155
+ - PyTorch 2.1.0
Stonk_Training_SFT/checkpoint-312/adapter_config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen2.5-1.5B-Instruct",
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": 32,
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
+ "v_proj",
28
+ "down_proj",
29
+ "q_proj",
30
+ "up_proj",
31
+ "gate_proj",
32
+ "o_proj"
33
+ ],
34
+ "task_type": "CAUSAL_LM",
35
+ "use_dora": false,
36
+ "use_rslora": false
37
+ }
Stonk_Training_SFT/checkpoint-312/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e46977a6d1b60085f1a175cdee93f3868b58220446dcd045fbbb0045b5610bda
3
+ size 73911112
Stonk_Training_SFT/checkpoint-312/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:010c96eef481dcbf24fd904bd78799471a921591132e9dc96cc376b1474867d4
3
+ size 148047722
Stonk_Training_SFT/checkpoint-312/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d3ce3643048833b4eb6d5d5aa3c14251b48b61ee442dbd7946f2671925793fa
3
+ size 14244
Stonk_Training_SFT/checkpoint-312/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da0a333750d52e9ce5c74b2f1dcc9feae57a1d36067e56a00ec8f1d367a90dd5
3
+ size 988
Stonk_Training_SFT/checkpoint-312/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07515c2b046d99c3743a994e794dd47b173671b79b64b92ecc764813da2c450b
3
+ size 1064
Stonk_Training_SFT/checkpoint-312/trainer_state.json ADDED
@@ -0,0 +1,2217 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.9984,
5
+ "eval_steps": 500,
6
+ "global_step": 312,
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.0032,
13
+ "grad_norm": 1.0318742990493774,
14
+ "learning_rate": 0.00019935897435897437,
15
+ "loss": 2.444,
16
+ "step": 1
17
+ },
18
+ {
19
+ "epoch": 0.0064,
20
+ "grad_norm": 0.6106225252151489,
21
+ "learning_rate": 0.00019871794871794874,
22
+ "loss": 2.2868,
23
+ "step": 2
24
+ },
25
+ {
26
+ "epoch": 0.0096,
27
+ "grad_norm": 0.4373067617416382,
28
+ "learning_rate": 0.0001980769230769231,
29
+ "loss": 2.1701,
30
+ "step": 3
31
+ },
32
+ {
33
+ "epoch": 0.0128,
34
+ "grad_norm": 0.4335378408432007,
35
+ "learning_rate": 0.00019743589743589744,
36
+ "loss": 2.1096,
37
+ "step": 4
38
+ },
39
+ {
40
+ "epoch": 0.016,
41
+ "grad_norm": 0.49052542448043823,
42
+ "learning_rate": 0.00019679487179487178,
43
+ "loss": 1.9543,
44
+ "step": 5
45
+ },
46
+ {
47
+ "epoch": 0.0192,
48
+ "grad_norm": 0.5317227244377136,
49
+ "learning_rate": 0.00019615384615384615,
50
+ "loss": 1.8996,
51
+ "step": 6
52
+ },
53
+ {
54
+ "epoch": 0.0224,
55
+ "grad_norm": 0.5240360498428345,
56
+ "learning_rate": 0.0001955128205128205,
57
+ "loss": 1.8271,
58
+ "step": 7
59
+ },
60
+ {
61
+ "epoch": 0.0256,
62
+ "grad_norm": 0.6232216954231262,
63
+ "learning_rate": 0.00019487179487179487,
64
+ "loss": 1.554,
65
+ "step": 8
66
+ },
67
+ {
68
+ "epoch": 0.0288,
69
+ "grad_norm": 0.4871944785118103,
70
+ "learning_rate": 0.00019423076923076924,
71
+ "loss": 1.6762,
72
+ "step": 9
73
+ },
74
+ {
75
+ "epoch": 0.032,
76
+ "grad_norm": 0.4941597878932953,
77
+ "learning_rate": 0.0001935897435897436,
78
+ "loss": 1.4755,
79
+ "step": 10
80
+ },
81
+ {
82
+ "epoch": 0.0352,
83
+ "grad_norm": 0.49265003204345703,
84
+ "learning_rate": 0.00019294871794871797,
85
+ "loss": 1.4558,
86
+ "step": 11
87
+ },
88
+ {
89
+ "epoch": 0.0384,
90
+ "grad_norm": 0.5133666396141052,
91
+ "learning_rate": 0.00019230769230769233,
92
+ "loss": 1.4057,
93
+ "step": 12
94
+ },
95
+ {
96
+ "epoch": 0.0416,
97
+ "grad_norm": 0.5097830295562744,
98
+ "learning_rate": 0.00019166666666666667,
99
+ "loss": 1.2189,
100
+ "step": 13
101
+ },
102
+ {
103
+ "epoch": 0.0448,
104
+ "grad_norm": 0.4502263367176056,
105
+ "learning_rate": 0.00019102564102564104,
106
+ "loss": 1.4004,
107
+ "step": 14
108
+ },
109
+ {
110
+ "epoch": 0.048,
111
+ "grad_norm": 0.43125396966934204,
112
+ "learning_rate": 0.00019038461538461538,
113
+ "loss": 1.2261,
114
+ "step": 15
115
+ },
116
+ {
117
+ "epoch": 0.0512,
118
+ "grad_norm": 0.5045803189277649,
119
+ "learning_rate": 0.00018974358974358974,
120
+ "loss": 1.1501,
121
+ "step": 16
122
+ },
123
+ {
124
+ "epoch": 0.0544,
125
+ "grad_norm": 0.385760098695755,
126
+ "learning_rate": 0.0001891025641025641,
127
+ "loss": 1.1648,
128
+ "step": 17
129
+ },
130
+ {
131
+ "epoch": 0.0576,
132
+ "grad_norm": 0.40407794713974,
133
+ "learning_rate": 0.00018846153846153847,
134
+ "loss": 1.0138,
135
+ "step": 18
136
+ },
137
+ {
138
+ "epoch": 0.0608,
139
+ "grad_norm": 0.5278863310813904,
140
+ "learning_rate": 0.00018782051282051283,
141
+ "loss": 1.0064,
142
+ "step": 19
143
+ },
144
+ {
145
+ "epoch": 0.064,
146
+ "grad_norm": 0.42704564332962036,
147
+ "learning_rate": 0.0001871794871794872,
148
+ "loss": 1.033,
149
+ "step": 20
150
+ },
151
+ {
152
+ "epoch": 0.0672,
153
+ "grad_norm": 0.40699487924575806,
154
+ "learning_rate": 0.00018653846153846154,
155
+ "loss": 1.096,
156
+ "step": 21
157
+ },
158
+ {
159
+ "epoch": 0.0704,
160
+ "grad_norm": 0.49143341183662415,
161
+ "learning_rate": 0.0001858974358974359,
162
+ "loss": 1.0027,
163
+ "step": 22
164
+ },
165
+ {
166
+ "epoch": 0.0736,
167
+ "grad_norm": 0.39408907294273376,
168
+ "learning_rate": 0.00018525641025641027,
169
+ "loss": 0.9692,
170
+ "step": 23
171
+ },
172
+ {
173
+ "epoch": 0.0768,
174
+ "grad_norm": 0.40637388825416565,
175
+ "learning_rate": 0.00018461538461538463,
176
+ "loss": 0.8652,
177
+ "step": 24
178
+ },
179
+ {
180
+ "epoch": 0.08,
181
+ "grad_norm": 0.46840283274650574,
182
+ "learning_rate": 0.00018397435897435897,
183
+ "loss": 0.7854,
184
+ "step": 25
185
+ },
186
+ {
187
+ "epoch": 0.0832,
188
+ "grad_norm": 0.49589014053344727,
189
+ "learning_rate": 0.00018333333333333334,
190
+ "loss": 0.7093,
191
+ "step": 26
192
+ },
193
+ {
194
+ "epoch": 0.0864,
195
+ "grad_norm": 0.426786333322525,
196
+ "learning_rate": 0.0001826923076923077,
197
+ "loss": 0.7803,
198
+ "step": 27
199
+ },
200
+ {
201
+ "epoch": 0.0896,
202
+ "grad_norm": 0.43341225385665894,
203
+ "learning_rate": 0.00018205128205128207,
204
+ "loss": 0.6717,
205
+ "step": 28
206
+ },
207
+ {
208
+ "epoch": 0.0928,
209
+ "grad_norm": 0.35544857382774353,
210
+ "learning_rate": 0.00018141025641025643,
211
+ "loss": 0.6876,
212
+ "step": 29
213
+ },
214
+ {
215
+ "epoch": 0.096,
216
+ "grad_norm": 0.3088377118110657,
217
+ "learning_rate": 0.00018076923076923077,
218
+ "loss": 0.8013,
219
+ "step": 30
220
+ },
221
+ {
222
+ "epoch": 0.0992,
223
+ "grad_norm": 0.5275241732597351,
224
+ "learning_rate": 0.00018012820512820513,
225
+ "loss": 0.6156,
226
+ "step": 31
227
+ },
228
+ {
229
+ "epoch": 0.1024,
230
+ "grad_norm": 0.32654592394828796,
231
+ "learning_rate": 0.0001794871794871795,
232
+ "loss": 0.6555,
233
+ "step": 32
234
+ },
235
+ {
236
+ "epoch": 0.1056,
237
+ "grad_norm": 0.2824726402759552,
238
+ "learning_rate": 0.00017884615384615386,
239
+ "loss": 0.5935,
240
+ "step": 33
241
+ },
242
+ {
243
+ "epoch": 0.1088,
244
+ "grad_norm": 0.2731788158416748,
245
+ "learning_rate": 0.00017820512820512823,
246
+ "loss": 0.7172,
247
+ "step": 34
248
+ },
249
+ {
250
+ "epoch": 0.112,
251
+ "grad_norm": 0.2869996428489685,
252
+ "learning_rate": 0.00017756410256410257,
253
+ "loss": 0.6094,
254
+ "step": 35
255
+ },
256
+ {
257
+ "epoch": 0.1152,
258
+ "grad_norm": 0.2364930361509323,
259
+ "learning_rate": 0.00017692307692307693,
260
+ "loss": 0.6224,
261
+ "step": 36
262
+ },
263
+ {
264
+ "epoch": 0.1184,
265
+ "grad_norm": 0.23826579749584198,
266
+ "learning_rate": 0.0001762820512820513,
267
+ "loss": 0.6619,
268
+ "step": 37
269
+ },
270
+ {
271
+ "epoch": 0.1216,
272
+ "grad_norm": 0.2075989544391632,
273
+ "learning_rate": 0.00017564102564102566,
274
+ "loss": 0.5132,
275
+ "step": 38
276
+ },
277
+ {
278
+ "epoch": 0.1248,
279
+ "grad_norm": 0.21996797621250153,
280
+ "learning_rate": 0.000175,
281
+ "loss": 0.5349,
282
+ "step": 39
283
+ },
284
+ {
285
+ "epoch": 0.128,
286
+ "grad_norm": 0.22936391830444336,
287
+ "learning_rate": 0.00017435897435897436,
288
+ "loss": 0.6609,
289
+ "step": 40
290
+ },
291
+ {
292
+ "epoch": 0.1312,
293
+ "grad_norm": 0.22315745055675507,
294
+ "learning_rate": 0.00017371794871794873,
295
+ "loss": 0.601,
296
+ "step": 41
297
+ },
298
+ {
299
+ "epoch": 0.1344,
300
+ "grad_norm": 0.23068805038928986,
301
+ "learning_rate": 0.0001730769230769231,
302
+ "loss": 0.5872,
303
+ "step": 42
304
+ },
305
+ {
306
+ "epoch": 0.1376,
307
+ "grad_norm": 0.21181653439998627,
308
+ "learning_rate": 0.00017243589743589746,
309
+ "loss": 0.562,
310
+ "step": 43
311
+ },
312
+ {
313
+ "epoch": 0.1408,
314
+ "grad_norm": 0.2169111967086792,
315
+ "learning_rate": 0.0001717948717948718,
316
+ "loss": 0.5454,
317
+ "step": 44
318
+ },
319
+ {
320
+ "epoch": 0.144,
321
+ "grad_norm": 0.23763957619667053,
322
+ "learning_rate": 0.00017115384615384616,
323
+ "loss": 0.5714,
324
+ "step": 45
325
+ },
326
+ {
327
+ "epoch": 0.1472,
328
+ "grad_norm": 0.23329143226146698,
329
+ "learning_rate": 0.00017051282051282053,
330
+ "loss": 0.6302,
331
+ "step": 46
332
+ },
333
+ {
334
+ "epoch": 0.1504,
335
+ "grad_norm": 0.24837623536586761,
336
+ "learning_rate": 0.00016987179487179486,
337
+ "loss": 0.5195,
338
+ "step": 47
339
+ },
340
+ {
341
+ "epoch": 0.1536,
342
+ "grad_norm": 0.23882092535495758,
343
+ "learning_rate": 0.00016923076923076923,
344
+ "loss": 0.5077,
345
+ "step": 48
346
+ },
347
+ {
348
+ "epoch": 0.1568,
349
+ "grad_norm": 0.2507559359073639,
350
+ "learning_rate": 0.0001685897435897436,
351
+ "loss": 0.6475,
352
+ "step": 49
353
+ },
354
+ {
355
+ "epoch": 0.16,
356
+ "grad_norm": 0.249229297041893,
357
+ "learning_rate": 0.00016794871794871796,
358
+ "loss": 0.6017,
359
+ "step": 50
360
+ },
361
+ {
362
+ "epoch": 0.1632,
363
+ "grad_norm": 0.24630750715732574,
364
+ "learning_rate": 0.00016730769230769232,
365
+ "loss": 0.7265,
366
+ "step": 51
367
+ },
368
+ {
369
+ "epoch": 0.1664,
370
+ "grad_norm": 0.2189762443304062,
371
+ "learning_rate": 0.0001666666666666667,
372
+ "loss": 0.5816,
373
+ "step": 52
374
+ },
375
+ {
376
+ "epoch": 0.1696,
377
+ "grad_norm": 0.2525809705257416,
378
+ "learning_rate": 0.00016602564102564105,
379
+ "loss": 0.6504,
380
+ "step": 53
381
+ },
382
+ {
383
+ "epoch": 0.1728,
384
+ "grad_norm": 0.2427346110343933,
385
+ "learning_rate": 0.0001653846153846154,
386
+ "loss": 0.607,
387
+ "step": 54
388
+ },
389
+ {
390
+ "epoch": 0.176,
391
+ "grad_norm": 0.25441974401474,
392
+ "learning_rate": 0.00016474358974358976,
393
+ "loss": 0.498,
394
+ "step": 55
395
+ },
396
+ {
397
+ "epoch": 0.1792,
398
+ "grad_norm": 0.3109598159790039,
399
+ "learning_rate": 0.0001641025641025641,
400
+ "loss": 0.7047,
401
+ "step": 56
402
+ },
403
+ {
404
+ "epoch": 0.1824,
405
+ "grad_norm": 0.24834761023521423,
406
+ "learning_rate": 0.00016346153846153846,
407
+ "loss": 0.6676,
408
+ "step": 57
409
+ },
410
+ {
411
+ "epoch": 0.1856,
412
+ "grad_norm": 0.2606664001941681,
413
+ "learning_rate": 0.00016282051282051282,
414
+ "loss": 0.5359,
415
+ "step": 58
416
+ },
417
+ {
418
+ "epoch": 0.1888,
419
+ "grad_norm": 0.280716210603714,
420
+ "learning_rate": 0.0001621794871794872,
421
+ "loss": 0.5061,
422
+ "step": 59
423
+ },
424
+ {
425
+ "epoch": 0.192,
426
+ "grad_norm": 0.22753354907035828,
427
+ "learning_rate": 0.00016153846153846155,
428
+ "loss": 0.5317,
429
+ "step": 60
430
+ },
431
+ {
432
+ "epoch": 0.1952,
433
+ "grad_norm": 0.2716667056083679,
434
+ "learning_rate": 0.00016089743589743592,
435
+ "loss": 0.525,
436
+ "step": 61
437
+ },
438
+ {
439
+ "epoch": 0.1984,
440
+ "grad_norm": 0.29029580950737,
441
+ "learning_rate": 0.00016025641025641028,
442
+ "loss": 0.5692,
443
+ "step": 62
444
+ },
445
+ {
446
+ "epoch": 0.2016,
447
+ "grad_norm": 0.3005497455596924,
448
+ "learning_rate": 0.00015961538461538462,
449
+ "loss": 0.5708,
450
+ "step": 63
451
+ },
452
+ {
453
+ "epoch": 0.2048,
454
+ "grad_norm": 0.2747126519680023,
455
+ "learning_rate": 0.00015897435897435896,
456
+ "loss": 0.5776,
457
+ "step": 64
458
+ },
459
+ {
460
+ "epoch": 0.208,
461
+ "grad_norm": 0.23698432743549347,
462
+ "learning_rate": 0.00015833333333333332,
463
+ "loss": 0.4512,
464
+ "step": 65
465
+ },
466
+ {
467
+ "epoch": 0.2112,
468
+ "grad_norm": 0.2807236313819885,
469
+ "learning_rate": 0.0001576923076923077,
470
+ "loss": 0.6356,
471
+ "step": 66
472
+ },
473
+ {
474
+ "epoch": 0.2144,
475
+ "grad_norm": 0.2509554326534271,
476
+ "learning_rate": 0.00015705128205128205,
477
+ "loss": 0.6171,
478
+ "step": 67
479
+ },
480
+ {
481
+ "epoch": 0.2176,
482
+ "grad_norm": 0.2572317123413086,
483
+ "learning_rate": 0.00015641025641025642,
484
+ "loss": 0.5074,
485
+ "step": 68
486
+ },
487
+ {
488
+ "epoch": 0.2208,
489
+ "grad_norm": 0.2810407280921936,
490
+ "learning_rate": 0.00015576923076923078,
491
+ "loss": 0.5584,
492
+ "step": 69
493
+ },
494
+ {
495
+ "epoch": 0.224,
496
+ "grad_norm": 0.2606565058231354,
497
+ "learning_rate": 0.00015512820512820515,
498
+ "loss": 0.5131,
499
+ "step": 70
500
+ },
501
+ {
502
+ "epoch": 0.2272,
503
+ "grad_norm": 0.2663954198360443,
504
+ "learning_rate": 0.00015448717948717951,
505
+ "loss": 0.5039,
506
+ "step": 71
507
+ },
508
+ {
509
+ "epoch": 0.2304,
510
+ "grad_norm": 0.2655510902404785,
511
+ "learning_rate": 0.00015384615384615385,
512
+ "loss": 0.5378,
513
+ "step": 72
514
+ },
515
+ {
516
+ "epoch": 0.2336,
517
+ "grad_norm": 0.2713690996170044,
518
+ "learning_rate": 0.00015320512820512822,
519
+ "loss": 0.4168,
520
+ "step": 73
521
+ },
522
+ {
523
+ "epoch": 0.2368,
524
+ "grad_norm": 0.29010245203971863,
525
+ "learning_rate": 0.00015256410256410255,
526
+ "loss": 0.4522,
527
+ "step": 74
528
+ },
529
+ {
530
+ "epoch": 0.24,
531
+ "grad_norm": 0.2629586160182953,
532
+ "learning_rate": 0.00015192307692307692,
533
+ "loss": 0.4264,
534
+ "step": 75
535
+ },
536
+ {
537
+ "epoch": 0.2432,
538
+ "grad_norm": 0.2788578271865845,
539
+ "learning_rate": 0.00015128205128205128,
540
+ "loss": 0.4294,
541
+ "step": 76
542
+ },
543
+ {
544
+ "epoch": 0.2464,
545
+ "grad_norm": 0.28636300563812256,
546
+ "learning_rate": 0.00015064102564102565,
547
+ "loss": 0.4514,
548
+ "step": 77
549
+ },
550
+ {
551
+ "epoch": 0.2496,
552
+ "grad_norm": 0.3492796719074249,
553
+ "learning_rate": 0.00015000000000000001,
554
+ "loss": 0.5396,
555
+ "step": 78
556
+ },
557
+ {
558
+ "epoch": 0.2528,
559
+ "grad_norm": 0.28230172395706177,
560
+ "learning_rate": 0.00014935897435897438,
561
+ "loss": 0.4536,
562
+ "step": 79
563
+ },
564
+ {
565
+ "epoch": 0.256,
566
+ "grad_norm": 0.3269024193286896,
567
+ "learning_rate": 0.00014871794871794872,
568
+ "loss": 0.4935,
569
+ "step": 80
570
+ },
571
+ {
572
+ "epoch": 0.2592,
573
+ "grad_norm": 0.2631271779537201,
574
+ "learning_rate": 0.00014807692307692308,
575
+ "loss": 0.4967,
576
+ "step": 81
577
+ },
578
+ {
579
+ "epoch": 0.2624,
580
+ "grad_norm": 0.29715263843536377,
581
+ "learning_rate": 0.00014743589743589745,
582
+ "loss": 0.46,
583
+ "step": 82
584
+ },
585
+ {
586
+ "epoch": 0.2656,
587
+ "grad_norm": 0.24541226029396057,
588
+ "learning_rate": 0.00014679487179487178,
589
+ "loss": 0.451,
590
+ "step": 83
591
+ },
592
+ {
593
+ "epoch": 0.2688,
594
+ "grad_norm": 0.26244840025901794,
595
+ "learning_rate": 0.00014615384615384615,
596
+ "loss": 0.4505,
597
+ "step": 84
598
+ },
599
+ {
600
+ "epoch": 0.272,
601
+ "grad_norm": 0.28552278876304626,
602
+ "learning_rate": 0.00014551282051282051,
603
+ "loss": 0.4962,
604
+ "step": 85
605
+ },
606
+ {
607
+ "epoch": 0.2752,
608
+ "grad_norm": 0.3041422963142395,
609
+ "learning_rate": 0.00014487179487179488,
610
+ "loss": 0.5714,
611
+ "step": 86
612
+ },
613
+ {
614
+ "epoch": 0.2784,
615
+ "grad_norm": 0.2605431079864502,
616
+ "learning_rate": 0.00014423076923076924,
617
+ "loss": 0.424,
618
+ "step": 87
619
+ },
620
+ {
621
+ "epoch": 0.2816,
622
+ "grad_norm": 0.2429913431406021,
623
+ "learning_rate": 0.0001435897435897436,
624
+ "loss": 0.4929,
625
+ "step": 88
626
+ },
627
+ {
628
+ "epoch": 0.2848,
629
+ "grad_norm": 0.263763964176178,
630
+ "learning_rate": 0.00014294871794871795,
631
+ "loss": 0.51,
632
+ "step": 89
633
+ },
634
+ {
635
+ "epoch": 0.288,
636
+ "grad_norm": 0.2757089138031006,
637
+ "learning_rate": 0.0001423076923076923,
638
+ "loss": 0.5876,
639
+ "step": 90
640
+ },
641
+ {
642
+ "epoch": 0.2912,
643
+ "grad_norm": 0.25437983870506287,
644
+ "learning_rate": 0.00014166666666666668,
645
+ "loss": 0.5662,
646
+ "step": 91
647
+ },
648
+ {
649
+ "epoch": 0.2944,
650
+ "grad_norm": 0.28170907497406006,
651
+ "learning_rate": 0.00014102564102564104,
652
+ "loss": 0.6068,
653
+ "step": 92
654
+ },
655
+ {
656
+ "epoch": 0.2976,
657
+ "grad_norm": 0.2835545837879181,
658
+ "learning_rate": 0.00014038461538461538,
659
+ "loss": 0.5769,
660
+ "step": 93
661
+ },
662
+ {
663
+ "epoch": 0.3008,
664
+ "grad_norm": 0.26598137617111206,
665
+ "learning_rate": 0.00013974358974358974,
666
+ "loss": 0.5344,
667
+ "step": 94
668
+ },
669
+ {
670
+ "epoch": 0.304,
671
+ "grad_norm": 0.27048271894454956,
672
+ "learning_rate": 0.0001391025641025641,
673
+ "loss": 0.5439,
674
+ "step": 95
675
+ },
676
+ {
677
+ "epoch": 0.3072,
678
+ "grad_norm": 0.2872040867805481,
679
+ "learning_rate": 0.00013846153846153847,
680
+ "loss": 0.4907,
681
+ "step": 96
682
+ },
683
+ {
684
+ "epoch": 0.3104,
685
+ "grad_norm": 0.2894354462623596,
686
+ "learning_rate": 0.00013782051282051284,
687
+ "loss": 0.5225,
688
+ "step": 97
689
+ },
690
+ {
691
+ "epoch": 0.3136,
692
+ "grad_norm": 0.2700275778770447,
693
+ "learning_rate": 0.00013717948717948718,
694
+ "loss": 0.5485,
695
+ "step": 98
696
+ },
697
+ {
698
+ "epoch": 0.3168,
699
+ "grad_norm": 0.25223323702812195,
700
+ "learning_rate": 0.00013653846153846154,
701
+ "loss": 0.4103,
702
+ "step": 99
703
+ },
704
+ {
705
+ "epoch": 0.32,
706
+ "grad_norm": 0.26242420077323914,
707
+ "learning_rate": 0.0001358974358974359,
708
+ "loss": 0.4974,
709
+ "step": 100
710
+ },
711
+ {
712
+ "epoch": 0.3232,
713
+ "grad_norm": 0.25841623544692993,
714
+ "learning_rate": 0.00013525641025641027,
715
+ "loss": 0.5663,
716
+ "step": 101
717
+ },
718
+ {
719
+ "epoch": 0.3264,
720
+ "grad_norm": 0.2550147473812103,
721
+ "learning_rate": 0.00013461538461538464,
722
+ "loss": 0.4468,
723
+ "step": 102
724
+ },
725
+ {
726
+ "epoch": 0.3296,
727
+ "grad_norm": 0.2532574534416199,
728
+ "learning_rate": 0.00013397435897435897,
729
+ "loss": 0.4785,
730
+ "step": 103
731
+ },
732
+ {
733
+ "epoch": 0.3328,
734
+ "grad_norm": 0.3210897743701935,
735
+ "learning_rate": 0.00013333333333333334,
736
+ "loss": 0.348,
737
+ "step": 104
738
+ },
739
+ {
740
+ "epoch": 0.336,
741
+ "grad_norm": 0.2774418294429779,
742
+ "learning_rate": 0.0001326923076923077,
743
+ "loss": 0.5105,
744
+ "step": 105
745
+ },
746
+ {
747
+ "epoch": 0.3392,
748
+ "grad_norm": 0.2911253571510315,
749
+ "learning_rate": 0.00013205128205128204,
750
+ "loss": 0.4461,
751
+ "step": 106
752
+ },
753
+ {
754
+ "epoch": 0.3424,
755
+ "grad_norm": 0.3193359971046448,
756
+ "learning_rate": 0.0001314102564102564,
757
+ "loss": 0.425,
758
+ "step": 107
759
+ },
760
+ {
761
+ "epoch": 0.3456,
762
+ "grad_norm": 0.25757595896720886,
763
+ "learning_rate": 0.00013076923076923077,
764
+ "loss": 0.5055,
765
+ "step": 108
766
+ },
767
+ {
768
+ "epoch": 0.3488,
769
+ "grad_norm": 0.29757291078567505,
770
+ "learning_rate": 0.00013012820512820514,
771
+ "loss": 0.4796,
772
+ "step": 109
773
+ },
774
+ {
775
+ "epoch": 0.352,
776
+ "grad_norm": 0.25091230869293213,
777
+ "learning_rate": 0.0001294871794871795,
778
+ "loss": 0.4215,
779
+ "step": 110
780
+ },
781
+ {
782
+ "epoch": 0.3552,
783
+ "grad_norm": 0.24596236646175385,
784
+ "learning_rate": 0.00012884615384615387,
785
+ "loss": 0.4959,
786
+ "step": 111
787
+ },
788
+ {
789
+ "epoch": 0.3584,
790
+ "grad_norm": 0.2935032844543457,
791
+ "learning_rate": 0.00012820512820512823,
792
+ "loss": 0.5622,
793
+ "step": 112
794
+ },
795
+ {
796
+ "epoch": 0.3616,
797
+ "grad_norm": 0.247608482837677,
798
+ "learning_rate": 0.00012756410256410257,
799
+ "loss": 0.5097,
800
+ "step": 113
801
+ },
802
+ {
803
+ "epoch": 0.3648,
804
+ "grad_norm": 0.24816389381885529,
805
+ "learning_rate": 0.00012692307692307693,
806
+ "loss": 0.4609,
807
+ "step": 114
808
+ },
809
+ {
810
+ "epoch": 0.368,
811
+ "grad_norm": 0.2884969115257263,
812
+ "learning_rate": 0.00012628205128205127,
813
+ "loss": 0.4562,
814
+ "step": 115
815
+ },
816
+ {
817
+ "epoch": 0.3712,
818
+ "grad_norm": 0.2685159742832184,
819
+ "learning_rate": 0.00012564102564102564,
820
+ "loss": 0.4159,
821
+ "step": 116
822
+ },
823
+ {
824
+ "epoch": 0.3744,
825
+ "grad_norm": 0.27893656492233276,
826
+ "learning_rate": 0.000125,
827
+ "loss": 0.4143,
828
+ "step": 117
829
+ },
830
+ {
831
+ "epoch": 0.3776,
832
+ "grad_norm": 0.3658033311367035,
833
+ "learning_rate": 0.00012435897435897437,
834
+ "loss": 0.5775,
835
+ "step": 118
836
+ },
837
+ {
838
+ "epoch": 0.3808,
839
+ "grad_norm": 0.3107357621192932,
840
+ "learning_rate": 0.00012371794871794873,
841
+ "loss": 0.4669,
842
+ "step": 119
843
+ },
844
+ {
845
+ "epoch": 0.384,
846
+ "grad_norm": 0.303265780210495,
847
+ "learning_rate": 0.0001230769230769231,
848
+ "loss": 0.5763,
849
+ "step": 120
850
+ },
851
+ {
852
+ "epoch": 0.3872,
853
+ "grad_norm": 0.21491239964962006,
854
+ "learning_rate": 0.00012243589743589746,
855
+ "loss": 0.2977,
856
+ "step": 121
857
+ },
858
+ {
859
+ "epoch": 0.3904,
860
+ "grad_norm": 0.25996512174606323,
861
+ "learning_rate": 0.00012179487179487179,
862
+ "loss": 0.4028,
863
+ "step": 122
864
+ },
865
+ {
866
+ "epoch": 0.3936,
867
+ "grad_norm": 0.25640368461608887,
868
+ "learning_rate": 0.00012115384615384615,
869
+ "loss": 0.5186,
870
+ "step": 123
871
+ },
872
+ {
873
+ "epoch": 0.3968,
874
+ "grad_norm": 0.25851595401763916,
875
+ "learning_rate": 0.00012051282051282052,
876
+ "loss": 0.4153,
877
+ "step": 124
878
+ },
879
+ {
880
+ "epoch": 0.4,
881
+ "grad_norm": 0.2687956988811493,
882
+ "learning_rate": 0.00011987179487179487,
883
+ "loss": 0.4214,
884
+ "step": 125
885
+ },
886
+ {
887
+ "epoch": 0.4032,
888
+ "grad_norm": 0.2811547815799713,
889
+ "learning_rate": 0.00011923076923076923,
890
+ "loss": 0.4813,
891
+ "step": 126
892
+ },
893
+ {
894
+ "epoch": 0.4064,
895
+ "grad_norm": 0.3029988706111908,
896
+ "learning_rate": 0.0001185897435897436,
897
+ "loss": 0.6633,
898
+ "step": 127
899
+ },
900
+ {
901
+ "epoch": 0.4096,
902
+ "grad_norm": 0.23572632670402527,
903
+ "learning_rate": 0.00011794871794871796,
904
+ "loss": 0.321,
905
+ "step": 128
906
+ },
907
+ {
908
+ "epoch": 0.4128,
909
+ "grad_norm": 0.26160842180252075,
910
+ "learning_rate": 0.00011730769230769231,
911
+ "loss": 0.4805,
912
+ "step": 129
913
+ },
914
+ {
915
+ "epoch": 0.416,
916
+ "grad_norm": 0.2799210548400879,
917
+ "learning_rate": 0.00011666666666666668,
918
+ "loss": 0.5449,
919
+ "step": 130
920
+ },
921
+ {
922
+ "epoch": 0.4192,
923
+ "grad_norm": 0.26176995038986206,
924
+ "learning_rate": 0.00011602564102564104,
925
+ "loss": 0.5371,
926
+ "step": 131
927
+ },
928
+ {
929
+ "epoch": 0.4224,
930
+ "grad_norm": 0.2574150562286377,
931
+ "learning_rate": 0.00011538461538461538,
932
+ "loss": 0.4654,
933
+ "step": 132
934
+ },
935
+ {
936
+ "epoch": 0.4256,
937
+ "grad_norm": 0.2815636098384857,
938
+ "learning_rate": 0.00011474358974358975,
939
+ "loss": 0.4717,
940
+ "step": 133
941
+ },
942
+ {
943
+ "epoch": 0.4288,
944
+ "grad_norm": 0.2238437682390213,
945
+ "learning_rate": 0.0001141025641025641,
946
+ "loss": 0.2716,
947
+ "step": 134
948
+ },
949
+ {
950
+ "epoch": 0.432,
951
+ "grad_norm": 0.28223180770874023,
952
+ "learning_rate": 0.00011346153846153846,
953
+ "loss": 0.4417,
954
+ "step": 135
955
+ },
956
+ {
957
+ "epoch": 0.4352,
958
+ "grad_norm": 0.25392040610313416,
959
+ "learning_rate": 0.00011282051282051283,
960
+ "loss": 0.3974,
961
+ "step": 136
962
+ },
963
+ {
964
+ "epoch": 0.4384,
965
+ "grad_norm": 0.26734161376953125,
966
+ "learning_rate": 0.00011217948717948718,
967
+ "loss": 0.4821,
968
+ "step": 137
969
+ },
970
+ {
971
+ "epoch": 0.4416,
972
+ "grad_norm": 0.3004485070705414,
973
+ "learning_rate": 0.00011153846153846154,
974
+ "loss": 0.5427,
975
+ "step": 138
976
+ },
977
+ {
978
+ "epoch": 0.4448,
979
+ "grad_norm": 0.3012203872203827,
980
+ "learning_rate": 0.00011089743589743591,
981
+ "loss": 0.4845,
982
+ "step": 139
983
+ },
984
+ {
985
+ "epoch": 0.448,
986
+ "grad_norm": 0.249158576130867,
987
+ "learning_rate": 0.00011025641025641027,
988
+ "loss": 0.4654,
989
+ "step": 140
990
+ },
991
+ {
992
+ "epoch": 0.4512,
993
+ "grad_norm": 0.26157674193382263,
994
+ "learning_rate": 0.00010961538461538463,
995
+ "loss": 0.4359,
996
+ "step": 141
997
+ },
998
+ {
999
+ "epoch": 0.4544,
1000
+ "grad_norm": 0.2885046899318695,
1001
+ "learning_rate": 0.00010897435897435896,
1002
+ "loss": 0.5595,
1003
+ "step": 142
1004
+ },
1005
+ {
1006
+ "epoch": 0.4576,
1007
+ "grad_norm": 0.24725095927715302,
1008
+ "learning_rate": 0.00010833333333333333,
1009
+ "loss": 0.4303,
1010
+ "step": 143
1011
+ },
1012
+ {
1013
+ "epoch": 0.4608,
1014
+ "grad_norm": 0.2562006711959839,
1015
+ "learning_rate": 0.0001076923076923077,
1016
+ "loss": 0.4772,
1017
+ "step": 144
1018
+ },
1019
+ {
1020
+ "epoch": 0.464,
1021
+ "grad_norm": 0.27621591091156006,
1022
+ "learning_rate": 0.00010705128205128206,
1023
+ "loss": 0.5012,
1024
+ "step": 145
1025
+ },
1026
+ {
1027
+ "epoch": 0.4672,
1028
+ "grad_norm": 0.24434815347194672,
1029
+ "learning_rate": 0.00010641025641025641,
1030
+ "loss": 0.4038,
1031
+ "step": 146
1032
+ },
1033
+ {
1034
+ "epoch": 0.4704,
1035
+ "grad_norm": 0.306618332862854,
1036
+ "learning_rate": 0.00010576923076923077,
1037
+ "loss": 0.6279,
1038
+ "step": 147
1039
+ },
1040
+ {
1041
+ "epoch": 0.4736,
1042
+ "grad_norm": 0.23926320672035217,
1043
+ "learning_rate": 0.00010512820512820514,
1044
+ "loss": 0.3658,
1045
+ "step": 148
1046
+ },
1047
+ {
1048
+ "epoch": 0.4768,
1049
+ "grad_norm": 0.2628524899482727,
1050
+ "learning_rate": 0.0001044871794871795,
1051
+ "loss": 0.4094,
1052
+ "step": 149
1053
+ },
1054
+ {
1055
+ "epoch": 0.48,
1056
+ "grad_norm": 0.3073101341724396,
1057
+ "learning_rate": 0.00010384615384615386,
1058
+ "loss": 0.5235,
1059
+ "step": 150
1060
+ },
1061
+ {
1062
+ "epoch": 0.4832,
1063
+ "grad_norm": 0.2647029757499695,
1064
+ "learning_rate": 0.00010320512820512822,
1065
+ "loss": 0.435,
1066
+ "step": 151
1067
+ },
1068
+ {
1069
+ "epoch": 0.4864,
1070
+ "grad_norm": 0.2945331335067749,
1071
+ "learning_rate": 0.00010256410256410256,
1072
+ "loss": 0.4805,
1073
+ "step": 152
1074
+ },
1075
+ {
1076
+ "epoch": 0.4896,
1077
+ "grad_norm": 0.24870315194129944,
1078
+ "learning_rate": 0.00010192307692307692,
1079
+ "loss": 0.3913,
1080
+ "step": 153
1081
+ },
1082
+ {
1083
+ "epoch": 0.4928,
1084
+ "grad_norm": 0.2954522371292114,
1085
+ "learning_rate": 0.00010128205128205129,
1086
+ "loss": 0.412,
1087
+ "step": 154
1088
+ },
1089
+ {
1090
+ "epoch": 0.496,
1091
+ "grad_norm": 0.2745000720024109,
1092
+ "learning_rate": 0.00010064102564102564,
1093
+ "loss": 0.3781,
1094
+ "step": 155
1095
+ },
1096
+ {
1097
+ "epoch": 0.4992,
1098
+ "grad_norm": 0.3542097806930542,
1099
+ "learning_rate": 0.0001,
1100
+ "loss": 0.6366,
1101
+ "step": 156
1102
+ },
1103
+ {
1104
+ "epoch": 0.5024,
1105
+ "grad_norm": 0.25741928815841675,
1106
+ "learning_rate": 9.935897435897437e-05,
1107
+ "loss": 0.4203,
1108
+ "step": 157
1109
+ },
1110
+ {
1111
+ "epoch": 0.5056,
1112
+ "grad_norm": 0.24221432209014893,
1113
+ "learning_rate": 9.871794871794872e-05,
1114
+ "loss": 0.3816,
1115
+ "step": 158
1116
+ },
1117
+ {
1118
+ "epoch": 0.5088,
1119
+ "grad_norm": 0.28175830841064453,
1120
+ "learning_rate": 9.807692307692307e-05,
1121
+ "loss": 0.5144,
1122
+ "step": 159
1123
+ },
1124
+ {
1125
+ "epoch": 0.512,
1126
+ "grad_norm": 0.28136804699897766,
1127
+ "learning_rate": 9.743589743589744e-05,
1128
+ "loss": 0.5099,
1129
+ "step": 160
1130
+ },
1131
+ {
1132
+ "epoch": 0.5152,
1133
+ "grad_norm": 0.2572178542613983,
1134
+ "learning_rate": 9.67948717948718e-05,
1135
+ "loss": 0.4466,
1136
+ "step": 161
1137
+ },
1138
+ {
1139
+ "epoch": 0.5184,
1140
+ "grad_norm": 0.26523545384407043,
1141
+ "learning_rate": 9.615384615384617e-05,
1142
+ "loss": 0.4726,
1143
+ "step": 162
1144
+ },
1145
+ {
1146
+ "epoch": 0.5216,
1147
+ "grad_norm": 0.2543681859970093,
1148
+ "learning_rate": 9.551282051282052e-05,
1149
+ "loss": 0.4538,
1150
+ "step": 163
1151
+ },
1152
+ {
1153
+ "epoch": 0.5248,
1154
+ "grad_norm": 0.2630670964717865,
1155
+ "learning_rate": 9.487179487179487e-05,
1156
+ "loss": 0.396,
1157
+ "step": 164
1158
+ },
1159
+ {
1160
+ "epoch": 0.528,
1161
+ "grad_norm": 0.2914413809776306,
1162
+ "learning_rate": 9.423076923076924e-05,
1163
+ "loss": 0.5105,
1164
+ "step": 165
1165
+ },
1166
+ {
1167
+ "epoch": 0.5312,
1168
+ "grad_norm": 0.23061206936836243,
1169
+ "learning_rate": 9.35897435897436e-05,
1170
+ "loss": 0.3556,
1171
+ "step": 166
1172
+ },
1173
+ {
1174
+ "epoch": 0.5344,
1175
+ "grad_norm": 0.29008427262306213,
1176
+ "learning_rate": 9.294871794871795e-05,
1177
+ "loss": 0.5202,
1178
+ "step": 167
1179
+ },
1180
+ {
1181
+ "epoch": 0.5376,
1182
+ "grad_norm": 0.3016505241394043,
1183
+ "learning_rate": 9.230769230769232e-05,
1184
+ "loss": 0.5411,
1185
+ "step": 168
1186
+ },
1187
+ {
1188
+ "epoch": 0.5408,
1189
+ "grad_norm": 0.2557263970375061,
1190
+ "learning_rate": 9.166666666666667e-05,
1191
+ "loss": 0.319,
1192
+ "step": 169
1193
+ },
1194
+ {
1195
+ "epoch": 0.544,
1196
+ "grad_norm": 0.3112490773200989,
1197
+ "learning_rate": 9.102564102564103e-05,
1198
+ "loss": 0.3887,
1199
+ "step": 170
1200
+ },
1201
+ {
1202
+ "epoch": 0.5472,
1203
+ "grad_norm": 0.31632199883461,
1204
+ "learning_rate": 9.038461538461538e-05,
1205
+ "loss": 0.5968,
1206
+ "step": 171
1207
+ },
1208
+ {
1209
+ "epoch": 0.5504,
1210
+ "grad_norm": 0.2825266122817993,
1211
+ "learning_rate": 8.974358974358975e-05,
1212
+ "loss": 0.4054,
1213
+ "step": 172
1214
+ },
1215
+ {
1216
+ "epoch": 0.5536,
1217
+ "grad_norm": 0.29404228925704956,
1218
+ "learning_rate": 8.910256410256411e-05,
1219
+ "loss": 0.4833,
1220
+ "step": 173
1221
+ },
1222
+ {
1223
+ "epoch": 0.5568,
1224
+ "grad_norm": 0.2678660750389099,
1225
+ "learning_rate": 8.846153846153847e-05,
1226
+ "loss": 0.5036,
1227
+ "step": 174
1228
+ },
1229
+ {
1230
+ "epoch": 0.56,
1231
+ "grad_norm": 0.25883761048316956,
1232
+ "learning_rate": 8.782051282051283e-05,
1233
+ "loss": 0.4133,
1234
+ "step": 175
1235
+ },
1236
+ {
1237
+ "epoch": 0.5632,
1238
+ "grad_norm": 0.25341886281967163,
1239
+ "learning_rate": 8.717948717948718e-05,
1240
+ "loss": 0.405,
1241
+ "step": 176
1242
+ },
1243
+ {
1244
+ "epoch": 0.5664,
1245
+ "grad_norm": 0.27091604471206665,
1246
+ "learning_rate": 8.653846153846155e-05,
1247
+ "loss": 0.4839,
1248
+ "step": 177
1249
+ },
1250
+ {
1251
+ "epoch": 0.5696,
1252
+ "grad_norm": 0.2976224422454834,
1253
+ "learning_rate": 8.58974358974359e-05,
1254
+ "loss": 0.4976,
1255
+ "step": 178
1256
+ },
1257
+ {
1258
+ "epoch": 0.5728,
1259
+ "grad_norm": 0.2556227445602417,
1260
+ "learning_rate": 8.525641025641026e-05,
1261
+ "loss": 0.366,
1262
+ "step": 179
1263
+ },
1264
+ {
1265
+ "epoch": 0.576,
1266
+ "grad_norm": 0.30424100160598755,
1267
+ "learning_rate": 8.461538461538461e-05,
1268
+ "loss": 0.5004,
1269
+ "step": 180
1270
+ },
1271
+ {
1272
+ "epoch": 0.5792,
1273
+ "grad_norm": 0.2819097638130188,
1274
+ "learning_rate": 8.397435897435898e-05,
1275
+ "loss": 0.4262,
1276
+ "step": 181
1277
+ },
1278
+ {
1279
+ "epoch": 0.5824,
1280
+ "grad_norm": 0.27605441212654114,
1281
+ "learning_rate": 8.333333333333334e-05,
1282
+ "loss": 0.4365,
1283
+ "step": 182
1284
+ },
1285
+ {
1286
+ "epoch": 0.5856,
1287
+ "grad_norm": 0.27287614345550537,
1288
+ "learning_rate": 8.26923076923077e-05,
1289
+ "loss": 0.4083,
1290
+ "step": 183
1291
+ },
1292
+ {
1293
+ "epoch": 0.5888,
1294
+ "grad_norm": 0.27792593836784363,
1295
+ "learning_rate": 8.205128205128205e-05,
1296
+ "loss": 0.4137,
1297
+ "step": 184
1298
+ },
1299
+ {
1300
+ "epoch": 0.592,
1301
+ "grad_norm": 0.3038672208786011,
1302
+ "learning_rate": 8.141025641025641e-05,
1303
+ "loss": 0.4728,
1304
+ "step": 185
1305
+ },
1306
+ {
1307
+ "epoch": 0.5952,
1308
+ "grad_norm": 0.28418487310409546,
1309
+ "learning_rate": 8.076923076923078e-05,
1310
+ "loss": 0.4671,
1311
+ "step": 186
1312
+ },
1313
+ {
1314
+ "epoch": 0.5984,
1315
+ "grad_norm": 0.2828688323497772,
1316
+ "learning_rate": 8.012820512820514e-05,
1317
+ "loss": 0.5008,
1318
+ "step": 187
1319
+ },
1320
+ {
1321
+ "epoch": 0.6016,
1322
+ "grad_norm": 0.3183538019657135,
1323
+ "learning_rate": 7.948717948717948e-05,
1324
+ "loss": 0.5282,
1325
+ "step": 188
1326
+ },
1327
+ {
1328
+ "epoch": 0.6048,
1329
+ "grad_norm": 0.30755531787872314,
1330
+ "learning_rate": 7.884615384615384e-05,
1331
+ "loss": 0.5238,
1332
+ "step": 189
1333
+ },
1334
+ {
1335
+ "epoch": 0.608,
1336
+ "grad_norm": 0.30897241830825806,
1337
+ "learning_rate": 7.820512820512821e-05,
1338
+ "loss": 0.5401,
1339
+ "step": 190
1340
+ },
1341
+ {
1342
+ "epoch": 0.6112,
1343
+ "grad_norm": 0.2755669355392456,
1344
+ "learning_rate": 7.756410256410257e-05,
1345
+ "loss": 0.4468,
1346
+ "step": 191
1347
+ },
1348
+ {
1349
+ "epoch": 0.6144,
1350
+ "grad_norm": 0.2606697380542755,
1351
+ "learning_rate": 7.692307692307693e-05,
1352
+ "loss": 0.387,
1353
+ "step": 192
1354
+ },
1355
+ {
1356
+ "epoch": 0.6176,
1357
+ "grad_norm": 0.3042752742767334,
1358
+ "learning_rate": 7.628205128205128e-05,
1359
+ "loss": 0.5305,
1360
+ "step": 193
1361
+ },
1362
+ {
1363
+ "epoch": 0.6208,
1364
+ "grad_norm": 0.29267027974128723,
1365
+ "learning_rate": 7.564102564102564e-05,
1366
+ "loss": 0.419,
1367
+ "step": 194
1368
+ },
1369
+ {
1370
+ "epoch": 0.624,
1371
+ "grad_norm": 0.30853956937789917,
1372
+ "learning_rate": 7.500000000000001e-05,
1373
+ "loss": 0.5416,
1374
+ "step": 195
1375
+ },
1376
+ {
1377
+ "epoch": 0.6272,
1378
+ "grad_norm": 0.3460753262042999,
1379
+ "learning_rate": 7.435897435897436e-05,
1380
+ "loss": 0.5196,
1381
+ "step": 196
1382
+ },
1383
+ {
1384
+ "epoch": 0.6304,
1385
+ "grad_norm": 0.298348993062973,
1386
+ "learning_rate": 7.371794871794872e-05,
1387
+ "loss": 0.4421,
1388
+ "step": 197
1389
+ },
1390
+ {
1391
+ "epoch": 0.6336,
1392
+ "grad_norm": 0.2961275577545166,
1393
+ "learning_rate": 7.307692307692307e-05,
1394
+ "loss": 0.4032,
1395
+ "step": 198
1396
+ },
1397
+ {
1398
+ "epoch": 0.6368,
1399
+ "grad_norm": 0.30500563979148865,
1400
+ "learning_rate": 7.243589743589744e-05,
1401
+ "loss": 0.442,
1402
+ "step": 199
1403
+ },
1404
+ {
1405
+ "epoch": 0.64,
1406
+ "grad_norm": 0.30142742395401,
1407
+ "learning_rate": 7.17948717948718e-05,
1408
+ "loss": 0.4375,
1409
+ "step": 200
1410
+ },
1411
+ {
1412
+ "epoch": 0.6432,
1413
+ "grad_norm": 0.26335790753364563,
1414
+ "learning_rate": 7.115384615384616e-05,
1415
+ "loss": 0.428,
1416
+ "step": 201
1417
+ },
1418
+ {
1419
+ "epoch": 0.6464,
1420
+ "grad_norm": 0.24412094056606293,
1421
+ "learning_rate": 7.051282051282052e-05,
1422
+ "loss": 0.3212,
1423
+ "step": 202
1424
+ },
1425
+ {
1426
+ "epoch": 0.6496,
1427
+ "grad_norm": 0.2796410918235779,
1428
+ "learning_rate": 6.987179487179487e-05,
1429
+ "loss": 0.4459,
1430
+ "step": 203
1431
+ },
1432
+ {
1433
+ "epoch": 0.6528,
1434
+ "grad_norm": 0.33633318543434143,
1435
+ "learning_rate": 6.923076923076924e-05,
1436
+ "loss": 0.5125,
1437
+ "step": 204
1438
+ },
1439
+ {
1440
+ "epoch": 0.656,
1441
+ "grad_norm": 0.3190767467021942,
1442
+ "learning_rate": 6.858974358974359e-05,
1443
+ "loss": 0.5465,
1444
+ "step": 205
1445
+ },
1446
+ {
1447
+ "epoch": 0.6592,
1448
+ "grad_norm": 0.30400681495666504,
1449
+ "learning_rate": 6.794871794871795e-05,
1450
+ "loss": 0.4667,
1451
+ "step": 206
1452
+ },
1453
+ {
1454
+ "epoch": 0.6624,
1455
+ "grad_norm": 0.294740229845047,
1456
+ "learning_rate": 6.730769230769232e-05,
1457
+ "loss": 0.4955,
1458
+ "step": 207
1459
+ },
1460
+ {
1461
+ "epoch": 0.6656,
1462
+ "grad_norm": 0.2467174381017685,
1463
+ "learning_rate": 6.666666666666667e-05,
1464
+ "loss": 0.3151,
1465
+ "step": 208
1466
+ },
1467
+ {
1468
+ "epoch": 0.6688,
1469
+ "grad_norm": 0.27507495880126953,
1470
+ "learning_rate": 6.602564102564102e-05,
1471
+ "loss": 0.4123,
1472
+ "step": 209
1473
+ },
1474
+ {
1475
+ "epoch": 0.672,
1476
+ "grad_norm": 0.2465631365776062,
1477
+ "learning_rate": 6.538461538461539e-05,
1478
+ "loss": 0.3117,
1479
+ "step": 210
1480
+ },
1481
+ {
1482
+ "epoch": 0.6752,
1483
+ "grad_norm": 0.3061293363571167,
1484
+ "learning_rate": 6.474358974358975e-05,
1485
+ "loss": 0.5389,
1486
+ "step": 211
1487
+ },
1488
+ {
1489
+ "epoch": 0.6784,
1490
+ "grad_norm": 0.2974298596382141,
1491
+ "learning_rate": 6.410256410256412e-05,
1492
+ "loss": 0.4471,
1493
+ "step": 212
1494
+ },
1495
+ {
1496
+ "epoch": 0.6816,
1497
+ "grad_norm": 0.2876061797142029,
1498
+ "learning_rate": 6.346153846153847e-05,
1499
+ "loss": 0.4253,
1500
+ "step": 213
1501
+ },
1502
+ {
1503
+ "epoch": 0.6848,
1504
+ "grad_norm": 0.29899370670318604,
1505
+ "learning_rate": 6.282051282051282e-05,
1506
+ "loss": 0.4474,
1507
+ "step": 214
1508
+ },
1509
+ {
1510
+ "epoch": 0.688,
1511
+ "grad_norm": 0.30990898609161377,
1512
+ "learning_rate": 6.217948717948718e-05,
1513
+ "loss": 0.3905,
1514
+ "step": 215
1515
+ },
1516
+ {
1517
+ "epoch": 0.6912,
1518
+ "grad_norm": 0.29554882645606995,
1519
+ "learning_rate": 6.153846153846155e-05,
1520
+ "loss": 0.4147,
1521
+ "step": 216
1522
+ },
1523
+ {
1524
+ "epoch": 0.6944,
1525
+ "grad_norm": 0.31249329447746277,
1526
+ "learning_rate": 6.089743589743589e-05,
1527
+ "loss": 0.4023,
1528
+ "step": 217
1529
+ },
1530
+ {
1531
+ "epoch": 0.6976,
1532
+ "grad_norm": 0.32120752334594727,
1533
+ "learning_rate": 6.025641025641026e-05,
1534
+ "loss": 0.4418,
1535
+ "step": 218
1536
+ },
1537
+ {
1538
+ "epoch": 0.7008,
1539
+ "grad_norm": 0.311110258102417,
1540
+ "learning_rate": 5.9615384615384616e-05,
1541
+ "loss": 0.463,
1542
+ "step": 219
1543
+ },
1544
+ {
1545
+ "epoch": 0.704,
1546
+ "grad_norm": 0.2687552571296692,
1547
+ "learning_rate": 5.897435897435898e-05,
1548
+ "loss": 0.3984,
1549
+ "step": 220
1550
+ },
1551
+ {
1552
+ "epoch": 0.7072,
1553
+ "grad_norm": 0.30315181612968445,
1554
+ "learning_rate": 5.833333333333334e-05,
1555
+ "loss": 0.5084,
1556
+ "step": 221
1557
+ },
1558
+ {
1559
+ "epoch": 0.7104,
1560
+ "grad_norm": 0.28704944252967834,
1561
+ "learning_rate": 5.769230769230769e-05,
1562
+ "loss": 0.4327,
1563
+ "step": 222
1564
+ },
1565
+ {
1566
+ "epoch": 0.7136,
1567
+ "grad_norm": 0.2689530551433563,
1568
+ "learning_rate": 5.705128205128205e-05,
1569
+ "loss": 0.3964,
1570
+ "step": 223
1571
+ },
1572
+ {
1573
+ "epoch": 0.7168,
1574
+ "grad_norm": 0.321878582239151,
1575
+ "learning_rate": 5.6410256410256414e-05,
1576
+ "loss": 0.4681,
1577
+ "step": 224
1578
+ },
1579
+ {
1580
+ "epoch": 0.72,
1581
+ "grad_norm": 0.30374661087989807,
1582
+ "learning_rate": 5.576923076923077e-05,
1583
+ "loss": 0.4465,
1584
+ "step": 225
1585
+ },
1586
+ {
1587
+ "epoch": 0.7232,
1588
+ "grad_norm": 0.29247525334358215,
1589
+ "learning_rate": 5.512820512820514e-05,
1590
+ "loss": 0.4501,
1591
+ "step": 226
1592
+ },
1593
+ {
1594
+ "epoch": 0.7264,
1595
+ "grad_norm": 0.274850994348526,
1596
+ "learning_rate": 5.448717948717948e-05,
1597
+ "loss": 0.3943,
1598
+ "step": 227
1599
+ },
1600
+ {
1601
+ "epoch": 0.7296,
1602
+ "grad_norm": 0.24561376869678497,
1603
+ "learning_rate": 5.384615384615385e-05,
1604
+ "loss": 0.3225,
1605
+ "step": 228
1606
+ },
1607
+ {
1608
+ "epoch": 0.7328,
1609
+ "grad_norm": 0.28236258029937744,
1610
+ "learning_rate": 5.3205128205128205e-05,
1611
+ "loss": 0.3247,
1612
+ "step": 229
1613
+ },
1614
+ {
1615
+ "epoch": 0.736,
1616
+ "grad_norm": 0.29767942428588867,
1617
+ "learning_rate": 5.256410256410257e-05,
1618
+ "loss": 0.4514,
1619
+ "step": 230
1620
+ },
1621
+ {
1622
+ "epoch": 0.7392,
1623
+ "grad_norm": 0.3310510516166687,
1624
+ "learning_rate": 5.192307692307693e-05,
1625
+ "loss": 0.4417,
1626
+ "step": 231
1627
+ },
1628
+ {
1629
+ "epoch": 0.7424,
1630
+ "grad_norm": 0.28120821714401245,
1631
+ "learning_rate": 5.128205128205128e-05,
1632
+ "loss": 0.3511,
1633
+ "step": 232
1634
+ },
1635
+ {
1636
+ "epoch": 0.7456,
1637
+ "grad_norm": 0.38378533720970154,
1638
+ "learning_rate": 5.0641025641025644e-05,
1639
+ "loss": 0.5135,
1640
+ "step": 233
1641
+ },
1642
+ {
1643
+ "epoch": 0.7488,
1644
+ "grad_norm": 0.3125383257865906,
1645
+ "learning_rate": 5e-05,
1646
+ "loss": 0.4614,
1647
+ "step": 234
1648
+ },
1649
+ {
1650
+ "epoch": 0.752,
1651
+ "grad_norm": 0.2549707591533661,
1652
+ "learning_rate": 4.935897435897436e-05,
1653
+ "loss": 0.3333,
1654
+ "step": 235
1655
+ },
1656
+ {
1657
+ "epoch": 0.7552,
1658
+ "grad_norm": 0.30307722091674805,
1659
+ "learning_rate": 4.871794871794872e-05,
1660
+ "loss": 0.4185,
1661
+ "step": 236
1662
+ },
1663
+ {
1664
+ "epoch": 0.7584,
1665
+ "grad_norm": 0.2714983820915222,
1666
+ "learning_rate": 4.8076923076923084e-05,
1667
+ "loss": 0.3744,
1668
+ "step": 237
1669
+ },
1670
+ {
1671
+ "epoch": 0.7616,
1672
+ "grad_norm": 0.29321545362472534,
1673
+ "learning_rate": 4.7435897435897435e-05,
1674
+ "loss": 0.4177,
1675
+ "step": 238
1676
+ },
1677
+ {
1678
+ "epoch": 0.7648,
1679
+ "grad_norm": 0.3908475637435913,
1680
+ "learning_rate": 4.67948717948718e-05,
1681
+ "loss": 0.5391,
1682
+ "step": 239
1683
+ },
1684
+ {
1685
+ "epoch": 0.768,
1686
+ "grad_norm": 0.2907383143901825,
1687
+ "learning_rate": 4.615384615384616e-05,
1688
+ "loss": 0.4457,
1689
+ "step": 240
1690
+ },
1691
+ {
1692
+ "epoch": 0.7712,
1693
+ "grad_norm": 0.32630524039268494,
1694
+ "learning_rate": 4.5512820512820516e-05,
1695
+ "loss": 0.4652,
1696
+ "step": 241
1697
+ },
1698
+ {
1699
+ "epoch": 0.7744,
1700
+ "grad_norm": 0.33661359548568726,
1701
+ "learning_rate": 4.4871794871794874e-05,
1702
+ "loss": 0.4093,
1703
+ "step": 242
1704
+ },
1705
+ {
1706
+ "epoch": 0.7776,
1707
+ "grad_norm": 0.27634692192077637,
1708
+ "learning_rate": 4.423076923076923e-05,
1709
+ "loss": 0.3958,
1710
+ "step": 243
1711
+ },
1712
+ {
1713
+ "epoch": 0.7808,
1714
+ "grad_norm": 0.40667521953582764,
1715
+ "learning_rate": 4.358974358974359e-05,
1716
+ "loss": 0.4525,
1717
+ "step": 244
1718
+ },
1719
+ {
1720
+ "epoch": 0.784,
1721
+ "grad_norm": 0.30798301100730896,
1722
+ "learning_rate": 4.294871794871795e-05,
1723
+ "loss": 0.4243,
1724
+ "step": 245
1725
+ },
1726
+ {
1727
+ "epoch": 0.7872,
1728
+ "grad_norm": 0.3315953016281128,
1729
+ "learning_rate": 4.230769230769231e-05,
1730
+ "loss": 0.4833,
1731
+ "step": 246
1732
+ },
1733
+ {
1734
+ "epoch": 0.7904,
1735
+ "grad_norm": 0.29299864172935486,
1736
+ "learning_rate": 4.166666666666667e-05,
1737
+ "loss": 0.3727,
1738
+ "step": 247
1739
+ },
1740
+ {
1741
+ "epoch": 0.7936,
1742
+ "grad_norm": 0.3195595443248749,
1743
+ "learning_rate": 4.1025641025641023e-05,
1744
+ "loss": 0.4243,
1745
+ "step": 248
1746
+ },
1747
+ {
1748
+ "epoch": 0.7968,
1749
+ "grad_norm": 0.28434109687805176,
1750
+ "learning_rate": 4.038461538461539e-05,
1751
+ "loss": 0.4001,
1752
+ "step": 249
1753
+ },
1754
+ {
1755
+ "epoch": 0.8,
1756
+ "grad_norm": 0.28316378593444824,
1757
+ "learning_rate": 3.974358974358974e-05,
1758
+ "loss": 0.3611,
1759
+ "step": 250
1760
+ },
1761
+ {
1762
+ "epoch": 0.8032,
1763
+ "grad_norm": 0.2709490656852722,
1764
+ "learning_rate": 3.9102564102564105e-05,
1765
+ "loss": 0.337,
1766
+ "step": 251
1767
+ },
1768
+ {
1769
+ "epoch": 0.8064,
1770
+ "grad_norm": 0.2810059189796448,
1771
+ "learning_rate": 3.846153846153846e-05,
1772
+ "loss": 0.3383,
1773
+ "step": 252
1774
+ },
1775
+ {
1776
+ "epoch": 0.8096,
1777
+ "grad_norm": 0.31759873032569885,
1778
+ "learning_rate": 3.782051282051282e-05,
1779
+ "loss": 0.4404,
1780
+ "step": 253
1781
+ },
1782
+ {
1783
+ "epoch": 0.8128,
1784
+ "grad_norm": 0.27550122141838074,
1785
+ "learning_rate": 3.717948717948718e-05,
1786
+ "loss": 0.3898,
1787
+ "step": 254
1788
+ },
1789
+ {
1790
+ "epoch": 0.816,
1791
+ "grad_norm": 0.29137155413627625,
1792
+ "learning_rate": 3.653846153846154e-05,
1793
+ "loss": 0.3887,
1794
+ "step": 255
1795
+ },
1796
+ {
1797
+ "epoch": 0.8192,
1798
+ "grad_norm": 0.30342838168144226,
1799
+ "learning_rate": 3.58974358974359e-05,
1800
+ "loss": 0.3747,
1801
+ "step": 256
1802
+ },
1803
+ {
1804
+ "epoch": 0.8224,
1805
+ "grad_norm": 0.3385205566883087,
1806
+ "learning_rate": 3.525641025641026e-05,
1807
+ "loss": 0.4591,
1808
+ "step": 257
1809
+ },
1810
+ {
1811
+ "epoch": 0.8256,
1812
+ "grad_norm": 0.28427594900131226,
1813
+ "learning_rate": 3.461538461538462e-05,
1814
+ "loss": 0.3955,
1815
+ "step": 258
1816
+ },
1817
+ {
1818
+ "epoch": 0.8288,
1819
+ "grad_norm": 0.3554467558860779,
1820
+ "learning_rate": 3.397435897435898e-05,
1821
+ "loss": 0.4754,
1822
+ "step": 259
1823
+ },
1824
+ {
1825
+ "epoch": 0.832,
1826
+ "grad_norm": 0.2872997224330902,
1827
+ "learning_rate": 3.3333333333333335e-05,
1828
+ "loss": 0.3336,
1829
+ "step": 260
1830
+ },
1831
+ {
1832
+ "epoch": 0.8352,
1833
+ "grad_norm": 0.32470715045928955,
1834
+ "learning_rate": 3.269230769230769e-05,
1835
+ "loss": 0.5002,
1836
+ "step": 261
1837
+ },
1838
+ {
1839
+ "epoch": 0.8384,
1840
+ "grad_norm": 0.2823026180267334,
1841
+ "learning_rate": 3.205128205128206e-05,
1842
+ "loss": 0.4217,
1843
+ "step": 262
1844
+ },
1845
+ {
1846
+ "epoch": 0.8416,
1847
+ "grad_norm": 0.27532005310058594,
1848
+ "learning_rate": 3.141025641025641e-05,
1849
+ "loss": 0.3505,
1850
+ "step": 263
1851
+ },
1852
+ {
1853
+ "epoch": 0.8448,
1854
+ "grad_norm": 0.30065861344337463,
1855
+ "learning_rate": 3.0769230769230774e-05,
1856
+ "loss": 0.385,
1857
+ "step": 264
1858
+ },
1859
+ {
1860
+ "epoch": 0.848,
1861
+ "grad_norm": 0.3140447437763214,
1862
+ "learning_rate": 3.012820512820513e-05,
1863
+ "loss": 0.4599,
1864
+ "step": 265
1865
+ },
1866
+ {
1867
+ "epoch": 0.8512,
1868
+ "grad_norm": 0.30165910720825195,
1869
+ "learning_rate": 2.948717948717949e-05,
1870
+ "loss": 0.4027,
1871
+ "step": 266
1872
+ },
1873
+ {
1874
+ "epoch": 0.8544,
1875
+ "grad_norm": 0.3036094307899475,
1876
+ "learning_rate": 2.8846153846153845e-05,
1877
+ "loss": 0.406,
1878
+ "step": 267
1879
+ },
1880
+ {
1881
+ "epoch": 0.8576,
1882
+ "grad_norm": 0.31652310490608215,
1883
+ "learning_rate": 2.8205128205128207e-05,
1884
+ "loss": 0.4115,
1885
+ "step": 268
1886
+ },
1887
+ {
1888
+ "epoch": 0.8608,
1889
+ "grad_norm": 0.3006727397441864,
1890
+ "learning_rate": 2.756410256410257e-05,
1891
+ "loss": 0.4464,
1892
+ "step": 269
1893
+ },
1894
+ {
1895
+ "epoch": 0.864,
1896
+ "grad_norm": 0.34472909569740295,
1897
+ "learning_rate": 2.6923076923076923e-05,
1898
+ "loss": 0.4643,
1899
+ "step": 270
1900
+ },
1901
+ {
1902
+ "epoch": 0.8672,
1903
+ "grad_norm": 0.2880076766014099,
1904
+ "learning_rate": 2.6282051282051285e-05,
1905
+ "loss": 0.3675,
1906
+ "step": 271
1907
+ },
1908
+ {
1909
+ "epoch": 0.8704,
1910
+ "grad_norm": 0.34488052129745483,
1911
+ "learning_rate": 2.564102564102564e-05,
1912
+ "loss": 0.4661,
1913
+ "step": 272
1914
+ },
1915
+ {
1916
+ "epoch": 0.8736,
1917
+ "grad_norm": 0.30622804164886475,
1918
+ "learning_rate": 2.5e-05,
1919
+ "loss": 0.405,
1920
+ "step": 273
1921
+ },
1922
+ {
1923
+ "epoch": 0.8768,
1924
+ "grad_norm": 0.3236006200313568,
1925
+ "learning_rate": 2.435897435897436e-05,
1926
+ "loss": 0.4426,
1927
+ "step": 274
1928
+ },
1929
+ {
1930
+ "epoch": 0.88,
1931
+ "grad_norm": 0.3554222285747528,
1932
+ "learning_rate": 2.3717948717948718e-05,
1933
+ "loss": 0.4809,
1934
+ "step": 275
1935
+ },
1936
+ {
1937
+ "epoch": 0.8832,
1938
+ "grad_norm": 0.34005558490753174,
1939
+ "learning_rate": 2.307692307692308e-05,
1940
+ "loss": 0.417,
1941
+ "step": 276
1942
+ },
1943
+ {
1944
+ "epoch": 0.8864,
1945
+ "grad_norm": 0.30246976017951965,
1946
+ "learning_rate": 2.2435897435897437e-05,
1947
+ "loss": 0.4264,
1948
+ "step": 277
1949
+ },
1950
+ {
1951
+ "epoch": 0.8896,
1952
+ "grad_norm": 0.3341597616672516,
1953
+ "learning_rate": 2.1794871794871795e-05,
1954
+ "loss": 0.4871,
1955
+ "step": 278
1956
+ },
1957
+ {
1958
+ "epoch": 0.8928,
1959
+ "grad_norm": 0.349656343460083,
1960
+ "learning_rate": 2.1153846153846154e-05,
1961
+ "loss": 0.5549,
1962
+ "step": 279
1963
+ },
1964
+ {
1965
+ "epoch": 0.896,
1966
+ "grad_norm": 0.32281672954559326,
1967
+ "learning_rate": 2.0512820512820512e-05,
1968
+ "loss": 0.3897,
1969
+ "step": 280
1970
+ },
1971
+ {
1972
+ "epoch": 0.8992,
1973
+ "grad_norm": 0.34751957654953003,
1974
+ "learning_rate": 1.987179487179487e-05,
1975
+ "loss": 0.429,
1976
+ "step": 281
1977
+ },
1978
+ {
1979
+ "epoch": 0.9024,
1980
+ "grad_norm": 0.30903372168540955,
1981
+ "learning_rate": 1.923076923076923e-05,
1982
+ "loss": 0.3939,
1983
+ "step": 282
1984
+ },
1985
+ {
1986
+ "epoch": 0.9056,
1987
+ "grad_norm": 0.29195931553840637,
1988
+ "learning_rate": 1.858974358974359e-05,
1989
+ "loss": 0.3129,
1990
+ "step": 283
1991
+ },
1992
+ {
1993
+ "epoch": 0.9088,
1994
+ "grad_norm": 0.3270445168018341,
1995
+ "learning_rate": 1.794871794871795e-05,
1996
+ "loss": 0.4435,
1997
+ "step": 284
1998
+ },
1999
+ {
2000
+ "epoch": 0.912,
2001
+ "grad_norm": 0.3003033995628357,
2002
+ "learning_rate": 1.730769230769231e-05,
2003
+ "loss": 0.3446,
2004
+ "step": 285
2005
+ },
2006
+ {
2007
+ "epoch": 0.9152,
2008
+ "grad_norm": 0.35107478499412537,
2009
+ "learning_rate": 1.6666666666666667e-05,
2010
+ "loss": 0.5102,
2011
+ "step": 286
2012
+ },
2013
+ {
2014
+ "epoch": 0.9184,
2015
+ "grad_norm": 0.28601357340812683,
2016
+ "learning_rate": 1.602564102564103e-05,
2017
+ "loss": 0.3619,
2018
+ "step": 287
2019
+ },
2020
+ {
2021
+ "epoch": 0.9216,
2022
+ "grad_norm": 0.2772061228752136,
2023
+ "learning_rate": 1.5384615384615387e-05,
2024
+ "loss": 0.3428,
2025
+ "step": 288
2026
+ },
2027
+ {
2028
+ "epoch": 0.9248,
2029
+ "grad_norm": 0.3195333182811737,
2030
+ "learning_rate": 1.4743589743589745e-05,
2031
+ "loss": 0.4477,
2032
+ "step": 289
2033
+ },
2034
+ {
2035
+ "epoch": 0.928,
2036
+ "grad_norm": 0.2672041654586792,
2037
+ "learning_rate": 1.4102564102564104e-05,
2038
+ "loss": 0.2811,
2039
+ "step": 290
2040
+ },
2041
+ {
2042
+ "epoch": 0.9312,
2043
+ "grad_norm": 0.36466383934020996,
2044
+ "learning_rate": 1.3461538461538462e-05,
2045
+ "loss": 0.5833,
2046
+ "step": 291
2047
+ },
2048
+ {
2049
+ "epoch": 0.9344,
2050
+ "grad_norm": 0.31829240918159485,
2051
+ "learning_rate": 1.282051282051282e-05,
2052
+ "loss": 0.4144,
2053
+ "step": 292
2054
+ },
2055
+ {
2056
+ "epoch": 0.9376,
2057
+ "grad_norm": 0.3314779996871948,
2058
+ "learning_rate": 1.217948717948718e-05,
2059
+ "loss": 0.458,
2060
+ "step": 293
2061
+ },
2062
+ {
2063
+ "epoch": 0.9408,
2064
+ "grad_norm": 0.31584641337394714,
2065
+ "learning_rate": 1.153846153846154e-05,
2066
+ "loss": 0.4482,
2067
+ "step": 294
2068
+ },
2069
+ {
2070
+ "epoch": 0.944,
2071
+ "grad_norm": 0.2965344190597534,
2072
+ "learning_rate": 1.0897435897435898e-05,
2073
+ "loss": 0.3293,
2074
+ "step": 295
2075
+ },
2076
+ {
2077
+ "epoch": 0.9472,
2078
+ "grad_norm": 0.2547074556350708,
2079
+ "learning_rate": 1.0256410256410256e-05,
2080
+ "loss": 0.3007,
2081
+ "step": 296
2082
+ },
2083
+ {
2084
+ "epoch": 0.9504,
2085
+ "grad_norm": 0.3165215849876404,
2086
+ "learning_rate": 9.615384615384616e-06,
2087
+ "loss": 0.4053,
2088
+ "step": 297
2089
+ },
2090
+ {
2091
+ "epoch": 0.9536,
2092
+ "grad_norm": 0.29612070322036743,
2093
+ "learning_rate": 8.974358974358976e-06,
2094
+ "loss": 0.4188,
2095
+ "step": 298
2096
+ },
2097
+ {
2098
+ "epoch": 0.9568,
2099
+ "grad_norm": 0.3118067681789398,
2100
+ "learning_rate": 8.333333333333334e-06,
2101
+ "loss": 0.4429,
2102
+ "step": 299
2103
+ },
2104
+ {
2105
+ "epoch": 0.96,
2106
+ "grad_norm": 0.29589030146598816,
2107
+ "learning_rate": 7.692307692307694e-06,
2108
+ "loss": 0.3348,
2109
+ "step": 300
2110
+ },
2111
+ {
2112
+ "epoch": 0.9632,
2113
+ "grad_norm": 0.3114546537399292,
2114
+ "learning_rate": 7.051282051282052e-06,
2115
+ "loss": 0.3836,
2116
+ "step": 301
2117
+ },
2118
+ {
2119
+ "epoch": 0.9664,
2120
+ "grad_norm": 0.320286363363266,
2121
+ "learning_rate": 6.41025641025641e-06,
2122
+ "loss": 0.4182,
2123
+ "step": 302
2124
+ },
2125
+ {
2126
+ "epoch": 0.9696,
2127
+ "grad_norm": 0.30404043197631836,
2128
+ "learning_rate": 5.76923076923077e-06,
2129
+ "loss": 0.3908,
2130
+ "step": 303
2131
+ },
2132
+ {
2133
+ "epoch": 0.9728,
2134
+ "grad_norm": 0.32467764616012573,
2135
+ "learning_rate": 5.128205128205128e-06,
2136
+ "loss": 0.4187,
2137
+ "step": 304
2138
+ },
2139
+ {
2140
+ "epoch": 0.976,
2141
+ "grad_norm": 0.3350898325443268,
2142
+ "learning_rate": 4.487179487179488e-06,
2143
+ "loss": 0.4535,
2144
+ "step": 305
2145
+ },
2146
+ {
2147
+ "epoch": 0.9792,
2148
+ "grad_norm": 0.3279955983161926,
2149
+ "learning_rate": 3.846153846153847e-06,
2150
+ "loss": 0.4286,
2151
+ "step": 306
2152
+ },
2153
+ {
2154
+ "epoch": 0.9824,
2155
+ "grad_norm": 0.30812716484069824,
2156
+ "learning_rate": 3.205128205128205e-06,
2157
+ "loss": 0.3714,
2158
+ "step": 307
2159
+ },
2160
+ {
2161
+ "epoch": 0.9856,
2162
+ "grad_norm": 0.3073851466178894,
2163
+ "learning_rate": 2.564102564102564e-06,
2164
+ "loss": 0.3603,
2165
+ "step": 308
2166
+ },
2167
+ {
2168
+ "epoch": 0.9888,
2169
+ "grad_norm": 0.29078444838523865,
2170
+ "learning_rate": 1.9230769230769234e-06,
2171
+ "loss": 0.3935,
2172
+ "step": 309
2173
+ },
2174
+ {
2175
+ "epoch": 0.992,
2176
+ "grad_norm": 0.3246036171913147,
2177
+ "learning_rate": 1.282051282051282e-06,
2178
+ "loss": 0.4224,
2179
+ "step": 310
2180
+ },
2181
+ {
2182
+ "epoch": 0.9952,
2183
+ "grad_norm": 0.3184387683868408,
2184
+ "learning_rate": 6.41025641025641e-07,
2185
+ "loss": 0.4499,
2186
+ "step": 311
2187
+ },
2188
+ {
2189
+ "epoch": 0.9984,
2190
+ "grad_norm": 0.37150660157203674,
2191
+ "learning_rate": 0.0,
2192
+ "loss": 0.4383,
2193
+ "step": 312
2194
+ }
2195
+ ],
2196
+ "logging_steps": 1,
2197
+ "max_steps": 312,
2198
+ "num_input_tokens_seen": 0,
2199
+ "num_train_epochs": 1,
2200
+ "save_steps": 100,
2201
+ "stateful_callbacks": {
2202
+ "TrainerControl": {
2203
+ "args": {
2204
+ "should_epoch_stop": false,
2205
+ "should_evaluate": false,
2206
+ "should_log": false,
2207
+ "should_save": true,
2208
+ "should_training_stop": true
2209
+ },
2210
+ "attributes": {}
2211
+ }
2212
+ },
2213
+ "total_flos": 4.075558770887885e+16,
2214
+ "train_batch_size": 4,
2215
+ "trial_name": null,
2216
+ "trial_params": null
2217
+ }
Stonk_Training_SFT/checkpoint-312/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46e61b3ea2344ac46fb729121ab3faf1d3cbf202ba9ecb6f78320571a83fec82
3
+ size 5432
Stonk_Training_SFT/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
Stonk_Training_SFT/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
Stonk_Training_SFT/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e667a7d18d94098aefa2473386a7a3e456dff729cdf04a1f060f32b0d8b8fe7
3
+ size 11422176
Stonk_Training_SFT/tokenizer_config.json ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ }
181
+ },
182
+ "additional_special_tokens": [
183
+ "<|im_start|>",
184
+ "<|im_end|>",
185
+ "<|object_ref_start|>",
186
+ "<|object_ref_end|>",
187
+ "<|box_start|>",
188
+ "<|box_end|>",
189
+ "<|quad_start|>",
190
+ "<|quad_end|>",
191
+ "<|vision_start|>",
192
+ "<|vision_end|>",
193
+ "<|vision_pad|>",
194
+ "<|image_pad|>",
195
+ "<|video_pad|>"
196
+ ],
197
+ "bos_token": null,
198
+ "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
199
+ "clean_up_tokenization_spaces": false,
200
+ "eos_token": "<|im_end|>",
201
+ "errors": "replace",
202
+ "extra_special_tokens": {},
203
+ "model_max_length": 131072,
204
+ "pad_token": "<|endoftext|>",
205
+ "split_special_tokens": false,
206
+ "tokenizer_class": "Qwen2Tokenizer",
207
+ "unk_token": null
208
+ }
Stonk_Training_SFT/vocab.json ADDED
The diff for this file is too large to render. See raw diff