moiraai2024 commited on
Commit
f71f4fb
·
verified ·
1 Parent(s): 5e9680e

Upload 8 files

Browse files
README.md CHANGED
@@ -1,136 +1,208 @@
1
  ---
2
- license: apache-2.0
3
- language:
4
- - el
5
- base_model:
6
- - sesame/csm-1b
7
- pipeline_tag: text-to-speech
 
 
8
  ---
9
 
10
- # Description
11
- Welcome to Moira.AI GreekTTS, a state-of-the-art text-to-speech model fine-tuned specifically for Greek language synthesis! This model is built on the powerful sesame/csm-1b architecture, which has been fine-tuned with Greek speech data to provide high-quality, natural-sounding speech generation.
12
-
13
- Moira.AI excels in delivering lifelike, expressive speech, making it ideal for a wide range of applications, including virtual assistants, audiobooks, accessibility tools, and more. By leveraging the power of large-scale transformer-based models, Moira.AI ensures fluid prosody and accurate pronunciation of Greek text.
14
-
15
- Key Features:
16
-
17
- - Fine-tuned specifically for Greek TTS.
18
- - Built on the robust sesame/csm-1b model, ensuring high-quality performance.
19
- - Capable of generating natural-sounding, expressive Greek speech.
20
- - Ideal for integration into applications requiring high-quality, human-like text-to-speech synthesis in Greek.
21
- - Explore the model and see how it can enhance your Greek TTS applications!
22
-
23
-
24
- # How to use it
25
- https://docs.unsloth.ai/get-started/install-and-update/conda-install
26
-
27
- ```
28
- conda create --name unsloth_env \
29
- python=3.11 \
30
- pytorch-cuda=12.1 \
31
- pytorch cudatoolkit xformers -c pytorch -c nvidia -c xformers \
32
- -y
33
- ```
34
-
35
- ```
36
- conda activate unsloth_env
37
- ```
38
- ```
39
- pip install unsloth
40
- ```
41
-
42
- ```
43
- from unsloth import FastModel
44
- from transformers import CsmForConditionalGeneration
45
- import torch
46
-
47
- gpu_stats = torch.cuda.get_device_properties(0)
48
- start_gpu_memory = round(torch.cuda.max_memory_reserved() / 1024 / 1024 / 1024, 3)
49
- max_memory = round(gpu_stats.total_memory / 1024 / 1024 / 1024, 3)
50
- print(f"GPU = {gpu_stats.name}. Max memory = {max_memory} GB.")
51
- print(f"{start_gpu_memory} GB of memory reserved.")
52
-
53
- from unsloth import FastLanguageModel as FastModel
54
- from peft import PeftModel
55
- from IPython.display import Audio
56
-
57
- # --- 1. Load the Base Unsloth Model and Processor ---
58
- # This setup must be identical to your training script.
59
- print("Loading the base model and processor...")
60
- model, processor = FastModel.from_pretrained(
61
- model_name = "unsloth/csm-1b",
62
- max_seq_length = 2048,
63
- dtype = None,
64
- auto_model = CsmForConditionalGeneration,
65
- load_in_4bit = False,
66
- )
67
-
68
- # --- 2. Identify and Load Your Best LoRA Checkpoint ---
69
- # !!! IMPORTANT: Change this path to your best checkpoint folder !!!
70
- # (The one you found in trainer_state.json)
71
- int_check = 30_000
72
-
73
- final_int =94_764
74
- best_checkpoint_path = "./training_outputs_second_run/checkpoint-"+str(final_int)
75
-
76
- print(f"\nLoading and merging the LoRA adapter from: {best_checkpoint_path}")
77
-
78
- # This command seamlessly merges your trained adapter weights onto the base model
79
- model = PeftModel.from_pretrained(model, best_checkpoint_path)
80
-
81
- print("\nFine-tuned model is ready for inference!")
82
- # Unsloth automatically handles moving the model to the GPU
83
- ```
84
-
85
- ```
86
- from transformers import AutoProcessor
87
- processor = AutoProcessor.from_pretrained("unsloth/csm-1b")
88
- ```
89
-
90
- ```
91
- greek_sentences = [
92
- "Σου μιλάααανε!",
93
- "Γεια σας, είμαι η Μίρα και σήμερα θα κάνουμε μάθημα Ελληνικων.",
94
- "Ημουν εξω με φιλους και τα επινα. Μου αρεσει πολυ η μπυρα αλφα!",
95
- "Όταν ξανά άνοιξα τα μάτια διαπίστωσα ότι ήμουν ξαπλωμένος σε ένα μαλακό στρώμα από κουβέρτες",
96
- ]
97
- ```
98
-
99
- ```
100
- from IPython.display import Audio, display
101
- import soundfile as sf
102
- ```
103
-
104
- ```
105
- # --- Configure the Generation ---
106
-
107
- int_ = 1
108
- text_to_synthesize = greek_sentences[int_]
109
-
110
- print(f"\nSynthesizing text: '{text_to_synthesize}'")
111
-
112
- speaker_id = 0
113
- inputs = processor(f"[{speaker_id}]{text_to_synthesize}", add_special_tokens=True).to("cuda")
114
-
115
- audio_values = model.generate(
116
- **inputs,
117
- max_new_tokens=125, # 125 tokens is 10 seconds of audio, for longer speech increase this
118
- # play with these parameters to tweak results
119
- # depth_decoder_top_k=0,
120
- # depth_decoder_top_p=0.9,
121
- # depth_decoder_do_sample=True,
122
- # depth_decoder_temperature=0.9,
123
- # top_k=0,
124
- # top_p=1.0,
125
- # temperature=0.9,
126
- # do_sample=True,
127
- #########################################################
128
- output_audio=True
129
- )
130
- ```
131
-
132
- ```
133
- audio = audio_values[0].to(torch.float32).cpu().numpy()
134
- sf.write("example_without_context.wav", audio, 24000)
135
- display(Audio(audio, rate=24000))
136
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model: unsloth/csm-1b
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/csm-1b
7
+ - lora
8
+ - transformers
9
+ - unsloth
10
  ---
11
 
12
+ # Model Card for Model ID
13
+
14
+ <!-- Provide a quick summary of what the model is/does. -->
15
+
16
+
17
+
18
+ ## Model Details
19
+
20
+ ### Model Description
21
+
22
+ <!-- Provide a longer summary of what this model is. -->
23
+
24
+
25
+
26
+ - **Developed by:** [More Information Needed]
27
+ - **Funded by [optional]:** [More Information Needed]
28
+ - **Shared by [optional]:** [More Information Needed]
29
+ - **Model type:** [More Information Needed]
30
+ - **Language(s) (NLP):** [More Information Needed]
31
+ - **License:** [More Information Needed]
32
+ - **Finetuned from model [optional]:** [More Information Needed]
33
+
34
+ ### Model Sources [optional]
35
+
36
+ <!-- Provide the basic links for the model. -->
37
+
38
+ - **Repository:** [More Information Needed]
39
+ - **Paper [optional]:** [More Information Needed]
40
+ - **Demo [optional]:** [More Information Needed]
41
+
42
+ ## Uses
43
+
44
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
45
+
46
+ ### Direct Use
47
+
48
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Downstream Use [optional]
53
+
54
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
55
+
56
+ [More Information Needed]
57
+
58
+ ### Out-of-Scope Use
59
+
60
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ## Bias, Risks, and Limitations
65
+
66
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
67
+
68
+ [More Information Needed]
69
+
70
+ ### Recommendations
71
+
72
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
73
+
74
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
75
+
76
+ ## How to Get Started with the Model
77
+
78
+ Use the code below to get started with the model.
79
+
80
+ [More Information Needed]
81
+
82
+ ## Training Details
83
+
84
+ ### Training Data
85
+
86
+ <!-- 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. -->
87
+
88
+ [More Information Needed]
89
+
90
+ ### Training Procedure
91
+
92
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
93
+
94
+ #### Preprocessing [optional]
95
+
96
+ [More Information Needed]
97
+
98
+
99
+ #### Training Hyperparameters
100
+
101
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
102
+
103
+ #### Speeds, Sizes, Times [optional]
104
+
105
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
106
+
107
+ [More Information Needed]
108
+
109
+ ## Evaluation
110
+
111
+ <!-- This section describes the evaluation protocols and provides the results. -->
112
+
113
+ ### Testing Data, Factors & Metrics
114
+
115
+ #### Testing Data
116
+
117
+ <!-- This should link to a Dataset Card if possible. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Factors
122
+
123
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
124
+
125
+ [More Information Needed]
126
+
127
+ #### Metrics
128
+
129
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
130
+
131
+ [More Information Needed]
132
+
133
+ ### Results
134
+
135
+ [More Information Needed]
136
+
137
+ #### Summary
138
+
139
+
140
+
141
+ ## Model Examination [optional]
142
+
143
+ <!-- Relevant interpretability work for the model goes here -->
144
+
145
+ [More Information Needed]
146
+
147
+ ## Environmental Impact
148
+
149
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
150
+
151
+ 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).
152
+
153
+ - **Hardware Type:** [More Information Needed]
154
+ - **Hours used:** [More Information Needed]
155
+ - **Cloud Provider:** [More Information Needed]
156
+ - **Compute Region:** [More Information Needed]
157
+ - **Carbon Emitted:** [More Information Needed]
158
+
159
+ ## Technical Specifications [optional]
160
+
161
+ ### Model Architecture and Objective
162
+
163
+ [More Information Needed]
164
+
165
+ ### Compute Infrastructure
166
+
167
+ [More Information Needed]
168
+
169
+ #### Hardware
170
+
171
+ [More Information Needed]
172
+
173
+ #### Software
174
+
175
+ [More Information Needed]
176
+
177
+ ## Citation [optional]
178
+
179
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
180
+
181
+ **BibTeX:**
182
+
183
+ [More Information Needed]
184
+
185
+ **APA:**
186
+
187
+ [More Information Needed]
188
+
189
+ ## Glossary [optional]
190
+
191
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
192
+
193
+ [More Information Needed]
194
+
195
+ ## More Information [optional]
196
+
197
+ [More Information Needed]
198
+
199
+ ## Model Card Authors [optional]
200
+
201
+ [More Information Needed]
202
+
203
+ ## Model Card Contact
204
+
205
+ [More Information Needed]
206
+ ### Framework versions
207
+
208
+ - PEFT 0.17.0
adapter_config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "unsloth/csm-1b",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 32,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "gate_proj",
29
+ "k_proj",
30
+ "down_proj",
31
+ "o_proj",
32
+ "v_proj",
33
+ "q_proj",
34
+ "up_proj"
35
+ ],
36
+ "target_parameters": null,
37
+ "task_type": "CAUSAL_LM",
38
+ "trainable_token_indices": null,
39
+ "use_dora": false,
40
+ "use_qalora": false,
41
+ "use_rslora": false
42
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3094cacda0e8a1ae2d5d6a8bff54a1b516d354e865706886128dc9e292bbc01
3
+ size 116190168
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d2bce3c37add9df9d40fe1ca6593918eb048a596cd9b3784ca7d2533a84453d
3
+ size 55042949
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3c2e7ff0cd27068edff8308bc47a2b829b2dcf5a00b637ba3c57547912c9ce7
3
+ size 14645
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7e2194678942224c14d978ad6f70e5b9259a029bc32e50ee1b4bdb9ec918ff6
3
+ size 1465
trainer_state.json ADDED
@@ -0,0 +1,1870 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 3.0,
6
+ "eval_steps": 4000,
7
+ "global_step": 94764,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.012663237039968342,
14
+ "grad_norm": 5.712349891662598,
15
+ "learning_rate": 0.00019916841672031155,
16
+ "loss": 28.7584,
17
+ "step": 400
18
+ },
19
+ {
20
+ "epoch": 0.025326474079936684,
21
+ "grad_norm": 6.924032688140869,
22
+ "learning_rate": 0.00019832416973585622,
23
+ "loss": 26.4219,
24
+ "step": 800
25
+ },
26
+ {
27
+ "epoch": 0.037989711119905026,
28
+ "grad_norm": 7.283262252807617,
29
+ "learning_rate": 0.00019747992275140092,
30
+ "loss": 24.0051,
31
+ "step": 1200
32
+ },
33
+ {
34
+ "epoch": 0.05065294815987337,
35
+ "grad_norm": 7.671304702758789,
36
+ "learning_rate": 0.00019663567576694565,
37
+ "loss": 23.2237,
38
+ "step": 1600
39
+ },
40
+ {
41
+ "epoch": 0.06331618519984171,
42
+ "grad_norm": 8.817034721374512,
43
+ "learning_rate": 0.00019579142878249032,
44
+ "loss": 22.7684,
45
+ "step": 2000
46
+ },
47
+ {
48
+ "epoch": 0.07597942223981005,
49
+ "grad_norm": 5.911375999450684,
50
+ "learning_rate": 0.00019494718179803502,
51
+ "loss": 22.7665,
52
+ "step": 2400
53
+ },
54
+ {
55
+ "epoch": 0.0886426592797784,
56
+ "grad_norm": 8.014992713928223,
57
+ "learning_rate": 0.00019410293481357974,
58
+ "loss": 22.4848,
59
+ "step": 2800
60
+ },
61
+ {
62
+ "epoch": 0.10130589631974674,
63
+ "grad_norm": 5.90252685546875,
64
+ "learning_rate": 0.0001932586878291244,
65
+ "loss": 22.4803,
66
+ "step": 3200
67
+ },
68
+ {
69
+ "epoch": 0.11396913335971508,
70
+ "grad_norm": 7.182605743408203,
71
+ "learning_rate": 0.0001924144408446691,
72
+ "loss": 22.2229,
73
+ "step": 3600
74
+ },
75
+ {
76
+ "epoch": 0.12663237039968342,
77
+ "grad_norm": 7.886034965515137,
78
+ "learning_rate": 0.0001915701938602138,
79
+ "loss": 22.1914,
80
+ "step": 4000
81
+ },
82
+ {
83
+ "epoch": 0.12663237039968342,
84
+ "eval_loss": 5.568932056427002,
85
+ "eval_runtime": 828.8574,
86
+ "eval_samples_per_second": 8.023,
87
+ "eval_steps_per_second": 8.023,
88
+ "step": 4000
89
+ },
90
+ {
91
+ "epoch": 0.13929560743965175,
92
+ "grad_norm": 6.553421974182129,
93
+ "learning_rate": 0.0001907259468757585,
94
+ "loss": 22.0885,
95
+ "step": 4400
96
+ },
97
+ {
98
+ "epoch": 0.1519588444796201,
99
+ "grad_norm": 6.866927146911621,
100
+ "learning_rate": 0.0001898816998913032,
101
+ "loss": 22.0398,
102
+ "step": 4800
103
+ },
104
+ {
105
+ "epoch": 0.16462208151958843,
106
+ "grad_norm": 4.441892147064209,
107
+ "learning_rate": 0.0001890374529068479,
108
+ "loss": 21.9852,
109
+ "step": 5200
110
+ },
111
+ {
112
+ "epoch": 0.1772853185595568,
113
+ "grad_norm": 8.22354507446289,
114
+ "learning_rate": 0.0001881932059223926,
115
+ "loss": 22.0736,
116
+ "step": 5600
117
+ },
118
+ {
119
+ "epoch": 0.18994855559952512,
120
+ "grad_norm": 5.67435884475708,
121
+ "learning_rate": 0.00018734895893793733,
122
+ "loss": 21.9875,
123
+ "step": 6000
124
+ },
125
+ {
126
+ "epoch": 0.20261179263949347,
127
+ "grad_norm": 8.888544082641602,
128
+ "learning_rate": 0.000186504711953482,
129
+ "loss": 21.9139,
130
+ "step": 6400
131
+ },
132
+ {
133
+ "epoch": 0.2152750296794618,
134
+ "grad_norm": 5.154353141784668,
135
+ "learning_rate": 0.0001856604649690267,
136
+ "loss": 21.8646,
137
+ "step": 6800
138
+ },
139
+ {
140
+ "epoch": 0.22793826671943015,
141
+ "grad_norm": 8.800929069519043,
142
+ "learning_rate": 0.0001848162179845714,
143
+ "loss": 21.8461,
144
+ "step": 7200
145
+ },
146
+ {
147
+ "epoch": 0.24060150375939848,
148
+ "grad_norm": 8.013294219970703,
149
+ "learning_rate": 0.0001839719710001161,
150
+ "loss": 21.8447,
151
+ "step": 7600
152
+ },
153
+ {
154
+ "epoch": 0.25326474079936684,
155
+ "grad_norm": 5.175795078277588,
156
+ "learning_rate": 0.0001831277240156608,
157
+ "loss": 21.8885,
158
+ "step": 8000
159
+ },
160
+ {
161
+ "epoch": 0.25326474079936684,
162
+ "eval_loss": 5.471480846405029,
163
+ "eval_runtime": 827.0752,
164
+ "eval_samples_per_second": 8.04,
165
+ "eval_steps_per_second": 8.04,
166
+ "step": 8000
167
+ },
168
+ {
169
+ "epoch": 0.2659279778393352,
170
+ "grad_norm": 9.457793235778809,
171
+ "learning_rate": 0.0001822834770312055,
172
+ "loss": 21.8034,
173
+ "step": 8400
174
+ },
175
+ {
176
+ "epoch": 0.2785912148793035,
177
+ "grad_norm": 8.597488403320312,
178
+ "learning_rate": 0.00018143923004675019,
179
+ "loss": 21.7742,
180
+ "step": 8800
181
+ },
182
+ {
183
+ "epoch": 0.29125445191927185,
184
+ "grad_norm": 6.178262233734131,
185
+ "learning_rate": 0.00018059498306229488,
186
+ "loss": 21.6497,
187
+ "step": 9200
188
+ },
189
+ {
190
+ "epoch": 0.3039176889592402,
191
+ "grad_norm": 4.998334884643555,
192
+ "learning_rate": 0.00017975073607783958,
193
+ "loss": 21.6025,
194
+ "step": 9600
195
+ },
196
+ {
197
+ "epoch": 0.31658092599920856,
198
+ "grad_norm": 3.7733397483825684,
199
+ "learning_rate": 0.00017890648909338428,
200
+ "loss": 21.7662,
201
+ "step": 10000
202
+ },
203
+ {
204
+ "epoch": 0.32924416303917686,
205
+ "grad_norm": 4.3571248054504395,
206
+ "learning_rate": 0.00017806224210892898,
207
+ "loss": 21.724,
208
+ "step": 10400
209
+ },
210
+ {
211
+ "epoch": 0.3419074000791452,
212
+ "grad_norm": 4.92628288269043,
213
+ "learning_rate": 0.00017721799512447368,
214
+ "loss": 21.6431,
215
+ "step": 10800
216
+ },
217
+ {
218
+ "epoch": 0.3545706371191136,
219
+ "grad_norm": 6.349125385284424,
220
+ "learning_rate": 0.00017637374814001837,
221
+ "loss": 21.7532,
222
+ "step": 11200
223
+ },
224
+ {
225
+ "epoch": 0.36723387415908193,
226
+ "grad_norm": 5.166254043579102,
227
+ "learning_rate": 0.00017552950115556305,
228
+ "loss": 21.7536,
229
+ "step": 11600
230
+ },
231
+ {
232
+ "epoch": 0.37989711119905023,
233
+ "grad_norm": 5.412994384765625,
234
+ "learning_rate": 0.00017468525417110777,
235
+ "loss": 21.6709,
236
+ "step": 12000
237
+ },
238
+ {
239
+ "epoch": 0.37989711119905023,
240
+ "eval_loss": 5.415313720703125,
241
+ "eval_runtime": 827.4502,
242
+ "eval_samples_per_second": 8.037,
243
+ "eval_steps_per_second": 8.037,
244
+ "step": 12000
245
+ },
246
+ {
247
+ "epoch": 0.3925603482390186,
248
+ "grad_norm": 5.78619384765625,
249
+ "learning_rate": 0.00017384100718665247,
250
+ "loss": 21.6338,
251
+ "step": 12400
252
+ },
253
+ {
254
+ "epoch": 0.40522358527898694,
255
+ "grad_norm": 5.001625061035156,
256
+ "learning_rate": 0.00017299676020219714,
257
+ "loss": 21.6746,
258
+ "step": 12800
259
+ },
260
+ {
261
+ "epoch": 0.4178868223189553,
262
+ "grad_norm": 6.57304048538208,
263
+ "learning_rate": 0.00017215251321774186,
264
+ "loss": 21.5606,
265
+ "step": 13200
266
+ },
267
+ {
268
+ "epoch": 0.4305500593589236,
269
+ "grad_norm": 4.932160377502441,
270
+ "learning_rate": 0.00017130826623328656,
271
+ "loss": 21.6432,
272
+ "step": 13600
273
+ },
274
+ {
275
+ "epoch": 0.44321329639889195,
276
+ "grad_norm": 5.347546577453613,
277
+ "learning_rate": 0.00017046401924883126,
278
+ "loss": 21.473,
279
+ "step": 14000
280
+ },
281
+ {
282
+ "epoch": 0.4558765334388603,
283
+ "grad_norm": 4.49334716796875,
284
+ "learning_rate": 0.00016961977226437596,
285
+ "loss": 21.5754,
286
+ "step": 14400
287
+ },
288
+ {
289
+ "epoch": 0.46853977047882867,
290
+ "grad_norm": 6.437751770019531,
291
+ "learning_rate": 0.00016877552527992063,
292
+ "loss": 21.4601,
293
+ "step": 14800
294
+ },
295
+ {
296
+ "epoch": 0.48120300751879697,
297
+ "grad_norm": 5.687736988067627,
298
+ "learning_rate": 0.00016793127829546536,
299
+ "loss": 21.6067,
300
+ "step": 15200
301
+ },
302
+ {
303
+ "epoch": 0.4938662445587653,
304
+ "grad_norm": 4.615053653717041,
305
+ "learning_rate": 0.00016708703131101005,
306
+ "loss": 21.5149,
307
+ "step": 15600
308
+ },
309
+ {
310
+ "epoch": 0.5065294815987337,
311
+ "grad_norm": 6.088917255401611,
312
+ "learning_rate": 0.00016624278432655472,
313
+ "loss": 21.4344,
314
+ "step": 16000
315
+ },
316
+ {
317
+ "epoch": 0.5065294815987337,
318
+ "eval_loss": 5.379353046417236,
319
+ "eval_runtime": 827.937,
320
+ "eval_samples_per_second": 8.032,
321
+ "eval_steps_per_second": 8.032,
322
+ "step": 16000
323
+ },
324
+ {
325
+ "epoch": 0.519192718638702,
326
+ "grad_norm": 8.198923110961914,
327
+ "learning_rate": 0.00016539853734209945,
328
+ "loss": 21.6445,
329
+ "step": 16400
330
+ },
331
+ {
332
+ "epoch": 0.5318559556786704,
333
+ "grad_norm": 4.853950500488281,
334
+ "learning_rate": 0.00016455429035764415,
335
+ "loss": 21.5521,
336
+ "step": 16800
337
+ },
338
+ {
339
+ "epoch": 0.5445191927186387,
340
+ "grad_norm": 5.882175922393799,
341
+ "learning_rate": 0.00016371004337318882,
342
+ "loss": 21.6128,
343
+ "step": 17200
344
+ },
345
+ {
346
+ "epoch": 0.557182429758607,
347
+ "grad_norm": 5.045036792755127,
348
+ "learning_rate": 0.00016286579638873354,
349
+ "loss": 21.3947,
350
+ "step": 17600
351
+ },
352
+ {
353
+ "epoch": 0.5698456667985754,
354
+ "grad_norm": 7.406811714172363,
355
+ "learning_rate": 0.00016202154940427822,
356
+ "loss": 21.4895,
357
+ "step": 18000
358
+ },
359
+ {
360
+ "epoch": 0.5825089038385437,
361
+ "grad_norm": 4.246167182922363,
362
+ "learning_rate": 0.0001611773024198229,
363
+ "loss": 21.4127,
364
+ "step": 18400
365
+ },
366
+ {
367
+ "epoch": 0.5951721408785121,
368
+ "grad_norm": 6.033562183380127,
369
+ "learning_rate": 0.00016033305543536764,
370
+ "loss": 21.4598,
371
+ "step": 18800
372
+ },
373
+ {
374
+ "epoch": 0.6078353779184804,
375
+ "grad_norm": 6.69214391708374,
376
+ "learning_rate": 0.0001594888084509123,
377
+ "loss": 21.3653,
378
+ "step": 19200
379
+ },
380
+ {
381
+ "epoch": 0.6204986149584487,
382
+ "grad_norm": 4.1962199211120605,
383
+ "learning_rate": 0.000158644561466457,
384
+ "loss": 21.4043,
385
+ "step": 19600
386
+ },
387
+ {
388
+ "epoch": 0.6331618519984171,
389
+ "grad_norm": 5.602635860443115,
390
+ "learning_rate": 0.00015780031448200173,
391
+ "loss": 21.3265,
392
+ "step": 20000
393
+ },
394
+ {
395
+ "epoch": 0.6331618519984171,
396
+ "eval_loss": 5.360119342803955,
397
+ "eval_runtime": 827.4824,
398
+ "eval_samples_per_second": 8.036,
399
+ "eval_steps_per_second": 8.036,
400
+ "step": 20000
401
+ },
402
+ {
403
+ "epoch": 0.6458250890383854,
404
+ "grad_norm": 5.863671779632568,
405
+ "learning_rate": 0.0001569560674975464,
406
+ "loss": 21.4703,
407
+ "step": 20400
408
+ },
409
+ {
410
+ "epoch": 0.6584883260783537,
411
+ "grad_norm": 4.729866027832031,
412
+ "learning_rate": 0.00015611182051309113,
413
+ "loss": 21.3102,
414
+ "step": 20800
415
+ },
416
+ {
417
+ "epoch": 0.6711515631183221,
418
+ "grad_norm": 5.219459056854248,
419
+ "learning_rate": 0.0001552675735286358,
420
+ "loss": 21.2844,
421
+ "step": 21200
422
+ },
423
+ {
424
+ "epoch": 0.6838148001582904,
425
+ "grad_norm": 8.284063339233398,
426
+ "learning_rate": 0.0001544233265441805,
427
+ "loss": 21.3088,
428
+ "step": 21600
429
+ },
430
+ {
431
+ "epoch": 0.6964780371982588,
432
+ "grad_norm": 5.863561153411865,
433
+ "learning_rate": 0.00015357907955972522,
434
+ "loss": 21.4019,
435
+ "step": 22000
436
+ },
437
+ {
438
+ "epoch": 0.7091412742382271,
439
+ "grad_norm": 4.672849655151367,
440
+ "learning_rate": 0.0001527348325752699,
441
+ "loss": 21.2354,
442
+ "step": 22400
443
+ },
444
+ {
445
+ "epoch": 0.7218045112781954,
446
+ "grad_norm": 5.514325141906738,
447
+ "learning_rate": 0.0001518905855908146,
448
+ "loss": 21.2799,
449
+ "step": 22800
450
+ },
451
+ {
452
+ "epoch": 0.7344677483181639,
453
+ "grad_norm": 4.2964186668396,
454
+ "learning_rate": 0.00015104633860635932,
455
+ "loss": 21.2922,
456
+ "step": 23200
457
+ },
458
+ {
459
+ "epoch": 0.7471309853581322,
460
+ "grad_norm": 6.241255283355713,
461
+ "learning_rate": 0.000150202091621904,
462
+ "loss": 21.3237,
463
+ "step": 23600
464
+ },
465
+ {
466
+ "epoch": 0.7597942223981005,
467
+ "grad_norm": 5.528208255767822,
468
+ "learning_rate": 0.0001493578446374487,
469
+ "loss": 21.3914,
470
+ "step": 24000
471
+ },
472
+ {
473
+ "epoch": 0.7597942223981005,
474
+ "eval_loss": 5.337831974029541,
475
+ "eval_runtime": 827.9109,
476
+ "eval_samples_per_second": 8.032,
477
+ "eval_steps_per_second": 8.032,
478
+ "step": 24000
479
+ },
480
+ {
481
+ "epoch": 0.7724574594380689,
482
+ "grad_norm": 6.572064399719238,
483
+ "learning_rate": 0.00014851359765299339,
484
+ "loss": 21.2885,
485
+ "step": 24400
486
+ },
487
+ {
488
+ "epoch": 0.7851206964780372,
489
+ "grad_norm": 6.282362937927246,
490
+ "learning_rate": 0.00014766935066853808,
491
+ "loss": 21.2727,
492
+ "step": 24800
493
+ },
494
+ {
495
+ "epoch": 0.7977839335180056,
496
+ "grad_norm": 6.260461807250977,
497
+ "learning_rate": 0.00014682510368408278,
498
+ "loss": 21.2631,
499
+ "step": 25200
500
+ },
501
+ {
502
+ "epoch": 0.8104471705579739,
503
+ "grad_norm": 5.576934814453125,
504
+ "learning_rate": 0.00014598085669962748,
505
+ "loss": 21.2312,
506
+ "step": 25600
507
+ },
508
+ {
509
+ "epoch": 0.8231104075979422,
510
+ "grad_norm": 7.043119430541992,
511
+ "learning_rate": 0.00014513660971517218,
512
+ "loss": 21.2092,
513
+ "step": 26000
514
+ },
515
+ {
516
+ "epoch": 0.8357736446379106,
517
+ "grad_norm": 4.880777835845947,
518
+ "learning_rate": 0.00014429236273071688,
519
+ "loss": 21.2742,
520
+ "step": 26400
521
+ },
522
+ {
523
+ "epoch": 0.8484368816778789,
524
+ "grad_norm": 4.317328929901123,
525
+ "learning_rate": 0.00014344811574626157,
526
+ "loss": 21.3076,
527
+ "step": 26800
528
+ },
529
+ {
530
+ "epoch": 0.8611001187178472,
531
+ "grad_norm": 6.527237415313721,
532
+ "learning_rate": 0.00014260386876180627,
533
+ "loss": 21.1922,
534
+ "step": 27200
535
+ },
536
+ {
537
+ "epoch": 0.8737633557578156,
538
+ "grad_norm": 5.896966457366943,
539
+ "learning_rate": 0.00014175962177735097,
540
+ "loss": 21.296,
541
+ "step": 27600
542
+ },
543
+ {
544
+ "epoch": 0.8864265927977839,
545
+ "grad_norm": 4.883022785186768,
546
+ "learning_rate": 0.00014091537479289567,
547
+ "loss": 21.3216,
548
+ "step": 28000
549
+ },
550
+ {
551
+ "epoch": 0.8864265927977839,
552
+ "eval_loss": 5.316357135772705,
553
+ "eval_runtime": 827.6596,
554
+ "eval_samples_per_second": 8.035,
555
+ "eval_steps_per_second": 8.035,
556
+ "step": 28000
557
+ },
558
+ {
559
+ "epoch": 0.8990898298377523,
560
+ "grad_norm": 4.470438480377197,
561
+ "learning_rate": 0.00014007112780844037,
562
+ "loss": 21.1219,
563
+ "step": 28400
564
+ },
565
+ {
566
+ "epoch": 0.9117530668777206,
567
+ "grad_norm": 4.960896015167236,
568
+ "learning_rate": 0.00013922688082398506,
569
+ "loss": 21.2995,
570
+ "step": 28800
571
+ },
572
+ {
573
+ "epoch": 0.9244163039176889,
574
+ "grad_norm": 4.033212184906006,
575
+ "learning_rate": 0.00013838263383952976,
576
+ "loss": 21.2332,
577
+ "step": 29200
578
+ },
579
+ {
580
+ "epoch": 0.9370795409576573,
581
+ "grad_norm": 5.585933685302734,
582
+ "learning_rate": 0.00013753838685507446,
583
+ "loss": 21.1877,
584
+ "step": 29600
585
+ },
586
+ {
587
+ "epoch": 0.9497427779976256,
588
+ "grad_norm": 5.022076606750488,
589
+ "learning_rate": 0.00013669413987061916,
590
+ "loss": 21.2318,
591
+ "step": 30000
592
+ },
593
+ {
594
+ "epoch": 0.9624060150375939,
595
+ "grad_norm": 6.21948766708374,
596
+ "learning_rate": 0.00013584989288616386,
597
+ "loss": 21.2636,
598
+ "step": 30400
599
+ },
600
+ {
601
+ "epoch": 0.9750692520775623,
602
+ "grad_norm": 4.889180660247803,
603
+ "learning_rate": 0.00013500564590170855,
604
+ "loss": 21.2175,
605
+ "step": 30800
606
+ },
607
+ {
608
+ "epoch": 0.9877324891175306,
609
+ "grad_norm": 4.395177364349365,
610
+ "learning_rate": 0.00013416139891725325,
611
+ "loss": 21.0757,
612
+ "step": 31200
613
+ },
614
+ {
615
+ "epoch": 1.000379897111199,
616
+ "grad_norm": 4.519713878631592,
617
+ "learning_rate": 0.00013331715193279795,
618
+ "loss": 21.2397,
619
+ "step": 31600
620
+ },
621
+ {
622
+ "epoch": 1.0130431341511674,
623
+ "grad_norm": 7.355111598968506,
624
+ "learning_rate": 0.00013247290494834262,
625
+ "loss": 20.7296,
626
+ "step": 32000
627
+ },
628
+ {
629
+ "epoch": 1.0130431341511674,
630
+ "eval_loss": 5.2997307777404785,
631
+ "eval_runtime": 827.4677,
632
+ "eval_samples_per_second": 8.037,
633
+ "eval_steps_per_second": 8.037,
634
+ "step": 32000
635
+ },
636
+ {
637
+ "epoch": 1.0257063711911358,
638
+ "grad_norm": 5.514514446258545,
639
+ "learning_rate": 0.00013162865796388735,
640
+ "loss": 20.8263,
641
+ "step": 32400
642
+ },
643
+ {
644
+ "epoch": 1.038369608231104,
645
+ "grad_norm": 5.889220714569092,
646
+ "learning_rate": 0.00013078441097943205,
647
+ "loss": 20.7564,
648
+ "step": 32800
649
+ },
650
+ {
651
+ "epoch": 1.0510328452710724,
652
+ "grad_norm": 4.103857517242432,
653
+ "learning_rate": 0.00012994016399497672,
654
+ "loss": 20.6965,
655
+ "step": 33200
656
+ },
657
+ {
658
+ "epoch": 1.0636960823110408,
659
+ "grad_norm": 5.945840358734131,
660
+ "learning_rate": 0.00012909591701052144,
661
+ "loss": 20.7703,
662
+ "step": 33600
663
+ },
664
+ {
665
+ "epoch": 1.076359319351009,
666
+ "grad_norm": 5.632152557373047,
667
+ "learning_rate": 0.00012825167002606614,
668
+ "loss": 20.7298,
669
+ "step": 34000
670
+ },
671
+ {
672
+ "epoch": 1.0890225563909774,
673
+ "grad_norm": 4.992783069610596,
674
+ "learning_rate": 0.0001274074230416108,
675
+ "loss": 20.7289,
676
+ "step": 34400
677
+ },
678
+ {
679
+ "epoch": 1.1016857934309459,
680
+ "grad_norm": 5.6489338874816895,
681
+ "learning_rate": 0.00012656317605715554,
682
+ "loss": 20.8587,
683
+ "step": 34800
684
+ },
685
+ {
686
+ "epoch": 1.114349030470914,
687
+ "grad_norm": 5.924511432647705,
688
+ "learning_rate": 0.0001257189290727002,
689
+ "loss": 20.6762,
690
+ "step": 35200
691
+ },
692
+ {
693
+ "epoch": 1.1270122675108825,
694
+ "grad_norm": 7.25151252746582,
695
+ "learning_rate": 0.00012487468208824493,
696
+ "loss": 20.7874,
697
+ "step": 35600
698
+ },
699
+ {
700
+ "epoch": 1.1396755045508509,
701
+ "grad_norm": 7.074513912200928,
702
+ "learning_rate": 0.00012403043510378963,
703
+ "loss": 20.7852,
704
+ "step": 36000
705
+ },
706
+ {
707
+ "epoch": 1.1396755045508509,
708
+ "eval_loss": 5.293835639953613,
709
+ "eval_runtime": 827.451,
710
+ "eval_samples_per_second": 8.037,
711
+ "eval_steps_per_second": 8.037,
712
+ "step": 36000
713
+ },
714
+ {
715
+ "epoch": 1.152338741590819,
716
+ "grad_norm": 5.452646732330322,
717
+ "learning_rate": 0.0001231861881193343,
718
+ "loss": 20.7661,
719
+ "step": 36400
720
+ },
721
+ {
722
+ "epoch": 1.1650019786307875,
723
+ "grad_norm": 9.404861450195312,
724
+ "learning_rate": 0.00012234194113487903,
725
+ "loss": 20.7723,
726
+ "step": 36800
727
+ },
728
+ {
729
+ "epoch": 1.1776652156707559,
730
+ "grad_norm": 8.0953950881958,
731
+ "learning_rate": 0.00012149769415042371,
732
+ "loss": 20.7162,
733
+ "step": 37200
734
+ },
735
+ {
736
+ "epoch": 1.190328452710724,
737
+ "grad_norm": 8.188663482666016,
738
+ "learning_rate": 0.00012065344716596841,
739
+ "loss": 20.7402,
740
+ "step": 37600
741
+ },
742
+ {
743
+ "epoch": 1.2029916897506925,
744
+ "grad_norm": 6.381914138793945,
745
+ "learning_rate": 0.00011980920018151312,
746
+ "loss": 20.6441,
747
+ "step": 38000
748
+ },
749
+ {
750
+ "epoch": 1.215654926790661,
751
+ "grad_norm": 6.439055442810059,
752
+ "learning_rate": 0.0001189649531970578,
753
+ "loss": 20.7694,
754
+ "step": 38400
755
+ },
756
+ {
757
+ "epoch": 1.2283181638306293,
758
+ "grad_norm": 5.406436443328857,
759
+ "learning_rate": 0.00011812070621260249,
760
+ "loss": 20.8294,
761
+ "step": 38800
762
+ },
763
+ {
764
+ "epoch": 1.2409814008705975,
765
+ "grad_norm": 5.663506507873535,
766
+ "learning_rate": 0.0001172764592281472,
767
+ "loss": 20.6368,
768
+ "step": 39200
769
+ },
770
+ {
771
+ "epoch": 1.253644637910566,
772
+ "grad_norm": 7.003817558288574,
773
+ "learning_rate": 0.0001164322122436919,
774
+ "loss": 20.7311,
775
+ "step": 39600
776
+ },
777
+ {
778
+ "epoch": 1.266307874950534,
779
+ "grad_norm": 5.4320783615112305,
780
+ "learning_rate": 0.00011558796525923658,
781
+ "loss": 20.6077,
782
+ "step": 40000
783
+ },
784
+ {
785
+ "epoch": 1.266307874950534,
786
+ "eval_loss": 5.290070533752441,
787
+ "eval_runtime": 828.016,
788
+ "eval_samples_per_second": 8.031,
789
+ "eval_steps_per_second": 8.031,
790
+ "step": 40000
791
+ },
792
+ {
793
+ "epoch": 1.2789711119905025,
794
+ "grad_norm": 5.977424144744873,
795
+ "learning_rate": 0.0001147437182747813,
796
+ "loss": 20.807,
797
+ "step": 40400
798
+ },
799
+ {
800
+ "epoch": 1.291634349030471,
801
+ "grad_norm": 4.140133857727051,
802
+ "learning_rate": 0.000113899471290326,
803
+ "loss": 20.692,
804
+ "step": 40800
805
+ },
806
+ {
807
+ "epoch": 1.3042975860704393,
808
+ "grad_norm": 8.311481475830078,
809
+ "learning_rate": 0.00011305522430587068,
810
+ "loss": 20.8168,
811
+ "step": 41200
812
+ },
813
+ {
814
+ "epoch": 1.3169608231104075,
815
+ "grad_norm": 5.127328872680664,
816
+ "learning_rate": 0.00011221097732141539,
817
+ "loss": 20.7075,
818
+ "step": 41600
819
+ },
820
+ {
821
+ "epoch": 1.329624060150376,
822
+ "grad_norm": 5.829504013061523,
823
+ "learning_rate": 0.00011136673033696008,
824
+ "loss": 20.6994,
825
+ "step": 42000
826
+ },
827
+ {
828
+ "epoch": 1.3422872971903443,
829
+ "grad_norm": 10.939740180969238,
830
+ "learning_rate": 0.00011052248335250479,
831
+ "loss": 20.6369,
832
+ "step": 42400
833
+ },
834
+ {
835
+ "epoch": 1.3549505342303125,
836
+ "grad_norm": 7.285661697387695,
837
+ "learning_rate": 0.00010967823636804948,
838
+ "loss": 20.765,
839
+ "step": 42800
840
+ },
841
+ {
842
+ "epoch": 1.367613771270281,
843
+ "grad_norm": 6.9708781242370605,
844
+ "learning_rate": 0.00010883398938359417,
845
+ "loss": 20.6949,
846
+ "step": 43200
847
+ },
848
+ {
849
+ "epoch": 1.3802770083102494,
850
+ "grad_norm": 3.8849053382873535,
851
+ "learning_rate": 0.00010798974239913888,
852
+ "loss": 20.775,
853
+ "step": 43600
854
+ },
855
+ {
856
+ "epoch": 1.3929402453502178,
857
+ "grad_norm": 5.512059211730957,
858
+ "learning_rate": 0.00010714549541468357,
859
+ "loss": 20.6644,
860
+ "step": 44000
861
+ },
862
+ {
863
+ "epoch": 1.3929402453502178,
864
+ "eval_loss": 5.2762451171875,
865
+ "eval_runtime": 828.4019,
866
+ "eval_samples_per_second": 8.028,
867
+ "eval_steps_per_second": 8.028,
868
+ "step": 44000
869
+ },
870
+ {
871
+ "epoch": 1.405603482390186,
872
+ "grad_norm": 5.7364583015441895,
873
+ "learning_rate": 0.00010630124843022826,
874
+ "loss": 20.7325,
875
+ "step": 44400
876
+ },
877
+ {
878
+ "epoch": 1.4182667194301544,
879
+ "grad_norm": 6.881465911865234,
880
+ "learning_rate": 0.00010545700144577298,
881
+ "loss": 20.7941,
882
+ "step": 44800
883
+ },
884
+ {
885
+ "epoch": 1.4309299564701226,
886
+ "grad_norm": 4.779888153076172,
887
+ "learning_rate": 0.00010461275446131766,
888
+ "loss": 20.7267,
889
+ "step": 45200
890
+ },
891
+ {
892
+ "epoch": 1.443593193510091,
893
+ "grad_norm": 8.492117881774902,
894
+ "learning_rate": 0.00010376850747686236,
895
+ "loss": 20.7508,
896
+ "step": 45600
897
+ },
898
+ {
899
+ "epoch": 1.4562564305500594,
900
+ "grad_norm": 4.9288458824157715,
901
+ "learning_rate": 0.00010292426049240707,
902
+ "loss": 20.6607,
903
+ "step": 46000
904
+ },
905
+ {
906
+ "epoch": 1.4689196675900278,
907
+ "grad_norm": 5.2882819175720215,
908
+ "learning_rate": 0.00010208001350795175,
909
+ "loss": 20.7009,
910
+ "step": 46400
911
+ },
912
+ {
913
+ "epoch": 1.481582904629996,
914
+ "grad_norm": 6.698110103607178,
915
+ "learning_rate": 0.00010123576652349644,
916
+ "loss": 20.6642,
917
+ "step": 46800
918
+ },
919
+ {
920
+ "epoch": 1.4942461416699644,
921
+ "grad_norm": 6.440258026123047,
922
+ "learning_rate": 0.00010039151953904115,
923
+ "loss": 20.6448,
924
+ "step": 47200
925
+ },
926
+ {
927
+ "epoch": 1.5069093787099326,
928
+ "grad_norm": 5.870398998260498,
929
+ "learning_rate": 9.954727255458585e-05,
930
+ "loss": 20.7483,
931
+ "step": 47600
932
+ },
933
+ {
934
+ "epoch": 1.519572615749901,
935
+ "grad_norm": 5.033831596374512,
936
+ "learning_rate": 9.870302557013055e-05,
937
+ "loss": 20.7524,
938
+ "step": 48000
939
+ },
940
+ {
941
+ "epoch": 1.519572615749901,
942
+ "eval_loss": 5.262022972106934,
943
+ "eval_runtime": 825.2873,
944
+ "eval_samples_per_second": 8.058,
945
+ "eval_steps_per_second": 8.058,
946
+ "step": 48000
947
+ },
948
+ {
949
+ "epoch": 1.5322358527898694,
950
+ "grad_norm": 6.174431324005127,
951
+ "learning_rate": 9.785877858567524e-05,
952
+ "loss": 20.5863,
953
+ "step": 48400
954
+ },
955
+ {
956
+ "epoch": 1.5448990898298378,
957
+ "grad_norm": 7.077877521514893,
958
+ "learning_rate": 9.701453160121994e-05,
959
+ "loss": 20.5485,
960
+ "step": 48800
961
+ },
962
+ {
963
+ "epoch": 1.5575623268698062,
964
+ "grad_norm": 5.598957538604736,
965
+ "learning_rate": 9.617028461676464e-05,
966
+ "loss": 20.714,
967
+ "step": 49200
968
+ },
969
+ {
970
+ "epoch": 1.5702255639097744,
971
+ "grad_norm": 6.939237594604492,
972
+ "learning_rate": 9.532603763230934e-05,
973
+ "loss": 20.7646,
974
+ "step": 49600
975
+ },
976
+ {
977
+ "epoch": 1.5828888009497428,
978
+ "grad_norm": 5.701028823852539,
979
+ "learning_rate": 9.448179064785402e-05,
980
+ "loss": 20.756,
981
+ "step": 50000
982
+ },
983
+ {
984
+ "epoch": 1.595552037989711,
985
+ "grad_norm": 8.093730926513672,
986
+ "learning_rate": 9.363754366339874e-05,
987
+ "loss": 20.5889,
988
+ "step": 50400
989
+ },
990
+ {
991
+ "epoch": 1.6082152750296794,
992
+ "grad_norm": 5.6987738609313965,
993
+ "learning_rate": 9.279329667894343e-05,
994
+ "loss": 20.6295,
995
+ "step": 50800
996
+ },
997
+ {
998
+ "epoch": 1.6208785120696478,
999
+ "grad_norm": 6.735232830047607,
1000
+ "learning_rate": 9.194904969448813e-05,
1001
+ "loss": 20.6727,
1002
+ "step": 51200
1003
+ },
1004
+ {
1005
+ "epoch": 1.6335417491096162,
1006
+ "grad_norm": 6.842558860778809,
1007
+ "learning_rate": 9.110480271003282e-05,
1008
+ "loss": 20.6825,
1009
+ "step": 51600
1010
+ },
1011
+ {
1012
+ "epoch": 1.6462049861495844,
1013
+ "grad_norm": 7.107422351837158,
1014
+ "learning_rate": 9.026055572557753e-05,
1015
+ "loss": 20.5772,
1016
+ "step": 52000
1017
+ },
1018
+ {
1019
+ "epoch": 1.6462049861495844,
1020
+ "eval_loss": 5.254425525665283,
1021
+ "eval_runtime": 824.9539,
1022
+ "eval_samples_per_second": 8.061,
1023
+ "eval_steps_per_second": 8.061,
1024
+ "step": 52000
1025
+ },
1026
+ {
1027
+ "epoch": 1.6588682231895528,
1028
+ "grad_norm": 4.229997634887695,
1029
+ "learning_rate": 8.941630874112223e-05,
1030
+ "loss": 20.6556,
1031
+ "step": 52400
1032
+ },
1033
+ {
1034
+ "epoch": 1.671531460229521,
1035
+ "grad_norm": 7.964229583740234,
1036
+ "learning_rate": 8.857206175666691e-05,
1037
+ "loss": 20.6154,
1038
+ "step": 52800
1039
+ },
1040
+ {
1041
+ "epoch": 1.6841946972694894,
1042
+ "grad_norm": 5.777505397796631,
1043
+ "learning_rate": 8.772781477221161e-05,
1044
+ "loss": 20.6021,
1045
+ "step": 53200
1046
+ },
1047
+ {
1048
+ "epoch": 1.6968579343094579,
1049
+ "grad_norm": 5.017460346221924,
1050
+ "learning_rate": 8.688356778775632e-05,
1051
+ "loss": 20.7124,
1052
+ "step": 53600
1053
+ },
1054
+ {
1055
+ "epoch": 1.7095211713494263,
1056
+ "grad_norm": 6.260605812072754,
1057
+ "learning_rate": 8.6039320803301e-05,
1058
+ "loss": 20.5744,
1059
+ "step": 54000
1060
+ },
1061
+ {
1062
+ "epoch": 1.7221844083893947,
1063
+ "grad_norm": 6.316308975219727,
1064
+ "learning_rate": 8.51950738188457e-05,
1065
+ "loss": 20.5549,
1066
+ "step": 54400
1067
+ },
1068
+ {
1069
+ "epoch": 1.7348476454293629,
1070
+ "grad_norm": 5.088778972625732,
1071
+ "learning_rate": 8.43508268343904e-05,
1072
+ "loss": 20.6309,
1073
+ "step": 54800
1074
+ },
1075
+ {
1076
+ "epoch": 1.747510882469331,
1077
+ "grad_norm": 10.32010555267334,
1078
+ "learning_rate": 8.350657984993511e-05,
1079
+ "loss": 20.6552,
1080
+ "step": 55200
1081
+ },
1082
+ {
1083
+ "epoch": 1.7601741195092995,
1084
+ "grad_norm": 6.9819016456604,
1085
+ "learning_rate": 8.26623328654798e-05,
1086
+ "loss": 20.6702,
1087
+ "step": 55600
1088
+ },
1089
+ {
1090
+ "epoch": 1.7728373565492679,
1091
+ "grad_norm": 5.110126972198486,
1092
+ "learning_rate": 8.18180858810245e-05,
1093
+ "loss": 20.5999,
1094
+ "step": 56000
1095
+ },
1096
+ {
1097
+ "epoch": 1.7728373565492679,
1098
+ "eval_loss": 5.242661952972412,
1099
+ "eval_runtime": 824.7934,
1100
+ "eval_samples_per_second": 8.063,
1101
+ "eval_steps_per_second": 8.063,
1102
+ "step": 56000
1103
+ },
1104
+ {
1105
+ "epoch": 1.7855005935892363,
1106
+ "grad_norm": 4.659190654754639,
1107
+ "learning_rate": 8.09738388965692e-05,
1108
+ "loss": 20.6725,
1109
+ "step": 56400
1110
+ },
1111
+ {
1112
+ "epoch": 1.7981638306292047,
1113
+ "grad_norm": 7.482509136199951,
1114
+ "learning_rate": 8.012959191211389e-05,
1115
+ "loss": 20.6451,
1116
+ "step": 56800
1117
+ },
1118
+ {
1119
+ "epoch": 1.810827067669173,
1120
+ "grad_norm": 4.4703803062438965,
1121
+ "learning_rate": 7.928534492765859e-05,
1122
+ "loss": 20.6875,
1123
+ "step": 57200
1124
+ },
1125
+ {
1126
+ "epoch": 1.8234903047091413,
1127
+ "grad_norm": 5.930804252624512,
1128
+ "learning_rate": 7.844109794320329e-05,
1129
+ "loss": 20.6306,
1130
+ "step": 57600
1131
+ },
1132
+ {
1133
+ "epoch": 1.8361535417491095,
1134
+ "grad_norm": 6.960028648376465,
1135
+ "learning_rate": 7.759685095874799e-05,
1136
+ "loss": 20.5419,
1137
+ "step": 58000
1138
+ },
1139
+ {
1140
+ "epoch": 1.848816778789078,
1141
+ "grad_norm": 5.914958953857422,
1142
+ "learning_rate": 7.675260397429268e-05,
1143
+ "loss": 20.5981,
1144
+ "step": 58400
1145
+ },
1146
+ {
1147
+ "epoch": 1.8614800158290463,
1148
+ "grad_norm": 4.671518802642822,
1149
+ "learning_rate": 7.590835698983738e-05,
1150
+ "loss": 20.6456,
1151
+ "step": 58800
1152
+ },
1153
+ {
1154
+ "epoch": 1.8741432528690147,
1155
+ "grad_norm": 6.006710529327393,
1156
+ "learning_rate": 7.506411000538208e-05,
1157
+ "loss": 20.5486,
1158
+ "step": 59200
1159
+ },
1160
+ {
1161
+ "epoch": 1.8868064899089831,
1162
+ "grad_norm": 5.438353538513184,
1163
+ "learning_rate": 7.421986302092678e-05,
1164
+ "loss": 20.6253,
1165
+ "step": 59600
1166
+ },
1167
+ {
1168
+ "epoch": 1.8994697269489513,
1169
+ "grad_norm": 4.497569561004639,
1170
+ "learning_rate": 7.337561603647148e-05,
1171
+ "loss": 20.5851,
1172
+ "step": 60000
1173
+ },
1174
+ {
1175
+ "epoch": 1.8994697269489513,
1176
+ "eval_loss": 5.23079776763916,
1177
+ "eval_runtime": 824.4065,
1178
+ "eval_samples_per_second": 8.066,
1179
+ "eval_steps_per_second": 8.066,
1180
+ "step": 60000
1181
+ },
1182
+ {
1183
+ "epoch": 1.9121329639889195,
1184
+ "grad_norm": 6.200584888458252,
1185
+ "learning_rate": 7.253136905201617e-05,
1186
+ "loss": 20.4825,
1187
+ "step": 60400
1188
+ },
1189
+ {
1190
+ "epoch": 1.924796201028888,
1191
+ "grad_norm": 7.205463886260986,
1192
+ "learning_rate": 7.168712206756086e-05,
1193
+ "loss": 20.4809,
1194
+ "step": 60800
1195
+ },
1196
+ {
1197
+ "epoch": 1.9374594380688563,
1198
+ "grad_norm": 6.1208367347717285,
1199
+ "learning_rate": 7.084287508310557e-05,
1200
+ "loss": 20.604,
1201
+ "step": 61200
1202
+ },
1203
+ {
1204
+ "epoch": 1.9501226751088248,
1205
+ "grad_norm": 8.871358871459961,
1206
+ "learning_rate": 6.999862809865027e-05,
1207
+ "loss": 20.53,
1208
+ "step": 61600
1209
+ },
1210
+ {
1211
+ "epoch": 1.9627859121487932,
1212
+ "grad_norm": 5.655535697937012,
1213
+ "learning_rate": 6.915438111419497e-05,
1214
+ "loss": 20.5554,
1215
+ "step": 62000
1216
+ },
1217
+ {
1218
+ "epoch": 1.9754491491887614,
1219
+ "grad_norm": 5.66743278503418,
1220
+ "learning_rate": 6.831013412973965e-05,
1221
+ "loss": 20.5893,
1222
+ "step": 62400
1223
+ },
1224
+ {
1225
+ "epoch": 1.9881123862287298,
1226
+ "grad_norm": 5.920203685760498,
1227
+ "learning_rate": 6.746588714528435e-05,
1228
+ "loss": 20.5351,
1229
+ "step": 62800
1230
+ },
1231
+ {
1232
+ "epoch": 2.000759794222398,
1233
+ "grad_norm": 5.4713592529296875,
1234
+ "learning_rate": 6.662164016082906e-05,
1235
+ "loss": 20.4346,
1236
+ "step": 63200
1237
+ },
1238
+ {
1239
+ "epoch": 2.0134230312623664,
1240
+ "grad_norm": 6.8507866859436035,
1241
+ "learning_rate": 6.577739317637375e-05,
1242
+ "loss": 19.9368,
1243
+ "step": 63600
1244
+ },
1245
+ {
1246
+ "epoch": 2.026086268302335,
1247
+ "grad_norm": 5.996831893920898,
1248
+ "learning_rate": 6.493314619191844e-05,
1249
+ "loss": 20.1004,
1250
+ "step": 64000
1251
+ },
1252
+ {
1253
+ "epoch": 2.026086268302335,
1254
+ "eval_loss": 5.241866588592529,
1255
+ "eval_runtime": 824.5405,
1256
+ "eval_samples_per_second": 8.065,
1257
+ "eval_steps_per_second": 8.065,
1258
+ "step": 64000
1259
+ },
1260
+ {
1261
+ "epoch": 2.0387495053423033,
1262
+ "grad_norm": 8.938416481018066,
1263
+ "learning_rate": 6.408889920746314e-05,
1264
+ "loss": 19.9944,
1265
+ "step": 64400
1266
+ },
1267
+ {
1268
+ "epoch": 2.0514127423822717,
1269
+ "grad_norm": 8.623857498168945,
1270
+ "learning_rate": 6.324465222300784e-05,
1271
+ "loss": 19.9731,
1272
+ "step": 64800
1273
+ },
1274
+ {
1275
+ "epoch": 2.0640759794222396,
1276
+ "grad_norm": 4.697628498077393,
1277
+ "learning_rate": 6.240040523855254e-05,
1278
+ "loss": 20.1333,
1279
+ "step": 65200
1280
+ },
1281
+ {
1282
+ "epoch": 2.076739216462208,
1283
+ "grad_norm": 6.522459506988525,
1284
+ "learning_rate": 6.155615825409724e-05,
1285
+ "loss": 19.9999,
1286
+ "step": 65600
1287
+ },
1288
+ {
1289
+ "epoch": 2.0894024535021765,
1290
+ "grad_norm": 7.3197922706604,
1291
+ "learning_rate": 6.071191126964194e-05,
1292
+ "loss": 19.9933,
1293
+ "step": 66000
1294
+ },
1295
+ {
1296
+ "epoch": 2.102065690542145,
1297
+ "grad_norm": 5.75483512878418,
1298
+ "learning_rate": 5.986766428518663e-05,
1299
+ "loss": 20.0283,
1300
+ "step": 66400
1301
+ },
1302
+ {
1303
+ "epoch": 2.1147289275821133,
1304
+ "grad_norm": 5.822326183319092,
1305
+ "learning_rate": 5.902341730073133e-05,
1306
+ "loss": 20.0077,
1307
+ "step": 66800
1308
+ },
1309
+ {
1310
+ "epoch": 2.1273921646220817,
1311
+ "grad_norm": 6.054640769958496,
1312
+ "learning_rate": 5.8179170316276036e-05,
1313
+ "loss": 19.9779,
1314
+ "step": 67200
1315
+ },
1316
+ {
1317
+ "epoch": 2.1400554016620497,
1318
+ "grad_norm": 7.926814556121826,
1319
+ "learning_rate": 5.733492333182072e-05,
1320
+ "loss": 19.9615,
1321
+ "step": 67600
1322
+ },
1323
+ {
1324
+ "epoch": 2.152718638702018,
1325
+ "grad_norm": 7.559403419494629,
1326
+ "learning_rate": 5.6490676347365425e-05,
1327
+ "loss": 20.0425,
1328
+ "step": 68000
1329
+ },
1330
+ {
1331
+ "epoch": 2.152718638702018,
1332
+ "eval_loss": 5.239729881286621,
1333
+ "eval_runtime": 823.4127,
1334
+ "eval_samples_per_second": 8.076,
1335
+ "eval_steps_per_second": 8.076,
1336
+ "step": 68000
1337
+ },
1338
+ {
1339
+ "epoch": 2.1653818757419865,
1340
+ "grad_norm": 6.052306652069092,
1341
+ "learning_rate": 5.5646429362910123e-05,
1342
+ "loss": 19.9474,
1343
+ "step": 68400
1344
+ },
1345
+ {
1346
+ "epoch": 2.178045112781955,
1347
+ "grad_norm": 7.51389741897583,
1348
+ "learning_rate": 5.480218237845482e-05,
1349
+ "loss": 19.8334,
1350
+ "step": 68800
1351
+ },
1352
+ {
1353
+ "epoch": 2.1907083498219233,
1354
+ "grad_norm": 6.6172194480896,
1355
+ "learning_rate": 5.395793539399951e-05,
1356
+ "loss": 20.0055,
1357
+ "step": 69200
1358
+ },
1359
+ {
1360
+ "epoch": 2.2033715868618917,
1361
+ "grad_norm": 6.666018486022949,
1362
+ "learning_rate": 5.311368840954422e-05,
1363
+ "loss": 19.9767,
1364
+ "step": 69600
1365
+ },
1366
+ {
1367
+ "epoch": 2.21603482390186,
1368
+ "grad_norm": 6.328158378601074,
1369
+ "learning_rate": 5.2269441425088916e-05,
1370
+ "loss": 19.9566,
1371
+ "step": 70000
1372
+ },
1373
+ {
1374
+ "epoch": 2.228698060941828,
1375
+ "grad_norm": 5.255093574523926,
1376
+ "learning_rate": 5.142519444063361e-05,
1377
+ "loss": 19.956,
1378
+ "step": 70400
1379
+ },
1380
+ {
1381
+ "epoch": 2.2413612979817965,
1382
+ "grad_norm": 7.3458638191223145,
1383
+ "learning_rate": 5.0580947456178305e-05,
1384
+ "loss": 19.9541,
1385
+ "step": 70800
1386
+ },
1387
+ {
1388
+ "epoch": 2.254024535021765,
1389
+ "grad_norm": 7.968871116638184,
1390
+ "learning_rate": 4.9736700471723003e-05,
1391
+ "loss": 19.9859,
1392
+ "step": 71200
1393
+ },
1394
+ {
1395
+ "epoch": 2.2666877720617333,
1396
+ "grad_norm": 5.766326427459717,
1397
+ "learning_rate": 4.88924534872677e-05,
1398
+ "loss": 19.9209,
1399
+ "step": 71600
1400
+ },
1401
+ {
1402
+ "epoch": 2.2793510091017017,
1403
+ "grad_norm": 7.928537368774414,
1404
+ "learning_rate": 4.80482065028124e-05,
1405
+ "loss": 19.9624,
1406
+ "step": 72000
1407
+ },
1408
+ {
1409
+ "epoch": 2.2793510091017017,
1410
+ "eval_loss": 5.233314037322998,
1411
+ "eval_runtime": 824.278,
1412
+ "eval_samples_per_second": 8.068,
1413
+ "eval_steps_per_second": 8.068,
1414
+ "step": 72000
1415
+ },
1416
+ {
1417
+ "epoch": 2.29201424614167,
1418
+ "grad_norm": 6.768707752227783,
1419
+ "learning_rate": 4.72039595183571e-05,
1420
+ "loss": 19.9709,
1421
+ "step": 72400
1422
+ },
1423
+ {
1424
+ "epoch": 2.304677483181638,
1425
+ "grad_norm": 7.442516326904297,
1426
+ "learning_rate": 4.6359712533901796e-05,
1427
+ "loss": 20.0136,
1428
+ "step": 72800
1429
+ },
1430
+ {
1431
+ "epoch": 2.3173407202216065,
1432
+ "grad_norm": 5.536145210266113,
1433
+ "learning_rate": 4.5515465549446494e-05,
1434
+ "loss": 19.9965,
1435
+ "step": 73200
1436
+ },
1437
+ {
1438
+ "epoch": 2.330003957261575,
1439
+ "grad_norm": 6.3454694747924805,
1440
+ "learning_rate": 4.467121856499119e-05,
1441
+ "loss": 19.9978,
1442
+ "step": 73600
1443
+ },
1444
+ {
1445
+ "epoch": 2.3426671943015434,
1446
+ "grad_norm": 8.60901165008545,
1447
+ "learning_rate": 4.3826971580535884e-05,
1448
+ "loss": 19.9545,
1449
+ "step": 74000
1450
+ },
1451
+ {
1452
+ "epoch": 2.3553304313415118,
1453
+ "grad_norm": 4.566495895385742,
1454
+ "learning_rate": 4.298272459608059e-05,
1455
+ "loss": 19.9565,
1456
+ "step": 74400
1457
+ },
1458
+ {
1459
+ "epoch": 2.36799366838148,
1460
+ "grad_norm": 6.594531059265137,
1461
+ "learning_rate": 4.213847761162528e-05,
1462
+ "loss": 19.9141,
1463
+ "step": 74800
1464
+ },
1465
+ {
1466
+ "epoch": 2.380656905421448,
1467
+ "grad_norm": 7.312906742095947,
1468
+ "learning_rate": 4.1294230627169985e-05,
1469
+ "loss": 19.9924,
1470
+ "step": 75200
1471
+ },
1472
+ {
1473
+ "epoch": 2.3933201424614166,
1474
+ "grad_norm": 6.62802267074585,
1475
+ "learning_rate": 4.0449983642714676e-05,
1476
+ "loss": 19.978,
1477
+ "step": 75600
1478
+ },
1479
+ {
1480
+ "epoch": 2.405983379501385,
1481
+ "grad_norm": 5.666561603546143,
1482
+ "learning_rate": 3.9605736658259374e-05,
1483
+ "loss": 19.9937,
1484
+ "step": 76000
1485
+ },
1486
+ {
1487
+ "epoch": 2.405983379501385,
1488
+ "eval_loss": 5.228879451751709,
1489
+ "eval_runtime": 824.5564,
1490
+ "eval_samples_per_second": 8.065,
1491
+ "eval_steps_per_second": 8.065,
1492
+ "step": 76000
1493
+ },
1494
+ {
1495
+ "epoch": 2.4186466165413534,
1496
+ "grad_norm": 7.05219841003418,
1497
+ "learning_rate": 3.876148967380407e-05,
1498
+ "loss": 19.9902,
1499
+ "step": 76400
1500
+ },
1501
+ {
1502
+ "epoch": 2.431309853581322,
1503
+ "grad_norm": 7.524454593658447,
1504
+ "learning_rate": 3.791724268934877e-05,
1505
+ "loss": 20.0407,
1506
+ "step": 76800
1507
+ },
1508
+ {
1509
+ "epoch": 2.44397309062129,
1510
+ "grad_norm": 10.032590866088867,
1511
+ "learning_rate": 3.707299570489347e-05,
1512
+ "loss": 19.9683,
1513
+ "step": 77200
1514
+ },
1515
+ {
1516
+ "epoch": 2.4566363276612586,
1517
+ "grad_norm": 7.076017379760742,
1518
+ "learning_rate": 3.6228748720438167e-05,
1519
+ "loss": 19.985,
1520
+ "step": 77600
1521
+ },
1522
+ {
1523
+ "epoch": 2.4692995647012266,
1524
+ "grad_norm": 4.9333014488220215,
1525
+ "learning_rate": 3.538450173598286e-05,
1526
+ "loss": 19.9737,
1527
+ "step": 78000
1528
+ },
1529
+ {
1530
+ "epoch": 2.481962801741195,
1531
+ "grad_norm": 9.004124641418457,
1532
+ "learning_rate": 3.454025475152756e-05,
1533
+ "loss": 19.9352,
1534
+ "step": 78400
1535
+ },
1536
+ {
1537
+ "epoch": 2.4946260387811634,
1538
+ "grad_norm": 6.457568168640137,
1539
+ "learning_rate": 3.3696007767072254e-05,
1540
+ "loss": 19.959,
1541
+ "step": 78800
1542
+ },
1543
+ {
1544
+ "epoch": 2.507289275821132,
1545
+ "grad_norm": 6.369134902954102,
1546
+ "learning_rate": 3.285176078261696e-05,
1547
+ "loss": 19.914,
1548
+ "step": 79200
1549
+ },
1550
+ {
1551
+ "epoch": 2.5199525128611002,
1552
+ "grad_norm": 8.021166801452637,
1553
+ "learning_rate": 3.200751379816165e-05,
1554
+ "loss": 20.0264,
1555
+ "step": 79600
1556
+ },
1557
+ {
1558
+ "epoch": 2.532615749901068,
1559
+ "grad_norm": 6.305584907531738,
1560
+ "learning_rate": 3.116326681370635e-05,
1561
+ "loss": 19.8487,
1562
+ "step": 80000
1563
+ },
1564
+ {
1565
+ "epoch": 2.532615749901068,
1566
+ "eval_loss": 5.220189571380615,
1567
+ "eval_runtime": 824.5446,
1568
+ "eval_samples_per_second": 8.065,
1569
+ "eval_steps_per_second": 8.065,
1570
+ "step": 80000
1571
+ },
1572
+ {
1573
+ "epoch": 2.545278986941037,
1574
+ "grad_norm": 8.87743854522705,
1575
+ "learning_rate": 3.031901982925105e-05,
1576
+ "loss": 20.0282,
1577
+ "step": 80400
1578
+ },
1579
+ {
1580
+ "epoch": 2.557942223981005,
1581
+ "grad_norm": 7.1361188888549805,
1582
+ "learning_rate": 2.9474772844795745e-05,
1583
+ "loss": 19.8977,
1584
+ "step": 80800
1585
+ },
1586
+ {
1587
+ "epoch": 2.5706054610209734,
1588
+ "grad_norm": 5.905386447906494,
1589
+ "learning_rate": 2.8630525860340446e-05,
1590
+ "loss": 19.9515,
1591
+ "step": 81200
1592
+ },
1593
+ {
1594
+ "epoch": 2.583268698060942,
1595
+ "grad_norm": 4.580873966217041,
1596
+ "learning_rate": 2.778627887588514e-05,
1597
+ "loss": 19.9952,
1598
+ "step": 81600
1599
+ },
1600
+ {
1601
+ "epoch": 2.5959319351009102,
1602
+ "grad_norm": 12.230775833129883,
1603
+ "learning_rate": 2.6942031891429836e-05,
1604
+ "loss": 19.9481,
1605
+ "step": 82000
1606
+ },
1607
+ {
1608
+ "epoch": 2.6085951721408787,
1609
+ "grad_norm": 6.843789577484131,
1610
+ "learning_rate": 2.6097784906974537e-05,
1611
+ "loss": 19.9544,
1612
+ "step": 82400
1613
+ },
1614
+ {
1615
+ "epoch": 2.6212584091808466,
1616
+ "grad_norm": 6.9929280281066895,
1617
+ "learning_rate": 2.5253537922519232e-05,
1618
+ "loss": 19.9988,
1619
+ "step": 82800
1620
+ },
1621
+ {
1622
+ "epoch": 2.633921646220815,
1623
+ "grad_norm": 6.615355968475342,
1624
+ "learning_rate": 2.440929093806393e-05,
1625
+ "loss": 19.9229,
1626
+ "step": 83200
1627
+ },
1628
+ {
1629
+ "epoch": 2.6465848832607834,
1630
+ "grad_norm": 5.5568528175354,
1631
+ "learning_rate": 2.3565043953608628e-05,
1632
+ "loss": 19.9999,
1633
+ "step": 83600
1634
+ },
1635
+ {
1636
+ "epoch": 2.659248120300752,
1637
+ "grad_norm": 5.973674297332764,
1638
+ "learning_rate": 2.2720796969153326e-05,
1639
+ "loss": 19.9165,
1640
+ "step": 84000
1641
+ },
1642
+ {
1643
+ "epoch": 2.659248120300752,
1644
+ "eval_loss": 5.213447093963623,
1645
+ "eval_runtime": 824.012,
1646
+ "eval_samples_per_second": 8.07,
1647
+ "eval_steps_per_second": 8.07,
1648
+ "step": 84000
1649
+ },
1650
+ {
1651
+ "epoch": 2.6719113573407203,
1652
+ "grad_norm": 6.193792819976807,
1653
+ "learning_rate": 2.1876549984698024e-05,
1654
+ "loss": 19.9343,
1655
+ "step": 84400
1656
+ },
1657
+ {
1658
+ "epoch": 2.6845745943806887,
1659
+ "grad_norm": 9.161760330200195,
1660
+ "learning_rate": 2.1032303000242722e-05,
1661
+ "loss": 19.8688,
1662
+ "step": 84800
1663
+ },
1664
+ {
1665
+ "epoch": 2.697237831420657,
1666
+ "grad_norm": 7.71662712097168,
1667
+ "learning_rate": 2.0188056015787417e-05,
1668
+ "loss": 19.862,
1669
+ "step": 85200
1670
+ },
1671
+ {
1672
+ "epoch": 2.709901068460625,
1673
+ "grad_norm": 7.0517191886901855,
1674
+ "learning_rate": 1.9343809031332115e-05,
1675
+ "loss": 19.9579,
1676
+ "step": 85600
1677
+ },
1678
+ {
1679
+ "epoch": 2.7225643055005935,
1680
+ "grad_norm": 6.024531841278076,
1681
+ "learning_rate": 1.8499562046876813e-05,
1682
+ "loss": 19.9337,
1683
+ "step": 86000
1684
+ },
1685
+ {
1686
+ "epoch": 2.735227542540562,
1687
+ "grad_norm": 6.53899621963501,
1688
+ "learning_rate": 1.765531506242151e-05,
1689
+ "loss": 19.8203,
1690
+ "step": 86400
1691
+ },
1692
+ {
1693
+ "epoch": 2.7478907795805303,
1694
+ "grad_norm": 5.616986274719238,
1695
+ "learning_rate": 1.681106807796621e-05,
1696
+ "loss": 19.9971,
1697
+ "step": 86800
1698
+ },
1699
+ {
1700
+ "epoch": 2.7605540166204987,
1701
+ "grad_norm": 9.12677001953125,
1702
+ "learning_rate": 1.5966821093510908e-05,
1703
+ "loss": 19.9302,
1704
+ "step": 87200
1705
+ },
1706
+ {
1707
+ "epoch": 2.773217253660467,
1708
+ "grad_norm": 5.700610160827637,
1709
+ "learning_rate": 1.5122574109055604e-05,
1710
+ "loss": 19.8132,
1711
+ "step": 87600
1712
+ },
1713
+ {
1714
+ "epoch": 2.7858804907004355,
1715
+ "grad_norm": 14.847786903381348,
1716
+ "learning_rate": 1.4278327124600302e-05,
1717
+ "loss": 19.941,
1718
+ "step": 88000
1719
+ },
1720
+ {
1721
+ "epoch": 2.7858804907004355,
1722
+ "eval_loss": 5.208680152893066,
1723
+ "eval_runtime": 823.5502,
1724
+ "eval_samples_per_second": 8.075,
1725
+ "eval_steps_per_second": 8.075,
1726
+ "step": 88000
1727
+ },
1728
+ {
1729
+ "epoch": 2.7985437277404035,
1730
+ "grad_norm": 7.600852966308594,
1731
+ "learning_rate": 1.3434080140145e-05,
1732
+ "loss": 19.9477,
1733
+ "step": 88400
1734
+ },
1735
+ {
1736
+ "epoch": 2.811206964780372,
1737
+ "grad_norm": 4.853618621826172,
1738
+ "learning_rate": 1.2589833155689699e-05,
1739
+ "loss": 19.8732,
1740
+ "step": 88800
1741
+ },
1742
+ {
1743
+ "epoch": 2.8238702018203403,
1744
+ "grad_norm": 6.983166694641113,
1745
+ "learning_rate": 1.1745586171234395e-05,
1746
+ "loss": 19.891,
1747
+ "step": 89200
1748
+ },
1749
+ {
1750
+ "epoch": 2.8365334388603087,
1751
+ "grad_norm": 9.106974601745605,
1752
+ "learning_rate": 1.0901339186779093e-05,
1753
+ "loss": 19.8636,
1754
+ "step": 89600
1755
+ },
1756
+ {
1757
+ "epoch": 2.849196675900277,
1758
+ "grad_norm": 8.579305648803711,
1759
+ "learning_rate": 1.0057092202323791e-05,
1760
+ "loss": 19.9161,
1761
+ "step": 90000
1762
+ },
1763
+ {
1764
+ "epoch": 2.861859912940245,
1765
+ "grad_norm": 7.962963581085205,
1766
+ "learning_rate": 9.212845217868488e-06,
1767
+ "loss": 19.8788,
1768
+ "step": 90400
1769
+ },
1770
+ {
1771
+ "epoch": 2.874523149980214,
1772
+ "grad_norm": 7.710476875305176,
1773
+ "learning_rate": 8.368598233413186e-06,
1774
+ "loss": 19.8828,
1775
+ "step": 90800
1776
+ },
1777
+ {
1778
+ "epoch": 2.887186387020182,
1779
+ "grad_norm": 8.663653373718262,
1780
+ "learning_rate": 7.524351248957882e-06,
1781
+ "loss": 19.8885,
1782
+ "step": 91200
1783
+ },
1784
+ {
1785
+ "epoch": 2.8998496240601503,
1786
+ "grad_norm": 5.92315673828125,
1787
+ "learning_rate": 6.68010426450258e-06,
1788
+ "loss": 19.8681,
1789
+ "step": 91600
1790
+ },
1791
+ {
1792
+ "epoch": 2.9125128611001188,
1793
+ "grad_norm": 5.890766143798828,
1794
+ "learning_rate": 5.8358572800472775e-06,
1795
+ "loss": 19.8796,
1796
+ "step": 92000
1797
+ },
1798
+ {
1799
+ "epoch": 2.9125128611001188,
1800
+ "eval_loss": 5.202943325042725,
1801
+ "eval_runtime": 823.4591,
1802
+ "eval_samples_per_second": 8.076,
1803
+ "eval_steps_per_second": 8.076,
1804
+ "step": 92000
1805
+ },
1806
+ {
1807
+ "epoch": 2.925176098140087,
1808
+ "grad_norm": 5.6968770027160645,
1809
+ "learning_rate": 4.991610295591976e-06,
1810
+ "loss": 19.9215,
1811
+ "step": 92400
1812
+ },
1813
+ {
1814
+ "epoch": 2.9378393351800556,
1815
+ "grad_norm": 8.343860626220703,
1816
+ "learning_rate": 4.147363311136674e-06,
1817
+ "loss": 19.8819,
1818
+ "step": 92800
1819
+ },
1820
+ {
1821
+ "epoch": 2.9505025722200235,
1822
+ "grad_norm": 7.180873870849609,
1823
+ "learning_rate": 3.3031163266813706e-06,
1824
+ "loss": 19.9235,
1825
+ "step": 93200
1826
+ },
1827
+ {
1828
+ "epoch": 2.963165809259992,
1829
+ "grad_norm": 6.29449987411499,
1830
+ "learning_rate": 2.4588693422260683e-06,
1831
+ "loss": 19.8343,
1832
+ "step": 93600
1833
+ },
1834
+ {
1835
+ "epoch": 2.9758290462999604,
1836
+ "grad_norm": 9.834261894226074,
1837
+ "learning_rate": 1.6146223577707657e-06,
1838
+ "loss": 19.9012,
1839
+ "step": 94000
1840
+ },
1841
+ {
1842
+ "epoch": 2.988492283339929,
1843
+ "grad_norm": 7.410830497741699,
1844
+ "learning_rate": 7.703753733154634e-07,
1845
+ "loss": 19.8262,
1846
+ "step": 94400
1847
+ }
1848
+ ],
1849
+ "logging_steps": 400,
1850
+ "max_steps": 94764,
1851
+ "num_input_tokens_seen": 0,
1852
+ "num_train_epochs": 3,
1853
+ "save_steps": 4000,
1854
+ "stateful_callbacks": {
1855
+ "TrainerControl": {
1856
+ "args": {
1857
+ "should_epoch_stop": false,
1858
+ "should_evaluate": false,
1859
+ "should_log": false,
1860
+ "should_save": true,
1861
+ "should_training_stop": true
1862
+ },
1863
+ "attributes": {}
1864
+ }
1865
+ },
1866
+ "total_flos": 3.015885255232636e+17,
1867
+ "train_batch_size": 1,
1868
+ "trial_name": null,
1869
+ "trial_params": null
1870
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4cb8cb2fd9f920dba59738e24993944faad085506fdfbdc90709b216af76b15
3
+ size 5713