andrea colombo commited on
Commit
638a29a
·
1 Parent(s): afb6710

load model

Browse files
README.md CHANGED
@@ -1,12 +1,18 @@
1
  ---
2
- license: apache-2.0
3
- datasets:
4
- - andre156/US-Public-Laws-Citations
5
- language:
6
- - en
7
- base_model:
8
- - mistralai/Mistral-7B-Instruct-v0.1
9
- pipeline_tag: text2text-generation
10
- tags:
11
- - legal
12
- ---
 
 
 
 
 
 
 
1
  ---
2
+ base_model: mistralai/Mistral-7B-Instruct-v0.1
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Model ID
7
+
8
+ A Mistral-7B-instruct-v0.1 model to extract the references from a text of US Public law articles (titles). It is fine-tuned over a set of 18k high quality law title-references pairs.
9
+
10
+ ## Model Details
11
+
12
+ ### Model Description
13
+
14
+ Finetuned from model: mistralai/Mistral-7B-Instruct-v0.1
15
+ - **Developed by:** Andrea Colombo, Politecnico di Milano
16
+ - **Model type:** text generation
17
+ - **License:** Apache 2.0
18
+ - **Finetuned from model:** mistralai/Mistral-7B-Instruct-v0.1
adapter_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "mistralai/Mistral-7B-Instruct-v0.1",
5
+ "bias": "none",
6
+ "fan_in_fan_out": false,
7
+ "inference_mode": true,
8
+ "init_lora_weights": true,
9
+ "layer_replication": null,
10
+ "layers_pattern": null,
11
+ "layers_to_transform": null,
12
+ "loftq_config": {},
13
+ "lora_alpha": 16,
14
+ "lora_dropout": 0.1,
15
+ "megatron_config": null,
16
+ "megatron_core": "megatron.core",
17
+ "modules_to_save": null,
18
+ "peft_type": "LORA",
19
+ "r": 64,
20
+ "rank_pattern": {},
21
+ "revision": null,
22
+ "target_modules": [
23
+ "v_proj",
24
+ "q_proj"
25
+ ],
26
+ "task_type": "CAUSAL_LM",
27
+ "use_dora": false,
28
+ "use_rslora": false
29
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70890140262d3dfa4b86c20bcc5497c738d8af4d85abf15adee7ed7d5fbeec0d
3
+ size 109069176
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1837c9e1635c5041d2db9e81afe7dd9b17b6cc109d1079a045c3ca56237f4bc6
3
+ size 218211962
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bea02b89e1e21fa139303822750db2588d1148fdd1899386767d0c9bfc5c16a
3
+ size 14244
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96bb533d38d943bcc7cc68d3e30ac50ccd844c5a3937441bb2ab29a159144517
3
+ size 1064
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "</s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "additional_special_tokens": [],
32
+ "bos_token": "<s>",
33
+ "chat_template": "{%- if messages[0]['role'] == 'system' %}\n {%- set system_message = messages[0]['content'] %}\n {%- set loop_messages = messages[1:] %}\n{%- else %}\n {%- set loop_messages = messages %}\n{%- endif %}\n\n{{- bos_token }}\n{%- for message in loop_messages %}\n {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}\n {{- raise_exception('After the optional system message, conversation roles must alternate user/assistant/user/assistant/...') }}\n {%- endif %}\n {%- if message['role'] == 'user' %}\n {%- if loop.first and system_message is defined %}\n {{- ' [INST] ' + system_message + '\\n\\n' + message['content'] + ' [/INST]' }}\n {%- else %}\n {{- ' [INST] ' + message['content'] + ' [/INST]' }}\n {%- endif %}\n {%- elif message['role'] == 'assistant' %}\n {{- ' ' + message['content'] + eos_token}}\n {%- else %}\n {{- raise_exception('Only user and assistant roles are supported, with the exception of an initial optional system message!') }}\n {%- endif %}\n{%- endfor %}\n",
34
+ "clean_up_tokenization_spaces": false,
35
+ "eos_token": "</s>",
36
+ "legacy": false,
37
+ "model_max_length": 1000000000000000019884624838656,
38
+ "pad_token": "</s>",
39
+ "sp_model_kwargs": {},
40
+ "spaces_between_special_tokens": false,
41
+ "tokenizer_class": "LlamaTokenizer",
42
+ "unk_token": "<unk>",
43
+ "use_default_system_prompt": false
44
+ }
trainer_state.json ADDED
@@ -0,0 +1,2332 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 1.0107625722885132,
3
+ "best_model_checkpoint": "/data/Andre/Ref-Finder-Mistral/checkpoint-3170",
4
+ "epoch": 10.0,
5
+ "eval_steps": 500,
6
+ "global_step": 3170,
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.031545741324921134,
13
+ "grad_norm": 0.5029881000518799,
14
+ "learning_rate": 5e-05,
15
+ "loss": 1.7154,
16
+ "step": 10
17
+ },
18
+ {
19
+ "epoch": 0.06309148264984227,
20
+ "grad_norm": 0.3064497709274292,
21
+ "learning_rate": 5e-05,
22
+ "loss": 1.5963,
23
+ "step": 20
24
+ },
25
+ {
26
+ "epoch": 0.0946372239747634,
27
+ "grad_norm": 0.3118360638618469,
28
+ "learning_rate": 5e-05,
29
+ "loss": 1.5074,
30
+ "step": 30
31
+ },
32
+ {
33
+ "epoch": 0.12618296529968454,
34
+ "grad_norm": 0.33069083094596863,
35
+ "learning_rate": 5e-05,
36
+ "loss": 1.4047,
37
+ "step": 40
38
+ },
39
+ {
40
+ "epoch": 0.15772870662460567,
41
+ "grad_norm": 0.2797032296657562,
42
+ "learning_rate": 5e-05,
43
+ "loss": 1.4167,
44
+ "step": 50
45
+ },
46
+ {
47
+ "epoch": 0.1892744479495268,
48
+ "grad_norm": 0.3190701901912689,
49
+ "learning_rate": 5e-05,
50
+ "loss": 1.3361,
51
+ "step": 60
52
+ },
53
+ {
54
+ "epoch": 0.22082018927444794,
55
+ "grad_norm": 0.3070685863494873,
56
+ "learning_rate": 5e-05,
57
+ "loss": 1.2655,
58
+ "step": 70
59
+ },
60
+ {
61
+ "epoch": 0.25236593059936907,
62
+ "grad_norm": 0.3203960359096527,
63
+ "learning_rate": 5e-05,
64
+ "loss": 1.2295,
65
+ "step": 80
66
+ },
67
+ {
68
+ "epoch": 0.28391167192429023,
69
+ "grad_norm": 0.30132830142974854,
70
+ "learning_rate": 5e-05,
71
+ "loss": 1.2277,
72
+ "step": 90
73
+ },
74
+ {
75
+ "epoch": 0.31545741324921134,
76
+ "grad_norm": 0.3356678783893585,
77
+ "learning_rate": 5e-05,
78
+ "loss": 1.1848,
79
+ "step": 100
80
+ },
81
+ {
82
+ "epoch": 0.3470031545741325,
83
+ "grad_norm": 0.3275781273841858,
84
+ "learning_rate": 5e-05,
85
+ "loss": 1.183,
86
+ "step": 110
87
+ },
88
+ {
89
+ "epoch": 0.3785488958990536,
90
+ "grad_norm": 0.30640777945518494,
91
+ "learning_rate": 5e-05,
92
+ "loss": 1.1488,
93
+ "step": 120
94
+ },
95
+ {
96
+ "epoch": 0.41009463722397477,
97
+ "grad_norm": 0.5068441033363342,
98
+ "learning_rate": 5e-05,
99
+ "loss": 1.147,
100
+ "step": 130
101
+ },
102
+ {
103
+ "epoch": 0.4416403785488959,
104
+ "grad_norm": 0.310285747051239,
105
+ "learning_rate": 5e-05,
106
+ "loss": 1.1908,
107
+ "step": 140
108
+ },
109
+ {
110
+ "epoch": 0.47318611987381703,
111
+ "grad_norm": 0.38677722215652466,
112
+ "learning_rate": 5e-05,
113
+ "loss": 1.1319,
114
+ "step": 150
115
+ },
116
+ {
117
+ "epoch": 0.5047318611987381,
118
+ "grad_norm": 0.3474641740322113,
119
+ "learning_rate": 5e-05,
120
+ "loss": 1.1215,
121
+ "step": 160
122
+ },
123
+ {
124
+ "epoch": 0.5362776025236593,
125
+ "grad_norm": 0.37211593985557556,
126
+ "learning_rate": 5e-05,
127
+ "loss": 1.1503,
128
+ "step": 170
129
+ },
130
+ {
131
+ "epoch": 0.5678233438485805,
132
+ "grad_norm": 0.3207016885280609,
133
+ "learning_rate": 5e-05,
134
+ "loss": 1.182,
135
+ "step": 180
136
+ },
137
+ {
138
+ "epoch": 0.5993690851735016,
139
+ "grad_norm": 0.34209126234054565,
140
+ "learning_rate": 5e-05,
141
+ "loss": 1.1298,
142
+ "step": 190
143
+ },
144
+ {
145
+ "epoch": 0.6309148264984227,
146
+ "grad_norm": 0.3956719934940338,
147
+ "learning_rate": 5e-05,
148
+ "loss": 1.1443,
149
+ "step": 200
150
+ },
151
+ {
152
+ "epoch": 0.6624605678233438,
153
+ "grad_norm": 0.34193623065948486,
154
+ "learning_rate": 5e-05,
155
+ "loss": 1.1148,
156
+ "step": 210
157
+ },
158
+ {
159
+ "epoch": 0.694006309148265,
160
+ "grad_norm": 0.3550577759742737,
161
+ "learning_rate": 5e-05,
162
+ "loss": 1.1091,
163
+ "step": 220
164
+ },
165
+ {
166
+ "epoch": 0.7255520504731862,
167
+ "grad_norm": 0.34275463223457336,
168
+ "learning_rate": 5e-05,
169
+ "loss": 1.1185,
170
+ "step": 230
171
+ },
172
+ {
173
+ "epoch": 0.7570977917981072,
174
+ "grad_norm": 0.36972326040267944,
175
+ "learning_rate": 5e-05,
176
+ "loss": 1.1388,
177
+ "step": 240
178
+ },
179
+ {
180
+ "epoch": 0.7886435331230284,
181
+ "grad_norm": 0.36260902881622314,
182
+ "learning_rate": 5e-05,
183
+ "loss": 1.0982,
184
+ "step": 250
185
+ },
186
+ {
187
+ "epoch": 0.8201892744479495,
188
+ "grad_norm": 0.35559672117233276,
189
+ "learning_rate": 5e-05,
190
+ "loss": 1.1032,
191
+ "step": 260
192
+ },
193
+ {
194
+ "epoch": 0.8517350157728707,
195
+ "grad_norm": 0.3544253706932068,
196
+ "learning_rate": 5e-05,
197
+ "loss": 1.1239,
198
+ "step": 270
199
+ },
200
+ {
201
+ "epoch": 0.8832807570977917,
202
+ "grad_norm": 0.3803843855857849,
203
+ "learning_rate": 5e-05,
204
+ "loss": 1.1006,
205
+ "step": 280
206
+ },
207
+ {
208
+ "epoch": 0.9148264984227129,
209
+ "grad_norm": 0.3776736855506897,
210
+ "learning_rate": 5e-05,
211
+ "loss": 1.1001,
212
+ "step": 290
213
+ },
214
+ {
215
+ "epoch": 0.9463722397476341,
216
+ "grad_norm": 0.4238007068634033,
217
+ "learning_rate": 5e-05,
218
+ "loss": 1.0968,
219
+ "step": 300
220
+ },
221
+ {
222
+ "epoch": 0.9779179810725552,
223
+ "grad_norm": 0.4062643051147461,
224
+ "learning_rate": 5e-05,
225
+ "loss": 1.1188,
226
+ "step": 310
227
+ },
228
+ {
229
+ "epoch": 1.0,
230
+ "eval_loss": 1.1006102561950684,
231
+ "eval_runtime": 66.4381,
232
+ "eval_samples_per_second": 4.786,
233
+ "eval_steps_per_second": 0.602,
234
+ "step": 317
235
+ },
236
+ {
237
+ "epoch": 1.0094637223974763,
238
+ "grad_norm": 0.3485482633113861,
239
+ "learning_rate": 5e-05,
240
+ "loss": 1.0843,
241
+ "step": 320
242
+ },
243
+ {
244
+ "epoch": 1.0410094637223974,
245
+ "grad_norm": 0.40558719635009766,
246
+ "learning_rate": 5e-05,
247
+ "loss": 1.097,
248
+ "step": 330
249
+ },
250
+ {
251
+ "epoch": 1.0725552050473186,
252
+ "grad_norm": 0.4074763059616089,
253
+ "learning_rate": 5e-05,
254
+ "loss": 1.0697,
255
+ "step": 340
256
+ },
257
+ {
258
+ "epoch": 1.1041009463722398,
259
+ "grad_norm": 0.40961453318595886,
260
+ "learning_rate": 5e-05,
261
+ "loss": 1.0635,
262
+ "step": 350
263
+ },
264
+ {
265
+ "epoch": 1.135646687697161,
266
+ "grad_norm": 0.3752257227897644,
267
+ "learning_rate": 5e-05,
268
+ "loss": 1.0936,
269
+ "step": 360
270
+ },
271
+ {
272
+ "epoch": 1.167192429022082,
273
+ "grad_norm": 0.3867760896682739,
274
+ "learning_rate": 5e-05,
275
+ "loss": 1.0782,
276
+ "step": 370
277
+ },
278
+ {
279
+ "epoch": 1.1987381703470033,
280
+ "grad_norm": 0.4072268307209015,
281
+ "learning_rate": 5e-05,
282
+ "loss": 1.0574,
283
+ "step": 380
284
+ },
285
+ {
286
+ "epoch": 1.2302839116719242,
287
+ "grad_norm": 0.3942580819129944,
288
+ "learning_rate": 5e-05,
289
+ "loss": 1.1081,
290
+ "step": 390
291
+ },
292
+ {
293
+ "epoch": 1.2618296529968454,
294
+ "grad_norm": 0.4262318015098572,
295
+ "learning_rate": 5e-05,
296
+ "loss": 1.0821,
297
+ "step": 400
298
+ },
299
+ {
300
+ "epoch": 1.2933753943217665,
301
+ "grad_norm": 0.39012083411216736,
302
+ "learning_rate": 5e-05,
303
+ "loss": 1.0712,
304
+ "step": 410
305
+ },
306
+ {
307
+ "epoch": 1.3249211356466877,
308
+ "grad_norm": 0.4160712659358978,
309
+ "learning_rate": 5e-05,
310
+ "loss": 1.1106,
311
+ "step": 420
312
+ },
313
+ {
314
+ "epoch": 1.3564668769716088,
315
+ "grad_norm": 0.3966641128063202,
316
+ "learning_rate": 5e-05,
317
+ "loss": 1.0411,
318
+ "step": 430
319
+ },
320
+ {
321
+ "epoch": 1.38801261829653,
322
+ "grad_norm": 0.3720882833003998,
323
+ "learning_rate": 5e-05,
324
+ "loss": 1.0815,
325
+ "step": 440
326
+ },
327
+ {
328
+ "epoch": 1.4195583596214512,
329
+ "grad_norm": 0.396207332611084,
330
+ "learning_rate": 5e-05,
331
+ "loss": 1.0462,
332
+ "step": 450
333
+ },
334
+ {
335
+ "epoch": 1.4511041009463723,
336
+ "grad_norm": 0.38164132833480835,
337
+ "learning_rate": 5e-05,
338
+ "loss": 1.0891,
339
+ "step": 460
340
+ },
341
+ {
342
+ "epoch": 1.4826498422712935,
343
+ "grad_norm": 0.38896164298057556,
344
+ "learning_rate": 5e-05,
345
+ "loss": 1.0905,
346
+ "step": 470
347
+ },
348
+ {
349
+ "epoch": 1.5141955835962144,
350
+ "grad_norm": 0.4327830374240875,
351
+ "learning_rate": 5e-05,
352
+ "loss": 1.1205,
353
+ "step": 480
354
+ },
355
+ {
356
+ "epoch": 1.5457413249211358,
357
+ "grad_norm": 0.423364520072937,
358
+ "learning_rate": 5e-05,
359
+ "loss": 1.0477,
360
+ "step": 490
361
+ },
362
+ {
363
+ "epoch": 1.5772870662460567,
364
+ "grad_norm": 0.4212876558303833,
365
+ "learning_rate": 5e-05,
366
+ "loss": 1.12,
367
+ "step": 500
368
+ },
369
+ {
370
+ "epoch": 1.608832807570978,
371
+ "grad_norm": 0.3814271092414856,
372
+ "learning_rate": 5e-05,
373
+ "loss": 1.0695,
374
+ "step": 510
375
+ },
376
+ {
377
+ "epoch": 1.640378548895899,
378
+ "grad_norm": 0.3973582983016968,
379
+ "learning_rate": 5e-05,
380
+ "loss": 1.0832,
381
+ "step": 520
382
+ },
383
+ {
384
+ "epoch": 1.6719242902208202,
385
+ "grad_norm": 0.4016555845737457,
386
+ "learning_rate": 5e-05,
387
+ "loss": 1.077,
388
+ "step": 530
389
+ },
390
+ {
391
+ "epoch": 1.7034700315457414,
392
+ "grad_norm": 0.4084228575229645,
393
+ "learning_rate": 5e-05,
394
+ "loss": 1.0674,
395
+ "step": 540
396
+ },
397
+ {
398
+ "epoch": 1.7350157728706623,
399
+ "grad_norm": 0.4218040406703949,
400
+ "learning_rate": 5e-05,
401
+ "loss": 1.0464,
402
+ "step": 550
403
+ },
404
+ {
405
+ "epoch": 1.7665615141955837,
406
+ "grad_norm": 0.3857240080833435,
407
+ "learning_rate": 5e-05,
408
+ "loss": 1.0656,
409
+ "step": 560
410
+ },
411
+ {
412
+ "epoch": 1.7981072555205047,
413
+ "grad_norm": 0.3926863968372345,
414
+ "learning_rate": 5e-05,
415
+ "loss": 1.056,
416
+ "step": 570
417
+ },
418
+ {
419
+ "epoch": 1.8296529968454258,
420
+ "grad_norm": 0.4352160096168518,
421
+ "learning_rate": 5e-05,
422
+ "loss": 1.0443,
423
+ "step": 580
424
+ },
425
+ {
426
+ "epoch": 1.861198738170347,
427
+ "grad_norm": 0.4079754650592804,
428
+ "learning_rate": 5e-05,
429
+ "loss": 1.0502,
430
+ "step": 590
431
+ },
432
+ {
433
+ "epoch": 1.8927444794952681,
434
+ "grad_norm": 0.40210971236228943,
435
+ "learning_rate": 5e-05,
436
+ "loss": 1.0613,
437
+ "step": 600
438
+ },
439
+ {
440
+ "epoch": 1.9242902208201893,
441
+ "grad_norm": 0.3993563950061798,
442
+ "learning_rate": 5e-05,
443
+ "loss": 1.0341,
444
+ "step": 610
445
+ },
446
+ {
447
+ "epoch": 1.9558359621451105,
448
+ "grad_norm": 0.47853732109069824,
449
+ "learning_rate": 5e-05,
450
+ "loss": 1.0071,
451
+ "step": 620
452
+ },
453
+ {
454
+ "epoch": 1.9873817034700316,
455
+ "grad_norm": 0.42926380038261414,
456
+ "learning_rate": 5e-05,
457
+ "loss": 1.0383,
458
+ "step": 630
459
+ },
460
+ {
461
+ "epoch": 2.0,
462
+ "eval_loss": 1.0646495819091797,
463
+ "eval_runtime": 66.4837,
464
+ "eval_samples_per_second": 4.783,
465
+ "eval_steps_per_second": 0.602,
466
+ "step": 634
467
+ },
468
+ {
469
+ "epoch": 2.0189274447949526,
470
+ "grad_norm": 0.3886430561542511,
471
+ "learning_rate": 5e-05,
472
+ "loss": 1.0667,
473
+ "step": 640
474
+ },
475
+ {
476
+ "epoch": 2.050473186119874,
477
+ "grad_norm": 0.4253116846084595,
478
+ "learning_rate": 5e-05,
479
+ "loss": 1.0323,
480
+ "step": 650
481
+ },
482
+ {
483
+ "epoch": 2.082018927444795,
484
+ "grad_norm": 0.40994375944137573,
485
+ "learning_rate": 5e-05,
486
+ "loss": 1.0027,
487
+ "step": 660
488
+ },
489
+ {
490
+ "epoch": 2.1135646687697163,
491
+ "grad_norm": 0.3847936689853668,
492
+ "learning_rate": 5e-05,
493
+ "loss": 1.0022,
494
+ "step": 670
495
+ },
496
+ {
497
+ "epoch": 2.145110410094637,
498
+ "grad_norm": 0.43215593695640564,
499
+ "learning_rate": 5e-05,
500
+ "loss": 1.0564,
501
+ "step": 680
502
+ },
503
+ {
504
+ "epoch": 2.176656151419558,
505
+ "grad_norm": 0.4463648498058319,
506
+ "learning_rate": 5e-05,
507
+ "loss": 1.0277,
508
+ "step": 690
509
+ },
510
+ {
511
+ "epoch": 2.2082018927444795,
512
+ "grad_norm": 0.42896410822868347,
513
+ "learning_rate": 5e-05,
514
+ "loss": 1.0466,
515
+ "step": 700
516
+ },
517
+ {
518
+ "epoch": 2.2397476340694005,
519
+ "grad_norm": 0.4028797149658203,
520
+ "learning_rate": 5e-05,
521
+ "loss": 1.0588,
522
+ "step": 710
523
+ },
524
+ {
525
+ "epoch": 2.271293375394322,
526
+ "grad_norm": 0.4177733361721039,
527
+ "learning_rate": 5e-05,
528
+ "loss": 1.0519,
529
+ "step": 720
530
+ },
531
+ {
532
+ "epoch": 2.302839116719243,
533
+ "grad_norm": 0.42829203605651855,
534
+ "learning_rate": 5e-05,
535
+ "loss": 1.0202,
536
+ "step": 730
537
+ },
538
+ {
539
+ "epoch": 2.334384858044164,
540
+ "grad_norm": 0.5054190158843994,
541
+ "learning_rate": 5e-05,
542
+ "loss": 0.9972,
543
+ "step": 740
544
+ },
545
+ {
546
+ "epoch": 2.365930599369085,
547
+ "grad_norm": 0.4306070804595947,
548
+ "learning_rate": 5e-05,
549
+ "loss": 1.0412,
550
+ "step": 750
551
+ },
552
+ {
553
+ "epoch": 2.3974763406940065,
554
+ "grad_norm": 0.443590372800827,
555
+ "learning_rate": 5e-05,
556
+ "loss": 1.0424,
557
+ "step": 760
558
+ },
559
+ {
560
+ "epoch": 2.4290220820189274,
561
+ "grad_norm": 0.4287286400794983,
562
+ "learning_rate": 5e-05,
563
+ "loss": 1.0331,
564
+ "step": 770
565
+ },
566
+ {
567
+ "epoch": 2.4605678233438484,
568
+ "grad_norm": 0.39775350689888,
569
+ "learning_rate": 5e-05,
570
+ "loss": 1.0454,
571
+ "step": 780
572
+ },
573
+ {
574
+ "epoch": 2.4921135646687698,
575
+ "grad_norm": 0.4093973636627197,
576
+ "learning_rate": 5e-05,
577
+ "loss": 1.0442,
578
+ "step": 790
579
+ },
580
+ {
581
+ "epoch": 2.5236593059936907,
582
+ "grad_norm": 0.45389777421951294,
583
+ "learning_rate": 5e-05,
584
+ "loss": 1.024,
585
+ "step": 800
586
+ },
587
+ {
588
+ "epoch": 2.555205047318612,
589
+ "grad_norm": 0.428648442029953,
590
+ "learning_rate": 5e-05,
591
+ "loss": 1.0407,
592
+ "step": 810
593
+ },
594
+ {
595
+ "epoch": 2.586750788643533,
596
+ "grad_norm": 0.41237714886665344,
597
+ "learning_rate": 5e-05,
598
+ "loss": 1.0159,
599
+ "step": 820
600
+ },
601
+ {
602
+ "epoch": 2.6182965299684544,
603
+ "grad_norm": 0.42067545652389526,
604
+ "learning_rate": 5e-05,
605
+ "loss": 1.0347,
606
+ "step": 830
607
+ },
608
+ {
609
+ "epoch": 2.6498422712933754,
610
+ "grad_norm": 0.4184909462928772,
611
+ "learning_rate": 5e-05,
612
+ "loss": 1.0337,
613
+ "step": 840
614
+ },
615
+ {
616
+ "epoch": 2.6813880126182967,
617
+ "grad_norm": 0.414995014667511,
618
+ "learning_rate": 5e-05,
619
+ "loss": 1.092,
620
+ "step": 850
621
+ },
622
+ {
623
+ "epoch": 2.7129337539432177,
624
+ "grad_norm": 0.4137355089187622,
625
+ "learning_rate": 5e-05,
626
+ "loss": 1.0514,
627
+ "step": 860
628
+ },
629
+ {
630
+ "epoch": 2.7444794952681386,
631
+ "grad_norm": 0.45818576216697693,
632
+ "learning_rate": 5e-05,
633
+ "loss": 1.0225,
634
+ "step": 870
635
+ },
636
+ {
637
+ "epoch": 2.77602523659306,
638
+ "grad_norm": 0.455785870552063,
639
+ "learning_rate": 5e-05,
640
+ "loss": 1.0483,
641
+ "step": 880
642
+ },
643
+ {
644
+ "epoch": 2.807570977917981,
645
+ "grad_norm": 0.4084894061088562,
646
+ "learning_rate": 5e-05,
647
+ "loss": 0.9846,
648
+ "step": 890
649
+ },
650
+ {
651
+ "epoch": 2.8391167192429023,
652
+ "grad_norm": 0.4103436768054962,
653
+ "learning_rate": 5e-05,
654
+ "loss": 1.0217,
655
+ "step": 900
656
+ },
657
+ {
658
+ "epoch": 2.8706624605678233,
659
+ "grad_norm": 0.40420758724212646,
660
+ "learning_rate": 5e-05,
661
+ "loss": 1.0399,
662
+ "step": 910
663
+ },
664
+ {
665
+ "epoch": 2.9022082018927446,
666
+ "grad_norm": 0.5487234592437744,
667
+ "learning_rate": 5e-05,
668
+ "loss": 1.0394,
669
+ "step": 920
670
+ },
671
+ {
672
+ "epoch": 2.9337539432176656,
673
+ "grad_norm": 0.47695016860961914,
674
+ "learning_rate": 5e-05,
675
+ "loss": 1.0445,
676
+ "step": 930
677
+ },
678
+ {
679
+ "epoch": 2.965299684542587,
680
+ "grad_norm": 0.41771531105041504,
681
+ "learning_rate": 5e-05,
682
+ "loss": 1.0377,
683
+ "step": 940
684
+ },
685
+ {
686
+ "epoch": 2.996845425867508,
687
+ "grad_norm": 0.5724055767059326,
688
+ "learning_rate": 5e-05,
689
+ "loss": 1.0193,
690
+ "step": 950
691
+ },
692
+ {
693
+ "epoch": 3.0,
694
+ "eval_loss": 1.0459696054458618,
695
+ "eval_runtime": 66.4844,
696
+ "eval_samples_per_second": 4.783,
697
+ "eval_steps_per_second": 0.602,
698
+ "step": 951
699
+ },
700
+ {
701
+ "epoch": 3.028391167192429,
702
+ "grad_norm": 0.481629878282547,
703
+ "learning_rate": 5e-05,
704
+ "loss": 0.9837,
705
+ "step": 960
706
+ },
707
+ {
708
+ "epoch": 3.0599369085173502,
709
+ "grad_norm": 0.42061686515808105,
710
+ "learning_rate": 5e-05,
711
+ "loss": 1.0083,
712
+ "step": 970
713
+ },
714
+ {
715
+ "epoch": 3.091482649842271,
716
+ "grad_norm": 0.4234108030796051,
717
+ "learning_rate": 5e-05,
718
+ "loss": 1.0249,
719
+ "step": 980
720
+ },
721
+ {
722
+ "epoch": 3.1230283911671926,
723
+ "grad_norm": 0.43123263120651245,
724
+ "learning_rate": 5e-05,
725
+ "loss": 1.0319,
726
+ "step": 990
727
+ },
728
+ {
729
+ "epoch": 3.1545741324921135,
730
+ "grad_norm": 0.4268761873245239,
731
+ "learning_rate": 5e-05,
732
+ "loss": 1.0067,
733
+ "step": 1000
734
+ },
735
+ {
736
+ "epoch": 3.186119873817035,
737
+ "grad_norm": 0.41744470596313477,
738
+ "learning_rate": 5e-05,
739
+ "loss": 1.0316,
740
+ "step": 1010
741
+ },
742
+ {
743
+ "epoch": 3.217665615141956,
744
+ "grad_norm": 0.46088990569114685,
745
+ "learning_rate": 5e-05,
746
+ "loss": 0.9993,
747
+ "step": 1020
748
+ },
749
+ {
750
+ "epoch": 3.249211356466877,
751
+ "grad_norm": 0.43155333399772644,
752
+ "learning_rate": 5e-05,
753
+ "loss": 1.0275,
754
+ "step": 1030
755
+ },
756
+ {
757
+ "epoch": 3.280757097791798,
758
+ "grad_norm": 0.4405035972595215,
759
+ "learning_rate": 5e-05,
760
+ "loss": 1.0014,
761
+ "step": 1040
762
+ },
763
+ {
764
+ "epoch": 3.312302839116719,
765
+ "grad_norm": 0.466680645942688,
766
+ "learning_rate": 5e-05,
767
+ "loss": 1.0066,
768
+ "step": 1050
769
+ },
770
+ {
771
+ "epoch": 3.3438485804416405,
772
+ "grad_norm": 0.4462493360042572,
773
+ "learning_rate": 5e-05,
774
+ "loss": 1.0081,
775
+ "step": 1060
776
+ },
777
+ {
778
+ "epoch": 3.3753943217665614,
779
+ "grad_norm": 0.4766935706138611,
780
+ "learning_rate": 5e-05,
781
+ "loss": 0.9957,
782
+ "step": 1070
783
+ },
784
+ {
785
+ "epoch": 3.406940063091483,
786
+ "grad_norm": 0.4287005364894867,
787
+ "learning_rate": 5e-05,
788
+ "loss": 1.0022,
789
+ "step": 1080
790
+ },
791
+ {
792
+ "epoch": 3.4384858044164037,
793
+ "grad_norm": 0.43795284628868103,
794
+ "learning_rate": 5e-05,
795
+ "loss": 1.0248,
796
+ "step": 1090
797
+ },
798
+ {
799
+ "epoch": 3.470031545741325,
800
+ "grad_norm": 0.4681282937526703,
801
+ "learning_rate": 5e-05,
802
+ "loss": 1.0241,
803
+ "step": 1100
804
+ },
805
+ {
806
+ "epoch": 3.501577287066246,
807
+ "grad_norm": 0.44735008478164673,
808
+ "learning_rate": 5e-05,
809
+ "loss": 1.0209,
810
+ "step": 1110
811
+ },
812
+ {
813
+ "epoch": 3.5331230283911674,
814
+ "grad_norm": 0.4473140835762024,
815
+ "learning_rate": 5e-05,
816
+ "loss": 0.9824,
817
+ "step": 1120
818
+ },
819
+ {
820
+ "epoch": 3.5646687697160884,
821
+ "grad_norm": 0.44602036476135254,
822
+ "learning_rate": 5e-05,
823
+ "loss": 1.0095,
824
+ "step": 1130
825
+ },
826
+ {
827
+ "epoch": 3.5962145110410093,
828
+ "grad_norm": 0.455937922000885,
829
+ "learning_rate": 5e-05,
830
+ "loss": 1.0045,
831
+ "step": 1140
832
+ },
833
+ {
834
+ "epoch": 3.6277602523659307,
835
+ "grad_norm": 0.416535347700119,
836
+ "learning_rate": 5e-05,
837
+ "loss": 1.0293,
838
+ "step": 1150
839
+ },
840
+ {
841
+ "epoch": 3.6593059936908516,
842
+ "grad_norm": 0.454054057598114,
843
+ "learning_rate": 5e-05,
844
+ "loss": 0.9761,
845
+ "step": 1160
846
+ },
847
+ {
848
+ "epoch": 3.690851735015773,
849
+ "grad_norm": 0.4191015958786011,
850
+ "learning_rate": 5e-05,
851
+ "loss": 1.0275,
852
+ "step": 1170
853
+ },
854
+ {
855
+ "epoch": 3.722397476340694,
856
+ "grad_norm": 0.45472997426986694,
857
+ "learning_rate": 5e-05,
858
+ "loss": 0.975,
859
+ "step": 1180
860
+ },
861
+ {
862
+ "epoch": 3.753943217665615,
863
+ "grad_norm": 0.429548442363739,
864
+ "learning_rate": 5e-05,
865
+ "loss": 0.9638,
866
+ "step": 1190
867
+ },
868
+ {
869
+ "epoch": 3.7854889589905363,
870
+ "grad_norm": 0.4479614198207855,
871
+ "learning_rate": 5e-05,
872
+ "loss": 1.0034,
873
+ "step": 1200
874
+ },
875
+ {
876
+ "epoch": 3.8170347003154577,
877
+ "grad_norm": 0.41878965497016907,
878
+ "learning_rate": 5e-05,
879
+ "loss": 1.0102,
880
+ "step": 1210
881
+ },
882
+ {
883
+ "epoch": 3.8485804416403786,
884
+ "grad_norm": 0.42527589201927185,
885
+ "learning_rate": 5e-05,
886
+ "loss": 0.9746,
887
+ "step": 1220
888
+ },
889
+ {
890
+ "epoch": 3.8801261829652995,
891
+ "grad_norm": 0.4646793007850647,
892
+ "learning_rate": 5e-05,
893
+ "loss": 1.0139,
894
+ "step": 1230
895
+ },
896
+ {
897
+ "epoch": 3.911671924290221,
898
+ "grad_norm": 0.41096052527427673,
899
+ "learning_rate": 5e-05,
900
+ "loss": 1.0247,
901
+ "step": 1240
902
+ },
903
+ {
904
+ "epoch": 3.943217665615142,
905
+ "grad_norm": 0.4595187306404114,
906
+ "learning_rate": 5e-05,
907
+ "loss": 1.0149,
908
+ "step": 1250
909
+ },
910
+ {
911
+ "epoch": 3.9747634069400632,
912
+ "grad_norm": 0.4228056073188782,
913
+ "learning_rate": 5e-05,
914
+ "loss": 1.0199,
915
+ "step": 1260
916
+ },
917
+ {
918
+ "epoch": 4.0,
919
+ "eval_loss": 1.032894492149353,
920
+ "eval_runtime": 66.5042,
921
+ "eval_samples_per_second": 4.782,
922
+ "eval_steps_per_second": 0.601,
923
+ "step": 1268
924
+ },
925
+ {
926
+ "epoch": 4.006309148264984,
927
+ "grad_norm": 0.4469398558139801,
928
+ "learning_rate": 5e-05,
929
+ "loss": 0.9636,
930
+ "step": 1270
931
+ },
932
+ {
933
+ "epoch": 4.037854889589905,
934
+ "grad_norm": 0.4484340250492096,
935
+ "learning_rate": 5e-05,
936
+ "loss": 0.9827,
937
+ "step": 1280
938
+ },
939
+ {
940
+ "epoch": 4.069400630914826,
941
+ "grad_norm": 0.4563854932785034,
942
+ "learning_rate": 5e-05,
943
+ "loss": 0.9877,
944
+ "step": 1290
945
+ },
946
+ {
947
+ "epoch": 4.100946372239748,
948
+ "grad_norm": 0.44243761897087097,
949
+ "learning_rate": 5e-05,
950
+ "loss": 0.9872,
951
+ "step": 1300
952
+ },
953
+ {
954
+ "epoch": 4.132492113564669,
955
+ "grad_norm": 0.448011189699173,
956
+ "learning_rate": 5e-05,
957
+ "loss": 1.0118,
958
+ "step": 1310
959
+ },
960
+ {
961
+ "epoch": 4.16403785488959,
962
+ "grad_norm": 0.4259743094444275,
963
+ "learning_rate": 5e-05,
964
+ "loss": 1.0109,
965
+ "step": 1320
966
+ },
967
+ {
968
+ "epoch": 4.195583596214511,
969
+ "grad_norm": 0.456064909696579,
970
+ "learning_rate": 5e-05,
971
+ "loss": 0.9552,
972
+ "step": 1330
973
+ },
974
+ {
975
+ "epoch": 4.2271293375394325,
976
+ "grad_norm": 0.49178850650787354,
977
+ "learning_rate": 5e-05,
978
+ "loss": 0.9976,
979
+ "step": 1340
980
+ },
981
+ {
982
+ "epoch": 4.2586750788643535,
983
+ "grad_norm": 0.4512215852737427,
984
+ "learning_rate": 5e-05,
985
+ "loss": 0.9889,
986
+ "step": 1350
987
+ },
988
+ {
989
+ "epoch": 4.290220820189274,
990
+ "grad_norm": 0.4504569172859192,
991
+ "learning_rate": 5e-05,
992
+ "loss": 0.9675,
993
+ "step": 1360
994
+ },
995
+ {
996
+ "epoch": 4.321766561514195,
997
+ "grad_norm": 0.4347565472126007,
998
+ "learning_rate": 5e-05,
999
+ "loss": 0.9904,
1000
+ "step": 1370
1001
+ },
1002
+ {
1003
+ "epoch": 4.353312302839116,
1004
+ "grad_norm": 0.4649258852005005,
1005
+ "learning_rate": 5e-05,
1006
+ "loss": 0.9832,
1007
+ "step": 1380
1008
+ },
1009
+ {
1010
+ "epoch": 4.384858044164038,
1011
+ "grad_norm": 0.4316873252391815,
1012
+ "learning_rate": 5e-05,
1013
+ "loss": 0.9952,
1014
+ "step": 1390
1015
+ },
1016
+ {
1017
+ "epoch": 4.416403785488959,
1018
+ "grad_norm": 0.4411141872406006,
1019
+ "learning_rate": 5e-05,
1020
+ "loss": 0.9743,
1021
+ "step": 1400
1022
+ },
1023
+ {
1024
+ "epoch": 4.44794952681388,
1025
+ "grad_norm": 0.46868711709976196,
1026
+ "learning_rate": 5e-05,
1027
+ "loss": 0.9737,
1028
+ "step": 1410
1029
+ },
1030
+ {
1031
+ "epoch": 4.479495268138801,
1032
+ "grad_norm": 0.47713035345077515,
1033
+ "learning_rate": 5e-05,
1034
+ "loss": 0.9646,
1035
+ "step": 1420
1036
+ },
1037
+ {
1038
+ "epoch": 4.511041009463723,
1039
+ "grad_norm": 0.4720157980918884,
1040
+ "learning_rate": 5e-05,
1041
+ "loss": 0.9645,
1042
+ "step": 1430
1043
+ },
1044
+ {
1045
+ "epoch": 4.542586750788644,
1046
+ "grad_norm": 0.4508207440376282,
1047
+ "learning_rate": 5e-05,
1048
+ "loss": 0.9669,
1049
+ "step": 1440
1050
+ },
1051
+ {
1052
+ "epoch": 4.574132492113565,
1053
+ "grad_norm": 0.4645206928253174,
1054
+ "learning_rate": 5e-05,
1055
+ "loss": 0.9945,
1056
+ "step": 1450
1057
+ },
1058
+ {
1059
+ "epoch": 4.605678233438486,
1060
+ "grad_norm": 0.45657721161842346,
1061
+ "learning_rate": 5e-05,
1062
+ "loss": 1.0193,
1063
+ "step": 1460
1064
+ },
1065
+ {
1066
+ "epoch": 4.6372239747634065,
1067
+ "grad_norm": 0.48605337738990784,
1068
+ "learning_rate": 5e-05,
1069
+ "loss": 0.9796,
1070
+ "step": 1470
1071
+ },
1072
+ {
1073
+ "epoch": 4.668769716088328,
1074
+ "grad_norm": 0.4564870595932007,
1075
+ "learning_rate": 5e-05,
1076
+ "loss": 1.0164,
1077
+ "step": 1480
1078
+ },
1079
+ {
1080
+ "epoch": 4.700315457413249,
1081
+ "grad_norm": 0.46090081334114075,
1082
+ "learning_rate": 5e-05,
1083
+ "loss": 0.9854,
1084
+ "step": 1490
1085
+ },
1086
+ {
1087
+ "epoch": 4.73186119873817,
1088
+ "grad_norm": 0.4782868027687073,
1089
+ "learning_rate": 5e-05,
1090
+ "loss": 0.985,
1091
+ "step": 1500
1092
+ },
1093
+ {
1094
+ "epoch": 4.763406940063091,
1095
+ "grad_norm": 0.45532533526420593,
1096
+ "learning_rate": 5e-05,
1097
+ "loss": 0.9555,
1098
+ "step": 1510
1099
+ },
1100
+ {
1101
+ "epoch": 4.794952681388013,
1102
+ "grad_norm": 0.4831511676311493,
1103
+ "learning_rate": 5e-05,
1104
+ "loss": 0.9775,
1105
+ "step": 1520
1106
+ },
1107
+ {
1108
+ "epoch": 4.826498422712934,
1109
+ "grad_norm": 0.4660089612007141,
1110
+ "learning_rate": 5e-05,
1111
+ "loss": 0.9805,
1112
+ "step": 1530
1113
+ },
1114
+ {
1115
+ "epoch": 4.858044164037855,
1116
+ "grad_norm": 0.47603532671928406,
1117
+ "learning_rate": 5e-05,
1118
+ "loss": 1.0222,
1119
+ "step": 1540
1120
+ },
1121
+ {
1122
+ "epoch": 4.889589905362776,
1123
+ "grad_norm": 0.4162875711917877,
1124
+ "learning_rate": 5e-05,
1125
+ "loss": 0.9867,
1126
+ "step": 1550
1127
+ },
1128
+ {
1129
+ "epoch": 4.921135646687697,
1130
+ "grad_norm": 0.4378200173377991,
1131
+ "learning_rate": 5e-05,
1132
+ "loss": 0.9762,
1133
+ "step": 1560
1134
+ },
1135
+ {
1136
+ "epoch": 4.952681388012619,
1137
+ "grad_norm": 0.43556976318359375,
1138
+ "learning_rate": 5e-05,
1139
+ "loss": 0.9557,
1140
+ "step": 1570
1141
+ },
1142
+ {
1143
+ "epoch": 4.9842271293375395,
1144
+ "grad_norm": 0.4165530204772949,
1145
+ "learning_rate": 5e-05,
1146
+ "loss": 0.998,
1147
+ "step": 1580
1148
+ },
1149
+ {
1150
+ "epoch": 5.0,
1151
+ "eval_loss": 1.02390456199646,
1152
+ "eval_runtime": 66.4974,
1153
+ "eval_samples_per_second": 4.782,
1154
+ "eval_steps_per_second": 0.602,
1155
+ "step": 1585
1156
+ },
1157
+ {
1158
+ "epoch": 5.0157728706624605,
1159
+ "grad_norm": 0.557310938835144,
1160
+ "learning_rate": 5e-05,
1161
+ "loss": 0.9705,
1162
+ "step": 1590
1163
+ },
1164
+ {
1165
+ "epoch": 5.047318611987381,
1166
+ "grad_norm": 0.47156888246536255,
1167
+ "learning_rate": 5e-05,
1168
+ "loss": 0.9629,
1169
+ "step": 1600
1170
+ },
1171
+ {
1172
+ "epoch": 5.078864353312303,
1173
+ "grad_norm": 0.51046222448349,
1174
+ "learning_rate": 5e-05,
1175
+ "loss": 0.9429,
1176
+ "step": 1610
1177
+ },
1178
+ {
1179
+ "epoch": 5.110410094637224,
1180
+ "grad_norm": 0.48319852352142334,
1181
+ "learning_rate": 5e-05,
1182
+ "loss": 0.9637,
1183
+ "step": 1620
1184
+ },
1185
+ {
1186
+ "epoch": 5.141955835962145,
1187
+ "grad_norm": 0.45673197507858276,
1188
+ "learning_rate": 5e-05,
1189
+ "loss": 0.9233,
1190
+ "step": 1630
1191
+ },
1192
+ {
1193
+ "epoch": 5.173501577287066,
1194
+ "grad_norm": 0.5032113194465637,
1195
+ "learning_rate": 5e-05,
1196
+ "loss": 0.9486,
1197
+ "step": 1640
1198
+ },
1199
+ {
1200
+ "epoch": 5.205047318611987,
1201
+ "grad_norm": 0.449439138174057,
1202
+ "learning_rate": 5e-05,
1203
+ "loss": 0.9107,
1204
+ "step": 1650
1205
+ },
1206
+ {
1207
+ "epoch": 5.236593059936909,
1208
+ "grad_norm": 0.4683469831943512,
1209
+ "learning_rate": 5e-05,
1210
+ "loss": 0.9608,
1211
+ "step": 1660
1212
+ },
1213
+ {
1214
+ "epoch": 5.26813880126183,
1215
+ "grad_norm": 0.48362118005752563,
1216
+ "learning_rate": 5e-05,
1217
+ "loss": 0.9246,
1218
+ "step": 1670
1219
+ },
1220
+ {
1221
+ "epoch": 5.299684542586751,
1222
+ "grad_norm": 0.4709579050540924,
1223
+ "learning_rate": 5e-05,
1224
+ "loss": 0.9958,
1225
+ "step": 1680
1226
+ },
1227
+ {
1228
+ "epoch": 5.331230283911672,
1229
+ "grad_norm": 0.4630713164806366,
1230
+ "learning_rate": 5e-05,
1231
+ "loss": 0.9837,
1232
+ "step": 1690
1233
+ },
1234
+ {
1235
+ "epoch": 5.3627760252365935,
1236
+ "grad_norm": 0.475508451461792,
1237
+ "learning_rate": 5e-05,
1238
+ "loss": 1.0084,
1239
+ "step": 1700
1240
+ },
1241
+ {
1242
+ "epoch": 5.394321766561514,
1243
+ "grad_norm": 0.5352875590324402,
1244
+ "learning_rate": 5e-05,
1245
+ "loss": 0.9595,
1246
+ "step": 1710
1247
+ },
1248
+ {
1249
+ "epoch": 5.425867507886435,
1250
+ "grad_norm": 0.5087634325027466,
1251
+ "learning_rate": 5e-05,
1252
+ "loss": 0.9697,
1253
+ "step": 1720
1254
+ },
1255
+ {
1256
+ "epoch": 5.457413249211356,
1257
+ "grad_norm": 0.4558835029602051,
1258
+ "learning_rate": 5e-05,
1259
+ "loss": 0.9609,
1260
+ "step": 1730
1261
+ },
1262
+ {
1263
+ "epoch": 5.488958990536277,
1264
+ "grad_norm": 0.5090092420578003,
1265
+ "learning_rate": 5e-05,
1266
+ "loss": 0.9732,
1267
+ "step": 1740
1268
+ },
1269
+ {
1270
+ "epoch": 5.520504731861199,
1271
+ "grad_norm": 0.48192793130874634,
1272
+ "learning_rate": 5e-05,
1273
+ "loss": 0.9917,
1274
+ "step": 1750
1275
+ },
1276
+ {
1277
+ "epoch": 5.55205047318612,
1278
+ "grad_norm": 0.4428229033946991,
1279
+ "learning_rate": 5e-05,
1280
+ "loss": 0.9607,
1281
+ "step": 1760
1282
+ },
1283
+ {
1284
+ "epoch": 5.583596214511041,
1285
+ "grad_norm": 0.4858005940914154,
1286
+ "learning_rate": 5e-05,
1287
+ "loss": 0.994,
1288
+ "step": 1770
1289
+ },
1290
+ {
1291
+ "epoch": 5.615141955835962,
1292
+ "grad_norm": 0.4797442555427551,
1293
+ "learning_rate": 5e-05,
1294
+ "loss": 0.9554,
1295
+ "step": 1780
1296
+ },
1297
+ {
1298
+ "epoch": 5.646687697160884,
1299
+ "grad_norm": 0.4797378480434418,
1300
+ "learning_rate": 5e-05,
1301
+ "loss": 0.9486,
1302
+ "step": 1790
1303
+ },
1304
+ {
1305
+ "epoch": 5.678233438485805,
1306
+ "grad_norm": 0.4509980082511902,
1307
+ "learning_rate": 5e-05,
1308
+ "loss": 0.9693,
1309
+ "step": 1800
1310
+ },
1311
+ {
1312
+ "epoch": 5.709779179810726,
1313
+ "grad_norm": 0.45232152938842773,
1314
+ "learning_rate": 5e-05,
1315
+ "loss": 0.9622,
1316
+ "step": 1810
1317
+ },
1318
+ {
1319
+ "epoch": 5.7413249211356465,
1320
+ "grad_norm": 0.49943023920059204,
1321
+ "learning_rate": 5e-05,
1322
+ "loss": 1.0051,
1323
+ "step": 1820
1324
+ },
1325
+ {
1326
+ "epoch": 5.7728706624605675,
1327
+ "grad_norm": 0.4827818274497986,
1328
+ "learning_rate": 5e-05,
1329
+ "loss": 0.9536,
1330
+ "step": 1830
1331
+ },
1332
+ {
1333
+ "epoch": 5.804416403785489,
1334
+ "grad_norm": 0.4689510464668274,
1335
+ "learning_rate": 5e-05,
1336
+ "loss": 0.9706,
1337
+ "step": 1840
1338
+ },
1339
+ {
1340
+ "epoch": 5.83596214511041,
1341
+ "grad_norm": 0.47188493609428406,
1342
+ "learning_rate": 5e-05,
1343
+ "loss": 0.9582,
1344
+ "step": 1850
1345
+ },
1346
+ {
1347
+ "epoch": 5.867507886435331,
1348
+ "grad_norm": 0.47195523977279663,
1349
+ "learning_rate": 5e-05,
1350
+ "loss": 0.9688,
1351
+ "step": 1860
1352
+ },
1353
+ {
1354
+ "epoch": 5.899053627760252,
1355
+ "grad_norm": 0.4700336158275604,
1356
+ "learning_rate": 5e-05,
1357
+ "loss": 0.9399,
1358
+ "step": 1870
1359
+ },
1360
+ {
1361
+ "epoch": 5.930599369085174,
1362
+ "grad_norm": 0.5036072731018066,
1363
+ "learning_rate": 5e-05,
1364
+ "loss": 0.9726,
1365
+ "step": 1880
1366
+ },
1367
+ {
1368
+ "epoch": 5.962145110410095,
1369
+ "grad_norm": 0.5032414197921753,
1370
+ "learning_rate": 5e-05,
1371
+ "loss": 0.9426,
1372
+ "step": 1890
1373
+ },
1374
+ {
1375
+ "epoch": 5.993690851735016,
1376
+ "grad_norm": 0.4505554139614105,
1377
+ "learning_rate": 5e-05,
1378
+ "loss": 0.9911,
1379
+ "step": 1900
1380
+ },
1381
+ {
1382
+ "epoch": 6.0,
1383
+ "eval_loss": 1.0179320573806763,
1384
+ "eval_runtime": 66.4482,
1385
+ "eval_samples_per_second": 4.786,
1386
+ "eval_steps_per_second": 0.602,
1387
+ "step": 1902
1388
+ },
1389
+ {
1390
+ "epoch": 6.025236593059937,
1391
+ "grad_norm": 0.48737627267837524,
1392
+ "learning_rate": 5e-05,
1393
+ "loss": 0.9504,
1394
+ "step": 1910
1395
+ },
1396
+ {
1397
+ "epoch": 6.056782334384858,
1398
+ "grad_norm": 0.520263135433197,
1399
+ "learning_rate": 5e-05,
1400
+ "loss": 0.9411,
1401
+ "step": 1920
1402
+ },
1403
+ {
1404
+ "epoch": 6.0883280757097795,
1405
+ "grad_norm": 0.4799466133117676,
1406
+ "learning_rate": 5e-05,
1407
+ "loss": 0.9448,
1408
+ "step": 1930
1409
+ },
1410
+ {
1411
+ "epoch": 6.1198738170347005,
1412
+ "grad_norm": 0.49849933385849,
1413
+ "learning_rate": 5e-05,
1414
+ "loss": 0.9511,
1415
+ "step": 1940
1416
+ },
1417
+ {
1418
+ "epoch": 6.151419558359621,
1419
+ "grad_norm": 0.4995006322860718,
1420
+ "learning_rate": 5e-05,
1421
+ "loss": 0.9315,
1422
+ "step": 1950
1423
+ },
1424
+ {
1425
+ "epoch": 6.182965299684542,
1426
+ "grad_norm": 0.5434730648994446,
1427
+ "learning_rate": 5e-05,
1428
+ "loss": 0.9509,
1429
+ "step": 1960
1430
+ },
1431
+ {
1432
+ "epoch": 6.214511041009464,
1433
+ "grad_norm": 0.5055322647094727,
1434
+ "learning_rate": 5e-05,
1435
+ "loss": 0.9449,
1436
+ "step": 1970
1437
+ },
1438
+ {
1439
+ "epoch": 6.246056782334385,
1440
+ "grad_norm": 0.4768029749393463,
1441
+ "learning_rate": 5e-05,
1442
+ "loss": 0.9356,
1443
+ "step": 1980
1444
+ },
1445
+ {
1446
+ "epoch": 6.277602523659306,
1447
+ "grad_norm": 0.5039747357368469,
1448
+ "learning_rate": 5e-05,
1449
+ "loss": 0.9478,
1450
+ "step": 1990
1451
+ },
1452
+ {
1453
+ "epoch": 6.309148264984227,
1454
+ "grad_norm": 0.5042532086372375,
1455
+ "learning_rate": 5e-05,
1456
+ "loss": 0.8941,
1457
+ "step": 2000
1458
+ },
1459
+ {
1460
+ "epoch": 6.340694006309148,
1461
+ "grad_norm": 0.5117079615592957,
1462
+ "learning_rate": 5e-05,
1463
+ "loss": 0.9081,
1464
+ "step": 2010
1465
+ },
1466
+ {
1467
+ "epoch": 6.37223974763407,
1468
+ "grad_norm": 0.5625054836273193,
1469
+ "learning_rate": 5e-05,
1470
+ "loss": 0.9588,
1471
+ "step": 2020
1472
+ },
1473
+ {
1474
+ "epoch": 6.403785488958991,
1475
+ "grad_norm": 0.49397581815719604,
1476
+ "learning_rate": 5e-05,
1477
+ "loss": 0.9405,
1478
+ "step": 2030
1479
+ },
1480
+ {
1481
+ "epoch": 6.435331230283912,
1482
+ "grad_norm": 0.5129591226577759,
1483
+ "learning_rate": 5e-05,
1484
+ "loss": 0.9357,
1485
+ "step": 2040
1486
+ },
1487
+ {
1488
+ "epoch": 6.466876971608833,
1489
+ "grad_norm": 0.5299010276794434,
1490
+ "learning_rate": 5e-05,
1491
+ "loss": 0.9425,
1492
+ "step": 2050
1493
+ },
1494
+ {
1495
+ "epoch": 6.498422712933754,
1496
+ "grad_norm": 0.512342095375061,
1497
+ "learning_rate": 5e-05,
1498
+ "loss": 0.936,
1499
+ "step": 2060
1500
+ },
1501
+ {
1502
+ "epoch": 6.529968454258675,
1503
+ "grad_norm": 0.5136451721191406,
1504
+ "learning_rate": 5e-05,
1505
+ "loss": 0.9549,
1506
+ "step": 2070
1507
+ },
1508
+ {
1509
+ "epoch": 6.561514195583596,
1510
+ "grad_norm": 0.6025319695472717,
1511
+ "learning_rate": 5e-05,
1512
+ "loss": 0.9705,
1513
+ "step": 2080
1514
+ },
1515
+ {
1516
+ "epoch": 6.593059936908517,
1517
+ "grad_norm": 0.48766204714775085,
1518
+ "learning_rate": 5e-05,
1519
+ "loss": 0.96,
1520
+ "step": 2090
1521
+ },
1522
+ {
1523
+ "epoch": 6.624605678233438,
1524
+ "grad_norm": 0.4721720516681671,
1525
+ "learning_rate": 5e-05,
1526
+ "loss": 0.9457,
1527
+ "step": 2100
1528
+ },
1529
+ {
1530
+ "epoch": 6.65615141955836,
1531
+ "grad_norm": 0.48331397771835327,
1532
+ "learning_rate": 5e-05,
1533
+ "loss": 0.9105,
1534
+ "step": 2110
1535
+ },
1536
+ {
1537
+ "epoch": 6.687697160883281,
1538
+ "grad_norm": 0.4890565872192383,
1539
+ "learning_rate": 5e-05,
1540
+ "loss": 0.9859,
1541
+ "step": 2120
1542
+ },
1543
+ {
1544
+ "epoch": 6.719242902208202,
1545
+ "grad_norm": 0.5263992547988892,
1546
+ "learning_rate": 5e-05,
1547
+ "loss": 0.9659,
1548
+ "step": 2130
1549
+ },
1550
+ {
1551
+ "epoch": 6.750788643533123,
1552
+ "grad_norm": 0.45187363028526306,
1553
+ "learning_rate": 5e-05,
1554
+ "loss": 0.9319,
1555
+ "step": 2140
1556
+ },
1557
+ {
1558
+ "epoch": 6.782334384858045,
1559
+ "grad_norm": 0.4888645112514496,
1560
+ "learning_rate": 5e-05,
1561
+ "loss": 0.9623,
1562
+ "step": 2150
1563
+ },
1564
+ {
1565
+ "epoch": 6.813880126182966,
1566
+ "grad_norm": 0.48433786630630493,
1567
+ "learning_rate": 5e-05,
1568
+ "loss": 0.9601,
1569
+ "step": 2160
1570
+ },
1571
+ {
1572
+ "epoch": 6.8454258675078865,
1573
+ "grad_norm": 0.5414565205574036,
1574
+ "learning_rate": 5e-05,
1575
+ "loss": 0.9381,
1576
+ "step": 2170
1577
+ },
1578
+ {
1579
+ "epoch": 6.8769716088328074,
1580
+ "grad_norm": 0.47471919655799866,
1581
+ "learning_rate": 5e-05,
1582
+ "loss": 0.9443,
1583
+ "step": 2180
1584
+ },
1585
+ {
1586
+ "epoch": 6.908517350157728,
1587
+ "grad_norm": 0.4787106513977051,
1588
+ "learning_rate": 5e-05,
1589
+ "loss": 0.9331,
1590
+ "step": 2190
1591
+ },
1592
+ {
1593
+ "epoch": 6.94006309148265,
1594
+ "grad_norm": 0.4515725076198578,
1595
+ "learning_rate": 5e-05,
1596
+ "loss": 0.9461,
1597
+ "step": 2200
1598
+ },
1599
+ {
1600
+ "epoch": 6.971608832807571,
1601
+ "grad_norm": 0.4714019000530243,
1602
+ "learning_rate": 5e-05,
1603
+ "loss": 0.9587,
1604
+ "step": 2210
1605
+ },
1606
+ {
1607
+ "epoch": 7.0,
1608
+ "eval_loss": 1.0130518674850464,
1609
+ "eval_runtime": 66.5051,
1610
+ "eval_samples_per_second": 4.782,
1611
+ "eval_steps_per_second": 0.601,
1612
+ "step": 2219
1613
+ },
1614
+ {
1615
+ "epoch": 7.003154574132492,
1616
+ "grad_norm": 0.44392409920692444,
1617
+ "learning_rate": 5e-05,
1618
+ "loss": 0.9691,
1619
+ "step": 2220
1620
+ },
1621
+ {
1622
+ "epoch": 7.034700315457413,
1623
+ "grad_norm": 0.538865864276886,
1624
+ "learning_rate": 5e-05,
1625
+ "loss": 0.9095,
1626
+ "step": 2230
1627
+ },
1628
+ {
1629
+ "epoch": 7.066246056782334,
1630
+ "grad_norm": 0.5173049569129944,
1631
+ "learning_rate": 5e-05,
1632
+ "loss": 0.9281,
1633
+ "step": 2240
1634
+ },
1635
+ {
1636
+ "epoch": 7.097791798107256,
1637
+ "grad_norm": 0.4751831293106079,
1638
+ "learning_rate": 5e-05,
1639
+ "loss": 0.9094,
1640
+ "step": 2250
1641
+ },
1642
+ {
1643
+ "epoch": 7.129337539432177,
1644
+ "grad_norm": 0.5221697092056274,
1645
+ "learning_rate": 5e-05,
1646
+ "loss": 0.9148,
1647
+ "step": 2260
1648
+ },
1649
+ {
1650
+ "epoch": 7.160883280757098,
1651
+ "grad_norm": 0.5088801383972168,
1652
+ "learning_rate": 5e-05,
1653
+ "loss": 0.9383,
1654
+ "step": 2270
1655
+ },
1656
+ {
1657
+ "epoch": 7.192429022082019,
1658
+ "grad_norm": 0.5191715359687805,
1659
+ "learning_rate": 5e-05,
1660
+ "loss": 0.9187,
1661
+ "step": 2280
1662
+ },
1663
+ {
1664
+ "epoch": 7.2239747634069404,
1665
+ "grad_norm": 0.5438238382339478,
1666
+ "learning_rate": 5e-05,
1667
+ "loss": 0.9192,
1668
+ "step": 2290
1669
+ },
1670
+ {
1671
+ "epoch": 7.255520504731861,
1672
+ "grad_norm": 0.5197346210479736,
1673
+ "learning_rate": 5e-05,
1674
+ "loss": 0.9226,
1675
+ "step": 2300
1676
+ },
1677
+ {
1678
+ "epoch": 7.287066246056782,
1679
+ "grad_norm": 0.5286086797714233,
1680
+ "learning_rate": 5e-05,
1681
+ "loss": 0.9009,
1682
+ "step": 2310
1683
+ },
1684
+ {
1685
+ "epoch": 7.318611987381703,
1686
+ "grad_norm": 0.4977555274963379,
1687
+ "learning_rate": 5e-05,
1688
+ "loss": 0.9524,
1689
+ "step": 2320
1690
+ },
1691
+ {
1692
+ "epoch": 7.350157728706624,
1693
+ "grad_norm": 0.5014932751655579,
1694
+ "learning_rate": 5e-05,
1695
+ "loss": 0.9356,
1696
+ "step": 2330
1697
+ },
1698
+ {
1699
+ "epoch": 7.381703470031546,
1700
+ "grad_norm": 0.5207954049110413,
1701
+ "learning_rate": 5e-05,
1702
+ "loss": 0.9095,
1703
+ "step": 2340
1704
+ },
1705
+ {
1706
+ "epoch": 7.413249211356467,
1707
+ "grad_norm": 0.512366771697998,
1708
+ "learning_rate": 5e-05,
1709
+ "loss": 0.9357,
1710
+ "step": 2350
1711
+ },
1712
+ {
1713
+ "epoch": 7.444794952681388,
1714
+ "grad_norm": 0.5742561221122742,
1715
+ "learning_rate": 5e-05,
1716
+ "loss": 0.9188,
1717
+ "step": 2360
1718
+ },
1719
+ {
1720
+ "epoch": 7.476340694006309,
1721
+ "grad_norm": 0.5032497644424438,
1722
+ "learning_rate": 5e-05,
1723
+ "loss": 0.9624,
1724
+ "step": 2370
1725
+ },
1726
+ {
1727
+ "epoch": 7.50788643533123,
1728
+ "grad_norm": 0.6190054416656494,
1729
+ "learning_rate": 5e-05,
1730
+ "loss": 0.8954,
1731
+ "step": 2380
1732
+ },
1733
+ {
1734
+ "epoch": 7.539432176656152,
1735
+ "grad_norm": 0.5226176977157593,
1736
+ "learning_rate": 5e-05,
1737
+ "loss": 0.9212,
1738
+ "step": 2390
1739
+ },
1740
+ {
1741
+ "epoch": 7.570977917981073,
1742
+ "grad_norm": 0.5045409202575684,
1743
+ "learning_rate": 5e-05,
1744
+ "loss": 0.9459,
1745
+ "step": 2400
1746
+ },
1747
+ {
1748
+ "epoch": 7.6025236593059935,
1749
+ "grad_norm": 0.48342952132225037,
1750
+ "learning_rate": 5e-05,
1751
+ "loss": 0.9306,
1752
+ "step": 2410
1753
+ },
1754
+ {
1755
+ "epoch": 7.634069400630915,
1756
+ "grad_norm": 0.48288047313690186,
1757
+ "learning_rate": 5e-05,
1758
+ "loss": 0.9217,
1759
+ "step": 2420
1760
+ },
1761
+ {
1762
+ "epoch": 7.665615141955836,
1763
+ "grad_norm": 0.5119076371192932,
1764
+ "learning_rate": 5e-05,
1765
+ "loss": 0.9594,
1766
+ "step": 2430
1767
+ },
1768
+ {
1769
+ "epoch": 7.697160883280757,
1770
+ "grad_norm": 0.5182865262031555,
1771
+ "learning_rate": 5e-05,
1772
+ "loss": 0.9158,
1773
+ "step": 2440
1774
+ },
1775
+ {
1776
+ "epoch": 7.728706624605678,
1777
+ "grad_norm": 0.5085521340370178,
1778
+ "learning_rate": 5e-05,
1779
+ "loss": 0.9249,
1780
+ "step": 2450
1781
+ },
1782
+ {
1783
+ "epoch": 7.760252365930599,
1784
+ "grad_norm": 0.49291595816612244,
1785
+ "learning_rate": 5e-05,
1786
+ "loss": 0.9128,
1787
+ "step": 2460
1788
+ },
1789
+ {
1790
+ "epoch": 7.79179810725552,
1791
+ "grad_norm": 0.5067439675331116,
1792
+ "learning_rate": 5e-05,
1793
+ "loss": 0.8993,
1794
+ "step": 2470
1795
+ },
1796
+ {
1797
+ "epoch": 7.823343848580442,
1798
+ "grad_norm": 0.49475356936454773,
1799
+ "learning_rate": 5e-05,
1800
+ "loss": 0.9313,
1801
+ "step": 2480
1802
+ },
1803
+ {
1804
+ "epoch": 7.854889589905363,
1805
+ "grad_norm": 0.5028258562088013,
1806
+ "learning_rate": 5e-05,
1807
+ "loss": 0.9459,
1808
+ "step": 2490
1809
+ },
1810
+ {
1811
+ "epoch": 7.886435331230284,
1812
+ "grad_norm": 0.482112854719162,
1813
+ "learning_rate": 5e-05,
1814
+ "loss": 0.9243,
1815
+ "step": 2500
1816
+ },
1817
+ {
1818
+ "epoch": 7.917981072555205,
1819
+ "grad_norm": 0.5285838842391968,
1820
+ "learning_rate": 5e-05,
1821
+ "loss": 0.9847,
1822
+ "step": 2510
1823
+ },
1824
+ {
1825
+ "epoch": 7.9495268138801265,
1826
+ "grad_norm": 0.5217479467391968,
1827
+ "learning_rate": 5e-05,
1828
+ "loss": 0.9172,
1829
+ "step": 2520
1830
+ },
1831
+ {
1832
+ "epoch": 7.981072555205047,
1833
+ "grad_norm": 0.47651416063308716,
1834
+ "learning_rate": 5e-05,
1835
+ "loss": 0.9003,
1836
+ "step": 2530
1837
+ },
1838
+ {
1839
+ "epoch": 8.0,
1840
+ "eval_loss": 1.0111174583435059,
1841
+ "eval_runtime": 66.5497,
1842
+ "eval_samples_per_second": 4.778,
1843
+ "eval_steps_per_second": 0.601,
1844
+ "step": 2536
1845
+ },
1846
+ {
1847
+ "epoch": 8.012618296529968,
1848
+ "grad_norm": 0.5173642635345459,
1849
+ "learning_rate": 5e-05,
1850
+ "loss": 0.9408,
1851
+ "step": 2540
1852
+ },
1853
+ {
1854
+ "epoch": 8.04416403785489,
1855
+ "grad_norm": 0.5017074346542358,
1856
+ "learning_rate": 5e-05,
1857
+ "loss": 0.9028,
1858
+ "step": 2550
1859
+ },
1860
+ {
1861
+ "epoch": 8.07570977917981,
1862
+ "grad_norm": 0.5437857508659363,
1863
+ "learning_rate": 5e-05,
1864
+ "loss": 0.916,
1865
+ "step": 2560
1866
+ },
1867
+ {
1868
+ "epoch": 8.107255520504731,
1869
+ "grad_norm": 0.485762357711792,
1870
+ "learning_rate": 5e-05,
1871
+ "loss": 0.8698,
1872
+ "step": 2570
1873
+ },
1874
+ {
1875
+ "epoch": 8.138801261829652,
1876
+ "grad_norm": 0.5231262445449829,
1877
+ "learning_rate": 5e-05,
1878
+ "loss": 0.9004,
1879
+ "step": 2580
1880
+ },
1881
+ {
1882
+ "epoch": 8.170347003154575,
1883
+ "grad_norm": 0.49633580446243286,
1884
+ "learning_rate": 5e-05,
1885
+ "loss": 0.9159,
1886
+ "step": 2590
1887
+ },
1888
+ {
1889
+ "epoch": 8.201892744479496,
1890
+ "grad_norm": 0.5477921366691589,
1891
+ "learning_rate": 5e-05,
1892
+ "loss": 0.9015,
1893
+ "step": 2600
1894
+ },
1895
+ {
1896
+ "epoch": 8.233438485804417,
1897
+ "grad_norm": 0.5651286840438843,
1898
+ "learning_rate": 5e-05,
1899
+ "loss": 0.8925,
1900
+ "step": 2610
1901
+ },
1902
+ {
1903
+ "epoch": 8.264984227129338,
1904
+ "grad_norm": 0.5210168957710266,
1905
+ "learning_rate": 5e-05,
1906
+ "loss": 0.9172,
1907
+ "step": 2620
1908
+ },
1909
+ {
1910
+ "epoch": 8.296529968454259,
1911
+ "grad_norm": 0.5071650743484497,
1912
+ "learning_rate": 5e-05,
1913
+ "loss": 0.9172,
1914
+ "step": 2630
1915
+ },
1916
+ {
1917
+ "epoch": 8.32807570977918,
1918
+ "grad_norm": 0.5585223436355591,
1919
+ "learning_rate": 5e-05,
1920
+ "loss": 0.9234,
1921
+ "step": 2640
1922
+ },
1923
+ {
1924
+ "epoch": 8.3596214511041,
1925
+ "grad_norm": 0.5303429961204529,
1926
+ "learning_rate": 5e-05,
1927
+ "loss": 0.896,
1928
+ "step": 2650
1929
+ },
1930
+ {
1931
+ "epoch": 8.391167192429021,
1932
+ "grad_norm": 0.5033040046691895,
1933
+ "learning_rate": 5e-05,
1934
+ "loss": 0.9431,
1935
+ "step": 2660
1936
+ },
1937
+ {
1938
+ "epoch": 8.422712933753942,
1939
+ "grad_norm": 0.4882967472076416,
1940
+ "learning_rate": 5e-05,
1941
+ "loss": 0.9103,
1942
+ "step": 2670
1943
+ },
1944
+ {
1945
+ "epoch": 8.454258675078865,
1946
+ "grad_norm": 0.5938067436218262,
1947
+ "learning_rate": 5e-05,
1948
+ "loss": 0.9067,
1949
+ "step": 2680
1950
+ },
1951
+ {
1952
+ "epoch": 8.485804416403786,
1953
+ "grad_norm": 0.5606987476348877,
1954
+ "learning_rate": 5e-05,
1955
+ "loss": 0.9177,
1956
+ "step": 2690
1957
+ },
1958
+ {
1959
+ "epoch": 8.517350157728707,
1960
+ "grad_norm": 0.5056515336036682,
1961
+ "learning_rate": 5e-05,
1962
+ "loss": 0.8924,
1963
+ "step": 2700
1964
+ },
1965
+ {
1966
+ "epoch": 8.548895899053628,
1967
+ "grad_norm": 0.5208995938301086,
1968
+ "learning_rate": 5e-05,
1969
+ "loss": 0.917,
1970
+ "step": 2710
1971
+ },
1972
+ {
1973
+ "epoch": 8.580441640378549,
1974
+ "grad_norm": 0.575134813785553,
1975
+ "learning_rate": 5e-05,
1976
+ "loss": 0.9132,
1977
+ "step": 2720
1978
+ },
1979
+ {
1980
+ "epoch": 8.61198738170347,
1981
+ "grad_norm": 0.5263710021972656,
1982
+ "learning_rate": 5e-05,
1983
+ "loss": 0.9162,
1984
+ "step": 2730
1985
+ },
1986
+ {
1987
+ "epoch": 8.64353312302839,
1988
+ "grad_norm": 0.5916036367416382,
1989
+ "learning_rate": 5e-05,
1990
+ "loss": 0.9147,
1991
+ "step": 2740
1992
+ },
1993
+ {
1994
+ "epoch": 8.675078864353312,
1995
+ "grad_norm": 0.5610800981521606,
1996
+ "learning_rate": 5e-05,
1997
+ "loss": 0.9022,
1998
+ "step": 2750
1999
+ },
2000
+ {
2001
+ "epoch": 8.706624605678233,
2002
+ "grad_norm": 0.5309184193611145,
2003
+ "learning_rate": 5e-05,
2004
+ "loss": 0.8736,
2005
+ "step": 2760
2006
+ },
2007
+ {
2008
+ "epoch": 8.738170347003155,
2009
+ "grad_norm": 0.5035881996154785,
2010
+ "learning_rate": 5e-05,
2011
+ "loss": 0.898,
2012
+ "step": 2770
2013
+ },
2014
+ {
2015
+ "epoch": 8.769716088328076,
2016
+ "grad_norm": 0.5445141196250916,
2017
+ "learning_rate": 5e-05,
2018
+ "loss": 0.903,
2019
+ "step": 2780
2020
+ },
2021
+ {
2022
+ "epoch": 8.801261829652997,
2023
+ "grad_norm": 0.5459301471710205,
2024
+ "learning_rate": 5e-05,
2025
+ "loss": 0.9124,
2026
+ "step": 2790
2027
+ },
2028
+ {
2029
+ "epoch": 8.832807570977918,
2030
+ "grad_norm": 0.5099250078201294,
2031
+ "learning_rate": 5e-05,
2032
+ "loss": 0.9132,
2033
+ "step": 2800
2034
+ },
2035
+ {
2036
+ "epoch": 8.864353312302839,
2037
+ "grad_norm": 0.5143303275108337,
2038
+ "learning_rate": 5e-05,
2039
+ "loss": 0.9085,
2040
+ "step": 2810
2041
+ },
2042
+ {
2043
+ "epoch": 8.89589905362776,
2044
+ "grad_norm": 0.5371480584144592,
2045
+ "learning_rate": 5e-05,
2046
+ "loss": 0.9463,
2047
+ "step": 2820
2048
+ },
2049
+ {
2050
+ "epoch": 8.927444794952681,
2051
+ "grad_norm": 0.517353892326355,
2052
+ "learning_rate": 5e-05,
2053
+ "loss": 0.8911,
2054
+ "step": 2830
2055
+ },
2056
+ {
2057
+ "epoch": 8.958990536277602,
2058
+ "grad_norm": 0.5601980090141296,
2059
+ "learning_rate": 5e-05,
2060
+ "loss": 0.915,
2061
+ "step": 2840
2062
+ },
2063
+ {
2064
+ "epoch": 8.990536277602523,
2065
+ "grad_norm": 0.5473778247833252,
2066
+ "learning_rate": 5e-05,
2067
+ "loss": 0.9254,
2068
+ "step": 2850
2069
+ },
2070
+ {
2071
+ "epoch": 9.0,
2072
+ "eval_loss": 1.0110243558883667,
2073
+ "eval_runtime": 66.5208,
2074
+ "eval_samples_per_second": 4.78,
2075
+ "eval_steps_per_second": 0.601,
2076
+ "step": 2853
2077
+ },
2078
+ {
2079
+ "epoch": 9.022082018927446,
2080
+ "grad_norm": 0.5774141550064087,
2081
+ "learning_rate": 5e-05,
2082
+ "loss": 0.8731,
2083
+ "step": 2860
2084
+ },
2085
+ {
2086
+ "epoch": 9.053627760252366,
2087
+ "grad_norm": 0.5381526350975037,
2088
+ "learning_rate": 5e-05,
2089
+ "loss": 0.9125,
2090
+ "step": 2870
2091
+ },
2092
+ {
2093
+ "epoch": 9.085173501577287,
2094
+ "grad_norm": 0.5414624810218811,
2095
+ "learning_rate": 5e-05,
2096
+ "loss": 0.8838,
2097
+ "step": 2880
2098
+ },
2099
+ {
2100
+ "epoch": 9.116719242902208,
2101
+ "grad_norm": 0.526127815246582,
2102
+ "learning_rate": 5e-05,
2103
+ "loss": 0.8709,
2104
+ "step": 2890
2105
+ },
2106
+ {
2107
+ "epoch": 9.14826498422713,
2108
+ "grad_norm": 0.5719351768493652,
2109
+ "learning_rate": 5e-05,
2110
+ "loss": 0.8976,
2111
+ "step": 2900
2112
+ },
2113
+ {
2114
+ "epoch": 9.17981072555205,
2115
+ "grad_norm": 0.6119252443313599,
2116
+ "learning_rate": 5e-05,
2117
+ "loss": 0.9006,
2118
+ "step": 2910
2119
+ },
2120
+ {
2121
+ "epoch": 9.211356466876971,
2122
+ "grad_norm": 0.5286473035812378,
2123
+ "learning_rate": 5e-05,
2124
+ "loss": 0.873,
2125
+ "step": 2920
2126
+ },
2127
+ {
2128
+ "epoch": 9.242902208201892,
2129
+ "grad_norm": 0.5602397918701172,
2130
+ "learning_rate": 5e-05,
2131
+ "loss": 0.9113,
2132
+ "step": 2930
2133
+ },
2134
+ {
2135
+ "epoch": 9.274447949526813,
2136
+ "grad_norm": 0.5757038593292236,
2137
+ "learning_rate": 5e-05,
2138
+ "loss": 0.8967,
2139
+ "step": 2940
2140
+ },
2141
+ {
2142
+ "epoch": 9.305993690851736,
2143
+ "grad_norm": 0.5797662138938904,
2144
+ "learning_rate": 5e-05,
2145
+ "loss": 0.921,
2146
+ "step": 2950
2147
+ },
2148
+ {
2149
+ "epoch": 9.337539432176657,
2150
+ "grad_norm": 0.5598446726799011,
2151
+ "learning_rate": 5e-05,
2152
+ "loss": 0.9121,
2153
+ "step": 2960
2154
+ },
2155
+ {
2156
+ "epoch": 9.369085173501578,
2157
+ "grad_norm": 0.5119657516479492,
2158
+ "learning_rate": 5e-05,
2159
+ "loss": 0.8748,
2160
+ "step": 2970
2161
+ },
2162
+ {
2163
+ "epoch": 9.400630914826499,
2164
+ "grad_norm": 0.5484170317649841,
2165
+ "learning_rate": 5e-05,
2166
+ "loss": 0.8971,
2167
+ "step": 2980
2168
+ },
2169
+ {
2170
+ "epoch": 9.43217665615142,
2171
+ "grad_norm": 0.5351391434669495,
2172
+ "learning_rate": 5e-05,
2173
+ "loss": 0.8466,
2174
+ "step": 2990
2175
+ },
2176
+ {
2177
+ "epoch": 9.46372239747634,
2178
+ "grad_norm": 0.5337589979171753,
2179
+ "learning_rate": 5e-05,
2180
+ "loss": 0.8986,
2181
+ "step": 3000
2182
+ },
2183
+ {
2184
+ "epoch": 9.495268138801261,
2185
+ "grad_norm": 0.5773183703422546,
2186
+ "learning_rate": 5e-05,
2187
+ "loss": 0.9001,
2188
+ "step": 3010
2189
+ },
2190
+ {
2191
+ "epoch": 9.526813880126182,
2192
+ "grad_norm": 0.6163984537124634,
2193
+ "learning_rate": 5e-05,
2194
+ "loss": 0.902,
2195
+ "step": 3020
2196
+ },
2197
+ {
2198
+ "epoch": 9.558359621451103,
2199
+ "grad_norm": 0.5879700183868408,
2200
+ "learning_rate": 5e-05,
2201
+ "loss": 0.8855,
2202
+ "step": 3030
2203
+ },
2204
+ {
2205
+ "epoch": 9.589905362776026,
2206
+ "grad_norm": 0.5596455335617065,
2207
+ "learning_rate": 5e-05,
2208
+ "loss": 0.9052,
2209
+ "step": 3040
2210
+ },
2211
+ {
2212
+ "epoch": 9.621451104100947,
2213
+ "grad_norm": 0.5862036943435669,
2214
+ "learning_rate": 5e-05,
2215
+ "loss": 0.9092,
2216
+ "step": 3050
2217
+ },
2218
+ {
2219
+ "epoch": 9.652996845425868,
2220
+ "grad_norm": 0.5491965413093567,
2221
+ "learning_rate": 5e-05,
2222
+ "loss": 0.8887,
2223
+ "step": 3060
2224
+ },
2225
+ {
2226
+ "epoch": 9.684542586750789,
2227
+ "grad_norm": 0.5651736259460449,
2228
+ "learning_rate": 5e-05,
2229
+ "loss": 0.8873,
2230
+ "step": 3070
2231
+ },
2232
+ {
2233
+ "epoch": 9.71608832807571,
2234
+ "grad_norm": 0.5439329147338867,
2235
+ "learning_rate": 5e-05,
2236
+ "loss": 0.8871,
2237
+ "step": 3080
2238
+ },
2239
+ {
2240
+ "epoch": 9.74763406940063,
2241
+ "grad_norm": 0.5257729887962341,
2242
+ "learning_rate": 5e-05,
2243
+ "loss": 0.8711,
2244
+ "step": 3090
2245
+ },
2246
+ {
2247
+ "epoch": 9.779179810725552,
2248
+ "grad_norm": 0.5310476422309875,
2249
+ "learning_rate": 5e-05,
2250
+ "loss": 0.9118,
2251
+ "step": 3100
2252
+ },
2253
+ {
2254
+ "epoch": 9.810725552050473,
2255
+ "grad_norm": 0.5593333840370178,
2256
+ "learning_rate": 5e-05,
2257
+ "loss": 0.8647,
2258
+ "step": 3110
2259
+ },
2260
+ {
2261
+ "epoch": 9.842271293375394,
2262
+ "grad_norm": 0.5591513514518738,
2263
+ "learning_rate": 5e-05,
2264
+ "loss": 0.8788,
2265
+ "step": 3120
2266
+ },
2267
+ {
2268
+ "epoch": 9.873817034700316,
2269
+ "grad_norm": 0.5862401723861694,
2270
+ "learning_rate": 5e-05,
2271
+ "loss": 0.9113,
2272
+ "step": 3130
2273
+ },
2274
+ {
2275
+ "epoch": 9.905362776025237,
2276
+ "grad_norm": 0.5847012996673584,
2277
+ "learning_rate": 5e-05,
2278
+ "loss": 0.9228,
2279
+ "step": 3140
2280
+ },
2281
+ {
2282
+ "epoch": 9.936908517350158,
2283
+ "grad_norm": 0.5507489442825317,
2284
+ "learning_rate": 5e-05,
2285
+ "loss": 0.9114,
2286
+ "step": 3150
2287
+ },
2288
+ {
2289
+ "epoch": 9.968454258675079,
2290
+ "grad_norm": 0.5988635420799255,
2291
+ "learning_rate": 5e-05,
2292
+ "loss": 0.8753,
2293
+ "step": 3160
2294
+ },
2295
+ {
2296
+ "epoch": 10.0,
2297
+ "grad_norm": 0.6517265439033508,
2298
+ "learning_rate": 5e-05,
2299
+ "loss": 0.8532,
2300
+ "step": 3170
2301
+ },
2302
+ {
2303
+ "epoch": 10.0,
2304
+ "eval_loss": 1.0107625722885132,
2305
+ "eval_runtime": 66.5594,
2306
+ "eval_samples_per_second": 4.778,
2307
+ "eval_steps_per_second": 0.601,
2308
+ "step": 3170
2309
+ }
2310
+ ],
2311
+ "logging_steps": 10,
2312
+ "max_steps": 6340,
2313
+ "num_input_tokens_seen": 0,
2314
+ "num_train_epochs": 20,
2315
+ "save_steps": 500,
2316
+ "stateful_callbacks": {
2317
+ "TrainerControl": {
2318
+ "args": {
2319
+ "should_epoch_stop": false,
2320
+ "should_evaluate": false,
2321
+ "should_log": false,
2322
+ "should_save": true,
2323
+ "should_training_stop": false
2324
+ },
2325
+ "attributes": {}
2326
+ }
2327
+ },
2328
+ "total_flos": 1.1112958196396851e+18,
2329
+ "train_batch_size": 4,
2330
+ "trial_name": null,
2331
+ "trial_params": null
2332
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:713a1e00ec5bcde1cbe4902710dd1574da5f2192b937fb19166532afe2f27a48
3
+ size 5432