Bharath Kumar Kakumani
commited on
Upload checkpoint-10000
Browse files- .gitattributes +1 -0
- checkpoint-10000/chat_template.jinja +93 -0
- checkpoint-10000/config.json +36 -0
- checkpoint-10000/generation_config.json +13 -0
- checkpoint-10000/model-00001-of-00002.safetensors +3 -0
- checkpoint-10000/model-00002-of-00002.safetensors +3 -0
- checkpoint-10000/model.safetensors.index.json +262 -0
- checkpoint-10000/optimizer.pt +3 -0
- checkpoint-10000/rng_state_0.pth +3 -0
- checkpoint-10000/rng_state_1.pth +3 -0
- checkpoint-10000/rng_state_2.pth +3 -0
- checkpoint-10000/rng_state_3.pth +3 -0
- checkpoint-10000/rng_state_4.pth +3 -0
- checkpoint-10000/rng_state_5.pth +3 -0
- checkpoint-10000/rng_state_6.pth +3 -0
- checkpoint-10000/rng_state_7.pth +3 -0
- checkpoint-10000/scheduler.pt +3 -0
- checkpoint-10000/special_tokens_map.json +165 -0
- checkpoint-10000/tokenizer.json +3 -0
- checkpoint-10000/tokenizer_config.json +0 -0
- checkpoint-10000/trainer_state.json +1457 -0
- checkpoint-10000/training_args.bin +3 -0
.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 |
+
checkpoint-10000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
checkpoint-10000/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-10000/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-10000/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-10000/model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:263525017d77415c971b66ce3a2c0a91d2aa671768b03e0cf0703aec1372f7b1
|
| 3 |
+
size 4991160848
|
checkpoint-10000/model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5bcfa4a1341a7a63d65e3f5583103948c79e7d623637058b47bd7bc41974ecf
|
| 3 |
+
size 1610725592
|
checkpoint-10000/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-10000/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4189ad5b1fd4d269af4dd2339fe7f601def842ec5f0a4e0a05839c2dea743f7a
|
| 3 |
+
size 13203939671
|
checkpoint-10000/rng_state_0.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b458b8f8732b9f9521697570cd90cf163aa0cebbd79a3cdc55989a94d008ba0
|
| 3 |
+
size 16389
|
checkpoint-10000/rng_state_1.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ab4448c35e5dc742d6920c92f0ffb96d377342350d7b11343720133818830c7
|
| 3 |
+
size 16389
|
checkpoint-10000/rng_state_2.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4dacb1ff50619fe6eb65a1ec94d02ec95203853e91429f277cb9cfaaade74d6
|
| 3 |
+
size 16389
|
checkpoint-10000/rng_state_3.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:298c9e53d91f5c969e4357565579be5f4ac1fdf591a940842802e4c1cdf98d3e
|
| 3 |
+
size 16389
|
checkpoint-10000/rng_state_4.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e9cf50a602c905189624916ae5524f6248d35528aa60b0f2802d9a969f27430
|
| 3 |
+
size 16389
|
checkpoint-10000/rng_state_5.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a58b3cfd541a9a54d11b60b847f7b125dd6411954ab8ebd93e229f292a86a909
|
| 3 |
+
size 16389
|
checkpoint-10000/rng_state_6.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6233970dbb86911a32d0cd96f7a63f5dc4f0455bcba37065255b6d43e8b849b4
|
| 3 |
+
size 16389
|
checkpoint-10000/rng_state_7.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1503fcb68cbbbdfbae3c0641994f80a57f0f63296638270dafe33a5da3c91b7
|
| 3 |
+
size 16389
|
checkpoint-10000/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:41f6bdb0585cc7de1d3f58e2eb994b72e9ee8f46f52ee88677b2d3a36f2ea338
|
| 3 |
+
size 1465
|
checkpoint-10000/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-10000/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c5e5b1d89b7e3738e5a5a4f93c326d8f3292ea83f9c560b8dbb6d66fb851973
|
| 3 |
+
size 22853258
|
checkpoint-10000/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-10000/trainer_state.json
ADDED
|
@@ -0,0 +1,1457 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 3.313478585038522,
|
| 6 |
+
"eval_steps": 5000,
|
| 7 |
+
"global_step": 10000,
|
| 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 |
+
"epoch": 1.6733493496810539,
|
| 729 |
+
"grad_norm": 0.3046875,
|
| 730 |
+
"learning_rate": 4.991306424133701e-05,
|
| 731 |
+
"loss": 3.762,
|
| 732 |
+
"step": 5050
|
| 733 |
+
},
|
| 734 |
+
{
|
| 735 |
+
"epoch": 1.6899179852539143,
|
| 736 |
+
"grad_norm": 0.296875,
|
| 737 |
+
"learning_rate": 4.990929860769719e-05,
|
| 738 |
+
"loss": 3.7576,
|
| 739 |
+
"step": 5100
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"epoch": 1.7064866208267748,
|
| 743 |
+
"grad_norm": 0.3203125,
|
| 744 |
+
"learning_rate": 4.990545328758518e-05,
|
| 745 |
+
"loss": 3.7624,
|
| 746 |
+
"step": 5150
|
| 747 |
+
},
|
| 748 |
+
{
|
| 749 |
+
"epoch": 1.7230552563996355,
|
| 750 |
+
"grad_norm": 0.302734375,
|
| 751 |
+
"learning_rate": 4.990152829330243e-05,
|
| 752 |
+
"loss": 3.757,
|
| 753 |
+
"step": 5200
|
| 754 |
+
},
|
| 755 |
+
{
|
| 756 |
+
"epoch": 1.7396238919724962,
|
| 757 |
+
"grad_norm": 0.283203125,
|
| 758 |
+
"learning_rate": 4.989752363740524e-05,
|
| 759 |
+
"loss": 3.7655,
|
| 760 |
+
"step": 5250
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"epoch": 1.7561925275453567,
|
| 764 |
+
"grad_norm": 0.298828125,
|
| 765 |
+
"learning_rate": 4.989343933270477e-05,
|
| 766 |
+
"loss": 3.7575,
|
| 767 |
+
"step": 5300
|
| 768 |
+
},
|
| 769 |
+
{
|
| 770 |
+
"epoch": 1.7727611631182172,
|
| 771 |
+
"grad_norm": 0.30859375,
|
| 772 |
+
"learning_rate": 4.9889275392266984e-05,
|
| 773 |
+
"loss": 3.7618,
|
| 774 |
+
"step": 5350
|
| 775 |
+
},
|
| 776 |
+
{
|
| 777 |
+
"epoch": 1.7893297986910777,
|
| 778 |
+
"grad_norm": 0.30859375,
|
| 779 |
+
"learning_rate": 4.988503182941259e-05,
|
| 780 |
+
"loss": 3.7561,
|
| 781 |
+
"step": 5400
|
| 782 |
+
},
|
| 783 |
+
{
|
| 784 |
+
"epoch": 1.8058984342639384,
|
| 785 |
+
"grad_norm": 0.298828125,
|
| 786 |
+
"learning_rate": 4.988070865771702e-05,
|
| 787 |
+
"loss": 3.7645,
|
| 788 |
+
"step": 5450
|
| 789 |
+
},
|
| 790 |
+
{
|
| 791 |
+
"epoch": 1.822467069836799,
|
| 792 |
+
"grad_norm": 0.294921875,
|
| 793 |
+
"learning_rate": 4.9876305891010385e-05,
|
| 794 |
+
"loss": 3.7571,
|
| 795 |
+
"step": 5500
|
| 796 |
+
},
|
| 797 |
+
{
|
| 798 |
+
"epoch": 1.8390357054096595,
|
| 799 |
+
"grad_norm": 0.30859375,
|
| 800 |
+
"learning_rate": 4.987182354337744e-05,
|
| 801 |
+
"loss": 3.7565,
|
| 802 |
+
"step": 5550
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"epoch": 1.85560434098252,
|
| 806 |
+
"grad_norm": 0.310546875,
|
| 807 |
+
"learning_rate": 4.986726162915748e-05,
|
| 808 |
+
"loss": 3.7604,
|
| 809 |
+
"step": 5600
|
| 810 |
+
},
|
| 811 |
+
{
|
| 812 |
+
"epoch": 1.8721729765553805,
|
| 813 |
+
"grad_norm": 0.28125,
|
| 814 |
+
"learning_rate": 4.9862620162944386e-05,
|
| 815 |
+
"loss": 3.7497,
|
| 816 |
+
"step": 5650
|
| 817 |
+
},
|
| 818 |
+
{
|
| 819 |
+
"epoch": 1.8887416121282412,
|
| 820 |
+
"grad_norm": 0.291015625,
|
| 821 |
+
"learning_rate": 4.9857899159586496e-05,
|
| 822 |
+
"loss": 3.7498,
|
| 823 |
+
"step": 5700
|
| 824 |
+
},
|
| 825 |
+
{
|
| 826 |
+
"epoch": 1.905310247701102,
|
| 827 |
+
"grad_norm": 0.302734375,
|
| 828 |
+
"learning_rate": 4.9853098634186625e-05,
|
| 829 |
+
"loss": 3.7488,
|
| 830 |
+
"step": 5750
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"epoch": 1.9218788832739624,
|
| 834 |
+
"grad_norm": 0.29296875,
|
| 835 |
+
"learning_rate": 4.984821860210196e-05,
|
| 836 |
+
"loss": 3.7517,
|
| 837 |
+
"step": 5800
|
| 838 |
+
},
|
| 839 |
+
{
|
| 840 |
+
"epoch": 1.9384475188468229,
|
| 841 |
+
"grad_norm": 0.3125,
|
| 842 |
+
"learning_rate": 4.984325907894404e-05,
|
| 843 |
+
"loss": 3.7454,
|
| 844 |
+
"step": 5850
|
| 845 |
+
},
|
| 846 |
+
{
|
| 847 |
+
"epoch": 1.9550161544196836,
|
| 848 |
+
"grad_norm": 0.291015625,
|
| 849 |
+
"learning_rate": 4.98382200805787e-05,
|
| 850 |
+
"loss": 3.7446,
|
| 851 |
+
"step": 5900
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"epoch": 1.9715847899925443,
|
| 855 |
+
"grad_norm": 0.30078125,
|
| 856 |
+
"learning_rate": 4.9833101623126034e-05,
|
| 857 |
+
"loss": 3.751,
|
| 858 |
+
"step": 5950
|
| 859 |
+
},
|
| 860 |
+
{
|
| 861 |
+
"epoch": 1.9881534255654048,
|
| 862 |
+
"grad_norm": 0.296875,
|
| 863 |
+
"learning_rate": 4.982790372296031e-05,
|
| 864 |
+
"loss": 3.7485,
|
| 865 |
+
"step": 6000
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 2.004639217960401,
|
| 869 |
+
"grad_norm": 0.341796875,
|
| 870 |
+
"learning_rate": 4.9822626396709965e-05,
|
| 871 |
+
"loss": 3.7467,
|
| 872 |
+
"step": 6050
|
| 873 |
+
},
|
| 874 |
+
{
|
| 875 |
+
"epoch": 2.0212078535332614,
|
| 876 |
+
"grad_norm": 0.341796875,
|
| 877 |
+
"learning_rate": 4.98172696612575e-05,
|
| 878 |
+
"loss": 3.7434,
|
| 879 |
+
"step": 6100
|
| 880 |
+
},
|
| 881 |
+
{
|
| 882 |
+
"epoch": 2.0377764891061223,
|
| 883 |
+
"grad_norm": 0.330078125,
|
| 884 |
+
"learning_rate": 4.981183353373946e-05,
|
| 885 |
+
"loss": 3.7451,
|
| 886 |
+
"step": 6150
|
| 887 |
+
},
|
| 888 |
+
{
|
| 889 |
+
"epoch": 2.054345124678983,
|
| 890 |
+
"grad_norm": 0.328125,
|
| 891 |
+
"learning_rate": 4.980631803154638e-05,
|
| 892 |
+
"loss": 3.7338,
|
| 893 |
+
"step": 6200
|
| 894 |
+
},
|
| 895 |
+
{
|
| 896 |
+
"epoch": 2.0709137602518433,
|
| 897 |
+
"grad_norm": 0.333984375,
|
| 898 |
+
"learning_rate": 4.98007231723227e-05,
|
| 899 |
+
"loss": 3.7348,
|
| 900 |
+
"step": 6250
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"epoch": 2.0874823958247037,
|
| 904 |
+
"grad_norm": 0.3359375,
|
| 905 |
+
"learning_rate": 4.979504897396675e-05,
|
| 906 |
+
"loss": 3.7295,
|
| 907 |
+
"step": 6300
|
| 908 |
+
},
|
| 909 |
+
{
|
| 910 |
+
"epoch": 2.104051031397564,
|
| 911 |
+
"grad_norm": 0.365234375,
|
| 912 |
+
"learning_rate": 4.978929545463066e-05,
|
| 913 |
+
"loss": 3.7357,
|
| 914 |
+
"step": 6350
|
| 915 |
+
},
|
| 916 |
+
{
|
| 917 |
+
"epoch": 2.120619666970425,
|
| 918 |
+
"grad_norm": 0.365234375,
|
| 919 |
+
"learning_rate": 4.97834626327203e-05,
|
| 920 |
+
"loss": 3.7387,
|
| 921 |
+
"step": 6400
|
| 922 |
+
},
|
| 923 |
+
{
|
| 924 |
+
"epoch": 2.1371883025432856,
|
| 925 |
+
"grad_norm": 0.345703125,
|
| 926 |
+
"learning_rate": 4.9777550526895265e-05,
|
| 927 |
+
"loss": 3.7359,
|
| 928 |
+
"step": 6450
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"epoch": 2.153756938116146,
|
| 932 |
+
"grad_norm": 0.357421875,
|
| 933 |
+
"learning_rate": 4.977155915606877e-05,
|
| 934 |
+
"loss": 3.7359,
|
| 935 |
+
"step": 6500
|
| 936 |
+
},
|
| 937 |
+
{
|
| 938 |
+
"epoch": 2.1703255736890066,
|
| 939 |
+
"grad_norm": 0.330078125,
|
| 940 |
+
"learning_rate": 4.9765488539407586e-05,
|
| 941 |
+
"loss": 3.7333,
|
| 942 |
+
"step": 6550
|
| 943 |
+
},
|
| 944 |
+
{
|
| 945 |
+
"epoch": 2.186894209261867,
|
| 946 |
+
"grad_norm": 0.33203125,
|
| 947 |
+
"learning_rate": 4.975933869633202e-05,
|
| 948 |
+
"loss": 3.7296,
|
| 949 |
+
"step": 6600
|
| 950 |
+
},
|
| 951 |
+
{
|
| 952 |
+
"epoch": 2.203462844834728,
|
| 953 |
+
"grad_norm": 0.3125,
|
| 954 |
+
"learning_rate": 4.9753109646515814e-05,
|
| 955 |
+
"loss": 3.7297,
|
| 956 |
+
"step": 6650
|
| 957 |
+
},
|
| 958 |
+
{
|
| 959 |
+
"epoch": 2.2200314804075885,
|
| 960 |
+
"grad_norm": 0.361328125,
|
| 961 |
+
"learning_rate": 4.974680140988612e-05,
|
| 962 |
+
"loss": 3.7334,
|
| 963 |
+
"step": 6700
|
| 964 |
+
},
|
| 965 |
+
{
|
| 966 |
+
"epoch": 2.236600115980449,
|
| 967 |
+
"grad_norm": 0.33984375,
|
| 968 |
+
"learning_rate": 4.974041400662338e-05,
|
| 969 |
+
"loss": 3.7342,
|
| 970 |
+
"step": 6750
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"epoch": 2.2531687515533094,
|
| 974 |
+
"grad_norm": 0.376953125,
|
| 975 |
+
"learning_rate": 4.973394745716133e-05,
|
| 976 |
+
"loss": 3.726,
|
| 977 |
+
"step": 6800
|
| 978 |
+
},
|
| 979 |
+
{
|
| 980 |
+
"epoch": 2.2697373871261703,
|
| 981 |
+
"grad_norm": 0.35546875,
|
| 982 |
+
"learning_rate": 4.972740178218688e-05,
|
| 983 |
+
"loss": 3.7359,
|
| 984 |
+
"step": 6850
|
| 985 |
+
},
|
| 986 |
+
{
|
| 987 |
+
"epoch": 2.286306022699031,
|
| 988 |
+
"grad_norm": 0.322265625,
|
| 989 |
+
"learning_rate": 4.972077700264007e-05,
|
| 990 |
+
"loss": 3.7298,
|
| 991 |
+
"step": 6900
|
| 992 |
+
},
|
| 993 |
+
{
|
| 994 |
+
"epoch": 2.3028746582718913,
|
| 995 |
+
"grad_norm": 0.326171875,
|
| 996 |
+
"learning_rate": 4.9714073139714004e-05,
|
| 997 |
+
"loss": 3.731,
|
| 998 |
+
"step": 6950
|
| 999 |
+
},
|
| 1000 |
+
{
|
| 1001 |
+
"epoch": 2.319443293844752,
|
| 1002 |
+
"grad_norm": 0.337890625,
|
| 1003 |
+
"learning_rate": 4.970729021485476e-05,
|
| 1004 |
+
"loss": 3.7268,
|
| 1005 |
+
"step": 7000
|
| 1006 |
+
},
|
| 1007 |
+
{
|
| 1008 |
+
"epoch": 2.3360119294176123,
|
| 1009 |
+
"grad_norm": 0.33203125,
|
| 1010 |
+
"learning_rate": 4.9700428249761386e-05,
|
| 1011 |
+
"loss": 3.7249,
|
| 1012 |
+
"step": 7050
|
| 1013 |
+
},
|
| 1014 |
+
{
|
| 1015 |
+
"epoch": 2.352580564990473,
|
| 1016 |
+
"grad_norm": 0.33203125,
|
| 1017 |
+
"learning_rate": 4.969348726638574e-05,
|
| 1018 |
+
"loss": 3.7297,
|
| 1019 |
+
"step": 7100
|
| 1020 |
+
},
|
| 1021 |
+
{
|
| 1022 |
+
"epoch": 2.3691492005633337,
|
| 1023 |
+
"grad_norm": 0.34765625,
|
| 1024 |
+
"learning_rate": 4.968646728693248e-05,
|
| 1025 |
+
"loss": 3.728,
|
| 1026 |
+
"step": 7150
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"epoch": 2.385717836136194,
|
| 1030 |
+
"grad_norm": 0.328125,
|
| 1031 |
+
"learning_rate": 4.967936833385898e-05,
|
| 1032 |
+
"loss": 3.7298,
|
| 1033 |
+
"step": 7200
|
| 1034 |
+
},
|
| 1035 |
+
{
|
| 1036 |
+
"epoch": 2.4022864717090546,
|
| 1037 |
+
"grad_norm": 0.357421875,
|
| 1038 |
+
"learning_rate": 4.9672190429875266e-05,
|
| 1039 |
+
"loss": 3.7228,
|
| 1040 |
+
"step": 7250
|
| 1041 |
+
},
|
| 1042 |
+
{
|
| 1043 |
+
"epoch": 2.4188551072819156,
|
| 1044 |
+
"grad_norm": 0.3671875,
|
| 1045 |
+
"learning_rate": 4.96649335979439e-05,
|
| 1046 |
+
"loss": 3.7254,
|
| 1047 |
+
"step": 7300
|
| 1048 |
+
},
|
| 1049 |
+
{
|
| 1050 |
+
"epoch": 2.435423742854776,
|
| 1051 |
+
"grad_norm": 0.36328125,
|
| 1052 |
+
"learning_rate": 4.9657597861279976e-05,
|
| 1053 |
+
"loss": 3.7284,
|
| 1054 |
+
"step": 7350
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"epoch": 2.4519923784276365,
|
| 1058 |
+
"grad_norm": 0.31640625,
|
| 1059 |
+
"learning_rate": 4.965018324335099e-05,
|
| 1060 |
+
"loss": 3.7213,
|
| 1061 |
+
"step": 7400
|
| 1062 |
+
},
|
| 1063 |
+
{
|
| 1064 |
+
"epoch": 2.468561014000497,
|
| 1065 |
+
"grad_norm": 0.310546875,
|
| 1066 |
+
"learning_rate": 4.964268976787679e-05,
|
| 1067 |
+
"loss": 3.7224,
|
| 1068 |
+
"step": 7450
|
| 1069 |
+
},
|
| 1070 |
+
{
|
| 1071 |
+
"epoch": 2.4851296495733575,
|
| 1072 |
+
"grad_norm": 0.330078125,
|
| 1073 |
+
"learning_rate": 4.9635117458829496e-05,
|
| 1074 |
+
"loss": 3.7222,
|
| 1075 |
+
"step": 7500
|
| 1076 |
+
},
|
| 1077 |
+
{
|
| 1078 |
+
"epoch": 2.501698285146218,
|
| 1079 |
+
"grad_norm": 0.322265625,
|
| 1080 |
+
"learning_rate": 4.962746634043341e-05,
|
| 1081 |
+
"loss": 3.7286,
|
| 1082 |
+
"step": 7550
|
| 1083 |
+
},
|
| 1084 |
+
{
|
| 1085 |
+
"epoch": 2.518266920719079,
|
| 1086 |
+
"grad_norm": 0.37890625,
|
| 1087 |
+
"learning_rate": 4.961973643716497e-05,
|
| 1088 |
+
"loss": 3.7287,
|
| 1089 |
+
"step": 7600
|
| 1090 |
+
},
|
| 1091 |
+
{
|
| 1092 |
+
"epoch": 2.5348355562919394,
|
| 1093 |
+
"grad_norm": 0.326171875,
|
| 1094 |
+
"learning_rate": 4.961192777375263e-05,
|
| 1095 |
+
"loss": 3.7208,
|
| 1096 |
+
"step": 7650
|
| 1097 |
+
},
|
| 1098 |
+
{
|
| 1099 |
+
"epoch": 2.5514041918648,
|
| 1100 |
+
"grad_norm": 0.3515625,
|
| 1101 |
+
"learning_rate": 4.9604040375176816e-05,
|
| 1102 |
+
"loss": 3.7305,
|
| 1103 |
+
"step": 7700
|
| 1104 |
+
},
|
| 1105 |
+
{
|
| 1106 |
+
"epoch": 2.5679728274376608,
|
| 1107 |
+
"grad_norm": 0.330078125,
|
| 1108 |
+
"learning_rate": 4.9596074266669844e-05,
|
| 1109 |
+
"loss": 3.7171,
|
| 1110 |
+
"step": 7750
|
| 1111 |
+
},
|
| 1112 |
+
{
|
| 1113 |
+
"epoch": 2.5845414630105212,
|
| 1114 |
+
"grad_norm": 0.32421875,
|
| 1115 |
+
"learning_rate": 4.95880294737158e-05,
|
| 1116 |
+
"loss": 3.721,
|
| 1117 |
+
"step": 7800
|
| 1118 |
+
},
|
| 1119 |
+
{
|
| 1120 |
+
"epoch": 2.6011100985833817,
|
| 1121 |
+
"grad_norm": 0.310546875,
|
| 1122 |
+
"learning_rate": 4.9579906022050517e-05,
|
| 1123 |
+
"loss": 3.7225,
|
| 1124 |
+
"step": 7850
|
| 1125 |
+
},
|
| 1126 |
+
{
|
| 1127 |
+
"epoch": 2.617678734156242,
|
| 1128 |
+
"grad_norm": 0.322265625,
|
| 1129 |
+
"learning_rate": 4.957170393766143e-05,
|
| 1130 |
+
"loss": 3.7215,
|
| 1131 |
+
"step": 7900
|
| 1132 |
+
},
|
| 1133 |
+
{
|
| 1134 |
+
"epoch": 2.6342473697291027,
|
| 1135 |
+
"grad_norm": 0.345703125,
|
| 1136 |
+
"learning_rate": 4.956342324678755e-05,
|
| 1137 |
+
"loss": 3.7237,
|
| 1138 |
+
"step": 7950
|
| 1139 |
+
},
|
| 1140 |
+
{
|
| 1141 |
+
"epoch": 2.650816005301963,
|
| 1142 |
+
"grad_norm": 0.3125,
|
| 1143 |
+
"learning_rate": 4.9555063975919345e-05,
|
| 1144 |
+
"loss": 3.7189,
|
| 1145 |
+
"step": 8000
|
| 1146 |
+
},
|
| 1147 |
+
{
|
| 1148 |
+
"epoch": 2.667384640874824,
|
| 1149 |
+
"grad_norm": 0.314453125,
|
| 1150 |
+
"learning_rate": 4.954662615179868e-05,
|
| 1151 |
+
"loss": 3.7209,
|
| 1152 |
+
"step": 8050
|
| 1153 |
+
},
|
| 1154 |
+
{
|
| 1155 |
+
"epoch": 2.6839532764476846,
|
| 1156 |
+
"grad_norm": 0.328125,
|
| 1157 |
+
"learning_rate": 4.953810980141869e-05,
|
| 1158 |
+
"loss": 3.7267,
|
| 1159 |
+
"step": 8100
|
| 1160 |
+
},
|
| 1161 |
+
{
|
| 1162 |
+
"epoch": 2.700521912020545,
|
| 1163 |
+
"grad_norm": 0.32421875,
|
| 1164 |
+
"learning_rate": 4.952951495202374e-05,
|
| 1165 |
+
"loss": 3.72,
|
| 1166 |
+
"step": 8150
|
| 1167 |
+
},
|
| 1168 |
+
{
|
| 1169 |
+
"epoch": 2.717090547593406,
|
| 1170 |
+
"grad_norm": 0.33203125,
|
| 1171 |
+
"learning_rate": 4.9520841631109315e-05,
|
| 1172 |
+
"loss": 3.7168,
|
| 1173 |
+
"step": 8200
|
| 1174 |
+
},
|
| 1175 |
+
{
|
| 1176 |
+
"epoch": 2.7336591831662664,
|
| 1177 |
+
"grad_norm": 0.33203125,
|
| 1178 |
+
"learning_rate": 4.951208986642194e-05,
|
| 1179 |
+
"loss": 3.7167,
|
| 1180 |
+
"step": 8250
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"epoch": 2.750227818739127,
|
| 1184 |
+
"grad_norm": 0.32421875,
|
| 1185 |
+
"learning_rate": 4.9503259685959074e-05,
|
| 1186 |
+
"loss": 3.7192,
|
| 1187 |
+
"step": 8300
|
| 1188 |
+
},
|
| 1189 |
+
{
|
| 1190 |
+
"epoch": 2.7667964543119874,
|
| 1191 |
+
"grad_norm": 0.3515625,
|
| 1192 |
+
"learning_rate": 4.949435111796905e-05,
|
| 1193 |
+
"loss": 3.7162,
|
| 1194 |
+
"step": 8350
|
| 1195 |
+
},
|
| 1196 |
+
{
|
| 1197 |
+
"epoch": 2.783365089884848,
|
| 1198 |
+
"grad_norm": 0.328125,
|
| 1199 |
+
"learning_rate": 4.948536419095095e-05,
|
| 1200 |
+
"loss": 3.7161,
|
| 1201 |
+
"step": 8400
|
| 1202 |
+
},
|
| 1203 |
+
{
|
| 1204 |
+
"epoch": 2.7999337254577084,
|
| 1205 |
+
"grad_norm": 0.32421875,
|
| 1206 |
+
"learning_rate": 4.947629893365453e-05,
|
| 1207 |
+
"loss": 3.718,
|
| 1208 |
+
"step": 8450
|
| 1209 |
+
},
|
| 1210 |
+
{
|
| 1211 |
+
"epoch": 2.8165023610305693,
|
| 1212 |
+
"grad_norm": 0.322265625,
|
| 1213 |
+
"learning_rate": 4.9467155375080165e-05,
|
| 1214 |
+
"loss": 3.7152,
|
| 1215 |
+
"step": 8500
|
| 1216 |
+
},
|
| 1217 |
+
{
|
| 1218 |
+
"epoch": 2.8330709966034298,
|
| 1219 |
+
"grad_norm": 0.34375,
|
| 1220 |
+
"learning_rate": 4.9457933544478684e-05,
|
| 1221 |
+
"loss": 3.7237,
|
| 1222 |
+
"step": 8550
|
| 1223 |
+
},
|
| 1224 |
+
{
|
| 1225 |
+
"epoch": 2.8496396321762902,
|
| 1226 |
+
"grad_norm": 0.330078125,
|
| 1227 |
+
"learning_rate": 4.944863347135132e-05,
|
| 1228 |
+
"loss": 3.7092,
|
| 1229 |
+
"step": 8600
|
| 1230 |
+
},
|
| 1231 |
+
{
|
| 1232 |
+
"epoch": 2.8662082677491507,
|
| 1233 |
+
"grad_norm": 0.328125,
|
| 1234 |
+
"learning_rate": 4.943925518544962e-05,
|
| 1235 |
+
"loss": 3.7174,
|
| 1236 |
+
"step": 8650
|
| 1237 |
+
},
|
| 1238 |
+
{
|
| 1239 |
+
"epoch": 2.8827769033220116,
|
| 1240 |
+
"grad_norm": 0.3359375,
|
| 1241 |
+
"learning_rate": 4.942979871677532e-05,
|
| 1242 |
+
"loss": 3.7162,
|
| 1243 |
+
"step": 8700
|
| 1244 |
+
},
|
| 1245 |
+
{
|
| 1246 |
+
"epoch": 2.899345538894872,
|
| 1247 |
+
"grad_norm": 0.359375,
|
| 1248 |
+
"learning_rate": 4.94202640955803e-05,
|
| 1249 |
+
"loss": 3.7152,
|
| 1250 |
+
"step": 8750
|
| 1251 |
+
},
|
| 1252 |
+
{
|
| 1253 |
+
"epoch": 2.9159141744677326,
|
| 1254 |
+
"grad_norm": 0.357421875,
|
| 1255 |
+
"learning_rate": 4.9410651352366435e-05,
|
| 1256 |
+
"loss": 3.7181,
|
| 1257 |
+
"step": 8800
|
| 1258 |
+
},
|
| 1259 |
+
{
|
| 1260 |
+
"epoch": 2.932482810040593,
|
| 1261 |
+
"grad_norm": 0.333984375,
|
| 1262 |
+
"learning_rate": 4.94009605178855e-05,
|
| 1263 |
+
"loss": 3.7177,
|
| 1264 |
+
"step": 8850
|
| 1265 |
+
},
|
| 1266 |
+
{
|
| 1267 |
+
"epoch": 2.9490514456134536,
|
| 1268 |
+
"grad_norm": 0.341796875,
|
| 1269 |
+
"learning_rate": 4.939119162313912e-05,
|
| 1270 |
+
"loss": 3.7216,
|
| 1271 |
+
"step": 8900
|
| 1272 |
+
},
|
| 1273 |
+
{
|
| 1274 |
+
"epoch": 2.965620081186314,
|
| 1275 |
+
"grad_norm": 0.3671875,
|
| 1276 |
+
"learning_rate": 4.9381344699378626e-05,
|
| 1277 |
+
"loss": 3.712,
|
| 1278 |
+
"step": 8950
|
| 1279 |
+
},
|
| 1280 |
+
{
|
| 1281 |
+
"epoch": 2.982188716759175,
|
| 1282 |
+
"grad_norm": 0.322265625,
|
| 1283 |
+
"learning_rate": 4.937141977810497e-05,
|
| 1284 |
+
"loss": 3.7199,
|
| 1285 |
+
"step": 9000
|
| 1286 |
+
},
|
| 1287 |
+
{
|
| 1288 |
+
"epoch": 2.9987573523320354,
|
| 1289 |
+
"grad_norm": 0.326171875,
|
| 1290 |
+
"learning_rate": 4.936141689106861e-05,
|
| 1291 |
+
"loss": 3.7058,
|
| 1292 |
+
"step": 9050
|
| 1293 |
+
},
|
| 1294 |
+
{
|
| 1295 |
+
"epoch": 3.0152431447270316,
|
| 1296 |
+
"grad_norm": 0.408203125,
|
| 1297 |
+
"learning_rate": 4.935133607026945e-05,
|
| 1298 |
+
"loss": 3.6969,
|
| 1299 |
+
"step": 9100
|
| 1300 |
+
},
|
| 1301 |
+
{
|
| 1302 |
+
"epoch": 3.0318117802998925,
|
| 1303 |
+
"grad_norm": 0.41796875,
|
| 1304 |
+
"learning_rate": 4.934117734795669e-05,
|
| 1305 |
+
"loss": 3.706,
|
| 1306 |
+
"step": 9150
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"epoch": 3.048380415872753,
|
| 1310 |
+
"grad_norm": 0.369140625,
|
| 1311 |
+
"learning_rate": 4.933094075662874e-05,
|
| 1312 |
+
"loss": 3.7006,
|
| 1313 |
+
"step": 9200
|
| 1314 |
+
},
|
| 1315 |
+
{
|
| 1316 |
+
"epoch": 3.0649490514456135,
|
| 1317 |
+
"grad_norm": 0.361328125,
|
| 1318 |
+
"learning_rate": 4.9320626329033134e-05,
|
| 1319 |
+
"loss": 3.703,
|
| 1320 |
+
"step": 9250
|
| 1321 |
+
},
|
| 1322 |
+
{
|
| 1323 |
+
"epoch": 3.081517687018474,
|
| 1324 |
+
"grad_norm": 0.376953125,
|
| 1325 |
+
"learning_rate": 4.9310234098166396e-05,
|
| 1326 |
+
"loss": 3.7084,
|
| 1327 |
+
"step": 9300
|
| 1328 |
+
},
|
| 1329 |
+
{
|
| 1330 |
+
"epoch": 3.0980863225913344,
|
| 1331 |
+
"grad_norm": 0.388671875,
|
| 1332 |
+
"learning_rate": 4.929976409727395e-05,
|
| 1333 |
+
"loss": 3.6991,
|
| 1334 |
+
"step": 9350
|
| 1335 |
+
},
|
| 1336 |
+
{
|
| 1337 |
+
"epoch": 3.1146549581641954,
|
| 1338 |
+
"grad_norm": 0.40234375,
|
| 1339 |
+
"learning_rate": 4.928921635985001e-05,
|
| 1340 |
+
"loss": 3.7057,
|
| 1341 |
+
"step": 9400
|
| 1342 |
+
},
|
| 1343 |
+
{
|
| 1344 |
+
"epoch": 3.131223593737056,
|
| 1345 |
+
"grad_norm": 0.392578125,
|
| 1346 |
+
"learning_rate": 4.9278590919637466e-05,
|
| 1347 |
+
"loss": 3.703,
|
| 1348 |
+
"step": 9450
|
| 1349 |
+
},
|
| 1350 |
+
{
|
| 1351 |
+
"epoch": 3.1477922293099163,
|
| 1352 |
+
"grad_norm": 0.36328125,
|
| 1353 |
+
"learning_rate": 4.9267887810627824e-05,
|
| 1354 |
+
"loss": 3.7103,
|
| 1355 |
+
"step": 9500
|
| 1356 |
+
},
|
| 1357 |
+
{
|
| 1358 |
+
"epoch": 3.164360864882777,
|
| 1359 |
+
"grad_norm": 0.359375,
|
| 1360 |
+
"learning_rate": 4.9257107067061e-05,
|
| 1361 |
+
"loss": 3.7017,
|
| 1362 |
+
"step": 9550
|
| 1363 |
+
},
|
| 1364 |
+
{
|
| 1365 |
+
"epoch": 3.1809295004556373,
|
| 1366 |
+
"grad_norm": 0.3828125,
|
| 1367 |
+
"learning_rate": 4.924624872342531e-05,
|
| 1368 |
+
"loss": 3.6937,
|
| 1369 |
+
"step": 9600
|
| 1370 |
+
},
|
| 1371 |
+
{
|
| 1372 |
+
"epoch": 3.197498136028498,
|
| 1373 |
+
"grad_norm": 0.404296875,
|
| 1374 |
+
"learning_rate": 4.92353128144573e-05,
|
| 1375 |
+
"loss": 3.7063,
|
| 1376 |
+
"step": 9650
|
| 1377 |
+
},
|
| 1378 |
+
{
|
| 1379 |
+
"epoch": 3.2140667716013587,
|
| 1380 |
+
"grad_norm": 0.373046875,
|
| 1381 |
+
"learning_rate": 4.9224299375141656e-05,
|
| 1382 |
+
"loss": 3.6978,
|
| 1383 |
+
"step": 9700
|
| 1384 |
+
},
|
| 1385 |
+
{
|
| 1386 |
+
"epoch": 3.230635407174219,
|
| 1387 |
+
"grad_norm": 0.35546875,
|
| 1388 |
+
"learning_rate": 4.921320844071109e-05,
|
| 1389 |
+
"loss": 3.705,
|
| 1390 |
+
"step": 9750
|
| 1391 |
+
},
|
| 1392 |
+
{
|
| 1393 |
+
"epoch": 3.2472040427470796,
|
| 1394 |
+
"grad_norm": 0.36328125,
|
| 1395 |
+
"learning_rate": 4.920204004664624e-05,
|
| 1396 |
+
"loss": 3.704,
|
| 1397 |
+
"step": 9800
|
| 1398 |
+
},
|
| 1399 |
+
{
|
| 1400 |
+
"epoch": 3.26377267831994,
|
| 1401 |
+
"grad_norm": 0.38671875,
|
| 1402 |
+
"learning_rate": 4.91907942286755e-05,
|
| 1403 |
+
"loss": 3.703,
|
| 1404 |
+
"step": 9850
|
| 1405 |
+
},
|
| 1406 |
+
{
|
| 1407 |
+
"epoch": 3.280341313892801,
|
| 1408 |
+
"grad_norm": 0.37109375,
|
| 1409 |
+
"learning_rate": 4.917947102277499e-05,
|
| 1410 |
+
"loss": 3.7027,
|
| 1411 |
+
"step": 9900
|
| 1412 |
+
},
|
| 1413 |
+
{
|
| 1414 |
+
"epoch": 3.2969099494656615,
|
| 1415 |
+
"grad_norm": 0.376953125,
|
| 1416 |
+
"learning_rate": 4.916807046516838e-05,
|
| 1417 |
+
"loss": 3.6977,
|
| 1418 |
+
"step": 9950
|
| 1419 |
+
},
|
| 1420 |
+
{
|
| 1421 |
+
"epoch": 3.313478585038522,
|
| 1422 |
+
"grad_norm": 0.359375,
|
| 1423 |
+
"learning_rate": 4.9156592592326814e-05,
|
| 1424 |
+
"loss": 3.6968,
|
| 1425 |
+
"step": 10000
|
| 1426 |
+
},
|
| 1427 |
+
{
|
| 1428 |
+
"epoch": 3.313478585038522,
|
| 1429 |
+
"eval_loss": 3.6868932247161865,
|
| 1430 |
+
"eval_runtime": 8.062,
|
| 1431 |
+
"eval_samples_per_second": 120.194,
|
| 1432 |
+
"eval_steps_per_second": 1.985,
|
| 1433 |
+
"step": 10000
|
| 1434 |
+
}
|
| 1435 |
+
],
|
| 1436 |
+
"logging_steps": 50,
|
| 1437 |
+
"max_steps": 90540,
|
| 1438 |
+
"num_input_tokens_seen": 0,
|
| 1439 |
+
"num_train_epochs": 30,
|
| 1440 |
+
"save_steps": 5000,
|
| 1441 |
+
"stateful_callbacks": {
|
| 1442 |
+
"TrainerControl": {
|
| 1443 |
+
"args": {
|
| 1444 |
+
"should_epoch_stop": false,
|
| 1445 |
+
"should_evaluate": false,
|
| 1446 |
+
"should_log": false,
|
| 1447 |
+
"should_save": true,
|
| 1448 |
+
"should_training_stop": false
|
| 1449 |
+
},
|
| 1450 |
+
"attributes": {}
|
| 1451 |
+
}
|
| 1452 |
+
},
|
| 1453 |
+
"total_flos": 2.95201588996714e+19,
|
| 1454 |
+
"train_batch_size": 4,
|
| 1455 |
+
"trial_name": null,
|
| 1456 |
+
"trial_params": null
|
| 1457 |
+
}
|
checkpoint-10000/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28bc9829b8c8fa8bf181924e8f4aa71e88dec472de000157e8bb54e4440b7211
|
| 3 |
+
size 5841
|