flamiinngo commited on
Commit
9cbd3f2
·
verified ·
1 Parent(s): d621105

Add LoRA adapter weights (Llama-3.3-70B, personal finance)

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,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: meta-llama/Llama-3.3-70B-Instruct-Reference
3
+ library_name: peft
4
+ license: other
5
+ tags:
6
+ - lora
7
+ - peft
8
+ - adapter
9
+ - adaption
10
+ ---
11
+
12
+ # adaption_personal_finance_advice_qa
13
+
14
+ ## Model Training
15
+
16
+ A LORA adapter for `meta-llama/Llama-3.3-70B-Instruct-Reference`. This model was trained with SFT using [Adaption](https://adaptionlabs.ai)'s AutoScientist on the personal_finance_advice_qa dataset.
17
+
18
+
19
+ ### AutoScientist Config
20
+
21
+ ```json
22
+ {
23
+ "job_id": "50a9c873-763a-4032-86fc-c7c96ab8e932",
24
+ "training_experiment_id": "e03bb20c-f7f9-4ce5-975c-05dc36463138",
25
+ "original_model_name": "meta-llama/Llama-3.3-70B-Instruct-Reference",
26
+ "trained_model_name": "adaption_personal_finance_advice_qa",
27
+ "training_method": "sft",
28
+ "training_type": "lora",
29
+ "data_format": "chat",
30
+ "hyperparams": {
31
+ "lora": "true",
32
+ "lora_r": 64,
33
+ "n_evals": 5,
34
+ "n_epochs": 4,
35
+ "batch_size": "max",
36
+ "lora_alpha": 128,
37
+ "lora_dropout": 0,
38
+ "min_lr_ratio": 0.1,
39
+ "warmup_ratio": 0.05,
40
+ "weight_decay": 0.05,
41
+ "learning_rate": 0.0001,
42
+ "max_grad_norm": 1,
43
+ "base_model_size": "70B",
44
+ "train_on_inputs": "false",
45
+ "training_method": "sft",
46
+ "lr_scheduler_type": "cosine",
47
+ "scheduler_num_cycles": 0.5,
48
+ "lora_trainable_modules": "all-linear"
49
+ }
50
+ }
51
+ ```
52
+
53
+ ## Training Data
54
+
55
+ The model was trained on 11,639 rows of adapted data with the following domain distribution: personal-finance (90%), legal (5%), career-workplace (2%), transportation (1%), hr (1%), personal-growth (0%), medical (0%), parenting-family (0%), product-advice (0%), travel (0%), dating (0%), how-to (0%), cooking (0%), governance (0%), agriculture (0%), market-analysis (0%), corporate-business (0%), architecture-design (0%).
56
+
57
+ ## Model Evaluation
58
+
59
+ The model was evaluated on an in-distribution held-out test set as well as a broader domain-specific test set to measure generalization.
60
+
61
+
62
+ | Domain | Win rate vs. base model |
63
+ | --- | --- |
64
+ | personal-finance | 76% |
65
+
66
+ ## How to use
67
+
68
+ ```bash
69
+ pip install torch transformers peft
70
+ ```
71
+
72
+ ```python
73
+ import torch
74
+ from transformers import AutoModelForCausalLM, AutoTokenizer
75
+ from peft import PeftModel
76
+
77
+ BASE = "meta-llama/Llama-3.3-70B-Instruct-Reference"
78
+ ADAPTER = "<this-repo-id>"
79
+
80
+ device = "cuda" if torch.cuda.is_available() else "cpu"
81
+ dtype = torch.float32 if device == "cpu" else torch.bfloat16
82
+
83
+ base = AutoModelForCausalLM.from_pretrained(BASE, dtype=dtype).to(device)
84
+ model = PeftModel.from_pretrained(base, ADAPTER)
85
+ # Optional: merge the LoRA weights into the base for faster inference
86
+ model = model.merge_and_unload()
87
+ model.eval()
88
+
89
+ tokenizer = AutoTokenizer.from_pretrained(BASE)
90
+ messages = [{"role": "user", "content": "Hello!"}]
91
+ text = tokenizer.apply_chat_template(
92
+ messages, tokenize=False, add_generation_prompt=True)
93
+ inputs = tokenizer(text, return_tensors="pt").to(device)
94
+
95
+ with torch.inference_mode():
96
+ out = model.generate(**inputs, max_new_tokens=512)
97
+ print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
98
+ ```
adapter_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "togethercomputer/Meta-Llama-3.3-70B-Instruct-Reference",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": [],
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 128,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.0,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "r": 64,
24
+ "rank_pattern": {},
25
+ "revision": null,
26
+ "target_modules": [
27
+ "k_proj",
28
+ "gate_proj",
29
+ "v_proj",
30
+ "o_proj",
31
+ "q_proj",
32
+ "up_proj",
33
+ "down_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf3385a87ad8b45041d57d1ef04518fcb56d5bc122780680751a4ebb23d96684
3
+ size 3313653480
chat_template.jinja ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{- bos_token }}
2
+ {%- if custom_tools is defined %}
3
+ {%- set tools = custom_tools %}
4
+ {%- endif %}
5
+ {%- if not tools_in_user_message is defined %}
6
+ {%- set tools_in_user_message = true %}
7
+ {%- endif %}
8
+ {%- if not date_string is defined %}
9
+ {%- set date_string = "26 Jul 2024" %}
10
+ {%- endif %}
11
+ {%- if not tools is defined %}
12
+ {%- set tools = none %}
13
+ {%- endif %}
14
+
15
+ {#- This block extracts the system message, so we can slot it into the right place. #}
16
+ {%- if messages[0]['role'] == 'system' %}
17
+ {%- set system_message = messages[0]['content']|trim %}
18
+ {%- set messages = messages[1:] %}
19
+ {%- else %}
20
+ {%- set system_message = "" %}
21
+ {%- endif %}
22
+
23
+ {#- System message + builtin tools #}
24
+ {{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
25
+ {%- if builtin_tools is defined or tools is not none %}
26
+ {{- "Environment: ipython\n" }}
27
+ {%- endif %}
28
+ {%- if builtin_tools is defined %}
29
+ {{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
30
+ {%- endif %}
31
+ {{- "Cutting Knowledge Date: December 2023\n" }}
32
+ {{- "Today Date: " + date_string + "\n\n" }}
33
+ {%- if tools is not none and not tools_in_user_message %}
34
+ {{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
35
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
36
+ {{- "Do not use variables.\n\n" }}
37
+ {%- for t in tools %}
38
+ {{- t | tojson(indent=4) }}
39
+ {{- "\n\n" }}
40
+ {%- endfor %}
41
+ {%- endif %}
42
+ {{- system_message }}
43
+ {{- "<|eot_id|>" }}
44
+
45
+ {#- Custom tools are passed in a user message with some extra guidance #}
46
+ {%- if tools_in_user_message and not tools is none %}
47
+ {#- Extract the first user message so we can plug it in here #}
48
+ {%- if messages | length != 0 %}
49
+ {%- set first_user_message = messages[0]['content']|trim %}
50
+ {%- set messages = messages[1:] %}
51
+ {%- else %}
52
+ {{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
53
+ {%- endif %}
54
+ {{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
55
+ {{- "Given the following functions, please respond with a JSON for a function call " }}
56
+ {{- "with its proper arguments that best answers the given prompt.\n\n" }}
57
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
58
+ {{- "Do not use variables.\n\n" }}
59
+ {%- for t in tools %}
60
+ {{- t | tojson(indent=4) }}
61
+ {{- "\n\n" }}
62
+ {%- endfor %}
63
+ {{- first_user_message + "<|eot_id|>"}}
64
+ {%- endif %}
65
+
66
+ {%- for message in messages %}
67
+ {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
68
+ {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
69
+ {%- elif 'tool_calls' in message %}
70
+ {%- if not message.tool_calls|length == 1 %}
71
+ {{- raise_exception("This model only supports single tool-calls at once!") }}
72
+ {%- endif %}
73
+ {%- set tool_call = message.tool_calls[0].function %}
74
+ {%- if builtin_tools is defined and tool_call.name in builtin_tools %}
75
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
76
+ {{- "<|python_tag|>" + tool_call.name + ".call(" }}
77
+ {%- for arg_name, arg_val in tool_call.arguments | items %}
78
+ {{- arg_name + '="' + arg_val + '"' }}
79
+ {%- if not loop.last %}
80
+ {{- ", " }}
81
+ {%- endif %}
82
+ {%- endfor %}
83
+ {{- ")" }}
84
+ {%- else %}
85
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
86
+ {{- '{"name": "' + tool_call.name + '", ' }}
87
+ {{- '"parameters": ' }}
88
+ {{- tool_call.arguments | tojson }}
89
+ {{- "}" }}
90
+ {%- endif %}
91
+ {%- if builtin_tools is defined %}
92
+ {#- This means we're in ipython mode #}
93
+ {{- "<|eom_id|>" }}
94
+ {%- else %}
95
+ {{- "<|eot_id|>" }}
96
+ {%- endif %}
97
+ {%- elif message.role == "tool" or message.role == "ipython" %}
98
+ {{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
99
+ {%- if message.content is mapping or message.content is iterable %}
100
+ {{- message.content | tojson }}
101
+ {%- else %}
102
+ {{- message.content }}
103
+ {%- endif %}
104
+ {{- "<|eot_id|>" }}
105
+ {%- endif %}
106
+ {%- endfor %}
107
+ {%- if add_generation_prompt %}
108
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
109
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 128000,
8
+ "dtype": "bfloat16",
9
+ "eos_token_id": 128009,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 8192,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 28672,
15
+ "max_position_embeddings": 131072,
16
+ "mlp_bias": false,
17
+ "model_type": "llama",
18
+ "num_attention_heads": 64,
19
+ "num_hidden_layers": 80,
20
+ "num_key_value_heads": 8,
21
+ "pad_token_id": 128009,
22
+ "pretraining_tp": 1,
23
+ "rms_norm_eps": 1e-05,
24
+ "rope_parameters": {
25
+ "factor": 8.0,
26
+ "high_freq_factor": 4.0,
27
+ "low_freq_factor": 1.0,
28
+ "original_max_position_embeddings": 8192,
29
+ "rope_theta": 500000.0,
30
+ "rope_type": "llama3"
31
+ },
32
+ "tie_word_embeddings": false,
33
+ "transformers_version": "5.10.1",
34
+ "use_cache": false,
35
+ "vocab_size": 128256,
36
+ "torch_dtype": "bfloat16"
37
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<|begin_of_text|>",
3
+ "eos_token": "<|eot_id|>",
4
+ "pad_token": "<|eot_id|>"
5
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
tokenizer_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<|begin_of_text|>",
4
+ "clean_up_tokenization_spaces": true,
5
+ "eos_token": "<|eot_id|>",
6
+ "is_local": false,
7
+ "local_files_only": true,
8
+ "model_input_names": [
9
+ "input_ids",
10
+ "attention_mask"
11
+ ],
12
+ "model_max_length": 131072,
13
+ "pad_token": "<|eot_id|>",
14
+ "padding_side": "right",
15
+ "tokenizer_class": "TokenizersBackend"
16
+ }
trainer_state.json ADDED
@@ -0,0 +1,1250 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 4.0,
6
+ "eval_steps": 33,
7
+ "global_step": 168,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.023809523809523808,
14
+ "grad_norm": 0.19468727707862854,
15
+ "learning_rate": 0.0,
16
+ "loss": 1.3935546875,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.047619047619047616,
21
+ "grad_norm": 0.25953492522239685,
22
+ "learning_rate": 1.1111111111111112e-05,
23
+ "loss": 1.6396484375,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.07142857142857142,
28
+ "grad_norm": 0.187949538230896,
29
+ "learning_rate": 2.2222222222222223e-05,
30
+ "loss": 1.396484375,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.09523809523809523,
35
+ "grad_norm": 0.14267033338546753,
36
+ "learning_rate": 3.3333333333333335e-05,
37
+ "loss": 1.314453125,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.11904761904761904,
42
+ "grad_norm": 0.13608872890472412,
43
+ "learning_rate": 4.4444444444444447e-05,
44
+ "loss": 1.365234375,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.14285714285714285,
49
+ "grad_norm": 0.08541593700647354,
50
+ "learning_rate": 5.555555555555556e-05,
51
+ "loss": 1.09423828125,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.16666666666666666,
56
+ "grad_norm": 0.09242819249629974,
57
+ "learning_rate": 6.666666666666667e-05,
58
+ "loss": 1.3681640625,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.19047619047619047,
63
+ "grad_norm": 0.07986351102590561,
64
+ "learning_rate": 7.777777777777778e-05,
65
+ "loss": 1.13330078125,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.21428571428571427,
70
+ "grad_norm": 0.12255741655826569,
71
+ "learning_rate": 8.888888888888889e-05,
72
+ "loss": 1.26171875,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.23809523809523808,
77
+ "grad_norm": 0.12448930740356445,
78
+ "learning_rate": 0.0001,
79
+ "loss": 1.220703125,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.2619047619047619,
84
+ "grad_norm": 0.07220698893070221,
85
+ "learning_rate": 9.99912163729821e-05,
86
+ "loss": 1.038330078125,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.2857142857142857,
91
+ "grad_norm": 0.0470508448779583,
92
+ "learning_rate": 9.996486892091074e-05,
93
+ "loss": 1.03173828125,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.30952380952380953,
98
+ "grad_norm": 0.033459704369306564,
99
+ "learning_rate": 9.992096792939448e-05,
100
+ "loss": 0.8048095703125,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.3333333333333333,
105
+ "grad_norm": 0.05528910830616951,
106
+ "learning_rate": 9.985953053665264e-05,
107
+ "loss": 1.13671875,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.35714285714285715,
112
+ "grad_norm": 0.052433520555496216,
113
+ "learning_rate": 9.978058072682489e-05,
114
+ "loss": 1.064453125,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.38095238095238093,
119
+ "grad_norm": 0.044099658727645874,
120
+ "learning_rate": 9.968414932060826e-05,
121
+ "loss": 1.15234375,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.40476190476190477,
126
+ "grad_norm": 0.042600758373737335,
127
+ "learning_rate": 9.957027396322522e-05,
128
+ "loss": 1.1826171875,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.42857142857142855,
133
+ "grad_norm": 0.042188938707113266,
134
+ "learning_rate": 9.943899910972752e-05,
135
+ "loss": 1.0927734375,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.4523809523809524,
140
+ "grad_norm": 0.043361663818359375,
141
+ "learning_rate": 9.929037600764186e-05,
142
+ "loss": 0.923095703125,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.47619047619047616,
147
+ "grad_norm": 0.04190001264214516,
148
+ "learning_rate": 9.912446267696358e-05,
149
+ "loss": 0.9501953125,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.5,
154
+ "grad_norm": 0.040796488523483276,
155
+ "learning_rate": 9.894132388750662e-05,
156
+ "loss": 1.07861328125,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.5238095238095238,
161
+ "grad_norm": 0.03711692616343498,
162
+ "learning_rate": 9.874103113361849e-05,
163
+ "loss": 1.06396484375,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.5476190476190477,
168
+ "grad_norm": 0.03595205768942833,
169
+ "learning_rate": 9.852366260627007e-05,
170
+ "loss": 1.05419921875,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.5714285714285714,
175
+ "grad_norm": 0.03659743070602417,
176
+ "learning_rate": 9.828930316253112e-05,
177
+ "loss": 1.03515625,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.5952380952380952,
182
+ "grad_norm": 0.034952323883771896,
183
+ "learning_rate": 9.80380442924435e-05,
184
+ "loss": 0.8470458984375,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.6190476190476191,
189
+ "grad_norm": 0.03435644879937172,
190
+ "learning_rate": 9.7769984083305e-05,
191
+ "loss": 0.97412109375,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.6428571428571429,
196
+ "grad_norm": 0.03677888587117195,
197
+ "learning_rate": 9.74852271813776e-05,
198
+ "loss": 1.0244140625,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.6666666666666666,
203
+ "grad_norm": 0.037179429084062576,
204
+ "learning_rate": 9.718388475103545e-05,
205
+ "loss": 1.0361328125,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.6904761904761905,
210
+ "grad_norm": 0.03537730127573013,
211
+ "learning_rate": 9.686607443136796e-05,
212
+ "loss": 1.07275390625,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.7142857142857143,
217
+ "grad_norm": 0.033934418112039566,
218
+ "learning_rate": 9.653192029025561e-05,
219
+ "loss": 1.0636672973632812,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.7380952380952381,
224
+ "grad_norm": 0.0342508926987648,
225
+ "learning_rate": 9.618155277593583e-05,
226
+ "loss": 0.9755859375,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.7619047619047619,
231
+ "grad_norm": 0.03621754050254822,
232
+ "learning_rate": 9.581510866607817e-05,
233
+ "loss": 1.02587890625,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.7857142857142857,
238
+ "grad_norm": 0.029987191781401634,
239
+ "learning_rate": 9.543273101438859e-05,
240
+ "loss": 0.9814453125,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.8095238095238095,
245
+ "grad_norm": 0.031167544424533844,
246
+ "learning_rate": 9.503456909476364e-05,
247
+ "loss": 0.8631591796875,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.8333333333333334,
252
+ "grad_norm": 0.03571572154760361,
253
+ "learning_rate": 9.46207783430164e-05,
254
+ "loss": 0.89501953125,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.8571428571428571,
259
+ "grad_norm": 0.03855983912944794,
260
+ "learning_rate": 9.419152029619696e-05,
261
+ "loss": 1.06396484375,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.8571428571428571,
266
+ "eval_loss": 0.95556640625,
267
+ "eval_runtime": 6.3853,
268
+ "eval_samples_per_second": 0.783,
269
+ "eval_steps_per_second": 0.157,
270
+ "step": 36
271
+ },
272
+ {
273
+ "epoch": 0.8809523809523809,
274
+ "grad_norm": 0.028229564428329468,
275
+ "learning_rate": 9.374696252953101e-05,
276
+ "loss": 0.88671875,
277
+ "step": 37
278
+ },
279
+ {
280
+ "epoch": 0.9047619047619048,
281
+ "grad_norm": 0.03608233481645584,
282
+ "learning_rate": 9.328727859100121e-05,
283
+ "loss": 1.0419921875,
284
+ "step": 38
285
+ },
286
+ {
287
+ "epoch": 0.9285714285714286,
288
+ "grad_norm": 0.035341136157512665,
289
+ "learning_rate": 9.2812647933597e-05,
290
+ "loss": 0.90478515625,
291
+ "step": 39
292
+ },
293
+ {
294
+ "epoch": 0.9523809523809523,
295
+ "grad_norm": 0.03361688181757927,
296
+ "learning_rate": 9.23232558452591e-05,
297
+ "loss": 0.99609375,
298
+ "step": 40
299
+ },
300
+ {
301
+ "epoch": 0.9761904761904762,
302
+ "grad_norm": 0.0339219830930233,
303
+ "learning_rate": 9.181929337654612e-05,
304
+ "loss": 0.91748046875,
305
+ "step": 41
306
+ },
307
+ {
308
+ "epoch": 1.0,
309
+ "grad_norm": 0.05091368034482002,
310
+ "learning_rate": 9.130095726605169e-05,
311
+ "loss": 0.79888916015625,
312
+ "step": 42
313
+ },
314
+ {
315
+ "epoch": 1.0238095238095237,
316
+ "grad_norm": 0.03272996097803116,
317
+ "learning_rate": 9.07684498636009e-05,
318
+ "loss": 0.95849609375,
319
+ "step": 43
320
+ },
321
+ {
322
+ "epoch": 1.0476190476190477,
323
+ "grad_norm": 0.039782822132110596,
324
+ "learning_rate": 9.02219790512563e-05,
325
+ "loss": 1.04638671875,
326
+ "step": 44
327
+ },
328
+ {
329
+ "epoch": 1.0714285714285714,
330
+ "grad_norm": 0.03554113209247589,
331
+ "learning_rate": 8.96617581621642e-05,
332
+ "loss": 0.9638671875,
333
+ "step": 45
334
+ },
335
+ {
336
+ "epoch": 1.0952380952380953,
337
+ "grad_norm": 0.03178030997514725,
338
+ "learning_rate": 8.90880058972729e-05,
339
+ "loss": 0.939453125,
340
+ "step": 46
341
+ },
342
+ {
343
+ "epoch": 1.119047619047619,
344
+ "grad_norm": 0.036923594772815704,
345
+ "learning_rate": 8.850094623995557e-05,
346
+ "loss": 0.95703125,
347
+ "step": 47
348
+ },
349
+ {
350
+ "epoch": 1.1428571428571428,
351
+ "grad_norm": 0.03367718309164047,
352
+ "learning_rate": 8.790080836857073e-05,
353
+ "loss": 0.8343505859375,
354
+ "step": 48
355
+ },
356
+ {
357
+ "epoch": 1.1666666666666667,
358
+ "grad_norm": 0.03425205498933792,
359
+ "learning_rate": 8.72878265669949e-05,
360
+ "loss": 1.0361328125,
361
+ "step": 49
362
+ },
363
+ {
364
+ "epoch": 1.1904761904761905,
365
+ "grad_norm": 0.031229691579937935,
366
+ "learning_rate": 8.666224013316203e-05,
367
+ "loss": 0.87744140625,
368
+ "step": 50
369
+ },
370
+ {
371
+ "epoch": 1.2142857142857142,
372
+ "grad_norm": 0.03565659001469612,
373
+ "learning_rate": 8.602429328564554e-05,
374
+ "loss": 0.984375,
375
+ "step": 51
376
+ },
377
+ {
378
+ "epoch": 1.2380952380952381,
379
+ "grad_norm": 0.03452285751700401,
380
+ "learning_rate": 8.537423506831948e-05,
381
+ "loss": 0.96875,
382
+ "step": 52
383
+ },
384
+ {
385
+ "epoch": 1.2619047619047619,
386
+ "grad_norm": 0.03380265459418297,
387
+ "learning_rate": 8.471231925313589e-05,
388
+ "loss": 0.84814453125,
389
+ "step": 53
390
+ },
391
+ {
392
+ "epoch": 1.2857142857142856,
393
+ "grad_norm": 0.032453760504722595,
394
+ "learning_rate": 8.403880424105644e-05,
395
+ "loss": 0.86328125,
396
+ "step": 54
397
+ },
398
+ {
399
+ "epoch": 1.3095238095238095,
400
+ "grad_norm": 0.03952884301543236,
401
+ "learning_rate": 8.335395296117701e-05,
402
+ "loss": 0.6719970703125,
403
+ "step": 55
404
+ },
405
+ {
406
+ "epoch": 1.3333333333333333,
407
+ "grad_norm": 0.034161731600761414,
408
+ "learning_rate": 8.265803276808449e-05,
409
+ "loss": 0.95947265625,
410
+ "step": 56
411
+ },
412
+ {
413
+ "epoch": 1.3571428571428572,
414
+ "grad_norm": 0.033962540328502655,
415
+ "learning_rate": 8.195131533748601e-05,
416
+ "loss": 0.89990234375,
417
+ "step": 57
418
+ },
419
+ {
420
+ "epoch": 1.380952380952381,
421
+ "grad_norm": 0.03533850982785225,
422
+ "learning_rate": 8.123407656015125e-05,
423
+ "loss": 0.974609375,
424
+ "step": 58
425
+ },
426
+ {
427
+ "epoch": 1.4047619047619047,
428
+ "grad_norm": 0.03641538694500923,
429
+ "learning_rate": 8.050659643420921e-05,
430
+ "loss": 1.0,
431
+ "step": 59
432
+ },
433
+ {
434
+ "epoch": 1.4285714285714286,
435
+ "grad_norm": 0.03433677926659584,
436
+ "learning_rate": 7.976915895584163e-05,
437
+ "loss": 0.9296875,
438
+ "step": 60
439
+ },
440
+ {
441
+ "epoch": 1.4523809523809523,
442
+ "grad_norm": 0.03667641431093216,
443
+ "learning_rate": 7.902205200841559e-05,
444
+ "loss": 0.778076171875,
445
+ "step": 61
446
+ },
447
+ {
448
+ "epoch": 1.4761904761904763,
449
+ "grad_norm": 0.034833427518606186,
450
+ "learning_rate": 7.826556725009857e-05,
451
+ "loss": 0.8173828125,
452
+ "step": 62
453
+ },
454
+ {
455
+ "epoch": 1.5,
456
+ "grad_norm": 0.0373813733458519,
457
+ "learning_rate": 7.75e-05,
458
+ "loss": 0.9296875,
459
+ "step": 63
460
+ },
461
+ {
462
+ "epoch": 1.5238095238095237,
463
+ "grad_norm": 0.039146050810813904,
464
+ "learning_rate": 7.672564912288352e-05,
465
+ "loss": 0.9169921875,
466
+ "step": 64
467
+ },
468
+ {
469
+ "epoch": 1.5476190476190477,
470
+ "grad_norm": 0.03721168264746666,
471
+ "learning_rate": 7.594281691249517e-05,
472
+ "loss": 0.9189453125,
473
+ "step": 65
474
+ },
475
+ {
476
+ "epoch": 1.5714285714285714,
477
+ "grad_norm": 0.04111553728580475,
478
+ "learning_rate": 7.515180897355285e-05,
479
+ "loss": 0.8896484375,
480
+ "step": 66
481
+ },
482
+ {
483
+ "epoch": 1.5952380952380953,
484
+ "grad_norm": 0.033117227256298065,
485
+ "learning_rate": 7.435293410244342e-05,
486
+ "loss": 0.73291015625,
487
+ "step": 67
488
+ },
489
+ {
490
+ "epoch": 1.619047619047619,
491
+ "grad_norm": 0.03749477490782738,
492
+ "learning_rate": 7.354650416667365e-05,
493
+ "loss": 0.841796875,
494
+ "step": 68
495
+ },
496
+ {
497
+ "epoch": 1.6428571428571428,
498
+ "grad_norm": 0.044476382434368134,
499
+ "learning_rate": 7.273283398312226e-05,
500
+ "loss": 0.89013671875,
501
+ "step": 69
502
+ },
503
+ {
504
+ "epoch": 1.6428571428571428,
505
+ "eval_loss": 0.89794921875,
506
+ "eval_runtime": 6.3986,
507
+ "eval_samples_per_second": 0.781,
508
+ "eval_steps_per_second": 0.156,
509
+ "step": 69
510
+ },
511
+ {
512
+ "epoch": 1.6666666666666665,
513
+ "grad_norm": 0.04343419894576073,
514
+ "learning_rate": 7.191224119514072e-05,
515
+ "loss": 0.88916015625,
516
+ "step": 70
517
+ },
518
+ {
519
+ "epoch": 1.6904761904761905,
520
+ "grad_norm": 0.04387887194752693,
521
+ "learning_rate": 7.108504614855052e-05,
522
+ "loss": 0.92529296875,
523
+ "step": 71
524
+ },
525
+ {
526
+ "epoch": 1.7142857142857144,
527
+ "grad_norm": 0.047499287873506546,
528
+ "learning_rate": 7.025157176658543e-05,
529
+ "loss": 0.917877197265625,
530
+ "step": 72
531
+ },
532
+ {
533
+ "epoch": 1.7380952380952381,
534
+ "grad_norm": 0.04214579984545708,
535
+ "learning_rate": 6.94121434238277e-05,
536
+ "loss": 0.8505859375,
537
+ "step": 73
538
+ },
539
+ {
540
+ "epoch": 1.7619047619047619,
541
+ "grad_norm": 0.04342899098992348,
542
+ "learning_rate": 6.856708881918714e-05,
543
+ "loss": 0.892578125,
544
+ "step": 74
545
+ },
546
+ {
547
+ "epoch": 1.7857142857142856,
548
+ "grad_norm": 0.04087640345096588,
549
+ "learning_rate": 6.771673784797296e-05,
550
+ "loss": 0.85693359375,
551
+ "step": 75
552
+ },
553
+ {
554
+ "epoch": 1.8095238095238095,
555
+ "grad_norm": 0.03890484198927879,
556
+ "learning_rate": 6.686142247310805e-05,
557
+ "loss": 0.7464599609375,
558
+ "step": 76
559
+ },
560
+ {
561
+ "epoch": 1.8333333333333335,
562
+ "grad_norm": 0.038060594350099564,
563
+ "learning_rate": 6.600147659553622e-05,
564
+ "loss": 0.7783203125,
565
+ "step": 77
566
+ },
567
+ {
568
+ "epoch": 1.8571428571428572,
569
+ "grad_norm": 0.04899071902036667,
570
+ "learning_rate": 6.513723592387277e-05,
571
+ "loss": 0.9326171875,
572
+ "step": 78
573
+ },
574
+ {
575
+ "epoch": 1.880952380952381,
576
+ "grad_norm": 0.03934891149401665,
577
+ "learning_rate": 6.426903784334943e-05,
578
+ "loss": 0.77880859375,
579
+ "step": 79
580
+ },
581
+ {
582
+ "epoch": 1.9047619047619047,
583
+ "grad_norm": 0.04572214558720589,
584
+ "learning_rate": 6.33972212841047e-05,
585
+ "loss": 0.9130859375,
586
+ "step": 80
587
+ },
588
+ {
589
+ "epoch": 1.9285714285714286,
590
+ "grad_norm": 0.04346858337521553,
591
+ "learning_rate": 6.252212658887124e-05,
592
+ "loss": 0.7880859375,
593
+ "step": 81
594
+ },
595
+ {
596
+ "epoch": 1.9523809523809523,
597
+ "grad_norm": 0.04769371077418327,
598
+ "learning_rate": 6.164409538011167e-05,
599
+ "loss": 0.87255859375,
600
+ "step": 82
601
+ },
602
+ {
603
+ "epoch": 1.9761904761904763,
604
+ "grad_norm": 0.05800820142030716,
605
+ "learning_rate": 6.076347042665471e-05,
606
+ "loss": 0.8046875,
607
+ "step": 83
608
+ },
609
+ {
610
+ "epoch": 2.0,
611
+ "grad_norm": 0.03807287663221359,
612
+ "learning_rate": 5.988059550988415e-05,
613
+ "loss": 0.681884765625,
614
+ "step": 84
615
+ },
616
+ {
617
+ "epoch": 2.0238095238095237,
618
+ "grad_norm": 0.04672769457101822,
619
+ "learning_rate": 5.899581528953207e-05,
620
+ "loss": 0.8271484375,
621
+ "step": 85
622
+ },
623
+ {
624
+ "epoch": 2.0476190476190474,
625
+ "grad_norm": 0.051381245255470276,
626
+ "learning_rate": 5.810947516912951e-05,
627
+ "loss": 0.90966796875,
628
+ "step": 86
629
+ },
630
+ {
631
+ "epoch": 2.0714285714285716,
632
+ "grad_norm": 0.05037863925099373,
633
+ "learning_rate": 5.722192116116664e-05,
634
+ "loss": 0.8447265625,
635
+ "step": 87
636
+ },
637
+ {
638
+ "epoch": 2.0952380952380953,
639
+ "grad_norm": 0.047110676765441895,
640
+ "learning_rate": 5.633349975201519e-05,
641
+ "loss": 0.81982421875,
642
+ "step": 88
643
+ },
644
+ {
645
+ "epoch": 2.119047619047619,
646
+ "grad_norm": 0.051410332322120667,
647
+ "learning_rate": 5.544455776666596e-05,
648
+ "loss": 0.8359375,
649
+ "step": 89
650
+ },
651
+ {
652
+ "epoch": 2.142857142857143,
653
+ "grad_norm": 0.0461672879755497,
654
+ "learning_rate": 5.4555442233334054e-05,
655
+ "loss": 0.7286376953125,
656
+ "step": 90
657
+ },
658
+ {
659
+ "epoch": 2.1666666666666665,
660
+ "grad_norm": 0.06829432398080826,
661
+ "learning_rate": 5.366650024798482e-05,
662
+ "loss": 0.90234375,
663
+ "step": 91
664
+ },
665
+ {
666
+ "epoch": 2.1904761904761907,
667
+ "grad_norm": 0.04619131237268448,
668
+ "learning_rate": 5.2778078838833365e-05,
669
+ "loss": 0.766357421875,
670
+ "step": 92
671
+ },
672
+ {
673
+ "epoch": 2.2142857142857144,
674
+ "grad_norm": 0.057096630334854126,
675
+ "learning_rate": 5.18905248308705e-05,
676
+ "loss": 0.8525390625,
677
+ "step": 93
678
+ },
679
+ {
680
+ "epoch": 2.238095238095238,
681
+ "grad_norm": 0.050893694162368774,
682
+ "learning_rate": 5.100418471046794e-05,
683
+ "loss": 0.8447265625,
684
+ "step": 94
685
+ },
686
+ {
687
+ "epoch": 2.261904761904762,
688
+ "grad_norm": 0.04828200489282608,
689
+ "learning_rate": 5.011940449011586e-05,
690
+ "loss": 0.741455078125,
691
+ "step": 95
692
+ },
693
+ {
694
+ "epoch": 2.2857142857142856,
695
+ "grad_norm": 0.048259492963552475,
696
+ "learning_rate": 4.92365295733453e-05,
697
+ "loss": 0.75634765625,
698
+ "step": 96
699
+ },
700
+ {
701
+ "epoch": 2.3095238095238093,
702
+ "grad_norm": 0.04044073820114136,
703
+ "learning_rate": 4.835590461988836e-05,
704
+ "loss": 0.5877685546875,
705
+ "step": 97
706
+ },
707
+ {
708
+ "epoch": 2.3333333333333335,
709
+ "grad_norm": 0.051675036549568176,
710
+ "learning_rate": 4.747787341112876e-05,
711
+ "loss": 0.83984375,
712
+ "step": 98
713
+ },
714
+ {
715
+ "epoch": 2.357142857142857,
716
+ "grad_norm": 0.05046414956450462,
717
+ "learning_rate": 4.66027787158953e-05,
718
+ "loss": 0.78515625,
719
+ "step": 99
720
+ },
721
+ {
722
+ "epoch": 2.380952380952381,
723
+ "grad_norm": 0.05342910438776016,
724
+ "learning_rate": 4.573096215665058e-05,
725
+ "loss": 0.849609375,
726
+ "step": 100
727
+ },
728
+ {
729
+ "epoch": 2.4047619047619047,
730
+ "grad_norm": 0.056085772812366486,
731
+ "learning_rate": 4.486276407612723e-05,
732
+ "loss": 0.87158203125,
733
+ "step": 101
734
+ },
735
+ {
736
+ "epoch": 2.4285714285714284,
737
+ "grad_norm": 0.053744085133075714,
738
+ "learning_rate": 4.399852340446379e-05,
739
+ "loss": 0.81005859375,
740
+ "step": 102
741
+ },
742
+ {
743
+ "epoch": 2.4285714285714284,
744
+ "eval_loss": 0.89111328125,
745
+ "eval_runtime": 6.389,
746
+ "eval_samples_per_second": 0.783,
747
+ "eval_steps_per_second": 0.157,
748
+ "step": 102
749
+ },
750
+ {
751
+ "epoch": 2.4523809523809526,
752
+ "grad_norm": 0.05157238617539406,
753
+ "learning_rate": 4.3138577526891964e-05,
754
+ "loss": 0.680908203125,
755
+ "step": 103
756
+ },
757
+ {
758
+ "epoch": 2.4761904761904763,
759
+ "grad_norm": 0.053052742034196854,
760
+ "learning_rate": 4.228326215202706e-05,
761
+ "loss": 0.712890625,
762
+ "step": 104
763
+ },
764
+ {
765
+ "epoch": 2.5,
766
+ "grad_norm": 0.05984127148985863,
767
+ "learning_rate": 4.1432911180812875e-05,
768
+ "loss": 0.81103515625,
769
+ "step": 105
770
+ },
771
+ {
772
+ "epoch": 2.5238095238095237,
773
+ "grad_norm": 0.061421554535627365,
774
+ "learning_rate": 4.058785657617232e-05,
775
+ "loss": 0.7939453125,
776
+ "step": 106
777
+ },
778
+ {
779
+ "epoch": 2.5476190476190474,
780
+ "grad_norm": 0.0586903840303421,
781
+ "learning_rate": 3.974842823341458e-05,
782
+ "loss": 0.8076171875,
783
+ "step": 107
784
+ },
785
+ {
786
+ "epoch": 2.571428571428571,
787
+ "grad_norm": 0.05761508643627167,
788
+ "learning_rate": 3.89149538514495e-05,
789
+ "loss": 0.775390625,
790
+ "step": 108
791
+ },
792
+ {
793
+ "epoch": 2.5952380952380953,
794
+ "grad_norm": 0.08362194895744324,
795
+ "learning_rate": 3.8087758804859295e-05,
796
+ "loss": 0.643157958984375,
797
+ "step": 109
798
+ },
799
+ {
800
+ "epoch": 2.619047619047619,
801
+ "grad_norm": 0.05520815774798393,
802
+ "learning_rate": 3.726716601687775e-05,
803
+ "loss": 0.7333984375,
804
+ "step": 110
805
+ },
806
+ {
807
+ "epoch": 2.642857142857143,
808
+ "grad_norm": 0.060749031603336334,
809
+ "learning_rate": 3.645349583332637e-05,
810
+ "loss": 0.7763671875,
811
+ "step": 111
812
+ },
813
+ {
814
+ "epoch": 2.6666666666666665,
815
+ "grad_norm": 0.06587613373994827,
816
+ "learning_rate": 3.5647065897556596e-05,
817
+ "loss": 0.76416015625,
818
+ "step": 112
819
+ },
820
+ {
821
+ "epoch": 2.6904761904761907,
822
+ "grad_norm": 0.06273584812879562,
823
+ "learning_rate": 3.484819102644717e-05,
824
+ "loss": 0.798828125,
825
+ "step": 113
826
+ },
827
+ {
828
+ "epoch": 2.7142857142857144,
829
+ "grad_norm": 0.06525491923093796,
830
+ "learning_rate": 3.405718308750485e-05,
831
+ "loss": 0.782867431640625,
832
+ "step": 114
833
+ },
834
+ {
835
+ "epoch": 2.738095238095238,
836
+ "grad_norm": 0.062464285641908646,
837
+ "learning_rate": 3.327435087711649e-05,
838
+ "loss": 0.7421875,
839
+ "step": 115
840
+ },
841
+ {
842
+ "epoch": 2.761904761904762,
843
+ "grad_norm": 0.0668715164065361,
844
+ "learning_rate": 3.250000000000001e-05,
845
+ "loss": 0.77587890625,
846
+ "step": 116
847
+ },
848
+ {
849
+ "epoch": 2.7857142857142856,
850
+ "grad_norm": 0.06833118200302124,
851
+ "learning_rate": 3.173443274990145e-05,
852
+ "loss": 0.74267578125,
853
+ "step": 117
854
+ },
855
+ {
856
+ "epoch": 2.8095238095238093,
857
+ "grad_norm": 0.059672702103853226,
858
+ "learning_rate": 3.097794799158444e-05,
859
+ "loss": 0.6473388671875,
860
+ "step": 118
861
+ },
862
+ {
863
+ "epoch": 2.8333333333333335,
864
+ "grad_norm": 0.0572911761701107,
865
+ "learning_rate": 3.023084104415838e-05,
866
+ "loss": 0.681396484375,
867
+ "step": 119
868
+ },
869
+ {
870
+ "epoch": 2.857142857142857,
871
+ "grad_norm": 0.06925146281719208,
872
+ "learning_rate": 2.949340356579081e-05,
873
+ "loss": 0.81201171875,
874
+ "step": 120
875
+ },
876
+ {
877
+ "epoch": 2.880952380952381,
878
+ "grad_norm": 0.058548275381326675,
879
+ "learning_rate": 2.8765923439848764e-05,
880
+ "loss": 0.681884765625,
881
+ "step": 121
882
+ },
883
+ {
884
+ "epoch": 2.9047619047619047,
885
+ "grad_norm": 0.06802289932966232,
886
+ "learning_rate": 2.8048684662514003e-05,
887
+ "loss": 0.7958984375,
888
+ "step": 122
889
+ },
890
+ {
891
+ "epoch": 2.928571428571429,
892
+ "grad_norm": 0.06336236745119095,
893
+ "learning_rate": 2.7341967231915534e-05,
894
+ "loss": 0.685546875,
895
+ "step": 123
896
+ },
897
+ {
898
+ "epoch": 2.9523809523809526,
899
+ "grad_norm": 0.0702662467956543,
900
+ "learning_rate": 2.6646047038823007e-05,
901
+ "loss": 0.7607421875,
902
+ "step": 124
903
+ },
904
+ {
905
+ "epoch": 2.9761904761904763,
906
+ "grad_norm": 0.06782855093479156,
907
+ "learning_rate": 2.596119575894358e-05,
908
+ "loss": 0.71142578125,
909
+ "step": 125
910
+ },
911
+ {
912
+ "epoch": 3.0,
913
+ "grad_norm": 0.06282392889261246,
914
+ "learning_rate": 2.5287680746864136e-05,
915
+ "loss": 0.5767822265625,
916
+ "step": 126
917
+ },
918
+ {
919
+ "epoch": 3.0238095238095237,
920
+ "grad_norm": 0.06877307593822479,
921
+ "learning_rate": 2.4625764931680536e-05,
922
+ "loss": 0.701904296875,
923
+ "step": 127
924
+ },
925
+ {
926
+ "epoch": 3.0476190476190474,
927
+ "grad_norm": 0.075661800801754,
928
+ "learning_rate": 2.397570671435448e-05,
929
+ "loss": 0.78076171875,
930
+ "step": 128
931
+ },
932
+ {
933
+ "epoch": 3.0714285714285716,
934
+ "grad_norm": 0.06782848387956619,
935
+ "learning_rate": 2.3337759866837984e-05,
936
+ "loss": 0.7373046875,
937
+ "step": 129
938
+ },
939
+ {
940
+ "epoch": 3.0952380952380953,
941
+ "grad_norm": 0.08836882561445236,
942
+ "learning_rate": 2.271217343300509e-05,
943
+ "loss": 0.71240234375,
944
+ "step": 130
945
+ },
946
+ {
947
+ "epoch": 3.119047619047619,
948
+ "grad_norm": 0.07202401012182236,
949
+ "learning_rate": 2.209919163142926e-05,
950
+ "loss": 0.72607421875,
951
+ "step": 131
952
+ },
953
+ {
954
+ "epoch": 3.142857142857143,
955
+ "grad_norm": 0.0658789649605751,
956
+ "learning_rate": 2.1499053760044426e-05,
957
+ "loss": 0.6387939453125,
958
+ "step": 132
959
+ },
960
+ {
961
+ "epoch": 3.1666666666666665,
962
+ "grad_norm": 0.07658467441797256,
963
+ "learning_rate": 2.0911994102727095e-05,
964
+ "loss": 0.78076171875,
965
+ "step": 133
966
+ },
967
+ {
968
+ "epoch": 3.1904761904761907,
969
+ "grad_norm": 0.06584449857473373,
970
+ "learning_rate": 2.0338241837835813e-05,
971
+ "loss": 0.669921875,
972
+ "step": 134
973
+ },
974
+ {
975
+ "epoch": 3.2142857142857144,
976
+ "grad_norm": 0.07634307444095612,
977
+ "learning_rate": 1.977802094874371e-05,
978
+ "loss": 0.7353515625,
979
+ "step": 135
980
+ },
981
+ {
982
+ "epoch": 3.2142857142857144,
983
+ "eval_loss": 0.9072265625,
984
+ "eval_runtime": 6.3793,
985
+ "eval_samples_per_second": 0.784,
986
+ "eval_steps_per_second": 0.157,
987
+ "step": 135
988
+ },
989
+ {
990
+ "epoch": 3.238095238095238,
991
+ "grad_norm": 0.07586608082056046,
992
+ "learning_rate": 1.9231550136399102e-05,
993
+ "loss": 0.7333984375,
994
+ "step": 136
995
+ },
996
+ {
997
+ "epoch": 3.261904761904762,
998
+ "grad_norm": 0.06973817199468613,
999
+ "learning_rate": 1.8699042733948316e-05,
1000
+ "loss": 0.647705078125,
1001
+ "step": 137
1002
+ },
1003
+ {
1004
+ "epoch": 3.2857142857142856,
1005
+ "grad_norm": 0.07253584265708923,
1006
+ "learning_rate": 1.818070662345389e-05,
1007
+ "loss": 0.6630859375,
1008
+ "step": 138
1009
+ },
1010
+ {
1011
+ "epoch": 3.3095238095238093,
1012
+ "grad_norm": 0.06525201350450516,
1013
+ "learning_rate": 1.7676744154740922e-05,
1014
+ "loss": 0.5201416015625,
1015
+ "step": 139
1016
+ },
1017
+ {
1018
+ "epoch": 3.3333333333333335,
1019
+ "grad_norm": 0.0821850597858429,
1020
+ "learning_rate": 1.7187352066403012e-05,
1021
+ "loss": 0.744140625,
1022
+ "step": 140
1023
+ },
1024
+ {
1025
+ "epoch": 3.357142857142857,
1026
+ "grad_norm": 0.07470913976430893,
1027
+ "learning_rate": 1.6712721408998797e-05,
1028
+ "loss": 0.69384765625,
1029
+ "step": 141
1030
+ },
1031
+ {
1032
+ "epoch": 3.380952380952381,
1033
+ "grad_norm": 0.07955524325370789,
1034
+ "learning_rate": 1.6253037470469e-05,
1035
+ "loss": 0.74267578125,
1036
+ "step": 142
1037
+ },
1038
+ {
1039
+ "epoch": 3.4047619047619047,
1040
+ "grad_norm": 0.07748151570558548,
1041
+ "learning_rate": 1.5808479703803046e-05,
1042
+ "loss": 0.763671875,
1043
+ "step": 143
1044
+ },
1045
+ {
1046
+ "epoch": 3.4285714285714284,
1047
+ "grad_norm": 0.07890678197145462,
1048
+ "learning_rate": 1.5379221656983617e-05,
1049
+ "loss": 0.7119140625,
1050
+ "step": 144
1051
+ },
1052
+ {
1053
+ "epoch": 3.4523809523809526,
1054
+ "grad_norm": 0.06560467183589935,
1055
+ "learning_rate": 1.4965430905236377e-05,
1056
+ "loss": 0.60595703125,
1057
+ "step": 145
1058
+ },
1059
+ {
1060
+ "epoch": 3.4761904761904763,
1061
+ "grad_norm": 0.07202399522066116,
1062
+ "learning_rate": 1.456726898561141e-05,
1063
+ "loss": 0.6318359375,
1064
+ "step": 146
1065
+ },
1066
+ {
1067
+ "epoch": 3.5,
1068
+ "grad_norm": 0.08173156529664993,
1069
+ "learning_rate": 1.4184891333921824e-05,
1070
+ "loss": 0.71630859375,
1071
+ "step": 147
1072
+ },
1073
+ {
1074
+ "epoch": 3.5238095238095237,
1075
+ "grad_norm": 0.08595408499240875,
1076
+ "learning_rate": 1.381844722406417e-05,
1077
+ "loss": 0.701171875,
1078
+ "step": 148
1079
+ },
1080
+ {
1081
+ "epoch": 3.5476190476190474,
1082
+ "grad_norm": 0.07890654355287552,
1083
+ "learning_rate": 1.3468079709744394e-05,
1084
+ "loss": 0.72412109375,
1085
+ "step": 149
1086
+ },
1087
+ {
1088
+ "epoch": 3.571428571428571,
1089
+ "grad_norm": 0.0794968381524086,
1090
+ "learning_rate": 1.313392556863205e-05,
1091
+ "loss": 0.689453125,
1092
+ "step": 150
1093
+ },
1094
+ {
1095
+ "epoch": 3.5952380952380953,
1096
+ "grad_norm": 0.07299920916557312,
1097
+ "learning_rate": 1.281611524896456e-05,
1098
+ "loss": 0.5780029296875,
1099
+ "step": 151
1100
+ },
1101
+ {
1102
+ "epoch": 3.619047619047619,
1103
+ "grad_norm": 0.07846228778362274,
1104
+ "learning_rate": 1.2514772818622392e-05,
1105
+ "loss": 0.654296875,
1106
+ "step": 152
1107
+ },
1108
+ {
1109
+ "epoch": 3.642857142857143,
1110
+ "grad_norm": 0.0770033448934555,
1111
+ "learning_rate": 1.2230015916695003e-05,
1112
+ "loss": 0.68896484375,
1113
+ "step": 153
1114
+ },
1115
+ {
1116
+ "epoch": 3.6666666666666665,
1117
+ "grad_norm": 0.08408365398645401,
1118
+ "learning_rate": 1.1961955707556493e-05,
1119
+ "loss": 0.6728515625,
1120
+ "step": 154
1121
+ },
1122
+ {
1123
+ "epoch": 3.6904761904761907,
1124
+ "grad_norm": 0.08708649128675461,
1125
+ "learning_rate": 1.171069683746888e-05,
1126
+ "loss": 0.705078125,
1127
+ "step": 155
1128
+ },
1129
+ {
1130
+ "epoch": 3.7142857142857144,
1131
+ "grad_norm": 0.09406232833862305,
1132
+ "learning_rate": 1.1476337393729933e-05,
1133
+ "loss": 0.6865119934082031,
1134
+ "step": 156
1135
+ },
1136
+ {
1137
+ "epoch": 3.738095238095238,
1138
+ "grad_norm": 0.0820961520075798,
1139
+ "learning_rate": 1.1258968866381517e-05,
1140
+ "loss": 0.6630859375,
1141
+ "step": 157
1142
+ },
1143
+ {
1144
+ "epoch": 3.761904761904762,
1145
+ "grad_norm": 0.08721650391817093,
1146
+ "learning_rate": 1.1058676112493394e-05,
1147
+ "loss": 0.6923828125,
1148
+ "step": 158
1149
+ },
1150
+ {
1151
+ "epoch": 3.7857142857142856,
1152
+ "grad_norm": 0.0904761329293251,
1153
+ "learning_rate": 1.0875537323036434e-05,
1154
+ "loss": 0.6640625,
1155
+ "step": 159
1156
+ },
1157
+ {
1158
+ "epoch": 3.8095238095238093,
1159
+ "grad_norm": 0.08843201398849487,
1160
+ "learning_rate": 1.0709623992358144e-05,
1161
+ "loss": 0.5806884765625,
1162
+ "step": 160
1163
+ },
1164
+ {
1165
+ "epoch": 3.8333333333333335,
1166
+ "grad_norm": 0.08065912872552872,
1167
+ "learning_rate": 1.0561000890272495e-05,
1168
+ "loss": 0.617431640625,
1169
+ "step": 161
1170
+ },
1171
+ {
1172
+ "epoch": 3.857142857142857,
1173
+ "grad_norm": 0.08902918547391891,
1174
+ "learning_rate": 1.04297260367748e-05,
1175
+ "loss": 0.7333984375,
1176
+ "step": 162
1177
+ },
1178
+ {
1179
+ "epoch": 3.880952380952381,
1180
+ "grad_norm": 0.07814877480268478,
1181
+ "learning_rate": 1.031585067939174e-05,
1182
+ "loss": 0.6190185546875,
1183
+ "step": 163
1184
+ },
1185
+ {
1186
+ "epoch": 3.9047619047619047,
1187
+ "grad_norm": 0.08857692778110504,
1188
+ "learning_rate": 1.0219419273175115e-05,
1189
+ "loss": 0.72265625,
1190
+ "step": 164
1191
+ },
1192
+ {
1193
+ "epoch": 3.928571428571429,
1194
+ "grad_norm": 0.07772155106067657,
1195
+ "learning_rate": 1.014046946334738e-05,
1196
+ "loss": 0.623291015625,
1197
+ "step": 165
1198
+ },
1199
+ {
1200
+ "epoch": 3.9523809523809526,
1201
+ "grad_norm": 0.09102645516395569,
1202
+ "learning_rate": 1.007903207060554e-05,
1203
+ "loss": 0.693359375,
1204
+ "step": 166
1205
+ },
1206
+ {
1207
+ "epoch": 3.9761904761904763,
1208
+ "grad_norm": 0.07549668103456497,
1209
+ "learning_rate": 1.0035131079089268e-05,
1210
+ "loss": 0.65283203125,
1211
+ "step": 167
1212
+ },
1213
+ {
1214
+ "epoch": 4.0,
1215
+ "grad_norm": 0.07577605545520782,
1216
+ "learning_rate": 1.0008783627017913e-05,
1217
+ "loss": 0.515533447265625,
1218
+ "step": 168
1219
+ },
1220
+ {
1221
+ "epoch": 4.0,
1222
+ "eval_loss": 0.9208984375,
1223
+ "eval_runtime": 6.3687,
1224
+ "eval_samples_per_second": 0.785,
1225
+ "eval_steps_per_second": 0.157,
1226
+ "step": 168
1227
+ }
1228
+ ],
1229
+ "logging_steps": 1.0,
1230
+ "max_steps": 168,
1231
+ "num_input_tokens_seen": 0,
1232
+ "num_train_epochs": 4,
1233
+ "save_steps": 0,
1234
+ "stateful_callbacks": {
1235
+ "TrainerControl": {
1236
+ "args": {
1237
+ "should_epoch_stop": false,
1238
+ "should_evaluate": false,
1239
+ "should_log": false,
1240
+ "should_save": true,
1241
+ "should_training_stop": true
1242
+ },
1243
+ "attributes": {}
1244
+ }
1245
+ },
1246
+ "total_flos": 1.3897071954197742e+19,
1247
+ "train_batch_size": 1,
1248
+ "trial_name": null,
1249
+ "trial_params": null
1250
+ }