Rodrigo-Binarial commited on
Commit
9aa0249
1 Parent(s): 7ca8dc7

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - autotrain
4
+ - text-generation-inference
5
+ - text-generation
6
+ - peft
7
+ library_name: transformers
8
+ widget:
9
+ - messages:
10
+ - role: user
11
+ content: What is your favorite condiment?
12
+ license: other
13
+ ---
14
+
15
+ # Model Trained Using AutoTrain
16
+
17
+ This model was trained using AutoTrain. For more information, please visit [AutoTrain](https://hf.co/docs/autotrain).
18
+
19
+ # Usage
20
+
21
+ ```python
22
+
23
+ from transformers import AutoModelForCausalLM, AutoTokenizer
24
+
25
+ model_path = "PATH_TO_THIS_REPO"
26
+
27
+ tokenizer = AutoTokenizer.from_pretrained(model_path)
28
+ model = AutoModelForCausalLM.from_pretrained(
29
+ model_path,
30
+ device_map="auto",
31
+ torch_dtype='auto'
32
+ ).eval()
33
+
34
+ # Prompt content: "hi"
35
+ messages = [
36
+ {"role": "user", "content": "hi"}
37
+ ]
38
+
39
+ input_ids = tokenizer.apply_chat_template(conversation=messages, tokenize=True, add_generation_prompt=True, return_tensors='pt')
40
+ output_ids = model.generate(input_ids.to('cuda'))
41
+ response = tokenizer.decode(output_ids[0][input_ids.shape[1]:], skip_special_tokens=True)
42
+
43
+ # Model response: "Hello! How can I assist you today?"
44
+ print(response)
45
+ ```
adapter_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "mistralai/Mistral-7B-Instruct-v0.2",
5
+ "bias": "none",
6
+ "fan_in_fan_out": false,
7
+ "inference_mode": true,
8
+ "init_lora_weights": true,
9
+ "layer_replication": null,
10
+ "layers_pattern": null,
11
+ "layers_to_transform": null,
12
+ "loftq_config": {},
13
+ "lora_alpha": 32,
14
+ "lora_dropout": 0.05,
15
+ "megatron_config": null,
16
+ "megatron_core": "megatron.core",
17
+ "modules_to_save": null,
18
+ "peft_type": "LORA",
19
+ "r": 16,
20
+ "rank_pattern": {},
21
+ "revision": null,
22
+ "target_modules": [
23
+ "k_proj",
24
+ "v_proj",
25
+ "up_proj",
26
+ "o_proj",
27
+ "down_proj",
28
+ "q_proj",
29
+ "gate_proj"
30
+ ],
31
+ "task_type": "CAUSAL_LM",
32
+ "use_dora": false,
33
+ "use_rslora": false
34
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1c94d5dc25f7aa372411018ebf84b652f7a47a82cd791ecb630b0870a2b4b1e
3
+ size 167832240
checkpoint-8163/README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ base_model: mistralai/Mistral-7B-Instruct-v0.2
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.10.0
checkpoint-8163/adapter_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "mistralai/Mistral-7B-Instruct-v0.2",
5
+ "bias": "none",
6
+ "fan_in_fan_out": false,
7
+ "inference_mode": true,
8
+ "init_lora_weights": true,
9
+ "layer_replication": null,
10
+ "layers_pattern": null,
11
+ "layers_to_transform": null,
12
+ "loftq_config": {},
13
+ "lora_alpha": 32,
14
+ "lora_dropout": 0.05,
15
+ "megatron_config": null,
16
+ "megatron_core": "megatron.core",
17
+ "modules_to_save": null,
18
+ "peft_type": "LORA",
19
+ "r": 16,
20
+ "rank_pattern": {},
21
+ "revision": null,
22
+ "target_modules": [
23
+ "k_proj",
24
+ "v_proj",
25
+ "up_proj",
26
+ "o_proj",
27
+ "down_proj",
28
+ "q_proj",
29
+ "gate_proj"
30
+ ],
31
+ "task_type": "CAUSAL_LM",
32
+ "use_dora": false,
33
+ "use_rslora": false
34
+ }
checkpoint-8163/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1c94d5dc25f7aa372411018ebf84b652f7a47a82cd791ecb630b0870a2b4b1e
3
+ size 167832240
checkpoint-8163/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a43a6e2693091bda31318bdf5b02732a7ed14ffb980f944a449a8a8f1336be4
3
+ size 335922386
checkpoint-8163/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:049c26b844b79121ddd8379f7f69194e63f6fbf6aa007eeac0c66f17eebb8893
3
+ size 888
checkpoint-8163/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76f0eb2c0fa0fbda1b5866dc373106fc53661a351a69a299530ed4101ec6575e
3
+ size 14244
checkpoint-8163/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:711d4ab4746e522a1071d0febf7d76ca7b1edd00051755c64ef6b99ac191feeb
3
+ size 1064
checkpoint-8163/special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "</s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
checkpoint-8163/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-8163/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
checkpoint-8163/tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<unk>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "<s>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "</s>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ }
29
+ },
30
+ "additional_special_tokens": [],
31
+ "bos_token": "<s>",
32
+ "chat_template": "{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}",
33
+ "clean_up_tokenization_spaces": false,
34
+ "eos_token": "</s>",
35
+ "legacy": true,
36
+ "model_max_length": 2048,
37
+ "pad_token": "</s>",
38
+ "sp_model_kwargs": {},
39
+ "spaces_between_special_tokens": false,
40
+ "tokenizer_class": "LlamaTokenizer",
41
+ "unk_token": "<unk>",
42
+ "use_default_system_prompt": false
43
+ }
checkpoint-8163/trainer_state.json ADDED
@@ -0,0 +1,2303 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 2.999724391364263,
5
+ "eval_steps": 500,
6
+ "global_step": 8163,
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.01,
13
+ "grad_norm": 5.019594669342041,
14
+ "learning_rate": 8.812729498164015e-07,
15
+ "loss": 2.5969,
16
+ "step": 25
17
+ },
18
+ {
19
+ "epoch": 0.02,
20
+ "grad_norm": 3.2792530059814453,
21
+ "learning_rate": 1.799265605875153e-06,
22
+ "loss": 2.5712,
23
+ "step": 50
24
+ },
25
+ {
26
+ "epoch": 0.03,
27
+ "grad_norm": 2.6284871101379395,
28
+ "learning_rate": 2.7172582619339046e-06,
29
+ "loss": 2.4269,
30
+ "step": 75
31
+ },
32
+ {
33
+ "epoch": 0.04,
34
+ "grad_norm": 2.638899803161621,
35
+ "learning_rate": 3.6352509179926564e-06,
36
+ "loss": 2.3086,
37
+ "step": 100
38
+ },
39
+ {
40
+ "epoch": 0.05,
41
+ "grad_norm": 3.020103693008423,
42
+ "learning_rate": 4.553243574051408e-06,
43
+ "loss": 2.152,
44
+ "step": 125
45
+ },
46
+ {
47
+ "epoch": 0.06,
48
+ "grad_norm": 2.3148763179779053,
49
+ "learning_rate": 5.47123623011016e-06,
50
+ "loss": 2.0393,
51
+ "step": 150
52
+ },
53
+ {
54
+ "epoch": 0.06,
55
+ "grad_norm": 2.275376558303833,
56
+ "learning_rate": 6.389228886168911e-06,
57
+ "loss": 1.954,
58
+ "step": 175
59
+ },
60
+ {
61
+ "epoch": 0.07,
62
+ "grad_norm": 2.5663716793060303,
63
+ "learning_rate": 7.307221542227662e-06,
64
+ "loss": 1.9075,
65
+ "step": 200
66
+ },
67
+ {
68
+ "epoch": 0.08,
69
+ "grad_norm": 2.4330193996429443,
70
+ "learning_rate": 8.225214198286414e-06,
71
+ "loss": 1.8074,
72
+ "step": 225
73
+ },
74
+ {
75
+ "epoch": 0.09,
76
+ "grad_norm": 2.7704484462738037,
77
+ "learning_rate": 9.143206854345165e-06,
78
+ "loss": 1.7968,
79
+ "step": 250
80
+ },
81
+ {
82
+ "epoch": 0.1,
83
+ "grad_norm": 3.2770776748657227,
84
+ "learning_rate": 1.0061199510403917e-05,
85
+ "loss": 1.7784,
86
+ "step": 275
87
+ },
88
+ {
89
+ "epoch": 0.11,
90
+ "grad_norm": 2.754490613937378,
91
+ "learning_rate": 1.097919216646267e-05,
92
+ "loss": 1.6953,
93
+ "step": 300
94
+ },
95
+ {
96
+ "epoch": 0.12,
97
+ "grad_norm": 3.240971326828003,
98
+ "learning_rate": 1.189718482252142e-05,
99
+ "loss": 1.6694,
100
+ "step": 325
101
+ },
102
+ {
103
+ "epoch": 0.13,
104
+ "grad_norm": 3.4175171852111816,
105
+ "learning_rate": 1.2815177478580172e-05,
106
+ "loss": 1.6863,
107
+ "step": 350
108
+ },
109
+ {
110
+ "epoch": 0.14,
111
+ "grad_norm": 2.8977129459381104,
112
+ "learning_rate": 1.3733170134638923e-05,
113
+ "loss": 1.6488,
114
+ "step": 375
115
+ },
116
+ {
117
+ "epoch": 0.15,
118
+ "grad_norm": 3.4206955432891846,
119
+ "learning_rate": 1.4651162790697674e-05,
120
+ "loss": 1.659,
121
+ "step": 400
122
+ },
123
+ {
124
+ "epoch": 0.16,
125
+ "grad_norm": 3.3763089179992676,
126
+ "learning_rate": 1.556915544675643e-05,
127
+ "loss": 1.6077,
128
+ "step": 425
129
+ },
130
+ {
131
+ "epoch": 0.17,
132
+ "grad_norm": 3.212315320968628,
133
+ "learning_rate": 1.6487148102815178e-05,
134
+ "loss": 1.6231,
135
+ "step": 450
136
+ },
137
+ {
138
+ "epoch": 0.17,
139
+ "grad_norm": 3.6150689125061035,
140
+ "learning_rate": 1.7405140758873927e-05,
141
+ "loss": 1.6708,
142
+ "step": 475
143
+ },
144
+ {
145
+ "epoch": 0.18,
146
+ "grad_norm": 3.622896671295166,
147
+ "learning_rate": 1.8323133414932683e-05,
148
+ "loss": 1.5761,
149
+ "step": 500
150
+ },
151
+ {
152
+ "epoch": 0.19,
153
+ "grad_norm": 3.499622106552124,
154
+ "learning_rate": 1.9241126070991433e-05,
155
+ "loss": 1.6017,
156
+ "step": 525
157
+ },
158
+ {
159
+ "epoch": 0.2,
160
+ "grad_norm": 3.657644748687744,
161
+ "learning_rate": 2.0159118727050182e-05,
162
+ "loss": 1.5908,
163
+ "step": 550
164
+ },
165
+ {
166
+ "epoch": 0.21,
167
+ "grad_norm": 3.4769978523254395,
168
+ "learning_rate": 2.1077111383108938e-05,
169
+ "loss": 1.6129,
170
+ "step": 575
171
+ },
172
+ {
173
+ "epoch": 0.22,
174
+ "grad_norm": 3.1776161193847656,
175
+ "learning_rate": 2.1995104039167688e-05,
176
+ "loss": 1.5764,
177
+ "step": 600
178
+ },
179
+ {
180
+ "epoch": 0.23,
181
+ "grad_norm": 3.463768482208252,
182
+ "learning_rate": 2.2913096695226437e-05,
183
+ "loss": 1.579,
184
+ "step": 625
185
+ },
186
+ {
187
+ "epoch": 0.24,
188
+ "grad_norm": 3.202385902404785,
189
+ "learning_rate": 2.383108935128519e-05,
190
+ "loss": 1.5452,
191
+ "step": 650
192
+ },
193
+ {
194
+ "epoch": 0.25,
195
+ "grad_norm": 3.233647108078003,
196
+ "learning_rate": 2.4749082007343942e-05,
197
+ "loss": 1.6323,
198
+ "step": 675
199
+ },
200
+ {
201
+ "epoch": 0.26,
202
+ "grad_norm": 3.332144021987915,
203
+ "learning_rate": 2.5667074663402692e-05,
204
+ "loss": 1.6045,
205
+ "step": 700
206
+ },
207
+ {
208
+ "epoch": 0.27,
209
+ "grad_norm": 3.251033306121826,
210
+ "learning_rate": 2.6585067319461444e-05,
211
+ "loss": 1.5763,
212
+ "step": 725
213
+ },
214
+ {
215
+ "epoch": 0.28,
216
+ "grad_norm": 3.138462781906128,
217
+ "learning_rate": 2.7503059975520197e-05,
218
+ "loss": 1.5706,
219
+ "step": 750
220
+ },
221
+ {
222
+ "epoch": 0.28,
223
+ "grad_norm": 3.0554285049438477,
224
+ "learning_rate": 2.8421052631578946e-05,
225
+ "loss": 1.5216,
226
+ "step": 775
227
+ },
228
+ {
229
+ "epoch": 0.29,
230
+ "grad_norm": 3.0504651069641113,
231
+ "learning_rate": 2.93390452876377e-05,
232
+ "loss": 1.57,
233
+ "step": 800
234
+ },
235
+ {
236
+ "epoch": 0.3,
237
+ "grad_norm": 2.95691180229187,
238
+ "learning_rate": 2.997141301388511e-05,
239
+ "loss": 1.5168,
240
+ "step": 825
241
+ },
242
+ {
243
+ "epoch": 0.31,
244
+ "grad_norm": 2.863208293914795,
245
+ "learning_rate": 2.986931663490335e-05,
246
+ "loss": 1.5552,
247
+ "step": 850
248
+ },
249
+ {
250
+ "epoch": 0.32,
251
+ "grad_norm": 2.5448153018951416,
252
+ "learning_rate": 2.9767220255921593e-05,
253
+ "loss": 1.5648,
254
+ "step": 875
255
+ },
256
+ {
257
+ "epoch": 0.33,
258
+ "grad_norm": 2.7234387397766113,
259
+ "learning_rate": 2.9665123876939832e-05,
260
+ "loss": 1.5216,
261
+ "step": 900
262
+ },
263
+ {
264
+ "epoch": 0.34,
265
+ "grad_norm": 2.56977915763855,
266
+ "learning_rate": 2.956302749795807e-05,
267
+ "loss": 1.4888,
268
+ "step": 925
269
+ },
270
+ {
271
+ "epoch": 0.35,
272
+ "grad_norm": 2.7813570499420166,
273
+ "learning_rate": 2.9460931118976314e-05,
274
+ "loss": 1.55,
275
+ "step": 950
276
+ },
277
+ {
278
+ "epoch": 0.36,
279
+ "grad_norm": 2.516843318939209,
280
+ "learning_rate": 2.9358834739994553e-05,
281
+ "loss": 1.5215,
282
+ "step": 975
283
+ },
284
+ {
285
+ "epoch": 0.37,
286
+ "grad_norm": 2.7116241455078125,
287
+ "learning_rate": 2.9256738361012796e-05,
288
+ "loss": 1.5186,
289
+ "step": 1000
290
+ },
291
+ {
292
+ "epoch": 0.38,
293
+ "grad_norm": 2.504891872406006,
294
+ "learning_rate": 2.9154641982031038e-05,
295
+ "loss": 1.4975,
296
+ "step": 1025
297
+ },
298
+ {
299
+ "epoch": 0.39,
300
+ "grad_norm": 2.4921352863311768,
301
+ "learning_rate": 2.9052545603049277e-05,
302
+ "loss": 1.5364,
303
+ "step": 1050
304
+ },
305
+ {
306
+ "epoch": 0.4,
307
+ "grad_norm": 2.4780983924865723,
308
+ "learning_rate": 2.895044922406752e-05,
309
+ "loss": 1.5075,
310
+ "step": 1075
311
+ },
312
+ {
313
+ "epoch": 0.4,
314
+ "grad_norm": 2.5795676708221436,
315
+ "learning_rate": 2.884835284508576e-05,
316
+ "loss": 1.5197,
317
+ "step": 1100
318
+ },
319
+ {
320
+ "epoch": 0.41,
321
+ "grad_norm": 2.4717788696289062,
322
+ "learning_rate": 2.8746256466104002e-05,
323
+ "loss": 1.5436,
324
+ "step": 1125
325
+ },
326
+ {
327
+ "epoch": 0.42,
328
+ "grad_norm": 2.516700029373169,
329
+ "learning_rate": 2.8644160087122245e-05,
330
+ "loss": 1.5227,
331
+ "step": 1150
332
+ },
333
+ {
334
+ "epoch": 0.43,
335
+ "grad_norm": 2.3301610946655273,
336
+ "learning_rate": 2.8542063708140484e-05,
337
+ "loss": 1.5403,
338
+ "step": 1175
339
+ },
340
+ {
341
+ "epoch": 0.44,
342
+ "grad_norm": 2.5666234493255615,
343
+ "learning_rate": 2.8439967329158726e-05,
344
+ "loss": 1.484,
345
+ "step": 1200
346
+ },
347
+ {
348
+ "epoch": 0.45,
349
+ "grad_norm": 2.273963689804077,
350
+ "learning_rate": 2.8337870950176966e-05,
351
+ "loss": 1.4857,
352
+ "step": 1225
353
+ },
354
+ {
355
+ "epoch": 0.46,
356
+ "grad_norm": 2.419245958328247,
357
+ "learning_rate": 2.8239858426354477e-05,
358
+ "loss": 1.4803,
359
+ "step": 1250
360
+ },
361
+ {
362
+ "epoch": 0.47,
363
+ "grad_norm": 2.312894821166992,
364
+ "learning_rate": 2.813776204737272e-05,
365
+ "loss": 1.497,
366
+ "step": 1275
367
+ },
368
+ {
369
+ "epoch": 0.48,
370
+ "grad_norm": 2.3168880939483643,
371
+ "learning_rate": 2.8035665668390962e-05,
372
+ "loss": 1.5124,
373
+ "step": 1300
374
+ },
375
+ {
376
+ "epoch": 0.49,
377
+ "grad_norm": 2.245943546295166,
378
+ "learning_rate": 2.79335692894092e-05,
379
+ "loss": 1.4894,
380
+ "step": 1325
381
+ },
382
+ {
383
+ "epoch": 0.5,
384
+ "grad_norm": 2.4954259395599365,
385
+ "learning_rate": 2.7831472910427444e-05,
386
+ "loss": 1.5054,
387
+ "step": 1350
388
+ },
389
+ {
390
+ "epoch": 0.51,
391
+ "grad_norm": 2.5361862182617188,
392
+ "learning_rate": 2.7729376531445686e-05,
393
+ "loss": 1.515,
394
+ "step": 1375
395
+ },
396
+ {
397
+ "epoch": 0.51,
398
+ "grad_norm": 2.41825795173645,
399
+ "learning_rate": 2.7627280152463926e-05,
400
+ "loss": 1.4432,
401
+ "step": 1400
402
+ },
403
+ {
404
+ "epoch": 0.52,
405
+ "grad_norm": 2.2795910835266113,
406
+ "learning_rate": 2.7525183773482168e-05,
407
+ "loss": 1.4956,
408
+ "step": 1425
409
+ },
410
+ {
411
+ "epoch": 0.53,
412
+ "grad_norm": 2.272019624710083,
413
+ "learning_rate": 2.7423087394500407e-05,
414
+ "loss": 1.5067,
415
+ "step": 1450
416
+ },
417
+ {
418
+ "epoch": 0.54,
419
+ "grad_norm": 2.297214984893799,
420
+ "learning_rate": 2.732099101551865e-05,
421
+ "loss": 1.459,
422
+ "step": 1475
423
+ },
424
+ {
425
+ "epoch": 0.55,
426
+ "grad_norm": 2.2966599464416504,
427
+ "learning_rate": 2.7218894636536893e-05,
428
+ "loss": 1.463,
429
+ "step": 1500
430
+ },
431
+ {
432
+ "epoch": 0.56,
433
+ "grad_norm": 2.258310556411743,
434
+ "learning_rate": 2.7116798257555132e-05,
435
+ "loss": 1.4855,
436
+ "step": 1525
437
+ },
438
+ {
439
+ "epoch": 0.57,
440
+ "grad_norm": 2.2546372413635254,
441
+ "learning_rate": 2.7014701878573375e-05,
442
+ "loss": 1.4389,
443
+ "step": 1550
444
+ },
445
+ {
446
+ "epoch": 0.58,
447
+ "grad_norm": 2.2848825454711914,
448
+ "learning_rate": 2.6912605499591614e-05,
449
+ "loss": 1.4709,
450
+ "step": 1575
451
+ },
452
+ {
453
+ "epoch": 0.59,
454
+ "grad_norm": 2.4607439041137695,
455
+ "learning_rate": 2.6810509120609856e-05,
456
+ "loss": 1.4738,
457
+ "step": 1600
458
+ },
459
+ {
460
+ "epoch": 0.6,
461
+ "grad_norm": 2.17085599899292,
462
+ "learning_rate": 2.67084127416281e-05,
463
+ "loss": 1.4427,
464
+ "step": 1625
465
+ },
466
+ {
467
+ "epoch": 0.61,
468
+ "grad_norm": 2.3322973251342773,
469
+ "learning_rate": 2.6606316362646338e-05,
470
+ "loss": 1.4576,
471
+ "step": 1650
472
+ },
473
+ {
474
+ "epoch": 0.62,
475
+ "grad_norm": 2.157118558883667,
476
+ "learning_rate": 2.650421998366458e-05,
477
+ "loss": 1.4368,
478
+ "step": 1675
479
+ },
480
+ {
481
+ "epoch": 0.62,
482
+ "grad_norm": 2.3906755447387695,
483
+ "learning_rate": 2.640212360468282e-05,
484
+ "loss": 1.4464,
485
+ "step": 1700
486
+ },
487
+ {
488
+ "epoch": 0.63,
489
+ "grad_norm": 2.19273042678833,
490
+ "learning_rate": 2.6300027225701063e-05,
491
+ "loss": 1.4032,
492
+ "step": 1725
493
+ },
494
+ {
495
+ "epoch": 0.64,
496
+ "grad_norm": 2.0533928871154785,
497
+ "learning_rate": 2.6197930846719305e-05,
498
+ "loss": 1.4803,
499
+ "step": 1750
500
+ },
501
+ {
502
+ "epoch": 0.65,
503
+ "grad_norm": 2.090940237045288,
504
+ "learning_rate": 2.6095834467737544e-05,
505
+ "loss": 1.4613,
506
+ "step": 1775
507
+ },
508
+ {
509
+ "epoch": 0.66,
510
+ "grad_norm": 2.2770726680755615,
511
+ "learning_rate": 2.5993738088755787e-05,
512
+ "loss": 1.4975,
513
+ "step": 1800
514
+ },
515
+ {
516
+ "epoch": 0.67,
517
+ "grad_norm": 2.3754994869232178,
518
+ "learning_rate": 2.589164170977403e-05,
519
+ "loss": 1.4286,
520
+ "step": 1825
521
+ },
522
+ {
523
+ "epoch": 0.68,
524
+ "grad_norm": 2.255023717880249,
525
+ "learning_rate": 2.578954533079227e-05,
526
+ "loss": 1.4112,
527
+ "step": 1850
528
+ },
529
+ {
530
+ "epoch": 0.69,
531
+ "grad_norm": 2.0663328170776367,
532
+ "learning_rate": 2.568744895181051e-05,
533
+ "loss": 1.4288,
534
+ "step": 1875
535
+ },
536
+ {
537
+ "epoch": 0.7,
538
+ "grad_norm": 2.1688010692596436,
539
+ "learning_rate": 2.558535257282875e-05,
540
+ "loss": 1.4175,
541
+ "step": 1900
542
+ },
543
+ {
544
+ "epoch": 0.71,
545
+ "grad_norm": 2.078010320663452,
546
+ "learning_rate": 2.5483256193846993e-05,
547
+ "loss": 1.44,
548
+ "step": 1925
549
+ },
550
+ {
551
+ "epoch": 0.72,
552
+ "grad_norm": 2.0523500442504883,
553
+ "learning_rate": 2.5381159814865236e-05,
554
+ "loss": 1.402,
555
+ "step": 1950
556
+ },
557
+ {
558
+ "epoch": 0.73,
559
+ "grad_norm": 2.2531204223632812,
560
+ "learning_rate": 2.5279063435883475e-05,
561
+ "loss": 1.442,
562
+ "step": 1975
563
+ },
564
+ {
565
+ "epoch": 0.73,
566
+ "grad_norm": 2.2075908184051514,
567
+ "learning_rate": 2.5176967056901718e-05,
568
+ "loss": 1.4466,
569
+ "step": 2000
570
+ },
571
+ {
572
+ "epoch": 0.74,
573
+ "grad_norm": 2.06585431098938,
574
+ "learning_rate": 2.5074870677919957e-05,
575
+ "loss": 1.445,
576
+ "step": 2025
577
+ },
578
+ {
579
+ "epoch": 0.75,
580
+ "grad_norm": 2.291527271270752,
581
+ "learning_rate": 2.4972774298938196e-05,
582
+ "loss": 1.4239,
583
+ "step": 2050
584
+ },
585
+ {
586
+ "epoch": 0.76,
587
+ "grad_norm": 2.077122688293457,
588
+ "learning_rate": 2.487067791995644e-05,
589
+ "loss": 1.4512,
590
+ "step": 2075
591
+ },
592
+ {
593
+ "epoch": 0.77,
594
+ "grad_norm": 2.0683939456939697,
595
+ "learning_rate": 2.4768581540974678e-05,
596
+ "loss": 1.4313,
597
+ "step": 2100
598
+ },
599
+ {
600
+ "epoch": 0.78,
601
+ "grad_norm": 2.2548866271972656,
602
+ "learning_rate": 2.466648516199292e-05,
603
+ "loss": 1.4499,
604
+ "step": 2125
605
+ },
606
+ {
607
+ "epoch": 0.79,
608
+ "grad_norm": 2.0333142280578613,
609
+ "learning_rate": 2.4564388783011163e-05,
610
+ "loss": 1.489,
611
+ "step": 2150
612
+ },
613
+ {
614
+ "epoch": 0.8,
615
+ "grad_norm": 2.0241236686706543,
616
+ "learning_rate": 2.4462292404029403e-05,
617
+ "loss": 1.4531,
618
+ "step": 2175
619
+ },
620
+ {
621
+ "epoch": 0.81,
622
+ "grad_norm": 2.0434224605560303,
623
+ "learning_rate": 2.4360196025047645e-05,
624
+ "loss": 1.4067,
625
+ "step": 2200
626
+ },
627
+ {
628
+ "epoch": 0.82,
629
+ "grad_norm": 2.0772247314453125,
630
+ "learning_rate": 2.4258099646065884e-05,
631
+ "loss": 1.4512,
632
+ "step": 2225
633
+ },
634
+ {
635
+ "epoch": 0.83,
636
+ "grad_norm": 2.219872236251831,
637
+ "learning_rate": 2.4156003267084127e-05,
638
+ "loss": 1.4136,
639
+ "step": 2250
640
+ },
641
+ {
642
+ "epoch": 0.84,
643
+ "grad_norm": 2.0617380142211914,
644
+ "learning_rate": 2.405390688810237e-05,
645
+ "loss": 1.4189,
646
+ "step": 2275
647
+ },
648
+ {
649
+ "epoch": 0.85,
650
+ "grad_norm": 2.143292188644409,
651
+ "learning_rate": 2.395181050912061e-05,
652
+ "loss": 1.4343,
653
+ "step": 2300
654
+ },
655
+ {
656
+ "epoch": 0.85,
657
+ "grad_norm": 2.2767598628997803,
658
+ "learning_rate": 2.384971413013885e-05,
659
+ "loss": 1.4309,
660
+ "step": 2325
661
+ },
662
+ {
663
+ "epoch": 0.86,
664
+ "grad_norm": 1.9452316761016846,
665
+ "learning_rate": 2.374761775115709e-05,
666
+ "loss": 1.4525,
667
+ "step": 2350
668
+ },
669
+ {
670
+ "epoch": 0.87,
671
+ "grad_norm": 1.9767943620681763,
672
+ "learning_rate": 2.3645521372175333e-05,
673
+ "loss": 1.4146,
674
+ "step": 2375
675
+ },
676
+ {
677
+ "epoch": 0.88,
678
+ "grad_norm": 2.1205859184265137,
679
+ "learning_rate": 2.3543424993193576e-05,
680
+ "loss": 1.3848,
681
+ "step": 2400
682
+ },
683
+ {
684
+ "epoch": 0.89,
685
+ "grad_norm": 2.1726503372192383,
686
+ "learning_rate": 2.3441328614211815e-05,
687
+ "loss": 1.4229,
688
+ "step": 2425
689
+ },
690
+ {
691
+ "epoch": 0.9,
692
+ "grad_norm": 2.1361019611358643,
693
+ "learning_rate": 2.3339232235230058e-05,
694
+ "loss": 1.3928,
695
+ "step": 2450
696
+ },
697
+ {
698
+ "epoch": 0.91,
699
+ "grad_norm": 1.9983566999435425,
700
+ "learning_rate": 2.32371358562483e-05,
701
+ "loss": 1.4177,
702
+ "step": 2475
703
+ },
704
+ {
705
+ "epoch": 0.92,
706
+ "grad_norm": 2.072235107421875,
707
+ "learning_rate": 2.313503947726654e-05,
708
+ "loss": 1.4299,
709
+ "step": 2500
710
+ },
711
+ {
712
+ "epoch": 0.93,
713
+ "grad_norm": 1.9266953468322754,
714
+ "learning_rate": 2.3032943098284782e-05,
715
+ "loss": 1.4124,
716
+ "step": 2525
717
+ },
718
+ {
719
+ "epoch": 0.94,
720
+ "grad_norm": 1.9758812189102173,
721
+ "learning_rate": 2.293084671930302e-05,
722
+ "loss": 1.4642,
723
+ "step": 2550
724
+ },
725
+ {
726
+ "epoch": 0.95,
727
+ "grad_norm": 1.9793875217437744,
728
+ "learning_rate": 2.2828750340321264e-05,
729
+ "loss": 1.4216,
730
+ "step": 2575
731
+ },
732
+ {
733
+ "epoch": 0.96,
734
+ "grad_norm": 1.8431023359298706,
735
+ "learning_rate": 2.2726653961339507e-05,
736
+ "loss": 1.4259,
737
+ "step": 2600
738
+ },
739
+ {
740
+ "epoch": 0.96,
741
+ "grad_norm": 2.120908260345459,
742
+ "learning_rate": 2.2624557582357746e-05,
743
+ "loss": 1.3896,
744
+ "step": 2625
745
+ },
746
+ {
747
+ "epoch": 0.97,
748
+ "grad_norm": 1.8971043825149536,
749
+ "learning_rate": 2.252246120337599e-05,
750
+ "loss": 1.4137,
751
+ "step": 2650
752
+ },
753
+ {
754
+ "epoch": 0.98,
755
+ "grad_norm": 1.79995858669281,
756
+ "learning_rate": 2.2420364824394228e-05,
757
+ "loss": 1.4027,
758
+ "step": 2675
759
+ },
760
+ {
761
+ "epoch": 0.99,
762
+ "grad_norm": 1.9894652366638184,
763
+ "learning_rate": 2.231826844541247e-05,
764
+ "loss": 1.4241,
765
+ "step": 2700
766
+ },
767
+ {
768
+ "epoch": 1.0,
769
+ "grad_norm": 1.8721575736999512,
770
+ "learning_rate": 2.2216172066430713e-05,
771
+ "loss": 1.4167,
772
+ "step": 2725
773
+ },
774
+ {
775
+ "epoch": 1.01,
776
+ "grad_norm": 2.1240813732147217,
777
+ "learning_rate": 2.2114075687448952e-05,
778
+ "loss": 1.324,
779
+ "step": 2750
780
+ },
781
+ {
782
+ "epoch": 1.02,
783
+ "grad_norm": 1.9302886724472046,
784
+ "learning_rate": 2.2011979308467195e-05,
785
+ "loss": 1.3041,
786
+ "step": 2775
787
+ },
788
+ {
789
+ "epoch": 1.03,
790
+ "grad_norm": 2.2087652683258057,
791
+ "learning_rate": 2.1909882929485437e-05,
792
+ "loss": 1.3632,
793
+ "step": 2800
794
+ },
795
+ {
796
+ "epoch": 1.04,
797
+ "grad_norm": 2.057499885559082,
798
+ "learning_rate": 2.1807786550503677e-05,
799
+ "loss": 1.3536,
800
+ "step": 2825
801
+ },
802
+ {
803
+ "epoch": 1.05,
804
+ "grad_norm": 2.1920557022094727,
805
+ "learning_rate": 2.170569017152192e-05,
806
+ "loss": 1.3375,
807
+ "step": 2850
808
+ },
809
+ {
810
+ "epoch": 1.06,
811
+ "grad_norm": 1.917410135269165,
812
+ "learning_rate": 2.160359379254016e-05,
813
+ "loss": 1.3396,
814
+ "step": 2875
815
+ },
816
+ {
817
+ "epoch": 1.07,
818
+ "grad_norm": 1.910172462463379,
819
+ "learning_rate": 2.15014974135584e-05,
820
+ "loss": 1.2931,
821
+ "step": 2900
822
+ },
823
+ {
824
+ "epoch": 1.07,
825
+ "grad_norm": 1.9294995069503784,
826
+ "learning_rate": 2.1399401034576644e-05,
827
+ "loss": 1.3,
828
+ "step": 2925
829
+ },
830
+ {
831
+ "epoch": 1.08,
832
+ "grad_norm": 2.2092173099517822,
833
+ "learning_rate": 2.1297304655594883e-05,
834
+ "loss": 1.3196,
835
+ "step": 2950
836
+ },
837
+ {
838
+ "epoch": 1.09,
839
+ "grad_norm": 2.212209939956665,
840
+ "learning_rate": 2.1195208276613126e-05,
841
+ "loss": 1.3623,
842
+ "step": 2975
843
+ },
844
+ {
845
+ "epoch": 1.1,
846
+ "grad_norm": 2.3022515773773193,
847
+ "learning_rate": 2.109311189763136e-05,
848
+ "loss": 1.3402,
849
+ "step": 3000
850
+ },
851
+ {
852
+ "epoch": 1.11,
853
+ "grad_norm": 2.2032854557037354,
854
+ "learning_rate": 2.0991015518649604e-05,
855
+ "loss": 1.3677,
856
+ "step": 3025
857
+ },
858
+ {
859
+ "epoch": 1.12,
860
+ "grad_norm": 1.9251583814620972,
861
+ "learning_rate": 2.0888919139667847e-05,
862
+ "loss": 1.2894,
863
+ "step": 3050
864
+ },
865
+ {
866
+ "epoch": 1.13,
867
+ "grad_norm": 2.1988320350646973,
868
+ "learning_rate": 2.0786822760686086e-05,
869
+ "loss": 1.3709,
870
+ "step": 3075
871
+ },
872
+ {
873
+ "epoch": 1.14,
874
+ "grad_norm": 2.201289415359497,
875
+ "learning_rate": 2.068472638170433e-05,
876
+ "loss": 1.3145,
877
+ "step": 3100
878
+ },
879
+ {
880
+ "epoch": 1.15,
881
+ "grad_norm": 1.992992877960205,
882
+ "learning_rate": 2.058263000272257e-05,
883
+ "loss": 1.3233,
884
+ "step": 3125
885
+ },
886
+ {
887
+ "epoch": 1.16,
888
+ "grad_norm": 2.088419198989868,
889
+ "learning_rate": 2.048053362374081e-05,
890
+ "loss": 1.3669,
891
+ "step": 3150
892
+ },
893
+ {
894
+ "epoch": 1.17,
895
+ "grad_norm": 1.9846084117889404,
896
+ "learning_rate": 2.0378437244759053e-05,
897
+ "loss": 1.3646,
898
+ "step": 3175
899
+ },
900
+ {
901
+ "epoch": 1.18,
902
+ "grad_norm": 2.0262553691864014,
903
+ "learning_rate": 2.0276340865777292e-05,
904
+ "loss": 1.3577,
905
+ "step": 3200
906
+ },
907
+ {
908
+ "epoch": 1.19,
909
+ "grad_norm": 2.1256277561187744,
910
+ "learning_rate": 2.0174244486795535e-05,
911
+ "loss": 1.3292,
912
+ "step": 3225
913
+ },
914
+ {
915
+ "epoch": 1.19,
916
+ "grad_norm": 2.043562889099121,
917
+ "learning_rate": 2.0072148107813777e-05,
918
+ "loss": 1.3132,
919
+ "step": 3250
920
+ },
921
+ {
922
+ "epoch": 1.2,
923
+ "grad_norm": 2.0755374431610107,
924
+ "learning_rate": 1.9970051728832017e-05,
925
+ "loss": 1.2979,
926
+ "step": 3275
927
+ },
928
+ {
929
+ "epoch": 1.21,
930
+ "grad_norm": 2.0620744228363037,
931
+ "learning_rate": 1.986795534985026e-05,
932
+ "loss": 1.3518,
933
+ "step": 3300
934
+ },
935
+ {
936
+ "epoch": 1.22,
937
+ "grad_norm": 2.1864535808563232,
938
+ "learning_rate": 1.97658589708685e-05,
939
+ "loss": 1.3529,
940
+ "step": 3325
941
+ },
942
+ {
943
+ "epoch": 1.23,
944
+ "grad_norm": 2.22280216217041,
945
+ "learning_rate": 1.966376259188674e-05,
946
+ "loss": 1.3006,
947
+ "step": 3350
948
+ },
949
+ {
950
+ "epoch": 1.24,
951
+ "grad_norm": 1.9707540273666382,
952
+ "learning_rate": 1.9561666212904984e-05,
953
+ "loss": 1.3253,
954
+ "step": 3375
955
+ },
956
+ {
957
+ "epoch": 1.25,
958
+ "grad_norm": 2.134737730026245,
959
+ "learning_rate": 1.9459569833923223e-05,
960
+ "loss": 1.3208,
961
+ "step": 3400
962
+ },
963
+ {
964
+ "epoch": 1.26,
965
+ "grad_norm": 2.4195773601531982,
966
+ "learning_rate": 1.9357473454941465e-05,
967
+ "loss": 1.3174,
968
+ "step": 3425
969
+ },
970
+ {
971
+ "epoch": 1.27,
972
+ "grad_norm": 2.222219944000244,
973
+ "learning_rate": 1.9255377075959708e-05,
974
+ "loss": 1.3443,
975
+ "step": 3450
976
+ },
977
+ {
978
+ "epoch": 1.28,
979
+ "grad_norm": 2.2541654109954834,
980
+ "learning_rate": 1.9153280696977947e-05,
981
+ "loss": 1.3312,
982
+ "step": 3475
983
+ },
984
+ {
985
+ "epoch": 1.29,
986
+ "grad_norm": 2.124866008758545,
987
+ "learning_rate": 1.905118431799619e-05,
988
+ "loss": 1.3368,
989
+ "step": 3500
990
+ },
991
+ {
992
+ "epoch": 1.3,
993
+ "grad_norm": 2.191096305847168,
994
+ "learning_rate": 1.894908793901443e-05,
995
+ "loss": 1.3447,
996
+ "step": 3525
997
+ },
998
+ {
999
+ "epoch": 1.3,
1000
+ "grad_norm": 2.2031023502349854,
1001
+ "learning_rate": 1.8846991560032672e-05,
1002
+ "loss": 1.3101,
1003
+ "step": 3550
1004
+ },
1005
+ {
1006
+ "epoch": 1.31,
1007
+ "grad_norm": 2.1442978382110596,
1008
+ "learning_rate": 1.8744895181050914e-05,
1009
+ "loss": 1.3408,
1010
+ "step": 3575
1011
+ },
1012
+ {
1013
+ "epoch": 1.32,
1014
+ "grad_norm": 2.281747579574585,
1015
+ "learning_rate": 1.8642798802069154e-05,
1016
+ "loss": 1.3028,
1017
+ "step": 3600
1018
+ },
1019
+ {
1020
+ "epoch": 1.33,
1021
+ "grad_norm": 2.128450870513916,
1022
+ "learning_rate": 1.8540702423087396e-05,
1023
+ "loss": 1.3117,
1024
+ "step": 3625
1025
+ },
1026
+ {
1027
+ "epoch": 1.34,
1028
+ "grad_norm": 1.925809383392334,
1029
+ "learning_rate": 1.8438606044105635e-05,
1030
+ "loss": 1.3104,
1031
+ "step": 3650
1032
+ },
1033
+ {
1034
+ "epoch": 1.35,
1035
+ "grad_norm": 2.0832419395446777,
1036
+ "learning_rate": 1.8336509665123878e-05,
1037
+ "loss": 1.3134,
1038
+ "step": 3675
1039
+ },
1040
+ {
1041
+ "epoch": 1.36,
1042
+ "grad_norm": 2.3211681842803955,
1043
+ "learning_rate": 1.823441328614212e-05,
1044
+ "loss": 1.323,
1045
+ "step": 3700
1046
+ },
1047
+ {
1048
+ "epoch": 1.37,
1049
+ "grad_norm": 2.2126524448394775,
1050
+ "learning_rate": 1.813231690716036e-05,
1051
+ "loss": 1.307,
1052
+ "step": 3725
1053
+ },
1054
+ {
1055
+ "epoch": 1.38,
1056
+ "grad_norm": 2.2093470096588135,
1057
+ "learning_rate": 1.8030220528178603e-05,
1058
+ "loss": 1.3194,
1059
+ "step": 3750
1060
+ },
1061
+ {
1062
+ "epoch": 1.39,
1063
+ "grad_norm": 2.089864730834961,
1064
+ "learning_rate": 1.7928124149196842e-05,
1065
+ "loss": 1.3191,
1066
+ "step": 3775
1067
+ },
1068
+ {
1069
+ "epoch": 1.4,
1070
+ "grad_norm": 2.3088159561157227,
1071
+ "learning_rate": 1.7826027770215084e-05,
1072
+ "loss": 1.3545,
1073
+ "step": 3800
1074
+ },
1075
+ {
1076
+ "epoch": 1.41,
1077
+ "grad_norm": 2.17684006690979,
1078
+ "learning_rate": 1.7723931391233327e-05,
1079
+ "loss": 1.3452,
1080
+ "step": 3825
1081
+ },
1082
+ {
1083
+ "epoch": 1.41,
1084
+ "grad_norm": 2.3744864463806152,
1085
+ "learning_rate": 1.7621835012251566e-05,
1086
+ "loss": 1.3193,
1087
+ "step": 3850
1088
+ },
1089
+ {
1090
+ "epoch": 1.42,
1091
+ "grad_norm": 2.2248189449310303,
1092
+ "learning_rate": 1.751973863326981e-05,
1093
+ "loss": 1.3183,
1094
+ "step": 3875
1095
+ },
1096
+ {
1097
+ "epoch": 1.43,
1098
+ "grad_norm": 2.2989003658294678,
1099
+ "learning_rate": 1.741764225428805e-05,
1100
+ "loss": 1.3086,
1101
+ "step": 3900
1102
+ },
1103
+ {
1104
+ "epoch": 1.44,
1105
+ "grad_norm": 2.115312099456787,
1106
+ "learning_rate": 1.731554587530629e-05,
1107
+ "loss": 1.3372,
1108
+ "step": 3925
1109
+ },
1110
+ {
1111
+ "epoch": 1.45,
1112
+ "grad_norm": 2.2466862201690674,
1113
+ "learning_rate": 1.721344949632453e-05,
1114
+ "loss": 1.3126,
1115
+ "step": 3950
1116
+ },
1117
+ {
1118
+ "epoch": 1.46,
1119
+ "grad_norm": 2.152052164077759,
1120
+ "learning_rate": 1.711135311734277e-05,
1121
+ "loss": 1.3127,
1122
+ "step": 3975
1123
+ },
1124
+ {
1125
+ "epoch": 1.47,
1126
+ "grad_norm": 2.276834487915039,
1127
+ "learning_rate": 1.7009256738361012e-05,
1128
+ "loss": 1.2936,
1129
+ "step": 4000
1130
+ },
1131
+ {
1132
+ "epoch": 1.48,
1133
+ "grad_norm": 2.3417012691497803,
1134
+ "learning_rate": 1.6907160359379254e-05,
1135
+ "loss": 1.2999,
1136
+ "step": 4025
1137
+ },
1138
+ {
1139
+ "epoch": 1.49,
1140
+ "grad_norm": 2.0875630378723145,
1141
+ "learning_rate": 1.6805063980397494e-05,
1142
+ "loss": 1.3186,
1143
+ "step": 4050
1144
+ },
1145
+ {
1146
+ "epoch": 1.5,
1147
+ "grad_norm": 2.3512613773345947,
1148
+ "learning_rate": 1.6702967601415736e-05,
1149
+ "loss": 1.3242,
1150
+ "step": 4075
1151
+ },
1152
+ {
1153
+ "epoch": 1.51,
1154
+ "grad_norm": 2.24100399017334,
1155
+ "learning_rate": 1.6600871222433975e-05,
1156
+ "loss": 1.3525,
1157
+ "step": 4100
1158
+ },
1159
+ {
1160
+ "epoch": 1.52,
1161
+ "grad_norm": 2.2629716396331787,
1162
+ "learning_rate": 1.6498774843452218e-05,
1163
+ "loss": 1.3386,
1164
+ "step": 4125
1165
+ },
1166
+ {
1167
+ "epoch": 1.53,
1168
+ "grad_norm": 2.21623158454895,
1169
+ "learning_rate": 1.639667846447046e-05,
1170
+ "loss": 1.3263,
1171
+ "step": 4150
1172
+ },
1173
+ {
1174
+ "epoch": 1.53,
1175
+ "grad_norm": 2.26880145072937,
1176
+ "learning_rate": 1.62945820854887e-05,
1177
+ "loss": 1.3296,
1178
+ "step": 4175
1179
+ },
1180
+ {
1181
+ "epoch": 1.54,
1182
+ "grad_norm": 2.2265172004699707,
1183
+ "learning_rate": 1.6192485706506942e-05,
1184
+ "loss": 1.3424,
1185
+ "step": 4200
1186
+ },
1187
+ {
1188
+ "epoch": 1.55,
1189
+ "grad_norm": 2.2084670066833496,
1190
+ "learning_rate": 1.6090389327525185e-05,
1191
+ "loss": 1.333,
1192
+ "step": 4225
1193
+ },
1194
+ {
1195
+ "epoch": 1.56,
1196
+ "grad_norm": 2.146636486053467,
1197
+ "learning_rate": 1.5988292948543424e-05,
1198
+ "loss": 1.324,
1199
+ "step": 4250
1200
+ },
1201
+ {
1202
+ "epoch": 1.57,
1203
+ "grad_norm": 2.2078332901000977,
1204
+ "learning_rate": 1.5886196569561667e-05,
1205
+ "loss": 1.3032,
1206
+ "step": 4275
1207
+ },
1208
+ {
1209
+ "epoch": 1.58,
1210
+ "grad_norm": 2.1620240211486816,
1211
+ "learning_rate": 1.5784100190579906e-05,
1212
+ "loss": 1.3679,
1213
+ "step": 4300
1214
+ },
1215
+ {
1216
+ "epoch": 1.59,
1217
+ "grad_norm": 2.176711082458496,
1218
+ "learning_rate": 1.568200381159815e-05,
1219
+ "loss": 1.3096,
1220
+ "step": 4325
1221
+ },
1222
+ {
1223
+ "epoch": 1.6,
1224
+ "grad_norm": 2.3900365829467773,
1225
+ "learning_rate": 1.557990743261639e-05,
1226
+ "loss": 1.3396,
1227
+ "step": 4350
1228
+ },
1229
+ {
1230
+ "epoch": 1.61,
1231
+ "grad_norm": 2.100839853286743,
1232
+ "learning_rate": 1.547781105363463e-05,
1233
+ "loss": 1.3264,
1234
+ "step": 4375
1235
+ },
1236
+ {
1237
+ "epoch": 1.62,
1238
+ "grad_norm": 2.218968629837036,
1239
+ "learning_rate": 1.5375714674652873e-05,
1240
+ "loss": 1.3195,
1241
+ "step": 4400
1242
+ },
1243
+ {
1244
+ "epoch": 1.63,
1245
+ "grad_norm": 2.4888713359832764,
1246
+ "learning_rate": 1.5273618295671112e-05,
1247
+ "loss": 1.295,
1248
+ "step": 4425
1249
+ },
1250
+ {
1251
+ "epoch": 1.64,
1252
+ "grad_norm": 2.2046141624450684,
1253
+ "learning_rate": 1.5171521916689355e-05,
1254
+ "loss": 1.3003,
1255
+ "step": 4450
1256
+ },
1257
+ {
1258
+ "epoch": 1.64,
1259
+ "grad_norm": 2.1647400856018066,
1260
+ "learning_rate": 1.5069425537707598e-05,
1261
+ "loss": 1.2842,
1262
+ "step": 4475
1263
+ },
1264
+ {
1265
+ "epoch": 1.65,
1266
+ "grad_norm": 2.187425136566162,
1267
+ "learning_rate": 1.4967329158725839e-05,
1268
+ "loss": 1.3049,
1269
+ "step": 4500
1270
+ },
1271
+ {
1272
+ "epoch": 1.66,
1273
+ "grad_norm": 2.2171578407287598,
1274
+ "learning_rate": 1.486523277974408e-05,
1275
+ "loss": 1.2987,
1276
+ "step": 4525
1277
+ },
1278
+ {
1279
+ "epoch": 1.67,
1280
+ "grad_norm": 2.1128668785095215,
1281
+ "learning_rate": 1.476313640076232e-05,
1282
+ "loss": 1.2926,
1283
+ "step": 4550
1284
+ },
1285
+ {
1286
+ "epoch": 1.68,
1287
+ "grad_norm": 2.1411571502685547,
1288
+ "learning_rate": 1.4661040021780561e-05,
1289
+ "loss": 1.3205,
1290
+ "step": 4575
1291
+ },
1292
+ {
1293
+ "epoch": 1.69,
1294
+ "grad_norm": 2.165693521499634,
1295
+ "learning_rate": 1.4558943642798804e-05,
1296
+ "loss": 1.3014,
1297
+ "step": 4600
1298
+ },
1299
+ {
1300
+ "epoch": 1.7,
1301
+ "grad_norm": 2.217212200164795,
1302
+ "learning_rate": 1.4456847263817045e-05,
1303
+ "loss": 1.3198,
1304
+ "step": 4625
1305
+ },
1306
+ {
1307
+ "epoch": 1.71,
1308
+ "grad_norm": 2.3008174896240234,
1309
+ "learning_rate": 1.4354750884835284e-05,
1310
+ "loss": 1.2913,
1311
+ "step": 4650
1312
+ },
1313
+ {
1314
+ "epoch": 1.72,
1315
+ "grad_norm": 2.0766916275024414,
1316
+ "learning_rate": 1.4252654505853525e-05,
1317
+ "loss": 1.2867,
1318
+ "step": 4675
1319
+ },
1320
+ {
1321
+ "epoch": 1.73,
1322
+ "grad_norm": 2.187500476837158,
1323
+ "learning_rate": 1.4150558126871766e-05,
1324
+ "loss": 1.3605,
1325
+ "step": 4700
1326
+ },
1327
+ {
1328
+ "epoch": 1.74,
1329
+ "grad_norm": 2.143425226211548,
1330
+ "learning_rate": 1.4048461747890009e-05,
1331
+ "loss": 1.3432,
1332
+ "step": 4725
1333
+ },
1334
+ {
1335
+ "epoch": 1.75,
1336
+ "grad_norm": 2.3163678646087646,
1337
+ "learning_rate": 1.394636536890825e-05,
1338
+ "loss": 1.3338,
1339
+ "step": 4750
1340
+ },
1341
+ {
1342
+ "epoch": 1.75,
1343
+ "grad_norm": 2.1427390575408936,
1344
+ "learning_rate": 1.384426898992649e-05,
1345
+ "loss": 1.3201,
1346
+ "step": 4775
1347
+ },
1348
+ {
1349
+ "epoch": 1.76,
1350
+ "grad_norm": 2.3347136974334717,
1351
+ "learning_rate": 1.3742172610944731e-05,
1352
+ "loss": 1.3103,
1353
+ "step": 4800
1354
+ },
1355
+ {
1356
+ "epoch": 1.77,
1357
+ "grad_norm": 2.1402597427368164,
1358
+ "learning_rate": 1.3640076231962974e-05,
1359
+ "loss": 1.3339,
1360
+ "step": 4825
1361
+ },
1362
+ {
1363
+ "epoch": 1.78,
1364
+ "grad_norm": 2.13971209526062,
1365
+ "learning_rate": 1.3537979852981215e-05,
1366
+ "loss": 1.3285,
1367
+ "step": 4850
1368
+ },
1369
+ {
1370
+ "epoch": 1.79,
1371
+ "grad_norm": 2.146343231201172,
1372
+ "learning_rate": 1.3435883473999456e-05,
1373
+ "loss": 1.3313,
1374
+ "step": 4875
1375
+ },
1376
+ {
1377
+ "epoch": 1.8,
1378
+ "grad_norm": 2.221480369567871,
1379
+ "learning_rate": 1.3333787095017697e-05,
1380
+ "loss": 1.3038,
1381
+ "step": 4900
1382
+ },
1383
+ {
1384
+ "epoch": 1.81,
1385
+ "grad_norm": 2.243988275527954,
1386
+ "learning_rate": 1.323169071603594e-05,
1387
+ "loss": 1.3234,
1388
+ "step": 4925
1389
+ },
1390
+ {
1391
+ "epoch": 1.82,
1392
+ "grad_norm": 2.0634615421295166,
1393
+ "learning_rate": 1.312959433705418e-05,
1394
+ "loss": 1.2806,
1395
+ "step": 4950
1396
+ },
1397
+ {
1398
+ "epoch": 1.83,
1399
+ "grad_norm": 2.2551660537719727,
1400
+ "learning_rate": 1.3027497958072421e-05,
1401
+ "loss": 1.3113,
1402
+ "step": 4975
1403
+ },
1404
+ {
1405
+ "epoch": 1.84,
1406
+ "grad_norm": 2.1955995559692383,
1407
+ "learning_rate": 1.2925401579090662e-05,
1408
+ "loss": 1.3229,
1409
+ "step": 5000
1410
+ },
1411
+ {
1412
+ "epoch": 1.85,
1413
+ "grad_norm": 2.1404623985290527,
1414
+ "learning_rate": 1.2823305200108903e-05,
1415
+ "loss": 1.2855,
1416
+ "step": 5025
1417
+ },
1418
+ {
1419
+ "epoch": 1.86,
1420
+ "grad_norm": 2.2120893001556396,
1421
+ "learning_rate": 1.2721208821127146e-05,
1422
+ "loss": 1.3126,
1423
+ "step": 5050
1424
+ },
1425
+ {
1426
+ "epoch": 1.86,
1427
+ "grad_norm": 2.3724899291992188,
1428
+ "learning_rate": 1.2619112442145386e-05,
1429
+ "loss": 1.307,
1430
+ "step": 5075
1431
+ },
1432
+ {
1433
+ "epoch": 1.87,
1434
+ "grad_norm": 2.3382725715637207,
1435
+ "learning_rate": 1.2517016063163627e-05,
1436
+ "loss": 1.3255,
1437
+ "step": 5100
1438
+ },
1439
+ {
1440
+ "epoch": 1.88,
1441
+ "grad_norm": 2.240473508834839,
1442
+ "learning_rate": 1.2414919684181867e-05,
1443
+ "loss": 1.339,
1444
+ "step": 5125
1445
+ },
1446
+ {
1447
+ "epoch": 1.89,
1448
+ "grad_norm": 2.2863121032714844,
1449
+ "learning_rate": 1.231282330520011e-05,
1450
+ "loss": 1.3023,
1451
+ "step": 5150
1452
+ },
1453
+ {
1454
+ "epoch": 1.9,
1455
+ "grad_norm": 2.3358094692230225,
1456
+ "learning_rate": 1.221072692621835e-05,
1457
+ "loss": 1.293,
1458
+ "step": 5175
1459
+ },
1460
+ {
1461
+ "epoch": 1.91,
1462
+ "grad_norm": 2.1806859970092773,
1463
+ "learning_rate": 1.2108630547236591e-05,
1464
+ "loss": 1.2709,
1465
+ "step": 5200
1466
+ },
1467
+ {
1468
+ "epoch": 1.92,
1469
+ "grad_norm": 2.169222593307495,
1470
+ "learning_rate": 1.2006534168254832e-05,
1471
+ "loss": 1.2991,
1472
+ "step": 5225
1473
+ },
1474
+ {
1475
+ "epoch": 1.93,
1476
+ "grad_norm": 2.1876134872436523,
1477
+ "learning_rate": 1.1904437789273075e-05,
1478
+ "loss": 1.2875,
1479
+ "step": 5250
1480
+ },
1481
+ {
1482
+ "epoch": 1.94,
1483
+ "grad_norm": 2.261347532272339,
1484
+ "learning_rate": 1.1802341410291316e-05,
1485
+ "loss": 1.3095,
1486
+ "step": 5275
1487
+ },
1488
+ {
1489
+ "epoch": 1.95,
1490
+ "grad_norm": 2.2739272117614746,
1491
+ "learning_rate": 1.1700245031309556e-05,
1492
+ "loss": 1.3498,
1493
+ "step": 5300
1494
+ },
1495
+ {
1496
+ "epoch": 1.96,
1497
+ "grad_norm": 2.3991880416870117,
1498
+ "learning_rate": 1.1598148652327797e-05,
1499
+ "loss": 1.3053,
1500
+ "step": 5325
1501
+ },
1502
+ {
1503
+ "epoch": 1.97,
1504
+ "grad_norm": 2.3285093307495117,
1505
+ "learning_rate": 1.1496052273346038e-05,
1506
+ "loss": 1.3284,
1507
+ "step": 5350
1508
+ },
1509
+ {
1510
+ "epoch": 1.98,
1511
+ "grad_norm": 2.225856065750122,
1512
+ "learning_rate": 1.1393955894364281e-05,
1513
+ "loss": 1.2987,
1514
+ "step": 5375
1515
+ },
1516
+ {
1517
+ "epoch": 1.98,
1518
+ "grad_norm": 2.265589952468872,
1519
+ "learning_rate": 1.1291859515382522e-05,
1520
+ "loss": 1.3131,
1521
+ "step": 5400
1522
+ },
1523
+ {
1524
+ "epoch": 1.99,
1525
+ "grad_norm": 2.41005802154541,
1526
+ "learning_rate": 1.1189763136400763e-05,
1527
+ "loss": 1.3106,
1528
+ "step": 5425
1529
+ },
1530
+ {
1531
+ "epoch": 2.0,
1532
+ "grad_norm": 1.9434266090393066,
1533
+ "learning_rate": 1.1087666757419004e-05,
1534
+ "loss": 1.2548,
1535
+ "step": 5450
1536
+ },
1537
+ {
1538
+ "epoch": 2.01,
1539
+ "grad_norm": 2.1135506629943848,
1540
+ "learning_rate": 1.0985570378437246e-05,
1541
+ "loss": 1.2141,
1542
+ "step": 5475
1543
+ },
1544
+ {
1545
+ "epoch": 2.02,
1546
+ "grad_norm": 2.289918899536133,
1547
+ "learning_rate": 1.0883473999455487e-05,
1548
+ "loss": 1.2105,
1549
+ "step": 5500
1550
+ },
1551
+ {
1552
+ "epoch": 2.03,
1553
+ "grad_norm": 2.446237802505493,
1554
+ "learning_rate": 1.0781377620473728e-05,
1555
+ "loss": 1.2309,
1556
+ "step": 5525
1557
+ },
1558
+ {
1559
+ "epoch": 2.04,
1560
+ "grad_norm": 2.164933681488037,
1561
+ "learning_rate": 1.0679281241491969e-05,
1562
+ "loss": 1.2119,
1563
+ "step": 5550
1564
+ },
1565
+ {
1566
+ "epoch": 2.05,
1567
+ "grad_norm": 2.468120813369751,
1568
+ "learning_rate": 1.057718486251021e-05,
1569
+ "loss": 1.222,
1570
+ "step": 5575
1571
+ },
1572
+ {
1573
+ "epoch": 2.06,
1574
+ "grad_norm": 2.208359479904175,
1575
+ "learning_rate": 1.0475088483528451e-05,
1576
+ "loss": 1.2341,
1577
+ "step": 5600
1578
+ },
1579
+ {
1580
+ "epoch": 2.07,
1581
+ "grad_norm": 2.425952196121216,
1582
+ "learning_rate": 1.0372992104546692e-05,
1583
+ "loss": 1.2579,
1584
+ "step": 5625
1585
+ },
1586
+ {
1587
+ "epoch": 2.08,
1588
+ "grad_norm": 2.4723472595214844,
1589
+ "learning_rate": 1.0270895725564933e-05,
1590
+ "loss": 1.2541,
1591
+ "step": 5650
1592
+ },
1593
+ {
1594
+ "epoch": 2.09,
1595
+ "grad_norm": 2.573694944381714,
1596
+ "learning_rate": 1.0168799346583174e-05,
1597
+ "loss": 1.2233,
1598
+ "step": 5675
1599
+ },
1600
+ {
1601
+ "epoch": 2.09,
1602
+ "grad_norm": 2.234358072280884,
1603
+ "learning_rate": 1.0066702967601416e-05,
1604
+ "loss": 1.2408,
1605
+ "step": 5700
1606
+ },
1607
+ {
1608
+ "epoch": 2.1,
1609
+ "grad_norm": 2.3570847511291504,
1610
+ "learning_rate": 9.964606588619657e-06,
1611
+ "loss": 1.2057,
1612
+ "step": 5725
1613
+ },
1614
+ {
1615
+ "epoch": 2.11,
1616
+ "grad_norm": 2.402945041656494,
1617
+ "learning_rate": 9.862510209637898e-06,
1618
+ "loss": 1.2441,
1619
+ "step": 5750
1620
+ },
1621
+ {
1622
+ "epoch": 2.12,
1623
+ "grad_norm": 2.3379828929901123,
1624
+ "learning_rate": 9.760413830656139e-06,
1625
+ "loss": 1.2095,
1626
+ "step": 5775
1627
+ },
1628
+ {
1629
+ "epoch": 2.13,
1630
+ "grad_norm": 2.4580986499786377,
1631
+ "learning_rate": 9.658317451674382e-06,
1632
+ "loss": 1.2138,
1633
+ "step": 5800
1634
+ },
1635
+ {
1636
+ "epoch": 2.14,
1637
+ "grad_norm": 2.361599922180176,
1638
+ "learning_rate": 9.556221072692623e-06,
1639
+ "loss": 1.2519,
1640
+ "step": 5825
1641
+ },
1642
+ {
1643
+ "epoch": 2.15,
1644
+ "grad_norm": 2.320232629776001,
1645
+ "learning_rate": 9.454124693710863e-06,
1646
+ "loss": 1.2443,
1647
+ "step": 5850
1648
+ },
1649
+ {
1650
+ "epoch": 2.16,
1651
+ "grad_norm": 2.411405086517334,
1652
+ "learning_rate": 9.352028314729104e-06,
1653
+ "loss": 1.2062,
1654
+ "step": 5875
1655
+ },
1656
+ {
1657
+ "epoch": 2.17,
1658
+ "grad_norm": 2.377734661102295,
1659
+ "learning_rate": 9.254015790906616e-06,
1660
+ "loss": 1.2335,
1661
+ "step": 5900
1662
+ },
1663
+ {
1664
+ "epoch": 2.18,
1665
+ "grad_norm": 2.619082450866699,
1666
+ "learning_rate": 9.151919411924856e-06,
1667
+ "loss": 1.2421,
1668
+ "step": 5925
1669
+ },
1670
+ {
1671
+ "epoch": 2.19,
1672
+ "grad_norm": 2.4038760662078857,
1673
+ "learning_rate": 9.049823032943099e-06,
1674
+ "loss": 1.2226,
1675
+ "step": 5950
1676
+ },
1677
+ {
1678
+ "epoch": 2.2,
1679
+ "grad_norm": 2.423957109451294,
1680
+ "learning_rate": 8.94772665396134e-06,
1681
+ "loss": 1.208,
1682
+ "step": 5975
1683
+ },
1684
+ {
1685
+ "epoch": 2.2,
1686
+ "grad_norm": 2.4431958198547363,
1687
+ "learning_rate": 8.845630274979581e-06,
1688
+ "loss": 1.2105,
1689
+ "step": 6000
1690
+ },
1691
+ {
1692
+ "epoch": 2.21,
1693
+ "grad_norm": 2.4713828563690186,
1694
+ "learning_rate": 8.743533895997822e-06,
1695
+ "loss": 1.2297,
1696
+ "step": 6025
1697
+ },
1698
+ {
1699
+ "epoch": 2.22,
1700
+ "grad_norm": 2.3229868412017822,
1701
+ "learning_rate": 8.641437517016064e-06,
1702
+ "loss": 1.2162,
1703
+ "step": 6050
1704
+ },
1705
+ {
1706
+ "epoch": 2.23,
1707
+ "grad_norm": 2.483553886413574,
1708
+ "learning_rate": 8.539341138034305e-06,
1709
+ "loss": 1.25,
1710
+ "step": 6075
1711
+ },
1712
+ {
1713
+ "epoch": 2.24,
1714
+ "grad_norm": 2.567758083343506,
1715
+ "learning_rate": 8.437244759052546e-06,
1716
+ "loss": 1.2351,
1717
+ "step": 6100
1718
+ },
1719
+ {
1720
+ "epoch": 2.25,
1721
+ "grad_norm": 2.5052988529205322,
1722
+ "learning_rate": 8.335148380070787e-06,
1723
+ "loss": 1.2068,
1724
+ "step": 6125
1725
+ },
1726
+ {
1727
+ "epoch": 2.26,
1728
+ "grad_norm": 2.3063817024230957,
1729
+ "learning_rate": 8.233052001089028e-06,
1730
+ "loss": 1.2116,
1731
+ "step": 6150
1732
+ },
1733
+ {
1734
+ "epoch": 2.27,
1735
+ "grad_norm": 2.531585931777954,
1736
+ "learning_rate": 8.13095562210727e-06,
1737
+ "loss": 1.1786,
1738
+ "step": 6175
1739
+ },
1740
+ {
1741
+ "epoch": 2.28,
1742
+ "grad_norm": 2.1010377407073975,
1743
+ "learning_rate": 8.028859243125512e-06,
1744
+ "loss": 1.2529,
1745
+ "step": 6200
1746
+ },
1747
+ {
1748
+ "epoch": 2.29,
1749
+ "grad_norm": 2.465160369873047,
1750
+ "learning_rate": 7.926762864143753e-06,
1751
+ "loss": 1.221,
1752
+ "step": 6225
1753
+ },
1754
+ {
1755
+ "epoch": 2.3,
1756
+ "grad_norm": 2.3965258598327637,
1757
+ "learning_rate": 7.824666485161992e-06,
1758
+ "loss": 1.2492,
1759
+ "step": 6250
1760
+ },
1761
+ {
1762
+ "epoch": 2.31,
1763
+ "grad_norm": 2.4250175952911377,
1764
+ "learning_rate": 7.722570106180234e-06,
1765
+ "loss": 1.2392,
1766
+ "step": 6275
1767
+ },
1768
+ {
1769
+ "epoch": 2.32,
1770
+ "grad_norm": 2.4409801959991455,
1771
+ "learning_rate": 7.620473727198476e-06,
1772
+ "loss": 1.2195,
1773
+ "step": 6300
1774
+ },
1775
+ {
1776
+ "epoch": 2.32,
1777
+ "grad_norm": 2.476854085922241,
1778
+ "learning_rate": 7.518377348216717e-06,
1779
+ "loss": 1.2412,
1780
+ "step": 6325
1781
+ },
1782
+ {
1783
+ "epoch": 2.33,
1784
+ "grad_norm": 2.489551305770874,
1785
+ "learning_rate": 7.416280969234958e-06,
1786
+ "loss": 1.262,
1787
+ "step": 6350
1788
+ },
1789
+ {
1790
+ "epoch": 2.34,
1791
+ "grad_norm": 2.5215299129486084,
1792
+ "learning_rate": 7.314184590253199e-06,
1793
+ "loss": 1.2228,
1794
+ "step": 6375
1795
+ },
1796
+ {
1797
+ "epoch": 2.35,
1798
+ "grad_norm": 2.517064332962036,
1799
+ "learning_rate": 7.21208821127144e-06,
1800
+ "loss": 1.2175,
1801
+ "step": 6400
1802
+ },
1803
+ {
1804
+ "epoch": 2.36,
1805
+ "grad_norm": 2.503761053085327,
1806
+ "learning_rate": 7.109991832289682e-06,
1807
+ "loss": 1.2174,
1808
+ "step": 6425
1809
+ },
1810
+ {
1811
+ "epoch": 2.37,
1812
+ "grad_norm": 2.4488444328308105,
1813
+ "learning_rate": 7.0078954533079225e-06,
1814
+ "loss": 1.2293,
1815
+ "step": 6450
1816
+ },
1817
+ {
1818
+ "epoch": 2.38,
1819
+ "grad_norm": 2.539790391921997,
1820
+ "learning_rate": 6.905799074326164e-06,
1821
+ "loss": 1.2505,
1822
+ "step": 6475
1823
+ },
1824
+ {
1825
+ "epoch": 2.39,
1826
+ "grad_norm": 2.5282349586486816,
1827
+ "learning_rate": 6.803702695344405e-06,
1828
+ "loss": 1.2311,
1829
+ "step": 6500
1830
+ },
1831
+ {
1832
+ "epoch": 2.4,
1833
+ "grad_norm": 2.55580472946167,
1834
+ "learning_rate": 6.701606316362647e-06,
1835
+ "loss": 1.2493,
1836
+ "step": 6525
1837
+ },
1838
+ {
1839
+ "epoch": 2.41,
1840
+ "grad_norm": 2.6252071857452393,
1841
+ "learning_rate": 6.599509937380888e-06,
1842
+ "loss": 1.2434,
1843
+ "step": 6550
1844
+ },
1845
+ {
1846
+ "epoch": 2.42,
1847
+ "grad_norm": 2.510460138320923,
1848
+ "learning_rate": 6.49741355839913e-06,
1849
+ "loss": 1.2583,
1850
+ "step": 6575
1851
+ },
1852
+ {
1853
+ "epoch": 2.43,
1854
+ "grad_norm": 2.6028640270233154,
1855
+ "learning_rate": 6.39531717941737e-06,
1856
+ "loss": 1.2593,
1857
+ "step": 6600
1858
+ },
1859
+ {
1860
+ "epoch": 2.43,
1861
+ "grad_norm": 2.2769548892974854,
1862
+ "learning_rate": 6.2932208004356115e-06,
1863
+ "loss": 1.2259,
1864
+ "step": 6625
1865
+ },
1866
+ {
1867
+ "epoch": 2.44,
1868
+ "grad_norm": 2.4939069747924805,
1869
+ "learning_rate": 6.191124421453852e-06,
1870
+ "loss": 1.1955,
1871
+ "step": 6650
1872
+ },
1873
+ {
1874
+ "epoch": 2.45,
1875
+ "grad_norm": 2.3038108348846436,
1876
+ "learning_rate": 6.089028042472093e-06,
1877
+ "loss": 1.2067,
1878
+ "step": 6675
1879
+ },
1880
+ {
1881
+ "epoch": 2.46,
1882
+ "grad_norm": 2.5069258213043213,
1883
+ "learning_rate": 5.986931663490335e-06,
1884
+ "loss": 1.2033,
1885
+ "step": 6700
1886
+ },
1887
+ {
1888
+ "epoch": 2.47,
1889
+ "grad_norm": 2.5253121852874756,
1890
+ "learning_rate": 5.884835284508576e-06,
1891
+ "loss": 1.245,
1892
+ "step": 6725
1893
+ },
1894
+ {
1895
+ "epoch": 2.48,
1896
+ "grad_norm": 2.492309808731079,
1897
+ "learning_rate": 5.782738905526818e-06,
1898
+ "loss": 1.2218,
1899
+ "step": 6750
1900
+ },
1901
+ {
1902
+ "epoch": 2.49,
1903
+ "grad_norm": 2.399568796157837,
1904
+ "learning_rate": 5.680642526545059e-06,
1905
+ "loss": 1.2092,
1906
+ "step": 6775
1907
+ },
1908
+ {
1909
+ "epoch": 2.5,
1910
+ "grad_norm": 2.5190510749816895,
1911
+ "learning_rate": 5.5785461475633005e-06,
1912
+ "loss": 1.2157,
1913
+ "step": 6800
1914
+ },
1915
+ {
1916
+ "epoch": 2.51,
1917
+ "grad_norm": 2.393317937850952,
1918
+ "learning_rate": 5.4764497685815405e-06,
1919
+ "loss": 1.2373,
1920
+ "step": 6825
1921
+ },
1922
+ {
1923
+ "epoch": 2.52,
1924
+ "grad_norm": 2.5895726680755615,
1925
+ "learning_rate": 5.374353389599782e-06,
1926
+ "loss": 1.2178,
1927
+ "step": 6850
1928
+ },
1929
+ {
1930
+ "epoch": 2.53,
1931
+ "grad_norm": 2.3802356719970703,
1932
+ "learning_rate": 5.272257010618023e-06,
1933
+ "loss": 1.1854,
1934
+ "step": 6875
1935
+ },
1936
+ {
1937
+ "epoch": 2.54,
1938
+ "grad_norm": 2.3995566368103027,
1939
+ "learning_rate": 5.170160631636265e-06,
1940
+ "loss": 1.2082,
1941
+ "step": 6900
1942
+ },
1943
+ {
1944
+ "epoch": 2.54,
1945
+ "grad_norm": 2.3092782497406006,
1946
+ "learning_rate": 5.068064252654506e-06,
1947
+ "loss": 1.2167,
1948
+ "step": 6925
1949
+ },
1950
+ {
1951
+ "epoch": 2.55,
1952
+ "grad_norm": 2.5264272689819336,
1953
+ "learning_rate": 4.965967873672747e-06,
1954
+ "loss": 1.2114,
1955
+ "step": 6950
1956
+ },
1957
+ {
1958
+ "epoch": 2.56,
1959
+ "grad_norm": 2.6355152130126953,
1960
+ "learning_rate": 4.863871494690989e-06,
1961
+ "loss": 1.205,
1962
+ "step": 6975
1963
+ },
1964
+ {
1965
+ "epoch": 2.57,
1966
+ "grad_norm": 2.6680080890655518,
1967
+ "learning_rate": 4.7617751157092295e-06,
1968
+ "loss": 1.2288,
1969
+ "step": 7000
1970
+ },
1971
+ {
1972
+ "epoch": 2.58,
1973
+ "grad_norm": 2.520815134048462,
1974
+ "learning_rate": 4.659678736727471e-06,
1975
+ "loss": 1.2385,
1976
+ "step": 7025
1977
+ },
1978
+ {
1979
+ "epoch": 2.59,
1980
+ "grad_norm": 2.6535727977752686,
1981
+ "learning_rate": 4.557582357745712e-06,
1982
+ "loss": 1.2037,
1983
+ "step": 7050
1984
+ },
1985
+ {
1986
+ "epoch": 2.6,
1987
+ "grad_norm": 2.6128251552581787,
1988
+ "learning_rate": 4.455485978763953e-06,
1989
+ "loss": 1.2381,
1990
+ "step": 7075
1991
+ },
1992
+ {
1993
+ "epoch": 2.61,
1994
+ "grad_norm": 2.3994832038879395,
1995
+ "learning_rate": 4.353389599782194e-06,
1996
+ "loss": 1.1994,
1997
+ "step": 7100
1998
+ },
1999
+ {
2000
+ "epoch": 2.62,
2001
+ "grad_norm": 2.610602617263794,
2002
+ "learning_rate": 4.251293220800436e-06,
2003
+ "loss": 1.2032,
2004
+ "step": 7125
2005
+ },
2006
+ {
2007
+ "epoch": 2.63,
2008
+ "grad_norm": 2.55776309967041,
2009
+ "learning_rate": 4.149196841818677e-06,
2010
+ "loss": 1.2614,
2011
+ "step": 7150
2012
+ },
2013
+ {
2014
+ "epoch": 2.64,
2015
+ "grad_norm": 2.387730121612549,
2016
+ "learning_rate": 4.0471004628369185e-06,
2017
+ "loss": 1.2142,
2018
+ "step": 7175
2019
+ },
2020
+ {
2021
+ "epoch": 2.65,
2022
+ "grad_norm": 2.4818918704986572,
2023
+ "learning_rate": 3.945004083855159e-06,
2024
+ "loss": 1.1894,
2025
+ "step": 7200
2026
+ },
2027
+ {
2028
+ "epoch": 2.66,
2029
+ "grad_norm": 2.4564781188964844,
2030
+ "learning_rate": 3.842907704873401e-06,
2031
+ "loss": 1.2254,
2032
+ "step": 7225
2033
+ },
2034
+ {
2035
+ "epoch": 2.66,
2036
+ "grad_norm": 2.775742769241333,
2037
+ "learning_rate": 3.7408113258916417e-06,
2038
+ "loss": 1.2283,
2039
+ "step": 7250
2040
+ },
2041
+ {
2042
+ "epoch": 2.67,
2043
+ "grad_norm": 2.6153032779693604,
2044
+ "learning_rate": 3.638714946909883e-06,
2045
+ "loss": 1.2595,
2046
+ "step": 7275
2047
+ },
2048
+ {
2049
+ "epoch": 2.68,
2050
+ "grad_norm": 2.6812705993652344,
2051
+ "learning_rate": 3.5366185679281243e-06,
2052
+ "loss": 1.2156,
2053
+ "step": 7300
2054
+ },
2055
+ {
2056
+ "epoch": 2.69,
2057
+ "grad_norm": 2.290558338165283,
2058
+ "learning_rate": 3.4345221889463657e-06,
2059
+ "loss": 1.2215,
2060
+ "step": 7325
2061
+ },
2062
+ {
2063
+ "epoch": 2.7,
2064
+ "grad_norm": 2.6138980388641357,
2065
+ "learning_rate": 3.332425809964607e-06,
2066
+ "loss": 1.2172,
2067
+ "step": 7350
2068
+ },
2069
+ {
2070
+ "epoch": 2.71,
2071
+ "grad_norm": 2.496048927307129,
2072
+ "learning_rate": 3.230329430982848e-06,
2073
+ "loss": 1.2826,
2074
+ "step": 7375
2075
+ },
2076
+ {
2077
+ "epoch": 2.72,
2078
+ "grad_norm": 2.5548458099365234,
2079
+ "learning_rate": 3.128233052001089e-06,
2080
+ "loss": 1.2524,
2081
+ "step": 7400
2082
+ },
2083
+ {
2084
+ "epoch": 2.73,
2085
+ "grad_norm": 2.4902689456939697,
2086
+ "learning_rate": 3.02613667301933e-06,
2087
+ "loss": 1.2359,
2088
+ "step": 7425
2089
+ },
2090
+ {
2091
+ "epoch": 2.74,
2092
+ "grad_norm": 2.5479485988616943,
2093
+ "learning_rate": 2.9240402940375716e-06,
2094
+ "loss": 1.2085,
2095
+ "step": 7450
2096
+ },
2097
+ {
2098
+ "epoch": 2.75,
2099
+ "grad_norm": 2.4236271381378174,
2100
+ "learning_rate": 2.8219439150558125e-06,
2101
+ "loss": 1.2098,
2102
+ "step": 7475
2103
+ },
2104
+ {
2105
+ "epoch": 2.76,
2106
+ "grad_norm": 2.533890724182129,
2107
+ "learning_rate": 2.719847536074054e-06,
2108
+ "loss": 1.1894,
2109
+ "step": 7500
2110
+ },
2111
+ {
2112
+ "epoch": 2.77,
2113
+ "grad_norm": 2.7152767181396484,
2114
+ "learning_rate": 2.617751157092295e-06,
2115
+ "loss": 1.2183,
2116
+ "step": 7525
2117
+ },
2118
+ {
2119
+ "epoch": 2.77,
2120
+ "grad_norm": 2.515911102294922,
2121
+ "learning_rate": 2.5156547781105365e-06,
2122
+ "loss": 1.2222,
2123
+ "step": 7550
2124
+ },
2125
+ {
2126
+ "epoch": 2.78,
2127
+ "grad_norm": 2.4286630153656006,
2128
+ "learning_rate": 2.413558399128778e-06,
2129
+ "loss": 1.2213,
2130
+ "step": 7575
2131
+ },
2132
+ {
2133
+ "epoch": 2.79,
2134
+ "grad_norm": 2.542311429977417,
2135
+ "learning_rate": 2.3114620201470188e-06,
2136
+ "loss": 1.2121,
2137
+ "step": 7600
2138
+ },
2139
+ {
2140
+ "epoch": 2.8,
2141
+ "grad_norm": 2.5168519020080566,
2142
+ "learning_rate": 2.20936564116526e-06,
2143
+ "loss": 1.2178,
2144
+ "step": 7625
2145
+ },
2146
+ {
2147
+ "epoch": 2.81,
2148
+ "grad_norm": 2.389608383178711,
2149
+ "learning_rate": 2.1072692621835014e-06,
2150
+ "loss": 1.2118,
2151
+ "step": 7650
2152
+ },
2153
+ {
2154
+ "epoch": 2.82,
2155
+ "grad_norm": 2.4580190181732178,
2156
+ "learning_rate": 2.005172883201743e-06,
2157
+ "loss": 1.2192,
2158
+ "step": 7675
2159
+ },
2160
+ {
2161
+ "epoch": 2.83,
2162
+ "grad_norm": 2.519462823867798,
2163
+ "learning_rate": 1.9030765042199835e-06,
2164
+ "loss": 1.1993,
2165
+ "step": 7700
2166
+ },
2167
+ {
2168
+ "epoch": 2.84,
2169
+ "grad_norm": 2.493283748626709,
2170
+ "learning_rate": 1.800980125238225e-06,
2171
+ "loss": 1.2079,
2172
+ "step": 7725
2173
+ },
2174
+ {
2175
+ "epoch": 2.85,
2176
+ "grad_norm": 2.400961399078369,
2177
+ "learning_rate": 1.6988837462564662e-06,
2178
+ "loss": 1.2182,
2179
+ "step": 7750
2180
+ },
2181
+ {
2182
+ "epoch": 2.86,
2183
+ "grad_norm": 2.7420430183410645,
2184
+ "learning_rate": 1.5967873672747073e-06,
2185
+ "loss": 1.2169,
2186
+ "step": 7775
2187
+ },
2188
+ {
2189
+ "epoch": 2.87,
2190
+ "grad_norm": 2.488145351409912,
2191
+ "learning_rate": 1.4946909882929484e-06,
2192
+ "loss": 1.2227,
2193
+ "step": 7800
2194
+ },
2195
+ {
2196
+ "epoch": 2.88,
2197
+ "grad_norm": 2.531705856323242,
2198
+ "learning_rate": 1.3925946093111898e-06,
2199
+ "loss": 1.2156,
2200
+ "step": 7825
2201
+ },
2202
+ {
2203
+ "epoch": 2.88,
2204
+ "grad_norm": 2.5031278133392334,
2205
+ "learning_rate": 1.2904982303294311e-06,
2206
+ "loss": 1.2055,
2207
+ "step": 7850
2208
+ },
2209
+ {
2210
+ "epoch": 2.89,
2211
+ "grad_norm": 2.546499729156494,
2212
+ "learning_rate": 1.1884018513476723e-06,
2213
+ "loss": 1.2362,
2214
+ "step": 7875
2215
+ },
2216
+ {
2217
+ "epoch": 2.9,
2218
+ "grad_norm": 2.5064220428466797,
2219
+ "learning_rate": 1.0863054723659136e-06,
2220
+ "loss": 1.1923,
2221
+ "step": 7900
2222
+ },
2223
+ {
2224
+ "epoch": 2.91,
2225
+ "grad_norm": 2.7137672901153564,
2226
+ "learning_rate": 9.842090933841545e-07,
2227
+ "loss": 1.2136,
2228
+ "step": 7925
2229
+ },
2230
+ {
2231
+ "epoch": 2.92,
2232
+ "grad_norm": 2.4040451049804688,
2233
+ "learning_rate": 8.821127144023959e-07,
2234
+ "loss": 1.1781,
2235
+ "step": 7950
2236
+ },
2237
+ {
2238
+ "epoch": 2.93,
2239
+ "grad_norm": 2.744879961013794,
2240
+ "learning_rate": 7.800163354206371e-07,
2241
+ "loss": 1.2054,
2242
+ "step": 7975
2243
+ },
2244
+ {
2245
+ "epoch": 2.94,
2246
+ "grad_norm": 2.4355337619781494,
2247
+ "learning_rate": 6.779199564388783e-07,
2248
+ "loss": 1.221,
2249
+ "step": 8000
2250
+ },
2251
+ {
2252
+ "epoch": 2.95,
2253
+ "grad_norm": 2.56799054145813,
2254
+ "learning_rate": 5.758235774571195e-07,
2255
+ "loss": 1.1876,
2256
+ "step": 8025
2257
+ },
2258
+ {
2259
+ "epoch": 2.96,
2260
+ "grad_norm": 2.6261682510375977,
2261
+ "learning_rate": 4.7372719847536076e-07,
2262
+ "loss": 1.1994,
2263
+ "step": 8050
2264
+ },
2265
+ {
2266
+ "epoch": 2.97,
2267
+ "grad_norm": 2.609344482421875,
2268
+ "learning_rate": 3.7163081949360194e-07,
2269
+ "loss": 1.2013,
2270
+ "step": 8075
2271
+ },
2272
+ {
2273
+ "epoch": 2.98,
2274
+ "grad_norm": 2.4968795776367188,
2275
+ "learning_rate": 2.695344405118432e-07,
2276
+ "loss": 1.206,
2277
+ "step": 8100
2278
+ },
2279
+ {
2280
+ "epoch": 2.99,
2281
+ "grad_norm": 2.639547109603882,
2282
+ "learning_rate": 1.674380615300844e-07,
2283
+ "loss": 1.2188,
2284
+ "step": 8125
2285
+ },
2286
+ {
2287
+ "epoch": 2.99,
2288
+ "grad_norm": 2.6444761753082275,
2289
+ "learning_rate": 6.534168254832563e-08,
2290
+ "loss": 1.2206,
2291
+ "step": 8150
2292
+ }
2293
+ ],
2294
+ "logging_steps": 25,
2295
+ "max_steps": 8163,
2296
+ "num_input_tokens_seen": 0,
2297
+ "num_train_epochs": 3,
2298
+ "save_steps": 500,
2299
+ "total_flos": 1.4349115244339528e+18,
2300
+ "train_batch_size": 1,
2301
+ "trial_name": null,
2302
+ "trial_params": null
2303
+ }
checkpoint-8163/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0098bf4c403c7113d994b6b971eec464999ac2cc8258b74a609b23f91a4762a4
3
+ size 4984
runs/Mar26_16-21-29_r-binarial-tech-ai-9uu5twdo-fb086-rmjvv/events.out.tfevents.1711470113.r-binarial-tech-ai-9uu5twdo-fb086-rmjvv.106.0 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:51b1b52c54090cbbede82141bf14749db8830ec95612e5172ecf810ade221dd8
3
- size 73655
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:119a85f2712b0049db20cc71a30518656f925e2e1021be5678f9af87724f27fa
3
+ size 74220
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "</s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<unk>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "<s>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "</s>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ }
29
+ },
30
+ "additional_special_tokens": [],
31
+ "bos_token": "<s>",
32
+ "chat_template": "{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}",
33
+ "clean_up_tokenization_spaces": false,
34
+ "eos_token": "</s>",
35
+ "legacy": true,
36
+ "model_max_length": 2048,
37
+ "pad_token": "</s>",
38
+ "sp_model_kwargs": {},
39
+ "spaces_between_special_tokens": false,
40
+ "tokenizer_class": "LlamaTokenizer",
41
+ "unk_token": "<unk>",
42
+ "use_default_system_prompt": false
43
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0098bf4c403c7113d994b6b971eec464999ac2cc8258b74a609b23f91a4762a4
3
+ size 4984
training_params.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": "mistralai/Mistral-7B-Instruct-v0.2",
3
+ "project_name": "GALIA",
4
+ "data_path": "GALIA/autotrain-data",
5
+ "train_split": "train",
6
+ "valid_split": null,
7
+ "add_eos_token": true,
8
+ "block_size": 1024,
9
+ "model_max_length": 2048,
10
+ "padding": "right",
11
+ "trainer": "sft",
12
+ "use_flash_attention_2": false,
13
+ "log": "tensorboard",
14
+ "disable_gradient_checkpointing": false,
15
+ "logging_steps": -1,
16
+ "evaluation_strategy": "epoch",
17
+ "save_total_limit": 1,
18
+ "save_strategy": "epoch",
19
+ "auto_find_batch_size": false,
20
+ "mixed_precision": "fp16",
21
+ "lr": 3e-05,
22
+ "epochs": 3,
23
+ "batch_size": 1,
24
+ "warmup_ratio": 0.1,
25
+ "gradient_accumulation": 4,
26
+ "optimizer": "adamw_torch",
27
+ "scheduler": "linear",
28
+ "weight_decay": 0.0,
29
+ "max_grad_norm": 1.0,
30
+ "seed": 42,
31
+ "chat_template": "none",
32
+ "quantization": "int4",
33
+ "target_modules": "all-linear",
34
+ "merge_adapter": false,
35
+ "peft": true,
36
+ "lora_r": 16,
37
+ "lora_alpha": 32,
38
+ "lora_dropout": 0.05,
39
+ "model_ref": null,
40
+ "dpo_beta": 0.1,
41
+ "prompt_text_column": "autotrain_prompt",
42
+ "text_column": "autotrain_text",
43
+ "rejected_text_column": "autotrain_rejected_text",
44
+ "push_to_hub": true,
45
+ "repo_id": "Rodrigo-Binarial/GALIA",
46
+ "username": "Rodrigo-Binarial"
47
+ }