agentlans commited on
Commit
717f1d4
·
verified ·
1 Parent(s): 26f08b3

Upload 13 files

Browse files
README.md CHANGED
@@ -1,3 +1,113 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: mit
4
+ library_name: transformers
5
+ tags:
6
+ - generated_from_trainer
7
+ - text-classification
8
+ - fill-mask
9
+ - embeddings
10
+ metrics:
11
+ - accuracy
12
+ model-index:
13
+ - name: deberta-v3-base-zyda-2
14
+ results:
15
+ - task:
16
+ type: text-classification
17
+ name: Text Classification
18
+ dataset:
19
+ name: Zyphra/Zyda-2 (subset)
20
+ type: Zyphra/Zyda-2
21
+ metrics:
22
+ - type: accuracy
23
+ value: 0.6191
24
+ name: Accuracy
25
+ base_model: microsoft/deberta-v3-base
26
+ ---
27
+
28
+ # DeBERTa-v3-base-Zyda-2
29
+
30
+ ## Model Description
31
+
32
+ This model is a fine-tuned version of [microsoft/deberta-v3-base](https://huggingface.co/microsoft/deberta-v3-base) on a subset of the [Zyphra/Zyda-2](https://huggingface.co/datasets/Zyphra/Zyda-2) dataset. It was trained using the Masked Language Modeling (MLM) objective to enhance its understanding of the English language.
33
+
34
+ ## Performance
35
+
36
+ The model achieves the following results on the evaluation set:
37
+ - Loss: 2.1833
38
+ - Accuracy: 0.6191
39
+
40
+ ## Intended Uses & Limitations
41
+
42
+ This model is designed to be used and finetuned for the following tasks:
43
+ - Text embedding
44
+ - Text classification
45
+ - Fill-in-the-blank tasks
46
+
47
+ **Limitations:**
48
+ - English language only
49
+ - May be inaccurate for specialized jargon, dialects, slang, code, and LaTeX
50
+
51
+ ## Training Data
52
+
53
+ The model was trained on the first 300 000 rows of the [Zyphra/Zyda-2](https://huggingface.co/datasets/Zyphra/Zyda-2) dataset.
54
+ 5% of that data was used for validation.
55
+
56
+ ## Training Procedure
57
+
58
+ ### Hyperparameters
59
+
60
+ The following hyperparameters were used during training:
61
+ - Learning rate: 5e-05
62
+ - Train batch size: 8
63
+ - Eval batch size: 8
64
+ - Seed: 42
65
+ - Optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
66
+ - Learning rate scheduler: Linear
67
+ - Number of epochs: 1.0
68
+
69
+ ### Framework versions
70
+
71
+ - Transformers: 4.46.3
72
+ - Pytorch: 2.5.1+cu124
73
+ - Datasets: 3.1.0
74
+ - Tokenizers: 0.20.3
75
+
76
+ ## Usage Examples
77
+
78
+ ### Masked Language Modeling
79
+
80
+ ```python
81
+ from transformers import pipeline
82
+
83
+ unmasker = pipeline('fill-mask', model='agentlans/deberta-v3-base-zyda-2')
84
+ result = unmasker("[MASK] is the capital of France.")
85
+ print(result)
86
+ ```
87
+
88
+ ### Text Embedding
89
+
90
+ ```python
91
+ from transformers import AutoTokenizer, AutoModel
92
+ import torch
93
+
94
+ model_name = "agentlans/deberta-v3-base-zyda-2"
95
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
96
+ model = AutoModel.from_pretrained(model_name)
97
+
98
+ text = "Example sentence for embedding."
99
+ inputs = tokenizer(text, return_tensors='pt')
100
+ with torch.no_grad():
101
+ outputs = model(**inputs)
102
+
103
+ embeddings = outputs.last_hidden_state.mean(dim=1)
104
+ print(embeddings)
105
+ ```
106
+
107
+ ## Ethical Considerations and Bias
108
+
109
+ As this model is trained on a subset of the Zyda-2 dataset, it may inherit biases present in that data. Users should be aware of potential biases and evaluate the model's output critically, especially for sensitive applications.
110
+
111
+ ## Additional Information
112
+
113
+ For more details about the base model, please refer to [microsoft/deberta-v3-base](https://huggingface.co/microsoft/deberta-v3-base).
added_tokens.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "[MASK]": 128000
3
+ }
all_results.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 1.0,
3
+ "eval_accuracy": 0.6191083101642154,
4
+ "eval_loss": 2.1832997798919678,
5
+ "eval_runtime": 619.8106,
6
+ "eval_samples": 36612,
7
+ "eval_samples_per_second": 59.07,
8
+ "eval_steps_per_second": 7.385,
9
+ "perplexity": 8.875545336961899,
10
+ "total_flos": 1.8427441878551347e+17,
11
+ "train_loss": 1.5726176189089465,
12
+ "train_runtime": 27622.4465,
13
+ "train_samples": 699309,
14
+ "train_samples_per_second": 25.317,
15
+ "train_steps_per_second": 6.329
16
+ }
config.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/deberta-v3-base",
3
+ "architectures": [
4
+ "DebertaV2ForMaskedLM"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "hidden_act": "gelu",
8
+ "hidden_dropout_prob": 0.1,
9
+ "hidden_size": 768,
10
+ "initializer_range": 0.02,
11
+ "intermediate_size": 3072,
12
+ "layer_norm_eps": 1e-07,
13
+ "max_position_embeddings": 512,
14
+ "max_relative_positions": -1,
15
+ "model_type": "deberta-v2",
16
+ "norm_rel_ebd": "layer_norm",
17
+ "num_attention_heads": 12,
18
+ "num_hidden_layers": 12,
19
+ "pad_token_id": 0,
20
+ "pooler_dropout": 0,
21
+ "pooler_hidden_act": "gelu",
22
+ "pooler_hidden_size": 768,
23
+ "pos_att_type": [
24
+ "p2c",
25
+ "c2p"
26
+ ],
27
+ "position_biased_input": false,
28
+ "position_buckets": 256,
29
+ "relative_attention": true,
30
+ "share_att_key": true,
31
+ "torch_dtype": "float32",
32
+ "transformers_version": "4.46.3",
33
+ "type_vocab_size": 0,
34
+ "vocab_size": 128100
35
+ }
eval_results.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 1.0,
3
+ "eval_accuracy": 0.6191083101642154,
4
+ "eval_loss": 2.1832997798919678,
5
+ "eval_runtime": 619.8106,
6
+ "eval_samples": 36612,
7
+ "eval_samples_per_second": 59.07,
8
+ "eval_steps_per_second": 7.385,
9
+ "perplexity": 8.875545336961899
10
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c6027fb50e1e57a250247d1bd078ba866085b473710d84a431d2a6996756fd6
3
+ size 738231856
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[CLS]",
3
+ "cls_token": "[CLS]",
4
+ "eos_token": "[SEP]",
5
+ "mask_token": "[MASK]",
6
+ "pad_token": "[PAD]",
7
+ "sep_token": "[SEP]",
8
+ "unk_token": {
9
+ "content": "[UNK]",
10
+ "lstrip": false,
11
+ "normalized": true,
12
+ "rstrip": false,
13
+ "single_word": false
14
+ }
15
+ }
spm.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c679fbf93643d19aab7ee10c0b99e460bdbc02fedf34b92b05af343b4af586fd
3
+ size 2464616
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "[CLS]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "[SEP]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "[UNK]",
29
+ "lstrip": false,
30
+ "normalized": true,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "128000": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "bos_token": "[CLS]",
45
+ "clean_up_tokenization_spaces": false,
46
+ "cls_token": "[CLS]",
47
+ "do_lower_case": false,
48
+ "eos_token": "[SEP]",
49
+ "mask_token": "[MASK]",
50
+ "model_max_length": 1000000000000000019884624838656,
51
+ "pad_token": "[PAD]",
52
+ "sep_token": "[SEP]",
53
+ "sp_model_kwargs": {},
54
+ "split_by_punct": false,
55
+ "tokenizer_class": "DebertaV2Tokenizer",
56
+ "unk_token": "[UNK]",
57
+ "vocab_type": "spm"
58
+ }
train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 1.0,
3
+ "total_flos": 1.8427441878551347e+17,
4
+ "train_loss": 1.5726176189089465,
5
+ "train_runtime": 27622.4465,
6
+ "train_samples": 699309,
7
+ "train_samples_per_second": 25.317,
8
+ "train_steps_per_second": 6.329
9
+ }
trainer_state.json ADDED
@@ -0,0 +1,2485 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 1.0,
5
+ "eval_steps": 500,
6
+ "global_step": 174828,
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.0028599537831468643,
13
+ "grad_norm": 8.294376373291016,
14
+ "learning_rate": 4.985700231084266e-05,
15
+ "loss": 6.665,
16
+ "step": 500
17
+ },
18
+ {
19
+ "epoch": 0.005719907566293729,
20
+ "grad_norm": 8.308354377746582,
21
+ "learning_rate": 4.971400462168532e-05,
22
+ "loss": 5.1044,
23
+ "step": 1000
24
+ },
25
+ {
26
+ "epoch": 0.008579861349440594,
27
+ "grad_norm": 7.017335891723633,
28
+ "learning_rate": 4.9571006932527974e-05,
29
+ "loss": 4.6249,
30
+ "step": 1500
31
+ },
32
+ {
33
+ "epoch": 0.011439815132587457,
34
+ "grad_norm": 7.528384685516357,
35
+ "learning_rate": 4.942800924337063e-05,
36
+ "loss": 4.3456,
37
+ "step": 2000
38
+ },
39
+ {
40
+ "epoch": 0.014299768915734323,
41
+ "grad_norm": 7.852795600891113,
42
+ "learning_rate": 4.928501155421328e-05,
43
+ "loss": 4.0772,
44
+ "step": 2500
45
+ },
46
+ {
47
+ "epoch": 0.017159722698881188,
48
+ "grad_norm": 7.606760025024414,
49
+ "learning_rate": 4.914201386505594e-05,
50
+ "loss": 3.974,
51
+ "step": 3000
52
+ },
53
+ {
54
+ "epoch": 0.02001967648202805,
55
+ "grad_norm": 7.45611572265625,
56
+ "learning_rate": 4.8999016175898596e-05,
57
+ "loss": 3.8115,
58
+ "step": 3500
59
+ },
60
+ {
61
+ "epoch": 0.022879630265174915,
62
+ "grad_norm": 7.1126861572265625,
63
+ "learning_rate": 4.885601848674126e-05,
64
+ "loss": 3.7529,
65
+ "step": 4000
66
+ },
67
+ {
68
+ "epoch": 0.02573958404832178,
69
+ "grad_norm": 7.052072525024414,
70
+ "learning_rate": 4.871302079758392e-05,
71
+ "loss": 3.654,
72
+ "step": 4500
73
+ },
74
+ {
75
+ "epoch": 0.028599537831468645,
76
+ "grad_norm": 7.367290019989014,
77
+ "learning_rate": 4.8570023108426574e-05,
78
+ "loss": 3.5671,
79
+ "step": 5000
80
+ },
81
+ {
82
+ "epoch": 0.03145949161461551,
83
+ "grad_norm": 8.534124374389648,
84
+ "learning_rate": 4.842702541926923e-05,
85
+ "loss": 3.5032,
86
+ "step": 5500
87
+ },
88
+ {
89
+ "epoch": 0.034319445397762376,
90
+ "grad_norm": 7.498807907104492,
91
+ "learning_rate": 4.828402773011189e-05,
92
+ "loss": 3.5244,
93
+ "step": 6000
94
+ },
95
+ {
96
+ "epoch": 0.037179399180909234,
97
+ "grad_norm": 6.6923298835754395,
98
+ "learning_rate": 4.814103004095454e-05,
99
+ "loss": 3.4814,
100
+ "step": 6500
101
+ },
102
+ {
103
+ "epoch": 0.0400393529640561,
104
+ "grad_norm": 6.853496551513672,
105
+ "learning_rate": 4.7998032351797196e-05,
106
+ "loss": 3.3781,
107
+ "step": 7000
108
+ },
109
+ {
110
+ "epoch": 0.042899306747202964,
111
+ "grad_norm": 7.179901599884033,
112
+ "learning_rate": 4.785503466263985e-05,
113
+ "loss": 3.3461,
114
+ "step": 7500
115
+ },
116
+ {
117
+ "epoch": 0.04575926053034983,
118
+ "grad_norm": 7.566349506378174,
119
+ "learning_rate": 4.771203697348251e-05,
120
+ "loss": 3.3024,
121
+ "step": 8000
122
+ },
123
+ {
124
+ "epoch": 0.048619214313496695,
125
+ "grad_norm": 7.144839763641357,
126
+ "learning_rate": 4.756903928432517e-05,
127
+ "loss": 3.2582,
128
+ "step": 8500
129
+ },
130
+ {
131
+ "epoch": 0.05147916809664356,
132
+ "grad_norm": 6.929514408111572,
133
+ "learning_rate": 4.7426041595167824e-05,
134
+ "loss": 3.2371,
135
+ "step": 9000
136
+ },
137
+ {
138
+ "epoch": 0.054339121879790425,
139
+ "grad_norm": 6.699374198913574,
140
+ "learning_rate": 4.728304390601048e-05,
141
+ "loss": 3.201,
142
+ "step": 9500
143
+ },
144
+ {
145
+ "epoch": 0.05719907566293729,
146
+ "grad_norm": 5.757383346557617,
147
+ "learning_rate": 4.714004621685314e-05,
148
+ "loss": 3.1877,
149
+ "step": 10000
150
+ },
151
+ {
152
+ "epoch": 0.06005902944608415,
153
+ "grad_norm": 7.66983699798584,
154
+ "learning_rate": 4.6997048527695796e-05,
155
+ "loss": 3.1514,
156
+ "step": 10500
157
+ },
158
+ {
159
+ "epoch": 0.06291898322923102,
160
+ "grad_norm": 7.166614532470703,
161
+ "learning_rate": 4.6854050838538446e-05,
162
+ "loss": 3.1203,
163
+ "step": 11000
164
+ },
165
+ {
166
+ "epoch": 0.06577893701237789,
167
+ "grad_norm": 8.80114459991455,
168
+ "learning_rate": 4.671105314938111e-05,
169
+ "loss": 3.1312,
170
+ "step": 11500
171
+ },
172
+ {
173
+ "epoch": 0.06863889079552475,
174
+ "grad_norm": 29.41587257385254,
175
+ "learning_rate": 4.656805546022377e-05,
176
+ "loss": 3.1019,
177
+ "step": 12000
178
+ },
179
+ {
180
+ "epoch": 0.0714988445786716,
181
+ "grad_norm": 6.1705145835876465,
182
+ "learning_rate": 4.6425057771066424e-05,
183
+ "loss": 3.0878,
184
+ "step": 12500
185
+ },
186
+ {
187
+ "epoch": 0.07435879836181847,
188
+ "grad_norm": 7.218475341796875,
189
+ "learning_rate": 4.628206008190908e-05,
190
+ "loss": 3.0758,
191
+ "step": 13000
192
+ },
193
+ {
194
+ "epoch": 0.07721875214496533,
195
+ "grad_norm": 6.435647964477539,
196
+ "learning_rate": 4.613906239275174e-05,
197
+ "loss": 3.0396,
198
+ "step": 13500
199
+ },
200
+ {
201
+ "epoch": 0.0800787059281122,
202
+ "grad_norm": 7.471750736236572,
203
+ "learning_rate": 4.5996064703594396e-05,
204
+ "loss": 3.0454,
205
+ "step": 14000
206
+ },
207
+ {
208
+ "epoch": 0.08293865971125906,
209
+ "grad_norm": 6.561801910400391,
210
+ "learning_rate": 4.585306701443705e-05,
211
+ "loss": 3.0095,
212
+ "step": 14500
213
+ },
214
+ {
215
+ "epoch": 0.08579861349440593,
216
+ "grad_norm": 7.1273369789123535,
217
+ "learning_rate": 4.57100693252797e-05,
218
+ "loss": 3.0249,
219
+ "step": 15000
220
+ },
221
+ {
222
+ "epoch": 0.0886585672775528,
223
+ "grad_norm": 6.540430545806885,
224
+ "learning_rate": 4.556707163612236e-05,
225
+ "loss": 3.0156,
226
+ "step": 15500
227
+ },
228
+ {
229
+ "epoch": 0.09151852106069966,
230
+ "grad_norm": 6.394286632537842,
231
+ "learning_rate": 4.542407394696502e-05,
232
+ "loss": 2.9634,
233
+ "step": 16000
234
+ },
235
+ {
236
+ "epoch": 0.09437847484384652,
237
+ "grad_norm": 7.856606960296631,
238
+ "learning_rate": 4.5281076257807674e-05,
239
+ "loss": 2.9866,
240
+ "step": 16500
241
+ },
242
+ {
243
+ "epoch": 0.09723842862699339,
244
+ "grad_norm": 7.8352861404418945,
245
+ "learning_rate": 4.513807856865033e-05,
246
+ "loss": 2.9864,
247
+ "step": 17000
248
+ },
249
+ {
250
+ "epoch": 0.10009838241014025,
251
+ "grad_norm": 6.253101348876953,
252
+ "learning_rate": 4.499508087949299e-05,
253
+ "loss": 2.9592,
254
+ "step": 17500
255
+ },
256
+ {
257
+ "epoch": 0.10295833619328712,
258
+ "grad_norm": 6.485994815826416,
259
+ "learning_rate": 4.4852083190335646e-05,
260
+ "loss": 2.9405,
261
+ "step": 18000
262
+ },
263
+ {
264
+ "epoch": 0.10581828997643399,
265
+ "grad_norm": 6.409724712371826,
266
+ "learning_rate": 4.47090855011783e-05,
267
+ "loss": 2.9567,
268
+ "step": 18500
269
+ },
270
+ {
271
+ "epoch": 0.10867824375958085,
272
+ "grad_norm": 7.388598918914795,
273
+ "learning_rate": 4.456608781202096e-05,
274
+ "loss": 2.9123,
275
+ "step": 19000
276
+ },
277
+ {
278
+ "epoch": 0.11153819754272772,
279
+ "grad_norm": 7.503371715545654,
280
+ "learning_rate": 4.442309012286362e-05,
281
+ "loss": 2.922,
282
+ "step": 19500
283
+ },
284
+ {
285
+ "epoch": 0.11439815132587458,
286
+ "grad_norm": 6.702953338623047,
287
+ "learning_rate": 4.4280092433706274e-05,
288
+ "loss": 2.9321,
289
+ "step": 20000
290
+ },
291
+ {
292
+ "epoch": 0.11725810510902143,
293
+ "grad_norm": 7.328106880187988,
294
+ "learning_rate": 4.413709474454893e-05,
295
+ "loss": 2.8965,
296
+ "step": 20500
297
+ },
298
+ {
299
+ "epoch": 0.1201180588921683,
300
+ "grad_norm": 6.787193775177002,
301
+ "learning_rate": 4.399409705539159e-05,
302
+ "loss": 2.9204,
303
+ "step": 21000
304
+ },
305
+ {
306
+ "epoch": 0.12297801267531516,
307
+ "grad_norm": 5.832542896270752,
308
+ "learning_rate": 4.3851099366234246e-05,
309
+ "loss": 2.8724,
310
+ "step": 21500
311
+ },
312
+ {
313
+ "epoch": 0.12583796645846204,
314
+ "grad_norm": 6.784033298492432,
315
+ "learning_rate": 4.37081016770769e-05,
316
+ "loss": 2.889,
317
+ "step": 22000
318
+ },
319
+ {
320
+ "epoch": 0.1286979202416089,
321
+ "grad_norm": 7.457705497741699,
322
+ "learning_rate": 4.356510398791956e-05,
323
+ "loss": 2.8845,
324
+ "step": 22500
325
+ },
326
+ {
327
+ "epoch": 0.13155787402475577,
328
+ "grad_norm": 7.377457141876221,
329
+ "learning_rate": 4.342210629876222e-05,
330
+ "loss": 2.876,
331
+ "step": 23000
332
+ },
333
+ {
334
+ "epoch": 0.13441782780790262,
335
+ "grad_norm": 6.810230731964111,
336
+ "learning_rate": 4.327910860960487e-05,
337
+ "loss": 2.8881,
338
+ "step": 23500
339
+ },
340
+ {
341
+ "epoch": 0.1372777815910495,
342
+ "grad_norm": 6.137091636657715,
343
+ "learning_rate": 4.3136110920447525e-05,
344
+ "loss": 2.8599,
345
+ "step": 24000
346
+ },
347
+ {
348
+ "epoch": 0.14013773537419635,
349
+ "grad_norm": 27.535808563232422,
350
+ "learning_rate": 4.299311323129018e-05,
351
+ "loss": 2.8432,
352
+ "step": 24500
353
+ },
354
+ {
355
+ "epoch": 0.1429976891573432,
356
+ "grad_norm": 6.044827461242676,
357
+ "learning_rate": 4.285011554213284e-05,
358
+ "loss": 2.8644,
359
+ "step": 25000
360
+ },
361
+ {
362
+ "epoch": 0.14585764294049008,
363
+ "grad_norm": 6.300295829772949,
364
+ "learning_rate": 4.2707117852975496e-05,
365
+ "loss": 2.8269,
366
+ "step": 25500
367
+ },
368
+ {
369
+ "epoch": 0.14871759672363694,
370
+ "grad_norm": 5.811293125152588,
371
+ "learning_rate": 4.256412016381815e-05,
372
+ "loss": 2.8308,
373
+ "step": 26000
374
+ },
375
+ {
376
+ "epoch": 0.15157755050678381,
377
+ "grad_norm": 6.52765417098999,
378
+ "learning_rate": 4.242112247466081e-05,
379
+ "loss": 2.8309,
380
+ "step": 26500
381
+ },
382
+ {
383
+ "epoch": 0.15443750428993067,
384
+ "grad_norm": 6.731512546539307,
385
+ "learning_rate": 4.227812478550347e-05,
386
+ "loss": 2.8066,
387
+ "step": 27000
388
+ },
389
+ {
390
+ "epoch": 0.15729745807307755,
391
+ "grad_norm": 6.837157249450684,
392
+ "learning_rate": 4.2135127096346125e-05,
393
+ "loss": 2.8282,
394
+ "step": 27500
395
+ },
396
+ {
397
+ "epoch": 0.1601574118562244,
398
+ "grad_norm": 5.657121181488037,
399
+ "learning_rate": 4.199212940718878e-05,
400
+ "loss": 2.7904,
401
+ "step": 28000
402
+ },
403
+ {
404
+ "epoch": 0.16301736563937128,
405
+ "grad_norm": 8.501928329467773,
406
+ "learning_rate": 4.184913171803144e-05,
407
+ "loss": 2.8224,
408
+ "step": 28500
409
+ },
410
+ {
411
+ "epoch": 0.16587731942251813,
412
+ "grad_norm": 6.447242736816406,
413
+ "learning_rate": 4.1706134028874096e-05,
414
+ "loss": 2.7731,
415
+ "step": 29000
416
+ },
417
+ {
418
+ "epoch": 0.168737273205665,
419
+ "grad_norm": 6.049993991851807,
420
+ "learning_rate": 4.156313633971675e-05,
421
+ "loss": 2.7726,
422
+ "step": 29500
423
+ },
424
+ {
425
+ "epoch": 0.17159722698881186,
426
+ "grad_norm": 5.747082710266113,
427
+ "learning_rate": 4.142013865055941e-05,
428
+ "loss": 2.799,
429
+ "step": 30000
430
+ },
431
+ {
432
+ "epoch": 0.17445718077195874,
433
+ "grad_norm": 6.7925615310668945,
434
+ "learning_rate": 4.127714096140207e-05,
435
+ "loss": 2.7704,
436
+ "step": 30500
437
+ },
438
+ {
439
+ "epoch": 0.1773171345551056,
440
+ "grad_norm": 7.164943218231201,
441
+ "learning_rate": 4.1134143272244725e-05,
442
+ "loss": 2.7611,
443
+ "step": 31000
444
+ },
445
+ {
446
+ "epoch": 0.18017708833825247,
447
+ "grad_norm": 6.813632011413574,
448
+ "learning_rate": 4.099114558308738e-05,
449
+ "loss": 2.7637,
450
+ "step": 31500
451
+ },
452
+ {
453
+ "epoch": 0.18303704212139932,
454
+ "grad_norm": 5.981168270111084,
455
+ "learning_rate": 4.084814789393003e-05,
456
+ "loss": 2.7495,
457
+ "step": 32000
458
+ },
459
+ {
460
+ "epoch": 0.18589699590454617,
461
+ "grad_norm": 6.125492095947266,
462
+ "learning_rate": 4.070515020477269e-05,
463
+ "loss": 2.7592,
464
+ "step": 32500
465
+ },
466
+ {
467
+ "epoch": 0.18875694968769305,
468
+ "grad_norm": 44.21103286743164,
469
+ "learning_rate": 4.0562152515615347e-05,
470
+ "loss": 2.7711,
471
+ "step": 33000
472
+ },
473
+ {
474
+ "epoch": 0.1916169034708399,
475
+ "grad_norm": 5.714451789855957,
476
+ "learning_rate": 4.0419154826458004e-05,
477
+ "loss": 2.7456,
478
+ "step": 33500
479
+ },
480
+ {
481
+ "epoch": 0.19447685725398678,
482
+ "grad_norm": 5.732424736022949,
483
+ "learning_rate": 4.027615713730066e-05,
484
+ "loss": 2.7412,
485
+ "step": 34000
486
+ },
487
+ {
488
+ "epoch": 0.19733681103713363,
489
+ "grad_norm": 7.989277362823486,
490
+ "learning_rate": 4.013315944814332e-05,
491
+ "loss": 2.7429,
492
+ "step": 34500
493
+ },
494
+ {
495
+ "epoch": 0.2001967648202805,
496
+ "grad_norm": 6.200708389282227,
497
+ "learning_rate": 3.9990161758985975e-05,
498
+ "loss": 2.7497,
499
+ "step": 35000
500
+ },
501
+ {
502
+ "epoch": 0.20305671860342736,
503
+ "grad_norm": 6.867748260498047,
504
+ "learning_rate": 3.984716406982863e-05,
505
+ "loss": 2.7387,
506
+ "step": 35500
507
+ },
508
+ {
509
+ "epoch": 0.20591667238657424,
510
+ "grad_norm": 5.795921325683594,
511
+ "learning_rate": 3.970416638067129e-05,
512
+ "loss": 2.7262,
513
+ "step": 36000
514
+ },
515
+ {
516
+ "epoch": 0.2087766261697211,
517
+ "grad_norm": 6.110116958618164,
518
+ "learning_rate": 3.9561168691513947e-05,
519
+ "loss": 2.7416,
520
+ "step": 36500
521
+ },
522
+ {
523
+ "epoch": 0.21163657995286797,
524
+ "grad_norm": 6.253924369812012,
525
+ "learning_rate": 3.9418171002356604e-05,
526
+ "loss": 2.7215,
527
+ "step": 37000
528
+ },
529
+ {
530
+ "epoch": 0.21449653373601482,
531
+ "grad_norm": 6.117007732391357,
532
+ "learning_rate": 3.927517331319926e-05,
533
+ "loss": 2.7231,
534
+ "step": 37500
535
+ },
536
+ {
537
+ "epoch": 0.2173564875191617,
538
+ "grad_norm": 8.227131843566895,
539
+ "learning_rate": 3.913217562404192e-05,
540
+ "loss": 2.71,
541
+ "step": 38000
542
+ },
543
+ {
544
+ "epoch": 0.22021644130230855,
545
+ "grad_norm": 6.146326541900635,
546
+ "learning_rate": 3.8989177934884575e-05,
547
+ "loss": 2.7076,
548
+ "step": 38500
549
+ },
550
+ {
551
+ "epoch": 0.22307639508545543,
552
+ "grad_norm": 6.7277398109436035,
553
+ "learning_rate": 3.884618024572723e-05,
554
+ "loss": 2.7226,
555
+ "step": 39000
556
+ },
557
+ {
558
+ "epoch": 0.22593634886860228,
559
+ "grad_norm": 6.300662994384766,
560
+ "learning_rate": 3.870318255656989e-05,
561
+ "loss": 2.7025,
562
+ "step": 39500
563
+ },
564
+ {
565
+ "epoch": 0.22879630265174916,
566
+ "grad_norm": 5.755123138427734,
567
+ "learning_rate": 3.8560184867412547e-05,
568
+ "loss": 2.7025,
569
+ "step": 40000
570
+ },
571
+ {
572
+ "epoch": 0.231656256434896,
573
+ "grad_norm": 6.393768310546875,
574
+ "learning_rate": 3.8417187178255204e-05,
575
+ "loss": 2.7113,
576
+ "step": 40500
577
+ },
578
+ {
579
+ "epoch": 0.23451621021804286,
580
+ "grad_norm": 5.855433464050293,
581
+ "learning_rate": 3.8274189489097854e-05,
582
+ "loss": 2.721,
583
+ "step": 41000
584
+ },
585
+ {
586
+ "epoch": 0.23737616400118974,
587
+ "grad_norm": 4.719547271728516,
588
+ "learning_rate": 3.813119179994051e-05,
589
+ "loss": 2.6774,
590
+ "step": 41500
591
+ },
592
+ {
593
+ "epoch": 0.2402361177843366,
594
+ "grad_norm": 5.75437068939209,
595
+ "learning_rate": 3.798819411078317e-05,
596
+ "loss": 2.6922,
597
+ "step": 42000
598
+ },
599
+ {
600
+ "epoch": 0.24309607156748347,
601
+ "grad_norm": 6.258277416229248,
602
+ "learning_rate": 3.7845196421625825e-05,
603
+ "loss": 2.701,
604
+ "step": 42500
605
+ },
606
+ {
607
+ "epoch": 0.24595602535063033,
608
+ "grad_norm": 5.8440165519714355,
609
+ "learning_rate": 3.770219873246848e-05,
610
+ "loss": 2.697,
611
+ "step": 43000
612
+ },
613
+ {
614
+ "epoch": 0.2488159791337772,
615
+ "grad_norm": 5.4940009117126465,
616
+ "learning_rate": 3.755920104331114e-05,
617
+ "loss": 2.6826,
618
+ "step": 43500
619
+ },
620
+ {
621
+ "epoch": 0.2516759329169241,
622
+ "grad_norm": 8.00302791595459,
623
+ "learning_rate": 3.7416203354153804e-05,
624
+ "loss": 2.6782,
625
+ "step": 44000
626
+ },
627
+ {
628
+ "epoch": 0.25453588670007093,
629
+ "grad_norm": 6.31597375869751,
630
+ "learning_rate": 3.727320566499646e-05,
631
+ "loss": 2.7113,
632
+ "step": 44500
633
+ },
634
+ {
635
+ "epoch": 0.2573958404832178,
636
+ "grad_norm": 6.734432697296143,
637
+ "learning_rate": 3.713020797583911e-05,
638
+ "loss": 2.6883,
639
+ "step": 45000
640
+ },
641
+ {
642
+ "epoch": 0.26025579426636464,
643
+ "grad_norm": 8.607872009277344,
644
+ "learning_rate": 3.698721028668177e-05,
645
+ "loss": 2.675,
646
+ "step": 45500
647
+ },
648
+ {
649
+ "epoch": 0.26311574804951154,
650
+ "grad_norm": 6.785426139831543,
651
+ "learning_rate": 3.6844212597524425e-05,
652
+ "loss": 2.6662,
653
+ "step": 46000
654
+ },
655
+ {
656
+ "epoch": 0.2659757018326584,
657
+ "grad_norm": 5.7255072593688965,
658
+ "learning_rate": 3.670121490836708e-05,
659
+ "loss": 2.6566,
660
+ "step": 46500
661
+ },
662
+ {
663
+ "epoch": 0.26883565561580525,
664
+ "grad_norm": 5.778408527374268,
665
+ "learning_rate": 3.655821721920974e-05,
666
+ "loss": 2.6869,
667
+ "step": 47000
668
+ },
669
+ {
670
+ "epoch": 0.2716956093989521,
671
+ "grad_norm": 7.3644490242004395,
672
+ "learning_rate": 3.64152195300524e-05,
673
+ "loss": 2.6548,
674
+ "step": 47500
675
+ },
676
+ {
677
+ "epoch": 0.274555563182099,
678
+ "grad_norm": 9.922218322753906,
679
+ "learning_rate": 3.6272221840895054e-05,
680
+ "loss": 2.6548,
681
+ "step": 48000
682
+ },
683
+ {
684
+ "epoch": 0.27741551696524586,
685
+ "grad_norm": 6.6563944816589355,
686
+ "learning_rate": 3.612922415173771e-05,
687
+ "loss": 2.6466,
688
+ "step": 48500
689
+ },
690
+ {
691
+ "epoch": 0.2802754707483927,
692
+ "grad_norm": 5.308610439300537,
693
+ "learning_rate": 3.598622646258037e-05,
694
+ "loss": 2.6744,
695
+ "step": 49000
696
+ },
697
+ {
698
+ "epoch": 0.28313542453153956,
699
+ "grad_norm": 6.213603973388672,
700
+ "learning_rate": 3.584322877342302e-05,
701
+ "loss": 2.6484,
702
+ "step": 49500
703
+ },
704
+ {
705
+ "epoch": 0.2859953783146864,
706
+ "grad_norm": 5.715392589569092,
707
+ "learning_rate": 3.5700231084265676e-05,
708
+ "loss": 2.6573,
709
+ "step": 50000
710
+ },
711
+ {
712
+ "epoch": 0.2888553320978333,
713
+ "grad_norm": 6.067576885223389,
714
+ "learning_rate": 3.555723339510833e-05,
715
+ "loss": 2.6487,
716
+ "step": 50500
717
+ },
718
+ {
719
+ "epoch": 0.29171528588098017,
720
+ "grad_norm": 6.300750255584717,
721
+ "learning_rate": 3.541423570595099e-05,
722
+ "loss": 2.6445,
723
+ "step": 51000
724
+ },
725
+ {
726
+ "epoch": 0.294575239664127,
727
+ "grad_norm": 6.036895275115967,
728
+ "learning_rate": 3.5271238016793654e-05,
729
+ "loss": 2.6756,
730
+ "step": 51500
731
+ },
732
+ {
733
+ "epoch": 0.29743519344727387,
734
+ "grad_norm": 5.856159687042236,
735
+ "learning_rate": 3.512824032763631e-05,
736
+ "loss": 2.6415,
737
+ "step": 52000
738
+ },
739
+ {
740
+ "epoch": 0.3002951472304208,
741
+ "grad_norm": 12.173583984375,
742
+ "learning_rate": 3.498524263847897e-05,
743
+ "loss": 2.6386,
744
+ "step": 52500
745
+ },
746
+ {
747
+ "epoch": 0.30315510101356763,
748
+ "grad_norm": 5.493927478790283,
749
+ "learning_rate": 3.4842244949321625e-05,
750
+ "loss": 2.6515,
751
+ "step": 53000
752
+ },
753
+ {
754
+ "epoch": 0.3060150547967145,
755
+ "grad_norm": 5.786694526672363,
756
+ "learning_rate": 3.4699247260164276e-05,
757
+ "loss": 2.6449,
758
+ "step": 53500
759
+ },
760
+ {
761
+ "epoch": 0.30887500857986133,
762
+ "grad_norm": 5.755667686462402,
763
+ "learning_rate": 3.455624957100693e-05,
764
+ "loss": 2.6357,
765
+ "step": 54000
766
+ },
767
+ {
768
+ "epoch": 0.31173496236300824,
769
+ "grad_norm": 5.9297027587890625,
770
+ "learning_rate": 3.441325188184959e-05,
771
+ "loss": 2.6493,
772
+ "step": 54500
773
+ },
774
+ {
775
+ "epoch": 0.3145949161461551,
776
+ "grad_norm": 6.182466983795166,
777
+ "learning_rate": 3.427025419269225e-05,
778
+ "loss": 2.6298,
779
+ "step": 55000
780
+ },
781
+ {
782
+ "epoch": 0.31745486992930194,
783
+ "grad_norm": 6.565801620483398,
784
+ "learning_rate": 3.4127256503534904e-05,
785
+ "loss": 2.6611,
786
+ "step": 55500
787
+ },
788
+ {
789
+ "epoch": 0.3203148237124488,
790
+ "grad_norm": 5.94129753112793,
791
+ "learning_rate": 3.398425881437756e-05,
792
+ "loss": 2.6201,
793
+ "step": 56000
794
+ },
795
+ {
796
+ "epoch": 0.32317477749559564,
797
+ "grad_norm": 6.72519063949585,
798
+ "learning_rate": 3.384126112522022e-05,
799
+ "loss": 2.5961,
800
+ "step": 56500
801
+ },
802
+ {
803
+ "epoch": 0.32603473127874255,
804
+ "grad_norm": 6.440931797027588,
805
+ "learning_rate": 3.3698263436062876e-05,
806
+ "loss": 2.6322,
807
+ "step": 57000
808
+ },
809
+ {
810
+ "epoch": 0.3288946850618894,
811
+ "grad_norm": 6.059328079223633,
812
+ "learning_rate": 3.355526574690553e-05,
813
+ "loss": 2.615,
814
+ "step": 57500
815
+ },
816
+ {
817
+ "epoch": 0.33175463884503625,
818
+ "grad_norm": 6.007944107055664,
819
+ "learning_rate": 3.341226805774818e-05,
820
+ "loss": 2.5992,
821
+ "step": 58000
822
+ },
823
+ {
824
+ "epoch": 0.3346145926281831,
825
+ "grad_norm": 6.9386982917785645,
826
+ "learning_rate": 3.326927036859084e-05,
827
+ "loss": 2.6317,
828
+ "step": 58500
829
+ },
830
+ {
831
+ "epoch": 0.33747454641133,
832
+ "grad_norm": 5.493308067321777,
833
+ "learning_rate": 3.3126272679433504e-05,
834
+ "loss": 2.5975,
835
+ "step": 59000
836
+ },
837
+ {
838
+ "epoch": 0.34033450019447686,
839
+ "grad_norm": 7.026157855987549,
840
+ "learning_rate": 3.298327499027616e-05,
841
+ "loss": 2.6139,
842
+ "step": 59500
843
+ },
844
+ {
845
+ "epoch": 0.3431944539776237,
846
+ "grad_norm": 5.790646553039551,
847
+ "learning_rate": 3.284027730111882e-05,
848
+ "loss": 2.5916,
849
+ "step": 60000
850
+ },
851
+ {
852
+ "epoch": 0.34605440776077057,
853
+ "grad_norm": 5.980741024017334,
854
+ "learning_rate": 3.2697279611961476e-05,
855
+ "loss": 2.5811,
856
+ "step": 60500
857
+ },
858
+ {
859
+ "epoch": 0.3489143615439175,
860
+ "grad_norm": 6.555883407592773,
861
+ "learning_rate": 3.255428192280413e-05,
862
+ "loss": 2.5909,
863
+ "step": 61000
864
+ },
865
+ {
866
+ "epoch": 0.3517743153270643,
867
+ "grad_norm": 5.8480706214904785,
868
+ "learning_rate": 3.241128423364679e-05,
869
+ "loss": 2.6127,
870
+ "step": 61500
871
+ },
872
+ {
873
+ "epoch": 0.3546342691102112,
874
+ "grad_norm": 6.341095924377441,
875
+ "learning_rate": 3.226828654448944e-05,
876
+ "loss": 2.5959,
877
+ "step": 62000
878
+ },
879
+ {
880
+ "epoch": 0.357494222893358,
881
+ "grad_norm": 5.832342147827148,
882
+ "learning_rate": 3.21252888553321e-05,
883
+ "loss": 2.5946,
884
+ "step": 62500
885
+ },
886
+ {
887
+ "epoch": 0.36035417667650493,
888
+ "grad_norm": 6.495291709899902,
889
+ "learning_rate": 3.1982291166174755e-05,
890
+ "loss": 2.6122,
891
+ "step": 63000
892
+ },
893
+ {
894
+ "epoch": 0.3632141304596518,
895
+ "grad_norm": 6.527446746826172,
896
+ "learning_rate": 3.183929347701741e-05,
897
+ "loss": 2.573,
898
+ "step": 63500
899
+ },
900
+ {
901
+ "epoch": 0.36607408424279864,
902
+ "grad_norm": 6.4324951171875,
903
+ "learning_rate": 3.169629578786007e-05,
904
+ "loss": 2.6119,
905
+ "step": 64000
906
+ },
907
+ {
908
+ "epoch": 0.3689340380259455,
909
+ "grad_norm": 7.166018009185791,
910
+ "learning_rate": 3.1553298098702726e-05,
911
+ "loss": 2.6124,
912
+ "step": 64500
913
+ },
914
+ {
915
+ "epoch": 0.37179399180909234,
916
+ "grad_norm": 6.462119102478027,
917
+ "learning_rate": 3.141030040954538e-05,
918
+ "loss": 2.5552,
919
+ "step": 65000
920
+ },
921
+ {
922
+ "epoch": 0.37465394559223925,
923
+ "grad_norm": 6.0564703941345215,
924
+ "learning_rate": 3.126730272038804e-05,
925
+ "loss": 2.5672,
926
+ "step": 65500
927
+ },
928
+ {
929
+ "epoch": 0.3775138993753861,
930
+ "grad_norm": 5.307662487030029,
931
+ "learning_rate": 3.11243050312307e-05,
932
+ "loss": 2.5611,
933
+ "step": 66000
934
+ },
935
+ {
936
+ "epoch": 0.38037385315853295,
937
+ "grad_norm": 5.18694543838501,
938
+ "learning_rate": 3.0981307342073355e-05,
939
+ "loss": 2.5691,
940
+ "step": 66500
941
+ },
942
+ {
943
+ "epoch": 0.3832338069416798,
944
+ "grad_norm": 5.568657398223877,
945
+ "learning_rate": 3.083830965291601e-05,
946
+ "loss": 2.575,
947
+ "step": 67000
948
+ },
949
+ {
950
+ "epoch": 0.3860937607248267,
951
+ "grad_norm": 10.616528511047363,
952
+ "learning_rate": 3.069531196375867e-05,
953
+ "loss": 2.5886,
954
+ "step": 67500
955
+ },
956
+ {
957
+ "epoch": 0.38895371450797356,
958
+ "grad_norm": 6.7568206787109375,
959
+ "learning_rate": 3.0552314274601326e-05,
960
+ "loss": 2.5822,
961
+ "step": 68000
962
+ },
963
+ {
964
+ "epoch": 0.3918136682911204,
965
+ "grad_norm": 6.087740421295166,
966
+ "learning_rate": 3.040931658544398e-05,
967
+ "loss": 2.5472,
968
+ "step": 68500
969
+ },
970
+ {
971
+ "epoch": 0.39467362207426726,
972
+ "grad_norm": 6.702504634857178,
973
+ "learning_rate": 3.0266318896286637e-05,
974
+ "loss": 2.5897,
975
+ "step": 69000
976
+ },
977
+ {
978
+ "epoch": 0.39753357585741417,
979
+ "grad_norm": 6.2178053855896,
980
+ "learning_rate": 3.0123321207129297e-05,
981
+ "loss": 2.5698,
982
+ "step": 69500
983
+ },
984
+ {
985
+ "epoch": 0.400393529640561,
986
+ "grad_norm": 6.559543609619141,
987
+ "learning_rate": 2.9980323517971955e-05,
988
+ "loss": 2.5725,
989
+ "step": 70000
990
+ },
991
+ {
992
+ "epoch": 0.40325348342370787,
993
+ "grad_norm": 5.918066501617432,
994
+ "learning_rate": 2.9837325828814605e-05,
995
+ "loss": 2.5847,
996
+ "step": 70500
997
+ },
998
+ {
999
+ "epoch": 0.4061134372068547,
1000
+ "grad_norm": 5.602575778961182,
1001
+ "learning_rate": 2.9694328139657262e-05,
1002
+ "loss": 2.583,
1003
+ "step": 71000
1004
+ },
1005
+ {
1006
+ "epoch": 0.40897339099000163,
1007
+ "grad_norm": 5.304308891296387,
1008
+ "learning_rate": 2.955133045049992e-05,
1009
+ "loss": 2.5632,
1010
+ "step": 71500
1011
+ },
1012
+ {
1013
+ "epoch": 0.4118333447731485,
1014
+ "grad_norm": 5.540666103363037,
1015
+ "learning_rate": 2.9408332761342576e-05,
1016
+ "loss": 2.5756,
1017
+ "step": 72000
1018
+ },
1019
+ {
1020
+ "epoch": 0.41469329855629533,
1021
+ "grad_norm": 6.2000861167907715,
1022
+ "learning_rate": 2.9265335072185234e-05,
1023
+ "loss": 2.5357,
1024
+ "step": 72500
1025
+ },
1026
+ {
1027
+ "epoch": 0.4175532523394422,
1028
+ "grad_norm": 5.1564459800720215,
1029
+ "learning_rate": 2.912233738302789e-05,
1030
+ "loss": 2.5516,
1031
+ "step": 73000
1032
+ },
1033
+ {
1034
+ "epoch": 0.42041320612258903,
1035
+ "grad_norm": 6.008329391479492,
1036
+ "learning_rate": 2.897933969387055e-05,
1037
+ "loss": 2.5738,
1038
+ "step": 73500
1039
+ },
1040
+ {
1041
+ "epoch": 0.42327315990573594,
1042
+ "grad_norm": 6.52450704574585,
1043
+ "learning_rate": 2.883634200471321e-05,
1044
+ "loss": 2.578,
1045
+ "step": 74000
1046
+ },
1047
+ {
1048
+ "epoch": 0.4261331136888828,
1049
+ "grad_norm": 5.788220405578613,
1050
+ "learning_rate": 2.8693344315555866e-05,
1051
+ "loss": 2.5578,
1052
+ "step": 74500
1053
+ },
1054
+ {
1055
+ "epoch": 0.42899306747202964,
1056
+ "grad_norm": 5.5810112953186035,
1057
+ "learning_rate": 2.8550346626398516e-05,
1058
+ "loss": 2.5643,
1059
+ "step": 75000
1060
+ },
1061
+ {
1062
+ "epoch": 0.4318530212551765,
1063
+ "grad_norm": 5.334226608276367,
1064
+ "learning_rate": 2.8407348937241173e-05,
1065
+ "loss": 2.5376,
1066
+ "step": 75500
1067
+ },
1068
+ {
1069
+ "epoch": 0.4347129750383234,
1070
+ "grad_norm": 5.804100513458252,
1071
+ "learning_rate": 2.826435124808383e-05,
1072
+ "loss": 2.541,
1073
+ "step": 76000
1074
+ },
1075
+ {
1076
+ "epoch": 0.43757292882147025,
1077
+ "grad_norm": 5.555410385131836,
1078
+ "learning_rate": 2.8121353558926487e-05,
1079
+ "loss": 2.5364,
1080
+ "step": 76500
1081
+ },
1082
+ {
1083
+ "epoch": 0.4404328826046171,
1084
+ "grad_norm": 5.454427719116211,
1085
+ "learning_rate": 2.7978355869769148e-05,
1086
+ "loss": 2.5602,
1087
+ "step": 77000
1088
+ },
1089
+ {
1090
+ "epoch": 0.44329283638776396,
1091
+ "grad_norm": 16.772747039794922,
1092
+ "learning_rate": 2.7835358180611805e-05,
1093
+ "loss": 2.5674,
1094
+ "step": 77500
1095
+ },
1096
+ {
1097
+ "epoch": 0.44615279017091086,
1098
+ "grad_norm": 8.047761917114258,
1099
+ "learning_rate": 2.7692360491454462e-05,
1100
+ "loss": 2.5334,
1101
+ "step": 78000
1102
+ },
1103
+ {
1104
+ "epoch": 0.4490127439540577,
1105
+ "grad_norm": 6.612277507781982,
1106
+ "learning_rate": 2.754936280229712e-05,
1107
+ "loss": 2.5525,
1108
+ "step": 78500
1109
+ },
1110
+ {
1111
+ "epoch": 0.45187269773720457,
1112
+ "grad_norm": 6.439370632171631,
1113
+ "learning_rate": 2.740636511313977e-05,
1114
+ "loss": 2.5349,
1115
+ "step": 79000
1116
+ },
1117
+ {
1118
+ "epoch": 0.4547326515203514,
1119
+ "grad_norm": 6.890873908996582,
1120
+ "learning_rate": 2.7263367423982427e-05,
1121
+ "loss": 2.5145,
1122
+ "step": 79500
1123
+ },
1124
+ {
1125
+ "epoch": 0.4575926053034983,
1126
+ "grad_norm": 5.4768500328063965,
1127
+ "learning_rate": 2.7120369734825084e-05,
1128
+ "loss": 2.5277,
1129
+ "step": 80000
1130
+ },
1131
+ {
1132
+ "epoch": 0.4604525590866452,
1133
+ "grad_norm": 5.825018405914307,
1134
+ "learning_rate": 2.697737204566774e-05,
1135
+ "loss": 2.5505,
1136
+ "step": 80500
1137
+ },
1138
+ {
1139
+ "epoch": 0.463312512869792,
1140
+ "grad_norm": 6.583479881286621,
1141
+ "learning_rate": 2.68343743565104e-05,
1142
+ "loss": 2.5562,
1143
+ "step": 81000
1144
+ },
1145
+ {
1146
+ "epoch": 0.4661724666529389,
1147
+ "grad_norm": 6.420114040374756,
1148
+ "learning_rate": 2.669137666735306e-05,
1149
+ "loss": 2.5094,
1150
+ "step": 81500
1151
+ },
1152
+ {
1153
+ "epoch": 0.46903242043608573,
1154
+ "grad_norm": 6.8168110847473145,
1155
+ "learning_rate": 2.6548378978195716e-05,
1156
+ "loss": 2.5347,
1157
+ "step": 82000
1158
+ },
1159
+ {
1160
+ "epoch": 0.47189237421923264,
1161
+ "grad_norm": 6.224096298217773,
1162
+ "learning_rate": 2.6405381289038373e-05,
1163
+ "loss": 2.5154,
1164
+ "step": 82500
1165
+ },
1166
+ {
1167
+ "epoch": 0.4747523280023795,
1168
+ "grad_norm": 6.240240097045898,
1169
+ "learning_rate": 2.626238359988103e-05,
1170
+ "loss": 2.535,
1171
+ "step": 83000
1172
+ },
1173
+ {
1174
+ "epoch": 0.47761228178552634,
1175
+ "grad_norm": 6.053983211517334,
1176
+ "learning_rate": 2.611938591072368e-05,
1177
+ "loss": 2.5275,
1178
+ "step": 83500
1179
+ },
1180
+ {
1181
+ "epoch": 0.4804722355686732,
1182
+ "grad_norm": 5.546879768371582,
1183
+ "learning_rate": 2.5976388221566338e-05,
1184
+ "loss": 2.5329,
1185
+ "step": 84000
1186
+ },
1187
+ {
1188
+ "epoch": 0.4833321893518201,
1189
+ "grad_norm": 6.190423011779785,
1190
+ "learning_rate": 2.5833390532408995e-05,
1191
+ "loss": 2.5174,
1192
+ "step": 84500
1193
+ },
1194
+ {
1195
+ "epoch": 0.48619214313496695,
1196
+ "grad_norm": 5.437402248382568,
1197
+ "learning_rate": 2.5690392843251655e-05,
1198
+ "loss": 2.49,
1199
+ "step": 85000
1200
+ },
1201
+ {
1202
+ "epoch": 0.4890520969181138,
1203
+ "grad_norm": 6.8163557052612305,
1204
+ "learning_rate": 2.5547395154094312e-05,
1205
+ "loss": 2.524,
1206
+ "step": 85500
1207
+ },
1208
+ {
1209
+ "epoch": 0.49191205070126065,
1210
+ "grad_norm": 6.754604816436768,
1211
+ "learning_rate": 2.540439746493697e-05,
1212
+ "loss": 2.5041,
1213
+ "step": 86000
1214
+ },
1215
+ {
1216
+ "epoch": 0.49477200448440756,
1217
+ "grad_norm": 5.496472358703613,
1218
+ "learning_rate": 2.5261399775779627e-05,
1219
+ "loss": 2.5277,
1220
+ "step": 86500
1221
+ },
1222
+ {
1223
+ "epoch": 0.4976319582675544,
1224
+ "grad_norm": 5.616280555725098,
1225
+ "learning_rate": 2.5118402086622284e-05,
1226
+ "loss": 2.5061,
1227
+ "step": 87000
1228
+ },
1229
+ {
1230
+ "epoch": 0.5004919120507013,
1231
+ "grad_norm": 6.141283988952637,
1232
+ "learning_rate": 2.4975404397464938e-05,
1233
+ "loss": 2.5214,
1234
+ "step": 87500
1235
+ },
1236
+ {
1237
+ "epoch": 0.5033518658338482,
1238
+ "grad_norm": 6.124631404876709,
1239
+ "learning_rate": 2.4832406708307595e-05,
1240
+ "loss": 2.4854,
1241
+ "step": 88000
1242
+ },
1243
+ {
1244
+ "epoch": 0.506211819616995,
1245
+ "grad_norm": 6.740499496459961,
1246
+ "learning_rate": 2.4689409019150252e-05,
1247
+ "loss": 2.5054,
1248
+ "step": 88500
1249
+ },
1250
+ {
1251
+ "epoch": 0.5090717734001419,
1252
+ "grad_norm": 6.040327548980713,
1253
+ "learning_rate": 2.454641132999291e-05,
1254
+ "loss": 2.5042,
1255
+ "step": 89000
1256
+ },
1257
+ {
1258
+ "epoch": 0.5119317271832887,
1259
+ "grad_norm": 5.564330577850342,
1260
+ "learning_rate": 2.4403413640835566e-05,
1261
+ "loss": 2.5021,
1262
+ "step": 89500
1263
+ },
1264
+ {
1265
+ "epoch": 0.5147916809664356,
1266
+ "grad_norm": 6.915059566497803,
1267
+ "learning_rate": 2.4260415951678223e-05,
1268
+ "loss": 2.5227,
1269
+ "step": 90000
1270
+ },
1271
+ {
1272
+ "epoch": 0.5176516347495824,
1273
+ "grad_norm": 6.181910991668701,
1274
+ "learning_rate": 2.411741826252088e-05,
1275
+ "loss": 2.5098,
1276
+ "step": 90500
1277
+ },
1278
+ {
1279
+ "epoch": 0.5205115885327293,
1280
+ "grad_norm": 5.829164505004883,
1281
+ "learning_rate": 2.3974420573363534e-05,
1282
+ "loss": 2.5133,
1283
+ "step": 91000
1284
+ },
1285
+ {
1286
+ "epoch": 0.5233715423158761,
1287
+ "grad_norm": 14.621573448181152,
1288
+ "learning_rate": 2.383142288420619e-05,
1289
+ "loss": 2.503,
1290
+ "step": 91500
1291
+ },
1292
+ {
1293
+ "epoch": 0.5262314960990231,
1294
+ "grad_norm": 6.3930511474609375,
1295
+ "learning_rate": 2.368842519504885e-05,
1296
+ "loss": 2.5124,
1297
+ "step": 92000
1298
+ },
1299
+ {
1300
+ "epoch": 0.5290914498821699,
1301
+ "grad_norm": 5.840575695037842,
1302
+ "learning_rate": 2.3545427505891506e-05,
1303
+ "loss": 2.5177,
1304
+ "step": 92500
1305
+ },
1306
+ {
1307
+ "epoch": 0.5319514036653168,
1308
+ "grad_norm": 6.612518787384033,
1309
+ "learning_rate": 2.3402429816734163e-05,
1310
+ "loss": 2.4881,
1311
+ "step": 93000
1312
+ },
1313
+ {
1314
+ "epoch": 0.5348113574484636,
1315
+ "grad_norm": 6.505732536315918,
1316
+ "learning_rate": 2.325943212757682e-05,
1317
+ "loss": 2.4872,
1318
+ "step": 93500
1319
+ },
1320
+ {
1321
+ "epoch": 0.5376713112316105,
1322
+ "grad_norm": 7.19988489151001,
1323
+ "learning_rate": 2.3116434438419477e-05,
1324
+ "loss": 2.4958,
1325
+ "step": 94000
1326
+ },
1327
+ {
1328
+ "epoch": 0.5405312650147573,
1329
+ "grad_norm": 5.988187789916992,
1330
+ "learning_rate": 2.2973436749262134e-05,
1331
+ "loss": 2.5094,
1332
+ "step": 94500
1333
+ },
1334
+ {
1335
+ "epoch": 0.5433912187979042,
1336
+ "grad_norm": 5.709506511688232,
1337
+ "learning_rate": 2.2830439060104788e-05,
1338
+ "loss": 2.4882,
1339
+ "step": 95000
1340
+ },
1341
+ {
1342
+ "epoch": 0.546251172581051,
1343
+ "grad_norm": 5.567132949829102,
1344
+ "learning_rate": 2.2687441370947445e-05,
1345
+ "loss": 2.4909,
1346
+ "step": 95500
1347
+ },
1348
+ {
1349
+ "epoch": 0.549111126364198,
1350
+ "grad_norm": 11.825920104980469,
1351
+ "learning_rate": 2.2544443681790102e-05,
1352
+ "loss": 2.4944,
1353
+ "step": 96000
1354
+ },
1355
+ {
1356
+ "epoch": 0.5519710801473449,
1357
+ "grad_norm": 5.969587802886963,
1358
+ "learning_rate": 2.240144599263276e-05,
1359
+ "loss": 2.4912,
1360
+ "step": 96500
1361
+ },
1362
+ {
1363
+ "epoch": 0.5548310339304917,
1364
+ "grad_norm": 6.31153678894043,
1365
+ "learning_rate": 2.225844830347542e-05,
1366
+ "loss": 2.4901,
1367
+ "step": 97000
1368
+ },
1369
+ {
1370
+ "epoch": 0.5576909877136386,
1371
+ "grad_norm": 7.130558013916016,
1372
+ "learning_rate": 2.2115450614318074e-05,
1373
+ "loss": 2.4768,
1374
+ "step": 97500
1375
+ },
1376
+ {
1377
+ "epoch": 0.5605509414967854,
1378
+ "grad_norm": 5.947187900543213,
1379
+ "learning_rate": 2.197245292516073e-05,
1380
+ "loss": 2.4971,
1381
+ "step": 98000
1382
+ },
1383
+ {
1384
+ "epoch": 0.5634108952799323,
1385
+ "grad_norm": 6.830575466156006,
1386
+ "learning_rate": 2.1829455236003388e-05,
1387
+ "loss": 2.4901,
1388
+ "step": 98500
1389
+ },
1390
+ {
1391
+ "epoch": 0.5662708490630791,
1392
+ "grad_norm": 5.682921409606934,
1393
+ "learning_rate": 2.1686457546846045e-05,
1394
+ "loss": 2.4946,
1395
+ "step": 99000
1396
+ },
1397
+ {
1398
+ "epoch": 0.569130802846226,
1399
+ "grad_norm": 5.174154758453369,
1400
+ "learning_rate": 2.15434598576887e-05,
1401
+ "loss": 2.4813,
1402
+ "step": 99500
1403
+ },
1404
+ {
1405
+ "epoch": 0.5719907566293728,
1406
+ "grad_norm": 5.400365352630615,
1407
+ "learning_rate": 2.1400462168531356e-05,
1408
+ "loss": 2.4498,
1409
+ "step": 100000
1410
+ },
1411
+ {
1412
+ "epoch": 0.5748507104125198,
1413
+ "grad_norm": 5.433869361877441,
1414
+ "learning_rate": 2.1257464479374013e-05,
1415
+ "loss": 2.523,
1416
+ "step": 100500
1417
+ },
1418
+ {
1419
+ "epoch": 0.5777106641956666,
1420
+ "grad_norm": 6.321377754211426,
1421
+ "learning_rate": 2.1114466790216674e-05,
1422
+ "loss": 2.4731,
1423
+ "step": 101000
1424
+ },
1425
+ {
1426
+ "epoch": 0.5805706179788135,
1427
+ "grad_norm": 6.643988609313965,
1428
+ "learning_rate": 2.0971469101059327e-05,
1429
+ "loss": 2.4837,
1430
+ "step": 101500
1431
+ },
1432
+ {
1433
+ "epoch": 0.5834305717619603,
1434
+ "grad_norm": 6.258885383605957,
1435
+ "learning_rate": 2.0828471411901985e-05,
1436
+ "loss": 2.4735,
1437
+ "step": 102000
1438
+ },
1439
+ {
1440
+ "epoch": 0.5862905255451072,
1441
+ "grad_norm": 5.747689723968506,
1442
+ "learning_rate": 2.068547372274464e-05,
1443
+ "loss": 2.4742,
1444
+ "step": 102500
1445
+ },
1446
+ {
1447
+ "epoch": 0.589150479328254,
1448
+ "grad_norm": 6.016144275665283,
1449
+ "learning_rate": 2.05424760335873e-05,
1450
+ "loss": 2.4633,
1451
+ "step": 103000
1452
+ },
1453
+ {
1454
+ "epoch": 0.5920104331114009,
1455
+ "grad_norm": 5.250337600708008,
1456
+ "learning_rate": 2.0399478344429953e-05,
1457
+ "loss": 2.467,
1458
+ "step": 103500
1459
+ },
1460
+ {
1461
+ "epoch": 0.5948703868945477,
1462
+ "grad_norm": 5.667397975921631,
1463
+ "learning_rate": 2.025648065527261e-05,
1464
+ "loss": 2.4709,
1465
+ "step": 104000
1466
+ },
1467
+ {
1468
+ "epoch": 0.5977303406776946,
1469
+ "grad_norm": 6.414941310882568,
1470
+ "learning_rate": 2.0113482966115267e-05,
1471
+ "loss": 2.4805,
1472
+ "step": 104500
1473
+ },
1474
+ {
1475
+ "epoch": 0.6005902944608416,
1476
+ "grad_norm": 6.118762493133545,
1477
+ "learning_rate": 1.9970485276957927e-05,
1478
+ "loss": 2.46,
1479
+ "step": 105000
1480
+ },
1481
+ {
1482
+ "epoch": 0.6034502482439884,
1483
+ "grad_norm": 7.456865310668945,
1484
+ "learning_rate": 1.9827487587800584e-05,
1485
+ "loss": 2.4863,
1486
+ "step": 105500
1487
+ },
1488
+ {
1489
+ "epoch": 0.6063102020271353,
1490
+ "grad_norm": 7.2666096687316895,
1491
+ "learning_rate": 1.9684489898643238e-05,
1492
+ "loss": 2.431,
1493
+ "step": 106000
1494
+ },
1495
+ {
1496
+ "epoch": 0.6091701558102821,
1497
+ "grad_norm": 6.135725975036621,
1498
+ "learning_rate": 1.9541492209485895e-05,
1499
+ "loss": 2.4833,
1500
+ "step": 106500
1501
+ },
1502
+ {
1503
+ "epoch": 0.612030109593429,
1504
+ "grad_norm": 6.930655002593994,
1505
+ "learning_rate": 1.9398494520328553e-05,
1506
+ "loss": 2.4791,
1507
+ "step": 107000
1508
+ },
1509
+ {
1510
+ "epoch": 0.6148900633765758,
1511
+ "grad_norm": 5.848691940307617,
1512
+ "learning_rate": 1.925549683117121e-05,
1513
+ "loss": 2.4744,
1514
+ "step": 107500
1515
+ },
1516
+ {
1517
+ "epoch": 0.6177500171597227,
1518
+ "grad_norm": 6.593609809875488,
1519
+ "learning_rate": 1.9112499142013863e-05,
1520
+ "loss": 2.4818,
1521
+ "step": 108000
1522
+ },
1523
+ {
1524
+ "epoch": 0.6206099709428695,
1525
+ "grad_norm": 5.148362636566162,
1526
+ "learning_rate": 1.8969501452856524e-05,
1527
+ "loss": 2.4863,
1528
+ "step": 108500
1529
+ },
1530
+ {
1531
+ "epoch": 0.6234699247260165,
1532
+ "grad_norm": 6.264626979827881,
1533
+ "learning_rate": 1.882650376369918e-05,
1534
+ "loss": 2.4896,
1535
+ "step": 109000
1536
+ },
1537
+ {
1538
+ "epoch": 0.6263298785091633,
1539
+ "grad_norm": 7.046905040740967,
1540
+ "learning_rate": 1.8683506074541838e-05,
1541
+ "loss": 2.4746,
1542
+ "step": 109500
1543
+ },
1544
+ {
1545
+ "epoch": 0.6291898322923102,
1546
+ "grad_norm": 6.274538993835449,
1547
+ "learning_rate": 1.8540508385384492e-05,
1548
+ "loss": 2.4395,
1549
+ "step": 110000
1550
+ },
1551
+ {
1552
+ "epoch": 0.632049786075457,
1553
+ "grad_norm": 5.889391899108887,
1554
+ "learning_rate": 1.839751069622715e-05,
1555
+ "loss": 2.4307,
1556
+ "step": 110500
1557
+ },
1558
+ {
1559
+ "epoch": 0.6349097398586039,
1560
+ "grad_norm": 5.6989030838012695,
1561
+ "learning_rate": 1.8254513007069806e-05,
1562
+ "loss": 2.4297,
1563
+ "step": 111000
1564
+ },
1565
+ {
1566
+ "epoch": 0.6377696936417507,
1567
+ "grad_norm": 6.275044918060303,
1568
+ "learning_rate": 1.8111515317912463e-05,
1569
+ "loss": 2.4504,
1570
+ "step": 111500
1571
+ },
1572
+ {
1573
+ "epoch": 0.6406296474248976,
1574
+ "grad_norm": 6.444321155548096,
1575
+ "learning_rate": 1.7968517628755117e-05,
1576
+ "loss": 2.4286,
1577
+ "step": 112000
1578
+ },
1579
+ {
1580
+ "epoch": 0.6434896012080444,
1581
+ "grad_norm": 6.624863147735596,
1582
+ "learning_rate": 1.7825519939597778e-05,
1583
+ "loss": 2.463,
1584
+ "step": 112500
1585
+ },
1586
+ {
1587
+ "epoch": 0.6463495549911913,
1588
+ "grad_norm": 7.994183540344238,
1589
+ "learning_rate": 1.7682522250440435e-05,
1590
+ "loss": 2.4362,
1591
+ "step": 113000
1592
+ },
1593
+ {
1594
+ "epoch": 0.6492095087743383,
1595
+ "grad_norm": 5.6794257164001465,
1596
+ "learning_rate": 1.7539524561283092e-05,
1597
+ "loss": 2.4355,
1598
+ "step": 113500
1599
+ },
1600
+ {
1601
+ "epoch": 0.6520694625574851,
1602
+ "grad_norm": 5.606757164001465,
1603
+ "learning_rate": 1.739652687212575e-05,
1604
+ "loss": 2.4525,
1605
+ "step": 114000
1606
+ },
1607
+ {
1608
+ "epoch": 0.654929416340632,
1609
+ "grad_norm": 6.253554344177246,
1610
+ "learning_rate": 1.7253529182968403e-05,
1611
+ "loss": 2.4511,
1612
+ "step": 114500
1613
+ },
1614
+ {
1615
+ "epoch": 0.6577893701237788,
1616
+ "grad_norm": 6.014497756958008,
1617
+ "learning_rate": 1.711053149381106e-05,
1618
+ "loss": 2.4571,
1619
+ "step": 115000
1620
+ },
1621
+ {
1622
+ "epoch": 0.6606493239069257,
1623
+ "grad_norm": 6.601302146911621,
1624
+ "learning_rate": 1.6967533804653717e-05,
1625
+ "loss": 2.4505,
1626
+ "step": 115500
1627
+ },
1628
+ {
1629
+ "epoch": 0.6635092776900725,
1630
+ "grad_norm": 7.215948104858398,
1631
+ "learning_rate": 1.6824536115496374e-05,
1632
+ "loss": 2.4351,
1633
+ "step": 116000
1634
+ },
1635
+ {
1636
+ "epoch": 0.6663692314732194,
1637
+ "grad_norm": 5.974714279174805,
1638
+ "learning_rate": 1.668153842633903e-05,
1639
+ "loss": 2.4435,
1640
+ "step": 116500
1641
+ },
1642
+ {
1643
+ "epoch": 0.6692291852563662,
1644
+ "grad_norm": 6.903178691864014,
1645
+ "learning_rate": 1.653854073718169e-05,
1646
+ "loss": 2.4388,
1647
+ "step": 117000
1648
+ },
1649
+ {
1650
+ "epoch": 0.6720891390395132,
1651
+ "grad_norm": 6.214517116546631,
1652
+ "learning_rate": 1.6395543048024346e-05,
1653
+ "loss": 2.4405,
1654
+ "step": 117500
1655
+ },
1656
+ {
1657
+ "epoch": 0.67494909282266,
1658
+ "grad_norm": 6.263461589813232,
1659
+ "learning_rate": 1.6252545358867003e-05,
1660
+ "loss": 2.4496,
1661
+ "step": 118000
1662
+ },
1663
+ {
1664
+ "epoch": 0.6778090466058069,
1665
+ "grad_norm": 8.066364288330078,
1666
+ "learning_rate": 1.6109547669709657e-05,
1667
+ "loss": 2.4368,
1668
+ "step": 118500
1669
+ },
1670
+ {
1671
+ "epoch": 0.6806690003889537,
1672
+ "grad_norm": 5.834959506988525,
1673
+ "learning_rate": 1.5966549980552314e-05,
1674
+ "loss": 2.4481,
1675
+ "step": 119000
1676
+ },
1677
+ {
1678
+ "epoch": 0.6835289541721006,
1679
+ "grad_norm": 6.710206031799316,
1680
+ "learning_rate": 1.582355229139497e-05,
1681
+ "loss": 2.4325,
1682
+ "step": 119500
1683
+ },
1684
+ {
1685
+ "epoch": 0.6863889079552474,
1686
+ "grad_norm": 5.984834671020508,
1687
+ "learning_rate": 1.5680554602237628e-05,
1688
+ "loss": 2.4454,
1689
+ "step": 120000
1690
+ },
1691
+ {
1692
+ "epoch": 0.6892488617383943,
1693
+ "grad_norm": 5.370354652404785,
1694
+ "learning_rate": 1.5537556913080285e-05,
1695
+ "loss": 2.4279,
1696
+ "step": 120500
1697
+ },
1698
+ {
1699
+ "epoch": 0.6921088155215411,
1700
+ "grad_norm": 6.09434175491333,
1701
+ "learning_rate": 1.5394559223922942e-05,
1702
+ "loss": 2.4314,
1703
+ "step": 121000
1704
+ },
1705
+ {
1706
+ "epoch": 0.694968769304688,
1707
+ "grad_norm": 6.878710746765137,
1708
+ "learning_rate": 1.52515615347656e-05,
1709
+ "loss": 2.4191,
1710
+ "step": 121500
1711
+ },
1712
+ {
1713
+ "epoch": 0.697828723087835,
1714
+ "grad_norm": 5.660272121429443,
1715
+ "learning_rate": 1.5108563845608257e-05,
1716
+ "loss": 2.433,
1717
+ "step": 122000
1718
+ },
1719
+ {
1720
+ "epoch": 0.7006886768709818,
1721
+ "grad_norm": 6.489835739135742,
1722
+ "learning_rate": 1.4965566156450914e-05,
1723
+ "loss": 2.4491,
1724
+ "step": 122500
1725
+ },
1726
+ {
1727
+ "epoch": 0.7035486306541286,
1728
+ "grad_norm": 5.600217819213867,
1729
+ "learning_rate": 1.4822568467293567e-05,
1730
+ "loss": 2.4235,
1731
+ "step": 123000
1732
+ },
1733
+ {
1734
+ "epoch": 0.7064085844372755,
1735
+ "grad_norm": 5.281232833862305,
1736
+ "learning_rate": 1.4679570778136226e-05,
1737
+ "loss": 2.4219,
1738
+ "step": 123500
1739
+ },
1740
+ {
1741
+ "epoch": 0.7092685382204224,
1742
+ "grad_norm": 5.651204586029053,
1743
+ "learning_rate": 1.4536573088978883e-05,
1744
+ "loss": 2.448,
1745
+ "step": 124000
1746
+ },
1747
+ {
1748
+ "epoch": 0.7121284920035692,
1749
+ "grad_norm": 5.520606994628906,
1750
+ "learning_rate": 1.439357539982154e-05,
1751
+ "loss": 2.4118,
1752
+ "step": 124500
1753
+ },
1754
+ {
1755
+ "epoch": 0.714988445786716,
1756
+ "grad_norm": 6.359561920166016,
1757
+ "learning_rate": 1.4250577710664196e-05,
1758
+ "loss": 2.4502,
1759
+ "step": 125000
1760
+ },
1761
+ {
1762
+ "epoch": 0.7178483995698629,
1763
+ "grad_norm": 6.264361381530762,
1764
+ "learning_rate": 1.4107580021506853e-05,
1765
+ "loss": 2.4214,
1766
+ "step": 125500
1767
+ },
1768
+ {
1769
+ "epoch": 0.7207083533530099,
1770
+ "grad_norm": 15.211498260498047,
1771
+ "learning_rate": 1.396458233234951e-05,
1772
+ "loss": 2.4476,
1773
+ "step": 126000
1774
+ },
1775
+ {
1776
+ "epoch": 0.7235683071361567,
1777
+ "grad_norm": 6.165014266967773,
1778
+ "learning_rate": 1.3821584643192167e-05,
1779
+ "loss": 2.4255,
1780
+ "step": 126500
1781
+ },
1782
+ {
1783
+ "epoch": 0.7264282609193036,
1784
+ "grad_norm": 5.279512882232666,
1785
+ "learning_rate": 1.3678586954034823e-05,
1786
+ "loss": 2.4458,
1787
+ "step": 127000
1788
+ },
1789
+ {
1790
+ "epoch": 0.7292882147024504,
1791
+ "grad_norm": 6.13384485244751,
1792
+ "learning_rate": 1.353558926487748e-05,
1793
+ "loss": 2.4022,
1794
+ "step": 127500
1795
+ },
1796
+ {
1797
+ "epoch": 0.7321481684855973,
1798
+ "grad_norm": 5.577615261077881,
1799
+ "learning_rate": 1.3392591575720137e-05,
1800
+ "loss": 2.4174,
1801
+ "step": 128000
1802
+ },
1803
+ {
1804
+ "epoch": 0.7350081222687441,
1805
+ "grad_norm": 5.860058784484863,
1806
+ "learning_rate": 1.3249593886562794e-05,
1807
+ "loss": 2.4043,
1808
+ "step": 128500
1809
+ },
1810
+ {
1811
+ "epoch": 0.737868076051891,
1812
+ "grad_norm": 6.8798065185546875,
1813
+ "learning_rate": 1.3106596197405451e-05,
1814
+ "loss": 2.3858,
1815
+ "step": 129000
1816
+ },
1817
+ {
1818
+ "epoch": 0.7407280298350378,
1819
+ "grad_norm": 7.996329307556152,
1820
+ "learning_rate": 1.2963598508248107e-05,
1821
+ "loss": 2.3993,
1822
+ "step": 129500
1823
+ },
1824
+ {
1825
+ "epoch": 0.7435879836181847,
1826
+ "grad_norm": 6.488850116729736,
1827
+ "learning_rate": 1.2820600819090764e-05,
1828
+ "loss": 2.4204,
1829
+ "step": 130000
1830
+ },
1831
+ {
1832
+ "epoch": 0.7464479374013316,
1833
+ "grad_norm": 5.177313804626465,
1834
+ "learning_rate": 1.2677603129933421e-05,
1835
+ "loss": 2.433,
1836
+ "step": 130500
1837
+ },
1838
+ {
1839
+ "epoch": 0.7493078911844785,
1840
+ "grad_norm": 6.9536895751953125,
1841
+ "learning_rate": 1.2534605440776078e-05,
1842
+ "loss": 2.4145,
1843
+ "step": 131000
1844
+ },
1845
+ {
1846
+ "epoch": 0.7521678449676253,
1847
+ "grad_norm": 5.639203071594238,
1848
+ "learning_rate": 1.2391607751618735e-05,
1849
+ "loss": 2.3906,
1850
+ "step": 131500
1851
+ },
1852
+ {
1853
+ "epoch": 0.7550277987507722,
1854
+ "grad_norm": 5.76200532913208,
1855
+ "learning_rate": 1.2248610062461391e-05,
1856
+ "loss": 2.4065,
1857
+ "step": 132000
1858
+ },
1859
+ {
1860
+ "epoch": 0.757887752533919,
1861
+ "grad_norm": 7.033239364624023,
1862
+ "learning_rate": 1.2105612373304048e-05,
1863
+ "loss": 2.4045,
1864
+ "step": 132500
1865
+ },
1866
+ {
1867
+ "epoch": 0.7607477063170659,
1868
+ "grad_norm": 6.319807529449463,
1869
+ "learning_rate": 1.1962614684146704e-05,
1870
+ "loss": 2.3646,
1871
+ "step": 133000
1872
+ },
1873
+ {
1874
+ "epoch": 0.7636076601002127,
1875
+ "grad_norm": 6.506091117858887,
1876
+ "learning_rate": 1.1819616994989362e-05,
1877
+ "loss": 2.4247,
1878
+ "step": 133500
1879
+ },
1880
+ {
1881
+ "epoch": 0.7664676138833596,
1882
+ "grad_norm": 6.245853424072266,
1883
+ "learning_rate": 1.1676619305832018e-05,
1884
+ "loss": 2.3998,
1885
+ "step": 134000
1886
+ },
1887
+ {
1888
+ "epoch": 0.7693275676665066,
1889
+ "grad_norm": 6.403684616088867,
1890
+ "learning_rate": 1.1533621616674675e-05,
1891
+ "loss": 2.4072,
1892
+ "step": 134500
1893
+ },
1894
+ {
1895
+ "epoch": 0.7721875214496534,
1896
+ "grad_norm": 6.385560035705566,
1897
+ "learning_rate": 1.1390623927517332e-05,
1898
+ "loss": 2.4078,
1899
+ "step": 135000
1900
+ },
1901
+ {
1902
+ "epoch": 0.7750474752328003,
1903
+ "grad_norm": 6.857175350189209,
1904
+ "learning_rate": 1.124762623835999e-05,
1905
+ "loss": 2.4167,
1906
+ "step": 135500
1907
+ },
1908
+ {
1909
+ "epoch": 0.7779074290159471,
1910
+ "grad_norm": 5.734222888946533,
1911
+ "learning_rate": 1.1104628549202645e-05,
1912
+ "loss": 2.411,
1913
+ "step": 136000
1914
+ },
1915
+ {
1916
+ "epoch": 0.780767382799094,
1917
+ "grad_norm": 6.311659812927246,
1918
+ "learning_rate": 1.0961630860045302e-05,
1919
+ "loss": 2.4232,
1920
+ "step": 136500
1921
+ },
1922
+ {
1923
+ "epoch": 0.7836273365822408,
1924
+ "grad_norm": 6.344162940979004,
1925
+ "learning_rate": 1.0818633170887959e-05,
1926
+ "loss": 2.3997,
1927
+ "step": 137000
1928
+ },
1929
+ {
1930
+ "epoch": 0.7864872903653877,
1931
+ "grad_norm": 5.971358776092529,
1932
+ "learning_rate": 1.0675635481730616e-05,
1933
+ "loss": 2.4181,
1934
+ "step": 137500
1935
+ },
1936
+ {
1937
+ "epoch": 0.7893472441485345,
1938
+ "grad_norm": 5.663905620574951,
1939
+ "learning_rate": 1.0532637792573273e-05,
1940
+ "loss": 2.3939,
1941
+ "step": 138000
1942
+ },
1943
+ {
1944
+ "epoch": 0.7922071979316814,
1945
+ "grad_norm": 5.739428520202637,
1946
+ "learning_rate": 1.0389640103415929e-05,
1947
+ "loss": 2.3803,
1948
+ "step": 138500
1949
+ },
1950
+ {
1951
+ "epoch": 0.7950671517148283,
1952
+ "grad_norm": 6.558109760284424,
1953
+ "learning_rate": 1.0246642414258586e-05,
1954
+ "loss": 2.3794,
1955
+ "step": 139000
1956
+ },
1957
+ {
1958
+ "epoch": 0.7979271054979752,
1959
+ "grad_norm": 7.577678203582764,
1960
+ "learning_rate": 1.0103644725101243e-05,
1961
+ "loss": 2.4035,
1962
+ "step": 139500
1963
+ },
1964
+ {
1965
+ "epoch": 0.800787059281122,
1966
+ "grad_norm": 6.890414237976074,
1967
+ "learning_rate": 9.9606470359439e-06,
1968
+ "loss": 2.3791,
1969
+ "step": 140000
1970
+ },
1971
+ {
1972
+ "epoch": 0.8036470130642689,
1973
+ "grad_norm": 6.212318420410156,
1974
+ "learning_rate": 9.817649346786556e-06,
1975
+ "loss": 2.363,
1976
+ "step": 140500
1977
+ },
1978
+ {
1979
+ "epoch": 0.8065069668474157,
1980
+ "grad_norm": 6.501023292541504,
1981
+ "learning_rate": 9.674651657629213e-06,
1982
+ "loss": 2.3794,
1983
+ "step": 141000
1984
+ },
1985
+ {
1986
+ "epoch": 0.8093669206305626,
1987
+ "grad_norm": 6.136830806732178,
1988
+ "learning_rate": 9.53165396847187e-06,
1989
+ "loss": 2.3835,
1990
+ "step": 141500
1991
+ },
1992
+ {
1993
+ "epoch": 0.8122268744137094,
1994
+ "grad_norm": 6.386491298675537,
1995
+ "learning_rate": 9.388656279314527e-06,
1996
+ "loss": 2.3836,
1997
+ "step": 142000
1998
+ },
1999
+ {
2000
+ "epoch": 0.8150868281968563,
2001
+ "grad_norm": 6.060532093048096,
2002
+ "learning_rate": 9.245658590157182e-06,
2003
+ "loss": 2.3714,
2004
+ "step": 142500
2005
+ },
2006
+ {
2007
+ "epoch": 0.8179467819800033,
2008
+ "grad_norm": 6.481443405151367,
2009
+ "learning_rate": 9.10266090099984e-06,
2010
+ "loss": 2.3842,
2011
+ "step": 143000
2012
+ },
2013
+ {
2014
+ "epoch": 0.8208067357631501,
2015
+ "grad_norm": 6.378634929656982,
2016
+ "learning_rate": 8.959663211842497e-06,
2017
+ "loss": 2.4011,
2018
+ "step": 143500
2019
+ },
2020
+ {
2021
+ "epoch": 0.823666689546297,
2022
+ "grad_norm": 7.321898937225342,
2023
+ "learning_rate": 8.816665522685154e-06,
2024
+ "loss": 2.3874,
2025
+ "step": 144000
2026
+ },
2027
+ {
2028
+ "epoch": 0.8265266433294438,
2029
+ "grad_norm": 5.878232479095459,
2030
+ "learning_rate": 8.673667833527811e-06,
2031
+ "loss": 2.3747,
2032
+ "step": 144500
2033
+ },
2034
+ {
2035
+ "epoch": 0.8293865971125907,
2036
+ "grad_norm": 6.182088375091553,
2037
+ "learning_rate": 8.530670144370468e-06,
2038
+ "loss": 2.3928,
2039
+ "step": 145000
2040
+ },
2041
+ {
2042
+ "epoch": 0.8322465508957375,
2043
+ "grad_norm": 6.2058258056640625,
2044
+ "learning_rate": 8.387672455213125e-06,
2045
+ "loss": 2.3784,
2046
+ "step": 145500
2047
+ },
2048
+ {
2049
+ "epoch": 0.8351065046788844,
2050
+ "grad_norm": 6.231584072113037,
2051
+ "learning_rate": 8.24467476605578e-06,
2052
+ "loss": 2.3715,
2053
+ "step": 146000
2054
+ },
2055
+ {
2056
+ "epoch": 0.8379664584620312,
2057
+ "grad_norm": 6.14652156829834,
2058
+ "learning_rate": 8.101677076898438e-06,
2059
+ "loss": 2.3789,
2060
+ "step": 146500
2061
+ },
2062
+ {
2063
+ "epoch": 0.8408264122451781,
2064
+ "grad_norm": 6.431158065795898,
2065
+ "learning_rate": 7.958679387741095e-06,
2066
+ "loss": 2.3792,
2067
+ "step": 147000
2068
+ },
2069
+ {
2070
+ "epoch": 0.843686366028325,
2071
+ "grad_norm": 5.822235584259033,
2072
+ "learning_rate": 7.815681698583752e-06,
2073
+ "loss": 2.4062,
2074
+ "step": 147500
2075
+ },
2076
+ {
2077
+ "epoch": 0.8465463198114719,
2078
+ "grad_norm": 5.64607048034668,
2079
+ "learning_rate": 7.672684009426408e-06,
2080
+ "loss": 2.368,
2081
+ "step": 148000
2082
+ },
2083
+ {
2084
+ "epoch": 0.8494062735946187,
2085
+ "grad_norm": 6.182931900024414,
2086
+ "learning_rate": 7.5296863202690655e-06,
2087
+ "loss": 2.3877,
2088
+ "step": 148500
2089
+ },
2090
+ {
2091
+ "epoch": 0.8522662273777656,
2092
+ "grad_norm": 6.151760578155518,
2093
+ "learning_rate": 7.386688631111721e-06,
2094
+ "loss": 2.3915,
2095
+ "step": 149000
2096
+ },
2097
+ {
2098
+ "epoch": 0.8551261811609124,
2099
+ "grad_norm": 6.303664684295654,
2100
+ "learning_rate": 7.243690941954379e-06,
2101
+ "loss": 2.3565,
2102
+ "step": 149500
2103
+ },
2104
+ {
2105
+ "epoch": 0.8579861349440593,
2106
+ "grad_norm": 6.381216526031494,
2107
+ "learning_rate": 7.100693252797034e-06,
2108
+ "loss": 2.3697,
2109
+ "step": 150000
2110
+ },
2111
+ {
2112
+ "epoch": 0.8608460887272061,
2113
+ "grad_norm": 5.706302165985107,
2114
+ "learning_rate": 6.957695563639692e-06,
2115
+ "loss": 2.4026,
2116
+ "step": 150500
2117
+ },
2118
+ {
2119
+ "epoch": 0.863706042510353,
2120
+ "grad_norm": 7.22359561920166,
2121
+ "learning_rate": 6.814697874482348e-06,
2122
+ "loss": 2.3759,
2123
+ "step": 151000
2124
+ },
2125
+ {
2126
+ "epoch": 0.8665659962935,
2127
+ "grad_norm": 5.458381652832031,
2128
+ "learning_rate": 6.671700185325006e-06,
2129
+ "loss": 2.3836,
2130
+ "step": 151500
2131
+ },
2132
+ {
2133
+ "epoch": 0.8694259500766468,
2134
+ "grad_norm": 5.785479545593262,
2135
+ "learning_rate": 6.528702496167661e-06,
2136
+ "loss": 2.3655,
2137
+ "step": 152000
2138
+ },
2139
+ {
2140
+ "epoch": 0.8722859038597937,
2141
+ "grad_norm": 5.856048583984375,
2142
+ "learning_rate": 6.385704807010319e-06,
2143
+ "loss": 2.3669,
2144
+ "step": 152500
2145
+ },
2146
+ {
2147
+ "epoch": 0.8751458576429405,
2148
+ "grad_norm": 5.491500377655029,
2149
+ "learning_rate": 6.2427071178529756e-06,
2150
+ "loss": 2.4154,
2151
+ "step": 153000
2152
+ },
2153
+ {
2154
+ "epoch": 0.8780058114260874,
2155
+ "grad_norm": 5.936758518218994,
2156
+ "learning_rate": 6.099709428695633e-06,
2157
+ "loss": 2.3702,
2158
+ "step": 153500
2159
+ },
2160
+ {
2161
+ "epoch": 0.8808657652092342,
2162
+ "grad_norm": 7.138918399810791,
2163
+ "learning_rate": 5.956711739538289e-06,
2164
+ "loss": 2.3582,
2165
+ "step": 154000
2166
+ },
2167
+ {
2168
+ "epoch": 0.8837257189923811,
2169
+ "grad_norm": 6.457569122314453,
2170
+ "learning_rate": 5.813714050380946e-06,
2171
+ "loss": 2.381,
2172
+ "step": 154500
2173
+ },
2174
+ {
2175
+ "epoch": 0.8865856727755279,
2176
+ "grad_norm": 6.026115894317627,
2177
+ "learning_rate": 5.6707163612236024e-06,
2178
+ "loss": 2.385,
2179
+ "step": 155000
2180
+ },
2181
+ {
2182
+ "epoch": 0.8894456265586748,
2183
+ "grad_norm": 6.851065158843994,
2184
+ "learning_rate": 5.52771867206626e-06,
2185
+ "loss": 2.3664,
2186
+ "step": 155500
2187
+ },
2188
+ {
2189
+ "epoch": 0.8923055803418217,
2190
+ "grad_norm": 6.16819953918457,
2191
+ "learning_rate": 5.384720982908916e-06,
2192
+ "loss": 2.3814,
2193
+ "step": 156000
2194
+ },
2195
+ {
2196
+ "epoch": 0.8951655341249686,
2197
+ "grad_norm": 5.917440891265869,
2198
+ "learning_rate": 5.241723293751574e-06,
2199
+ "loss": 2.3701,
2200
+ "step": 156500
2201
+ },
2202
+ {
2203
+ "epoch": 0.8980254879081154,
2204
+ "grad_norm": 10.217552185058594,
2205
+ "learning_rate": 5.09872560459423e-06,
2206
+ "loss": 2.3516,
2207
+ "step": 157000
2208
+ },
2209
+ {
2210
+ "epoch": 0.9008854416912623,
2211
+ "grad_norm": 7.088205814361572,
2212
+ "learning_rate": 4.955727915436887e-06,
2213
+ "loss": 2.3936,
2214
+ "step": 157500
2215
+ },
2216
+ {
2217
+ "epoch": 0.9037453954744091,
2218
+ "grad_norm": 6.357458591461182,
2219
+ "learning_rate": 4.812730226279544e-06,
2220
+ "loss": 2.3672,
2221
+ "step": 158000
2222
+ },
2223
+ {
2224
+ "epoch": 0.906605349257556,
2225
+ "grad_norm": 6.871440887451172,
2226
+ "learning_rate": 4.669732537122201e-06,
2227
+ "loss": 2.3691,
2228
+ "step": 158500
2229
+ },
2230
+ {
2231
+ "epoch": 0.9094653030407028,
2232
+ "grad_norm": 6.192137718200684,
2233
+ "learning_rate": 4.526734847964857e-06,
2234
+ "loss": 2.3608,
2235
+ "step": 159000
2236
+ },
2237
+ {
2238
+ "epoch": 0.9123252568238497,
2239
+ "grad_norm": 6.265544414520264,
2240
+ "learning_rate": 4.383737158807514e-06,
2241
+ "loss": 2.3682,
2242
+ "step": 159500
2243
+ },
2244
+ {
2245
+ "epoch": 0.9151852106069966,
2246
+ "grad_norm": 5.907118320465088,
2247
+ "learning_rate": 4.2407394696501705e-06,
2248
+ "loss": 2.3423,
2249
+ "step": 160000
2250
+ },
2251
+ {
2252
+ "epoch": 0.9180451643901435,
2253
+ "grad_norm": 6.204267501831055,
2254
+ "learning_rate": 4.097741780492828e-06,
2255
+ "loss": 2.3605,
2256
+ "step": 160500
2257
+ },
2258
+ {
2259
+ "epoch": 0.9209051181732903,
2260
+ "grad_norm": 6.978556156158447,
2261
+ "learning_rate": 3.954744091335484e-06,
2262
+ "loss": 2.3594,
2263
+ "step": 161000
2264
+ },
2265
+ {
2266
+ "epoch": 0.9237650719564372,
2267
+ "grad_norm": 6.3842082023620605,
2268
+ "learning_rate": 3.811746402178141e-06,
2269
+ "loss": 2.3677,
2270
+ "step": 161500
2271
+ },
2272
+ {
2273
+ "epoch": 0.926625025739584,
2274
+ "grad_norm": 6.20996618270874,
2275
+ "learning_rate": 3.6687487130207977e-06,
2276
+ "loss": 2.3538,
2277
+ "step": 162000
2278
+ },
2279
+ {
2280
+ "epoch": 0.9294849795227309,
2281
+ "grad_norm": 6.184482574462891,
2282
+ "learning_rate": 3.5257510238634545e-06,
2283
+ "loss": 2.3787,
2284
+ "step": 162500
2285
+ },
2286
+ {
2287
+ "epoch": 0.9323449333058778,
2288
+ "grad_norm": 6.219623565673828,
2289
+ "learning_rate": 3.382753334706111e-06,
2290
+ "loss": 2.3774,
2291
+ "step": 163000
2292
+ },
2293
+ {
2294
+ "epoch": 0.9352048870890246,
2295
+ "grad_norm": 6.634711742401123,
2296
+ "learning_rate": 3.239755645548768e-06,
2297
+ "loss": 2.3671,
2298
+ "step": 163500
2299
+ },
2300
+ {
2301
+ "epoch": 0.9380648408721715,
2302
+ "grad_norm": 7.119485855102539,
2303
+ "learning_rate": 3.096757956391425e-06,
2304
+ "loss": 2.356,
2305
+ "step": 164000
2306
+ },
2307
+ {
2308
+ "epoch": 0.9409247946553184,
2309
+ "grad_norm": 6.833123207092285,
2310
+ "learning_rate": 2.9537602672340818e-06,
2311
+ "loss": 2.3451,
2312
+ "step": 164500
2313
+ },
2314
+ {
2315
+ "epoch": 0.9437847484384653,
2316
+ "grad_norm": 6.631540298461914,
2317
+ "learning_rate": 2.8107625780767385e-06,
2318
+ "loss": 2.3324,
2319
+ "step": 165000
2320
+ },
2321
+ {
2322
+ "epoch": 0.9466447022216121,
2323
+ "grad_norm": 6.187737941741943,
2324
+ "learning_rate": 2.667764888919395e-06,
2325
+ "loss": 2.3573,
2326
+ "step": 165500
2327
+ },
2328
+ {
2329
+ "epoch": 0.949504656004759,
2330
+ "grad_norm": 5.523457050323486,
2331
+ "learning_rate": 2.524767199762052e-06,
2332
+ "loss": 2.3468,
2333
+ "step": 166000
2334
+ },
2335
+ {
2336
+ "epoch": 0.9523646097879058,
2337
+ "grad_norm": 6.898806095123291,
2338
+ "learning_rate": 2.381769510604709e-06,
2339
+ "loss": 2.3534,
2340
+ "step": 166500
2341
+ },
2342
+ {
2343
+ "epoch": 0.9552245635710527,
2344
+ "grad_norm": 6.348108291625977,
2345
+ "learning_rate": 2.2387718214473658e-06,
2346
+ "loss": 2.3588,
2347
+ "step": 167000
2348
+ },
2349
+ {
2350
+ "epoch": 0.9580845173541995,
2351
+ "grad_norm": 6.188412189483643,
2352
+ "learning_rate": 2.0957741322900225e-06,
2353
+ "loss": 2.3607,
2354
+ "step": 167500
2355
+ },
2356
+ {
2357
+ "epoch": 0.9609444711373464,
2358
+ "grad_norm": 6.769163608551025,
2359
+ "learning_rate": 1.952776443132679e-06,
2360
+ "loss": 2.3721,
2361
+ "step": 168000
2362
+ },
2363
+ {
2364
+ "epoch": 0.9638044249204932,
2365
+ "grad_norm": 6.389153957366943,
2366
+ "learning_rate": 1.8097787539753357e-06,
2367
+ "loss": 2.381,
2368
+ "step": 168500
2369
+ },
2370
+ {
2371
+ "epoch": 0.9666643787036402,
2372
+ "grad_norm": 5.625518798828125,
2373
+ "learning_rate": 1.6667810648179926e-06,
2374
+ "loss": 2.3656,
2375
+ "step": 169000
2376
+ },
2377
+ {
2378
+ "epoch": 0.969524332486787,
2379
+ "grad_norm": 6.03477144241333,
2380
+ "learning_rate": 1.5237833756606493e-06,
2381
+ "loss": 2.3796,
2382
+ "step": 169500
2383
+ },
2384
+ {
2385
+ "epoch": 0.9723842862699339,
2386
+ "grad_norm": 6.034476280212402,
2387
+ "learning_rate": 1.3807856865033063e-06,
2388
+ "loss": 2.3407,
2389
+ "step": 170000
2390
+ },
2391
+ {
2392
+ "epoch": 0.9752442400530807,
2393
+ "grad_norm": 6.318973541259766,
2394
+ "learning_rate": 1.237787997345963e-06,
2395
+ "loss": 2.3537,
2396
+ "step": 170500
2397
+ },
2398
+ {
2399
+ "epoch": 0.9781041938362276,
2400
+ "grad_norm": 6.3570237159729,
2401
+ "learning_rate": 1.0947903081886197e-06,
2402
+ "loss": 2.3744,
2403
+ "step": 171000
2404
+ },
2405
+ {
2406
+ "epoch": 0.9809641476193744,
2407
+ "grad_norm": 5.440378189086914,
2408
+ "learning_rate": 9.517926190312765e-07,
2409
+ "loss": 2.3775,
2410
+ "step": 171500
2411
+ },
2412
+ {
2413
+ "epoch": 0.9838241014025213,
2414
+ "grad_norm": 7.5823655128479,
2415
+ "learning_rate": 8.087949298739332e-07,
2416
+ "loss": 2.3301,
2417
+ "step": 172000
2418
+ },
2419
+ {
2420
+ "epoch": 0.9866840551856682,
2421
+ "grad_norm": 6.07295560836792,
2422
+ "learning_rate": 6.6579724071659e-07,
2423
+ "loss": 2.3347,
2424
+ "step": 172500
2425
+ },
2426
+ {
2427
+ "epoch": 0.9895440089688151,
2428
+ "grad_norm": 7.158942222595215,
2429
+ "learning_rate": 5.227995515592468e-07,
2430
+ "loss": 2.3567,
2431
+ "step": 173000
2432
+ },
2433
+ {
2434
+ "epoch": 0.992403962751962,
2435
+ "grad_norm": 6.406834125518799,
2436
+ "learning_rate": 3.798018624019036e-07,
2437
+ "loss": 2.3204,
2438
+ "step": 173500
2439
+ },
2440
+ {
2441
+ "epoch": 0.9952639165351088,
2442
+ "grad_norm": 5.863027572631836,
2443
+ "learning_rate": 2.3680417324456038e-07,
2444
+ "loss": 2.3569,
2445
+ "step": 174000
2446
+ },
2447
+ {
2448
+ "epoch": 0.9981238703182557,
2449
+ "grad_norm": 6.552116394042969,
2450
+ "learning_rate": 9.380648408721716e-08,
2451
+ "loss": 2.3332,
2452
+ "step": 174500
2453
+ },
2454
+ {
2455
+ "epoch": 1.0,
2456
+ "step": 174828,
2457
+ "total_flos": 1.8427441878551347e+17,
2458
+ "train_loss": 1.5726176189089465,
2459
+ "train_runtime": 27622.4465,
2460
+ "train_samples_per_second": 25.317,
2461
+ "train_steps_per_second": 6.329
2462
+ }
2463
+ ],
2464
+ "logging_steps": 500,
2465
+ "max_steps": 174828,
2466
+ "num_input_tokens_seen": 0,
2467
+ "num_train_epochs": 1,
2468
+ "save_steps": 500,
2469
+ "stateful_callbacks": {
2470
+ "TrainerControl": {
2471
+ "args": {
2472
+ "should_epoch_stop": false,
2473
+ "should_evaluate": false,
2474
+ "should_log": false,
2475
+ "should_save": true,
2476
+ "should_training_stop": true
2477
+ },
2478
+ "attributes": {}
2479
+ }
2480
+ },
2481
+ "total_flos": 1.8427441878551347e+17,
2482
+ "train_batch_size": 4,
2483
+ "trial_name": null,
2484
+ "trial_params": null
2485
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47be5dadfdc8b947d61e8f08b37ac38e233b0ac9bf801ba0357a96d49cfb86a5
3
+ size 5368