kth8 commited on
Commit
876c5be
·
verified ·
1 Parent(s): 2ed6d87

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gemma
3
+ language:
4
+ - en
5
+ base_model: unsloth/gemma-3-1b-it
6
+ datasets:
7
+ - kth8/multi-turn-conversation-50000x
8
+ pipeline_tag: text-generation
9
+ library_name: transformers
10
+ tags:
11
+ - sft
12
+ - trl
13
+ - unsloth
14
+ - google
15
+ - gemma
16
+ - gemma3
17
+ - gemma3_text
18
+ ---
19
+ ![logo](https://storage.googleapis.com/gweb-developer-goog-blog-assets/images/gemma-3_2.original.png)
20
+ A fine-tune of [unsloth/gemma-3-1b-it](https://huggingface.co/unsloth/gemma-3-1b-it) on the [kth8/multi-turn-conversation-50000x](https://huggingface.co/datasets/kth8/multi-turn-conversation-50000x) dataset.
21
+
22
+ ## Usage example
23
+ **System prompt**
24
+ ```
25
+ You are a helpful assistant.
26
+ ```
27
+ **User prompt**
28
+ ```
29
+ Hey there! How's it going?
30
+ ```
31
+ **Assistant response**
32
+ ```
33
+ Hey! I'm doing great, thanks for asking! I'm here and ready to help with whatever you need. What's on your mind today?
34
+ ```
35
+ ## Model Details
36
+ - Base Model: `unsloth/gemma-3-1b-it`
37
+ - Parameter Count: 999885952
38
+ - Precision: torch.bfloat16
39
+
40
+ ## Training Settings
41
+ ### Hardware
42
+ - GPU: NVIDIA RTX PRO 6000 Blackwell Server Edition
43
+
44
+ ### PEFT
45
+ - Rank: 32
46
+ - LoRA alpha: 64
47
+ - Modules: q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj
48
+ - Gradient checkpointing: unsloth
49
+
50
+ ### SFT
51
+ - Epoch: 2
52
+ - Batch size: 48
53
+ - Gradient Accumulation steps: 1
54
+ - Warmup ratio: 0.1
55
+ - Learning rate: 0.0002
56
+ - Optimizer: adamw_torch_fused
57
+ - Learning rate scheduler: cosine
58
+
59
+ ## Training stats
60
+ - Global step: 1996
61
+ - Training runtime (seconds): 6834.1445
62
+ - Average training loss: 1.1743444665400442
63
+ - Final validation loss: 1.1191450357437134
64
+
65
+ ## Framework versions
66
+ - Unsloth: 2026.3.8
67
+ - TRL: 0.22.2
68
+ - Transformers: 4.56.2
69
+ - Pytorch: 2.10.0+cu128
70
+ - Datasets: 4.8.3
71
+ - Tokenizers: 0.22.2
72
+
73
+ ## License
74
+ This model is released under the Gemma license. See the [Gemma Terms of Use](https://ai.google.dev/gemma/terms) and [Prohibited Use Policy](https://policies.google.com/terms/generative-ai/use-policy) regarding the use of Gemma-generated content.
added_tokens.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "<image_soft_token>": 262144
3
+ }
chat_template.jinja ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{ bos_token }}
2
+ {%- if messages[0]['role'] == 'system' -%}
3
+ {%- if messages[0]['content'] is string -%}
4
+ {%- set first_user_prefix = messages[0]['content'] + '
5
+
6
+ ' -%}
7
+ {%- else -%}
8
+ {%- set first_user_prefix = messages[0]['content'][0]['text'] + '
9
+
10
+ ' -%}
11
+ {%- endif -%}
12
+ {%- set loop_messages = messages[1:] -%}
13
+ {%- else -%}
14
+ {%- set first_user_prefix = "" -%}
15
+ {%- set loop_messages = messages -%}
16
+ {%- endif -%}
17
+ {%- for message in loop_messages -%}
18
+ {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
19
+ {{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
20
+ {%- endif -%}
21
+ {%- if (message['role'] == 'assistant') -%}
22
+ {%- set role = "model" -%}
23
+ {%- else -%}
24
+ {%- set role = message['role'] -%}
25
+ {%- endif -%}
26
+ {{ '<start_of_turn>' + role + '
27
+ ' + (first_user_prefix if loop.first else "") }}
28
+ {%- if message['content'] is string -%}
29
+ {{ message['content'] | trim }}
30
+ {%- elif message['content'] is iterable -%}
31
+ {%- for item in message['content'] -%}
32
+ {%- if item['type'] == 'image' -%}
33
+ {{ '<start_of_image>' }}
34
+ {%- elif item['type'] == 'text' -%}
35
+ {{ item['text'] | trim }}
36
+ {%- endif -%}
37
+ {%- endfor -%}
38
+ {%- else -%}
39
+ {{ raise_exception("Invalid content type") }}
40
+ {%- endif -%}
41
+ {{ '<end_of_turn>
42
+ ' }}
43
+ {%- endfor -%}
44
+ {%- if add_generation_prompt -%}
45
+ {{'<start_of_turn>model
46
+ '}}
47
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_sliding_window_pattern": 6,
3
+ "architectures": [
4
+ "Gemma3ForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "attn_logit_softcapping": null,
9
+ "bos_token_id": 2,
10
+ "cache_implementation": "hybrid",
11
+ "dtype": "bfloat16",
12
+ "eos_token_id": 106,
13
+ "final_logit_softcapping": null,
14
+ "head_dim": 256,
15
+ "hidden_activation": "gelu_pytorch_tanh",
16
+ "hidden_size": 1152,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 6912,
19
+ "layer_types": [
20
+ "sliding_attention",
21
+ "sliding_attention",
22
+ "sliding_attention",
23
+ "sliding_attention",
24
+ "sliding_attention",
25
+ "full_attention",
26
+ "sliding_attention",
27
+ "sliding_attention",
28
+ "sliding_attention",
29
+ "sliding_attention",
30
+ "sliding_attention",
31
+ "full_attention",
32
+ "sliding_attention",
33
+ "sliding_attention",
34
+ "sliding_attention",
35
+ "sliding_attention",
36
+ "sliding_attention",
37
+ "full_attention",
38
+ "sliding_attention",
39
+ "sliding_attention",
40
+ "sliding_attention",
41
+ "sliding_attention",
42
+ "sliding_attention",
43
+ "full_attention",
44
+ "sliding_attention",
45
+ "sliding_attention"
46
+ ],
47
+ "max_position_embeddings": 32768,
48
+ "model_type": "gemma3_text",
49
+ "num_attention_heads": 4,
50
+ "num_hidden_layers": 26,
51
+ "num_key_value_heads": 1,
52
+ "pad_token_id": 0,
53
+ "query_pre_attn_scalar": 256,
54
+ "rms_norm_eps": 1e-06,
55
+ "rope_local_base_freq": 10000,
56
+ "rope_scaling": null,
57
+ "rope_theta": 1000000,
58
+ "sliding_window": 512,
59
+ "transformers_version": "4.56.2",
60
+ "unsloth_fixed": true,
61
+ "use_cache": true,
62
+ "vocab_size": 262144
63
+ }
generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 2,
3
+ "cache_implementation": "hybrid",
4
+ "do_sample": true,
5
+ "eos_token_id": [
6
+ 1,
7
+ 106
8
+ ],
9
+ "max_length": 32768,
10
+ "pad_token_id": 0,
11
+ "top_k": 64,
12
+ "top_p": 0.95,
13
+ "transformers_version": "4.56.2"
14
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e88e233bc1db3e64b6fa355a67c4287ae8bfb862ab5683542e6a0c47f75fe49a
3
+ size 1999811208
special_tokens_map.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "boi_token": "<start_of_image>",
3
+ "bos_token": {
4
+ "content": "<bos>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ "eoi_token": "<end_of_image>",
11
+ "eos_token": {
12
+ "content": "<end_of_turn>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "image_token": "<image_soft_token>",
19
+ "pad_token": {
20
+ "content": "<pad>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false
25
+ },
26
+ "unk_token": {
27
+ "content": "<unk>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ }
33
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
3
+ size 33384568
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
3
+ size 4689074
tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
train/log.json ADDED
@@ -0,0 +1,1524 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "loss": 3.062,
4
+ "grad_norm": 9.917159080505371,
5
+ "learning_rate": 9e-06,
6
+ "epoch": 0.01002004008016032,
7
+ "step": 10
8
+ },
9
+ {
10
+ "loss": 2.0797,
11
+ "grad_norm": 1.8970115184783936,
12
+ "learning_rate": 1.9e-05,
13
+ "epoch": 0.02004008016032064,
14
+ "step": 20
15
+ },
16
+ {
17
+ "loss": 1.6129,
18
+ "grad_norm": 0.81168532371521,
19
+ "learning_rate": 2.9e-05,
20
+ "epoch": 0.03006012024048096,
21
+ "step": 30
22
+ },
23
+ {
24
+ "loss": 1.4949,
25
+ "grad_norm": 0.470950186252594,
26
+ "learning_rate": 3.9000000000000006e-05,
27
+ "epoch": 0.04008016032064128,
28
+ "step": 40
29
+ },
30
+ {
31
+ "loss": 1.4555,
32
+ "grad_norm": 0.42354708909988403,
33
+ "learning_rate": 4.9e-05,
34
+ "epoch": 0.050100200400801605,
35
+ "step": 50
36
+ },
37
+ {
38
+ "loss": 1.4276,
39
+ "grad_norm": 0.4629833698272705,
40
+ "learning_rate": 5.9e-05,
41
+ "epoch": 0.06012024048096192,
42
+ "step": 60
43
+ },
44
+ {
45
+ "loss": 1.3983,
46
+ "grad_norm": 0.6642730236053467,
47
+ "learning_rate": 6.9e-05,
48
+ "epoch": 0.07014028056112225,
49
+ "step": 70
50
+ },
51
+ {
52
+ "loss": 1.3804,
53
+ "grad_norm": 0.33904388546943665,
54
+ "learning_rate": 7.900000000000001e-05,
55
+ "epoch": 0.08016032064128256,
56
+ "step": 80
57
+ },
58
+ {
59
+ "loss": 1.3628,
60
+ "grad_norm": 0.37728458642959595,
61
+ "learning_rate": 8.900000000000001e-05,
62
+ "epoch": 0.09018036072144289,
63
+ "step": 90
64
+ },
65
+ {
66
+ "loss": 1.3522,
67
+ "grad_norm": 0.3425058126449585,
68
+ "learning_rate": 9.900000000000001e-05,
69
+ "epoch": 0.10020040080160321,
70
+ "step": 100
71
+ },
72
+ {
73
+ "loss": 1.346,
74
+ "grad_norm": 0.3616705536842346,
75
+ "learning_rate": 0.000109,
76
+ "epoch": 0.11022044088176353,
77
+ "step": 110
78
+ },
79
+ {
80
+ "loss": 1.3488,
81
+ "grad_norm": 0.3829646408557892,
82
+ "learning_rate": 0.000119,
83
+ "epoch": 0.12024048096192384,
84
+ "step": 120
85
+ },
86
+ {
87
+ "loss": 1.3226,
88
+ "grad_norm": 0.3760342299938202,
89
+ "learning_rate": 0.00012900000000000002,
90
+ "epoch": 0.13026052104208416,
91
+ "step": 130
92
+ },
93
+ {
94
+ "eval_loss": 1.3178932666778564,
95
+ "eval_runtime": 84.6431,
96
+ "eval_samples_per_second": 29.784,
97
+ "eval_steps_per_second": 7.455,
98
+ "epoch": 0.13326653306613226,
99
+ "step": 133
100
+ },
101
+ {
102
+ "loss": 1.3309,
103
+ "grad_norm": 0.37514758110046387,
104
+ "learning_rate": 0.000139,
105
+ "epoch": 0.1402805611222445,
106
+ "step": 140
107
+ },
108
+ {
109
+ "loss": 1.3105,
110
+ "grad_norm": 0.7152091264724731,
111
+ "learning_rate": 0.00014900000000000002,
112
+ "epoch": 0.15030060120240482,
113
+ "step": 150
114
+ },
115
+ {
116
+ "loss": 1.3244,
117
+ "grad_norm": 0.3840025067329407,
118
+ "learning_rate": 0.00015900000000000002,
119
+ "epoch": 0.16032064128256512,
120
+ "step": 160
121
+ },
122
+ {
123
+ "loss": 1.3289,
124
+ "grad_norm": 0.35113897919654846,
125
+ "learning_rate": 0.00016900000000000002,
126
+ "epoch": 0.17034068136272545,
127
+ "step": 170
128
+ },
129
+ {
130
+ "loss": 1.2968,
131
+ "grad_norm": 0.38480180501937866,
132
+ "learning_rate": 0.00017900000000000001,
133
+ "epoch": 0.18036072144288579,
134
+ "step": 180
135
+ },
136
+ {
137
+ "loss": 1.296,
138
+ "grad_norm": 0.3818041980266571,
139
+ "learning_rate": 0.00018899999999999999,
140
+ "epoch": 0.1903807615230461,
141
+ "step": 190
142
+ },
143
+ {
144
+ "loss": 1.3032,
145
+ "grad_norm": 0.4464828073978424,
146
+ "learning_rate": 0.000199,
147
+ "epoch": 0.20040080160320642,
148
+ "step": 200
149
+ },
150
+ {
151
+ "loss": 1.2942,
152
+ "grad_norm": 0.3449303209781647,
153
+ "learning_rate": 0.0001999876082359844,
154
+ "epoch": 0.21042084168336672,
155
+ "step": 210
156
+ },
157
+ {
158
+ "loss": 1.288,
159
+ "grad_norm": 0.3817189633846283,
160
+ "learning_rate": 0.0001999447764513578,
161
+ "epoch": 0.22044088176352705,
162
+ "step": 220
163
+ },
164
+ {
165
+ "loss": 1.2808,
166
+ "grad_norm": 0.5007427930831909,
167
+ "learning_rate": 0.00019987136476341398,
168
+ "epoch": 0.23046092184368738,
169
+ "step": 230
170
+ },
171
+ {
172
+ "loss": 1.2796,
173
+ "grad_norm": 0.33001911640167236,
174
+ "learning_rate": 0.00019976739563378035,
175
+ "epoch": 0.24048096192384769,
176
+ "step": 240
177
+ },
178
+ {
179
+ "loss": 1.2582,
180
+ "grad_norm": 0.33476898074150085,
181
+ "learning_rate": 0.00019963290087368342,
182
+ "epoch": 0.250501002004008,
183
+ "step": 250
184
+ },
185
+ {
186
+ "loss": 1.2583,
187
+ "grad_norm": 0.34601467847824097,
188
+ "learning_rate": 0.00019946792163421596,
189
+ "epoch": 0.2605210420841683,
190
+ "step": 260
191
+ },
192
+ {
193
+ "eval_loss": 1.2609914541244507,
194
+ "eval_runtime": 68.3146,
195
+ "eval_samples_per_second": 36.903,
196
+ "eval_steps_per_second": 9.237,
197
+ "epoch": 0.2665330661322645,
198
+ "step": 266
199
+ },
200
+ {
201
+ "loss": 1.2781,
202
+ "grad_norm": 0.3411717116832733,
203
+ "learning_rate": 0.00019927250839374582,
204
+ "epoch": 0.27054108216432865,
205
+ "step": 270
206
+ },
207
+ {
208
+ "loss": 1.267,
209
+ "grad_norm": 0.3507177233695984,
210
+ "learning_rate": 0.00019904672094247128,
211
+ "epoch": 0.280561122244489,
212
+ "step": 280
213
+ },
214
+ {
215
+ "loss": 1.275,
216
+ "grad_norm": 0.3237634599208832,
217
+ "learning_rate": 0.0001987906283641271,
218
+ "epoch": 0.2905811623246493,
219
+ "step": 290
220
+ },
221
+ {
222
+ "loss": 1.252,
223
+ "grad_norm": 0.3348980247974396,
224
+ "learning_rate": 0.0001985043090148472,
225
+ "epoch": 0.30060120240480964,
226
+ "step": 300
227
+ },
228
+ {
229
+ "loss": 1.2548,
230
+ "grad_norm": 0.32034358382225037,
231
+ "learning_rate": 0.0001981878504991901,
232
+ "epoch": 0.3106212424849699,
233
+ "step": 310
234
+ },
235
+ {
236
+ "loss": 1.2595,
237
+ "grad_norm": 0.3158237040042877,
238
+ "learning_rate": 0.0001978413496433348,
239
+ "epoch": 0.32064128256513025,
240
+ "step": 320
241
+ },
242
+ {
243
+ "loss": 1.2555,
244
+ "grad_norm": 0.31501418352127075,
245
+ "learning_rate": 0.00019746491246545503,
246
+ "epoch": 0.3306613226452906,
247
+ "step": 330
248
+ },
249
+ {
250
+ "loss": 1.2511,
251
+ "grad_norm": 0.33747926354408264,
252
+ "learning_rate": 0.00019705865414328103,
253
+ "epoch": 0.3406813627254509,
254
+ "step": 340
255
+ },
256
+ {
257
+ "loss": 1.2497,
258
+ "grad_norm": 0.3418786823749542,
259
+ "learning_rate": 0.0001966226989788589,
260
+ "epoch": 0.35070140280561124,
261
+ "step": 350
262
+ },
263
+ {
264
+ "loss": 1.2495,
265
+ "grad_norm": 0.3279886543750763,
266
+ "learning_rate": 0.00019615718036051827,
267
+ "epoch": 0.36072144288577157,
268
+ "step": 360
269
+ },
270
+ {
271
+ "loss": 1.2427,
272
+ "grad_norm": 0.3327982723712921,
273
+ "learning_rate": 0.00019566224072205954,
274
+ "epoch": 0.37074148296593185,
275
+ "step": 370
276
+ },
277
+ {
278
+ "loss": 1.2357,
279
+ "grad_norm": 5.1672163009643555,
280
+ "learning_rate": 0.00019513803149917377,
281
+ "epoch": 0.3807615230460922,
282
+ "step": 380
283
+ },
284
+ {
285
+ "loss": 1.246,
286
+ "grad_norm": 0.3257956802845001,
287
+ "learning_rate": 0.00019458471308310822,
288
+ "epoch": 0.3907815631262525,
289
+ "step": 390
290
+ },
291
+ {
292
+ "eval_loss": 1.229310154914856,
293
+ "eval_runtime": 68.3539,
294
+ "eval_samples_per_second": 36.882,
295
+ "eval_steps_per_second": 9.231,
296
+ "epoch": 0.3997995991983968,
297
+ "step": 399
298
+ },
299
+ {
300
+ "loss": 1.2415,
301
+ "grad_norm": 0.32486265897750854,
302
+ "learning_rate": 0.0001940024547715918,
303
+ "epoch": 0.40080160320641284,
304
+ "step": 400
305
+ },
306
+ {
307
+ "loss": 1.2388,
308
+ "grad_norm": 0.3178859055042267,
309
+ "learning_rate": 0.00019339143471703532,
310
+ "epoch": 0.41082164328657317,
311
+ "step": 410
312
+ },
313
+ {
314
+ "loss": 1.2318,
315
+ "grad_norm": 0.31442832946777344,
316
+ "learning_rate": 0.00019275183987202255,
317
+ "epoch": 0.42084168336673344,
318
+ "step": 420
319
+ },
320
+ {
321
+ "loss": 1.2061,
322
+ "grad_norm": 0.3233127295970917,
323
+ "learning_rate": 0.00019208386593210874,
324
+ "epoch": 0.4308617234468938,
325
+ "step": 430
326
+ },
327
+ {
328
+ "loss": 1.2186,
329
+ "grad_norm": 0.3286103308200836,
330
+ "learning_rate": 0.00019138771727594405,
331
+ "epoch": 0.4408817635270541,
332
+ "step": 440
333
+ },
334
+ {
335
+ "loss": 1.2284,
336
+ "grad_norm": 0.32425037026405334,
337
+ "learning_rate": 0.00019066360690274018,
338
+ "epoch": 0.45090180360721444,
339
+ "step": 450
340
+ },
341
+ {
342
+ "loss": 1.2281,
343
+ "grad_norm": 0.3199349641799927,
344
+ "learning_rate": 0.00018991175636709953,
345
+ "epoch": 0.46092184368737477,
346
+ "step": 460
347
+ },
348
+ {
349
+ "loss": 1.2332,
350
+ "grad_norm": 0.36368799209594727,
351
+ "learning_rate": 0.0001891323957112264,
352
+ "epoch": 0.4709418837675351,
353
+ "step": 470
354
+ },
355
+ {
356
+ "loss": 1.2067,
357
+ "grad_norm": 0.34387969970703125,
358
+ "learning_rate": 0.00018832576339454166,
359
+ "epoch": 0.48096192384769537,
360
+ "step": 480
361
+ },
362
+ {
363
+ "loss": 1.2294,
364
+ "grad_norm": 0.34961533546447754,
365
+ "learning_rate": 0.00018749210622072155,
366
+ "epoch": 0.4909819639278557,
367
+ "step": 490
368
+ },
369
+ {
370
+ "loss": 1.2248,
371
+ "grad_norm": 0.3662363886833191,
372
+ "learning_rate": 0.00018663167926218392,
373
+ "epoch": 0.501002004008016,
374
+ "step": 500
375
+ },
376
+ {
377
+ "loss": 1.2496,
378
+ "grad_norm": 0.356840580701828,
379
+ "learning_rate": 0.00018574474578204403,
380
+ "epoch": 0.5110220440881763,
381
+ "step": 510
382
+ },
383
+ {
384
+ "loss": 1.219,
385
+ "grad_norm": 0.348263144493103,
386
+ "learning_rate": 0.00018483157715356457,
387
+ "epoch": 0.5210420841683366,
388
+ "step": 520
389
+ },
390
+ {
391
+ "loss": 1.2229,
392
+ "grad_norm": 0.3213677704334259,
393
+ "learning_rate": 0.00018389245277712396,
394
+ "epoch": 0.531062124248497,
395
+ "step": 530
396
+ },
397
+ {
398
+ "eval_loss": 1.204853892326355,
399
+ "eval_runtime": 68.393,
400
+ "eval_samples_per_second": 36.86,
401
+ "eval_steps_per_second": 9.226,
402
+ "epoch": 0.533066132264529,
403
+ "step": 532
404
+ },
405
+ {
406
+ "loss": 1.2225,
407
+ "grad_norm": 0.3370509147644043,
408
+ "learning_rate": 0.0001829276599947291,
409
+ "epoch": 0.5410821643286573,
410
+ "step": 540
411
+ },
412
+ {
413
+ "loss": 1.2177,
414
+ "grad_norm": 0.32882654666900635,
415
+ "learning_rate": 0.00018193749400209757,
416
+ "epoch": 0.5511022044088176,
417
+ "step": 550
418
+ },
419
+ {
420
+ "loss": 1.1929,
421
+ "grad_norm": 0.3255807161331177,
422
+ "learning_rate": 0.00018092225775833733,
423
+ "epoch": 0.561122244488978,
424
+ "step": 560
425
+ },
426
+ {
427
+ "loss": 1.2155,
428
+ "grad_norm": 0.31887778639793396,
429
+ "learning_rate": 0.00017988226189325103,
430
+ "epoch": 0.5711422845691383,
431
+ "step": 570
432
+ },
433
+ {
434
+ "loss": 1.2117,
435
+ "grad_norm": 0.3166080713272095,
436
+ "learning_rate": 0.000178817824612293,
437
+ "epoch": 0.5811623246492986,
438
+ "step": 580
439
+ },
440
+ {
441
+ "loss": 1.2088,
442
+ "grad_norm": 0.3295918107032776,
443
+ "learning_rate": 0.0001777292715992088,
444
+ "epoch": 0.591182364729459,
445
+ "step": 590
446
+ },
447
+ {
448
+ "loss": 1.2201,
449
+ "grad_norm": 0.3369976282119751,
450
+ "learning_rate": 0.00017661693591638618,
451
+ "epoch": 0.6012024048096193,
452
+ "step": 600
453
+ },
454
+ {
455
+ "loss": 1.2027,
456
+ "grad_norm": 0.33591219782829285,
457
+ "learning_rate": 0.00017548115790294895,
458
+ "epoch": 0.6112224448897795,
459
+ "step": 610
460
+ },
461
+ {
462
+ "loss": 1.1963,
463
+ "grad_norm": 0.332086443901062,
464
+ "learning_rate": 0.0001743222850706238,
465
+ "epoch": 0.6212424849699398,
466
+ "step": 620
467
+ },
468
+ {
469
+ "loss": 1.1835,
470
+ "grad_norm": 0.321736603975296,
471
+ "learning_rate": 0.00017314067199741291,
472
+ "epoch": 0.6312625250501002,
473
+ "step": 630
474
+ },
475
+ {
476
+ "loss": 1.213,
477
+ "grad_norm": 0.3286183476448059,
478
+ "learning_rate": 0.0001719366802191046,
479
+ "epoch": 0.6412825651302605,
480
+ "step": 640
481
+ },
482
+ {
483
+ "loss": 1.1896,
484
+ "grad_norm": 0.31868550181388855,
485
+ "learning_rate": 0.00017071067811865476,
486
+ "epoch": 0.6513026052104208,
487
+ "step": 650
488
+ },
489
+ {
490
+ "loss": 1.2021,
491
+ "grad_norm": 0.328276664018631,
492
+ "learning_rate": 0.00016946304081347352,
493
+ "epoch": 0.6613226452905812,
494
+ "step": 660
495
+ },
496
+ {
497
+ "eval_loss": 1.1863322257995605,
498
+ "eval_runtime": 68.3185,
499
+ "eval_samples_per_second": 36.901,
500
+ "eval_steps_per_second": 9.236,
501
+ "epoch": 0.6663326653306614,
502
+ "step": 665
503
+ },
504
+ {
505
+ "loss": 1.1909,
506
+ "grad_norm": 0.3365529477596283,
507
+ "learning_rate": 0.0001681941500406513,
508
+ "epoch": 0.6713426853707415,
509
+ "step": 670
510
+ },
511
+ {
512
+ "loss": 1.2118,
513
+ "grad_norm": 0.3334924876689911,
514
+ "learning_rate": 0.00016690439404015955,
515
+ "epoch": 0.6813627254509018,
516
+ "step": 680
517
+ },
518
+ {
519
+ "loss": 1.1966,
520
+ "grad_norm": 0.3221626281738281,
521
+ "learning_rate": 0.00016559416743606163,
522
+ "epoch": 0.6913827655310621,
523
+ "step": 690
524
+ },
525
+ {
526
+ "loss": 1.1976,
527
+ "grad_norm": 0.3202773332595825,
528
+ "learning_rate": 0.0001642638711157706,
529
+ "epoch": 0.7014028056112225,
530
+ "step": 700
531
+ },
532
+ {
533
+ "loss": 1.1894,
534
+ "grad_norm": 0.32952797412872314,
535
+ "learning_rate": 0.00016291391210739034,
536
+ "epoch": 0.7114228456913828,
537
+ "step": 710
538
+ },
539
+ {
540
+ "loss": 1.1867,
541
+ "grad_norm": 0.33879393339157104,
542
+ "learning_rate": 0.0001615447034551782,
543
+ "epoch": 0.7214428857715431,
544
+ "step": 720
545
+ },
546
+ {
547
+ "loss": 1.1928,
548
+ "grad_norm": 0.3320337235927582,
549
+ "learning_rate": 0.00016015666409316642,
550
+ "epoch": 0.7314629258517034,
551
+ "step": 730
552
+ },
553
+ {
554
+ "loss": 1.2109,
555
+ "grad_norm": 0.32818353176116943,
556
+ "learning_rate": 0.00015875021871698195,
557
+ "epoch": 0.7414829659318637,
558
+ "step": 740
559
+ },
560
+ {
561
+ "loss": 1.1959,
562
+ "grad_norm": 0.32380595803260803,
563
+ "learning_rate": 0.00015732579765390296,
564
+ "epoch": 0.751503006012024,
565
+ "step": 750
566
+ },
567
+ {
568
+ "loss": 1.1632,
569
+ "grad_norm": 0.333734393119812,
570
+ "learning_rate": 0.00015588383673119274,
571
+ "epoch": 0.7615230460921844,
572
+ "step": 760
573
+ },
574
+ {
575
+ "loss": 1.1787,
576
+ "grad_norm": 0.3443449139595032,
577
+ "learning_rate": 0.00015442477714275023,
578
+ "epoch": 0.7715430861723447,
579
+ "step": 770
580
+ },
581
+ {
582
+ "loss": 1.178,
583
+ "grad_norm": 0.34319791197776794,
584
+ "learning_rate": 0.00015294906531411888,
585
+ "epoch": 0.781563126252505,
586
+ "step": 780
587
+ },
588
+ {
589
+ "loss": 1.1906,
590
+ "grad_norm": 0.34300360083580017,
591
+ "learning_rate": 0.00015145715276589487,
592
+ "epoch": 0.7915831663326653,
593
+ "step": 790
594
+ },
595
+ {
596
+ "eval_loss": 1.1701182126998901,
597
+ "eval_runtime": 68.3162,
598
+ "eval_samples_per_second": 36.902,
599
+ "eval_steps_per_second": 9.236,
600
+ "epoch": 0.7995991983967936,
601
+ "step": 798
602
+ },
603
+ {
604
+ "loss": 1.1745,
605
+ "grad_norm": 0.3376515507698059,
606
+ "learning_rate": 0.00014994949597557612,
607
+ "epoch": 0.8016032064128257,
608
+ "step": 800
609
+ },
610
+ {
611
+ "loss": 1.1681,
612
+ "grad_norm": 0.3189542591571808,
613
+ "learning_rate": 0.0001484265562378947,
614
+ "epoch": 0.811623246492986,
615
+ "step": 810
616
+ },
617
+ {
618
+ "loss": 1.1915,
619
+ "grad_norm": 0.33153972029685974,
620
+ "learning_rate": 0.00014688879952367572,
621
+ "epoch": 0.8216432865731463,
622
+ "step": 820
623
+ },
624
+ {
625
+ "loss": 1.1668,
626
+ "grad_norm": 0.3349854052066803,
627
+ "learning_rate": 0.00014533669633726474,
628
+ "epoch": 0.8316633266533067,
629
+ "step": 830
630
+ },
631
+ {
632
+ "loss": 1.1678,
633
+ "grad_norm": 0.33402037620544434,
634
+ "learning_rate": 0.0001437707215725688,
635
+ "epoch": 0.8416833667334669,
636
+ "step": 840
637
+ },
638
+ {
639
+ "loss": 1.173,
640
+ "grad_norm": 0.34636396169662476,
641
+ "learning_rate": 0.00014219135436775412,
642
+ "epoch": 0.8517034068136272,
643
+ "step": 850
644
+ },
645
+ {
646
+ "loss": 1.1712,
647
+ "grad_norm": 0.3418276607990265,
648
+ "learning_rate": 0.00014059907795864487,
649
+ "epoch": 0.8617234468937875,
650
+ "step": 860
651
+ },
652
+ {
653
+ "loss": 1.1788,
654
+ "grad_norm": 0.3244767189025879,
655
+ "learning_rate": 0.00013899437953086865,
656
+ "epoch": 0.8717434869739479,
657
+ "step": 870
658
+ },
659
+ {
660
+ "loss": 1.1555,
661
+ "grad_norm": 0.3318007290363312,
662
+ "learning_rate": 0.00013737775007079334,
663
+ "epoch": 0.8817635270541082,
664
+ "step": 880
665
+ },
666
+ {
667
+ "loss": 1.1756,
668
+ "grad_norm": 0.3220977485179901,
669
+ "learning_rate": 0.00013574968421530088,
670
+ "epoch": 0.8917835671342685,
671
+ "step": 890
672
+ },
673
+ {
674
+ "loss": 1.1644,
675
+ "grad_norm": 0.32579556107521057,
676
+ "learning_rate": 0.0001341106801004442,
677
+ "epoch": 0.9018036072144289,
678
+ "step": 900
679
+ },
680
+ {
681
+ "loss": 1.1579,
682
+ "grad_norm": 0.3344557285308838,
683
+ "learning_rate": 0.00013246123920903358,
684
+ "epoch": 0.9118236472945892,
685
+ "step": 910
686
+ },
687
+ {
688
+ "loss": 1.1442,
689
+ "grad_norm": 0.3250351846218109,
690
+ "learning_rate": 0.000130801866217199,
691
+ "epoch": 0.9218436873747495,
692
+ "step": 920
693
+ },
694
+ {
695
+ "loss": 1.1608,
696
+ "grad_norm": 0.3367891013622284,
697
+ "learning_rate": 0.00012913306883997528,
698
+ "epoch": 0.9318637274549099,
699
+ "step": 930
700
+ },
701
+ {
702
+ "eval_loss": 1.156960368156433,
703
+ "eval_runtime": 68.2656,
704
+ "eval_samples_per_second": 36.929,
705
+ "eval_steps_per_second": 9.243,
706
+ "epoch": 0.9328657314629258,
707
+ "step": 931
708
+ },
709
+ {
710
+ "loss": 1.1916,
711
+ "grad_norm": 0.33810174465179443,
712
+ "learning_rate": 0.00012745535767595754,
713
+ "epoch": 0.9418837675350702,
714
+ "step": 940
715
+ },
716
+ {
717
+ "loss": 1.166,
718
+ "grad_norm": 0.32210567593574524,
719
+ "learning_rate": 0.00012576924605107456,
720
+ "epoch": 0.9519038076152304,
721
+ "step": 950
722
+ },
723
+ {
724
+ "loss": 1.1662,
725
+ "grad_norm": 0.33408471941947937,
726
+ "learning_rate": 0.0001240752498615272,
727
+ "epoch": 0.9619238476953907,
728
+ "step": 960
729
+ },
730
+ {
731
+ "loss": 1.1691,
732
+ "grad_norm": 0.3320842683315277,
733
+ "learning_rate": 0.00012237388741594078,
734
+ "epoch": 0.9719438877755511,
735
+ "step": 970
736
+ },
737
+ {
738
+ "loss": 1.1608,
739
+ "grad_norm": 0.35282036662101746,
740
+ "learning_rate": 0.00012066567927677938,
741
+ "epoch": 0.9819639278557114,
742
+ "step": 980
743
+ },
744
+ {
745
+ "loss": 1.1759,
746
+ "grad_norm": 0.3290286958217621,
747
+ "learning_rate": 0.00011895114810107015,
748
+ "epoch": 0.9919839679358717,
749
+ "step": 990
750
+ },
751
+ {
752
+ "loss": 1.1491,
753
+ "grad_norm": 0.33208462595939636,
754
+ "learning_rate": 0.0001172308184804871,
755
+ "epoch": 1.002004008016032,
756
+ "step": 1000
757
+ },
758
+ {
759
+ "loss": 1.1075,
760
+ "grad_norm": 0.3253942131996155,
761
+ "learning_rate": 0.00011550521678084279,
762
+ "epoch": 1.0120240480961924,
763
+ "step": 1010
764
+ },
765
+ {
766
+ "loss": 1.0982,
767
+ "grad_norm": 0.3393993377685547,
768
+ "learning_rate": 0.00011377487098103735,
769
+ "epoch": 1.0220440881763526,
770
+ "step": 1020
771
+ },
772
+ {
773
+ "loss": 1.0971,
774
+ "grad_norm": 0.3415449857711792,
775
+ "learning_rate": 0.00011204031051151364,
776
+ "epoch": 1.032064128256513,
777
+ "step": 1030
778
+ },
779
+ {
780
+ "loss": 1.0864,
781
+ "grad_norm": 0.3586030900478363,
782
+ "learning_rate": 0.00011030206609226868,
783
+ "epoch": 1.0420841683366733,
784
+ "step": 1040
785
+ },
786
+ {
787
+ "loss": 1.1017,
788
+ "grad_norm": 0.3494417369365692,
789
+ "learning_rate": 0.0001085606695704701,
790
+ "epoch": 1.0521042084168337,
791
+ "step": 1050
792
+ },
793
+ {
794
+ "loss": 1.0877,
795
+ "grad_norm": 0.35265541076660156,
796
+ "learning_rate": 0.0001068166537577282,
797
+ "epoch": 1.062124248496994,
798
+ "step": 1060
799
+ },
800
+ {
801
+ "eval_loss": 1.1489150524139404,
802
+ "eval_runtime": 68.2603,
803
+ "eval_samples_per_second": 36.932,
804
+ "eval_steps_per_second": 9.244,
805
+ "epoch": 1.066132264529058,
806
+ "step": 1064
807
+ },
808
+ {
809
+ "loss": 1.083,
810
+ "grad_norm": 0.35727137327194214,
811
+ "learning_rate": 0.00010507055226707235,
812
+ "epoch": 1.0721442885771544,
813
+ "step": 1070
814
+ },
815
+ {
816
+ "loss": 1.0813,
817
+ "grad_norm": 0.34173229336738586,
818
+ "learning_rate": 0.0001033228993496827,
819
+ "epoch": 1.0821643286573146,
820
+ "step": 1080
821
+ },
822
+ {
823
+ "loss": 1.1103,
824
+ "grad_norm": 0.35060715675354004,
825
+ "learning_rate": 0.00010157422973142629,
826
+ "epoch": 1.092184368737475,
827
+ "step": 1090
828
+ },
829
+ {
830
+ "loss": 1.0888,
831
+ "grad_norm": 0.3494425415992737,
832
+ "learning_rate": 9.982507844924809e-05,
833
+ "epoch": 1.1022044088176353,
834
+ "step": 1100
835
+ },
836
+ {
837
+ "loss": 1.0822,
838
+ "grad_norm": 0.3451234698295593,
839
+ "learning_rate": 9.807598068746686e-05,
840
+ "epoch": 1.1122244488977957,
841
+ "step": 1110
842
+ },
843
+ {
844
+ "loss": 1.0956,
845
+ "grad_norm": 0.357877254486084,
846
+ "learning_rate": 9.632747161402581e-05,
847
+ "epoch": 1.122244488977956,
848
+ "step": 1120
849
+ },
850
+ {
851
+ "loss": 1.0965,
852
+ "grad_norm": 0.3512496054172516,
853
+ "learning_rate": 9.458008621674833e-05,
854
+ "epoch": 1.1322645290581161,
855
+ "step": 1130
856
+ },
857
+ {
858
+ "loss": 1.0973,
859
+ "grad_norm": 0.3644641637802124,
860
+ "learning_rate": 9.283435913964887e-05,
861
+ "epoch": 1.1422845691382766,
862
+ "step": 1140
863
+ },
864
+ {
865
+ "loss": 1.0925,
866
+ "grad_norm": 0.36287280917167664,
867
+ "learning_rate": 9.109082451934903e-05,
868
+ "epoch": 1.1523046092184368,
869
+ "step": 1150
870
+ },
871
+ {
872
+ "loss": 1.0843,
873
+ "grad_norm": 0.3538283407688141,
874
+ "learning_rate": 8.935001582164876e-05,
875
+ "epoch": 1.1623246492985972,
876
+ "step": 1160
877
+ },
878
+ {
879
+ "loss": 1.0986,
880
+ "grad_norm": 0.35994771122932434,
881
+ "learning_rate": 8.761246567830283e-05,
882
+ "epoch": 1.1723446893787575,
883
+ "step": 1170
884
+ },
885
+ {
886
+ "loss": 1.091,
887
+ "grad_norm": 0.3535645604133606,
888
+ "learning_rate": 8.587870572405278e-05,
889
+ "epoch": 1.182364729458918,
890
+ "step": 1180
891
+ },
892
+ {
893
+ "loss": 1.0724,
894
+ "grad_norm": 0.35088545083999634,
895
+ "learning_rate": 8.414926643396355e-05,
896
+ "epoch": 1.1923847695390781,
897
+ "step": 1190
898
+ },
899
+ {
900
+ "eval_loss": 1.1411553621292114,
901
+ "eval_runtime": 68.2204,
902
+ "eval_samples_per_second": 36.954,
903
+ "eval_steps_per_second": 9.249,
904
+ "epoch": 1.1993987975951903,
905
+ "step": 1197
906
+ },
907
+ {
908
+ "loss": 1.1034,
909
+ "grad_norm": 0.349630743265152,
910
+ "learning_rate": 8.2424676961115e-05,
911
+ "epoch": 1.2024048096192386,
912
+ "step": 1200
913
+ },
914
+ {
915
+ "loss": 1.0913,
916
+ "grad_norm": 0.34191203117370605,
917
+ "learning_rate": 8.070546497469829e-05,
918
+ "epoch": 1.2124248496993988,
919
+ "step": 1210
920
+ },
921
+ {
922
+ "loss": 1.0882,
923
+ "grad_norm": 0.36975690722465515,
924
+ "learning_rate": 7.89921564985657e-05,
925
+ "epoch": 1.2224448897795592,
926
+ "step": 1220
927
+ },
928
+ {
929
+ "loss": 1.0959,
930
+ "grad_norm": 0.35831448435783386,
931
+ "learning_rate": 7.728527575028426e-05,
932
+ "epoch": 1.2324649298597194,
933
+ "step": 1230
934
+ },
935
+ {
936
+ "loss": 1.099,
937
+ "grad_norm": 0.3613387644290924,
938
+ "learning_rate": 7.558534498074204e-05,
939
+ "epoch": 1.2424849699398797,
940
+ "step": 1240
941
+ },
942
+ {
943
+ "loss": 1.0867,
944
+ "grad_norm": 0.3645046055316925,
945
+ "learning_rate": 7.389288431435603e-05,
946
+ "epoch": 1.25250501002004,
947
+ "step": 1250
948
+ },
949
+ {
950
+ "loss": 1.0901,
951
+ "grad_norm": 0.3511161208152771,
952
+ "learning_rate": 7.220841158993056e-05,
953
+ "epoch": 1.2625250501002003,
954
+ "step": 1260
955
+ },
956
+ {
957
+ "loss": 1.0928,
958
+ "grad_norm": 0.3355962932109833,
959
+ "learning_rate": 7.053244220221546e-05,
960
+ "epoch": 1.2725450901803608,
961
+ "step": 1270
962
+ },
963
+ {
964
+ "loss": 1.1051,
965
+ "grad_norm": 0.3608781695365906,
966
+ "learning_rate": 6.886548894421166e-05,
967
+ "epoch": 1.282565130260521,
968
+ "step": 1280
969
+ },
970
+ {
971
+ "loss": 1.0771,
972
+ "grad_norm": 0.3543643057346344,
973
+ "learning_rate": 6.720806185027281e-05,
974
+ "epoch": 1.2925851703406814,
975
+ "step": 1290
976
+ },
977
+ {
978
+ "loss": 1.1026,
979
+ "grad_norm": 0.3539983034133911,
980
+ "learning_rate": 6.55606680400513e-05,
981
+ "epoch": 1.3026052104208417,
982
+ "step": 1300
983
+ },
984
+ {
985
+ "loss": 1.0764,
986
+ "grad_norm": 0.35117045044898987,
987
+ "learning_rate": 6.392381156333572e-05,
988
+ "epoch": 1.3126252505010019,
989
+ "step": 1310
990
+ },
991
+ {
992
+ "loss": 1.0734,
993
+ "grad_norm": 0.35716721415519714,
994
+ "learning_rate": 6.229799324582782e-05,
995
+ "epoch": 1.3226452905811623,
996
+ "step": 1320
997
+ },
998
+ {
999
+ "loss": 1.0889,
1000
+ "grad_norm": 0.34911802411079407,
1001
+ "learning_rate": 6.068371053590582e-05,
1002
+ "epoch": 1.3326653306613228,
1003
+ "step": 1330
1004
+ },
1005
+ {
1006
+ "eval_loss": 1.1338779926300049,
1007
+ "eval_runtime": 67.8228,
1008
+ "eval_samples_per_second": 37.17,
1009
+ "eval_steps_per_second": 9.304,
1010
+ "epoch": 1.3326653306613228,
1011
+ "step": 1330
1012
+ },
1013
+ {
1014
+ "loss": 1.0902,
1015
+ "grad_norm": 0.3515984117984772,
1016
+ "learning_rate": 5.9081457352421254e-05,
1017
+ "epoch": 1.342685370741483,
1018
+ "step": 1340
1019
+ },
1020
+ {
1021
+ "loss": 1.0822,
1022
+ "grad_norm": 0.353769987821579,
1023
+ "learning_rate": 5.7491723933575395e-05,
1024
+ "epoch": 1.3527054108216432,
1025
+ "step": 1350
1026
+ },
1027
+ {
1028
+ "loss": 1.0729,
1029
+ "grad_norm": 0.36617526412010193,
1030
+ "learning_rate": 5.5914996686922305e-05,
1031
+ "epoch": 1.3627254509018036,
1032
+ "step": 1360
1033
+ },
1034
+ {
1035
+ "loss": 1.0911,
1036
+ "grad_norm": 0.3742637038230896,
1037
+ "learning_rate": 5.4351758040543424e-05,
1038
+ "epoch": 1.3727454909819639,
1039
+ "step": 1370
1040
+ },
1041
+ {
1042
+ "loss": 1.0858,
1043
+ "grad_norm": 0.3658939003944397,
1044
+ "learning_rate": 5.280248629544027e-05,
1045
+ "epoch": 1.3827655310621243,
1046
+ "step": 1380
1047
+ },
1048
+ {
1049
+ "loss": 1.0966,
1050
+ "grad_norm": 0.35165053606033325,
1051
+ "learning_rate": 5.1267655479189416e-05,
1052
+ "epoch": 1.3927855711422845,
1053
+ "step": 1390
1054
+ },
1055
+ {
1056
+ "loss": 1.0738,
1057
+ "grad_norm": 0.359625905752182,
1058
+ "learning_rate": 4.974773520090541e-05,
1059
+ "epoch": 1.402805611222445,
1060
+ "step": 1400
1061
+ },
1062
+ {
1063
+ "loss": 1.0833,
1064
+ "grad_norm": 0.3560248613357544,
1065
+ "learning_rate": 4.8243190507555314e-05,
1066
+ "epoch": 1.4128256513026052,
1067
+ "step": 1410
1068
+ },
1069
+ {
1070
+ "loss": 1.0768,
1071
+ "grad_norm": 0.3535526394844055,
1072
+ "learning_rate": 4.675448174166912e-05,
1073
+ "epoch": 1.4228456913827654,
1074
+ "step": 1420
1075
+ },
1076
+ {
1077
+ "loss": 1.0757,
1078
+ "grad_norm": 0.3635563850402832,
1079
+ "learning_rate": 4.5282064400489943e-05,
1080
+ "epoch": 1.4328657314629258,
1081
+ "step": 1430
1082
+ },
1083
+ {
1084
+ "loss": 1.0941,
1085
+ "grad_norm": 0.34245678782463074,
1086
+ "learning_rate": 4.382638899660613e-05,
1087
+ "epoch": 1.4428857715430863,
1088
+ "step": 1440
1089
+ },
1090
+ {
1091
+ "loss": 1.082,
1092
+ "grad_norm": 0.3664350211620331,
1093
+ "learning_rate": 4.238790092010897e-05,
1094
+ "epoch": 1.4529058116232465,
1095
+ "step": 1450
1096
+ },
1097
+ {
1098
+ "loss": 1.0803,
1099
+ "grad_norm": 0.35511618852615356,
1100
+ "learning_rate": 4.096704030231767e-05,
1101
+ "epoch": 1.4629258517034067,
1102
+ "step": 1460
1103
+ },
1104
+ {
1105
+ "eval_loss": 1.1275933980941772,
1106
+ "eval_runtime": 68.2799,
1107
+ "eval_samples_per_second": 36.922,
1108
+ "eval_steps_per_second": 9.241,
1109
+ "epoch": 1.465931863727455,
1110
+ "step": 1463
1111
+ },
1112
+ {
1113
+ "loss": 1.0844,
1114
+ "grad_norm": 0.36960098147392273,
1115
+ "learning_rate": 3.956424188111314e-05,
1116
+ "epoch": 1.4729458917835672,
1117
+ "step": 1470
1118
+ },
1119
+ {
1120
+ "loss": 1.0896,
1121
+ "grad_norm": 0.35100260376930237,
1122
+ "learning_rate": 3.8179934867922016e-05,
1123
+ "epoch": 1.4829659318637274,
1124
+ "step": 1480
1125
+ },
1126
+ {
1127
+ "loss": 1.0804,
1128
+ "grad_norm": 0.3652225732803345,
1129
+ "learning_rate": 3.681454281639195e-05,
1130
+ "epoch": 1.4929859719438878,
1131
+ "step": 1490
1132
+ },
1133
+ {
1134
+ "loss": 1.0912,
1135
+ "grad_norm": 0.36614513397216797,
1136
+ "learning_rate": 3.54684834927976e-05,
1137
+ "epoch": 1.503006012024048,
1138
+ "step": 1500
1139
+ },
1140
+ {
1141
+ "loss": 1.0817,
1142
+ "grad_norm": 0.3566560447216034,
1143
+ "learning_rate": 3.4142168748217405e-05,
1144
+ "epoch": 1.5130260521042085,
1145
+ "step": 1510
1146
+ },
1147
+ {
1148
+ "loss": 1.0955,
1149
+ "grad_norm": 0.34692510962486267,
1150
+ "learning_rate": 3.2836004392520624e-05,
1151
+ "epoch": 1.5230460921843687,
1152
+ "step": 1520
1153
+ },
1154
+ {
1155
+ "loss": 1.0758,
1156
+ "grad_norm": 0.3460650146007538,
1157
+ "learning_rate": 3.1550390070202255e-05,
1158
+ "epoch": 1.533066132264529,
1159
+ "step": 1530
1160
+ },
1161
+ {
1162
+ "loss": 1.0842,
1163
+ "grad_norm": 0.3645261228084564,
1164
+ "learning_rate": 3.0285719138104628e-05,
1165
+ "epoch": 1.5430861723446894,
1166
+ "step": 1540
1167
+ },
1168
+ {
1169
+ "loss": 1.0795,
1170
+ "grad_norm": 0.3634505867958069,
1171
+ "learning_rate": 2.9042378545063e-05,
1172
+ "epoch": 1.5531062124248498,
1173
+ "step": 1550
1174
+ },
1175
+ {
1176
+ "loss": 1.0841,
1177
+ "grad_norm": 0.36353570222854614,
1178
+ "learning_rate": 2.7820748713511414e-05,
1179
+ "epoch": 1.56312625250501,
1180
+ "step": 1560
1181
+ },
1182
+ {
1183
+ "loss": 1.0884,
1184
+ "grad_norm": 0.3511188328266144,
1185
+ "learning_rate": 2.662120342308557e-05,
1186
+ "epoch": 1.5731462925851702,
1187
+ "step": 1570
1188
+ },
1189
+ {
1190
+ "loss": 1.0697,
1191
+ "grad_norm": 0.37336093187332153,
1192
+ "learning_rate": 2.5444109696258434e-05,
1193
+ "epoch": 1.5831663326653307,
1194
+ "step": 1580
1195
+ },
1196
+ {
1197
+ "loss": 1.0713,
1198
+ "grad_norm": 0.370236873626709,
1199
+ "learning_rate": 2.428982768604281e-05,
1200
+ "epoch": 1.5931863727454911,
1201
+ "step": 1590
1202
+ },
1203
+ {
1204
+ "eval_loss": 1.1230673789978027,
1205
+ "eval_runtime": 68.22,
1206
+ "eval_samples_per_second": 36.954,
1207
+ "eval_steps_per_second": 9.249,
1208
+ "epoch": 1.5991983967935872,
1209
+ "step": 1596
1210
+ },
1211
+ {
1212
+ "loss": 1.0832,
1213
+ "grad_norm": 0.3588917553424835,
1214
+ "learning_rate": 2.3158710565796348e-05,
1215
+ "epoch": 1.6032064128256514,
1216
+ "step": 1600
1217
+ },
1218
+ {
1219
+ "loss": 1.0861,
1220
+ "grad_norm": 0.34933748841285706,
1221
+ "learning_rate": 2.2051104421161607e-05,
1222
+ "epoch": 1.6132264529058116,
1223
+ "step": 1610
1224
+ },
1225
+ {
1226
+ "loss": 1.0667,
1227
+ "grad_norm": 0.36681294441223145,
1228
+ "learning_rate": 2.0967348144174924e-05,
1229
+ "epoch": 1.623246492985972,
1230
+ "step": 1620
1231
+ },
1232
+ {
1233
+ "loss": 1.0567,
1234
+ "grad_norm": 0.34613531827926636,
1235
+ "learning_rate": 1.9907773329576375e-05,
1236
+ "epoch": 1.6332665330661322,
1237
+ "step": 1630
1238
+ },
1239
+ {
1240
+ "loss": 1.082,
1241
+ "grad_norm": 0.35560983419418335,
1242
+ "learning_rate": 1.887270417335241e-05,
1243
+ "epoch": 1.6432865731462925,
1244
+ "step": 1640
1245
+ },
1246
+ {
1247
+ "loss": 1.0606,
1248
+ "grad_norm": 0.3562234342098236,
1249
+ "learning_rate": 1.7862457373542095e-05,
1250
+ "epoch": 1.653306613226453,
1251
+ "step": 1650
1252
+ },
1253
+ {
1254
+ "loss": 1.0716,
1255
+ "grad_norm": 0.3679576516151428,
1256
+ "learning_rate": 1.6877342033337872e-05,
1257
+ "epoch": 1.6633266533066133,
1258
+ "step": 1660
1259
+ },
1260
+ {
1261
+ "loss": 1.0546,
1262
+ "grad_norm": 0.36080437898635864,
1263
+ "learning_rate": 1.5917659566509746e-05,
1264
+ "epoch": 1.6733466933867736,
1265
+ "step": 1670
1266
+ },
1267
+ {
1268
+ "loss": 1.0934,
1269
+ "grad_norm": 0.36290815472602844,
1270
+ "learning_rate": 1.4983703605182242e-05,
1271
+ "epoch": 1.6833667334669338,
1272
+ "step": 1680
1273
+ },
1274
+ {
1275
+ "loss": 1.0773,
1276
+ "grad_norm": 0.365818053483963,
1277
+ "learning_rate": 1.4075759909992548e-05,
1278
+ "epoch": 1.6933867735470942,
1279
+ "step": 1690
1280
+ },
1281
+ {
1282
+ "loss": 1.0882,
1283
+ "grad_norm": 0.35331591963768005,
1284
+ "learning_rate": 1.3194106282656827e-05,
1285
+ "epoch": 1.7034068136272547,
1286
+ "step": 1700
1287
+ },
1288
+ {
1289
+ "loss": 1.065,
1290
+ "grad_norm": 0.3647233247756958,
1291
+ "learning_rate": 1.2339012480971712e-05,
1292
+ "epoch": 1.7134268537074149,
1293
+ "step": 1710
1294
+ },
1295
+ {
1296
+ "loss": 1.0634,
1297
+ "grad_norm": 0.36989837884902954,
1298
+ "learning_rate": 1.1510740136277109e-05,
1299
+ "epoch": 1.723446893787575,
1300
+ "step": 1720
1301
+ },
1302
+ {
1303
+ "eval_loss": 1.1204578876495361,
1304
+ "eval_runtime": 68.1731,
1305
+ "eval_samples_per_second": 36.979,
1306
+ "eval_steps_per_second": 9.256,
1307
+ "epoch": 1.7324649298597194,
1308
+ "step": 1729
1309
+ },
1310
+ {
1311
+ "loss": 1.066,
1312
+ "grad_norm": 0.36859068274497986,
1313
+ "learning_rate": 1.070954267340547e-05,
1314
+ "epoch": 1.7334669338677355,
1315
+ "step": 1730
1316
+ },
1317
+ {
1318
+ "loss": 1.0864,
1319
+ "grad_norm": 0.3574073314666748,
1320
+ "learning_rate": 9.9356652331417e-06,
1321
+ "epoch": 1.7434869739478958,
1322
+ "step": 1740
1323
+ },
1324
+ {
1325
+ "loss": 1.0706,
1326
+ "grad_norm": 0.3612259030342102,
1327
+ "learning_rate": 9.189344597218153e-06,
1328
+ "epoch": 1.753507014028056,
1329
+ "step": 1750
1330
+ },
1331
+ {
1332
+ "loss": 1.0713,
1333
+ "grad_norm": 0.3700193464756012,
1334
+ "learning_rate": 8.470809115866818e-06,
1335
+ "epoch": 1.7635270541082164,
1336
+ "step": 1760
1337
+ },
1338
+ {
1339
+ "loss": 1.0803,
1340
+ "grad_norm": 0.3535062074661255,
1341
+ "learning_rate": 7.780278637951521e-06,
1342
+ "epoch": 1.7735470941883769,
1343
+ "step": 1770
1344
+ },
1345
+ {
1346
+ "loss": 1.0647,
1347
+ "grad_norm": 0.35681986808776855,
1348
+ "learning_rate": 7.117964443701242e-06,
1349
+ "epoch": 1.783567134268537,
1350
+ "step": 1780
1351
+ },
1352
+ {
1353
+ "loss": 1.0669,
1354
+ "grad_norm": 0.3624560832977295,
1355
+ "learning_rate": 6.484069180065055e-06,
1356
+ "epoch": 1.7935871743486973,
1357
+ "step": 1790
1358
+ },
1359
+ {
1360
+ "loss": 1.0719,
1361
+ "grad_norm": 0.35827717185020447,
1362
+ "learning_rate": 5.8787867987087355e-06,
1363
+ "epoch": 1.8036072144288577,
1364
+ "step": 1800
1365
+ },
1366
+ {
1367
+ "loss": 1.0855,
1368
+ "grad_norm": 0.3589949905872345,
1369
+ "learning_rate": 5.302302496671641e-06,
1370
+ "epoch": 1.8136272545090182,
1371
+ "step": 1810
1372
+ },
1373
+ {
1374
+ "loss": 1.0722,
1375
+ "grad_norm": 0.358090341091156,
1376
+ "learning_rate": 4.754792659702468e-06,
1377
+ "epoch": 1.8236472945891784,
1378
+ "step": 1820
1379
+ },
1380
+ {
1381
+ "loss": 1.0719,
1382
+ "grad_norm": 0.3602781593799591,
1383
+ "learning_rate": 4.236424808290751e-06,
1384
+ "epoch": 1.8336673346693386,
1385
+ "step": 1830
1386
+ },
1387
+ {
1388
+ "loss": 1.0815,
1389
+ "grad_norm": 0.3476168215274811,
1390
+ "learning_rate": 3.7473575464110455e-06,
1391
+ "epoch": 1.843687374749499,
1392
+ "step": 1840
1393
+ },
1394
+ {
1395
+ "loss": 1.0774,
1396
+ "grad_norm": 0.3502495288848877,
1397
+ "learning_rate": 3.2877405129950967e-06,
1398
+ "epoch": 1.8537074148296593,
1399
+ "step": 1850
1400
+ },
1401
+ {
1402
+ "loss": 1.0736,
1403
+ "grad_norm": 0.3665917217731476,
1404
+ "learning_rate": 2.857714336147188e-06,
1405
+ "epoch": 1.8637274549098195,
1406
+ "step": 1860
1407
+ },
1408
+ {
1409
+ "eval_loss": 1.1194243431091309,
1410
+ "eval_runtime": 68.2716,
1411
+ "eval_samples_per_second": 36.926,
1412
+ "eval_steps_per_second": 9.242,
1413
+ "epoch": 1.8657314629258517,
1414
+ "step": 1862
1415
+ },
1416
+ {
1417
+ "loss": 1.0802,
1418
+ "grad_norm": 0.36012518405914307,
1419
+ "learning_rate": 2.457410590116427e-06,
1420
+ "epoch": 1.87374749498998,
1421
+ "step": 1870
1422
+ },
1423
+ {
1424
+ "loss": 1.0787,
1425
+ "grad_norm": 0.3560042977333069,
1426
+ "learning_rate": 2.086951755039168e-06,
1427
+ "epoch": 1.8837675350701404,
1428
+ "step": 1880
1429
+ },
1430
+ {
1431
+ "loss": 1.0742,
1432
+ "grad_norm": 0.36220309138298035,
1433
+ "learning_rate": 1.746451179464137e-06,
1434
+ "epoch": 1.8937875751503006,
1435
+ "step": 1890
1436
+ },
1437
+ {
1438
+ "loss": 1.0727,
1439
+ "grad_norm": 0.3498152196407318,
1440
+ "learning_rate": 1.4360130456712695e-06,
1441
+ "epoch": 1.9038076152304608,
1442
+ "step": 1900
1443
+ },
1444
+ {
1445
+ "loss": 1.0738,
1446
+ "grad_norm": 0.3657923936843872,
1447
+ "learning_rate": 1.1557323377953456e-06,
1448
+ "epoch": 1.9138276553106213,
1449
+ "step": 1910
1450
+ },
1451
+ {
1452
+ "loss": 1.0568,
1453
+ "grad_norm": 0.36668485403060913,
1454
+ "learning_rate": 9.056948127638687e-07,
1455
+ "epoch": 1.9238476953907817,
1456
+ "step": 1920
1457
+ },
1458
+ {
1459
+ "loss": 1.0568,
1460
+ "grad_norm": 0.3519572615623474,
1461
+ "learning_rate": 6.859769740582e-07,
1462
+ "epoch": 1.933867735470942,
1463
+ "step": 1930
1464
+ },
1465
+ {
1466
+ "loss": 1.0621,
1467
+ "grad_norm": 0.3648887574672699,
1468
+ "learning_rate": 4.966460483059044e-07,
1469
+ "epoch": 1.9438877755511021,
1470
+ "step": 1940
1471
+ },
1472
+ {
1473
+ "loss": 1.0688,
1474
+ "grad_norm": 0.3495730757713318,
1475
+ "learning_rate": 3.3775996471160366e-07,
1476
+ "epoch": 1.9539078156312626,
1477
+ "step": 1950
1478
+ },
1479
+ {
1480
+ "loss": 1.0652,
1481
+ "grad_norm": 0.3570130169391632,
1482
+ "learning_rate": 2.093673373324334e-07,
1483
+ "epoch": 1.9639278557114228,
1484
+ "step": 1960
1485
+ },
1486
+ {
1487
+ "loss": 1.0822,
1488
+ "grad_norm": 0.3690868020057678,
1489
+ "learning_rate": 1.1150745020376275e-07,
1490
+ "epoch": 1.973947895791583,
1491
+ "step": 1970
1492
+ },
1493
+ {
1494
+ "loss": 1.0665,
1495
+ "grad_norm": 0.3751429319381714,
1496
+ "learning_rate": 4.421024531948703e-08,
1497
+ "epoch": 1.9839679358717435,
1498
+ "step": 1980
1499
+ },
1500
+ {
1501
+ "loss": 1.065,
1502
+ "grad_norm": 0.3617876172065735,
1503
+ "learning_rate": 7.496313470778393e-09,
1504
+ "epoch": 1.993987975951904,
1505
+ "step": 1990
1506
+ },
1507
+ {
1508
+ "eval_loss": 1.1191450357437134,
1509
+ "eval_runtime": 68.3979,
1510
+ "eval_samples_per_second": 36.858,
1511
+ "eval_steps_per_second": 9.225,
1512
+ "epoch": 1.9989979959919841,
1513
+ "step": 1995
1514
+ },
1515
+ {
1516
+ "train_runtime": 6834.1445,
1517
+ "train_samples_per_second": 14.016,
1518
+ "train_steps_per_second": 0.292,
1519
+ "total_flos": 7.260644379510651e+17,
1520
+ "train_loss": 1.1743444665400442,
1521
+ "epoch": 2.0,
1522
+ "step": 1996
1523
+ }
1524
+ ]
train/training_loss.png ADDED
train/validation_loss.png ADDED