Bharath Kumar Kakumani
commited on
Upload checkpoint-5000
Browse files- .gitattributes +1 -0
- checkpoint-5000/chat_template.jinja +93 -0
- checkpoint-5000/config.json +36 -0
- checkpoint-5000/generation_config.json +13 -0
- checkpoint-5000/model-00001-of-00002.safetensors +3 -0
- checkpoint-5000/model-00002-of-00002.safetensors +3 -0
- checkpoint-5000/model.safetensors.index.json +262 -0
- checkpoint-5000/optimizer.pt +3 -0
- checkpoint-5000/rng_state_0.pth +3 -0
- checkpoint-5000/rng_state_1.pth +3 -0
- checkpoint-5000/rng_state_2.pth +3 -0
- checkpoint-5000/rng_state_3.pth +3 -0
- checkpoint-5000/rng_state_4.pth +3 -0
- checkpoint-5000/rng_state_5.pth +3 -0
- checkpoint-5000/rng_state_6.pth +3 -0
- checkpoint-5000/rng_state_7.pth +3 -0
- checkpoint-5000/scheduler.pt +3 -0
- checkpoint-5000/special_tokens_map.json +165 -0
- checkpoint-5000/tokenizer.json +3 -0
- checkpoint-5000/tokenizer_config.json +0 -0
- checkpoint-5000/trainer_state.json +749 -0
- checkpoint-5000/training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -35,3 +35,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
checkpoint-10000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
checkpoint-15000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
checkpoint-10000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
checkpoint-15000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
checkpoint-5000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
checkpoint-5000/chat_template.jinja
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
{%- if strftime_now is defined %}
|
| 10 |
+
{%- set date_string = strftime_now("%d %b %Y") %}
|
| 11 |
+
{%- else %}
|
| 12 |
+
{%- set date_string = "26 Jul 2024" %}
|
| 13 |
+
{%- endif %}
|
| 14 |
+
{%- endif %}
|
| 15 |
+
{%- if not tools is defined %}
|
| 16 |
+
{%- set tools = none %}
|
| 17 |
+
{%- endif %}
|
| 18 |
+
|
| 19 |
+
{#- This block extracts the system message, so we can slot it into the right place. #}
|
| 20 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 21 |
+
{%- set system_message = messages[0]['content']|trim %}
|
| 22 |
+
{%- set messages = messages[1:] %}
|
| 23 |
+
{%- else %}
|
| 24 |
+
{%- set system_message = "" %}
|
| 25 |
+
{%- endif %}
|
| 26 |
+
|
| 27 |
+
{#- System message #}
|
| 28 |
+
{{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
|
| 29 |
+
{%- if tools is not none %}
|
| 30 |
+
{{- "Environment: ipython\n" }}
|
| 31 |
+
{%- endif %}
|
| 32 |
+
{{- "Cutting Knowledge Date: December 2023\n" }}
|
| 33 |
+
{{- "Today Date: " + date_string + "\n\n" }}
|
| 34 |
+
{%- if tools is not none and not tools_in_user_message %}
|
| 35 |
+
{{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
|
| 36 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 37 |
+
{{- "Do not use variables.\n\n" }}
|
| 38 |
+
{%- for t in tools %}
|
| 39 |
+
{{- t | tojson(indent=4) }}
|
| 40 |
+
{{- "\n\n" }}
|
| 41 |
+
{%- endfor %}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{{- system_message }}
|
| 44 |
+
{{- "<|eot_id|>" }}
|
| 45 |
+
|
| 46 |
+
{#- Custom tools are passed in a user message with some extra guidance #}
|
| 47 |
+
{%- if tools_in_user_message and not tools is none %}
|
| 48 |
+
{#- Extract the first user message so we can plug it in here #}
|
| 49 |
+
{%- if messages | length != 0 %}
|
| 50 |
+
{%- set first_user_message = messages[0]['content']|trim %}
|
| 51 |
+
{%- set messages = messages[1:] %}
|
| 52 |
+
{%- else %}
|
| 53 |
+
{{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
|
| 54 |
+
{%- endif %}
|
| 55 |
+
{{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
|
| 56 |
+
{{- "Given the following functions, please respond with a JSON for a function call " }}
|
| 57 |
+
{{- "with its proper arguments that best answers the given prompt.\n\n" }}
|
| 58 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 59 |
+
{{- "Do not use variables.\n\n" }}
|
| 60 |
+
{%- for t in tools %}
|
| 61 |
+
{{- t | tojson(indent=4) }}
|
| 62 |
+
{{- "\n\n" }}
|
| 63 |
+
{%- endfor %}
|
| 64 |
+
{{- first_user_message + "<|eot_id|>"}}
|
| 65 |
+
{%- endif %}
|
| 66 |
+
|
| 67 |
+
{%- for message in messages %}
|
| 68 |
+
{%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
|
| 69 |
+
{{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
|
| 70 |
+
{%- elif 'tool_calls' in message %}
|
| 71 |
+
{%- if not message.tool_calls|length == 1 %}
|
| 72 |
+
{{- raise_exception("This model only supports single tool-calls at once!") }}
|
| 73 |
+
{%- endif %}
|
| 74 |
+
{%- set tool_call = message.tool_calls[0].function %}
|
| 75 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 76 |
+
{{- '{"name": "' + tool_call.name + '", ' }}
|
| 77 |
+
{{- '"parameters": ' }}
|
| 78 |
+
{{- tool_call.arguments | tojson }}
|
| 79 |
+
{{- "}" }}
|
| 80 |
+
{{- "<|eot_id|>" }}
|
| 81 |
+
{%- elif message.role == "tool" or message.role == "ipython" %}
|
| 82 |
+
{{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
|
| 83 |
+
{%- if message.content is mapping or message.content is iterable %}
|
| 84 |
+
{{- message.content | tojson }}
|
| 85 |
+
{%- else %}
|
| 86 |
+
{{- message.content }}
|
| 87 |
+
{%- endif %}
|
| 88 |
+
{{- "<|eot_id|>" }}
|
| 89 |
+
{%- endif %}
|
| 90 |
+
{%- endfor %}
|
| 91 |
+
{%- if add_generation_prompt %}
|
| 92 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
|
| 93 |
+
{%- endif %}
|
checkpoint-5000/config.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": 3072,
|
| 13 |
+
"initializer_range": 0.02,
|
| 14 |
+
"intermediate_size": 8192,
|
| 15 |
+
"max_position_embeddings": 131072,
|
| 16 |
+
"mlp_bias": false,
|
| 17 |
+
"model_type": "llama",
|
| 18 |
+
"num_attention_heads": 24,
|
| 19 |
+
"num_hidden_layers": 28,
|
| 20 |
+
"num_key_value_heads": 8,
|
| 21 |
+
"pad_token_id": 128263,
|
| 22 |
+
"pretraining_tp": 1,
|
| 23 |
+
"rms_norm_eps": 1e-05,
|
| 24 |
+
"rope_scaling": {
|
| 25 |
+
"factor": 32.0,
|
| 26 |
+
"high_freq_factor": 4.0,
|
| 27 |
+
"low_freq_factor": 1.0,
|
| 28 |
+
"original_max_position_embeddings": 8192,
|
| 29 |
+
"rope_type": "llama3"
|
| 30 |
+
},
|
| 31 |
+
"rope_theta": 500000.0,
|
| 32 |
+
"tie_word_embeddings": true,
|
| 33 |
+
"transformers_version": "4.57.1",
|
| 34 |
+
"use_cache": false,
|
| 35 |
+
"vocab_size": 156960
|
| 36 |
+
}
|
checkpoint-5000/generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 128000,
|
| 4 |
+
"do_sample": true,
|
| 5 |
+
"eos_token_id": [
|
| 6 |
+
128009,
|
| 7 |
+
128258
|
| 8 |
+
],
|
| 9 |
+
"pad_token_id": 128263,
|
| 10 |
+
"temperature": 0.6,
|
| 11 |
+
"top_p": 0.9,
|
| 12 |
+
"transformers_version": "4.57.1"
|
| 13 |
+
}
|
checkpoint-5000/model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b6fc6814a102a02fe4995fe8c087dc0dacd3828380395f4416c712a611fa1e1
|
| 3 |
+
size 4991160848
|
checkpoint-5000/model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d3046d9bb45cf49e1e7423c03680ab1046d98f7318ada9aeea469d1153dfb41
|
| 3 |
+
size 1610725592
|
checkpoint-5000/model.safetensors.index.json
ADDED
|
@@ -0,0 +1,262 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 3300928512,
|
| 4 |
+
"total_size": 6601857024
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 17 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 18 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 19 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 20 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 21 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 22 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 23 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 24 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 26 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 27 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 28 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 29 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 30 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 31 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 32 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 33 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 34 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 35 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 36 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 37 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 38 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 39 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 40 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 41 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 42 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 43 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 44 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 45 |
+
"model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 46 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 47 |
+
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 48 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 49 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 50 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 51 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 52 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 53 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 54 |
+
"model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 55 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 56 |
+
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 57 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 58 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 59 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 60 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 61 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 62 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 63 |
+
"model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 64 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 65 |
+
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 66 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 67 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 68 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 69 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 70 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 71 |
+
"model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 72 |
+
"model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 73 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 74 |
+
"model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 75 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 76 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 77 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 78 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 79 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 80 |
+
"model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 81 |
+
"model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 82 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 83 |
+
"model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 84 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 85 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 86 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 87 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 88 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 89 |
+
"model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 90 |
+
"model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 91 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 92 |
+
"model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 93 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 94 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 95 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 96 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 97 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 98 |
+
"model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 99 |
+
"model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 100 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 101 |
+
"model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 102 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 103 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 104 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 105 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 106 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 107 |
+
"model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 108 |
+
"model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 109 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 110 |
+
"model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 111 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 112 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 113 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 114 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 115 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 116 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 117 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 118 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 119 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 120 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 121 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 122 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 123 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 124 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 125 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 126 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 127 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 128 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 129 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 130 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 131 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 132 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 133 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 134 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 135 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 136 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 137 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 138 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 139 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 140 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 141 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 142 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 143 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 144 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 145 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 146 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 147 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 148 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 149 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 150 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 151 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 152 |
+
"model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 153 |
+
"model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 154 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 155 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 156 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 157 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 158 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 159 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 160 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 161 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 162 |
+
"model.layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 163 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 164 |
+
"model.layers.24.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 165 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 166 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 167 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 168 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 169 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 170 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 171 |
+
"model.layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 172 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 173 |
+
"model.layers.25.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 174 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 175 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 176 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 177 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 178 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 179 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 180 |
+
"model.layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 181 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 182 |
+
"model.layers.26.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 183 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 184 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 185 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 186 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 187 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 188 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 189 |
+
"model.layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 190 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 191 |
+
"model.layers.27.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 192 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 193 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 194 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 195 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 196 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 197 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 198 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 199 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 200 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 201 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 202 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 203 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 204 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 205 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 206 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 207 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 208 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 209 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 210 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 211 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 212 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 213 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 214 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 215 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 216 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 217 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 218 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 219 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 220 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 221 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 222 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 223 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 224 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 225 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 226 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 227 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 228 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 229 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 230 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 231 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 232 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 233 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 234 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 235 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 236 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 237 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 238 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 239 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 240 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 241 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 242 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 243 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 244 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 245 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 246 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 247 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 248 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 249 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 250 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 251 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 252 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 253 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 254 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 255 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 256 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 257 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 258 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 259 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 260 |
+
"model.norm.weight": "model-00002-of-00002.safetensors"
|
| 261 |
+
}
|
| 262 |
+
}
|
checkpoint-5000/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d1bb7014817b3e24d8c94bdeb5c580e0ca0e22a7a320d34bc57b45db3b725e2
|
| 3 |
+
size 13203939671
|
checkpoint-5000/rng_state_0.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:943132c13824a574bef79ad48eabeac032a12d8c47dc4b841793cf93fa37bb46
|
| 3 |
+
size 16389
|
checkpoint-5000/rng_state_1.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00eb8e106883d6b7dc7a572e4c4b3d698f9ccee1a7e6c69fba0f96a399194a16
|
| 3 |
+
size 16389
|
checkpoint-5000/rng_state_2.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2a1518bf24b2fbd90acea636179b1a8284d573a8ab6a74c089f7f7741cf3930
|
| 3 |
+
size 16389
|
checkpoint-5000/rng_state_3.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d0f2f5abab75e42752ffe01e73e66db34e6df653a939e1300e7a83ce4b9b40e1
|
| 3 |
+
size 16389
|
checkpoint-5000/rng_state_4.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8aeff9d4b76e5b37f768dae8ff1bb649b2c271622667dc37e18e4f4bbf98108
|
| 3 |
+
size 16389
|
checkpoint-5000/rng_state_5.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0dfdb0df595120e129157a8e23ba9a7718c5ea5d8c548f0f862b863ca75bb20d
|
| 3 |
+
size 16389
|
checkpoint-5000/rng_state_6.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbfe125091abff5675514fceb73668612f02074859e61153b16cbe494ff74abe
|
| 3 |
+
size 16389
|
checkpoint-5000/rng_state_7.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f3920c8b457b9bd645b9f797f0da9dadcf5190b52894a7695ce4d522733fa69
|
| 3 |
+
size 16389
|
checkpoint-5000/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c9405c30870e0cd059f8727fc5d56457e73a1098b46a3627e3b674e4c03c80f
|
| 3 |
+
size 1465
|
checkpoint-5000/special_tokens_map.json
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
{
|
| 4 |
+
"content": "<angry>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false
|
| 9 |
+
},
|
| 10 |
+
{
|
| 11 |
+
"content": "<appalled>",
|
| 12 |
+
"lstrip": false,
|
| 13 |
+
"normalized": false,
|
| 14 |
+
"rstrip": false,
|
| 15 |
+
"single_word": false
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"content": "<chuckle>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"content": "<cry>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
},
|
| 31 |
+
{
|
| 32 |
+
"content": "<curious>",
|
| 33 |
+
"lstrip": false,
|
| 34 |
+
"normalized": false,
|
| 35 |
+
"rstrip": false,
|
| 36 |
+
"single_word": false
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"content": "<disappointed>",
|
| 40 |
+
"lstrip": false,
|
| 41 |
+
"normalized": false,
|
| 42 |
+
"rstrip": false,
|
| 43 |
+
"single_word": false
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"content": "<excited>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"content": "<exhale>",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"content": "<gasp>",
|
| 61 |
+
"lstrip": false,
|
| 62 |
+
"normalized": false,
|
| 63 |
+
"rstrip": false,
|
| 64 |
+
"single_word": false
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"content": "<giggle>",
|
| 68 |
+
"lstrip": false,
|
| 69 |
+
"normalized": false,
|
| 70 |
+
"rstrip": false,
|
| 71 |
+
"single_word": false
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"content": "<gulp>",
|
| 75 |
+
"lstrip": false,
|
| 76 |
+
"normalized": false,
|
| 77 |
+
"rstrip": false,
|
| 78 |
+
"single_word": false
|
| 79 |
+
},
|
| 80 |
+
{
|
| 81 |
+
"content": "<laugh>",
|
| 82 |
+
"lstrip": false,
|
| 83 |
+
"normalized": false,
|
| 84 |
+
"rstrip": false,
|
| 85 |
+
"single_word": false
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"content": "<laugh_harder>",
|
| 89 |
+
"lstrip": false,
|
| 90 |
+
"normalized": false,
|
| 91 |
+
"rstrip": false,
|
| 92 |
+
"single_word": false
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"content": "<mischievous>",
|
| 96 |
+
"lstrip": false,
|
| 97 |
+
"normalized": false,
|
| 98 |
+
"rstrip": false,
|
| 99 |
+
"single_word": false
|
| 100 |
+
},
|
| 101 |
+
{
|
| 102 |
+
"content": "<sarcastic>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"content": "<scream>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false
|
| 114 |
+
},
|
| 115 |
+
{
|
| 116 |
+
"content": "<sigh>",
|
| 117 |
+
"lstrip": false,
|
| 118 |
+
"normalized": false,
|
| 119 |
+
"rstrip": false,
|
| 120 |
+
"single_word": false
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"content": "<sing>",
|
| 124 |
+
"lstrip": false,
|
| 125 |
+
"normalized": false,
|
| 126 |
+
"rstrip": false,
|
| 127 |
+
"single_word": false
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"content": "<snort>",
|
| 131 |
+
"lstrip": false,
|
| 132 |
+
"normalized": false,
|
| 133 |
+
"rstrip": false,
|
| 134 |
+
"single_word": false
|
| 135 |
+
},
|
| 136 |
+
{
|
| 137 |
+
"content": "<whisper>",
|
| 138 |
+
"lstrip": false,
|
| 139 |
+
"normalized": false,
|
| 140 |
+
"rstrip": false,
|
| 141 |
+
"single_word": false
|
| 142 |
+
}
|
| 143 |
+
],
|
| 144 |
+
"bos_token": {
|
| 145 |
+
"content": "<|begin_of_text|>",
|
| 146 |
+
"lstrip": false,
|
| 147 |
+
"normalized": false,
|
| 148 |
+
"rstrip": false,
|
| 149 |
+
"single_word": false
|
| 150 |
+
},
|
| 151 |
+
"eos_token": {
|
| 152 |
+
"content": "<|eot_id|>",
|
| 153 |
+
"lstrip": false,
|
| 154 |
+
"normalized": false,
|
| 155 |
+
"rstrip": false,
|
| 156 |
+
"single_word": false
|
| 157 |
+
},
|
| 158 |
+
"pad_token": {
|
| 159 |
+
"content": "<custom_token_7>",
|
| 160 |
+
"lstrip": false,
|
| 161 |
+
"normalized": true,
|
| 162 |
+
"rstrip": false,
|
| 163 |
+
"single_word": false
|
| 164 |
+
}
|
| 165 |
+
}
|
checkpoint-5000/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c5e5b1d89b7e3738e5a5a4f93c326d8f3292ea83f9c560b8dbb6d66fb851973
|
| 3 |
+
size 22853258
|
checkpoint-5000/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-5000/trainer_state.json
ADDED
|
@@ -0,0 +1,749 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.6567807141081932,
|
| 6 |
+
"eval_steps": 5000,
|
| 7 |
+
"global_step": 5000,
|
| 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.0003313727114572115,
|
| 14 |
+
"grad_norm": 2.828125,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 4.1855,
|
| 17 |
+
"step": 1
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.016568635572860577,
|
| 21 |
+
"grad_norm": 3.234375,
|
| 22 |
+
"learning_rate": 9.017298490982701e-07,
|
| 23 |
+
"loss": 4.4012,
|
| 24 |
+
"step": 50
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.03313727114572115,
|
| 28 |
+
"grad_norm": 2.984375,
|
| 29 |
+
"learning_rate": 1.8218623481781377e-06,
|
| 30 |
+
"loss": 4.3839,
|
| 31 |
+
"step": 100
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.04970590671858172,
|
| 35 |
+
"grad_norm": 2.265625,
|
| 36 |
+
"learning_rate": 2.741994847258005e-06,
|
| 37 |
+
"loss": 4.345,
|
| 38 |
+
"step": 150
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.0662745422914423,
|
| 42 |
+
"grad_norm": 2.171875,
|
| 43 |
+
"learning_rate": 3.662127346337873e-06,
|
| 44 |
+
"loss": 4.2973,
|
| 45 |
+
"step": 200
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.08284317786430287,
|
| 49 |
+
"grad_norm": 1.5234375,
|
| 50 |
+
"learning_rate": 4.582259845417741e-06,
|
| 51 |
+
"loss": 4.224,
|
| 52 |
+
"step": 250
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.09941181343716345,
|
| 56 |
+
"grad_norm": 1.0234375,
|
| 57 |
+
"learning_rate": 5.502392344497608e-06,
|
| 58 |
+
"loss": 4.144,
|
| 59 |
+
"step": 300
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.11598044901002402,
|
| 63 |
+
"grad_norm": 1.0390625,
|
| 64 |
+
"learning_rate": 6.422524843577475e-06,
|
| 65 |
+
"loss": 4.0929,
|
| 66 |
+
"step": 350
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.1325490845828846,
|
| 70 |
+
"grad_norm": 1.1796875,
|
| 71 |
+
"learning_rate": 7.342657342657343e-06,
|
| 72 |
+
"loss": 4.0516,
|
| 73 |
+
"step": 400
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.14911772015574518,
|
| 77 |
+
"grad_norm": 1.390625,
|
| 78 |
+
"learning_rate": 8.26278984173721e-06,
|
| 79 |
+
"loss": 4.025,
|
| 80 |
+
"step": 450
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.16568635572860574,
|
| 84 |
+
"grad_norm": 1.515625,
|
| 85 |
+
"learning_rate": 9.182922340817078e-06,
|
| 86 |
+
"loss": 4.0113,
|
| 87 |
+
"step": 500
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.18225499130146633,
|
| 91 |
+
"grad_norm": 1.4765625,
|
| 92 |
+
"learning_rate": 1.0103054839896946e-05,
|
| 93 |
+
"loss": 4.0015,
|
| 94 |
+
"step": 550
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.1988236268743269,
|
| 98 |
+
"grad_norm": 1.40625,
|
| 99 |
+
"learning_rate": 1.1023187338976813e-05,
|
| 100 |
+
"loss": 3.9936,
|
| 101 |
+
"step": 600
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.21539226244718748,
|
| 105 |
+
"grad_norm": 1.234375,
|
| 106 |
+
"learning_rate": 1.1943319838056682e-05,
|
| 107 |
+
"loss": 3.9778,
|
| 108 |
+
"step": 650
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.23196089802004805,
|
| 112 |
+
"grad_norm": 1.3671875,
|
| 113 |
+
"learning_rate": 1.2863452337136547e-05,
|
| 114 |
+
"loss": 3.971,
|
| 115 |
+
"step": 700
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.24852953359290864,
|
| 119 |
+
"grad_norm": 1.2265625,
|
| 120 |
+
"learning_rate": 1.3783584836216415e-05,
|
| 121 |
+
"loss": 3.9664,
|
| 122 |
+
"step": 750
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.2650981691657692,
|
| 126 |
+
"grad_norm": 1.2109375,
|
| 127 |
+
"learning_rate": 1.4703717335296282e-05,
|
| 128 |
+
"loss": 3.9561,
|
| 129 |
+
"step": 800
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.28166680473862976,
|
| 133 |
+
"grad_norm": 1.0859375,
|
| 134 |
+
"learning_rate": 1.562384983437615e-05,
|
| 135 |
+
"loss": 3.9459,
|
| 136 |
+
"step": 850
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.29823544031149035,
|
| 140 |
+
"grad_norm": 1.0,
|
| 141 |
+
"learning_rate": 1.6543982333456018e-05,
|
| 142 |
+
"loss": 3.9438,
|
| 143 |
+
"step": 900
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.31480407588435094,
|
| 147 |
+
"grad_norm": 1.0390625,
|
| 148 |
+
"learning_rate": 1.7464114832535886e-05,
|
| 149 |
+
"loss": 3.9386,
|
| 150 |
+
"step": 950
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.3313727114572115,
|
| 154 |
+
"grad_norm": 1.0625,
|
| 155 |
+
"learning_rate": 1.8384247331615755e-05,
|
| 156 |
+
"loss": 3.9285,
|
| 157 |
+
"step": 1000
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.34794134703007207,
|
| 161 |
+
"grad_norm": 1.1328125,
|
| 162 |
+
"learning_rate": 1.930437983069562e-05,
|
| 163 |
+
"loss": 3.9211,
|
| 164 |
+
"step": 1050
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.36450998260293266,
|
| 168 |
+
"grad_norm": 1.0859375,
|
| 169 |
+
"learning_rate": 2.022451232977549e-05,
|
| 170 |
+
"loss": 3.9216,
|
| 171 |
+
"step": 1100
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.38107861817579325,
|
| 175 |
+
"grad_norm": 0.9921875,
|
| 176 |
+
"learning_rate": 2.1144644828855357e-05,
|
| 177 |
+
"loss": 3.9118,
|
| 178 |
+
"step": 1150
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.3976472537486538,
|
| 182 |
+
"grad_norm": 1.0078125,
|
| 183 |
+
"learning_rate": 2.2064777327935222e-05,
|
| 184 |
+
"loss": 3.9059,
|
| 185 |
+
"step": 1200
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.4142158893215144,
|
| 189 |
+
"grad_norm": 1.03125,
|
| 190 |
+
"learning_rate": 2.298490982701509e-05,
|
| 191 |
+
"loss": 3.9019,
|
| 192 |
+
"step": 1250
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.43078452489437496,
|
| 196 |
+
"grad_norm": 1.0234375,
|
| 197 |
+
"learning_rate": 2.390504232609496e-05,
|
| 198 |
+
"loss": 3.9035,
|
| 199 |
+
"step": 1300
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.4473531604672355,
|
| 203 |
+
"grad_norm": 0.8671875,
|
| 204 |
+
"learning_rate": 2.4825174825174828e-05,
|
| 205 |
+
"loss": 3.8937,
|
| 206 |
+
"step": 1350
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.4639217960400961,
|
| 210 |
+
"grad_norm": 0.89453125,
|
| 211 |
+
"learning_rate": 2.5745307324254693e-05,
|
| 212 |
+
"loss": 3.881,
|
| 213 |
+
"step": 1400
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.4804904316129567,
|
| 217 |
+
"grad_norm": 0.90234375,
|
| 218 |
+
"learning_rate": 2.666543982333456e-05,
|
| 219 |
+
"loss": 3.8808,
|
| 220 |
+
"step": 1450
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.49705906718581727,
|
| 224 |
+
"grad_norm": 0.84375,
|
| 225 |
+
"learning_rate": 2.7585572322414427e-05,
|
| 226 |
+
"loss": 3.8782,
|
| 227 |
+
"step": 1500
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.5136277027586779,
|
| 231 |
+
"grad_norm": 1.0,
|
| 232 |
+
"learning_rate": 2.8505704821494296e-05,
|
| 233 |
+
"loss": 3.8817,
|
| 234 |
+
"step": 1550
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.5301963383315385,
|
| 238 |
+
"grad_norm": 0.94140625,
|
| 239 |
+
"learning_rate": 2.942583732057416e-05,
|
| 240 |
+
"loss": 3.8718,
|
| 241 |
+
"step": 1600
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.5467649739043989,
|
| 245 |
+
"grad_norm": 0.80859375,
|
| 246 |
+
"learning_rate": 3.034596981965403e-05,
|
| 247 |
+
"loss": 3.8675,
|
| 248 |
+
"step": 1650
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.5633336094772595,
|
| 252 |
+
"grad_norm": 0.75390625,
|
| 253 |
+
"learning_rate": 3.12661023187339e-05,
|
| 254 |
+
"loss": 3.8699,
|
| 255 |
+
"step": 1700
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.5799022450501201,
|
| 259 |
+
"grad_norm": 0.77734375,
|
| 260 |
+
"learning_rate": 3.2186234817813766e-05,
|
| 261 |
+
"loss": 3.8645,
|
| 262 |
+
"step": 1750
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.5964708806229807,
|
| 266 |
+
"grad_norm": 0.86328125,
|
| 267 |
+
"learning_rate": 3.3106367316893635e-05,
|
| 268 |
+
"loss": 3.8601,
|
| 269 |
+
"step": 1800
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 0.6130395161958413,
|
| 273 |
+
"grad_norm": 0.85546875,
|
| 274 |
+
"learning_rate": 3.4026499815973504e-05,
|
| 275 |
+
"loss": 3.8513,
|
| 276 |
+
"step": 1850
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.6296081517687019,
|
| 280 |
+
"grad_norm": 0.828125,
|
| 281 |
+
"learning_rate": 3.4946632315053365e-05,
|
| 282 |
+
"loss": 3.8583,
|
| 283 |
+
"step": 1900
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"epoch": 0.6461767873415625,
|
| 287 |
+
"grad_norm": 0.8359375,
|
| 288 |
+
"learning_rate": 3.5866764814133234e-05,
|
| 289 |
+
"loss": 3.857,
|
| 290 |
+
"step": 1950
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.662745422914423,
|
| 294 |
+
"grad_norm": 0.796875,
|
| 295 |
+
"learning_rate": 3.67868973132131e-05,
|
| 296 |
+
"loss": 3.8488,
|
| 297 |
+
"step": 2000
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 0.6793140584872835,
|
| 301 |
+
"grad_norm": 0.7734375,
|
| 302 |
+
"learning_rate": 3.770702981229297e-05,
|
| 303 |
+
"loss": 3.843,
|
| 304 |
+
"step": 2050
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.6958826940601441,
|
| 308 |
+
"grad_norm": 0.79296875,
|
| 309 |
+
"learning_rate": 3.862716231137284e-05,
|
| 310 |
+
"loss": 3.8413,
|
| 311 |
+
"step": 2100
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"epoch": 0.7124513296330047,
|
| 315 |
+
"grad_norm": 0.8046875,
|
| 316 |
+
"learning_rate": 3.954729481045271e-05,
|
| 317 |
+
"loss": 3.836,
|
| 318 |
+
"step": 2150
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.7290199652058653,
|
| 322 |
+
"grad_norm": 0.7578125,
|
| 323 |
+
"learning_rate": 4.046742730953258e-05,
|
| 324 |
+
"loss": 3.8366,
|
| 325 |
+
"step": 2200
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.7455886007787259,
|
| 329 |
+
"grad_norm": 0.79296875,
|
| 330 |
+
"learning_rate": 4.138755980861244e-05,
|
| 331 |
+
"loss": 3.8347,
|
| 332 |
+
"step": 2250
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.7621572363515865,
|
| 336 |
+
"grad_norm": 0.80078125,
|
| 337 |
+
"learning_rate": 4.230769230769231e-05,
|
| 338 |
+
"loss": 3.8299,
|
| 339 |
+
"step": 2300
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 0.778725871924447,
|
| 343 |
+
"grad_norm": 0.75390625,
|
| 344 |
+
"learning_rate": 4.3227824806772176e-05,
|
| 345 |
+
"loss": 3.8187,
|
| 346 |
+
"step": 2350
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.7952945074973076,
|
| 350 |
+
"grad_norm": 0.76953125,
|
| 351 |
+
"learning_rate": 4.4147957305852044e-05,
|
| 352 |
+
"loss": 3.8225,
|
| 353 |
+
"step": 2400
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"epoch": 0.8118631430701682,
|
| 357 |
+
"grad_norm": 0.81640625,
|
| 358 |
+
"learning_rate": 4.506808980493191e-05,
|
| 359 |
+
"loss": 3.8229,
|
| 360 |
+
"step": 2450
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.8284317786430287,
|
| 364 |
+
"grad_norm": 0.77734375,
|
| 365 |
+
"learning_rate": 4.598822230401178e-05,
|
| 366 |
+
"loss": 3.8245,
|
| 367 |
+
"step": 2500
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 0.8450004142158893,
|
| 371 |
+
"grad_norm": 0.78515625,
|
| 372 |
+
"learning_rate": 4.690835480309165e-05,
|
| 373 |
+
"loss": 3.8109,
|
| 374 |
+
"step": 2550
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.8615690497887499,
|
| 378 |
+
"grad_norm": 0.78125,
|
| 379 |
+
"learning_rate": 4.782848730217152e-05,
|
| 380 |
+
"loss": 3.8195,
|
| 381 |
+
"step": 2600
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 0.8781376853616105,
|
| 385 |
+
"grad_norm": 0.7890625,
|
| 386 |
+
"learning_rate": 4.874861980125138e-05,
|
| 387 |
+
"loss": 3.8125,
|
| 388 |
+
"step": 2650
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.894706320934471,
|
| 392 |
+
"grad_norm": 0.7578125,
|
| 393 |
+
"learning_rate": 4.966875230033125e-05,
|
| 394 |
+
"loss": 3.8131,
|
| 395 |
+
"step": 2700
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 0.9112749565073316,
|
| 399 |
+
"grad_norm": 0.73046875,
|
| 400 |
+
"learning_rate": 4.999998362078322e-05,
|
| 401 |
+
"loss": 3.819,
|
| 402 |
+
"step": 2750
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.9278435920801922,
|
| 406 |
+
"grad_norm": 0.75,
|
| 407 |
+
"learning_rate": 4.999989244747393e-05,
|
| 408 |
+
"loss": 3.8082,
|
| 409 |
+
"step": 2800
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 0.9444122276530528,
|
| 413 |
+
"grad_norm": 0.79296875,
|
| 414 |
+
"learning_rate": 4.9999721297876855e-05,
|
| 415 |
+
"loss": 3.8146,
|
| 416 |
+
"step": 2850
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.9609808632259134,
|
| 420 |
+
"grad_norm": 0.765625,
|
| 421 |
+
"learning_rate": 4.999947017253951e-05,
|
| 422 |
+
"loss": 3.8042,
|
| 423 |
+
"step": 2900
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 0.977549498798774,
|
| 427 |
+
"grad_norm": 0.734375,
|
| 428 |
+
"learning_rate": 4.9999139072265274e-05,
|
| 429 |
+
"loss": 3.8072,
|
| 430 |
+
"step": 2950
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.9941181343716345,
|
| 434 |
+
"grad_norm": 0.7578125,
|
| 435 |
+
"learning_rate": 4.9998727998113335e-05,
|
| 436 |
+
"loss": 3.8008,
|
| 437 |
+
"step": 3000
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 1.0106039267666307,
|
| 441 |
+
"grad_norm": 0.31640625,
|
| 442 |
+
"learning_rate": 4.999823695139877e-05,
|
| 443 |
+
"loss": 3.7924,
|
| 444 |
+
"step": 3050
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 1.0271725623394914,
|
| 448 |
+
"grad_norm": 0.306640625,
|
| 449 |
+
"learning_rate": 4.999766593369246e-05,
|
| 450 |
+
"loss": 3.7963,
|
| 451 |
+
"step": 3100
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 1.0437411979123519,
|
| 455 |
+
"grad_norm": 0.33203125,
|
| 456 |
+
"learning_rate": 4.999701494682112e-05,
|
| 457 |
+
"loss": 3.7837,
|
| 458 |
+
"step": 3150
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 1.0603098334852126,
|
| 462 |
+
"grad_norm": 0.298828125,
|
| 463 |
+
"learning_rate": 4.999628399286731e-05,
|
| 464 |
+
"loss": 3.7942,
|
| 465 |
+
"step": 3200
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 1.076878469058073,
|
| 469 |
+
"grad_norm": 0.298828125,
|
| 470 |
+
"learning_rate": 4.99954730741694e-05,
|
| 471 |
+
"loss": 3.7819,
|
| 472 |
+
"step": 3250
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 1.0934471046309335,
|
| 476 |
+
"grad_norm": 0.296875,
|
| 477 |
+
"learning_rate": 4.999458219332157e-05,
|
| 478 |
+
"loss": 3.7868,
|
| 479 |
+
"step": 3300
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 1.1100157402037942,
|
| 483 |
+
"grad_norm": 0.294921875,
|
| 484 |
+
"learning_rate": 4.9993611353173794e-05,
|
| 485 |
+
"loss": 3.7924,
|
| 486 |
+
"step": 3350
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 1.1265843757766547,
|
| 490 |
+
"grad_norm": 0.29296875,
|
| 491 |
+
"learning_rate": 4.999256055683187e-05,
|
| 492 |
+
"loss": 3.7884,
|
| 493 |
+
"step": 3400
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"epoch": 1.1431530113495154,
|
| 497 |
+
"grad_norm": 0.287109375,
|
| 498 |
+
"learning_rate": 4.999142980765736e-05,
|
| 499 |
+
"loss": 3.7875,
|
| 500 |
+
"step": 3450
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 1.159721646922376,
|
| 504 |
+
"grad_norm": 0.3125,
|
| 505 |
+
"learning_rate": 4.9990219109267596e-05,
|
| 506 |
+
"loss": 3.7827,
|
| 507 |
+
"step": 3500
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 1.1762902824952366,
|
| 511 |
+
"grad_norm": 0.314453125,
|
| 512 |
+
"learning_rate": 4.9988928465535686e-05,
|
| 513 |
+
"loss": 3.7832,
|
| 514 |
+
"step": 3550
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 1.192858918068097,
|
| 518 |
+
"grad_norm": 0.28515625,
|
| 519 |
+
"learning_rate": 4.9987557880590486e-05,
|
| 520 |
+
"loss": 3.7854,
|
| 521 |
+
"step": 3600
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"epoch": 1.2094275536409578,
|
| 525 |
+
"grad_norm": 0.306640625,
|
| 526 |
+
"learning_rate": 4.998610735881659e-05,
|
| 527 |
+
"loss": 3.7765,
|
| 528 |
+
"step": 3650
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 1.2259961892138183,
|
| 532 |
+
"grad_norm": 0.27734375,
|
| 533 |
+
"learning_rate": 4.99845769048543e-05,
|
| 534 |
+
"loss": 3.7835,
|
| 535 |
+
"step": 3700
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 1.2425648247866787,
|
| 539 |
+
"grad_norm": 0.298828125,
|
| 540 |
+
"learning_rate": 4.998296652359965e-05,
|
| 541 |
+
"loss": 3.7809,
|
| 542 |
+
"step": 3750
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 1.2591334603595394,
|
| 546 |
+
"grad_norm": 0.310546875,
|
| 547 |
+
"learning_rate": 4.9981276220204344e-05,
|
| 548 |
+
"loss": 3.7849,
|
| 549 |
+
"step": 3800
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 1.2757020959324,
|
| 553 |
+
"grad_norm": 0.3125,
|
| 554 |
+
"learning_rate": 4.997950600007578e-05,
|
| 555 |
+
"loss": 3.7815,
|
| 556 |
+
"step": 3850
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 1.2922707315052606,
|
| 560 |
+
"grad_norm": 0.302734375,
|
| 561 |
+
"learning_rate": 4.997765586887702e-05,
|
| 562 |
+
"loss": 3.7793,
|
| 563 |
+
"step": 3900
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 1.308839367078121,
|
| 567 |
+
"grad_norm": 0.30859375,
|
| 568 |
+
"learning_rate": 4.997572583252672e-05,
|
| 569 |
+
"loss": 3.7729,
|
| 570 |
+
"step": 3950
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 1.3254080026509816,
|
| 574 |
+
"grad_norm": 0.29296875,
|
| 575 |
+
"learning_rate": 4.9973715897199226e-05,
|
| 576 |
+
"loss": 3.7745,
|
| 577 |
+
"step": 4000
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 1.3419766382238423,
|
| 581 |
+
"grad_norm": 0.32421875,
|
| 582 |
+
"learning_rate": 4.9971626069324435e-05,
|
| 583 |
+
"loss": 3.7688,
|
| 584 |
+
"step": 4050
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 1.358545273796703,
|
| 588 |
+
"grad_norm": 0.275390625,
|
| 589 |
+
"learning_rate": 4.996945635558785e-05,
|
| 590 |
+
"loss": 3.7748,
|
| 591 |
+
"step": 4100
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 1.3751139093695635,
|
| 595 |
+
"grad_norm": 0.291015625,
|
| 596 |
+
"learning_rate": 4.996720676293052e-05,
|
| 597 |
+
"loss": 3.7686,
|
| 598 |
+
"step": 4150
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 1.391682544942424,
|
| 602 |
+
"grad_norm": 0.287109375,
|
| 603 |
+
"learning_rate": 4.9964877298549045e-05,
|
| 604 |
+
"loss": 3.7736,
|
| 605 |
+
"step": 4200
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 1.4082511805152846,
|
| 609 |
+
"grad_norm": 0.306640625,
|
| 610 |
+
"learning_rate": 4.9962467969895535e-05,
|
| 611 |
+
"loss": 3.7751,
|
| 612 |
+
"step": 4250
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 1.4248198160881451,
|
| 616 |
+
"grad_norm": 0.2890625,
|
| 617 |
+
"learning_rate": 4.995997878467758e-05,
|
| 618 |
+
"loss": 3.7673,
|
| 619 |
+
"step": 4300
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 1.4413884516610058,
|
| 623 |
+
"grad_norm": 0.34375,
|
| 624 |
+
"learning_rate": 4.995740975085825e-05,
|
| 625 |
+
"loss": 3.7742,
|
| 626 |
+
"step": 4350
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 1.4579570872338663,
|
| 630 |
+
"grad_norm": 0.294921875,
|
| 631 |
+
"learning_rate": 4.9954760876656056e-05,
|
| 632 |
+
"loss": 3.7737,
|
| 633 |
+
"step": 4400
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 1.4745257228067268,
|
| 637 |
+
"grad_norm": 0.283203125,
|
| 638 |
+
"learning_rate": 4.995203217054493e-05,
|
| 639 |
+
"loss": 3.7704,
|
| 640 |
+
"step": 4450
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 1.4910943583795875,
|
| 644 |
+
"grad_norm": 0.294921875,
|
| 645 |
+
"learning_rate": 4.9949223641254156e-05,
|
| 646 |
+
"loss": 3.7693,
|
| 647 |
+
"step": 4500
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"epoch": 1.507662993952448,
|
| 651 |
+
"grad_norm": 0.306640625,
|
| 652 |
+
"learning_rate": 4.994633529776842e-05,
|
| 653 |
+
"loss": 3.76,
|
| 654 |
+
"step": 4550
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 1.5242316295253087,
|
| 658 |
+
"grad_norm": 0.27734375,
|
| 659 |
+
"learning_rate": 4.994336714932771e-05,
|
| 660 |
+
"loss": 3.7617,
|
| 661 |
+
"step": 4600
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"epoch": 1.5408002650981691,
|
| 665 |
+
"grad_norm": 0.287109375,
|
| 666 |
+
"learning_rate": 4.9940319205427335e-05,
|
| 667 |
+
"loss": 3.7737,
|
| 668 |
+
"step": 4650
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 1.5573689006710296,
|
| 672 |
+
"grad_norm": 0.310546875,
|
| 673 |
+
"learning_rate": 4.993719147581787e-05,
|
| 674 |
+
"loss": 3.7699,
|
| 675 |
+
"step": 4700
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 1.5739375362438903,
|
| 679 |
+
"grad_norm": 0.306640625,
|
| 680 |
+
"learning_rate": 4.9933983970505116e-05,
|
| 681 |
+
"loss": 3.7665,
|
| 682 |
+
"step": 4750
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 1.590506171816751,
|
| 686 |
+
"grad_norm": 0.30859375,
|
| 687 |
+
"learning_rate": 4.9930696699750095e-05,
|
| 688 |
+
"loss": 3.7622,
|
| 689 |
+
"step": 4800
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 1.6070748073896115,
|
| 693 |
+
"grad_norm": 0.287109375,
|
| 694 |
+
"learning_rate": 4.992732967406901e-05,
|
| 695 |
+
"loss": 3.7572,
|
| 696 |
+
"step": 4850
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 1.623643442962472,
|
| 700 |
+
"grad_norm": 0.3125,
|
| 701 |
+
"learning_rate": 4.992388290423318e-05,
|
| 702 |
+
"loss": 3.7626,
|
| 703 |
+
"step": 4900
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 1.6402120785353325,
|
| 707 |
+
"grad_norm": 0.328125,
|
| 708 |
+
"learning_rate": 4.9920356401269055e-05,
|
| 709 |
+
"loss": 3.7626,
|
| 710 |
+
"step": 4950
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 1.6567807141081932,
|
| 714 |
+
"grad_norm": 0.31640625,
|
| 715 |
+
"learning_rate": 4.991675017645815e-05,
|
| 716 |
+
"loss": 3.7626,
|
| 717 |
+
"step": 5000
|
| 718 |
+
},
|
| 719 |
+
{
|
| 720 |
+
"epoch": 1.6567807141081932,
|
| 721 |
+
"eval_loss": 3.72454833984375,
|
| 722 |
+
"eval_runtime": 7.9243,
|
| 723 |
+
"eval_samples_per_second": 122.282,
|
| 724 |
+
"eval_steps_per_second": 2.019,
|
| 725 |
+
"step": 5000
|
| 726 |
+
}
|
| 727 |
+
],
|
| 728 |
+
"logging_steps": 50,
|
| 729 |
+
"max_steps": 90540,
|
| 730 |
+
"num_input_tokens_seen": 0,
|
| 731 |
+
"num_train_epochs": 30,
|
| 732 |
+
"save_steps": 5000,
|
| 733 |
+
"stateful_callbacks": {
|
| 734 |
+
"TrainerControl": {
|
| 735 |
+
"args": {
|
| 736 |
+
"should_epoch_stop": false,
|
| 737 |
+
"should_evaluate": false,
|
| 738 |
+
"should_log": false,
|
| 739 |
+
"should_save": true,
|
| 740 |
+
"should_training_stop": false
|
| 741 |
+
},
|
| 742 |
+
"attributes": {}
|
| 743 |
+
}
|
| 744 |
+
},
|
| 745 |
+
"total_flos": 1.4761889824453427e+19,
|
| 746 |
+
"train_batch_size": 4,
|
| 747 |
+
"trial_name": null,
|
| 748 |
+
"trial_params": null
|
| 749 |
+
}
|
checkpoint-5000/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28bc9829b8c8fa8bf181924e8f4aa71e88dec472de000157e8bb54e4440b7211
|
| 3 |
+
size 5841
|