Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- checkpoint-2500/added_tokens.json +3 -0
- checkpoint-2500/chat_template.jinja +47 -0
- checkpoint-2500/config.json +86 -0
- checkpoint-2500/generation_config.json +12 -0
- checkpoint-2500/model-00001-of-00005.safetensors +3 -0
- checkpoint-2500/model-00002-of-00005.safetensors +3 -0
- checkpoint-2500/model-00003-of-00005.safetensors +3 -0
- checkpoint-2500/model-00004-of-00005.safetensors +3 -0
- checkpoint-2500/model-00005-of-00005.safetensors +3 -0
- checkpoint-2500/model.safetensors.index.json +634 -0
- checkpoint-2500/optimizer.pt +3 -0
- checkpoint-2500/rng_state.pth +3 -0
- checkpoint-2500/scheduler.pt +3 -0
- checkpoint-2500/special_tokens_map.json +33 -0
- checkpoint-2500/tokenizer.json +3 -0
- checkpoint-2500/tokenizer.model +3 -0
- checkpoint-2500/tokenizer_config.json +0 -0
- checkpoint-2500/trainer_state.json +3084 -0
- checkpoint-2500/training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -37,3 +37,4 @@ checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
| 37 |
checkpoint-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
checkpoint-1500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 39 |
checkpoint-2000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 37 |
checkpoint-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
checkpoint-1500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 39 |
checkpoint-2000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
checkpoint-2500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
checkpoint-2500/added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<image_soft_token>": 262144
|
| 3 |
+
}
|
checkpoint-2500/chat_template.jinja
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{ bos_token }}
|
| 2 |
+
{%- if messages[0]['role'] == 'system' -%}
|
| 3 |
+
{%- if messages[0]['content'] is string -%}
|
| 4 |
+
{%- set first_user_prefix = messages[0]['content'] + '
|
| 5 |
+
|
| 6 |
+
' -%}
|
| 7 |
+
{%- else -%}
|
| 8 |
+
{%- set first_user_prefix = messages[0]['content'][0]['text'] + '
|
| 9 |
+
|
| 10 |
+
' -%}
|
| 11 |
+
{%- endif -%}
|
| 12 |
+
{%- set loop_messages = messages[1:] -%}
|
| 13 |
+
{%- else -%}
|
| 14 |
+
{%- set first_user_prefix = "" -%}
|
| 15 |
+
{%- set loop_messages = messages -%}
|
| 16 |
+
{%- endif -%}
|
| 17 |
+
{%- for message in loop_messages -%}
|
| 18 |
+
{%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
|
| 19 |
+
{{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
|
| 20 |
+
{%- endif -%}
|
| 21 |
+
{%- if (message['role'] == 'assistant') -%}
|
| 22 |
+
{%- set role = "model" -%}
|
| 23 |
+
{%- else -%}
|
| 24 |
+
{%- set role = message['role'] -%}
|
| 25 |
+
{%- endif -%}
|
| 26 |
+
{{ '<start_of_turn>' + role + '
|
| 27 |
+
' + (first_user_prefix if loop.first else "") }}
|
| 28 |
+
{%- if message['content'] is string -%}
|
| 29 |
+
{{ message['content'] | trim }}
|
| 30 |
+
{%- elif message['content'] is iterable -%}
|
| 31 |
+
{%- for item in message['content'] -%}
|
| 32 |
+
{%- if item['type'] == 'image' -%}
|
| 33 |
+
{{ '<start_of_image>' }}
|
| 34 |
+
{%- elif item['type'] == 'text' -%}
|
| 35 |
+
{{ item['text'] | trim }}
|
| 36 |
+
{%- endif -%}
|
| 37 |
+
{%- endfor -%}
|
| 38 |
+
{%- else -%}
|
| 39 |
+
{{ raise_exception("Invalid content type") }}
|
| 40 |
+
{%- endif -%}
|
| 41 |
+
{{ '<end_of_turn>
|
| 42 |
+
' }}
|
| 43 |
+
{%- endfor -%}
|
| 44 |
+
{%- if add_generation_prompt -%}
|
| 45 |
+
{{'<start_of_turn>model
|
| 46 |
+
'}}
|
| 47 |
+
{%- endif -%}
|
checkpoint-2500/config.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_sliding_window_pattern": 6,
|
| 3 |
+
"architectures": [
|
| 4 |
+
"Gemma3ForCausalLM"
|
| 5 |
+
],
|
| 6 |
+
"attention_bias": false,
|
| 7 |
+
"attention_dropout": 0.0,
|
| 8 |
+
"attn_logit_softcapping": null,
|
| 9 |
+
"bos_token_id": 2,
|
| 10 |
+
"dtype": "bfloat16",
|
| 11 |
+
"eos_token_id": 1,
|
| 12 |
+
"final_logit_softcapping": null,
|
| 13 |
+
"head_dim": 256,
|
| 14 |
+
"hidden_activation": "gelu_pytorch_tanh",
|
| 15 |
+
"hidden_size": 3840,
|
| 16 |
+
"initializer_range": 0.02,
|
| 17 |
+
"intermediate_size": 15360,
|
| 18 |
+
"layer_types": [
|
| 19 |
+
"sliding_attention",
|
| 20 |
+
"sliding_attention",
|
| 21 |
+
"sliding_attention",
|
| 22 |
+
"sliding_attention",
|
| 23 |
+
"sliding_attention",
|
| 24 |
+
"full_attention",
|
| 25 |
+
"sliding_attention",
|
| 26 |
+
"sliding_attention",
|
| 27 |
+
"sliding_attention",
|
| 28 |
+
"sliding_attention",
|
| 29 |
+
"sliding_attention",
|
| 30 |
+
"full_attention",
|
| 31 |
+
"sliding_attention",
|
| 32 |
+
"sliding_attention",
|
| 33 |
+
"sliding_attention",
|
| 34 |
+
"sliding_attention",
|
| 35 |
+
"sliding_attention",
|
| 36 |
+
"full_attention",
|
| 37 |
+
"sliding_attention",
|
| 38 |
+
"sliding_attention",
|
| 39 |
+
"sliding_attention",
|
| 40 |
+
"sliding_attention",
|
| 41 |
+
"sliding_attention",
|
| 42 |
+
"full_attention",
|
| 43 |
+
"sliding_attention",
|
| 44 |
+
"sliding_attention",
|
| 45 |
+
"sliding_attention",
|
| 46 |
+
"sliding_attention",
|
| 47 |
+
"sliding_attention",
|
| 48 |
+
"full_attention",
|
| 49 |
+
"sliding_attention",
|
| 50 |
+
"sliding_attention",
|
| 51 |
+
"sliding_attention",
|
| 52 |
+
"sliding_attention",
|
| 53 |
+
"sliding_attention",
|
| 54 |
+
"full_attention",
|
| 55 |
+
"sliding_attention",
|
| 56 |
+
"sliding_attention",
|
| 57 |
+
"sliding_attention",
|
| 58 |
+
"sliding_attention",
|
| 59 |
+
"sliding_attention",
|
| 60 |
+
"full_attention",
|
| 61 |
+
"sliding_attention",
|
| 62 |
+
"sliding_attention",
|
| 63 |
+
"sliding_attention",
|
| 64 |
+
"sliding_attention",
|
| 65 |
+
"sliding_attention",
|
| 66 |
+
"full_attention"
|
| 67 |
+
],
|
| 68 |
+
"max_position_embeddings": 131072,
|
| 69 |
+
"model_type": "gemma3_text",
|
| 70 |
+
"num_attention_heads": 16,
|
| 71 |
+
"num_hidden_layers": 48,
|
| 72 |
+
"num_key_value_heads": 8,
|
| 73 |
+
"pad_token_id": 0,
|
| 74 |
+
"query_pre_attn_scalar": 256,
|
| 75 |
+
"rms_norm_eps": 1e-06,
|
| 76 |
+
"rope_local_base_freq": 10000.0,
|
| 77 |
+
"rope_scaling": {
|
| 78 |
+
"factor": 8.0,
|
| 79 |
+
"rope_type": "linear"
|
| 80 |
+
},
|
| 81 |
+
"rope_theta": 1000000.0,
|
| 82 |
+
"sliding_window": 1024,
|
| 83 |
+
"transformers_version": "4.56.1",
|
| 84 |
+
"use_cache": true,
|
| 85 |
+
"vocab_size": 262208
|
| 86 |
+
}
|
checkpoint-2500/generation_config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 2,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
1,
|
| 6 |
+
106
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 0,
|
| 9 |
+
"top_k": 64,
|
| 10 |
+
"top_p": 0.95,
|
| 11 |
+
"transformers_version": "4.56.1"
|
| 12 |
+
}
|
checkpoint-2500/model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a4c14f38ffc9e23d873fa999eea1fc965dcedcec267e7a99f07c6fdbe8760d8
|
| 3 |
+
size 4915892992
|
checkpoint-2500/model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0335ce336b31e38c581326acb77ff28330c2073764b1924ad7108d788b56ba68
|
| 3 |
+
size 4931294472
|
checkpoint-2500/model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0d6a60cf6a1708be0613ab7c4d10457ad99b98c02e40ebd5f320fe02aa0d50c
|
| 3 |
+
size 4931294528
|
checkpoint-2500/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4bd9340bc368427bcc805e329f32ec7f6a73ab12274d00a8b9c03d49fe0853d0
|
| 3 |
+
size 4931294528
|
checkpoint-2500/model-00005-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d80ec30fa09df9cb78149b3af4da5e7f22bbe89087198871d4f36c70903e30a6
|
| 3 |
+
size 3822364808
|
checkpoint-2500/model.safetensors.index.json
ADDED
|
@@ -0,0 +1,634 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 11766034176,
|
| 4 |
+
"total_size": 23532068352
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"model.embed_tokens.weight": "model-00001-of-00005.safetensors",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 13 |
+
"model.layers.0.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 14 |
+
"model.layers.0.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 19 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 20 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 21 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 22 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 23 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 24 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 25 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 26 |
+
"model.layers.1.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 27 |
+
"model.layers.1.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 30 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 31 |
+
"model.layers.1.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 32 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 33 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 34 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 35 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 36 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
|
| 37 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 38 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 39 |
+
"model.layers.10.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 40 |
+
"model.layers.10.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 41 |
+
"model.layers.10.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 42 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 43 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 44 |
+
"model.layers.10.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 45 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 46 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 47 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 48 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 49 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
|
| 50 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 51 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 52 |
+
"model.layers.11.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 53 |
+
"model.layers.11.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 54 |
+
"model.layers.11.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 55 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 56 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 57 |
+
"model.layers.11.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 58 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 59 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 60 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 61 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 62 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
|
| 63 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 64 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 65 |
+
"model.layers.12.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 66 |
+
"model.layers.12.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 67 |
+
"model.layers.12.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 68 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 69 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 70 |
+
"model.layers.12.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 71 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 72 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 73 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 74 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 75 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
|
| 76 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 77 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 78 |
+
"model.layers.13.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 79 |
+
"model.layers.13.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 80 |
+
"model.layers.13.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 81 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 82 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 83 |
+
"model.layers.13.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 84 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 85 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 86 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 87 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 88 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
|
| 89 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 90 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 91 |
+
"model.layers.14.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 92 |
+
"model.layers.14.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 93 |
+
"model.layers.14.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 94 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 95 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 96 |
+
"model.layers.14.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 97 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 98 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 99 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 100 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 101 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
|
| 102 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 103 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 104 |
+
"model.layers.15.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 105 |
+
"model.layers.15.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 106 |
+
"model.layers.15.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 107 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 108 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 109 |
+
"model.layers.15.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 110 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 111 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 112 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 113 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 114 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
|
| 115 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 116 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 117 |
+
"model.layers.16.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 118 |
+
"model.layers.16.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 119 |
+
"model.layers.16.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 120 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 121 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 122 |
+
"model.layers.16.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 123 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 124 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 125 |
+
"model.layers.17.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 126 |
+
"model.layers.17.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 127 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
|
| 128 |
+
"model.layers.17.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 129 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 130 |
+
"model.layers.17.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 131 |
+
"model.layers.17.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 132 |
+
"model.layers.17.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 133 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 134 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 135 |
+
"model.layers.17.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 136 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 137 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 138 |
+
"model.layers.18.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 139 |
+
"model.layers.18.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 140 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
|
| 141 |
+
"model.layers.18.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 142 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 143 |
+
"model.layers.18.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 144 |
+
"model.layers.18.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 145 |
+
"model.layers.18.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 146 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 147 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 148 |
+
"model.layers.18.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 149 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 150 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 151 |
+
"model.layers.19.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 152 |
+
"model.layers.19.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 153 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
|
| 154 |
+
"model.layers.19.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 155 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 156 |
+
"model.layers.19.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 157 |
+
"model.layers.19.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 158 |
+
"model.layers.19.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 159 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 160 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 161 |
+
"model.layers.19.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 162 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 163 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 164 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 165 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 166 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 167 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 168 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 169 |
+
"model.layers.2.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 170 |
+
"model.layers.2.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 171 |
+
"model.layers.2.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 172 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 173 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 174 |
+
"model.layers.2.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 175 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 176 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 177 |
+
"model.layers.20.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 178 |
+
"model.layers.20.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 179 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
|
| 180 |
+
"model.layers.20.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 181 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 182 |
+
"model.layers.20.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 183 |
+
"model.layers.20.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 184 |
+
"model.layers.20.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 185 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 186 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 187 |
+
"model.layers.20.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 188 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 189 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 190 |
+
"model.layers.21.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 191 |
+
"model.layers.21.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 192 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
|
| 193 |
+
"model.layers.21.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 194 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 195 |
+
"model.layers.21.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 196 |
+
"model.layers.21.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 197 |
+
"model.layers.21.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 198 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 199 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 200 |
+
"model.layers.21.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 201 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 202 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 203 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 204 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 205 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
|
| 206 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 207 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 208 |
+
"model.layers.22.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 209 |
+
"model.layers.22.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 210 |
+
"model.layers.22.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 211 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 212 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 213 |
+
"model.layers.22.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 214 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 215 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 216 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 217 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 218 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
|
| 219 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 220 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 221 |
+
"model.layers.23.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 222 |
+
"model.layers.23.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 223 |
+
"model.layers.23.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 224 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 225 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 226 |
+
"model.layers.23.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 227 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 228 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 229 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 230 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 231 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
|
| 232 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 233 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 234 |
+
"model.layers.24.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 235 |
+
"model.layers.24.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 236 |
+
"model.layers.24.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 237 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 238 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 239 |
+
"model.layers.24.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 240 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 241 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 242 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 243 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 244 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
|
| 245 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 246 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 247 |
+
"model.layers.25.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 248 |
+
"model.layers.25.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 249 |
+
"model.layers.25.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 250 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 251 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 252 |
+
"model.layers.25.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 253 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 254 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 255 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 256 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 257 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
|
| 258 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 259 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 260 |
+
"model.layers.26.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 261 |
+
"model.layers.26.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 262 |
+
"model.layers.26.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 263 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 264 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 265 |
+
"model.layers.26.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 266 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 267 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 268 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 269 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 270 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
|
| 271 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 272 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 273 |
+
"model.layers.27.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 274 |
+
"model.layers.27.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 275 |
+
"model.layers.27.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 276 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 277 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 278 |
+
"model.layers.27.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 279 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 280 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 281 |
+
"model.layers.28.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 282 |
+
"model.layers.28.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 283 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
|
| 284 |
+
"model.layers.28.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 285 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 286 |
+
"model.layers.28.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 287 |
+
"model.layers.28.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 288 |
+
"model.layers.28.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 289 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 290 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 291 |
+
"model.layers.28.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 292 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 293 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 294 |
+
"model.layers.29.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 295 |
+
"model.layers.29.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 296 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
|
| 297 |
+
"model.layers.29.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 298 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 299 |
+
"model.layers.29.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 300 |
+
"model.layers.29.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 301 |
+
"model.layers.29.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 302 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 303 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 304 |
+
"model.layers.29.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 305 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 306 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 307 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 308 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 309 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 310 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 311 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 312 |
+
"model.layers.3.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 313 |
+
"model.layers.3.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 314 |
+
"model.layers.3.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 315 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 316 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 317 |
+
"model.layers.3.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 318 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 319 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 320 |
+
"model.layers.30.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 321 |
+
"model.layers.30.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 322 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
|
| 323 |
+
"model.layers.30.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 324 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 325 |
+
"model.layers.30.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 326 |
+
"model.layers.30.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 327 |
+
"model.layers.30.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 328 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 329 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 330 |
+
"model.layers.30.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 331 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 332 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 333 |
+
"model.layers.31.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 334 |
+
"model.layers.31.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 335 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
|
| 336 |
+
"model.layers.31.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 337 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 338 |
+
"model.layers.31.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 339 |
+
"model.layers.31.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 340 |
+
"model.layers.31.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 341 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 342 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 343 |
+
"model.layers.31.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 344 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 345 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 346 |
+
"model.layers.32.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 347 |
+
"model.layers.32.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 348 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
|
| 349 |
+
"model.layers.32.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 350 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 351 |
+
"model.layers.32.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 352 |
+
"model.layers.32.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 353 |
+
"model.layers.32.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 354 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 355 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 356 |
+
"model.layers.32.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 357 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 358 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 359 |
+
"model.layers.33.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 360 |
+
"model.layers.33.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 361 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
|
| 362 |
+
"model.layers.33.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 363 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 364 |
+
"model.layers.33.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 365 |
+
"model.layers.33.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 366 |
+
"model.layers.33.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 367 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 368 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 369 |
+
"model.layers.33.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 370 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 371 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 372 |
+
"model.layers.34.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 373 |
+
"model.layers.34.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 374 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
|
| 375 |
+
"model.layers.34.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 376 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 377 |
+
"model.layers.34.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 378 |
+
"model.layers.34.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 379 |
+
"model.layers.34.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 380 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 381 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 382 |
+
"model.layers.34.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 383 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 384 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 385 |
+
"model.layers.35.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 386 |
+
"model.layers.35.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 387 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
|
| 388 |
+
"model.layers.35.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 389 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 390 |
+
"model.layers.35.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 391 |
+
"model.layers.35.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 392 |
+
"model.layers.35.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 393 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 394 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 395 |
+
"model.layers.35.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 396 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 397 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 398 |
+
"model.layers.36.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 399 |
+
"model.layers.36.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 400 |
+
"model.layers.36.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
|
| 401 |
+
"model.layers.36.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 402 |
+
"model.layers.36.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 403 |
+
"model.layers.36.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 404 |
+
"model.layers.36.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 405 |
+
"model.layers.36.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 406 |
+
"model.layers.36.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 407 |
+
"model.layers.36.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 408 |
+
"model.layers.36.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 409 |
+
"model.layers.36.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 410 |
+
"model.layers.36.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 411 |
+
"model.layers.37.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 412 |
+
"model.layers.37.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 413 |
+
"model.layers.37.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
|
| 414 |
+
"model.layers.37.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 415 |
+
"model.layers.37.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 416 |
+
"model.layers.37.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 417 |
+
"model.layers.37.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 418 |
+
"model.layers.37.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 419 |
+
"model.layers.37.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 420 |
+
"model.layers.37.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 421 |
+
"model.layers.37.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 422 |
+
"model.layers.37.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 423 |
+
"model.layers.37.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 424 |
+
"model.layers.38.input_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 425 |
+
"model.layers.38.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 426 |
+
"model.layers.38.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
|
| 427 |
+
"model.layers.38.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 428 |
+
"model.layers.38.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 429 |
+
"model.layers.38.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 430 |
+
"model.layers.38.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 431 |
+
"model.layers.38.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 432 |
+
"model.layers.38.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 433 |
+
"model.layers.38.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 434 |
+
"model.layers.38.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 435 |
+
"model.layers.38.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 436 |
+
"model.layers.38.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 437 |
+
"model.layers.39.input_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 438 |
+
"model.layers.39.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 439 |
+
"model.layers.39.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
|
| 440 |
+
"model.layers.39.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 441 |
+
"model.layers.39.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 442 |
+
"model.layers.39.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 443 |
+
"model.layers.39.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 444 |
+
"model.layers.39.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 445 |
+
"model.layers.39.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 446 |
+
"model.layers.39.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 447 |
+
"model.layers.39.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 448 |
+
"model.layers.39.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 449 |
+
"model.layers.39.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 450 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 451 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 452 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 453 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 454 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 455 |
+
"model.layers.4.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 456 |
+
"model.layers.4.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 457 |
+
"model.layers.4.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 458 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 459 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 460 |
+
"model.layers.4.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 461 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 462 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 463 |
+
"model.layers.40.input_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 464 |
+
"model.layers.40.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 465 |
+
"model.layers.40.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
|
| 466 |
+
"model.layers.40.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 467 |
+
"model.layers.40.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 468 |
+
"model.layers.40.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 469 |
+
"model.layers.40.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 470 |
+
"model.layers.40.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 471 |
+
"model.layers.40.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 472 |
+
"model.layers.40.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 473 |
+
"model.layers.40.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 474 |
+
"model.layers.40.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 475 |
+
"model.layers.40.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 476 |
+
"model.layers.41.input_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 477 |
+
"model.layers.41.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 478 |
+
"model.layers.41.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
|
| 479 |
+
"model.layers.41.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 480 |
+
"model.layers.41.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 481 |
+
"model.layers.41.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 482 |
+
"model.layers.41.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 483 |
+
"model.layers.41.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 484 |
+
"model.layers.41.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 485 |
+
"model.layers.41.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 486 |
+
"model.layers.41.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 487 |
+
"model.layers.41.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 488 |
+
"model.layers.41.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 489 |
+
"model.layers.42.input_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 490 |
+
"model.layers.42.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 491 |
+
"model.layers.42.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
|
| 492 |
+
"model.layers.42.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 493 |
+
"model.layers.42.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 494 |
+
"model.layers.42.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 495 |
+
"model.layers.42.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 496 |
+
"model.layers.42.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 497 |
+
"model.layers.42.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 498 |
+
"model.layers.42.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 499 |
+
"model.layers.42.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 500 |
+
"model.layers.42.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 501 |
+
"model.layers.42.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 502 |
+
"model.layers.43.input_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 503 |
+
"model.layers.43.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 504 |
+
"model.layers.43.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
|
| 505 |
+
"model.layers.43.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 506 |
+
"model.layers.43.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 507 |
+
"model.layers.43.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 508 |
+
"model.layers.43.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 509 |
+
"model.layers.43.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 510 |
+
"model.layers.43.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 511 |
+
"model.layers.43.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 512 |
+
"model.layers.43.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 513 |
+
"model.layers.43.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 514 |
+
"model.layers.43.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 515 |
+
"model.layers.44.input_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 516 |
+
"model.layers.44.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 517 |
+
"model.layers.44.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
|
| 518 |
+
"model.layers.44.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 519 |
+
"model.layers.44.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 520 |
+
"model.layers.44.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 521 |
+
"model.layers.44.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 522 |
+
"model.layers.44.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 523 |
+
"model.layers.44.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 524 |
+
"model.layers.44.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 525 |
+
"model.layers.44.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 526 |
+
"model.layers.44.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 527 |
+
"model.layers.44.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 528 |
+
"model.layers.45.input_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 529 |
+
"model.layers.45.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 530 |
+
"model.layers.45.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
|
| 531 |
+
"model.layers.45.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 532 |
+
"model.layers.45.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 533 |
+
"model.layers.45.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 534 |
+
"model.layers.45.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 535 |
+
"model.layers.45.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 536 |
+
"model.layers.45.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 537 |
+
"model.layers.45.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 538 |
+
"model.layers.45.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 539 |
+
"model.layers.45.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 540 |
+
"model.layers.45.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 541 |
+
"model.layers.46.input_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 542 |
+
"model.layers.46.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 543 |
+
"model.layers.46.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
|
| 544 |
+
"model.layers.46.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 545 |
+
"model.layers.46.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 546 |
+
"model.layers.46.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 547 |
+
"model.layers.46.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 548 |
+
"model.layers.46.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 549 |
+
"model.layers.46.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 550 |
+
"model.layers.46.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 551 |
+
"model.layers.46.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 552 |
+
"model.layers.46.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 553 |
+
"model.layers.46.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 554 |
+
"model.layers.47.input_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 555 |
+
"model.layers.47.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 556 |
+
"model.layers.47.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
|
| 557 |
+
"model.layers.47.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 558 |
+
"model.layers.47.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 559 |
+
"model.layers.47.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 560 |
+
"model.layers.47.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 561 |
+
"model.layers.47.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 562 |
+
"model.layers.47.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 563 |
+
"model.layers.47.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 564 |
+
"model.layers.47.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 565 |
+
"model.layers.47.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 566 |
+
"model.layers.47.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 567 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 568 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 569 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 570 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 571 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 572 |
+
"model.layers.5.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 573 |
+
"model.layers.5.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 574 |
+
"model.layers.5.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 575 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 576 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 577 |
+
"model.layers.5.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 578 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 579 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 580 |
+
"model.layers.6.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 581 |
+
"model.layers.6.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 582 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
|
| 583 |
+
"model.layers.6.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 584 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 585 |
+
"model.layers.6.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 586 |
+
"model.layers.6.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 587 |
+
"model.layers.6.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 588 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 589 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 590 |
+
"model.layers.6.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 591 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 592 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 593 |
+
"model.layers.7.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 594 |
+
"model.layers.7.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 595 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
|
| 596 |
+
"model.layers.7.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 597 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 598 |
+
"model.layers.7.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 599 |
+
"model.layers.7.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 600 |
+
"model.layers.7.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 601 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 602 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 603 |
+
"model.layers.7.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 604 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 605 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 606 |
+
"model.layers.8.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 607 |
+
"model.layers.8.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 608 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
|
| 609 |
+
"model.layers.8.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 610 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 611 |
+
"model.layers.8.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 612 |
+
"model.layers.8.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 613 |
+
"model.layers.8.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 614 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 615 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 616 |
+
"model.layers.8.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 617 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 618 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 619 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 620 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 621 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
|
| 622 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 623 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 624 |
+
"model.layers.9.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 625 |
+
"model.layers.9.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 626 |
+
"model.layers.9.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 627 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 628 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 629 |
+
"model.layers.9.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 630 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 631 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 632 |
+
"model.norm.weight": "model-00005-of-00005.safetensors"
|
| 633 |
+
}
|
| 634 |
+
}
|
checkpoint-2500/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc3054d0eb873a2efdd73134dca9b892e9e0d844af1f606cb2574310b0b85f98
|
| 3 |
+
size 18355
|
checkpoint-2500/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a20c201038acb2b5be3712dad6f6fa43496cb4adb00a20e372deb568fe40db13
|
| 3 |
+
size 14645
|
checkpoint-2500/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd200143f139327b4d41bcb99ffeaa13b2acc11ded5b3dbab181a6ff2ce855d7
|
| 3 |
+
size 1465
|
checkpoint-2500/special_tokens_map.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"boi_token": "<start_of_image>",
|
| 3 |
+
"bos_token": {
|
| 4 |
+
"content": "<bos>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false
|
| 9 |
+
},
|
| 10 |
+
"eoi_token": "<end_of_image>",
|
| 11 |
+
"eos_token": {
|
| 12 |
+
"content": "<eos>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false
|
| 17 |
+
},
|
| 18 |
+
"image_token": "<image_soft_token>",
|
| 19 |
+
"pad_token": {
|
| 20 |
+
"content": "<pad>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false
|
| 25 |
+
},
|
| 26 |
+
"unk_token": {
|
| 27 |
+
"content": "<unk>",
|
| 28 |
+
"lstrip": false,
|
| 29 |
+
"normalized": false,
|
| 30 |
+
"rstrip": false,
|
| 31 |
+
"single_word": false
|
| 32 |
+
}
|
| 33 |
+
}
|
checkpoint-2500/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
|
| 3 |
+
size 33384568
|
checkpoint-2500/tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
|
| 3 |
+
size 4689074
|
checkpoint-2500/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-2500/trainer_state.json
ADDED
|
@@ -0,0 +1,3084 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.0,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 2500,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 1.2628081854432822,
|
| 14 |
+
"epoch": 0.008,
|
| 15 |
+
"grad_norm": 0.0179443359375,
|
| 16 |
+
"learning_rate": 1.8e-07,
|
| 17 |
+
"loss": 2.1855,
|
| 18 |
+
"mean_token_accuracy": 0.584391780383885,
|
| 19 |
+
"num_tokens": 138146.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 1.2761256650090218,
|
| 24 |
+
"epoch": 0.016,
|
| 25 |
+
"grad_norm": 0.0177001953125,
|
| 26 |
+
"learning_rate": 3.8e-07,
|
| 27 |
+
"loss": 2.2119,
|
| 28 |
+
"mean_token_accuracy": 0.5769438467919826,
|
| 29 |
+
"num_tokens": 280941.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 1.30821207202971,
|
| 34 |
+
"epoch": 0.024,
|
| 35 |
+
"grad_norm": 0.0079345703125,
|
| 36 |
+
"learning_rate": 5.800000000000001e-07,
|
| 37 |
+
"loss": 2.2252,
|
| 38 |
+
"mean_token_accuracy": 0.5782777238637209,
|
| 39 |
+
"num_tokens": 419127.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 1.2832397993654012,
|
| 44 |
+
"epoch": 0.032,
|
| 45 |
+
"grad_norm": 0.00787353515625,
|
| 46 |
+
"learning_rate": 7.8e-07,
|
| 47 |
+
"loss": 2.1845,
|
| 48 |
+
"mean_token_accuracy": 0.5787389608100056,
|
| 49 |
+
"num_tokens": 558056.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.281408105790615,
|
| 54 |
+
"epoch": 0.04,
|
| 55 |
+
"grad_norm": 0.0125732421875,
|
| 56 |
+
"learning_rate": 9.800000000000001e-07,
|
| 57 |
+
"loss": 2.2214,
|
| 58 |
+
"mean_token_accuracy": 0.5814869659021497,
|
| 59 |
+
"num_tokens": 697556.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 1.2824515115469695,
|
| 64 |
+
"epoch": 0.048,
|
| 65 |
+
"grad_norm": 0.0206298828125,
|
| 66 |
+
"learning_rate": 1.1800000000000001e-06,
|
| 67 |
+
"loss": 2.1897,
|
| 68 |
+
"mean_token_accuracy": 0.5798849314451218,
|
| 69 |
+
"num_tokens": 836753.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 1.2973103038966656,
|
| 74 |
+
"epoch": 0.056,
|
| 75 |
+
"grad_norm": 0.0216064453125,
|
| 76 |
+
"learning_rate": 1.3800000000000001e-06,
|
| 77 |
+
"loss": 2.2424,
|
| 78 |
+
"mean_token_accuracy": 0.5715558419004083,
|
| 79 |
+
"num_tokens": 981959.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 1.2914881024509668,
|
| 84 |
+
"epoch": 0.064,
|
| 85 |
+
"grad_norm": 0.00927734375,
|
| 86 |
+
"learning_rate": 1.5800000000000001e-06,
|
| 87 |
+
"loss": 2.2528,
|
| 88 |
+
"mean_token_accuracy": 0.5714382914826274,
|
| 89 |
+
"num_tokens": 1126446.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 1.2911656297743321,
|
| 94 |
+
"epoch": 0.072,
|
| 95 |
+
"grad_norm": 0.0145263671875,
|
| 96 |
+
"learning_rate": 1.7800000000000001e-06,
|
| 97 |
+
"loss": 2.2655,
|
| 98 |
+
"mean_token_accuracy": 0.5728934396989643,
|
| 99 |
+
"num_tokens": 1273905.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 1.3042505994439124,
|
| 104 |
+
"epoch": 0.08,
|
| 105 |
+
"grad_norm": 0.00927734375,
|
| 106 |
+
"learning_rate": 1.98e-06,
|
| 107 |
+
"loss": 2.2384,
|
| 108 |
+
"mean_token_accuracy": 0.574522521905601,
|
| 109 |
+
"num_tokens": 1413596.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.08,
|
| 114 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 115 |
+
"eval_coding_loss": 1.2625732421875,
|
| 116 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 117 |
+
"eval_coding_num_tokens": 1413596.0,
|
| 118 |
+
"eval_coding_runtime": 96.113,
|
| 119 |
+
"eval_coding_samples_per_second": 5.202,
|
| 120 |
+
"eval_coding_steps_per_second": 2.601,
|
| 121 |
+
"step": 100
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"epoch": 0.08,
|
| 125 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 126 |
+
"eval_math_loss": 2.2429049015045166,
|
| 127 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 128 |
+
"eval_math_num_tokens": 1413596.0,
|
| 129 |
+
"eval_math_runtime": 55.2867,
|
| 130 |
+
"eval_math_samples_per_second": 9.044,
|
| 131 |
+
"eval_math_steps_per_second": 4.522,
|
| 132 |
+
"step": 100
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"entropy": 1.2642712604254485,
|
| 136 |
+
"epoch": 0.088,
|
| 137 |
+
"grad_norm": 0.0072021484375,
|
| 138 |
+
"learning_rate": 2.1800000000000003e-06,
|
| 139 |
+
"loss": 2.1897,
|
| 140 |
+
"mean_token_accuracy": 0.5820998327806592,
|
| 141 |
+
"num_tokens": 1559450.0,
|
| 142 |
+
"step": 110
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"entropy": 1.3127624299377203,
|
| 146 |
+
"epoch": 0.096,
|
| 147 |
+
"grad_norm": 0.0101318359375,
|
| 148 |
+
"learning_rate": 2.38e-06,
|
| 149 |
+
"loss": 2.2696,
|
| 150 |
+
"mean_token_accuracy": 0.5712630080059171,
|
| 151 |
+
"num_tokens": 1701193.0,
|
| 152 |
+
"step": 120
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"entropy": 1.2562327686697246,
|
| 156 |
+
"epoch": 0.104,
|
| 157 |
+
"grad_norm": 0.0089111328125,
|
| 158 |
+
"learning_rate": 2.5800000000000003e-06,
|
| 159 |
+
"loss": 2.1593,
|
| 160 |
+
"mean_token_accuracy": 0.5853730095550418,
|
| 161 |
+
"num_tokens": 1840165.0,
|
| 162 |
+
"step": 130
|
| 163 |
+
},
|
| 164 |
+
{
|
| 165 |
+
"entropy": 1.3122376587241888,
|
| 166 |
+
"epoch": 0.112,
|
| 167 |
+
"grad_norm": 0.00982666015625,
|
| 168 |
+
"learning_rate": 2.7800000000000005e-06,
|
| 169 |
+
"loss": 2.272,
|
| 170 |
+
"mean_token_accuracy": 0.5697157179936767,
|
| 171 |
+
"num_tokens": 1979232.0,
|
| 172 |
+
"step": 140
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"entropy": 1.296381675079465,
|
| 176 |
+
"epoch": 0.12,
|
| 177 |
+
"grad_norm": 0.0084228515625,
|
| 178 |
+
"learning_rate": 2.9800000000000003e-06,
|
| 179 |
+
"loss": 2.2493,
|
| 180 |
+
"mean_token_accuracy": 0.5788527738302947,
|
| 181 |
+
"num_tokens": 2125815.0,
|
| 182 |
+
"step": 150
|
| 183 |
+
},
|
| 184 |
+
{
|
| 185 |
+
"entropy": 1.299617338180542,
|
| 186 |
+
"epoch": 0.128,
|
| 187 |
+
"grad_norm": 0.015380859375,
|
| 188 |
+
"learning_rate": 3.1800000000000005e-06,
|
| 189 |
+
"loss": 2.2113,
|
| 190 |
+
"mean_token_accuracy": 0.5759535003453493,
|
| 191 |
+
"num_tokens": 2274177.0,
|
| 192 |
+
"step": 160
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"entropy": 1.2860674735158681,
|
| 196 |
+
"epoch": 0.136,
|
| 197 |
+
"grad_norm": 0.00946044921875,
|
| 198 |
+
"learning_rate": 3.3800000000000007e-06,
|
| 199 |
+
"loss": 2.2092,
|
| 200 |
+
"mean_token_accuracy": 0.574743240699172,
|
| 201 |
+
"num_tokens": 2412435.0,
|
| 202 |
+
"step": 170
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"entropy": 1.299461904540658,
|
| 206 |
+
"epoch": 0.144,
|
| 207 |
+
"grad_norm": 0.0115966796875,
|
| 208 |
+
"learning_rate": 3.58e-06,
|
| 209 |
+
"loss": 2.1965,
|
| 210 |
+
"mean_token_accuracy": 0.5797095803543926,
|
| 211 |
+
"num_tokens": 2548445.0,
|
| 212 |
+
"step": 180
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"entropy": 1.259111713245511,
|
| 216 |
+
"epoch": 0.152,
|
| 217 |
+
"grad_norm": 0.0115966796875,
|
| 218 |
+
"learning_rate": 3.7800000000000002e-06,
|
| 219 |
+
"loss": 2.1452,
|
| 220 |
+
"mean_token_accuracy": 0.5854375848546625,
|
| 221 |
+
"num_tokens": 2686462.0,
|
| 222 |
+
"step": 190
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"entropy": 1.2716298930346965,
|
| 226 |
+
"epoch": 0.16,
|
| 227 |
+
"grad_norm": 0.014892578125,
|
| 228 |
+
"learning_rate": 3.980000000000001e-06,
|
| 229 |
+
"loss": 2.2284,
|
| 230 |
+
"mean_token_accuracy": 0.5798038769513368,
|
| 231 |
+
"num_tokens": 2824418.0,
|
| 232 |
+
"step": 200
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"epoch": 0.16,
|
| 236 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 237 |
+
"eval_coding_loss": 1.2625732421875,
|
| 238 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 239 |
+
"eval_coding_num_tokens": 2824418.0,
|
| 240 |
+
"eval_coding_runtime": 95.662,
|
| 241 |
+
"eval_coding_samples_per_second": 5.227,
|
| 242 |
+
"eval_coding_steps_per_second": 2.613,
|
| 243 |
+
"step": 200
|
| 244 |
+
},
|
| 245 |
+
{
|
| 246 |
+
"epoch": 0.16,
|
| 247 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 248 |
+
"eval_math_loss": 2.2429049015045166,
|
| 249 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 250 |
+
"eval_math_num_tokens": 2824418.0,
|
| 251 |
+
"eval_math_runtime": 55.266,
|
| 252 |
+
"eval_math_samples_per_second": 9.047,
|
| 253 |
+
"eval_math_steps_per_second": 4.524,
|
| 254 |
+
"step": 200
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"entropy": 1.29471963532269,
|
| 258 |
+
"epoch": 0.168,
|
| 259 |
+
"grad_norm": 0.021240234375,
|
| 260 |
+
"learning_rate": 4.18e-06,
|
| 261 |
+
"loss": 2.2605,
|
| 262 |
+
"mean_token_accuracy": 0.5726646112278104,
|
| 263 |
+
"num_tokens": 2966031.0,
|
| 264 |
+
"step": 210
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"entropy": 1.295415598154068,
|
| 268 |
+
"epoch": 0.176,
|
| 269 |
+
"grad_norm": 0.01519775390625,
|
| 270 |
+
"learning_rate": 4.38e-06,
|
| 271 |
+
"loss": 2.1967,
|
| 272 |
+
"mean_token_accuracy": 0.5751344438642263,
|
| 273 |
+
"num_tokens": 3110313.0,
|
| 274 |
+
"step": 220
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"entropy": 1.3239446703344584,
|
| 278 |
+
"epoch": 0.184,
|
| 279 |
+
"grad_norm": 0.0089111328125,
|
| 280 |
+
"learning_rate": 4.58e-06,
|
| 281 |
+
"loss": 2.2475,
|
| 282 |
+
"mean_token_accuracy": 0.5708544872701168,
|
| 283 |
+
"num_tokens": 3251139.0,
|
| 284 |
+
"step": 230
|
| 285 |
+
},
|
| 286 |
+
{
|
| 287 |
+
"entropy": 1.3012913078069688,
|
| 288 |
+
"epoch": 0.192,
|
| 289 |
+
"grad_norm": 0.015625,
|
| 290 |
+
"learning_rate": 4.78e-06,
|
| 291 |
+
"loss": 2.2591,
|
| 292 |
+
"mean_token_accuracy": 0.5751949936151505,
|
| 293 |
+
"num_tokens": 3394170.0,
|
| 294 |
+
"step": 240
|
| 295 |
+
},
|
| 296 |
+
{
|
| 297 |
+
"entropy": 1.2939962450414897,
|
| 298 |
+
"epoch": 0.2,
|
| 299 |
+
"grad_norm": 0.0081787109375,
|
| 300 |
+
"learning_rate": 4.980000000000001e-06,
|
| 301 |
+
"loss": 2.2271,
|
| 302 |
+
"mean_token_accuracy": 0.5751136729493738,
|
| 303 |
+
"num_tokens": 3533571.0,
|
| 304 |
+
"step": 250
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"entropy": 1.3175367139279843,
|
| 308 |
+
"epoch": 0.208,
|
| 309 |
+
"grad_norm": 0.0162353515625,
|
| 310 |
+
"learning_rate": 5.18e-06,
|
| 311 |
+
"loss": 2.2477,
|
| 312 |
+
"mean_token_accuracy": 0.5703525686636567,
|
| 313 |
+
"num_tokens": 3673600.0,
|
| 314 |
+
"step": 260
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"entropy": 1.2911786384880544,
|
| 318 |
+
"epoch": 0.216,
|
| 319 |
+
"grad_norm": 0.00897216796875,
|
| 320 |
+
"learning_rate": 5.380000000000001e-06,
|
| 321 |
+
"loss": 2.2607,
|
| 322 |
+
"mean_token_accuracy": 0.5701368801295758,
|
| 323 |
+
"num_tokens": 3817397.0,
|
| 324 |
+
"step": 270
|
| 325 |
+
},
|
| 326 |
+
{
|
| 327 |
+
"entropy": 1.312684351950884,
|
| 328 |
+
"epoch": 0.224,
|
| 329 |
+
"grad_norm": 0.012451171875,
|
| 330 |
+
"learning_rate": 5.580000000000001e-06,
|
| 331 |
+
"loss": 2.2961,
|
| 332 |
+
"mean_token_accuracy": 0.5682467905804515,
|
| 333 |
+
"num_tokens": 3953732.0,
|
| 334 |
+
"step": 280
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"entropy": 1.276525003835559,
|
| 338 |
+
"epoch": 0.232,
|
| 339 |
+
"grad_norm": 0.009033203125,
|
| 340 |
+
"learning_rate": 5.78e-06,
|
| 341 |
+
"loss": 2.2433,
|
| 342 |
+
"mean_token_accuracy": 0.5770688287913799,
|
| 343 |
+
"num_tokens": 4098989.0,
|
| 344 |
+
"step": 290
|
| 345 |
+
},
|
| 346 |
+
{
|
| 347 |
+
"entropy": 1.2831152826547623,
|
| 348 |
+
"epoch": 0.24,
|
| 349 |
+
"grad_norm": 0.008056640625,
|
| 350 |
+
"learning_rate": 5.98e-06,
|
| 351 |
+
"loss": 2.2829,
|
| 352 |
+
"mean_token_accuracy": 0.5744210470467805,
|
| 353 |
+
"num_tokens": 4243655.0,
|
| 354 |
+
"step": 300
|
| 355 |
+
},
|
| 356 |
+
{
|
| 357 |
+
"epoch": 0.24,
|
| 358 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 359 |
+
"eval_coding_loss": 1.2625732421875,
|
| 360 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 361 |
+
"eval_coding_num_tokens": 4243655.0,
|
| 362 |
+
"eval_coding_runtime": 95.6217,
|
| 363 |
+
"eval_coding_samples_per_second": 5.229,
|
| 364 |
+
"eval_coding_steps_per_second": 2.614,
|
| 365 |
+
"step": 300
|
| 366 |
+
},
|
| 367 |
+
{
|
| 368 |
+
"epoch": 0.24,
|
| 369 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 370 |
+
"eval_math_loss": 2.2429049015045166,
|
| 371 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 372 |
+
"eval_math_num_tokens": 4243655.0,
|
| 373 |
+
"eval_math_runtime": 55.2698,
|
| 374 |
+
"eval_math_samples_per_second": 9.047,
|
| 375 |
+
"eval_math_steps_per_second": 4.523,
|
| 376 |
+
"step": 300
|
| 377 |
+
},
|
| 378 |
+
{
|
| 379 |
+
"entropy": 1.2523589238524437,
|
| 380 |
+
"epoch": 0.248,
|
| 381 |
+
"grad_norm": 0.01129150390625,
|
| 382 |
+
"learning_rate": 6.18e-06,
|
| 383 |
+
"loss": 2.1458,
|
| 384 |
+
"mean_token_accuracy": 0.5875966742634773,
|
| 385 |
+
"num_tokens": 4387651.0,
|
| 386 |
+
"step": 310
|
| 387 |
+
},
|
| 388 |
+
{
|
| 389 |
+
"entropy": 1.2836483523249627,
|
| 390 |
+
"epoch": 0.256,
|
| 391 |
+
"grad_norm": 0.01708984375,
|
| 392 |
+
"learning_rate": 6.380000000000001e-06,
|
| 393 |
+
"loss": 2.2171,
|
| 394 |
+
"mean_token_accuracy": 0.5771771775558591,
|
| 395 |
+
"num_tokens": 4531471.0,
|
| 396 |
+
"step": 320
|
| 397 |
+
},
|
| 398 |
+
{
|
| 399 |
+
"entropy": 1.2900966588407754,
|
| 400 |
+
"epoch": 0.264,
|
| 401 |
+
"grad_norm": 0.0172119140625,
|
| 402 |
+
"learning_rate": 6.5800000000000005e-06,
|
| 403 |
+
"loss": 2.2279,
|
| 404 |
+
"mean_token_accuracy": 0.577950318530202,
|
| 405 |
+
"num_tokens": 4669389.0,
|
| 406 |
+
"step": 330
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"entropy": 1.2982714001089335,
|
| 410 |
+
"epoch": 0.272,
|
| 411 |
+
"grad_norm": 0.00897216796875,
|
| 412 |
+
"learning_rate": 6.780000000000001e-06,
|
| 413 |
+
"loss": 2.2464,
|
| 414 |
+
"mean_token_accuracy": 0.5756928954273463,
|
| 415 |
+
"num_tokens": 4810284.0,
|
| 416 |
+
"step": 340
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"entropy": 1.278377178311348,
|
| 420 |
+
"epoch": 0.28,
|
| 421 |
+
"grad_norm": 0.00616455078125,
|
| 422 |
+
"learning_rate": 6.98e-06,
|
| 423 |
+
"loss": 2.172,
|
| 424 |
+
"mean_token_accuracy": 0.5843851236626506,
|
| 425 |
+
"num_tokens": 4955375.0,
|
| 426 |
+
"step": 350
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"entropy": 1.2722328055649996,
|
| 430 |
+
"epoch": 0.288,
|
| 431 |
+
"grad_norm": 0.015869140625,
|
| 432 |
+
"learning_rate": 7.180000000000001e-06,
|
| 433 |
+
"loss": 2.2143,
|
| 434 |
+
"mean_token_accuracy": 0.5805238038301468,
|
| 435 |
+
"num_tokens": 5095104.0,
|
| 436 |
+
"step": 360
|
| 437 |
+
},
|
| 438 |
+
{
|
| 439 |
+
"entropy": 1.2866631541401148,
|
| 440 |
+
"epoch": 0.296,
|
| 441 |
+
"grad_norm": 0.01318359375,
|
| 442 |
+
"learning_rate": 7.3800000000000005e-06,
|
| 443 |
+
"loss": 2.2041,
|
| 444 |
+
"mean_token_accuracy": 0.5798180354759097,
|
| 445 |
+
"num_tokens": 5240988.0,
|
| 446 |
+
"step": 370
|
| 447 |
+
},
|
| 448 |
+
{
|
| 449 |
+
"entropy": 1.2868602696806193,
|
| 450 |
+
"epoch": 0.304,
|
| 451 |
+
"grad_norm": 0.0230712890625,
|
| 452 |
+
"learning_rate": 7.58e-06,
|
| 453 |
+
"loss": 2.2193,
|
| 454 |
+
"mean_token_accuracy": 0.578575404547155,
|
| 455 |
+
"num_tokens": 5383732.0,
|
| 456 |
+
"step": 380
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"entropy": 1.3216422777622938,
|
| 460 |
+
"epoch": 0.312,
|
| 461 |
+
"grad_norm": 0.0115966796875,
|
| 462 |
+
"learning_rate": 7.78e-06,
|
| 463 |
+
"loss": 2.2847,
|
| 464 |
+
"mean_token_accuracy": 0.5677898772060871,
|
| 465 |
+
"num_tokens": 5530666.0,
|
| 466 |
+
"step": 390
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"entropy": 1.2590181913226843,
|
| 470 |
+
"epoch": 0.32,
|
| 471 |
+
"grad_norm": 0.01171875,
|
| 472 |
+
"learning_rate": 7.980000000000002e-06,
|
| 473 |
+
"loss": 2.1719,
|
| 474 |
+
"mean_token_accuracy": 0.5848465450108051,
|
| 475 |
+
"num_tokens": 5676334.0,
|
| 476 |
+
"step": 400
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"epoch": 0.32,
|
| 480 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 481 |
+
"eval_coding_loss": 1.2625732421875,
|
| 482 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 483 |
+
"eval_coding_num_tokens": 5676334.0,
|
| 484 |
+
"eval_coding_runtime": 95.6468,
|
| 485 |
+
"eval_coding_samples_per_second": 5.228,
|
| 486 |
+
"eval_coding_steps_per_second": 2.614,
|
| 487 |
+
"step": 400
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.32,
|
| 491 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 492 |
+
"eval_math_loss": 2.2429049015045166,
|
| 493 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 494 |
+
"eval_math_num_tokens": 5676334.0,
|
| 495 |
+
"eval_math_runtime": 55.2877,
|
| 496 |
+
"eval_math_samples_per_second": 9.044,
|
| 497 |
+
"eval_math_steps_per_second": 4.522,
|
| 498 |
+
"step": 400
|
| 499 |
+
},
|
| 500 |
+
{
|
| 501 |
+
"entropy": 1.3136477686464787,
|
| 502 |
+
"epoch": 0.328,
|
| 503 |
+
"grad_norm": 0.009521484375,
|
| 504 |
+
"learning_rate": 8.18e-06,
|
| 505 |
+
"loss": 2.2817,
|
| 506 |
+
"mean_token_accuracy": 0.5644237477332353,
|
| 507 |
+
"num_tokens": 5816488.0,
|
| 508 |
+
"step": 410
|
| 509 |
+
},
|
| 510 |
+
{
|
| 511 |
+
"entropy": 1.296512581780553,
|
| 512 |
+
"epoch": 0.336,
|
| 513 |
+
"grad_norm": 0.008544921875,
|
| 514 |
+
"learning_rate": 8.380000000000001e-06,
|
| 515 |
+
"loss": 2.2127,
|
| 516 |
+
"mean_token_accuracy": 0.5752231312915683,
|
| 517 |
+
"num_tokens": 5958480.0,
|
| 518 |
+
"step": 420
|
| 519 |
+
},
|
| 520 |
+
{
|
| 521 |
+
"entropy": 1.2964510951191186,
|
| 522 |
+
"epoch": 0.344,
|
| 523 |
+
"grad_norm": 0.00885009765625,
|
| 524 |
+
"learning_rate": 8.580000000000001e-06,
|
| 525 |
+
"loss": 2.2215,
|
| 526 |
+
"mean_token_accuracy": 0.5778196537867188,
|
| 527 |
+
"num_tokens": 6102081.0,
|
| 528 |
+
"step": 430
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"entropy": 1.2612504959106445,
|
| 532 |
+
"epoch": 0.352,
|
| 533 |
+
"grad_norm": 0.0084228515625,
|
| 534 |
+
"learning_rate": 8.78e-06,
|
| 535 |
+
"loss": 2.1833,
|
| 536 |
+
"mean_token_accuracy": 0.5839220907539129,
|
| 537 |
+
"num_tokens": 6242161.0,
|
| 538 |
+
"step": 440
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"entropy": 1.2856441132724286,
|
| 542 |
+
"epoch": 0.36,
|
| 543 |
+
"grad_norm": 0.0177001953125,
|
| 544 |
+
"learning_rate": 8.98e-06,
|
| 545 |
+
"loss": 2.2414,
|
| 546 |
+
"mean_token_accuracy": 0.5754987616091967,
|
| 547 |
+
"num_tokens": 6377327.0,
|
| 548 |
+
"step": 450
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"entropy": 1.288279192149639,
|
| 552 |
+
"epoch": 0.368,
|
| 553 |
+
"grad_norm": 0.0111083984375,
|
| 554 |
+
"learning_rate": 9.180000000000002e-06,
|
| 555 |
+
"loss": 2.1968,
|
| 556 |
+
"mean_token_accuracy": 0.580965013988316,
|
| 557 |
+
"num_tokens": 6523679.0,
|
| 558 |
+
"step": 460
|
| 559 |
+
},
|
| 560 |
+
{
|
| 561 |
+
"entropy": 1.28649943433702,
|
| 562 |
+
"epoch": 0.376,
|
| 563 |
+
"grad_norm": 0.007659912109375,
|
| 564 |
+
"learning_rate": 9.38e-06,
|
| 565 |
+
"loss": 2.2039,
|
| 566 |
+
"mean_token_accuracy": 0.5775518488138914,
|
| 567 |
+
"num_tokens": 6669278.0,
|
| 568 |
+
"step": 470
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"entropy": 1.2801726717501878,
|
| 572 |
+
"epoch": 0.384,
|
| 573 |
+
"grad_norm": 0.01068115234375,
|
| 574 |
+
"learning_rate": 9.58e-06,
|
| 575 |
+
"loss": 2.1868,
|
| 576 |
+
"mean_token_accuracy": 0.5841207258403301,
|
| 577 |
+
"num_tokens": 6810978.0,
|
| 578 |
+
"step": 480
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"entropy": 1.3082288071513175,
|
| 582 |
+
"epoch": 0.392,
|
| 583 |
+
"grad_norm": 0.01025390625,
|
| 584 |
+
"learning_rate": 9.780000000000001e-06,
|
| 585 |
+
"loss": 2.259,
|
| 586 |
+
"mean_token_accuracy": 0.5713578343391419,
|
| 587 |
+
"num_tokens": 6953929.0,
|
| 588 |
+
"step": 490
|
| 589 |
+
},
|
| 590 |
+
{
|
| 591 |
+
"entropy": 1.3287261452525854,
|
| 592 |
+
"epoch": 0.4,
|
| 593 |
+
"grad_norm": 0.008056640625,
|
| 594 |
+
"learning_rate": 9.980000000000001e-06,
|
| 595 |
+
"loss": 2.2733,
|
| 596 |
+
"mean_token_accuracy": 0.5687045747414231,
|
| 597 |
+
"num_tokens": 7096903.0,
|
| 598 |
+
"step": 500
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.4,
|
| 602 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 603 |
+
"eval_coding_loss": 1.2625732421875,
|
| 604 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 605 |
+
"eval_coding_num_tokens": 7096903.0,
|
| 606 |
+
"eval_coding_runtime": 95.6459,
|
| 607 |
+
"eval_coding_samples_per_second": 5.228,
|
| 608 |
+
"eval_coding_steps_per_second": 2.614,
|
| 609 |
+
"step": 500
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"epoch": 0.4,
|
| 613 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 614 |
+
"eval_math_loss": 2.2429049015045166,
|
| 615 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 616 |
+
"eval_math_num_tokens": 7096903.0,
|
| 617 |
+
"eval_math_runtime": 54.9641,
|
| 618 |
+
"eval_math_samples_per_second": 9.097,
|
| 619 |
+
"eval_math_steps_per_second": 4.548,
|
| 620 |
+
"step": 500
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 1.294243635982275,
|
| 624 |
+
"epoch": 0.408,
|
| 625 |
+
"grad_norm": 0.016845703125,
|
| 626 |
+
"learning_rate": 1.018e-05,
|
| 627 |
+
"loss": 2.2428,
|
| 628 |
+
"mean_token_accuracy": 0.5740567265078426,
|
| 629 |
+
"num_tokens": 7239071.0,
|
| 630 |
+
"step": 510
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 1.293457629531622,
|
| 634 |
+
"epoch": 0.416,
|
| 635 |
+
"grad_norm": 0.0140380859375,
|
| 636 |
+
"learning_rate": 1.038e-05,
|
| 637 |
+
"loss": 2.2374,
|
| 638 |
+
"mean_token_accuracy": 0.5770649960264563,
|
| 639 |
+
"num_tokens": 7377181.0,
|
| 640 |
+
"step": 520
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 1.29749961681664,
|
| 644 |
+
"epoch": 0.424,
|
| 645 |
+
"grad_norm": 0.01806640625,
|
| 646 |
+
"learning_rate": 1.0580000000000002e-05,
|
| 647 |
+
"loss": 2.1821,
|
| 648 |
+
"mean_token_accuracy": 0.5780813867226243,
|
| 649 |
+
"num_tokens": 7513035.0,
|
| 650 |
+
"step": 530
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 1.2768937222659589,
|
| 654 |
+
"epoch": 0.432,
|
| 655 |
+
"grad_norm": 0.00970458984375,
|
| 656 |
+
"learning_rate": 1.0780000000000002e-05,
|
| 657 |
+
"loss": 2.2319,
|
| 658 |
+
"mean_token_accuracy": 0.5752488367259503,
|
| 659 |
+
"num_tokens": 7650523.0,
|
| 660 |
+
"step": 540
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 1.27384728230536,
|
| 664 |
+
"epoch": 0.44,
|
| 665 |
+
"grad_norm": 0.0169677734375,
|
| 666 |
+
"learning_rate": 1.0980000000000002e-05,
|
| 667 |
+
"loss": 2.1808,
|
| 668 |
+
"mean_token_accuracy": 0.5803057106211782,
|
| 669 |
+
"num_tokens": 7794006.0,
|
| 670 |
+
"step": 550
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 1.2649936627596616,
|
| 674 |
+
"epoch": 0.448,
|
| 675 |
+
"grad_norm": 0.00933837890625,
|
| 676 |
+
"learning_rate": 1.1180000000000001e-05,
|
| 677 |
+
"loss": 2.1932,
|
| 678 |
+
"mean_token_accuracy": 0.5795159580186009,
|
| 679 |
+
"num_tokens": 7936788.0,
|
| 680 |
+
"step": 560
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 1.2891030061990023,
|
| 684 |
+
"epoch": 0.456,
|
| 685 |
+
"grad_norm": 0.00909423828125,
|
| 686 |
+
"learning_rate": 1.138e-05,
|
| 687 |
+
"loss": 2.2876,
|
| 688 |
+
"mean_token_accuracy": 0.5727174270898103,
|
| 689 |
+
"num_tokens": 8081035.0,
|
| 690 |
+
"step": 570
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 1.3052824169397355,
|
| 694 |
+
"epoch": 0.464,
|
| 695 |
+
"grad_norm": 0.0169677734375,
|
| 696 |
+
"learning_rate": 1.1580000000000001e-05,
|
| 697 |
+
"loss": 2.2796,
|
| 698 |
+
"mean_token_accuracy": 0.5737911343574524,
|
| 699 |
+
"num_tokens": 8223147.0,
|
| 700 |
+
"step": 580
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 1.2902213044464588,
|
| 704 |
+
"epoch": 0.472,
|
| 705 |
+
"grad_norm": 0.008544921875,
|
| 706 |
+
"learning_rate": 1.178e-05,
|
| 707 |
+
"loss": 2.2199,
|
| 708 |
+
"mean_token_accuracy": 0.5761593583971262,
|
| 709 |
+
"num_tokens": 8367380.0,
|
| 710 |
+
"step": 590
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 1.2913669254630804,
|
| 714 |
+
"epoch": 0.48,
|
| 715 |
+
"grad_norm": 0.0157470703125,
|
| 716 |
+
"learning_rate": 1.198e-05,
|
| 717 |
+
"loss": 2.2032,
|
| 718 |
+
"mean_token_accuracy": 0.581071512401104,
|
| 719 |
+
"num_tokens": 8506030.0,
|
| 720 |
+
"step": 600
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"epoch": 0.48,
|
| 724 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 725 |
+
"eval_coding_loss": 1.2625732421875,
|
| 726 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 727 |
+
"eval_coding_num_tokens": 8506030.0,
|
| 728 |
+
"eval_coding_runtime": 95.6191,
|
| 729 |
+
"eval_coding_samples_per_second": 5.229,
|
| 730 |
+
"eval_coding_steps_per_second": 2.615,
|
| 731 |
+
"step": 600
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 0.48,
|
| 735 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 736 |
+
"eval_math_loss": 2.2429049015045166,
|
| 737 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 738 |
+
"eval_math_num_tokens": 8506030.0,
|
| 739 |
+
"eval_math_runtime": 55.258,
|
| 740 |
+
"eval_math_samples_per_second": 9.048,
|
| 741 |
+
"eval_math_steps_per_second": 4.524,
|
| 742 |
+
"step": 600
|
| 743 |
+
},
|
| 744 |
+
{
|
| 745 |
+
"entropy": 1.2780281711369752,
|
| 746 |
+
"epoch": 0.488,
|
| 747 |
+
"grad_norm": 0.0093994140625,
|
| 748 |
+
"learning_rate": 1.218e-05,
|
| 749 |
+
"loss": 2.1848,
|
| 750 |
+
"mean_token_accuracy": 0.5809735087677836,
|
| 751 |
+
"num_tokens": 8646384.0,
|
| 752 |
+
"step": 610
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"entropy": 1.2823347095400095,
|
| 756 |
+
"epoch": 0.496,
|
| 757 |
+
"grad_norm": 0.0125732421875,
|
| 758 |
+
"learning_rate": 1.2380000000000002e-05,
|
| 759 |
+
"loss": 2.2158,
|
| 760 |
+
"mean_token_accuracy": 0.5798389609903097,
|
| 761 |
+
"num_tokens": 8788726.0,
|
| 762 |
+
"step": 620
|
| 763 |
+
},
|
| 764 |
+
{
|
| 765 |
+
"entropy": 1.3198146648705005,
|
| 766 |
+
"epoch": 0.504,
|
| 767 |
+
"grad_norm": 0.00946044921875,
|
| 768 |
+
"learning_rate": 1.2580000000000002e-05,
|
| 769 |
+
"loss": 2.301,
|
| 770 |
+
"mean_token_accuracy": 0.5685374505817891,
|
| 771 |
+
"num_tokens": 8934959.0,
|
| 772 |
+
"step": 630
|
| 773 |
+
},
|
| 774 |
+
{
|
| 775 |
+
"entropy": 1.2555946599692107,
|
| 776 |
+
"epoch": 0.512,
|
| 777 |
+
"grad_norm": 0.0177001953125,
|
| 778 |
+
"learning_rate": 1.2780000000000001e-05,
|
| 779 |
+
"loss": 2.1431,
|
| 780 |
+
"mean_token_accuracy": 0.589201102592051,
|
| 781 |
+
"num_tokens": 9078039.0,
|
| 782 |
+
"step": 640
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"entropy": 1.2702158033847808,
|
| 786 |
+
"epoch": 0.52,
|
| 787 |
+
"grad_norm": 0.024169921875,
|
| 788 |
+
"learning_rate": 1.2980000000000001e-05,
|
| 789 |
+
"loss": 2.1965,
|
| 790 |
+
"mean_token_accuracy": 0.5821724396198988,
|
| 791 |
+
"num_tokens": 9220298.0,
|
| 792 |
+
"step": 650
|
| 793 |
+
},
|
| 794 |
+
{
|
| 795 |
+
"entropy": 1.277011101320386,
|
| 796 |
+
"epoch": 0.528,
|
| 797 |
+
"grad_norm": 0.0118408203125,
|
| 798 |
+
"learning_rate": 1.3180000000000001e-05,
|
| 799 |
+
"loss": 2.2097,
|
| 800 |
+
"mean_token_accuracy": 0.5796491207554937,
|
| 801 |
+
"num_tokens": 9373860.0,
|
| 802 |
+
"step": 660
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"entropy": 1.3105232425034046,
|
| 806 |
+
"epoch": 0.536,
|
| 807 |
+
"grad_norm": 0.00811767578125,
|
| 808 |
+
"learning_rate": 1.3380000000000002e-05,
|
| 809 |
+
"loss": 2.2839,
|
| 810 |
+
"mean_token_accuracy": 0.5706269716843962,
|
| 811 |
+
"num_tokens": 9515962.0,
|
| 812 |
+
"step": 670
|
| 813 |
+
},
|
| 814 |
+
{
|
| 815 |
+
"entropy": 1.2719210147857667,
|
| 816 |
+
"epoch": 0.544,
|
| 817 |
+
"grad_norm": 0.011474609375,
|
| 818 |
+
"learning_rate": 1.3580000000000002e-05,
|
| 819 |
+
"loss": 2.2322,
|
| 820 |
+
"mean_token_accuracy": 0.5780333954840898,
|
| 821 |
+
"num_tokens": 9660940.0,
|
| 822 |
+
"step": 680
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"entropy": 1.336498522385955,
|
| 826 |
+
"epoch": 0.552,
|
| 827 |
+
"grad_norm": 0.00921630859375,
|
| 828 |
+
"learning_rate": 1.378e-05,
|
| 829 |
+
"loss": 2.2697,
|
| 830 |
+
"mean_token_accuracy": 0.5707717033103108,
|
| 831 |
+
"num_tokens": 9793170.0,
|
| 832 |
+
"step": 690
|
| 833 |
+
},
|
| 834 |
+
{
|
| 835 |
+
"entropy": 1.2782492753118277,
|
| 836 |
+
"epoch": 0.56,
|
| 837 |
+
"grad_norm": 0.00927734375,
|
| 838 |
+
"learning_rate": 1.398e-05,
|
| 839 |
+
"loss": 2.1596,
|
| 840 |
+
"mean_token_accuracy": 0.583821403235197,
|
| 841 |
+
"num_tokens": 9932302.0,
|
| 842 |
+
"step": 700
|
| 843 |
+
},
|
| 844 |
+
{
|
| 845 |
+
"epoch": 0.56,
|
| 846 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 847 |
+
"eval_coding_loss": 1.2625732421875,
|
| 848 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 849 |
+
"eval_coding_num_tokens": 9932302.0,
|
| 850 |
+
"eval_coding_runtime": 95.6281,
|
| 851 |
+
"eval_coding_samples_per_second": 5.229,
|
| 852 |
+
"eval_coding_steps_per_second": 2.614,
|
| 853 |
+
"step": 700
|
| 854 |
+
},
|
| 855 |
+
{
|
| 856 |
+
"epoch": 0.56,
|
| 857 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 858 |
+
"eval_math_loss": 2.2429049015045166,
|
| 859 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 860 |
+
"eval_math_num_tokens": 9932302.0,
|
| 861 |
+
"eval_math_runtime": 55.2345,
|
| 862 |
+
"eval_math_samples_per_second": 9.052,
|
| 863 |
+
"eval_math_steps_per_second": 4.526,
|
| 864 |
+
"step": 700
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"entropy": 1.2765720319002867,
|
| 868 |
+
"epoch": 0.568,
|
| 869 |
+
"grad_norm": 0.0135498046875,
|
| 870 |
+
"learning_rate": 1.418e-05,
|
| 871 |
+
"loss": 2.1618,
|
| 872 |
+
"mean_token_accuracy": 0.5836544273421168,
|
| 873 |
+
"num_tokens": 10072362.0,
|
| 874 |
+
"step": 710
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"entropy": 1.3300136230885982,
|
| 878 |
+
"epoch": 0.576,
|
| 879 |
+
"grad_norm": 0.0101318359375,
|
| 880 |
+
"learning_rate": 1.4380000000000001e-05,
|
| 881 |
+
"loss": 2.3456,
|
| 882 |
+
"mean_token_accuracy": 0.5648340210318565,
|
| 883 |
+
"num_tokens": 10215462.0,
|
| 884 |
+
"step": 720
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"entropy": 1.2994835320860147,
|
| 888 |
+
"epoch": 0.584,
|
| 889 |
+
"grad_norm": 0.01416015625,
|
| 890 |
+
"learning_rate": 1.4580000000000001e-05,
|
| 891 |
+
"loss": 2.2414,
|
| 892 |
+
"mean_token_accuracy": 0.5734376270323992,
|
| 893 |
+
"num_tokens": 10354952.0,
|
| 894 |
+
"step": 730
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"entropy": 1.2754272140562535,
|
| 898 |
+
"epoch": 0.592,
|
| 899 |
+
"grad_norm": 0.01361083984375,
|
| 900 |
+
"learning_rate": 1.478e-05,
|
| 901 |
+
"loss": 2.1968,
|
| 902 |
+
"mean_token_accuracy": 0.5793214218690992,
|
| 903 |
+
"num_tokens": 10504396.0,
|
| 904 |
+
"step": 740
|
| 905 |
+
},
|
| 906 |
+
{
|
| 907 |
+
"entropy": 1.2948825549334289,
|
| 908 |
+
"epoch": 0.6,
|
| 909 |
+
"grad_norm": 0.0167236328125,
|
| 910 |
+
"learning_rate": 1.498e-05,
|
| 911 |
+
"loss": 2.209,
|
| 912 |
+
"mean_token_accuracy": 0.5778197368606925,
|
| 913 |
+
"num_tokens": 10644641.0,
|
| 914 |
+
"step": 750
|
| 915 |
+
},
|
| 916 |
+
{
|
| 917 |
+
"entropy": 1.309036424010992,
|
| 918 |
+
"epoch": 0.608,
|
| 919 |
+
"grad_norm": 0.0142822265625,
|
| 920 |
+
"learning_rate": 1.5180000000000002e-05,
|
| 921 |
+
"loss": 2.2825,
|
| 922 |
+
"mean_token_accuracy": 0.5746870728209614,
|
| 923 |
+
"num_tokens": 10793126.0,
|
| 924 |
+
"step": 760
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"entropy": 1.2668032895773649,
|
| 928 |
+
"epoch": 0.616,
|
| 929 |
+
"grad_norm": 0.01904296875,
|
| 930 |
+
"learning_rate": 1.5380000000000002e-05,
|
| 931 |
+
"loss": 2.1989,
|
| 932 |
+
"mean_token_accuracy": 0.5822413913905621,
|
| 933 |
+
"num_tokens": 10941399.0,
|
| 934 |
+
"step": 770
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"entropy": 1.2946851935237647,
|
| 938 |
+
"epoch": 0.624,
|
| 939 |
+
"grad_norm": 0.0086669921875,
|
| 940 |
+
"learning_rate": 1.5580000000000003e-05,
|
| 941 |
+
"loss": 2.2376,
|
| 942 |
+
"mean_token_accuracy": 0.574727876111865,
|
| 943 |
+
"num_tokens": 11081768.0,
|
| 944 |
+
"step": 780
|
| 945 |
+
},
|
| 946 |
+
{
|
| 947 |
+
"entropy": 1.2720156278461219,
|
| 948 |
+
"epoch": 0.632,
|
| 949 |
+
"grad_norm": 0.00726318359375,
|
| 950 |
+
"learning_rate": 1.578e-05,
|
| 951 |
+
"loss": 2.2091,
|
| 952 |
+
"mean_token_accuracy": 0.5791729586198926,
|
| 953 |
+
"num_tokens": 11226419.0,
|
| 954 |
+
"step": 790
|
| 955 |
+
},
|
| 956 |
+
{
|
| 957 |
+
"entropy": 1.2966302383691073,
|
| 958 |
+
"epoch": 0.64,
|
| 959 |
+
"grad_norm": 0.0103759765625,
|
| 960 |
+
"learning_rate": 1.5980000000000003e-05,
|
| 961 |
+
"loss": 2.2476,
|
| 962 |
+
"mean_token_accuracy": 0.5757431708276272,
|
| 963 |
+
"num_tokens": 11370320.0,
|
| 964 |
+
"step": 800
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 0.64,
|
| 968 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 969 |
+
"eval_coding_loss": 1.2625732421875,
|
| 970 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 971 |
+
"eval_coding_num_tokens": 11370320.0,
|
| 972 |
+
"eval_coding_runtime": 95.6426,
|
| 973 |
+
"eval_coding_samples_per_second": 5.228,
|
| 974 |
+
"eval_coding_steps_per_second": 2.614,
|
| 975 |
+
"step": 800
|
| 976 |
+
},
|
| 977 |
+
{
|
| 978 |
+
"epoch": 0.64,
|
| 979 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 980 |
+
"eval_math_loss": 2.2429049015045166,
|
| 981 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 982 |
+
"eval_math_num_tokens": 11370320.0,
|
| 983 |
+
"eval_math_runtime": 55.2405,
|
| 984 |
+
"eval_math_samples_per_second": 9.051,
|
| 985 |
+
"eval_math_steps_per_second": 4.526,
|
| 986 |
+
"step": 800
|
| 987 |
+
},
|
| 988 |
+
{
|
| 989 |
+
"entropy": 1.2639863461256027,
|
| 990 |
+
"epoch": 0.648,
|
| 991 |
+
"grad_norm": 0.01806640625,
|
| 992 |
+
"learning_rate": 1.618e-05,
|
| 993 |
+
"loss": 2.2448,
|
| 994 |
+
"mean_token_accuracy": 0.5776080982759595,
|
| 995 |
+
"num_tokens": 11515332.0,
|
| 996 |
+
"step": 810
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"entropy": 1.2712122540920974,
|
| 1000 |
+
"epoch": 0.656,
|
| 1001 |
+
"grad_norm": 0.01318359375,
|
| 1002 |
+
"learning_rate": 1.638e-05,
|
| 1003 |
+
"loss": 2.1846,
|
| 1004 |
+
"mean_token_accuracy": 0.5818307081237435,
|
| 1005 |
+
"num_tokens": 11657835.0,
|
| 1006 |
+
"step": 820
|
| 1007 |
+
},
|
| 1008 |
+
{
|
| 1009 |
+
"entropy": 1.3265905980020762,
|
| 1010 |
+
"epoch": 0.664,
|
| 1011 |
+
"grad_norm": 0.01007080078125,
|
| 1012 |
+
"learning_rate": 1.658e-05,
|
| 1013 |
+
"loss": 2.2425,
|
| 1014 |
+
"mean_token_accuracy": 0.5686553552746773,
|
| 1015 |
+
"num_tokens": 11799325.0,
|
| 1016 |
+
"step": 830
|
| 1017 |
+
},
|
| 1018 |
+
{
|
| 1019 |
+
"entropy": 1.291335643082857,
|
| 1020 |
+
"epoch": 0.672,
|
| 1021 |
+
"grad_norm": 0.0152587890625,
|
| 1022 |
+
"learning_rate": 1.6780000000000002e-05,
|
| 1023 |
+
"loss": 2.2767,
|
| 1024 |
+
"mean_token_accuracy": 0.5738575926050544,
|
| 1025 |
+
"num_tokens": 11949262.0,
|
| 1026 |
+
"step": 840
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"entropy": 1.2961845736950637,
|
| 1030 |
+
"epoch": 0.68,
|
| 1031 |
+
"grad_norm": 0.0164794921875,
|
| 1032 |
+
"learning_rate": 1.698e-05,
|
| 1033 |
+
"loss": 2.2309,
|
| 1034 |
+
"mean_token_accuracy": 0.5745207356289029,
|
| 1035 |
+
"num_tokens": 12090029.0,
|
| 1036 |
+
"step": 850
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"entropy": 1.301833227276802,
|
| 1040 |
+
"epoch": 0.688,
|
| 1041 |
+
"grad_norm": 0.011962890625,
|
| 1042 |
+
"learning_rate": 1.718e-05,
|
| 1043 |
+
"loss": 2.2309,
|
| 1044 |
+
"mean_token_accuracy": 0.5745828906074166,
|
| 1045 |
+
"num_tokens": 12227640.0,
|
| 1046 |
+
"step": 860
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"entropy": 1.3095486916601657,
|
| 1050 |
+
"epoch": 0.696,
|
| 1051 |
+
"grad_norm": 0.0087890625,
|
| 1052 |
+
"learning_rate": 1.7380000000000003e-05,
|
| 1053 |
+
"loss": 2.2881,
|
| 1054 |
+
"mean_token_accuracy": 0.5654223879799247,
|
| 1055 |
+
"num_tokens": 12371560.0,
|
| 1056 |
+
"step": 870
|
| 1057 |
+
},
|
| 1058 |
+
{
|
| 1059 |
+
"entropy": 1.2842330873012542,
|
| 1060 |
+
"epoch": 0.704,
|
| 1061 |
+
"grad_norm": 0.01055908203125,
|
| 1062 |
+
"learning_rate": 1.758e-05,
|
| 1063 |
+
"loss": 2.2148,
|
| 1064 |
+
"mean_token_accuracy": 0.5752653010189533,
|
| 1065 |
+
"num_tokens": 12516641.0,
|
| 1066 |
+
"step": 880
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"entropy": 1.3211415249854326,
|
| 1070 |
+
"epoch": 0.712,
|
| 1071 |
+
"grad_norm": 0.00799560546875,
|
| 1072 |
+
"learning_rate": 1.7780000000000003e-05,
|
| 1073 |
+
"loss": 2.2159,
|
| 1074 |
+
"mean_token_accuracy": 0.571710304543376,
|
| 1075 |
+
"num_tokens": 12656623.0,
|
| 1076 |
+
"step": 890
|
| 1077 |
+
},
|
| 1078 |
+
{
|
| 1079 |
+
"entropy": 1.2885905254632235,
|
| 1080 |
+
"epoch": 0.72,
|
| 1081 |
+
"grad_norm": 0.0201416015625,
|
| 1082 |
+
"learning_rate": 1.798e-05,
|
| 1083 |
+
"loss": 2.2299,
|
| 1084 |
+
"mean_token_accuracy": 0.5760715741664171,
|
| 1085 |
+
"num_tokens": 12793343.0,
|
| 1086 |
+
"step": 900
|
| 1087 |
+
},
|
| 1088 |
+
{
|
| 1089 |
+
"epoch": 0.72,
|
| 1090 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 1091 |
+
"eval_coding_loss": 1.2625732421875,
|
| 1092 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 1093 |
+
"eval_coding_num_tokens": 12793343.0,
|
| 1094 |
+
"eval_coding_runtime": 95.6394,
|
| 1095 |
+
"eval_coding_samples_per_second": 5.228,
|
| 1096 |
+
"eval_coding_steps_per_second": 2.614,
|
| 1097 |
+
"step": 900
|
| 1098 |
+
},
|
| 1099 |
+
{
|
| 1100 |
+
"epoch": 0.72,
|
| 1101 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 1102 |
+
"eval_math_loss": 2.2429049015045166,
|
| 1103 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 1104 |
+
"eval_math_num_tokens": 12793343.0,
|
| 1105 |
+
"eval_math_runtime": 55.2679,
|
| 1106 |
+
"eval_math_samples_per_second": 9.047,
|
| 1107 |
+
"eval_math_steps_per_second": 4.523,
|
| 1108 |
+
"step": 900
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"entropy": 1.298223714157939,
|
| 1112 |
+
"epoch": 0.728,
|
| 1113 |
+
"grad_norm": 0.012939453125,
|
| 1114 |
+
"learning_rate": 1.8180000000000002e-05,
|
| 1115 |
+
"loss": 2.298,
|
| 1116 |
+
"mean_token_accuracy": 0.5706229966133833,
|
| 1117 |
+
"num_tokens": 12932479.0,
|
| 1118 |
+
"step": 910
|
| 1119 |
+
},
|
| 1120 |
+
{
|
| 1121 |
+
"entropy": 1.2950578905642032,
|
| 1122 |
+
"epoch": 0.736,
|
| 1123 |
+
"grad_norm": 0.01239013671875,
|
| 1124 |
+
"learning_rate": 1.8380000000000004e-05,
|
| 1125 |
+
"loss": 2.234,
|
| 1126 |
+
"mean_token_accuracy": 0.5742258787155151,
|
| 1127 |
+
"num_tokens": 13077981.0,
|
| 1128 |
+
"step": 920
|
| 1129 |
+
},
|
| 1130 |
+
{
|
| 1131 |
+
"entropy": 1.302649038657546,
|
| 1132 |
+
"epoch": 0.744,
|
| 1133 |
+
"grad_norm": 0.0211181640625,
|
| 1134 |
+
"learning_rate": 1.858e-05,
|
| 1135 |
+
"loss": 2.2467,
|
| 1136 |
+
"mean_token_accuracy": 0.5736184434965252,
|
| 1137 |
+
"num_tokens": 13217888.0,
|
| 1138 |
+
"step": 930
|
| 1139 |
+
},
|
| 1140 |
+
{
|
| 1141 |
+
"entropy": 1.2875377755612134,
|
| 1142 |
+
"epoch": 0.752,
|
| 1143 |
+
"grad_norm": 0.015869140625,
|
| 1144 |
+
"learning_rate": 1.878e-05,
|
| 1145 |
+
"loss": 2.2132,
|
| 1146 |
+
"mean_token_accuracy": 0.575059812888503,
|
| 1147 |
+
"num_tokens": 13358957.0,
|
| 1148 |
+
"step": 940
|
| 1149 |
+
},
|
| 1150 |
+
{
|
| 1151 |
+
"entropy": 1.2615925706923008,
|
| 1152 |
+
"epoch": 0.76,
|
| 1153 |
+
"grad_norm": 0.0096435546875,
|
| 1154 |
+
"learning_rate": 1.898e-05,
|
| 1155 |
+
"loss": 2.2597,
|
| 1156 |
+
"mean_token_accuracy": 0.5791866419836879,
|
| 1157 |
+
"num_tokens": 13510850.0,
|
| 1158 |
+
"step": 950
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"entropy": 1.269580041617155,
|
| 1162 |
+
"epoch": 0.768,
|
| 1163 |
+
"grad_norm": 0.0115966796875,
|
| 1164 |
+
"learning_rate": 1.918e-05,
|
| 1165 |
+
"loss": 2.2027,
|
| 1166 |
+
"mean_token_accuracy": 0.5817427391186356,
|
| 1167 |
+
"num_tokens": 13653412.0,
|
| 1168 |
+
"step": 960
|
| 1169 |
+
},
|
| 1170 |
+
{
|
| 1171 |
+
"entropy": 1.3158201549202204,
|
| 1172 |
+
"epoch": 0.776,
|
| 1173 |
+
"grad_norm": 0.00885009765625,
|
| 1174 |
+
"learning_rate": 1.938e-05,
|
| 1175 |
+
"loss": 2.2614,
|
| 1176 |
+
"mean_token_accuracy": 0.5728385889902711,
|
| 1177 |
+
"num_tokens": 13794252.0,
|
| 1178 |
+
"step": 970
|
| 1179 |
+
},
|
| 1180 |
+
{
|
| 1181 |
+
"entropy": 1.2957237258553504,
|
| 1182 |
+
"epoch": 0.784,
|
| 1183 |
+
"grad_norm": 0.00909423828125,
|
| 1184 |
+
"learning_rate": 1.9580000000000002e-05,
|
| 1185 |
+
"loss": 2.2335,
|
| 1186 |
+
"mean_token_accuracy": 0.5786556912586093,
|
| 1187 |
+
"num_tokens": 13940856.0,
|
| 1188 |
+
"step": 980
|
| 1189 |
+
},
|
| 1190 |
+
{
|
| 1191 |
+
"entropy": 1.285663042962551,
|
| 1192 |
+
"epoch": 0.792,
|
| 1193 |
+
"grad_norm": 0.020263671875,
|
| 1194 |
+
"learning_rate": 1.978e-05,
|
| 1195 |
+
"loss": 2.2096,
|
| 1196 |
+
"mean_token_accuracy": 0.5792105477303267,
|
| 1197 |
+
"num_tokens": 14086117.0,
|
| 1198 |
+
"step": 990
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"entropy": 1.3126300945878029,
|
| 1202 |
+
"epoch": 0.8,
|
| 1203 |
+
"grad_norm": 0.00958251953125,
|
| 1204 |
+
"learning_rate": 1.9980000000000002e-05,
|
| 1205 |
+
"loss": 2.3165,
|
| 1206 |
+
"mean_token_accuracy": 0.5648046223446727,
|
| 1207 |
+
"num_tokens": 14230754.0,
|
| 1208 |
+
"step": 1000
|
| 1209 |
+
},
|
| 1210 |
+
{
|
| 1211 |
+
"epoch": 0.8,
|
| 1212 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 1213 |
+
"eval_coding_loss": 1.2625732421875,
|
| 1214 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 1215 |
+
"eval_coding_num_tokens": 14230754.0,
|
| 1216 |
+
"eval_coding_runtime": 96.0895,
|
| 1217 |
+
"eval_coding_samples_per_second": 5.203,
|
| 1218 |
+
"eval_coding_steps_per_second": 2.602,
|
| 1219 |
+
"step": 1000
|
| 1220 |
+
},
|
| 1221 |
+
{
|
| 1222 |
+
"epoch": 0.8,
|
| 1223 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 1224 |
+
"eval_math_loss": 2.2429049015045166,
|
| 1225 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 1226 |
+
"eval_math_num_tokens": 14230754.0,
|
| 1227 |
+
"eval_math_runtime": 54.9639,
|
| 1228 |
+
"eval_math_samples_per_second": 9.097,
|
| 1229 |
+
"eval_math_steps_per_second": 4.548,
|
| 1230 |
+
"step": 1000
|
| 1231 |
+
},
|
| 1232 |
+
{
|
| 1233 |
+
"entropy": 1.29276928268373,
|
| 1234 |
+
"epoch": 0.808,
|
| 1235 |
+
"grad_norm": 0.0126953125,
|
| 1236 |
+
"learning_rate": 1.9980000000000002e-05,
|
| 1237 |
+
"loss": 2.2326,
|
| 1238 |
+
"mean_token_accuracy": 0.5718907188624144,
|
| 1239 |
+
"num_tokens": 14374548.0,
|
| 1240 |
+
"step": 1010
|
| 1241 |
+
},
|
| 1242 |
+
{
|
| 1243 |
+
"entropy": 1.3095116015523671,
|
| 1244 |
+
"epoch": 0.816,
|
| 1245 |
+
"grad_norm": 0.01318359375,
|
| 1246 |
+
"learning_rate": 1.995777777777778e-05,
|
| 1247 |
+
"loss": 2.2316,
|
| 1248 |
+
"mean_token_accuracy": 0.5726707259193062,
|
| 1249 |
+
"num_tokens": 14519893.0,
|
| 1250 |
+
"step": 1020
|
| 1251 |
+
},
|
| 1252 |
+
{
|
| 1253 |
+
"entropy": 1.2931621059775353,
|
| 1254 |
+
"epoch": 0.824,
|
| 1255 |
+
"grad_norm": 0.0120849609375,
|
| 1256 |
+
"learning_rate": 1.9935555555555557e-05,
|
| 1257 |
+
"loss": 2.2255,
|
| 1258 |
+
"mean_token_accuracy": 0.5791132707148791,
|
| 1259 |
+
"num_tokens": 14664170.0,
|
| 1260 |
+
"step": 1030
|
| 1261 |
+
},
|
| 1262 |
+
{
|
| 1263 |
+
"entropy": 1.3060086965560913,
|
| 1264 |
+
"epoch": 0.832,
|
| 1265 |
+
"grad_norm": 0.0087890625,
|
| 1266 |
+
"learning_rate": 1.9913333333333335e-05,
|
| 1267 |
+
"loss": 2.2366,
|
| 1268 |
+
"mean_token_accuracy": 0.5756228402256965,
|
| 1269 |
+
"num_tokens": 14805088.0,
|
| 1270 |
+
"step": 1040
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"entropy": 1.29172132499516,
|
| 1274 |
+
"epoch": 0.84,
|
| 1275 |
+
"grad_norm": 0.00775146484375,
|
| 1276 |
+
"learning_rate": 1.9891111111111112e-05,
|
| 1277 |
+
"loss": 2.2138,
|
| 1278 |
+
"mean_token_accuracy": 0.5763768455013633,
|
| 1279 |
+
"num_tokens": 14944711.0,
|
| 1280 |
+
"step": 1050
|
| 1281 |
+
},
|
| 1282 |
+
{
|
| 1283 |
+
"entropy": 1.3122717272490263,
|
| 1284 |
+
"epoch": 0.848,
|
| 1285 |
+
"grad_norm": 0.00994873046875,
|
| 1286 |
+
"learning_rate": 1.986888888888889e-05,
|
| 1287 |
+
"loss": 2.2005,
|
| 1288 |
+
"mean_token_accuracy": 0.5786851424723863,
|
| 1289 |
+
"num_tokens": 15086306.0,
|
| 1290 |
+
"step": 1060
|
| 1291 |
+
},
|
| 1292 |
+
{
|
| 1293 |
+
"entropy": 1.3352035760879517,
|
| 1294 |
+
"epoch": 0.856,
|
| 1295 |
+
"grad_norm": 0.01043701171875,
|
| 1296 |
+
"learning_rate": 1.9846666666666668e-05,
|
| 1297 |
+
"loss": 2.3066,
|
| 1298 |
+
"mean_token_accuracy": 0.5666656039655209,
|
| 1299 |
+
"num_tokens": 15228872.0,
|
| 1300 |
+
"step": 1070
|
| 1301 |
+
},
|
| 1302 |
+
{
|
| 1303 |
+
"entropy": 1.2667071226984263,
|
| 1304 |
+
"epoch": 0.864,
|
| 1305 |
+
"grad_norm": 0.01251220703125,
|
| 1306 |
+
"learning_rate": 1.9824444444444445e-05,
|
| 1307 |
+
"loss": 2.1787,
|
| 1308 |
+
"mean_token_accuracy": 0.5817643126472831,
|
| 1309 |
+
"num_tokens": 15370985.0,
|
| 1310 |
+
"step": 1080
|
| 1311 |
+
},
|
| 1312 |
+
{
|
| 1313 |
+
"entropy": 1.3015164621174335,
|
| 1314 |
+
"epoch": 0.872,
|
| 1315 |
+
"grad_norm": 0.0103759765625,
|
| 1316 |
+
"learning_rate": 1.9802222222222226e-05,
|
| 1317 |
+
"loss": 2.2554,
|
| 1318 |
+
"mean_token_accuracy": 0.5708118518814445,
|
| 1319 |
+
"num_tokens": 15513360.0,
|
| 1320 |
+
"step": 1090
|
| 1321 |
+
},
|
| 1322 |
+
{
|
| 1323 |
+
"entropy": 1.3232146605849266,
|
| 1324 |
+
"epoch": 0.88,
|
| 1325 |
+
"grad_norm": 0.01025390625,
|
| 1326 |
+
"learning_rate": 1.978e-05,
|
| 1327 |
+
"loss": 2.222,
|
| 1328 |
+
"mean_token_accuracy": 0.5751912448555231,
|
| 1329 |
+
"num_tokens": 15653836.0,
|
| 1330 |
+
"step": 1100
|
| 1331 |
+
},
|
| 1332 |
+
{
|
| 1333 |
+
"epoch": 0.88,
|
| 1334 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 1335 |
+
"eval_coding_loss": 1.2625732421875,
|
| 1336 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 1337 |
+
"eval_coding_num_tokens": 15653836.0,
|
| 1338 |
+
"eval_coding_runtime": 95.6833,
|
| 1339 |
+
"eval_coding_samples_per_second": 5.226,
|
| 1340 |
+
"eval_coding_steps_per_second": 2.613,
|
| 1341 |
+
"step": 1100
|
| 1342 |
+
},
|
| 1343 |
+
{
|
| 1344 |
+
"epoch": 0.88,
|
| 1345 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 1346 |
+
"eval_math_loss": 2.2429049015045166,
|
| 1347 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 1348 |
+
"eval_math_num_tokens": 15653836.0,
|
| 1349 |
+
"eval_math_runtime": 55.2235,
|
| 1350 |
+
"eval_math_samples_per_second": 9.054,
|
| 1351 |
+
"eval_math_steps_per_second": 4.527,
|
| 1352 |
+
"step": 1100
|
| 1353 |
+
},
|
| 1354 |
+
{
|
| 1355 |
+
"entropy": 1.2944145441055297,
|
| 1356 |
+
"epoch": 0.888,
|
| 1357 |
+
"grad_norm": 0.013427734375,
|
| 1358 |
+
"learning_rate": 1.975777777777778e-05,
|
| 1359 |
+
"loss": 2.2076,
|
| 1360 |
+
"mean_token_accuracy": 0.579839687794447,
|
| 1361 |
+
"num_tokens": 15791102.0,
|
| 1362 |
+
"step": 1110
|
| 1363 |
+
},
|
| 1364 |
+
{
|
| 1365 |
+
"entropy": 1.3253925543278455,
|
| 1366 |
+
"epoch": 0.896,
|
| 1367 |
+
"grad_norm": 0.00970458984375,
|
| 1368 |
+
"learning_rate": 1.9735555555555556e-05,
|
| 1369 |
+
"loss": 2.2785,
|
| 1370 |
+
"mean_token_accuracy": 0.5721883840858937,
|
| 1371 |
+
"num_tokens": 15932179.0,
|
| 1372 |
+
"step": 1120
|
| 1373 |
+
},
|
| 1374 |
+
{
|
| 1375 |
+
"entropy": 1.2849542308598756,
|
| 1376 |
+
"epoch": 0.904,
|
| 1377 |
+
"grad_norm": 0.033203125,
|
| 1378 |
+
"learning_rate": 1.9713333333333337e-05,
|
| 1379 |
+
"loss": 2.2034,
|
| 1380 |
+
"mean_token_accuracy": 0.576960513740778,
|
| 1381 |
+
"num_tokens": 16074409.0,
|
| 1382 |
+
"step": 1130
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"entropy": 1.2730964332818986,
|
| 1386 |
+
"epoch": 0.912,
|
| 1387 |
+
"grad_norm": 0.0089111328125,
|
| 1388 |
+
"learning_rate": 1.969111111111111e-05,
|
| 1389 |
+
"loss": 2.1835,
|
| 1390 |
+
"mean_token_accuracy": 0.5821036446839571,
|
| 1391 |
+
"num_tokens": 16219842.0,
|
| 1392 |
+
"step": 1140
|
| 1393 |
+
},
|
| 1394 |
+
{
|
| 1395 |
+
"entropy": 1.2843450970947743,
|
| 1396 |
+
"epoch": 0.92,
|
| 1397 |
+
"grad_norm": 0.009765625,
|
| 1398 |
+
"learning_rate": 1.9668888888888892e-05,
|
| 1399 |
+
"loss": 2.1674,
|
| 1400 |
+
"mean_token_accuracy": 0.5814145233482122,
|
| 1401 |
+
"num_tokens": 16359249.0,
|
| 1402 |
+
"step": 1150
|
| 1403 |
+
},
|
| 1404 |
+
{
|
| 1405 |
+
"entropy": 1.2754333186894655,
|
| 1406 |
+
"epoch": 0.928,
|
| 1407 |
+
"grad_norm": 0.011474609375,
|
| 1408 |
+
"learning_rate": 1.9646666666666666e-05,
|
| 1409 |
+
"loss": 2.176,
|
| 1410 |
+
"mean_token_accuracy": 0.5827303070574998,
|
| 1411 |
+
"num_tokens": 16499842.0,
|
| 1412 |
+
"step": 1160
|
| 1413 |
+
},
|
| 1414 |
+
{
|
| 1415 |
+
"entropy": 1.301246513798833,
|
| 1416 |
+
"epoch": 0.936,
|
| 1417 |
+
"grad_norm": 0.010498046875,
|
| 1418 |
+
"learning_rate": 1.9624444444444447e-05,
|
| 1419 |
+
"loss": 2.2071,
|
| 1420 |
+
"mean_token_accuracy": 0.5731328945606947,
|
| 1421 |
+
"num_tokens": 16640499.0,
|
| 1422 |
+
"step": 1170
|
| 1423 |
+
},
|
| 1424 |
+
{
|
| 1425 |
+
"entropy": 1.2947144400328399,
|
| 1426 |
+
"epoch": 0.944,
|
| 1427 |
+
"grad_norm": 0.01239013671875,
|
| 1428 |
+
"learning_rate": 1.9602222222222225e-05,
|
| 1429 |
+
"loss": 2.2016,
|
| 1430 |
+
"mean_token_accuracy": 0.5806368073448539,
|
| 1431 |
+
"num_tokens": 16781882.0,
|
| 1432 |
+
"step": 1180
|
| 1433 |
+
},
|
| 1434 |
+
{
|
| 1435 |
+
"entropy": 1.2729844357818365,
|
| 1436 |
+
"epoch": 0.952,
|
| 1437 |
+
"grad_norm": 0.00811767578125,
|
| 1438 |
+
"learning_rate": 1.9580000000000002e-05,
|
| 1439 |
+
"loss": 2.157,
|
| 1440 |
+
"mean_token_accuracy": 0.5873358538374305,
|
| 1441 |
+
"num_tokens": 16922913.0,
|
| 1442 |
+
"step": 1190
|
| 1443 |
+
},
|
| 1444 |
+
{
|
| 1445 |
+
"entropy": 1.3273278027772903,
|
| 1446 |
+
"epoch": 0.96,
|
| 1447 |
+
"grad_norm": 0.0133056640625,
|
| 1448 |
+
"learning_rate": 1.955777777777778e-05,
|
| 1449 |
+
"loss": 2.2697,
|
| 1450 |
+
"mean_token_accuracy": 0.5692729642614722,
|
| 1451 |
+
"num_tokens": 17067407.0,
|
| 1452 |
+
"step": 1200
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 0.96,
|
| 1456 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 1457 |
+
"eval_coding_loss": 1.2625732421875,
|
| 1458 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 1459 |
+
"eval_coding_num_tokens": 17067407.0,
|
| 1460 |
+
"eval_coding_runtime": 95.6335,
|
| 1461 |
+
"eval_coding_samples_per_second": 5.228,
|
| 1462 |
+
"eval_coding_steps_per_second": 2.614,
|
| 1463 |
+
"step": 1200
|
| 1464 |
+
},
|
| 1465 |
+
{
|
| 1466 |
+
"epoch": 0.96,
|
| 1467 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 1468 |
+
"eval_math_loss": 2.2429049015045166,
|
| 1469 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 1470 |
+
"eval_math_num_tokens": 17067407.0,
|
| 1471 |
+
"eval_math_runtime": 55.2304,
|
| 1472 |
+
"eval_math_samples_per_second": 9.053,
|
| 1473 |
+
"eval_math_steps_per_second": 4.526,
|
| 1474 |
+
"step": 1200
|
| 1475 |
+
},
|
| 1476 |
+
{
|
| 1477 |
+
"entropy": 1.2900268983095884,
|
| 1478 |
+
"epoch": 0.968,
|
| 1479 |
+
"grad_norm": 0.008056640625,
|
| 1480 |
+
"learning_rate": 1.9535555555555557e-05,
|
| 1481 |
+
"loss": 2.1958,
|
| 1482 |
+
"mean_token_accuracy": 0.5768731584772467,
|
| 1483 |
+
"num_tokens": 17211153.0,
|
| 1484 |
+
"step": 1210
|
| 1485 |
+
},
|
| 1486 |
+
{
|
| 1487 |
+
"entropy": 1.30126980766654,
|
| 1488 |
+
"epoch": 0.976,
|
| 1489 |
+
"grad_norm": 0.0245361328125,
|
| 1490 |
+
"learning_rate": 1.9513333333333335e-05,
|
| 1491 |
+
"loss": 2.2313,
|
| 1492 |
+
"mean_token_accuracy": 0.5746001824736595,
|
| 1493 |
+
"num_tokens": 17350994.0,
|
| 1494 |
+
"step": 1220
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"entropy": 1.294421959668398,
|
| 1498 |
+
"epoch": 0.984,
|
| 1499 |
+
"grad_norm": 0.018310546875,
|
| 1500 |
+
"learning_rate": 1.9491111111111113e-05,
|
| 1501 |
+
"loss": 2.2481,
|
| 1502 |
+
"mean_token_accuracy": 0.5734764914959669,
|
| 1503 |
+
"num_tokens": 17492960.0,
|
| 1504 |
+
"step": 1230
|
| 1505 |
+
},
|
| 1506 |
+
{
|
| 1507 |
+
"entropy": 1.3181488186120986,
|
| 1508 |
+
"epoch": 0.992,
|
| 1509 |
+
"grad_norm": 0.030517578125,
|
| 1510 |
+
"learning_rate": 1.946888888888889e-05,
|
| 1511 |
+
"loss": 2.3008,
|
| 1512 |
+
"mean_token_accuracy": 0.5649250147864222,
|
| 1513 |
+
"num_tokens": 17637514.0,
|
| 1514 |
+
"step": 1240
|
| 1515 |
+
},
|
| 1516 |
+
{
|
| 1517 |
+
"entropy": 1.3004115797579288,
|
| 1518 |
+
"epoch": 1.0,
|
| 1519 |
+
"grad_norm": 0.009033203125,
|
| 1520 |
+
"learning_rate": 1.9446666666666668e-05,
|
| 1521 |
+
"loss": 2.2079,
|
| 1522 |
+
"mean_token_accuracy": 0.5754020158201456,
|
| 1523 |
+
"num_tokens": 17780432.0,
|
| 1524 |
+
"step": 1250
|
| 1525 |
+
},
|
| 1526 |
+
{
|
| 1527 |
+
"entropy": 1.2847444698214532,
|
| 1528 |
+
"epoch": 1.008,
|
| 1529 |
+
"grad_norm": 0.017333984375,
|
| 1530 |
+
"learning_rate": 1.9424444444444446e-05,
|
| 1531 |
+
"loss": 2.1845,
|
| 1532 |
+
"mean_token_accuracy": 0.5801492627710104,
|
| 1533 |
+
"num_tokens": 17926570.0,
|
| 1534 |
+
"step": 1260
|
| 1535 |
+
},
|
| 1536 |
+
{
|
| 1537 |
+
"entropy": 1.2932130094617604,
|
| 1538 |
+
"epoch": 1.016,
|
| 1539 |
+
"grad_norm": 0.0189208984375,
|
| 1540 |
+
"learning_rate": 1.9402222222222223e-05,
|
| 1541 |
+
"loss": 2.2089,
|
| 1542 |
+
"mean_token_accuracy": 0.5793235875666142,
|
| 1543 |
+
"num_tokens": 18070722.0,
|
| 1544 |
+
"step": 1270
|
| 1545 |
+
},
|
| 1546 |
+
{
|
| 1547 |
+
"entropy": 1.2891677081584931,
|
| 1548 |
+
"epoch": 1.024,
|
| 1549 |
+
"grad_norm": 0.0081787109375,
|
| 1550 |
+
"learning_rate": 1.938e-05,
|
| 1551 |
+
"loss": 2.2189,
|
| 1552 |
+
"mean_token_accuracy": 0.5802426967769861,
|
| 1553 |
+
"num_tokens": 18207652.0,
|
| 1554 |
+
"step": 1280
|
| 1555 |
+
},
|
| 1556 |
+
{
|
| 1557 |
+
"entropy": 1.3298017375171185,
|
| 1558 |
+
"epoch": 1.032,
|
| 1559 |
+
"grad_norm": 0.00958251953125,
|
| 1560 |
+
"learning_rate": 1.935777777777778e-05,
|
| 1561 |
+
"loss": 2.2569,
|
| 1562 |
+
"mean_token_accuracy": 0.5690007250756025,
|
| 1563 |
+
"num_tokens": 18349030.0,
|
| 1564 |
+
"step": 1290
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"entropy": 1.2888877458870411,
|
| 1568 |
+
"epoch": 1.04,
|
| 1569 |
+
"grad_norm": 0.01336669921875,
|
| 1570 |
+
"learning_rate": 1.9335555555555556e-05,
|
| 1571 |
+
"loss": 2.2469,
|
| 1572 |
+
"mean_token_accuracy": 0.5769451957195997,
|
| 1573 |
+
"num_tokens": 18484931.0,
|
| 1574 |
+
"step": 1300
|
| 1575 |
+
},
|
| 1576 |
+
{
|
| 1577 |
+
"epoch": 1.04,
|
| 1578 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 1579 |
+
"eval_coding_loss": 1.2625732421875,
|
| 1580 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 1581 |
+
"eval_coding_num_tokens": 18484931.0,
|
| 1582 |
+
"eval_coding_runtime": 95.6088,
|
| 1583 |
+
"eval_coding_samples_per_second": 5.23,
|
| 1584 |
+
"eval_coding_steps_per_second": 2.615,
|
| 1585 |
+
"step": 1300
|
| 1586 |
+
},
|
| 1587 |
+
{
|
| 1588 |
+
"epoch": 1.04,
|
| 1589 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 1590 |
+
"eval_math_loss": 2.2429049015045166,
|
| 1591 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 1592 |
+
"eval_math_num_tokens": 18484931.0,
|
| 1593 |
+
"eval_math_runtime": 55.238,
|
| 1594 |
+
"eval_math_samples_per_second": 9.052,
|
| 1595 |
+
"eval_math_steps_per_second": 4.526,
|
| 1596 |
+
"step": 1300
|
| 1597 |
+
},
|
| 1598 |
+
{
|
| 1599 |
+
"entropy": 1.3006268568336963,
|
| 1600 |
+
"epoch": 1.048,
|
| 1601 |
+
"grad_norm": 0.01495361328125,
|
| 1602 |
+
"learning_rate": 1.9313333333333334e-05,
|
| 1603 |
+
"loss": 2.2672,
|
| 1604 |
+
"mean_token_accuracy": 0.5714229056611657,
|
| 1605 |
+
"num_tokens": 18630034.0,
|
| 1606 |
+
"step": 1310
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"entropy": 1.279826521128416,
|
| 1610 |
+
"epoch": 1.056,
|
| 1611 |
+
"grad_norm": 0.0164794921875,
|
| 1612 |
+
"learning_rate": 1.9291111111111115e-05,
|
| 1613 |
+
"loss": 2.2346,
|
| 1614 |
+
"mean_token_accuracy": 0.5772927038371563,
|
| 1615 |
+
"num_tokens": 18773457.0,
|
| 1616 |
+
"step": 1320
|
| 1617 |
+
},
|
| 1618 |
+
{
|
| 1619 |
+
"entropy": 1.311249329522252,
|
| 1620 |
+
"epoch": 1.064,
|
| 1621 |
+
"grad_norm": 0.0126953125,
|
| 1622 |
+
"learning_rate": 1.926888888888889e-05,
|
| 1623 |
+
"loss": 2.3087,
|
| 1624 |
+
"mean_token_accuracy": 0.5693608418107032,
|
| 1625 |
+
"num_tokens": 18918389.0,
|
| 1626 |
+
"step": 1330
|
| 1627 |
+
},
|
| 1628 |
+
{
|
| 1629 |
+
"entropy": 1.2683462664484977,
|
| 1630 |
+
"epoch": 1.072,
|
| 1631 |
+
"grad_norm": 0.0140380859375,
|
| 1632 |
+
"learning_rate": 1.924666666666667e-05,
|
| 1633 |
+
"loss": 2.225,
|
| 1634 |
+
"mean_token_accuracy": 0.5798949740827084,
|
| 1635 |
+
"num_tokens": 19055365.0,
|
| 1636 |
+
"step": 1340
|
| 1637 |
+
},
|
| 1638 |
+
{
|
| 1639 |
+
"entropy": 1.3234039679169656,
|
| 1640 |
+
"epoch": 1.08,
|
| 1641 |
+
"grad_norm": 0.0096435546875,
|
| 1642 |
+
"learning_rate": 1.9224444444444444e-05,
|
| 1643 |
+
"loss": 2.2342,
|
| 1644 |
+
"mean_token_accuracy": 0.572484284453094,
|
| 1645 |
+
"num_tokens": 19202006.0,
|
| 1646 |
+
"step": 1350
|
| 1647 |
+
},
|
| 1648 |
+
{
|
| 1649 |
+
"entropy": 1.2823971390724183,
|
| 1650 |
+
"epoch": 1.088,
|
| 1651 |
+
"grad_norm": 0.00909423828125,
|
| 1652 |
+
"learning_rate": 1.9202222222222225e-05,
|
| 1653 |
+
"loss": 2.2072,
|
| 1654 |
+
"mean_token_accuracy": 0.5814019978046417,
|
| 1655 |
+
"num_tokens": 19345730.0,
|
| 1656 |
+
"step": 1360
|
| 1657 |
+
},
|
| 1658 |
+
{
|
| 1659 |
+
"entropy": 1.328789808228612,
|
| 1660 |
+
"epoch": 1.096,
|
| 1661 |
+
"grad_norm": 0.008544921875,
|
| 1662 |
+
"learning_rate": 1.918e-05,
|
| 1663 |
+
"loss": 2.274,
|
| 1664 |
+
"mean_token_accuracy": 0.5689424321055412,
|
| 1665 |
+
"num_tokens": 19494084.0,
|
| 1666 |
+
"step": 1370
|
| 1667 |
+
},
|
| 1668 |
+
{
|
| 1669 |
+
"entropy": 1.2878280565142632,
|
| 1670 |
+
"epoch": 1.104,
|
| 1671 |
+
"grad_norm": 0.01165771484375,
|
| 1672 |
+
"learning_rate": 1.915777777777778e-05,
|
| 1673 |
+
"loss": 2.2215,
|
| 1674 |
+
"mean_token_accuracy": 0.5786661734804511,
|
| 1675 |
+
"num_tokens": 19637390.0,
|
| 1676 |
+
"step": 1380
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"entropy": 1.2910890705883502,
|
| 1680 |
+
"epoch": 1.112,
|
| 1681 |
+
"grad_norm": 0.018310546875,
|
| 1682 |
+
"learning_rate": 1.9135555555555555e-05,
|
| 1683 |
+
"loss": 2.2246,
|
| 1684 |
+
"mean_token_accuracy": 0.5769055737182498,
|
| 1685 |
+
"num_tokens": 19777388.0,
|
| 1686 |
+
"step": 1390
|
| 1687 |
+
},
|
| 1688 |
+
{
|
| 1689 |
+
"entropy": 1.2642895836383103,
|
| 1690 |
+
"epoch": 1.12,
|
| 1691 |
+
"grad_norm": 0.01123046875,
|
| 1692 |
+
"learning_rate": 1.9113333333333336e-05,
|
| 1693 |
+
"loss": 2.2314,
|
| 1694 |
+
"mean_token_accuracy": 0.5781507005915045,
|
| 1695 |
+
"num_tokens": 19923914.0,
|
| 1696 |
+
"step": 1400
|
| 1697 |
+
},
|
| 1698 |
+
{
|
| 1699 |
+
"epoch": 1.12,
|
| 1700 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 1701 |
+
"eval_coding_loss": 1.2625732421875,
|
| 1702 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 1703 |
+
"eval_coding_num_tokens": 19923914.0,
|
| 1704 |
+
"eval_coding_runtime": 95.6535,
|
| 1705 |
+
"eval_coding_samples_per_second": 5.227,
|
| 1706 |
+
"eval_coding_steps_per_second": 2.614,
|
| 1707 |
+
"step": 1400
|
| 1708 |
+
},
|
| 1709 |
+
{
|
| 1710 |
+
"epoch": 1.12,
|
| 1711 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 1712 |
+
"eval_math_loss": 2.2429049015045166,
|
| 1713 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 1714 |
+
"eval_math_num_tokens": 19923914.0,
|
| 1715 |
+
"eval_math_runtime": 55.1965,
|
| 1716 |
+
"eval_math_samples_per_second": 9.059,
|
| 1717 |
+
"eval_math_steps_per_second": 4.529,
|
| 1718 |
+
"step": 1400
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"entropy": 1.3085532050579787,
|
| 1722 |
+
"epoch": 1.1280000000000001,
|
| 1723 |
+
"grad_norm": 0.01422119140625,
|
| 1724 |
+
"learning_rate": 1.9091111111111113e-05,
|
| 1725 |
+
"loss": 2.322,
|
| 1726 |
+
"mean_token_accuracy": 0.5657644450664521,
|
| 1727 |
+
"num_tokens": 20061623.0,
|
| 1728 |
+
"step": 1410
|
| 1729 |
+
},
|
| 1730 |
+
{
|
| 1731 |
+
"entropy": 1.2904092378914356,
|
| 1732 |
+
"epoch": 1.1360000000000001,
|
| 1733 |
+
"grad_norm": 0.017333984375,
|
| 1734 |
+
"learning_rate": 1.906888888888889e-05,
|
| 1735 |
+
"loss": 2.2418,
|
| 1736 |
+
"mean_token_accuracy": 0.5722202086821199,
|
| 1737 |
+
"num_tokens": 20201892.0,
|
| 1738 |
+
"step": 1420
|
| 1739 |
+
},
|
| 1740 |
+
{
|
| 1741 |
+
"entropy": 1.297779395803809,
|
| 1742 |
+
"epoch": 1.144,
|
| 1743 |
+
"grad_norm": 0.0078125,
|
| 1744 |
+
"learning_rate": 1.904666666666667e-05,
|
| 1745 |
+
"loss": 2.2403,
|
| 1746 |
+
"mean_token_accuracy": 0.5758582351729273,
|
| 1747 |
+
"num_tokens": 20343948.0,
|
| 1748 |
+
"step": 1430
|
| 1749 |
+
},
|
| 1750 |
+
{
|
| 1751 |
+
"entropy": 1.302032370120287,
|
| 1752 |
+
"epoch": 1.152,
|
| 1753 |
+
"grad_norm": 0.00811767578125,
|
| 1754 |
+
"learning_rate": 1.9024444444444446e-05,
|
| 1755 |
+
"loss": 2.2752,
|
| 1756 |
+
"mean_token_accuracy": 0.57330860812217,
|
| 1757 |
+
"num_tokens": 20490282.0,
|
| 1758 |
+
"step": 1440
|
| 1759 |
+
},
|
| 1760 |
+
{
|
| 1761 |
+
"entropy": 1.2779104180634022,
|
| 1762 |
+
"epoch": 1.16,
|
| 1763 |
+
"grad_norm": 0.0203857421875,
|
| 1764 |
+
"learning_rate": 1.9002222222222224e-05,
|
| 1765 |
+
"loss": 2.1719,
|
| 1766 |
+
"mean_token_accuracy": 0.5854279346764087,
|
| 1767 |
+
"num_tokens": 20641737.0,
|
| 1768 |
+
"step": 1450
|
| 1769 |
+
},
|
| 1770 |
+
{
|
| 1771 |
+
"entropy": 1.2778663296252488,
|
| 1772 |
+
"epoch": 1.168,
|
| 1773 |
+
"grad_norm": 0.025146484375,
|
| 1774 |
+
"learning_rate": 1.898e-05,
|
| 1775 |
+
"loss": 2.173,
|
| 1776 |
+
"mean_token_accuracy": 0.582743788510561,
|
| 1777 |
+
"num_tokens": 20785786.0,
|
| 1778 |
+
"step": 1460
|
| 1779 |
+
},
|
| 1780 |
+
{
|
| 1781 |
+
"entropy": 1.3081208609044552,
|
| 1782 |
+
"epoch": 1.176,
|
| 1783 |
+
"grad_norm": 0.015380859375,
|
| 1784 |
+
"learning_rate": 1.895777777777778e-05,
|
| 1785 |
+
"loss": 2.2775,
|
| 1786 |
+
"mean_token_accuracy": 0.5689503744244575,
|
| 1787 |
+
"num_tokens": 20928880.0,
|
| 1788 |
+
"step": 1470
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"entropy": 1.2751742608845233,
|
| 1792 |
+
"epoch": 1.184,
|
| 1793 |
+
"grad_norm": 0.0086669921875,
|
| 1794 |
+
"learning_rate": 1.8935555555555556e-05,
|
| 1795 |
+
"loss": 2.2062,
|
| 1796 |
+
"mean_token_accuracy": 0.5821780592203141,
|
| 1797 |
+
"num_tokens": 21074205.0,
|
| 1798 |
+
"step": 1480
|
| 1799 |
+
},
|
| 1800 |
+
{
|
| 1801 |
+
"entropy": 1.27163728736341,
|
| 1802 |
+
"epoch": 1.192,
|
| 1803 |
+
"grad_norm": 0.017822265625,
|
| 1804 |
+
"learning_rate": 1.8913333333333334e-05,
|
| 1805 |
+
"loss": 2.1817,
|
| 1806 |
+
"mean_token_accuracy": 0.5830474335700273,
|
| 1807 |
+
"num_tokens": 21222288.0,
|
| 1808 |
+
"step": 1490
|
| 1809 |
+
},
|
| 1810 |
+
{
|
| 1811 |
+
"entropy": 1.2738530434668065,
|
| 1812 |
+
"epoch": 1.2,
|
| 1813 |
+
"grad_norm": 0.011962890625,
|
| 1814 |
+
"learning_rate": 1.8891111111111115e-05,
|
| 1815 |
+
"loss": 2.1801,
|
| 1816 |
+
"mean_token_accuracy": 0.5803947079926729,
|
| 1817 |
+
"num_tokens": 21369159.0,
|
| 1818 |
+
"step": 1500
|
| 1819 |
+
},
|
| 1820 |
+
{
|
| 1821 |
+
"epoch": 1.2,
|
| 1822 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 1823 |
+
"eval_coding_loss": 1.2625732421875,
|
| 1824 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 1825 |
+
"eval_coding_num_tokens": 21369159.0,
|
| 1826 |
+
"eval_coding_runtime": 95.695,
|
| 1827 |
+
"eval_coding_samples_per_second": 5.225,
|
| 1828 |
+
"eval_coding_steps_per_second": 2.612,
|
| 1829 |
+
"step": 1500
|
| 1830 |
+
},
|
| 1831 |
+
{
|
| 1832 |
+
"epoch": 1.2,
|
| 1833 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 1834 |
+
"eval_math_loss": 2.2429049015045166,
|
| 1835 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 1836 |
+
"eval_math_num_tokens": 21369159.0,
|
| 1837 |
+
"eval_math_runtime": 54.7644,
|
| 1838 |
+
"eval_math_samples_per_second": 9.13,
|
| 1839 |
+
"eval_math_steps_per_second": 4.565,
|
| 1840 |
+
"step": 1500
|
| 1841 |
+
},
|
| 1842 |
+
{
|
| 1843 |
+
"entropy": 1.3021067466586829,
|
| 1844 |
+
"epoch": 1.208,
|
| 1845 |
+
"grad_norm": 0.01422119140625,
|
| 1846 |
+
"learning_rate": 1.886888888888889e-05,
|
| 1847 |
+
"loss": 2.1707,
|
| 1848 |
+
"mean_token_accuracy": 0.5797995328903198,
|
| 1849 |
+
"num_tokens": 21511015.0,
|
| 1850 |
+
"step": 1510
|
| 1851 |
+
},
|
| 1852 |
+
{
|
| 1853 |
+
"entropy": 1.303629470616579,
|
| 1854 |
+
"epoch": 1.216,
|
| 1855 |
+
"grad_norm": 0.01251220703125,
|
| 1856 |
+
"learning_rate": 1.884666666666667e-05,
|
| 1857 |
+
"loss": 2.1907,
|
| 1858 |
+
"mean_token_accuracy": 0.577221317216754,
|
| 1859 |
+
"num_tokens": 21649178.0,
|
| 1860 |
+
"step": 1520
|
| 1861 |
+
},
|
| 1862 |
+
{
|
| 1863 |
+
"entropy": 1.2927171494811773,
|
| 1864 |
+
"epoch": 1.224,
|
| 1865 |
+
"grad_norm": 0.022216796875,
|
| 1866 |
+
"learning_rate": 1.8824444444444445e-05,
|
| 1867 |
+
"loss": 2.2467,
|
| 1868 |
+
"mean_token_accuracy": 0.5752095308154821,
|
| 1869 |
+
"num_tokens": 21790802.0,
|
| 1870 |
+
"step": 1530
|
| 1871 |
+
},
|
| 1872 |
+
{
|
| 1873 |
+
"entropy": 1.2608089979737997,
|
| 1874 |
+
"epoch": 1.232,
|
| 1875 |
+
"grad_norm": 0.01416015625,
|
| 1876 |
+
"learning_rate": 1.8802222222222226e-05,
|
| 1877 |
+
"loss": 2.1654,
|
| 1878 |
+
"mean_token_accuracy": 0.58616862334311,
|
| 1879 |
+
"num_tokens": 21930239.0,
|
| 1880 |
+
"step": 1540
|
| 1881 |
+
},
|
| 1882 |
+
{
|
| 1883 |
+
"entropy": 1.279138757288456,
|
| 1884 |
+
"epoch": 1.24,
|
| 1885 |
+
"grad_norm": 0.0164794921875,
|
| 1886 |
+
"learning_rate": 1.878e-05,
|
| 1887 |
+
"loss": 2.1775,
|
| 1888 |
+
"mean_token_accuracy": 0.579110798984766,
|
| 1889 |
+
"num_tokens": 22075270.0,
|
| 1890 |
+
"step": 1550
|
| 1891 |
+
},
|
| 1892 |
+
{
|
| 1893 |
+
"entropy": 1.2945632576942443,
|
| 1894 |
+
"epoch": 1.248,
|
| 1895 |
+
"grad_norm": 0.015380859375,
|
| 1896 |
+
"learning_rate": 1.875777777777778e-05,
|
| 1897 |
+
"loss": 2.2213,
|
| 1898 |
+
"mean_token_accuracy": 0.5734076691791415,
|
| 1899 |
+
"num_tokens": 22216387.0,
|
| 1900 |
+
"step": 1560
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"entropy": 1.314554738625884,
|
| 1904 |
+
"epoch": 1.256,
|
| 1905 |
+
"grad_norm": 0.021484375,
|
| 1906 |
+
"learning_rate": 1.873555555555556e-05,
|
| 1907 |
+
"loss": 2.2745,
|
| 1908 |
+
"mean_token_accuracy": 0.5707367097958922,
|
| 1909 |
+
"num_tokens": 22359813.0,
|
| 1910 |
+
"step": 1570
|
| 1911 |
+
},
|
| 1912 |
+
{
|
| 1913 |
+
"entropy": 1.32604789622128,
|
| 1914 |
+
"epoch": 1.264,
|
| 1915 |
+
"grad_norm": 0.011962890625,
|
| 1916 |
+
"learning_rate": 1.8713333333333336e-05,
|
| 1917 |
+
"loss": 2.25,
|
| 1918 |
+
"mean_token_accuracy": 0.5707180803641677,
|
| 1919 |
+
"num_tokens": 22501002.0,
|
| 1920 |
+
"step": 1580
|
| 1921 |
+
},
|
| 1922 |
+
{
|
| 1923 |
+
"entropy": 1.280422120168805,
|
| 1924 |
+
"epoch": 1.272,
|
| 1925 |
+
"grad_norm": 0.008056640625,
|
| 1926 |
+
"learning_rate": 1.8691111111111114e-05,
|
| 1927 |
+
"loss": 2.1828,
|
| 1928 |
+
"mean_token_accuracy": 0.581519584544003,
|
| 1929 |
+
"num_tokens": 22634652.0,
|
| 1930 |
+
"step": 1590
|
| 1931 |
+
},
|
| 1932 |
+
{
|
| 1933 |
+
"entropy": 1.2957364562898874,
|
| 1934 |
+
"epoch": 1.28,
|
| 1935 |
+
"grad_norm": 0.0185546875,
|
| 1936 |
+
"learning_rate": 1.866888888888889e-05,
|
| 1937 |
+
"loss": 2.2264,
|
| 1938 |
+
"mean_token_accuracy": 0.5763478111475706,
|
| 1939 |
+
"num_tokens": 22779682.0,
|
| 1940 |
+
"step": 1600
|
| 1941 |
+
},
|
| 1942 |
+
{
|
| 1943 |
+
"epoch": 1.28,
|
| 1944 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 1945 |
+
"eval_coding_loss": 1.2625732421875,
|
| 1946 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 1947 |
+
"eval_coding_num_tokens": 22779682.0,
|
| 1948 |
+
"eval_coding_runtime": 95.6936,
|
| 1949 |
+
"eval_coding_samples_per_second": 5.225,
|
| 1950 |
+
"eval_coding_steps_per_second": 2.613,
|
| 1951 |
+
"step": 1600
|
| 1952 |
+
},
|
| 1953 |
+
{
|
| 1954 |
+
"epoch": 1.28,
|
| 1955 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 1956 |
+
"eval_math_loss": 2.2429049015045166,
|
| 1957 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 1958 |
+
"eval_math_num_tokens": 22779682.0,
|
| 1959 |
+
"eval_math_runtime": 55.2565,
|
| 1960 |
+
"eval_math_samples_per_second": 9.049,
|
| 1961 |
+
"eval_math_steps_per_second": 4.524,
|
| 1962 |
+
"step": 1600
|
| 1963 |
+
},
|
| 1964 |
+
{
|
| 1965 |
+
"entropy": 1.2870917547494174,
|
| 1966 |
+
"epoch": 1.288,
|
| 1967 |
+
"grad_norm": 0.01287841796875,
|
| 1968 |
+
"learning_rate": 1.864666666666667e-05,
|
| 1969 |
+
"loss": 2.1935,
|
| 1970 |
+
"mean_token_accuracy": 0.5807379197329283,
|
| 1971 |
+
"num_tokens": 22919374.0,
|
| 1972 |
+
"step": 1610
|
| 1973 |
+
},
|
| 1974 |
+
{
|
| 1975 |
+
"entropy": 1.268484988436103,
|
| 1976 |
+
"epoch": 1.296,
|
| 1977 |
+
"grad_norm": 0.01123046875,
|
| 1978 |
+
"learning_rate": 1.8624444444444446e-05,
|
| 1979 |
+
"loss": 2.183,
|
| 1980 |
+
"mean_token_accuracy": 0.5854335069656372,
|
| 1981 |
+
"num_tokens": 23057744.0,
|
| 1982 |
+
"step": 1620
|
| 1983 |
+
},
|
| 1984 |
+
{
|
| 1985 |
+
"entropy": 1.2904878597706557,
|
| 1986 |
+
"epoch": 1.304,
|
| 1987 |
+
"grad_norm": 0.0120849609375,
|
| 1988 |
+
"learning_rate": 1.8602222222222224e-05,
|
| 1989 |
+
"loss": 2.2618,
|
| 1990 |
+
"mean_token_accuracy": 0.5753191851079464,
|
| 1991 |
+
"num_tokens": 23201590.0,
|
| 1992 |
+
"step": 1630
|
| 1993 |
+
},
|
| 1994 |
+
{
|
| 1995 |
+
"entropy": 1.3022067859768867,
|
| 1996 |
+
"epoch": 1.312,
|
| 1997 |
+
"grad_norm": 0.0281982421875,
|
| 1998 |
+
"learning_rate": 1.858e-05,
|
| 1999 |
+
"loss": 2.2992,
|
| 2000 |
+
"mean_token_accuracy": 0.5704338105395437,
|
| 2001 |
+
"num_tokens": 23344644.0,
|
| 2002 |
+
"step": 1640
|
| 2003 |
+
},
|
| 2004 |
+
{
|
| 2005 |
+
"entropy": 1.3129540402442217,
|
| 2006 |
+
"epoch": 1.32,
|
| 2007 |
+
"grad_norm": 0.007171630859375,
|
| 2008 |
+
"learning_rate": 1.855777777777778e-05,
|
| 2009 |
+
"loss": 2.2085,
|
| 2010 |
+
"mean_token_accuracy": 0.5713952157646418,
|
| 2011 |
+
"num_tokens": 23485056.0,
|
| 2012 |
+
"step": 1650
|
| 2013 |
+
},
|
| 2014 |
+
{
|
| 2015 |
+
"entropy": 1.3017708092927933,
|
| 2016 |
+
"epoch": 1.328,
|
| 2017 |
+
"grad_norm": 0.008056640625,
|
| 2018 |
+
"learning_rate": 1.8535555555555557e-05,
|
| 2019 |
+
"loss": 2.1954,
|
| 2020 |
+
"mean_token_accuracy": 0.5752975823357701,
|
| 2021 |
+
"num_tokens": 23622405.0,
|
| 2022 |
+
"step": 1660
|
| 2023 |
+
},
|
| 2024 |
+
{
|
| 2025 |
+
"entropy": 1.289170829206705,
|
| 2026 |
+
"epoch": 1.336,
|
| 2027 |
+
"grad_norm": 0.00732421875,
|
| 2028 |
+
"learning_rate": 1.8513333333333335e-05,
|
| 2029 |
+
"loss": 2.2301,
|
| 2030 |
+
"mean_token_accuracy": 0.5756044138222933,
|
| 2031 |
+
"num_tokens": 23760641.0,
|
| 2032 |
+
"step": 1670
|
| 2033 |
+
},
|
| 2034 |
+
{
|
| 2035 |
+
"entropy": 1.262322897836566,
|
| 2036 |
+
"epoch": 1.3439999999999999,
|
| 2037 |
+
"grad_norm": 0.023193359375,
|
| 2038 |
+
"learning_rate": 1.8491111111111112e-05,
|
| 2039 |
+
"loss": 2.1401,
|
| 2040 |
+
"mean_token_accuracy": 0.5876206021755934,
|
| 2041 |
+
"num_tokens": 23899771.0,
|
| 2042 |
+
"step": 1680
|
| 2043 |
+
},
|
| 2044 |
+
{
|
| 2045 |
+
"entropy": 1.275562158226967,
|
| 2046 |
+
"epoch": 1.3519999999999999,
|
| 2047 |
+
"grad_norm": 0.00958251953125,
|
| 2048 |
+
"learning_rate": 1.846888888888889e-05,
|
| 2049 |
+
"loss": 2.1845,
|
| 2050 |
+
"mean_token_accuracy": 0.5808436365798115,
|
| 2051 |
+
"num_tokens": 24041995.0,
|
| 2052 |
+
"step": 1690
|
| 2053 |
+
},
|
| 2054 |
+
{
|
| 2055 |
+
"entropy": 1.2879225231707097,
|
| 2056 |
+
"epoch": 1.3599999999999999,
|
| 2057 |
+
"grad_norm": 0.010498046875,
|
| 2058 |
+
"learning_rate": 1.8446666666666667e-05,
|
| 2059 |
+
"loss": 2.2334,
|
| 2060 |
+
"mean_token_accuracy": 0.5763995088636875,
|
| 2061 |
+
"num_tokens": 24187023.0,
|
| 2062 |
+
"step": 1700
|
| 2063 |
+
},
|
| 2064 |
+
{
|
| 2065 |
+
"epoch": 1.3599999999999999,
|
| 2066 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 2067 |
+
"eval_coding_loss": 1.2625732421875,
|
| 2068 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 2069 |
+
"eval_coding_num_tokens": 24187023.0,
|
| 2070 |
+
"eval_coding_runtime": 95.7407,
|
| 2071 |
+
"eval_coding_samples_per_second": 5.222,
|
| 2072 |
+
"eval_coding_steps_per_second": 2.611,
|
| 2073 |
+
"step": 1700
|
| 2074 |
+
},
|
| 2075 |
+
{
|
| 2076 |
+
"epoch": 1.3599999999999999,
|
| 2077 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 2078 |
+
"eval_math_loss": 2.2429049015045166,
|
| 2079 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 2080 |
+
"eval_math_num_tokens": 24187023.0,
|
| 2081 |
+
"eval_math_runtime": 55.2772,
|
| 2082 |
+
"eval_math_samples_per_second": 9.045,
|
| 2083 |
+
"eval_math_steps_per_second": 4.523,
|
| 2084 |
+
"step": 1700
|
| 2085 |
+
},
|
| 2086 |
+
{
|
| 2087 |
+
"entropy": 1.2914761129766703,
|
| 2088 |
+
"epoch": 1.3679999999999999,
|
| 2089 |
+
"grad_norm": 0.007598876953125,
|
| 2090 |
+
"learning_rate": 1.842444444444445e-05,
|
| 2091 |
+
"loss": 2.2328,
|
| 2092 |
+
"mean_token_accuracy": 0.5740274475887418,
|
| 2093 |
+
"num_tokens": 24325844.0,
|
| 2094 |
+
"step": 1710
|
| 2095 |
+
},
|
| 2096 |
+
{
|
| 2097 |
+
"entropy": 1.353976671770215,
|
| 2098 |
+
"epoch": 1.376,
|
| 2099 |
+
"grad_norm": 0.01495361328125,
|
| 2100 |
+
"learning_rate": 1.8402222222222223e-05,
|
| 2101 |
+
"loss": 2.3016,
|
| 2102 |
+
"mean_token_accuracy": 0.5633362045511603,
|
| 2103 |
+
"num_tokens": 24466132.0,
|
| 2104 |
+
"step": 1720
|
| 2105 |
+
},
|
| 2106 |
+
{
|
| 2107 |
+
"entropy": 1.2960197813808918,
|
| 2108 |
+
"epoch": 1.384,
|
| 2109 |
+
"grad_norm": 0.00830078125,
|
| 2110 |
+
"learning_rate": 1.8380000000000004e-05,
|
| 2111 |
+
"loss": 2.2201,
|
| 2112 |
+
"mean_token_accuracy": 0.5783739054575563,
|
| 2113 |
+
"num_tokens": 24606147.0,
|
| 2114 |
+
"step": 1730
|
| 2115 |
+
},
|
| 2116 |
+
{
|
| 2117 |
+
"entropy": 1.2861021481454373,
|
| 2118 |
+
"epoch": 1.392,
|
| 2119 |
+
"grad_norm": 0.00933837890625,
|
| 2120 |
+
"learning_rate": 1.8357777777777778e-05,
|
| 2121 |
+
"loss": 2.1876,
|
| 2122 |
+
"mean_token_accuracy": 0.5815011257305741,
|
| 2123 |
+
"num_tokens": 24748043.0,
|
| 2124 |
+
"step": 1740
|
| 2125 |
+
},
|
| 2126 |
+
{
|
| 2127 |
+
"entropy": 1.268753108009696,
|
| 2128 |
+
"epoch": 1.4,
|
| 2129 |
+
"grad_norm": 0.0189208984375,
|
| 2130 |
+
"learning_rate": 1.833555555555556e-05,
|
| 2131 |
+
"loss": 2.2244,
|
| 2132 |
+
"mean_token_accuracy": 0.5804416090250015,
|
| 2133 |
+
"num_tokens": 24894293.0,
|
| 2134 |
+
"step": 1750
|
| 2135 |
+
},
|
| 2136 |
+
{
|
| 2137 |
+
"entropy": 1.2929484587162734,
|
| 2138 |
+
"epoch": 1.408,
|
| 2139 |
+
"grad_norm": 0.021240234375,
|
| 2140 |
+
"learning_rate": 1.8313333333333333e-05,
|
| 2141 |
+
"loss": 2.2083,
|
| 2142 |
+
"mean_token_accuracy": 0.575320690125227,
|
| 2143 |
+
"num_tokens": 25036674.0,
|
| 2144 |
+
"step": 1760
|
| 2145 |
+
},
|
| 2146 |
+
{
|
| 2147 |
+
"entropy": 1.2982839655131102,
|
| 2148 |
+
"epoch": 1.416,
|
| 2149 |
+
"grad_norm": 0.021484375,
|
| 2150 |
+
"learning_rate": 1.8291111111111114e-05,
|
| 2151 |
+
"loss": 2.2784,
|
| 2152 |
+
"mean_token_accuracy": 0.5741079377010465,
|
| 2153 |
+
"num_tokens": 25178935.0,
|
| 2154 |
+
"step": 1770
|
| 2155 |
+
},
|
| 2156 |
+
{
|
| 2157 |
+
"entropy": 1.2535257052630187,
|
| 2158 |
+
"epoch": 1.424,
|
| 2159 |
+
"grad_norm": 0.007110595703125,
|
| 2160 |
+
"learning_rate": 1.8268888888888888e-05,
|
| 2161 |
+
"loss": 2.1463,
|
| 2162 |
+
"mean_token_accuracy": 0.5878499284386635,
|
| 2163 |
+
"num_tokens": 25324579.0,
|
| 2164 |
+
"step": 1780
|
| 2165 |
+
},
|
| 2166 |
+
{
|
| 2167 |
+
"entropy": 1.286781796067953,
|
| 2168 |
+
"epoch": 1.432,
|
| 2169 |
+
"grad_norm": 0.0107421875,
|
| 2170 |
+
"learning_rate": 1.824666666666667e-05,
|
| 2171 |
+
"loss": 2.2089,
|
| 2172 |
+
"mean_token_accuracy": 0.576385061070323,
|
| 2173 |
+
"num_tokens": 25466485.0,
|
| 2174 |
+
"step": 1790
|
| 2175 |
+
},
|
| 2176 |
+
{
|
| 2177 |
+
"entropy": 1.3003978207707405,
|
| 2178 |
+
"epoch": 1.44,
|
| 2179 |
+
"grad_norm": 0.016357421875,
|
| 2180 |
+
"learning_rate": 1.8224444444444447e-05,
|
| 2181 |
+
"loss": 2.2481,
|
| 2182 |
+
"mean_token_accuracy": 0.5751635741442442,
|
| 2183 |
+
"num_tokens": 25606824.0,
|
| 2184 |
+
"step": 1800
|
| 2185 |
+
},
|
| 2186 |
+
{
|
| 2187 |
+
"epoch": 1.44,
|
| 2188 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 2189 |
+
"eval_coding_loss": 1.2625732421875,
|
| 2190 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 2191 |
+
"eval_coding_num_tokens": 25606824.0,
|
| 2192 |
+
"eval_coding_runtime": 95.6673,
|
| 2193 |
+
"eval_coding_samples_per_second": 5.226,
|
| 2194 |
+
"eval_coding_steps_per_second": 2.613,
|
| 2195 |
+
"step": 1800
|
| 2196 |
+
},
|
| 2197 |
+
{
|
| 2198 |
+
"epoch": 1.44,
|
| 2199 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 2200 |
+
"eval_math_loss": 2.2429049015045166,
|
| 2201 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 2202 |
+
"eval_math_num_tokens": 25606824.0,
|
| 2203 |
+
"eval_math_runtime": 55.2224,
|
| 2204 |
+
"eval_math_samples_per_second": 9.054,
|
| 2205 |
+
"eval_math_steps_per_second": 4.527,
|
| 2206 |
+
"step": 1800
|
| 2207 |
+
},
|
| 2208 |
+
{
|
| 2209 |
+
"entropy": 1.2908053163439035,
|
| 2210 |
+
"epoch": 1.448,
|
| 2211 |
+
"grad_norm": 0.00799560546875,
|
| 2212 |
+
"learning_rate": 1.8202222222222225e-05,
|
| 2213 |
+
"loss": 2.1957,
|
| 2214 |
+
"mean_token_accuracy": 0.5789953164756299,
|
| 2215 |
+
"num_tokens": 25745729.0,
|
| 2216 |
+
"step": 1810
|
| 2217 |
+
},
|
| 2218 |
+
{
|
| 2219 |
+
"entropy": 1.273376001417637,
|
| 2220 |
+
"epoch": 1.456,
|
| 2221 |
+
"grad_norm": 0.01336669921875,
|
| 2222 |
+
"learning_rate": 1.8180000000000002e-05,
|
| 2223 |
+
"loss": 2.1926,
|
| 2224 |
+
"mean_token_accuracy": 0.5779400140047073,
|
| 2225 |
+
"num_tokens": 25886396.0,
|
| 2226 |
+
"step": 1820
|
| 2227 |
+
},
|
| 2228 |
+
{
|
| 2229 |
+
"entropy": 1.2855514109134674,
|
| 2230 |
+
"epoch": 1.464,
|
| 2231 |
+
"grad_norm": 0.010498046875,
|
| 2232 |
+
"learning_rate": 1.815777777777778e-05,
|
| 2233 |
+
"loss": 2.2374,
|
| 2234 |
+
"mean_token_accuracy": 0.5767241906374693,
|
| 2235 |
+
"num_tokens": 26026227.0,
|
| 2236 |
+
"step": 1830
|
| 2237 |
+
},
|
| 2238 |
+
{
|
| 2239 |
+
"entropy": 1.2807271871715784,
|
| 2240 |
+
"epoch": 1.472,
|
| 2241 |
+
"grad_norm": 0.00823974609375,
|
| 2242 |
+
"learning_rate": 1.8135555555555557e-05,
|
| 2243 |
+
"loss": 2.1749,
|
| 2244 |
+
"mean_token_accuracy": 0.5822155047208071,
|
| 2245 |
+
"num_tokens": 26163618.0,
|
| 2246 |
+
"step": 1840
|
| 2247 |
+
},
|
| 2248 |
+
{
|
| 2249 |
+
"entropy": 1.3182869713753462,
|
| 2250 |
+
"epoch": 1.48,
|
| 2251 |
+
"grad_norm": 0.01318359375,
|
| 2252 |
+
"learning_rate": 1.8113333333333335e-05,
|
| 2253 |
+
"loss": 2.2544,
|
| 2254 |
+
"mean_token_accuracy": 0.5738100804388523,
|
| 2255 |
+
"num_tokens": 26299086.0,
|
| 2256 |
+
"step": 1850
|
| 2257 |
+
},
|
| 2258 |
+
{
|
| 2259 |
+
"entropy": 1.3167364660650491,
|
| 2260 |
+
"epoch": 1.488,
|
| 2261 |
+
"grad_norm": 0.01043701171875,
|
| 2262 |
+
"learning_rate": 1.8091111111111113e-05,
|
| 2263 |
+
"loss": 2.2364,
|
| 2264 |
+
"mean_token_accuracy": 0.5735991884022951,
|
| 2265 |
+
"num_tokens": 26438338.0,
|
| 2266 |
+
"step": 1860
|
| 2267 |
+
},
|
| 2268 |
+
{
|
| 2269 |
+
"entropy": 1.2824474953114986,
|
| 2270 |
+
"epoch": 1.496,
|
| 2271 |
+
"grad_norm": 0.0125732421875,
|
| 2272 |
+
"learning_rate": 1.806888888888889e-05,
|
| 2273 |
+
"loss": 2.2469,
|
| 2274 |
+
"mean_token_accuracy": 0.5744533261284233,
|
| 2275 |
+
"num_tokens": 26583001.0,
|
| 2276 |
+
"step": 1870
|
| 2277 |
+
},
|
| 2278 |
+
{
|
| 2279 |
+
"entropy": 1.277822620794177,
|
| 2280 |
+
"epoch": 1.504,
|
| 2281 |
+
"grad_norm": 0.018798828125,
|
| 2282 |
+
"learning_rate": 1.8046666666666668e-05,
|
| 2283 |
+
"loss": 2.2308,
|
| 2284 |
+
"mean_token_accuracy": 0.5790910394862294,
|
| 2285 |
+
"num_tokens": 26729255.0,
|
| 2286 |
+
"step": 1880
|
| 2287 |
+
},
|
| 2288 |
+
{
|
| 2289 |
+
"entropy": 1.2929816491901875,
|
| 2290 |
+
"epoch": 1.512,
|
| 2291 |
+
"grad_norm": 0.00946044921875,
|
| 2292 |
+
"learning_rate": 1.8024444444444445e-05,
|
| 2293 |
+
"loss": 2.2212,
|
| 2294 |
+
"mean_token_accuracy": 0.5757774453610182,
|
| 2295 |
+
"num_tokens": 26870139.0,
|
| 2296 |
+
"step": 1890
|
| 2297 |
+
},
|
| 2298 |
+
{
|
| 2299 |
+
"entropy": 1.28971153460443,
|
| 2300 |
+
"epoch": 1.52,
|
| 2301 |
+
"grad_norm": 0.010498046875,
|
| 2302 |
+
"learning_rate": 1.8002222222222223e-05,
|
| 2303 |
+
"loss": 2.2155,
|
| 2304 |
+
"mean_token_accuracy": 0.5779576146975159,
|
| 2305 |
+
"num_tokens": 27017935.0,
|
| 2306 |
+
"step": 1900
|
| 2307 |
+
},
|
| 2308 |
+
{
|
| 2309 |
+
"epoch": 1.52,
|
| 2310 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 2311 |
+
"eval_coding_loss": 1.2625732421875,
|
| 2312 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 2313 |
+
"eval_coding_num_tokens": 27017935.0,
|
| 2314 |
+
"eval_coding_runtime": 95.8867,
|
| 2315 |
+
"eval_coding_samples_per_second": 5.214,
|
| 2316 |
+
"eval_coding_steps_per_second": 2.607,
|
| 2317 |
+
"step": 1900
|
| 2318 |
+
},
|
| 2319 |
+
{
|
| 2320 |
+
"epoch": 1.52,
|
| 2321 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 2322 |
+
"eval_math_loss": 2.2429049015045166,
|
| 2323 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 2324 |
+
"eval_math_num_tokens": 27017935.0,
|
| 2325 |
+
"eval_math_runtime": 55.1777,
|
| 2326 |
+
"eval_math_samples_per_second": 9.062,
|
| 2327 |
+
"eval_math_steps_per_second": 4.531,
|
| 2328 |
+
"step": 1900
|
| 2329 |
+
},
|
| 2330 |
+
{
|
| 2331 |
+
"entropy": 1.331830918043852,
|
| 2332 |
+
"epoch": 1.528,
|
| 2333 |
+
"grad_norm": 0.009033203125,
|
| 2334 |
+
"learning_rate": 1.798e-05,
|
| 2335 |
+
"loss": 2.2721,
|
| 2336 |
+
"mean_token_accuracy": 0.5682261852547527,
|
| 2337 |
+
"num_tokens": 27159322.0,
|
| 2338 |
+
"step": 1910
|
| 2339 |
+
},
|
| 2340 |
+
{
|
| 2341 |
+
"entropy": 1.2588583029806615,
|
| 2342 |
+
"epoch": 1.536,
|
| 2343 |
+
"grad_norm": 0.00848388671875,
|
| 2344 |
+
"learning_rate": 1.7957777777777778e-05,
|
| 2345 |
+
"loss": 2.1588,
|
| 2346 |
+
"mean_token_accuracy": 0.5847917202860117,
|
| 2347 |
+
"num_tokens": 27306339.0,
|
| 2348 |
+
"step": 1920
|
| 2349 |
+
},
|
| 2350 |
+
{
|
| 2351 |
+
"entropy": 1.2904524333775043,
|
| 2352 |
+
"epoch": 1.544,
|
| 2353 |
+
"grad_norm": 0.01312255859375,
|
| 2354 |
+
"learning_rate": 1.7935555555555556e-05,
|
| 2355 |
+
"loss": 2.2221,
|
| 2356 |
+
"mean_token_accuracy": 0.5756975743919611,
|
| 2357 |
+
"num_tokens": 27445653.0,
|
| 2358 |
+
"step": 1930
|
| 2359 |
+
},
|
| 2360 |
+
{
|
| 2361 |
+
"entropy": 1.2871752437204123,
|
| 2362 |
+
"epoch": 1.552,
|
| 2363 |
+
"grad_norm": 0.00830078125,
|
| 2364 |
+
"learning_rate": 1.7913333333333337e-05,
|
| 2365 |
+
"loss": 2.22,
|
| 2366 |
+
"mean_token_accuracy": 0.5743231695145369,
|
| 2367 |
+
"num_tokens": 27591959.0,
|
| 2368 |
+
"step": 1940
|
| 2369 |
+
},
|
| 2370 |
+
{
|
| 2371 |
+
"entropy": 1.2857405241578816,
|
| 2372 |
+
"epoch": 1.56,
|
| 2373 |
+
"grad_norm": 0.0101318359375,
|
| 2374 |
+
"learning_rate": 1.789111111111111e-05,
|
| 2375 |
+
"loss": 2.2188,
|
| 2376 |
+
"mean_token_accuracy": 0.5781919835135341,
|
| 2377 |
+
"num_tokens": 27736783.0,
|
| 2378 |
+
"step": 1950
|
| 2379 |
+
},
|
| 2380 |
+
{
|
| 2381 |
+
"entropy": 1.2675248205661773,
|
| 2382 |
+
"epoch": 1.568,
|
| 2383 |
+
"grad_norm": 0.009033203125,
|
| 2384 |
+
"learning_rate": 1.7868888888888892e-05,
|
| 2385 |
+
"loss": 2.2334,
|
| 2386 |
+
"mean_token_accuracy": 0.5779768938198686,
|
| 2387 |
+
"num_tokens": 27884398.0,
|
| 2388 |
+
"step": 1960
|
| 2389 |
+
},
|
| 2390 |
+
{
|
| 2391 |
+
"entropy": 1.3143243368715047,
|
| 2392 |
+
"epoch": 1.576,
|
| 2393 |
+
"grad_norm": 0.01068115234375,
|
| 2394 |
+
"learning_rate": 1.7846666666666666e-05,
|
| 2395 |
+
"loss": 2.2206,
|
| 2396 |
+
"mean_token_accuracy": 0.5736559564247727,
|
| 2397 |
+
"num_tokens": 28025205.0,
|
| 2398 |
+
"step": 1970
|
| 2399 |
+
},
|
| 2400 |
+
{
|
| 2401 |
+
"entropy": 1.2710258401930332,
|
| 2402 |
+
"epoch": 1.584,
|
| 2403 |
+
"grad_norm": 0.00933837890625,
|
| 2404 |
+
"learning_rate": 1.7824444444444447e-05,
|
| 2405 |
+
"loss": 2.1864,
|
| 2406 |
+
"mean_token_accuracy": 0.5820634830743074,
|
| 2407 |
+
"num_tokens": 28171274.0,
|
| 2408 |
+
"step": 1980
|
| 2409 |
+
},
|
| 2410 |
+
{
|
| 2411 |
+
"entropy": 1.2678415119647979,
|
| 2412 |
+
"epoch": 1.592,
|
| 2413 |
+
"grad_norm": 0.0164794921875,
|
| 2414 |
+
"learning_rate": 1.780222222222222e-05,
|
| 2415 |
+
"loss": 2.2105,
|
| 2416 |
+
"mean_token_accuracy": 0.5788672368973493,
|
| 2417 |
+
"num_tokens": 28311058.0,
|
| 2418 |
+
"step": 1990
|
| 2419 |
+
},
|
| 2420 |
+
{
|
| 2421 |
+
"entropy": 1.2863474819809197,
|
| 2422 |
+
"epoch": 1.6,
|
| 2423 |
+
"grad_norm": 0.0166015625,
|
| 2424 |
+
"learning_rate": 1.7780000000000003e-05,
|
| 2425 |
+
"loss": 2.2279,
|
| 2426 |
+
"mean_token_accuracy": 0.5786767426878214,
|
| 2427 |
+
"num_tokens": 28457624.0,
|
| 2428 |
+
"step": 2000
|
| 2429 |
+
},
|
| 2430 |
+
{
|
| 2431 |
+
"epoch": 1.6,
|
| 2432 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 2433 |
+
"eval_coding_loss": 1.2625732421875,
|
| 2434 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 2435 |
+
"eval_coding_num_tokens": 28457624.0,
|
| 2436 |
+
"eval_coding_runtime": 95.6104,
|
| 2437 |
+
"eval_coding_samples_per_second": 5.23,
|
| 2438 |
+
"eval_coding_steps_per_second": 2.615,
|
| 2439 |
+
"step": 2000
|
| 2440 |
+
},
|
| 2441 |
+
{
|
| 2442 |
+
"epoch": 1.6,
|
| 2443 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 2444 |
+
"eval_math_loss": 2.2429049015045166,
|
| 2445 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 2446 |
+
"eval_math_num_tokens": 28457624.0,
|
| 2447 |
+
"eval_math_runtime": 54.9191,
|
| 2448 |
+
"eval_math_samples_per_second": 9.104,
|
| 2449 |
+
"eval_math_steps_per_second": 4.552,
|
| 2450 |
+
"step": 2000
|
| 2451 |
+
},
|
| 2452 |
+
{
|
| 2453 |
+
"entropy": 1.2830137602984906,
|
| 2454 |
+
"epoch": 1.608,
|
| 2455 |
+
"grad_norm": 0.0106201171875,
|
| 2456 |
+
"learning_rate": 1.7757777777777777e-05,
|
| 2457 |
+
"loss": 2.2003,
|
| 2458 |
+
"mean_token_accuracy": 0.5824803166091442,
|
| 2459 |
+
"num_tokens": 28596873.0,
|
| 2460 |
+
"step": 2010
|
| 2461 |
+
},
|
| 2462 |
+
{
|
| 2463 |
+
"entropy": 1.2611587464809417,
|
| 2464 |
+
"epoch": 1.616,
|
| 2465 |
+
"grad_norm": 0.0096435546875,
|
| 2466 |
+
"learning_rate": 1.7735555555555558e-05,
|
| 2467 |
+
"loss": 2.2051,
|
| 2468 |
+
"mean_token_accuracy": 0.5801194369792938,
|
| 2469 |
+
"num_tokens": 28743099.0,
|
| 2470 |
+
"step": 2020
|
| 2471 |
+
},
|
| 2472 |
+
{
|
| 2473 |
+
"entropy": 1.2799949057400226,
|
| 2474 |
+
"epoch": 1.624,
|
| 2475 |
+
"grad_norm": 0.022216796875,
|
| 2476 |
+
"learning_rate": 1.7713333333333335e-05,
|
| 2477 |
+
"loss": 2.18,
|
| 2478 |
+
"mean_token_accuracy": 0.5814657608047128,
|
| 2479 |
+
"num_tokens": 28879957.0,
|
| 2480 |
+
"step": 2030
|
| 2481 |
+
},
|
| 2482 |
+
{
|
| 2483 |
+
"entropy": 1.2996047288179398,
|
| 2484 |
+
"epoch": 1.6320000000000001,
|
| 2485 |
+
"grad_norm": 0.00909423828125,
|
| 2486 |
+
"learning_rate": 1.7691111111111113e-05,
|
| 2487 |
+
"loss": 2.228,
|
| 2488 |
+
"mean_token_accuracy": 0.5740914199501276,
|
| 2489 |
+
"num_tokens": 29017297.0,
|
| 2490 |
+
"step": 2040
|
| 2491 |
+
},
|
| 2492 |
+
{
|
| 2493 |
+
"entropy": 1.2752723470330238,
|
| 2494 |
+
"epoch": 1.6400000000000001,
|
| 2495 |
+
"grad_norm": 0.0130615234375,
|
| 2496 |
+
"learning_rate": 1.766888888888889e-05,
|
| 2497 |
+
"loss": 2.2487,
|
| 2498 |
+
"mean_token_accuracy": 0.5742017710581422,
|
| 2499 |
+
"num_tokens": 29157749.0,
|
| 2500 |
+
"step": 2050
|
| 2501 |
+
},
|
| 2502 |
+
{
|
| 2503 |
+
"entropy": 1.3013451684266328,
|
| 2504 |
+
"epoch": 1.6480000000000001,
|
| 2505 |
+
"grad_norm": 0.01385498046875,
|
| 2506 |
+
"learning_rate": 1.7646666666666668e-05,
|
| 2507 |
+
"loss": 2.3175,
|
| 2508 |
+
"mean_token_accuracy": 0.5703034419566393,
|
| 2509 |
+
"num_tokens": 29303707.0,
|
| 2510 |
+
"step": 2060
|
| 2511 |
+
},
|
| 2512 |
+
{
|
| 2513 |
+
"entropy": 1.304162911698222,
|
| 2514 |
+
"epoch": 1.6560000000000001,
|
| 2515 |
+
"grad_norm": 0.01080322265625,
|
| 2516 |
+
"learning_rate": 1.7624444444444446e-05,
|
| 2517 |
+
"loss": 2.232,
|
| 2518 |
+
"mean_token_accuracy": 0.57036411780864,
|
| 2519 |
+
"num_tokens": 29451704.0,
|
| 2520 |
+
"step": 2070
|
| 2521 |
+
},
|
| 2522 |
+
{
|
| 2523 |
+
"entropy": 1.3023692607879638,
|
| 2524 |
+
"epoch": 1.6640000000000001,
|
| 2525 |
+
"grad_norm": 0.00958251953125,
|
| 2526 |
+
"learning_rate": 1.7602222222222223e-05,
|
| 2527 |
+
"loss": 2.3071,
|
| 2528 |
+
"mean_token_accuracy": 0.5682701950892806,
|
| 2529 |
+
"num_tokens": 29597156.0,
|
| 2530 |
+
"step": 2080
|
| 2531 |
+
},
|
| 2532 |
+
{
|
| 2533 |
+
"entropy": 1.3417928781360389,
|
| 2534 |
+
"epoch": 1.6720000000000002,
|
| 2535 |
+
"grad_norm": 0.00799560546875,
|
| 2536 |
+
"learning_rate": 1.758e-05,
|
| 2537 |
+
"loss": 2.3297,
|
| 2538 |
+
"mean_token_accuracy": 0.5636330522596836,
|
| 2539 |
+
"num_tokens": 29742548.0,
|
| 2540 |
+
"step": 2090
|
| 2541 |
+
},
|
| 2542 |
+
{
|
| 2543 |
+
"entropy": 1.2841915670782327,
|
| 2544 |
+
"epoch": 1.6800000000000002,
|
| 2545 |
+
"grad_norm": 0.0145263671875,
|
| 2546 |
+
"learning_rate": 1.755777777777778e-05,
|
| 2547 |
+
"loss": 2.2147,
|
| 2548 |
+
"mean_token_accuracy": 0.577384028956294,
|
| 2549 |
+
"num_tokens": 29883879.0,
|
| 2550 |
+
"step": 2100
|
| 2551 |
+
},
|
| 2552 |
+
{
|
| 2553 |
+
"epoch": 1.6800000000000002,
|
| 2554 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 2555 |
+
"eval_coding_loss": 1.2625732421875,
|
| 2556 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 2557 |
+
"eval_coding_num_tokens": 29883879.0,
|
| 2558 |
+
"eval_coding_runtime": 95.7951,
|
| 2559 |
+
"eval_coding_samples_per_second": 5.219,
|
| 2560 |
+
"eval_coding_steps_per_second": 2.61,
|
| 2561 |
+
"step": 2100
|
| 2562 |
+
},
|
| 2563 |
+
{
|
| 2564 |
+
"epoch": 1.6800000000000002,
|
| 2565 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 2566 |
+
"eval_math_loss": 2.2429049015045166,
|
| 2567 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 2568 |
+
"eval_math_num_tokens": 29883879.0,
|
| 2569 |
+
"eval_math_runtime": 55.3225,
|
| 2570 |
+
"eval_math_samples_per_second": 9.038,
|
| 2571 |
+
"eval_math_steps_per_second": 4.519,
|
| 2572 |
+
"step": 2100
|
| 2573 |
+
},
|
| 2574 |
+
{
|
| 2575 |
+
"entropy": 1.3463446274399757,
|
| 2576 |
+
"epoch": 1.688,
|
| 2577 |
+
"grad_norm": 0.008544921875,
|
| 2578 |
+
"learning_rate": 1.7535555555555556e-05,
|
| 2579 |
+
"loss": 2.3129,
|
| 2580 |
+
"mean_token_accuracy": 0.5622479008510709,
|
| 2581 |
+
"num_tokens": 30021432.0,
|
| 2582 |
+
"step": 2110
|
| 2583 |
+
},
|
| 2584 |
+
{
|
| 2585 |
+
"entropy": 1.2785694867372512,
|
| 2586 |
+
"epoch": 1.696,
|
| 2587 |
+
"grad_norm": 0.01153564453125,
|
| 2588 |
+
"learning_rate": 1.7513333333333334e-05,
|
| 2589 |
+
"loss": 2.1504,
|
| 2590 |
+
"mean_token_accuracy": 0.5831738755106926,
|
| 2591 |
+
"num_tokens": 30165760.0,
|
| 2592 |
+
"step": 2120
|
| 2593 |
+
},
|
| 2594 |
+
{
|
| 2595 |
+
"entropy": 1.2976561665534974,
|
| 2596 |
+
"epoch": 1.704,
|
| 2597 |
+
"grad_norm": 0.01470947265625,
|
| 2598 |
+
"learning_rate": 1.749111111111111e-05,
|
| 2599 |
+
"loss": 2.2799,
|
| 2600 |
+
"mean_token_accuracy": 0.5709299927577376,
|
| 2601 |
+
"num_tokens": 30310423.0,
|
| 2602 |
+
"step": 2130
|
| 2603 |
+
},
|
| 2604 |
+
{
|
| 2605 |
+
"entropy": 1.2957756463438272,
|
| 2606 |
+
"epoch": 1.712,
|
| 2607 |
+
"grad_norm": 0.0162353515625,
|
| 2608 |
+
"learning_rate": 1.746888888888889e-05,
|
| 2609 |
+
"loss": 2.2237,
|
| 2610 |
+
"mean_token_accuracy": 0.5762341121211648,
|
| 2611 |
+
"num_tokens": 30460367.0,
|
| 2612 |
+
"step": 2140
|
| 2613 |
+
},
|
| 2614 |
+
{
|
| 2615 |
+
"entropy": 1.271959536150098,
|
| 2616 |
+
"epoch": 1.72,
|
| 2617 |
+
"grad_norm": 0.0150146484375,
|
| 2618 |
+
"learning_rate": 1.7446666666666667e-05,
|
| 2619 |
+
"loss": 2.1793,
|
| 2620 |
+
"mean_token_accuracy": 0.583464378863573,
|
| 2621 |
+
"num_tokens": 30599087.0,
|
| 2622 |
+
"step": 2150
|
| 2623 |
+
},
|
| 2624 |
+
{
|
| 2625 |
+
"entropy": 1.2943123504519463,
|
| 2626 |
+
"epoch": 1.728,
|
| 2627 |
+
"grad_norm": 0.01397705078125,
|
| 2628 |
+
"learning_rate": 1.7424444444444444e-05,
|
| 2629 |
+
"loss": 2.244,
|
| 2630 |
+
"mean_token_accuracy": 0.574753126129508,
|
| 2631 |
+
"num_tokens": 30739137.0,
|
| 2632 |
+
"step": 2160
|
| 2633 |
+
},
|
| 2634 |
+
{
|
| 2635 |
+
"entropy": 1.2751156952232123,
|
| 2636 |
+
"epoch": 1.736,
|
| 2637 |
+
"grad_norm": 0.018310546875,
|
| 2638 |
+
"learning_rate": 1.7402222222222222e-05,
|
| 2639 |
+
"loss": 2.2126,
|
| 2640 |
+
"mean_token_accuracy": 0.5764897288754582,
|
| 2641 |
+
"num_tokens": 30879704.0,
|
| 2642 |
+
"step": 2170
|
| 2643 |
+
},
|
| 2644 |
+
{
|
| 2645 |
+
"entropy": 1.299079880863428,
|
| 2646 |
+
"epoch": 1.744,
|
| 2647 |
+
"grad_norm": 0.01104736328125,
|
| 2648 |
+
"learning_rate": 1.7380000000000003e-05,
|
| 2649 |
+
"loss": 2.2377,
|
| 2650 |
+
"mean_token_accuracy": 0.5790093712508678,
|
| 2651 |
+
"num_tokens": 31022663.0,
|
| 2652 |
+
"step": 2180
|
| 2653 |
+
},
|
| 2654 |
+
{
|
| 2655 |
+
"entropy": 1.2831699021160603,
|
| 2656 |
+
"epoch": 1.752,
|
| 2657 |
+
"grad_norm": 0.01123046875,
|
| 2658 |
+
"learning_rate": 1.735777777777778e-05,
|
| 2659 |
+
"loss": 2.262,
|
| 2660 |
+
"mean_token_accuracy": 0.5739267244935036,
|
| 2661 |
+
"num_tokens": 31165247.0,
|
| 2662 |
+
"step": 2190
|
| 2663 |
+
},
|
| 2664 |
+
{
|
| 2665 |
+
"entropy": 1.2874018415808677,
|
| 2666 |
+
"epoch": 1.76,
|
| 2667 |
+
"grad_norm": 0.00897216796875,
|
| 2668 |
+
"learning_rate": 1.7335555555555558e-05,
|
| 2669 |
+
"loss": 2.2014,
|
| 2670 |
+
"mean_token_accuracy": 0.5775377094745636,
|
| 2671 |
+
"num_tokens": 31306494.0,
|
| 2672 |
+
"step": 2200
|
| 2673 |
+
},
|
| 2674 |
+
{
|
| 2675 |
+
"epoch": 1.76,
|
| 2676 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 2677 |
+
"eval_coding_loss": 1.2625732421875,
|
| 2678 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 2679 |
+
"eval_coding_num_tokens": 31306494.0,
|
| 2680 |
+
"eval_coding_runtime": 95.9365,
|
| 2681 |
+
"eval_coding_samples_per_second": 5.212,
|
| 2682 |
+
"eval_coding_steps_per_second": 2.606,
|
| 2683 |
+
"step": 2200
|
| 2684 |
+
},
|
| 2685 |
+
{
|
| 2686 |
+
"epoch": 1.76,
|
| 2687 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 2688 |
+
"eval_math_loss": 2.2429049015045166,
|
| 2689 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 2690 |
+
"eval_math_num_tokens": 31306494.0,
|
| 2691 |
+
"eval_math_runtime": 55.399,
|
| 2692 |
+
"eval_math_samples_per_second": 9.025,
|
| 2693 |
+
"eval_math_steps_per_second": 4.513,
|
| 2694 |
+
"step": 2200
|
| 2695 |
+
},
|
| 2696 |
+
{
|
| 2697 |
+
"entropy": 1.2959019318223,
|
| 2698 |
+
"epoch": 1.768,
|
| 2699 |
+
"grad_norm": 0.0103759765625,
|
| 2700 |
+
"learning_rate": 1.7313333333333336e-05,
|
| 2701 |
+
"loss": 2.2007,
|
| 2702 |
+
"mean_token_accuracy": 0.5745534107089043,
|
| 2703 |
+
"num_tokens": 31453005.0,
|
| 2704 |
+
"step": 2210
|
| 2705 |
+
},
|
| 2706 |
+
{
|
| 2707 |
+
"entropy": 1.2907120745629073,
|
| 2708 |
+
"epoch": 1.776,
|
| 2709 |
+
"grad_norm": 0.00811767578125,
|
| 2710 |
+
"learning_rate": 1.7291111111111113e-05,
|
| 2711 |
+
"loss": 2.2072,
|
| 2712 |
+
"mean_token_accuracy": 0.5794584035873414,
|
| 2713 |
+
"num_tokens": 31595542.0,
|
| 2714 |
+
"step": 2220
|
| 2715 |
+
},
|
| 2716 |
+
{
|
| 2717 |
+
"entropy": 1.3281429823487998,
|
| 2718 |
+
"epoch": 1.784,
|
| 2719 |
+
"grad_norm": 0.00921630859375,
|
| 2720 |
+
"learning_rate": 1.726888888888889e-05,
|
| 2721 |
+
"loss": 2.2677,
|
| 2722 |
+
"mean_token_accuracy": 0.5697854256257415,
|
| 2723 |
+
"num_tokens": 31739430.0,
|
| 2724 |
+
"step": 2230
|
| 2725 |
+
},
|
| 2726 |
+
{
|
| 2727 |
+
"entropy": 1.2947735518217087,
|
| 2728 |
+
"epoch": 1.792,
|
| 2729 |
+
"grad_norm": 0.010009765625,
|
| 2730 |
+
"learning_rate": 1.724666666666667e-05,
|
| 2731 |
+
"loss": 2.2826,
|
| 2732 |
+
"mean_token_accuracy": 0.5691228969022631,
|
| 2733 |
+
"num_tokens": 31881189.0,
|
| 2734 |
+
"step": 2240
|
| 2735 |
+
},
|
| 2736 |
+
{
|
| 2737 |
+
"entropy": 1.3216195538640023,
|
| 2738 |
+
"epoch": 1.8,
|
| 2739 |
+
"grad_norm": 0.02099609375,
|
| 2740 |
+
"learning_rate": 1.7224444444444446e-05,
|
| 2741 |
+
"loss": 2.2537,
|
| 2742 |
+
"mean_token_accuracy": 0.5722632765769958,
|
| 2743 |
+
"num_tokens": 32019870.0,
|
| 2744 |
+
"step": 2250
|
| 2745 |
+
},
|
| 2746 |
+
{
|
| 2747 |
+
"entropy": 1.2979170110076665,
|
| 2748 |
+
"epoch": 1.808,
|
| 2749 |
+
"grad_norm": 0.0086669921875,
|
| 2750 |
+
"learning_rate": 1.7202222222222224e-05,
|
| 2751 |
+
"loss": 2.2521,
|
| 2752 |
+
"mean_token_accuracy": 0.5714232046157122,
|
| 2753 |
+
"num_tokens": 32164196.0,
|
| 2754 |
+
"step": 2260
|
| 2755 |
+
},
|
| 2756 |
+
{
|
| 2757 |
+
"entropy": 1.2830505412071944,
|
| 2758 |
+
"epoch": 1.8159999999999998,
|
| 2759 |
+
"grad_norm": 0.014892578125,
|
| 2760 |
+
"learning_rate": 1.718e-05,
|
| 2761 |
+
"loss": 2.1842,
|
| 2762 |
+
"mean_token_accuracy": 0.5806774094700813,
|
| 2763 |
+
"num_tokens": 32301902.0,
|
| 2764 |
+
"step": 2270
|
| 2765 |
+
},
|
| 2766 |
+
{
|
| 2767 |
+
"entropy": 1.2830605674535036,
|
| 2768 |
+
"epoch": 1.8239999999999998,
|
| 2769 |
+
"grad_norm": 0.01495361328125,
|
| 2770 |
+
"learning_rate": 1.715777777777778e-05,
|
| 2771 |
+
"loss": 2.195,
|
| 2772 |
+
"mean_token_accuracy": 0.5759063705801963,
|
| 2773 |
+
"num_tokens": 32441530.0,
|
| 2774 |
+
"step": 2280
|
| 2775 |
+
},
|
| 2776 |
+
{
|
| 2777 |
+
"entropy": 1.311963814869523,
|
| 2778 |
+
"epoch": 1.8319999999999999,
|
| 2779 |
+
"grad_norm": 0.0164794921875,
|
| 2780 |
+
"learning_rate": 1.7135555555555557e-05,
|
| 2781 |
+
"loss": 2.2776,
|
| 2782 |
+
"mean_token_accuracy": 0.5754092259332537,
|
| 2783 |
+
"num_tokens": 32585977.0,
|
| 2784 |
+
"step": 2290
|
| 2785 |
+
},
|
| 2786 |
+
{
|
| 2787 |
+
"entropy": 1.2693091690540315,
|
| 2788 |
+
"epoch": 1.8399999999999999,
|
| 2789 |
+
"grad_norm": 0.01068115234375,
|
| 2790 |
+
"learning_rate": 1.7113333333333334e-05,
|
| 2791 |
+
"loss": 2.2119,
|
| 2792 |
+
"mean_token_accuracy": 0.5778656028211117,
|
| 2793 |
+
"num_tokens": 32723145.0,
|
| 2794 |
+
"step": 2300
|
| 2795 |
+
},
|
| 2796 |
+
{
|
| 2797 |
+
"epoch": 1.8399999999999999,
|
| 2798 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 2799 |
+
"eval_coding_loss": 1.2625732421875,
|
| 2800 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 2801 |
+
"eval_coding_num_tokens": 32723145.0,
|
| 2802 |
+
"eval_coding_runtime": 95.6683,
|
| 2803 |
+
"eval_coding_samples_per_second": 5.226,
|
| 2804 |
+
"eval_coding_steps_per_second": 2.613,
|
| 2805 |
+
"step": 2300
|
| 2806 |
+
},
|
| 2807 |
+
{
|
| 2808 |
+
"epoch": 1.8399999999999999,
|
| 2809 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 2810 |
+
"eval_math_loss": 2.2429049015045166,
|
| 2811 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 2812 |
+
"eval_math_num_tokens": 32723145.0,
|
| 2813 |
+
"eval_math_runtime": 55.6487,
|
| 2814 |
+
"eval_math_samples_per_second": 8.985,
|
| 2815 |
+
"eval_math_steps_per_second": 4.492,
|
| 2816 |
+
"step": 2300
|
| 2817 |
+
},
|
| 2818 |
+
{
|
| 2819 |
+
"entropy": 1.3237025022506714,
|
| 2820 |
+
"epoch": 1.8479999999999999,
|
| 2821 |
+
"grad_norm": 0.01031494140625,
|
| 2822 |
+
"learning_rate": 1.7091111111111112e-05,
|
| 2823 |
+
"loss": 2.2177,
|
| 2824 |
+
"mean_token_accuracy": 0.574722359329462,
|
| 2825 |
+
"num_tokens": 32863234.0,
|
| 2826 |
+
"step": 2310
|
| 2827 |
+
},
|
| 2828 |
+
{
|
| 2829 |
+
"entropy": 1.275765371695161,
|
| 2830 |
+
"epoch": 1.8559999999999999,
|
| 2831 |
+
"grad_norm": 0.01129150390625,
|
| 2832 |
+
"learning_rate": 1.706888888888889e-05,
|
| 2833 |
+
"loss": 2.2107,
|
| 2834 |
+
"mean_token_accuracy": 0.5787948923185467,
|
| 2835 |
+
"num_tokens": 33011263.0,
|
| 2836 |
+
"step": 2320
|
| 2837 |
+
},
|
| 2838 |
+
{
|
| 2839 |
+
"entropy": 1.2966407094150783,
|
| 2840 |
+
"epoch": 1.8639999999999999,
|
| 2841 |
+
"grad_norm": 0.0223388671875,
|
| 2842 |
+
"learning_rate": 1.704666666666667e-05,
|
| 2843 |
+
"loss": 2.2621,
|
| 2844 |
+
"mean_token_accuracy": 0.5736708842217922,
|
| 2845 |
+
"num_tokens": 33154530.0,
|
| 2846 |
+
"step": 2330
|
| 2847 |
+
},
|
| 2848 |
+
{
|
| 2849 |
+
"entropy": 1.2621341615915298,
|
| 2850 |
+
"epoch": 1.8719999999999999,
|
| 2851 |
+
"grad_norm": 0.012939453125,
|
| 2852 |
+
"learning_rate": 1.7024444444444445e-05,
|
| 2853 |
+
"loss": 2.1856,
|
| 2854 |
+
"mean_token_accuracy": 0.5843517240136862,
|
| 2855 |
+
"num_tokens": 33298921.0,
|
| 2856 |
+
"step": 2340
|
| 2857 |
+
},
|
| 2858 |
+
{
|
| 2859 |
+
"entropy": 1.2842210482805967,
|
| 2860 |
+
"epoch": 1.88,
|
| 2861 |
+
"grad_norm": 0.0096435546875,
|
| 2862 |
+
"learning_rate": 1.7002222222222226e-05,
|
| 2863 |
+
"loss": 2.2166,
|
| 2864 |
+
"mean_token_accuracy": 0.5788105214014649,
|
| 2865 |
+
"num_tokens": 33439162.0,
|
| 2866 |
+
"step": 2350
|
| 2867 |
+
},
|
| 2868 |
+
{
|
| 2869 |
+
"entropy": 1.3273503385484218,
|
| 2870 |
+
"epoch": 1.888,
|
| 2871 |
+
"grad_norm": 0.009033203125,
|
| 2872 |
+
"learning_rate": 1.698e-05,
|
| 2873 |
+
"loss": 2.3205,
|
| 2874 |
+
"mean_token_accuracy": 0.5649804914370179,
|
| 2875 |
+
"num_tokens": 33576243.0,
|
| 2876 |
+
"step": 2360
|
| 2877 |
+
},
|
| 2878 |
+
{
|
| 2879 |
+
"entropy": 1.3285773031413555,
|
| 2880 |
+
"epoch": 1.896,
|
| 2881 |
+
"grad_norm": 0.01092529296875,
|
| 2882 |
+
"learning_rate": 1.695777777777778e-05,
|
| 2883 |
+
"loss": 2.2737,
|
| 2884 |
+
"mean_token_accuracy": 0.5666834145784378,
|
| 2885 |
+
"num_tokens": 33713332.0,
|
| 2886 |
+
"step": 2370
|
| 2887 |
+
},
|
| 2888 |
+
{
|
| 2889 |
+
"entropy": 1.285189574584365,
|
| 2890 |
+
"epoch": 1.904,
|
| 2891 |
+
"grad_norm": 0.0103759765625,
|
| 2892 |
+
"learning_rate": 1.6935555555555555e-05,
|
| 2893 |
+
"loss": 2.2133,
|
| 2894 |
+
"mean_token_accuracy": 0.5804513746872544,
|
| 2895 |
+
"num_tokens": 33850968.0,
|
| 2896 |
+
"step": 2380
|
| 2897 |
+
},
|
| 2898 |
+
{
|
| 2899 |
+
"entropy": 1.257584112510085,
|
| 2900 |
+
"epoch": 1.912,
|
| 2901 |
+
"grad_norm": 0.0164794921875,
|
| 2902 |
+
"learning_rate": 1.6913333333333336e-05,
|
| 2903 |
+
"loss": 2.1155,
|
| 2904 |
+
"mean_token_accuracy": 0.591132453083992,
|
| 2905 |
+
"num_tokens": 33991124.0,
|
| 2906 |
+
"step": 2390
|
| 2907 |
+
},
|
| 2908 |
+
{
|
| 2909 |
+
"entropy": 1.2802625011652708,
|
| 2910 |
+
"epoch": 1.92,
|
| 2911 |
+
"grad_norm": 0.01409912109375,
|
| 2912 |
+
"learning_rate": 1.689111111111111e-05,
|
| 2913 |
+
"loss": 2.2186,
|
| 2914 |
+
"mean_token_accuracy": 0.5772865103557706,
|
| 2915 |
+
"num_tokens": 34128558.0,
|
| 2916 |
+
"step": 2400
|
| 2917 |
+
},
|
| 2918 |
+
{
|
| 2919 |
+
"epoch": 1.92,
|
| 2920 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 2921 |
+
"eval_coding_loss": 1.2625732421875,
|
| 2922 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 2923 |
+
"eval_coding_num_tokens": 34128558.0,
|
| 2924 |
+
"eval_coding_runtime": 96.0015,
|
| 2925 |
+
"eval_coding_samples_per_second": 5.208,
|
| 2926 |
+
"eval_coding_steps_per_second": 2.604,
|
| 2927 |
+
"step": 2400
|
| 2928 |
+
},
|
| 2929 |
+
{
|
| 2930 |
+
"epoch": 1.92,
|
| 2931 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 2932 |
+
"eval_math_loss": 2.2429049015045166,
|
| 2933 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 2934 |
+
"eval_math_num_tokens": 34128558.0,
|
| 2935 |
+
"eval_math_runtime": 55.6969,
|
| 2936 |
+
"eval_math_samples_per_second": 8.977,
|
| 2937 |
+
"eval_math_steps_per_second": 4.489,
|
| 2938 |
+
"step": 2400
|
| 2939 |
+
},
|
| 2940 |
+
{
|
| 2941 |
+
"entropy": 1.2687097642570735,
|
| 2942 |
+
"epoch": 1.928,
|
| 2943 |
+
"grad_norm": 0.0159912109375,
|
| 2944 |
+
"learning_rate": 1.686888888888889e-05,
|
| 2945 |
+
"loss": 2.1367,
|
| 2946 |
+
"mean_token_accuracy": 0.5862593906000256,
|
| 2947 |
+
"num_tokens": 34270120.0,
|
| 2948 |
+
"step": 2410
|
| 2949 |
+
},
|
| 2950 |
+
{
|
| 2951 |
+
"entropy": 1.317805266752839,
|
| 2952 |
+
"epoch": 1.936,
|
| 2953 |
+
"grad_norm": 0.0166015625,
|
| 2954 |
+
"learning_rate": 1.684666666666667e-05,
|
| 2955 |
+
"loss": 2.3038,
|
| 2956 |
+
"mean_token_accuracy": 0.5714543428272009,
|
| 2957 |
+
"num_tokens": 34408056.0,
|
| 2958 |
+
"step": 2420
|
| 2959 |
+
},
|
| 2960 |
+
{
|
| 2961 |
+
"entropy": 1.302062715217471,
|
| 2962 |
+
"epoch": 1.944,
|
| 2963 |
+
"grad_norm": 0.00811767578125,
|
| 2964 |
+
"learning_rate": 1.6824444444444447e-05,
|
| 2965 |
+
"loss": 2.2513,
|
| 2966 |
+
"mean_token_accuracy": 0.572655295394361,
|
| 2967 |
+
"num_tokens": 34545839.0,
|
| 2968 |
+
"step": 2430
|
| 2969 |
+
},
|
| 2970 |
+
{
|
| 2971 |
+
"entropy": 1.2745953131467105,
|
| 2972 |
+
"epoch": 1.952,
|
| 2973 |
+
"grad_norm": 0.01190185546875,
|
| 2974 |
+
"learning_rate": 1.6802222222222224e-05,
|
| 2975 |
+
"loss": 2.2117,
|
| 2976 |
+
"mean_token_accuracy": 0.5791001293808222,
|
| 2977 |
+
"num_tokens": 34684679.0,
|
| 2978 |
+
"step": 2440
|
| 2979 |
+
},
|
| 2980 |
+
{
|
| 2981 |
+
"entropy": 1.317718780785799,
|
| 2982 |
+
"epoch": 1.96,
|
| 2983 |
+
"grad_norm": 0.0201416015625,
|
| 2984 |
+
"learning_rate": 1.6780000000000002e-05,
|
| 2985 |
+
"loss": 2.2984,
|
| 2986 |
+
"mean_token_accuracy": 0.5670209068804979,
|
| 2987 |
+
"num_tokens": 34827507.0,
|
| 2988 |
+
"step": 2450
|
| 2989 |
+
},
|
| 2990 |
+
{
|
| 2991 |
+
"entropy": 1.3160996142774821,
|
| 2992 |
+
"epoch": 1.968,
|
| 2993 |
+
"grad_norm": 0.01129150390625,
|
| 2994 |
+
"learning_rate": 1.675777777777778e-05,
|
| 2995 |
+
"loss": 2.2934,
|
| 2996 |
+
"mean_token_accuracy": 0.5671969182789326,
|
| 2997 |
+
"num_tokens": 34971038.0,
|
| 2998 |
+
"step": 2460
|
| 2999 |
+
},
|
| 3000 |
+
{
|
| 3001 |
+
"entropy": 1.2886119447648525,
|
| 3002 |
+
"epoch": 1.976,
|
| 3003 |
+
"grad_norm": 0.00994873046875,
|
| 3004 |
+
"learning_rate": 1.6735555555555557e-05,
|
| 3005 |
+
"loss": 2.239,
|
| 3006 |
+
"mean_token_accuracy": 0.57753343898803,
|
| 3007 |
+
"num_tokens": 35117690.0,
|
| 3008 |
+
"step": 2470
|
| 3009 |
+
},
|
| 3010 |
+
{
|
| 3011 |
+
"entropy": 1.3021126594394445,
|
| 3012 |
+
"epoch": 1.984,
|
| 3013 |
+
"grad_norm": 0.01275634765625,
|
| 3014 |
+
"learning_rate": 1.6713333333333335e-05,
|
| 3015 |
+
"loss": 2.282,
|
| 3016 |
+
"mean_token_accuracy": 0.5704006873071193,
|
| 3017 |
+
"num_tokens": 35262281.0,
|
| 3018 |
+
"step": 2480
|
| 3019 |
+
},
|
| 3020 |
+
{
|
| 3021 |
+
"entropy": 1.2666044294834138,
|
| 3022 |
+
"epoch": 1.992,
|
| 3023 |
+
"grad_norm": 0.01397705078125,
|
| 3024 |
+
"learning_rate": 1.6691111111111112e-05,
|
| 3025 |
+
"loss": 2.168,
|
| 3026 |
+
"mean_token_accuracy": 0.5837443396449089,
|
| 3027 |
+
"num_tokens": 35417691.0,
|
| 3028 |
+
"step": 2490
|
| 3029 |
+
},
|
| 3030 |
+
{
|
| 3031 |
+
"entropy": 1.2773149006068707,
|
| 3032 |
+
"epoch": 2.0,
|
| 3033 |
+
"grad_norm": 0.01336669921875,
|
| 3034 |
+
"learning_rate": 1.666888888888889e-05,
|
| 3035 |
+
"loss": 2.2388,
|
| 3036 |
+
"mean_token_accuracy": 0.5790769195184111,
|
| 3037 |
+
"num_tokens": 35560864.0,
|
| 3038 |
+
"step": 2500
|
| 3039 |
+
},
|
| 3040 |
+
{
|
| 3041 |
+
"epoch": 2.0,
|
| 3042 |
+
"eval_coding_entropy": 1.266241003036499,
|
| 3043 |
+
"eval_coding_loss": 1.2625732421875,
|
| 3044 |
+
"eval_coding_mean_token_accuracy": 0.6838934738636017,
|
| 3045 |
+
"eval_coding_num_tokens": 35560864.0,
|
| 3046 |
+
"eval_coding_runtime": 96.0299,
|
| 3047 |
+
"eval_coding_samples_per_second": 5.207,
|
| 3048 |
+
"eval_coding_steps_per_second": 2.603,
|
| 3049 |
+
"step": 2500
|
| 3050 |
+
},
|
| 3051 |
+
{
|
| 3052 |
+
"epoch": 2.0,
|
| 3053 |
+
"eval_math_entropy": 1.2986711366176604,
|
| 3054 |
+
"eval_math_loss": 2.2429049015045166,
|
| 3055 |
+
"eval_math_mean_token_accuracy": 0.5744417759180069,
|
| 3056 |
+
"eval_math_num_tokens": 35560864.0,
|
| 3057 |
+
"eval_math_runtime": 54.9082,
|
| 3058 |
+
"eval_math_samples_per_second": 9.106,
|
| 3059 |
+
"eval_math_steps_per_second": 4.553,
|
| 3060 |
+
"step": 2500
|
| 3061 |
+
}
|
| 3062 |
+
],
|
| 3063 |
+
"logging_steps": 10,
|
| 3064 |
+
"max_steps": 10000,
|
| 3065 |
+
"num_input_tokens_seen": 0,
|
| 3066 |
+
"num_train_epochs": 8,
|
| 3067 |
+
"save_steps": 500,
|
| 3068 |
+
"stateful_callbacks": {
|
| 3069 |
+
"TrainerControl": {
|
| 3070 |
+
"args": {
|
| 3071 |
+
"should_epoch_stop": false,
|
| 3072 |
+
"should_evaluate": false,
|
| 3073 |
+
"should_log": false,
|
| 3074 |
+
"should_save": true,
|
| 3075 |
+
"should_training_stop": false
|
| 3076 |
+
},
|
| 3077 |
+
"attributes": {}
|
| 3078 |
+
}
|
| 3079 |
+
},
|
| 3080 |
+
"total_flos": 2.9073092490146396e+18,
|
| 3081 |
+
"train_batch_size": 2,
|
| 3082 |
+
"trial_name": null,
|
| 3083 |
+
"trial_params": null
|
| 3084 |
+
}
|
checkpoint-2500/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e54ae791a536aead0e49a54358cae2e4580928b075340fd25c8b766b1d433371
|
| 3 |
+
size 6417
|