Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- checkpoint-2000/added_tokens.json +3 -0
- checkpoint-2000/chat_template.jinja +47 -0
- checkpoint-2000/config.json +86 -0
- checkpoint-2000/generation_config.json +12 -0
- checkpoint-2000/model-00001-of-00005.safetensors +3 -0
- checkpoint-2000/model-00002-of-00005.safetensors +3 -0
- checkpoint-2000/model-00003-of-00005.safetensors +3 -0
- checkpoint-2000/model-00004-of-00005.safetensors +3 -0
- checkpoint-2000/model-00005-of-00005.safetensors +3 -0
- checkpoint-2000/model.safetensors.index.json +634 -0
- checkpoint-2000/optimizer.pt +3 -0
- checkpoint-2000/rng_state.pth +3 -0
- checkpoint-2000/scheduler.pt +3 -0
- checkpoint-2000/special_tokens_map.json +33 -0
- checkpoint-2000/tokenizer.json +3 -0
- checkpoint-2000/tokenizer.model +3 -0
- checkpoint-2000/tokenizer_config.json +0 -0
- checkpoint-2000/trainer_state.json +2474 -0
- checkpoint-2000/training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -36,3 +36,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 36 |
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
|
|
|
|
|
|
| 36 |
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
|
checkpoint-2000/added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<image_soft_token>": 262144
|
| 3 |
+
}
|
checkpoint-2000/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-2000/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-2000/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-2000/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-2000/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-2000/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-2000/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-2000/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-2000/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-2000/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20306f40758b096547d3a313ec64b52ecabe0ac60e4a133f416c6b08b28f0f2d
|
| 3 |
+
size 18355
|
checkpoint-2000/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7993dc63b304673dcc82de3f9b7ca8dddf6548aee44d77968103b480a102016
|
| 3 |
+
size 14645
|
checkpoint-2000/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e95ad2f3950cee1b83b106cf88750c8604566acab211d78973b3b5c4917b1a30
|
| 3 |
+
size 1465
|
checkpoint-2000/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-2000/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
|
| 3 |
+
size 33384568
|
checkpoint-2000/tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
|
| 3 |
+
size 4689074
|
checkpoint-2000/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-2000/trainer_state.json
ADDED
|
@@ -0,0 +1,2474 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.7798364212986146,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 2000,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 2.4347459591925142,
|
| 14 |
+
"epoch": 0.00890224225226729,
|
| 15 |
+
"grad_norm": 0.00732421875,
|
| 16 |
+
"learning_rate": 1.8e-07,
|
| 17 |
+
"loss": 3.3392,
|
| 18 |
+
"mean_token_accuracy": 0.4414398778229952,
|
| 19 |
+
"num_tokens": 128968.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 2.5189025782048704,
|
| 24 |
+
"epoch": 0.01780448450453458,
|
| 25 |
+
"grad_norm": 0.0098876953125,
|
| 26 |
+
"learning_rate": 3.8e-07,
|
| 27 |
+
"loss": 3.4461,
|
| 28 |
+
"mean_token_accuracy": 0.42950069066137075,
|
| 29 |
+
"num_tokens": 257189.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 2.4521907046437263,
|
| 34 |
+
"epoch": 0.026706726756801868,
|
| 35 |
+
"grad_norm": 0.007659912109375,
|
| 36 |
+
"learning_rate": 5.800000000000001e-07,
|
| 37 |
+
"loss": 3.3929,
|
| 38 |
+
"mean_token_accuracy": 0.43435896690934894,
|
| 39 |
+
"num_tokens": 394654.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 2.4908889502286913,
|
| 44 |
+
"epoch": 0.03560896900906916,
|
| 45 |
+
"grad_norm": 0.00909423828125,
|
| 46 |
+
"learning_rate": 7.8e-07,
|
| 47 |
+
"loss": 3.3731,
|
| 48 |
+
"mean_token_accuracy": 0.4337937039323151,
|
| 49 |
+
"num_tokens": 528285.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 2.4656582184135916,
|
| 54 |
+
"epoch": 0.04451121126133645,
|
| 55 |
+
"grad_norm": 0.0078125,
|
| 56 |
+
"learning_rate": 9.800000000000001e-07,
|
| 57 |
+
"loss": 3.3705,
|
| 58 |
+
"mean_token_accuracy": 0.4305401614867151,
|
| 59 |
+
"num_tokens": 663126.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 2.5354390598833563,
|
| 64 |
+
"epoch": 0.053413453513603736,
|
| 65 |
+
"grad_norm": 0.007659912109375,
|
| 66 |
+
"learning_rate": 1.1800000000000001e-06,
|
| 67 |
+
"loss": 3.4166,
|
| 68 |
+
"mean_token_accuracy": 0.42836275026202203,
|
| 69 |
+
"num_tokens": 801635.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 2.496990965306759,
|
| 74 |
+
"epoch": 0.06231569576587103,
|
| 75 |
+
"grad_norm": 0.00885009765625,
|
| 76 |
+
"learning_rate": 1.3800000000000001e-06,
|
| 77 |
+
"loss": 3.4009,
|
| 78 |
+
"mean_token_accuracy": 0.43142524575814606,
|
| 79 |
+
"num_tokens": 931344.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 2.5406345002353192,
|
| 84 |
+
"epoch": 0.07121793801813832,
|
| 85 |
+
"grad_norm": 0.007171630859375,
|
| 86 |
+
"learning_rate": 1.5800000000000001e-06,
|
| 87 |
+
"loss": 3.4506,
|
| 88 |
+
"mean_token_accuracy": 0.42618109108880164,
|
| 89 |
+
"num_tokens": 1060812.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 2.4690978921949864,
|
| 94 |
+
"epoch": 0.08012018027040561,
|
| 95 |
+
"grad_norm": 0.0111083984375,
|
| 96 |
+
"learning_rate": 1.7800000000000001e-06,
|
| 97 |
+
"loss": 3.375,
|
| 98 |
+
"mean_token_accuracy": 0.4317979410290718,
|
| 99 |
+
"num_tokens": 1200650.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 2.537689981609583,
|
| 104 |
+
"epoch": 0.0890224225226729,
|
| 105 |
+
"grad_norm": 0.009033203125,
|
| 106 |
+
"learning_rate": 1.98e-06,
|
| 107 |
+
"loss": 3.4588,
|
| 108 |
+
"mean_token_accuracy": 0.4282337296754122,
|
| 109 |
+
"num_tokens": 1327380.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.0890224225226729,
|
| 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": 1327380.0,
|
| 118 |
+
"eval_coding_runtime": 96.2988,
|
| 119 |
+
"eval_coding_samples_per_second": 5.192,
|
| 120 |
+
"eval_coding_steps_per_second": 2.596,
|
| 121 |
+
"step": 100
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"epoch": 0.0890224225226729,
|
| 125 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 126 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 127 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 128 |
+
"eval_chemistry_num_tokens": 1327380.0,
|
| 129 |
+
"eval_chemistry_runtime": 53.689,
|
| 130 |
+
"eval_chemistry_samples_per_second": 9.313,
|
| 131 |
+
"eval_chemistry_steps_per_second": 4.656,
|
| 132 |
+
"step": 100
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"entropy": 2.541736252605915,
|
| 136 |
+
"epoch": 0.09792466477494019,
|
| 137 |
+
"grad_norm": 0.0079345703125,
|
| 138 |
+
"learning_rate": 2.1800000000000003e-06,
|
| 139 |
+
"loss": 3.4778,
|
| 140 |
+
"mean_token_accuracy": 0.42182709854096173,
|
| 141 |
+
"num_tokens": 1460130.0,
|
| 142 |
+
"step": 110
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"entropy": 2.4891932401806116,
|
| 146 |
+
"epoch": 0.10682690702720747,
|
| 147 |
+
"grad_norm": 0.0091552734375,
|
| 148 |
+
"learning_rate": 2.38e-06,
|
| 149 |
+
"loss": 3.4123,
|
| 150 |
+
"mean_token_accuracy": 0.4318336697295308,
|
| 151 |
+
"num_tokens": 1597405.0,
|
| 152 |
+
"step": 120
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"entropy": 2.549714620411396,
|
| 156 |
+
"epoch": 0.11572914927947477,
|
| 157 |
+
"grad_norm": 0.013427734375,
|
| 158 |
+
"learning_rate": 2.5800000000000003e-06,
|
| 159 |
+
"loss": 3.5233,
|
| 160 |
+
"mean_token_accuracy": 0.4176134932786226,
|
| 161 |
+
"num_tokens": 1728207.0,
|
| 162 |
+
"step": 130
|
| 163 |
+
},
|
| 164 |
+
{
|
| 165 |
+
"entropy": 2.5017867423594,
|
| 166 |
+
"epoch": 0.12463139153174206,
|
| 167 |
+
"grad_norm": 0.00921630859375,
|
| 168 |
+
"learning_rate": 2.7800000000000005e-06,
|
| 169 |
+
"loss": 3.4252,
|
| 170 |
+
"mean_token_accuracy": 0.4325200604274869,
|
| 171 |
+
"num_tokens": 1859684.0,
|
| 172 |
+
"step": 140
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"entropy": 2.607860314100981,
|
| 176 |
+
"epoch": 0.13353363378400934,
|
| 177 |
+
"grad_norm": 0.0086669921875,
|
| 178 |
+
"learning_rate": 2.9800000000000003e-06,
|
| 179 |
+
"loss": 3.5854,
|
| 180 |
+
"mean_token_accuracy": 0.41672497261315583,
|
| 181 |
+
"num_tokens": 1985766.0,
|
| 182 |
+
"step": 150
|
| 183 |
+
},
|
| 184 |
+
{
|
| 185 |
+
"entropy": 2.546873392164707,
|
| 186 |
+
"epoch": 0.14243587603627664,
|
| 187 |
+
"grad_norm": 0.0096435546875,
|
| 188 |
+
"learning_rate": 3.1800000000000005e-06,
|
| 189 |
+
"loss": 3.4451,
|
| 190 |
+
"mean_token_accuracy": 0.42558788452297447,
|
| 191 |
+
"num_tokens": 2118068.0,
|
| 192 |
+
"step": 160
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"entropy": 2.5062545992434027,
|
| 196 |
+
"epoch": 0.15133811828854393,
|
| 197 |
+
"grad_norm": 0.0125732421875,
|
| 198 |
+
"learning_rate": 3.3800000000000007e-06,
|
| 199 |
+
"loss": 3.4525,
|
| 200 |
+
"mean_token_accuracy": 0.42451597433537247,
|
| 201 |
+
"num_tokens": 2252650.0,
|
| 202 |
+
"step": 170
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"entropy": 2.490347370505333,
|
| 206 |
+
"epoch": 0.16024036054081123,
|
| 207 |
+
"grad_norm": 0.0106201171875,
|
| 208 |
+
"learning_rate": 3.58e-06,
|
| 209 |
+
"loss": 3.398,
|
| 210 |
+
"mean_token_accuracy": 0.4340389359742403,
|
| 211 |
+
"num_tokens": 2388824.0,
|
| 212 |
+
"step": 180
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"entropy": 2.5069186124950646,
|
| 216 |
+
"epoch": 0.1691426027930785,
|
| 217 |
+
"grad_norm": 0.01055908203125,
|
| 218 |
+
"learning_rate": 3.7800000000000002e-06,
|
| 219 |
+
"loss": 3.4995,
|
| 220 |
+
"mean_token_accuracy": 0.42545853555202484,
|
| 221 |
+
"num_tokens": 2515325.0,
|
| 222 |
+
"step": 190
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"entropy": 2.569493807852268,
|
| 226 |
+
"epoch": 0.1780448450453458,
|
| 227 |
+
"grad_norm": 0.0174560546875,
|
| 228 |
+
"learning_rate": 3.980000000000001e-06,
|
| 229 |
+
"loss": 3.5293,
|
| 230 |
+
"mean_token_accuracy": 0.4203047439455986,
|
| 231 |
+
"num_tokens": 2644330.0,
|
| 232 |
+
"step": 200
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"epoch": 0.1780448450453458,
|
| 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": 2644330.0,
|
| 240 |
+
"eval_coding_runtime": 95.9249,
|
| 241 |
+
"eval_coding_samples_per_second": 5.212,
|
| 242 |
+
"eval_coding_steps_per_second": 2.606,
|
| 243 |
+
"step": 200
|
| 244 |
+
},
|
| 245 |
+
{
|
| 246 |
+
"epoch": 0.1780448450453458,
|
| 247 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 248 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 249 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 250 |
+
"eval_chemistry_num_tokens": 2644330.0,
|
| 251 |
+
"eval_chemistry_runtime": 53.6456,
|
| 252 |
+
"eval_chemistry_samples_per_second": 9.32,
|
| 253 |
+
"eval_chemistry_steps_per_second": 4.66,
|
| 254 |
+
"step": 200
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"entropy": 2.463035849481821,
|
| 258 |
+
"epoch": 0.18694708729761308,
|
| 259 |
+
"grad_norm": 0.01226806640625,
|
| 260 |
+
"learning_rate": 4.18e-06,
|
| 261 |
+
"loss": 3.3809,
|
| 262 |
+
"mean_token_accuracy": 0.43558520982041954,
|
| 263 |
+
"num_tokens": 2783261.0,
|
| 264 |
+
"step": 210
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"entropy": 2.5025305368006228,
|
| 268 |
+
"epoch": 0.19584932954988038,
|
| 269 |
+
"grad_norm": 0.007476806640625,
|
| 270 |
+
"learning_rate": 4.38e-06,
|
| 271 |
+
"loss": 3.4253,
|
| 272 |
+
"mean_token_accuracy": 0.4310411293059587,
|
| 273 |
+
"num_tokens": 2913700.0,
|
| 274 |
+
"step": 220
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"entropy": 2.455498095601797,
|
| 278 |
+
"epoch": 0.20475157180214767,
|
| 279 |
+
"grad_norm": 0.0068359375,
|
| 280 |
+
"learning_rate": 4.58e-06,
|
| 281 |
+
"loss": 3.3586,
|
| 282 |
+
"mean_token_accuracy": 0.43719491101801394,
|
| 283 |
+
"num_tokens": 3048973.0,
|
| 284 |
+
"step": 230
|
| 285 |
+
},
|
| 286 |
+
{
|
| 287 |
+
"entropy": 2.5426308810710907,
|
| 288 |
+
"epoch": 0.21365381405441494,
|
| 289 |
+
"grad_norm": 0.007598876953125,
|
| 290 |
+
"learning_rate": 4.78e-06,
|
| 291 |
+
"loss": 3.406,
|
| 292 |
+
"mean_token_accuracy": 0.43309843018651006,
|
| 293 |
+
"num_tokens": 3185255.0,
|
| 294 |
+
"step": 240
|
| 295 |
+
},
|
| 296 |
+
{
|
| 297 |
+
"entropy": 2.444308698922396,
|
| 298 |
+
"epoch": 0.22255605630668224,
|
| 299 |
+
"grad_norm": 0.01324462890625,
|
| 300 |
+
"learning_rate": 4.980000000000001e-06,
|
| 301 |
+
"loss": 3.337,
|
| 302 |
+
"mean_token_accuracy": 0.44262526389211415,
|
| 303 |
+
"num_tokens": 3322823.0,
|
| 304 |
+
"step": 250
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"entropy": 2.526992666721344,
|
| 308 |
+
"epoch": 0.23145829855894953,
|
| 309 |
+
"grad_norm": 0.0103759765625,
|
| 310 |
+
"learning_rate": 5.18e-06,
|
| 311 |
+
"loss": 3.478,
|
| 312 |
+
"mean_token_accuracy": 0.42772163953632114,
|
| 313 |
+
"num_tokens": 3454750.0,
|
| 314 |
+
"step": 260
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"entropy": 2.468804422393441,
|
| 318 |
+
"epoch": 0.24036054081121683,
|
| 319 |
+
"grad_norm": 0.0084228515625,
|
| 320 |
+
"learning_rate": 5.380000000000001e-06,
|
| 321 |
+
"loss": 3.3899,
|
| 322 |
+
"mean_token_accuracy": 0.4310757084749639,
|
| 323 |
+
"num_tokens": 3589449.0,
|
| 324 |
+
"step": 270
|
| 325 |
+
},
|
| 326 |
+
{
|
| 327 |
+
"entropy": 2.5963171511888503,
|
| 328 |
+
"epoch": 0.24926278306348412,
|
| 329 |
+
"grad_norm": 0.00823974609375,
|
| 330 |
+
"learning_rate": 5.580000000000001e-06,
|
| 331 |
+
"loss": 3.5597,
|
| 332 |
+
"mean_token_accuracy": 0.4164831433445215,
|
| 333 |
+
"num_tokens": 3719113.0,
|
| 334 |
+
"step": 280
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"entropy": 2.6820507936179636,
|
| 338 |
+
"epoch": 0.2581650253157514,
|
| 339 |
+
"grad_norm": 0.008056640625,
|
| 340 |
+
"learning_rate": 5.78e-06,
|
| 341 |
+
"loss": 3.6014,
|
| 342 |
+
"mean_token_accuracy": 0.4143718365579844,
|
| 343 |
+
"num_tokens": 3852276.0,
|
| 344 |
+
"step": 290
|
| 345 |
+
},
|
| 346 |
+
{
|
| 347 |
+
"entropy": 2.5068675063550474,
|
| 348 |
+
"epoch": 0.2670672675680187,
|
| 349 |
+
"grad_norm": 0.01226806640625,
|
| 350 |
+
"learning_rate": 5.98e-06,
|
| 351 |
+
"loss": 3.4183,
|
| 352 |
+
"mean_token_accuracy": 0.4291886316612363,
|
| 353 |
+
"num_tokens": 3990505.0,
|
| 354 |
+
"step": 300
|
| 355 |
+
},
|
| 356 |
+
{
|
| 357 |
+
"epoch": 0.2670672675680187,
|
| 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": 3990505.0,
|
| 362 |
+
"eval_coding_runtime": 95.8518,
|
| 363 |
+
"eval_coding_samples_per_second": 5.216,
|
| 364 |
+
"eval_coding_steps_per_second": 2.608,
|
| 365 |
+
"step": 300
|
| 366 |
+
},
|
| 367 |
+
{
|
| 368 |
+
"epoch": 0.2670672675680187,
|
| 369 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 370 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 371 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 372 |
+
"eval_chemistry_num_tokens": 3990505.0,
|
| 373 |
+
"eval_chemistry_runtime": 53.7283,
|
| 374 |
+
"eval_chemistry_samples_per_second": 9.306,
|
| 375 |
+
"eval_chemistry_steps_per_second": 4.653,
|
| 376 |
+
"step": 300
|
| 377 |
+
},
|
| 378 |
+
{
|
| 379 |
+
"entropy": 2.4614722445607184,
|
| 380 |
+
"epoch": 0.275969509820286,
|
| 381 |
+
"grad_norm": 0.0091552734375,
|
| 382 |
+
"learning_rate": 6.18e-06,
|
| 383 |
+
"loss": 3.3329,
|
| 384 |
+
"mean_token_accuracy": 0.4380343802273273,
|
| 385 |
+
"num_tokens": 4133119.0,
|
| 386 |
+
"step": 310
|
| 387 |
+
},
|
| 388 |
+
{
|
| 389 |
+
"entropy": 2.4565507762134073,
|
| 390 |
+
"epoch": 0.2848717520725533,
|
| 391 |
+
"grad_norm": 0.0074462890625,
|
| 392 |
+
"learning_rate": 6.380000000000001e-06,
|
| 393 |
+
"loss": 3.376,
|
| 394 |
+
"mean_token_accuracy": 0.4339581592008471,
|
| 395 |
+
"num_tokens": 4267403.0,
|
| 396 |
+
"step": 320
|
| 397 |
+
},
|
| 398 |
+
{
|
| 399 |
+
"entropy": 2.4726619601249693,
|
| 400 |
+
"epoch": 0.29377399432482054,
|
| 401 |
+
"grad_norm": 0.007781982421875,
|
| 402 |
+
"learning_rate": 6.5800000000000005e-06,
|
| 403 |
+
"loss": 3.3584,
|
| 404 |
+
"mean_token_accuracy": 0.43662677630782126,
|
| 405 |
+
"num_tokens": 4400242.0,
|
| 406 |
+
"step": 330
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"entropy": 2.4780636690557003,
|
| 410 |
+
"epoch": 0.30267623657708786,
|
| 411 |
+
"grad_norm": 0.009765625,
|
| 412 |
+
"learning_rate": 6.780000000000001e-06,
|
| 413 |
+
"loss": 3.3561,
|
| 414 |
+
"mean_token_accuracy": 0.4329976743087173,
|
| 415 |
+
"num_tokens": 4535458.0,
|
| 416 |
+
"step": 340
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"entropy": 2.4669046089053155,
|
| 420 |
+
"epoch": 0.31157847882935513,
|
| 421 |
+
"grad_norm": 0.01031494140625,
|
| 422 |
+
"learning_rate": 6.98e-06,
|
| 423 |
+
"loss": 3.4031,
|
| 424 |
+
"mean_token_accuracy": 0.43433742690831423,
|
| 425 |
+
"num_tokens": 4662903.0,
|
| 426 |
+
"step": 350
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"entropy": 2.5689725764095783,
|
| 430 |
+
"epoch": 0.32048072108162245,
|
| 431 |
+
"grad_norm": 0.00732421875,
|
| 432 |
+
"learning_rate": 7.180000000000001e-06,
|
| 433 |
+
"loss": 3.4889,
|
| 434 |
+
"mean_token_accuracy": 0.4287034338340163,
|
| 435 |
+
"num_tokens": 4796815.0,
|
| 436 |
+
"step": 360
|
| 437 |
+
},
|
| 438 |
+
{
|
| 439 |
+
"entropy": 2.4410855643451215,
|
| 440 |
+
"epoch": 0.3293829633338897,
|
| 441 |
+
"grad_norm": 0.00836181640625,
|
| 442 |
+
"learning_rate": 7.3800000000000005e-06,
|
| 443 |
+
"loss": 3.3643,
|
| 444 |
+
"mean_token_accuracy": 0.43710872549563645,
|
| 445 |
+
"num_tokens": 4932671.0,
|
| 446 |
+
"step": 370
|
| 447 |
+
},
|
| 448 |
+
{
|
| 449 |
+
"entropy": 2.5445352010428905,
|
| 450 |
+
"epoch": 0.338285205586157,
|
| 451 |
+
"grad_norm": 0.01129150390625,
|
| 452 |
+
"learning_rate": 7.58e-06,
|
| 453 |
+
"loss": 3.4525,
|
| 454 |
+
"mean_token_accuracy": 0.42816965784877536,
|
| 455 |
+
"num_tokens": 5066948.0,
|
| 456 |
+
"step": 380
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"entropy": 2.565714708715677,
|
| 460 |
+
"epoch": 0.3471874478384243,
|
| 461 |
+
"grad_norm": 0.01470947265625,
|
| 462 |
+
"learning_rate": 7.78e-06,
|
| 463 |
+
"loss": 3.4661,
|
| 464 |
+
"mean_token_accuracy": 0.4264904214069247,
|
| 465 |
+
"num_tokens": 5193519.0,
|
| 466 |
+
"step": 390
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"entropy": 2.516895131766796,
|
| 470 |
+
"epoch": 0.3560896900906916,
|
| 471 |
+
"grad_norm": 0.01031494140625,
|
| 472 |
+
"learning_rate": 7.980000000000002e-06,
|
| 473 |
+
"loss": 3.4401,
|
| 474 |
+
"mean_token_accuracy": 0.4265883769840002,
|
| 475 |
+
"num_tokens": 5324751.0,
|
| 476 |
+
"step": 400
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"epoch": 0.3560896900906916,
|
| 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": 5324751.0,
|
| 484 |
+
"eval_coding_runtime": 95.8822,
|
| 485 |
+
"eval_coding_samples_per_second": 5.215,
|
| 486 |
+
"eval_coding_steps_per_second": 2.607,
|
| 487 |
+
"step": 400
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.3560896900906916,
|
| 491 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 492 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 493 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 494 |
+
"eval_chemistry_num_tokens": 5324751.0,
|
| 495 |
+
"eval_chemistry_runtime": 53.6645,
|
| 496 |
+
"eval_chemistry_samples_per_second": 9.317,
|
| 497 |
+
"eval_chemistry_steps_per_second": 4.659,
|
| 498 |
+
"step": 400
|
| 499 |
+
},
|
| 500 |
+
{
|
| 501 |
+
"entropy": 2.4508687026798723,
|
| 502 |
+
"epoch": 0.3649919323429589,
|
| 503 |
+
"grad_norm": 0.010986328125,
|
| 504 |
+
"learning_rate": 8.18e-06,
|
| 505 |
+
"loss": 3.3874,
|
| 506 |
+
"mean_token_accuracy": 0.4385754197835922,
|
| 507 |
+
"num_tokens": 5458519.0,
|
| 508 |
+
"step": 410
|
| 509 |
+
},
|
| 510 |
+
{
|
| 511 |
+
"entropy": 2.4801586009562016,
|
| 512 |
+
"epoch": 0.37389417459522617,
|
| 513 |
+
"grad_norm": 0.00714111328125,
|
| 514 |
+
"learning_rate": 8.380000000000001e-06,
|
| 515 |
+
"loss": 3.4012,
|
| 516 |
+
"mean_token_accuracy": 0.43559422083199023,
|
| 517 |
+
"num_tokens": 5585508.0,
|
| 518 |
+
"step": 420
|
| 519 |
+
},
|
| 520 |
+
{
|
| 521 |
+
"entropy": 2.4704861216247083,
|
| 522 |
+
"epoch": 0.38279641684749344,
|
| 523 |
+
"grad_norm": 0.007659912109375,
|
| 524 |
+
"learning_rate": 8.580000000000001e-06,
|
| 525 |
+
"loss": 3.4353,
|
| 526 |
+
"mean_token_accuracy": 0.43275914546102284,
|
| 527 |
+
"num_tokens": 5716321.0,
|
| 528 |
+
"step": 430
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"entropy": 2.537934695184231,
|
| 532 |
+
"epoch": 0.39169865909976076,
|
| 533 |
+
"grad_norm": 0.0081787109375,
|
| 534 |
+
"learning_rate": 8.78e-06,
|
| 535 |
+
"loss": 3.4176,
|
| 536 |
+
"mean_token_accuracy": 0.4291856364347041,
|
| 537 |
+
"num_tokens": 5848889.0,
|
| 538 |
+
"step": 440
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"entropy": 2.513765400648117,
|
| 542 |
+
"epoch": 0.400600901352028,
|
| 543 |
+
"grad_norm": 0.00927734375,
|
| 544 |
+
"learning_rate": 8.98e-06,
|
| 545 |
+
"loss": 3.4106,
|
| 546 |
+
"mean_token_accuracy": 0.42827712278813124,
|
| 547 |
+
"num_tokens": 5980229.0,
|
| 548 |
+
"step": 450
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"entropy": 2.4634178556501864,
|
| 552 |
+
"epoch": 0.40950314360429535,
|
| 553 |
+
"grad_norm": 0.01068115234375,
|
| 554 |
+
"learning_rate": 9.180000000000002e-06,
|
| 555 |
+
"loss": 3.4007,
|
| 556 |
+
"mean_token_accuracy": 0.4337839787825942,
|
| 557 |
+
"num_tokens": 6114855.0,
|
| 558 |
+
"step": 460
|
| 559 |
+
},
|
| 560 |
+
{
|
| 561 |
+
"entropy": 2.5320842534303667,
|
| 562 |
+
"epoch": 0.4184053858565626,
|
| 563 |
+
"grad_norm": 0.007049560546875,
|
| 564 |
+
"learning_rate": 9.38e-06,
|
| 565 |
+
"loss": 3.4216,
|
| 566 |
+
"mean_token_accuracy": 0.4268041457980871,
|
| 567 |
+
"num_tokens": 6244987.0,
|
| 568 |
+
"step": 470
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"entropy": 2.4959075897932053,
|
| 572 |
+
"epoch": 0.4273076281088299,
|
| 573 |
+
"grad_norm": 0.0079345703125,
|
| 574 |
+
"learning_rate": 9.58e-06,
|
| 575 |
+
"loss": 3.3715,
|
| 576 |
+
"mean_token_accuracy": 0.432720182929188,
|
| 577 |
+
"num_tokens": 6378152.0,
|
| 578 |
+
"step": 480
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"entropy": 2.503755620121956,
|
| 582 |
+
"epoch": 0.4362098703610972,
|
| 583 |
+
"grad_norm": 0.01708984375,
|
| 584 |
+
"learning_rate": 9.780000000000001e-06,
|
| 585 |
+
"loss": 3.4343,
|
| 586 |
+
"mean_token_accuracy": 0.43189559010788797,
|
| 587 |
+
"num_tokens": 6510231.0,
|
| 588 |
+
"step": 490
|
| 589 |
+
},
|
| 590 |
+
{
|
| 591 |
+
"entropy": 2.539106211811304,
|
| 592 |
+
"epoch": 0.4451121126133645,
|
| 593 |
+
"grad_norm": 0.0115966796875,
|
| 594 |
+
"learning_rate": 9.980000000000001e-06,
|
| 595 |
+
"loss": 3.4747,
|
| 596 |
+
"mean_token_accuracy": 0.42332094311714175,
|
| 597 |
+
"num_tokens": 6637273.0,
|
| 598 |
+
"step": 500
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.4451121126133645,
|
| 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": 6637273.0,
|
| 606 |
+
"eval_coding_runtime": 95.8134,
|
| 607 |
+
"eval_coding_samples_per_second": 5.218,
|
| 608 |
+
"eval_coding_steps_per_second": 2.609,
|
| 609 |
+
"step": 500
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"epoch": 0.4451121126133645,
|
| 613 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 614 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 615 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 616 |
+
"eval_chemistry_num_tokens": 6637273.0,
|
| 617 |
+
"eval_chemistry_runtime": 53.3031,
|
| 618 |
+
"eval_chemistry_samples_per_second": 9.38,
|
| 619 |
+
"eval_chemistry_steps_per_second": 4.69,
|
| 620 |
+
"step": 500
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 2.536660289019346,
|
| 624 |
+
"epoch": 0.4540143548656318,
|
| 625 |
+
"grad_norm": 0.0146484375,
|
| 626 |
+
"learning_rate": 1.018e-05,
|
| 627 |
+
"loss": 3.4613,
|
| 628 |
+
"mean_token_accuracy": 0.4232974941842258,
|
| 629 |
+
"num_tokens": 6765798.0,
|
| 630 |
+
"step": 510
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 2.459078107774258,
|
| 634 |
+
"epoch": 0.46291659711789906,
|
| 635 |
+
"grad_norm": 0.0079345703125,
|
| 636 |
+
"learning_rate": 1.038e-05,
|
| 637 |
+
"loss": 3.3655,
|
| 638 |
+
"mean_token_accuracy": 0.43400888703763485,
|
| 639 |
+
"num_tokens": 6896684.0,
|
| 640 |
+
"step": 520
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 2.454593952000141,
|
| 644 |
+
"epoch": 0.4718188393701664,
|
| 645 |
+
"grad_norm": 0.014404296875,
|
| 646 |
+
"learning_rate": 1.0580000000000002e-05,
|
| 647 |
+
"loss": 3.3614,
|
| 648 |
+
"mean_token_accuracy": 0.43178336657583716,
|
| 649 |
+
"num_tokens": 7033417.0,
|
| 650 |
+
"step": 530
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 2.558536158502102,
|
| 654 |
+
"epoch": 0.48072108162243365,
|
| 655 |
+
"grad_norm": 0.018310546875,
|
| 656 |
+
"learning_rate": 1.0780000000000002e-05,
|
| 657 |
+
"loss": 3.4999,
|
| 658 |
+
"mean_token_accuracy": 0.4232194619253278,
|
| 659 |
+
"num_tokens": 7166608.0,
|
| 660 |
+
"step": 540
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 2.4503342963755133,
|
| 664 |
+
"epoch": 0.4896233238747009,
|
| 665 |
+
"grad_norm": 0.0150146484375,
|
| 666 |
+
"learning_rate": 1.0980000000000002e-05,
|
| 667 |
+
"loss": 3.3626,
|
| 668 |
+
"mean_token_accuracy": 0.4358119173906744,
|
| 669 |
+
"num_tokens": 7311968.0,
|
| 670 |
+
"step": 550
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 2.4068671748042108,
|
| 674 |
+
"epoch": 0.49852556612696824,
|
| 675 |
+
"grad_norm": 0.00836181640625,
|
| 676 |
+
"learning_rate": 1.1180000000000001e-05,
|
| 677 |
+
"loss": 3.2928,
|
| 678 |
+
"mean_token_accuracy": 0.44231050591915844,
|
| 679 |
+
"num_tokens": 7444923.0,
|
| 680 |
+
"step": 560
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 2.5063270702958107,
|
| 684 |
+
"epoch": 0.5074278083792355,
|
| 685 |
+
"grad_norm": 0.007171630859375,
|
| 686 |
+
"learning_rate": 1.138e-05,
|
| 687 |
+
"loss": 3.4094,
|
| 688 |
+
"mean_token_accuracy": 0.42552004270255567,
|
| 689 |
+
"num_tokens": 7576456.0,
|
| 690 |
+
"step": 570
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 2.5186563402414324,
|
| 694 |
+
"epoch": 0.5163300506315028,
|
| 695 |
+
"grad_norm": 0.00994873046875,
|
| 696 |
+
"learning_rate": 1.1580000000000001e-05,
|
| 697 |
+
"loss": 3.4523,
|
| 698 |
+
"mean_token_accuracy": 0.42800150997936726,
|
| 699 |
+
"num_tokens": 7706502.0,
|
| 700 |
+
"step": 580
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 2.500379876047373,
|
| 704 |
+
"epoch": 0.52523229288377,
|
| 705 |
+
"grad_norm": 0.016357421875,
|
| 706 |
+
"learning_rate": 1.178e-05,
|
| 707 |
+
"loss": 3.4366,
|
| 708 |
+
"mean_token_accuracy": 0.42906679548323157,
|
| 709 |
+
"num_tokens": 7838516.0,
|
| 710 |
+
"step": 590
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 2.535025441646576,
|
| 714 |
+
"epoch": 0.5341345351360374,
|
| 715 |
+
"grad_norm": 0.0087890625,
|
| 716 |
+
"learning_rate": 1.198e-05,
|
| 717 |
+
"loss": 3.5082,
|
| 718 |
+
"mean_token_accuracy": 0.42478432394564153,
|
| 719 |
+
"num_tokens": 7969704.0,
|
| 720 |
+
"step": 600
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"epoch": 0.5341345351360374,
|
| 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": 7969704.0,
|
| 728 |
+
"eval_coding_runtime": 95.8333,
|
| 729 |
+
"eval_coding_samples_per_second": 5.217,
|
| 730 |
+
"eval_coding_steps_per_second": 2.609,
|
| 731 |
+
"step": 600
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 0.5341345351360374,
|
| 735 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 736 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 737 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 738 |
+
"eval_chemistry_num_tokens": 7969704.0,
|
| 739 |
+
"eval_chemistry_runtime": 53.6736,
|
| 740 |
+
"eval_chemistry_samples_per_second": 9.316,
|
| 741 |
+
"eval_chemistry_steps_per_second": 4.658,
|
| 742 |
+
"step": 600
|
| 743 |
+
},
|
| 744 |
+
{
|
| 745 |
+
"entropy": 2.542660507559776,
|
| 746 |
+
"epoch": 0.5430367773883047,
|
| 747 |
+
"grad_norm": 0.009765625,
|
| 748 |
+
"learning_rate": 1.218e-05,
|
| 749 |
+
"loss": 3.4959,
|
| 750 |
+
"mean_token_accuracy": 0.42042196970433,
|
| 751 |
+
"num_tokens": 8103869.0,
|
| 752 |
+
"step": 610
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"entropy": 2.5036643177270888,
|
| 756 |
+
"epoch": 0.551939019640572,
|
| 757 |
+
"grad_norm": 0.007781982421875,
|
| 758 |
+
"learning_rate": 1.2380000000000002e-05,
|
| 759 |
+
"loss": 3.4222,
|
| 760 |
+
"mean_token_accuracy": 0.43322109896689653,
|
| 761 |
+
"num_tokens": 8242162.0,
|
| 762 |
+
"step": 620
|
| 763 |
+
},
|
| 764 |
+
{
|
| 765 |
+
"entropy": 2.5407710492610933,
|
| 766 |
+
"epoch": 0.5608412618928392,
|
| 767 |
+
"grad_norm": 0.01031494140625,
|
| 768 |
+
"learning_rate": 1.2580000000000002e-05,
|
| 769 |
+
"loss": 3.5112,
|
| 770 |
+
"mean_token_accuracy": 0.424757894128561,
|
| 771 |
+
"num_tokens": 8365617.0,
|
| 772 |
+
"step": 630
|
| 773 |
+
},
|
| 774 |
+
{
|
| 775 |
+
"entropy": 2.4822314344346523,
|
| 776 |
+
"epoch": 0.5697435041451065,
|
| 777 |
+
"grad_norm": 0.009033203125,
|
| 778 |
+
"learning_rate": 1.2780000000000001e-05,
|
| 779 |
+
"loss": 3.4362,
|
| 780 |
+
"mean_token_accuracy": 0.43353409245610236,
|
| 781 |
+
"num_tokens": 8497852.0,
|
| 782 |
+
"step": 640
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"entropy": 2.5407922022044658,
|
| 786 |
+
"epoch": 0.5786457463973739,
|
| 787 |
+
"grad_norm": 0.0172119140625,
|
| 788 |
+
"learning_rate": 1.2980000000000001e-05,
|
| 789 |
+
"loss": 3.5164,
|
| 790 |
+
"mean_token_accuracy": 0.42170737963169813,
|
| 791 |
+
"num_tokens": 8622868.0,
|
| 792 |
+
"step": 650
|
| 793 |
+
},
|
| 794 |
+
{
|
| 795 |
+
"entropy": 2.577139265835285,
|
| 796 |
+
"epoch": 0.5875479886496411,
|
| 797 |
+
"grad_norm": 0.01007080078125,
|
| 798 |
+
"learning_rate": 1.3180000000000001e-05,
|
| 799 |
+
"loss": 3.5058,
|
| 800 |
+
"mean_token_accuracy": 0.41903221048414707,
|
| 801 |
+
"num_tokens": 8757753.0,
|
| 802 |
+
"step": 660
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"entropy": 2.475165160000324,
|
| 806 |
+
"epoch": 0.5964502309019084,
|
| 807 |
+
"grad_norm": 0.01422119140625,
|
| 808 |
+
"learning_rate": 1.3380000000000002e-05,
|
| 809 |
+
"loss": 3.4273,
|
| 810 |
+
"mean_token_accuracy": 0.4251199818216264,
|
| 811 |
+
"num_tokens": 8886401.0,
|
| 812 |
+
"step": 670
|
| 813 |
+
},
|
| 814 |
+
{
|
| 815 |
+
"entropy": 2.4363515108823774,
|
| 816 |
+
"epoch": 0.6053524731541757,
|
| 817 |
+
"grad_norm": 0.01300048828125,
|
| 818 |
+
"learning_rate": 1.3580000000000002e-05,
|
| 819 |
+
"loss": 3.3275,
|
| 820 |
+
"mean_token_accuracy": 0.43763177264481784,
|
| 821 |
+
"num_tokens": 9024677.0,
|
| 822 |
+
"step": 680
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"entropy": 2.56791525632143,
|
| 826 |
+
"epoch": 0.614254715406443,
|
| 827 |
+
"grad_norm": 0.0074462890625,
|
| 828 |
+
"learning_rate": 1.378e-05,
|
| 829 |
+
"loss": 3.4703,
|
| 830 |
+
"mean_token_accuracy": 0.42369468677788974,
|
| 831 |
+
"num_tokens": 9153771.0,
|
| 832 |
+
"step": 690
|
| 833 |
+
},
|
| 834 |
+
{
|
| 835 |
+
"entropy": 2.484988895058632,
|
| 836 |
+
"epoch": 0.6231569576587103,
|
| 837 |
+
"grad_norm": 0.0126953125,
|
| 838 |
+
"learning_rate": 1.398e-05,
|
| 839 |
+
"loss": 3.3769,
|
| 840 |
+
"mean_token_accuracy": 0.4326890670694411,
|
| 841 |
+
"num_tokens": 9291760.0,
|
| 842 |
+
"step": 700
|
| 843 |
+
},
|
| 844 |
+
{
|
| 845 |
+
"epoch": 0.6231569576587103,
|
| 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": 9291760.0,
|
| 850 |
+
"eval_coding_runtime": 95.8189,
|
| 851 |
+
"eval_coding_samples_per_second": 5.218,
|
| 852 |
+
"eval_coding_steps_per_second": 2.609,
|
| 853 |
+
"step": 700
|
| 854 |
+
},
|
| 855 |
+
{
|
| 856 |
+
"epoch": 0.6231569576587103,
|
| 857 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 858 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 859 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 860 |
+
"eval_chemistry_num_tokens": 9291760.0,
|
| 861 |
+
"eval_chemistry_runtime": 53.6652,
|
| 862 |
+
"eval_chemistry_samples_per_second": 9.317,
|
| 863 |
+
"eval_chemistry_steps_per_second": 4.659,
|
| 864 |
+
"step": 700
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"entropy": 2.4618755050003527,
|
| 868 |
+
"epoch": 0.6320591999109776,
|
| 869 |
+
"grad_norm": 0.00921630859375,
|
| 870 |
+
"learning_rate": 1.418e-05,
|
| 871 |
+
"loss": 3.4035,
|
| 872 |
+
"mean_token_accuracy": 0.4318504808470607,
|
| 873 |
+
"num_tokens": 9425022.0,
|
| 874 |
+
"step": 710
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"entropy": 2.4683789536356926,
|
| 878 |
+
"epoch": 0.6409614421632449,
|
| 879 |
+
"grad_norm": 0.0076904296875,
|
| 880 |
+
"learning_rate": 1.4380000000000001e-05,
|
| 881 |
+
"loss": 3.3571,
|
| 882 |
+
"mean_token_accuracy": 0.43439894206821916,
|
| 883 |
+
"num_tokens": 9561091.0,
|
| 884 |
+
"step": 720
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"entropy": 2.4340669311583043,
|
| 888 |
+
"epoch": 0.6498636844155121,
|
| 889 |
+
"grad_norm": 0.00970458984375,
|
| 890 |
+
"learning_rate": 1.4580000000000001e-05,
|
| 891 |
+
"loss": 3.3348,
|
| 892 |
+
"mean_token_accuracy": 0.4359587837010622,
|
| 893 |
+
"num_tokens": 9695723.0,
|
| 894 |
+
"step": 730
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"entropy": 2.504717104136944,
|
| 898 |
+
"epoch": 0.6587659266677794,
|
| 899 |
+
"grad_norm": 0.0174560546875,
|
| 900 |
+
"learning_rate": 1.478e-05,
|
| 901 |
+
"loss": 3.4563,
|
| 902 |
+
"mean_token_accuracy": 0.4270874824374914,
|
| 903 |
+
"num_tokens": 9827272.0,
|
| 904 |
+
"step": 740
|
| 905 |
+
},
|
| 906 |
+
{
|
| 907 |
+
"entropy": 2.4963896624743938,
|
| 908 |
+
"epoch": 0.6676681689200468,
|
| 909 |
+
"grad_norm": 0.010498046875,
|
| 910 |
+
"learning_rate": 1.498e-05,
|
| 911 |
+
"loss": 3.3969,
|
| 912 |
+
"mean_token_accuracy": 0.4328357223421335,
|
| 913 |
+
"num_tokens": 9955369.0,
|
| 914 |
+
"step": 750
|
| 915 |
+
},
|
| 916 |
+
{
|
| 917 |
+
"entropy": 2.47789601534605,
|
| 918 |
+
"epoch": 0.676570411172314,
|
| 919 |
+
"grad_norm": 0.015869140625,
|
| 920 |
+
"learning_rate": 1.5180000000000002e-05,
|
| 921 |
+
"loss": 3.3672,
|
| 922 |
+
"mean_token_accuracy": 0.43644896559417246,
|
| 923 |
+
"num_tokens": 10096065.0,
|
| 924 |
+
"step": 760
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"entropy": 2.4533426530659197,
|
| 928 |
+
"epoch": 0.6854726534245813,
|
| 929 |
+
"grad_norm": 0.00982666015625,
|
| 930 |
+
"learning_rate": 1.5380000000000002e-05,
|
| 931 |
+
"loss": 3.3724,
|
| 932 |
+
"mean_token_accuracy": 0.43634699024260043,
|
| 933 |
+
"num_tokens": 10233806.0,
|
| 934 |
+
"step": 770
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"entropy": 2.5112246222794057,
|
| 938 |
+
"epoch": 0.6943748956768486,
|
| 939 |
+
"grad_norm": 0.00885009765625,
|
| 940 |
+
"learning_rate": 1.5580000000000003e-05,
|
| 941 |
+
"loss": 3.4341,
|
| 942 |
+
"mean_token_accuracy": 0.4313540508970618,
|
| 943 |
+
"num_tokens": 10364601.0,
|
| 944 |
+
"step": 780
|
| 945 |
+
},
|
| 946 |
+
{
|
| 947 |
+
"entropy": 2.467985014617443,
|
| 948 |
+
"epoch": 0.703277137929116,
|
| 949 |
+
"grad_norm": 0.01171875,
|
| 950 |
+
"learning_rate": 1.578e-05,
|
| 951 |
+
"loss": 3.379,
|
| 952 |
+
"mean_token_accuracy": 0.4354724214412272,
|
| 953 |
+
"num_tokens": 10500891.0,
|
| 954 |
+
"step": 790
|
| 955 |
+
},
|
| 956 |
+
{
|
| 957 |
+
"entropy": 2.4910646095871924,
|
| 958 |
+
"epoch": 0.7121793801813832,
|
| 959 |
+
"grad_norm": 0.0089111328125,
|
| 960 |
+
"learning_rate": 1.5980000000000003e-05,
|
| 961 |
+
"loss": 3.4174,
|
| 962 |
+
"mean_token_accuracy": 0.4264952681958675,
|
| 963 |
+
"num_tokens": 10633325.0,
|
| 964 |
+
"step": 800
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 0.7121793801813832,
|
| 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": 10633325.0,
|
| 972 |
+
"eval_coding_runtime": 95.7207,
|
| 973 |
+
"eval_coding_samples_per_second": 5.224,
|
| 974 |
+
"eval_coding_steps_per_second": 2.612,
|
| 975 |
+
"step": 800
|
| 976 |
+
},
|
| 977 |
+
{
|
| 978 |
+
"epoch": 0.7121793801813832,
|
| 979 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 980 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 981 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 982 |
+
"eval_chemistry_num_tokens": 10633325.0,
|
| 983 |
+
"eval_chemistry_runtime": 53.6314,
|
| 984 |
+
"eval_chemistry_samples_per_second": 9.323,
|
| 985 |
+
"eval_chemistry_steps_per_second": 4.661,
|
| 986 |
+
"step": 800
|
| 987 |
+
},
|
| 988 |
+
{
|
| 989 |
+
"entropy": 2.421719251573086,
|
| 990 |
+
"epoch": 0.7210816224336505,
|
| 991 |
+
"grad_norm": 0.009033203125,
|
| 992 |
+
"learning_rate": 1.618e-05,
|
| 993 |
+
"loss": 3.373,
|
| 994 |
+
"mean_token_accuracy": 0.4373985629528761,
|
| 995 |
+
"num_tokens": 10764319.0,
|
| 996 |
+
"step": 810
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"entropy": 2.43545116186142,
|
| 1000 |
+
"epoch": 0.7299838646859178,
|
| 1001 |
+
"grad_norm": 0.01287841796875,
|
| 1002 |
+
"learning_rate": 1.638e-05,
|
| 1003 |
+
"loss": 3.3444,
|
| 1004 |
+
"mean_token_accuracy": 0.43578007342293856,
|
| 1005 |
+
"num_tokens": 10897916.0,
|
| 1006 |
+
"step": 820
|
| 1007 |
+
},
|
| 1008 |
+
{
|
| 1009 |
+
"entropy": 2.5303331069648265,
|
| 1010 |
+
"epoch": 0.738886106938185,
|
| 1011 |
+
"grad_norm": 0.0125732421875,
|
| 1012 |
+
"learning_rate": 1.658e-05,
|
| 1013 |
+
"loss": 3.4252,
|
| 1014 |
+
"mean_token_accuracy": 0.4248075334355235,
|
| 1015 |
+
"num_tokens": 11030485.0,
|
| 1016 |
+
"step": 830
|
| 1017 |
+
},
|
| 1018 |
+
{
|
| 1019 |
+
"entropy": 2.4731515564024447,
|
| 1020 |
+
"epoch": 0.7477883491904523,
|
| 1021 |
+
"grad_norm": 0.007659912109375,
|
| 1022 |
+
"learning_rate": 1.6780000000000002e-05,
|
| 1023 |
+
"loss": 3.4258,
|
| 1024 |
+
"mean_token_accuracy": 0.43433472914621235,
|
| 1025 |
+
"num_tokens": 11165356.0,
|
| 1026 |
+
"step": 840
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"entropy": 2.4785347141325476,
|
| 1030 |
+
"epoch": 0.7566905914427197,
|
| 1031 |
+
"grad_norm": 0.0087890625,
|
| 1032 |
+
"learning_rate": 1.698e-05,
|
| 1033 |
+
"loss": 3.4161,
|
| 1034 |
+
"mean_token_accuracy": 0.4306844290345907,
|
| 1035 |
+
"num_tokens": 11299223.0,
|
| 1036 |
+
"step": 850
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"entropy": 2.4768461272120477,
|
| 1040 |
+
"epoch": 0.7655928336949869,
|
| 1041 |
+
"grad_norm": 0.01287841796875,
|
| 1042 |
+
"learning_rate": 1.718e-05,
|
| 1043 |
+
"loss": 3.3776,
|
| 1044 |
+
"mean_token_accuracy": 0.4344117846339941,
|
| 1045 |
+
"num_tokens": 11436799.0,
|
| 1046 |
+
"step": 860
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"entropy": 2.5141974300146104,
|
| 1050 |
+
"epoch": 0.7744950759472542,
|
| 1051 |
+
"grad_norm": 0.00830078125,
|
| 1052 |
+
"learning_rate": 1.7380000000000003e-05,
|
| 1053 |
+
"loss": 3.3958,
|
| 1054 |
+
"mean_token_accuracy": 0.4330358326435089,
|
| 1055 |
+
"num_tokens": 11567422.0,
|
| 1056 |
+
"step": 870
|
| 1057 |
+
},
|
| 1058 |
+
{
|
| 1059 |
+
"entropy": 2.515311509370804,
|
| 1060 |
+
"epoch": 0.7833973181995215,
|
| 1061 |
+
"grad_norm": 0.009765625,
|
| 1062 |
+
"learning_rate": 1.758e-05,
|
| 1063 |
+
"loss": 3.4031,
|
| 1064 |
+
"mean_token_accuracy": 0.4312752116471529,
|
| 1065 |
+
"num_tokens": 11703496.0,
|
| 1066 |
+
"step": 880
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"entropy": 2.453214881569147,
|
| 1070 |
+
"epoch": 0.7922995604517888,
|
| 1071 |
+
"grad_norm": 0.0093994140625,
|
| 1072 |
+
"learning_rate": 1.7780000000000003e-05,
|
| 1073 |
+
"loss": 3.3834,
|
| 1074 |
+
"mean_token_accuracy": 0.4389944301918149,
|
| 1075 |
+
"num_tokens": 11840317.0,
|
| 1076 |
+
"step": 890
|
| 1077 |
+
},
|
| 1078 |
+
{
|
| 1079 |
+
"entropy": 2.6043091461062433,
|
| 1080 |
+
"epoch": 0.801201802704056,
|
| 1081 |
+
"grad_norm": 0.01116943359375,
|
| 1082 |
+
"learning_rate": 1.798e-05,
|
| 1083 |
+
"loss": 3.5713,
|
| 1084 |
+
"mean_token_accuracy": 0.4135642783716321,
|
| 1085 |
+
"num_tokens": 11965530.0,
|
| 1086 |
+
"step": 900
|
| 1087 |
+
},
|
| 1088 |
+
{
|
| 1089 |
+
"epoch": 0.801201802704056,
|
| 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": 11965530.0,
|
| 1094 |
+
"eval_coding_runtime": 95.8462,
|
| 1095 |
+
"eval_coding_samples_per_second": 5.217,
|
| 1096 |
+
"eval_coding_steps_per_second": 2.608,
|
| 1097 |
+
"step": 900
|
| 1098 |
+
},
|
| 1099 |
+
{
|
| 1100 |
+
"epoch": 0.801201802704056,
|
| 1101 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 1102 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 1103 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 1104 |
+
"eval_chemistry_num_tokens": 11965530.0,
|
| 1105 |
+
"eval_chemistry_runtime": 53.6177,
|
| 1106 |
+
"eval_chemistry_samples_per_second": 9.325,
|
| 1107 |
+
"eval_chemistry_steps_per_second": 4.663,
|
| 1108 |
+
"step": 900
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"entropy": 2.4632391795516013,
|
| 1112 |
+
"epoch": 0.8101040449563234,
|
| 1113 |
+
"grad_norm": 0.00836181640625,
|
| 1114 |
+
"learning_rate": 1.8180000000000002e-05,
|
| 1115 |
+
"loss": 3.4352,
|
| 1116 |
+
"mean_token_accuracy": 0.42954989019781353,
|
| 1117 |
+
"num_tokens": 12097917.0,
|
| 1118 |
+
"step": 910
|
| 1119 |
+
},
|
| 1120 |
+
{
|
| 1121 |
+
"entropy": 2.468993365764618,
|
| 1122 |
+
"epoch": 0.8190062872085907,
|
| 1123 |
+
"grad_norm": 0.0089111328125,
|
| 1124 |
+
"learning_rate": 1.8380000000000004e-05,
|
| 1125 |
+
"loss": 3.4071,
|
| 1126 |
+
"mean_token_accuracy": 0.4282375952228904,
|
| 1127 |
+
"num_tokens": 12224427.0,
|
| 1128 |
+
"step": 920
|
| 1129 |
+
},
|
| 1130 |
+
{
|
| 1131 |
+
"entropy": 2.468296863883734,
|
| 1132 |
+
"epoch": 0.8279085294608579,
|
| 1133 |
+
"grad_norm": 0.008056640625,
|
| 1134 |
+
"learning_rate": 1.858e-05,
|
| 1135 |
+
"loss": 3.3355,
|
| 1136 |
+
"mean_token_accuracy": 0.43817838532850145,
|
| 1137 |
+
"num_tokens": 12365332.0,
|
| 1138 |
+
"step": 930
|
| 1139 |
+
},
|
| 1140 |
+
{
|
| 1141 |
+
"entropy": 2.427542605996132,
|
| 1142 |
+
"epoch": 0.8368107717131252,
|
| 1143 |
+
"grad_norm": 0.01031494140625,
|
| 1144 |
+
"learning_rate": 1.878e-05,
|
| 1145 |
+
"loss": 3.317,
|
| 1146 |
+
"mean_token_accuracy": 0.44397469637915493,
|
| 1147 |
+
"num_tokens": 12509124.0,
|
| 1148 |
+
"step": 940
|
| 1149 |
+
},
|
| 1150 |
+
{
|
| 1151 |
+
"entropy": 2.4841547794640064,
|
| 1152 |
+
"epoch": 0.8457130139653926,
|
| 1153 |
+
"grad_norm": 0.018798828125,
|
| 1154 |
+
"learning_rate": 1.898e-05,
|
| 1155 |
+
"loss": 3.3654,
|
| 1156 |
+
"mean_token_accuracy": 0.434748101234436,
|
| 1157 |
+
"num_tokens": 12642651.0,
|
| 1158 |
+
"step": 950
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"entropy": 2.449143522232771,
|
| 1162 |
+
"epoch": 0.8546152562176598,
|
| 1163 |
+
"grad_norm": 0.00738525390625,
|
| 1164 |
+
"learning_rate": 1.918e-05,
|
| 1165 |
+
"loss": 3.4035,
|
| 1166 |
+
"mean_token_accuracy": 0.43319537229835986,
|
| 1167 |
+
"num_tokens": 12778408.0,
|
| 1168 |
+
"step": 960
|
| 1169 |
+
},
|
| 1170 |
+
{
|
| 1171 |
+
"entropy": 2.387574986368418,
|
| 1172 |
+
"epoch": 0.8635174984699271,
|
| 1173 |
+
"grad_norm": 0.0072021484375,
|
| 1174 |
+
"learning_rate": 1.938e-05,
|
| 1175 |
+
"loss": 3.2822,
|
| 1176 |
+
"mean_token_accuracy": 0.4413015801459551,
|
| 1177 |
+
"num_tokens": 12910630.0,
|
| 1178 |
+
"step": 970
|
| 1179 |
+
},
|
| 1180 |
+
{
|
| 1181 |
+
"entropy": 2.5341439098119736,
|
| 1182 |
+
"epoch": 0.8724197407221944,
|
| 1183 |
+
"grad_norm": 0.01055908203125,
|
| 1184 |
+
"learning_rate": 1.9580000000000002e-05,
|
| 1185 |
+
"loss": 3.4749,
|
| 1186 |
+
"mean_token_accuracy": 0.4271688721142709,
|
| 1187 |
+
"num_tokens": 13046473.0,
|
| 1188 |
+
"step": 980
|
| 1189 |
+
},
|
| 1190 |
+
{
|
| 1191 |
+
"entropy": 2.5607902660965918,
|
| 1192 |
+
"epoch": 0.8813219829744617,
|
| 1193 |
+
"grad_norm": 0.00848388671875,
|
| 1194 |
+
"learning_rate": 1.978e-05,
|
| 1195 |
+
"loss": 3.4981,
|
| 1196 |
+
"mean_token_accuracy": 0.4231617606244981,
|
| 1197 |
+
"num_tokens": 13167768.0,
|
| 1198 |
+
"step": 990
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"entropy": 2.4919896230101584,
|
| 1202 |
+
"epoch": 0.890224225226729,
|
| 1203 |
+
"grad_norm": 0.009765625,
|
| 1204 |
+
"learning_rate": 1.9980000000000002e-05,
|
| 1205 |
+
"loss": 3.3681,
|
| 1206 |
+
"mean_token_accuracy": 0.43273249492049215,
|
| 1207 |
+
"num_tokens": 13301659.0,
|
| 1208 |
+
"step": 1000
|
| 1209 |
+
},
|
| 1210 |
+
{
|
| 1211 |
+
"epoch": 0.890224225226729,
|
| 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": 13301659.0,
|
| 1216 |
+
"eval_coding_runtime": 95.788,
|
| 1217 |
+
"eval_coding_samples_per_second": 5.22,
|
| 1218 |
+
"eval_coding_steps_per_second": 2.61,
|
| 1219 |
+
"step": 1000
|
| 1220 |
+
},
|
| 1221 |
+
{
|
| 1222 |
+
"epoch": 0.890224225226729,
|
| 1223 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 1224 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 1225 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 1226 |
+
"eval_chemistry_num_tokens": 13301659.0,
|
| 1227 |
+
"eval_chemistry_runtime": 53.3313,
|
| 1228 |
+
"eval_chemistry_samples_per_second": 9.375,
|
| 1229 |
+
"eval_chemistry_steps_per_second": 4.688,
|
| 1230 |
+
"step": 1000
|
| 1231 |
+
},
|
| 1232 |
+
{
|
| 1233 |
+
"entropy": 2.482378314435482,
|
| 1234 |
+
"epoch": 0.8991264674789963,
|
| 1235 |
+
"grad_norm": 0.0098876953125,
|
| 1236 |
+
"learning_rate": 1.9980000000000002e-05,
|
| 1237 |
+
"loss": 3.4139,
|
| 1238 |
+
"mean_token_accuracy": 0.4351740827783942,
|
| 1239 |
+
"num_tokens": 13434364.0,
|
| 1240 |
+
"step": 1010
|
| 1241 |
+
},
|
| 1242 |
+
{
|
| 1243 |
+
"entropy": 2.397843288630247,
|
| 1244 |
+
"epoch": 0.9080287097312636,
|
| 1245 |
+
"grad_norm": 0.00909423828125,
|
| 1246 |
+
"learning_rate": 1.995777777777778e-05,
|
| 1247 |
+
"loss": 3.2598,
|
| 1248 |
+
"mean_token_accuracy": 0.4428169864229858,
|
| 1249 |
+
"num_tokens": 13570986.0,
|
| 1250 |
+
"step": 1020
|
| 1251 |
+
},
|
| 1252 |
+
{
|
| 1253 |
+
"entropy": 2.426850029826164,
|
| 1254 |
+
"epoch": 0.9169309519835308,
|
| 1255 |
+
"grad_norm": 0.0191650390625,
|
| 1256 |
+
"learning_rate": 1.9935555555555557e-05,
|
| 1257 |
+
"loss": 3.3704,
|
| 1258 |
+
"mean_token_accuracy": 0.43931040428578855,
|
| 1259 |
+
"num_tokens": 13706343.0,
|
| 1260 |
+
"step": 1030
|
| 1261 |
+
},
|
| 1262 |
+
{
|
| 1263 |
+
"entropy": 2.5369828954339027,
|
| 1264 |
+
"epoch": 0.9258331942357981,
|
| 1265 |
+
"grad_norm": 0.013671875,
|
| 1266 |
+
"learning_rate": 1.9913333333333335e-05,
|
| 1267 |
+
"loss": 3.4473,
|
| 1268 |
+
"mean_token_accuracy": 0.42489275773987173,
|
| 1269 |
+
"num_tokens": 13833901.0,
|
| 1270 |
+
"step": 1040
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"entropy": 2.495298910140991,
|
| 1274 |
+
"epoch": 0.9347354364880655,
|
| 1275 |
+
"grad_norm": 0.0186767578125,
|
| 1276 |
+
"learning_rate": 1.9891111111111112e-05,
|
| 1277 |
+
"loss": 3.4641,
|
| 1278 |
+
"mean_token_accuracy": 0.4274964226409793,
|
| 1279 |
+
"num_tokens": 13954258.0,
|
| 1280 |
+
"step": 1050
|
| 1281 |
+
},
|
| 1282 |
+
{
|
| 1283 |
+
"entropy": 2.4657325744628906,
|
| 1284 |
+
"epoch": 0.9436376787403328,
|
| 1285 |
+
"grad_norm": 0.0081787109375,
|
| 1286 |
+
"learning_rate": 1.986888888888889e-05,
|
| 1287 |
+
"loss": 3.3954,
|
| 1288 |
+
"mean_token_accuracy": 0.4306732133962214,
|
| 1289 |
+
"num_tokens": 14093888.0,
|
| 1290 |
+
"step": 1060
|
| 1291 |
+
},
|
| 1292 |
+
{
|
| 1293 |
+
"entropy": 2.533431290090084,
|
| 1294 |
+
"epoch": 0.9525399209926,
|
| 1295 |
+
"grad_norm": 0.0133056640625,
|
| 1296 |
+
"learning_rate": 1.9846666666666668e-05,
|
| 1297 |
+
"loss": 3.4682,
|
| 1298 |
+
"mean_token_accuracy": 0.4237683041021228,
|
| 1299 |
+
"num_tokens": 14222626.0,
|
| 1300 |
+
"step": 1070
|
| 1301 |
+
},
|
| 1302 |
+
{
|
| 1303 |
+
"entropy": 2.535231586545706,
|
| 1304 |
+
"epoch": 0.9614421632448673,
|
| 1305 |
+
"grad_norm": 0.00823974609375,
|
| 1306 |
+
"learning_rate": 1.9824444444444445e-05,
|
| 1307 |
+
"loss": 3.4095,
|
| 1308 |
+
"mean_token_accuracy": 0.4307479955255985,
|
| 1309 |
+
"num_tokens": 14354918.0,
|
| 1310 |
+
"step": 1080
|
| 1311 |
+
},
|
| 1312 |
+
{
|
| 1313 |
+
"entropy": 2.507918354868889,
|
| 1314 |
+
"epoch": 0.9703444054971346,
|
| 1315 |
+
"grad_norm": 0.0076904296875,
|
| 1316 |
+
"learning_rate": 1.9802222222222226e-05,
|
| 1317 |
+
"loss": 3.4265,
|
| 1318 |
+
"mean_token_accuracy": 0.4296759738586843,
|
| 1319 |
+
"num_tokens": 14493349.0,
|
| 1320 |
+
"step": 1090
|
| 1321 |
+
},
|
| 1322 |
+
{
|
| 1323 |
+
"entropy": 2.4675292283296586,
|
| 1324 |
+
"epoch": 0.9792466477494018,
|
| 1325 |
+
"grad_norm": 0.0084228515625,
|
| 1326 |
+
"learning_rate": 1.978e-05,
|
| 1327 |
+
"loss": 3.4234,
|
| 1328 |
+
"mean_token_accuracy": 0.42840409390628337,
|
| 1329 |
+
"num_tokens": 14620244.0,
|
| 1330 |
+
"step": 1100
|
| 1331 |
+
},
|
| 1332 |
+
{
|
| 1333 |
+
"epoch": 0.9792466477494018,
|
| 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": 14620244.0,
|
| 1338 |
+
"eval_coding_runtime": 95.7872,
|
| 1339 |
+
"eval_coding_samples_per_second": 5.22,
|
| 1340 |
+
"eval_coding_steps_per_second": 2.61,
|
| 1341 |
+
"step": 1100
|
| 1342 |
+
},
|
| 1343 |
+
{
|
| 1344 |
+
"epoch": 0.9792466477494018,
|
| 1345 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 1346 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 1347 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 1348 |
+
"eval_chemistry_num_tokens": 14620244.0,
|
| 1349 |
+
"eval_chemistry_runtime": 53.6439,
|
| 1350 |
+
"eval_chemistry_samples_per_second": 9.321,
|
| 1351 |
+
"eval_chemistry_steps_per_second": 4.66,
|
| 1352 |
+
"step": 1100
|
| 1353 |
+
},
|
| 1354 |
+
{
|
| 1355 |
+
"entropy": 2.4005719617009165,
|
| 1356 |
+
"epoch": 0.9881488900016692,
|
| 1357 |
+
"grad_norm": 0.00958251953125,
|
| 1358 |
+
"learning_rate": 1.975777777777778e-05,
|
| 1359 |
+
"loss": 3.3593,
|
| 1360 |
+
"mean_token_accuracy": 0.4352086253464222,
|
| 1361 |
+
"num_tokens": 14760951.0,
|
| 1362 |
+
"step": 1110
|
| 1363 |
+
},
|
| 1364 |
+
{
|
| 1365 |
+
"entropy": 2.558166432380676,
|
| 1366 |
+
"epoch": 0.9970511322539365,
|
| 1367 |
+
"grad_norm": 0.00933837890625,
|
| 1368 |
+
"learning_rate": 1.9735555555555556e-05,
|
| 1369 |
+
"loss": 3.5454,
|
| 1370 |
+
"mean_token_accuracy": 0.42158968318253753,
|
| 1371 |
+
"num_tokens": 14886593.0,
|
| 1372 |
+
"step": 1120
|
| 1373 |
+
},
|
| 1374 |
+
{
|
| 1375 |
+
"entropy": 2.456293193285897,
|
| 1376 |
+
"epoch": 1.0053413453513604,
|
| 1377 |
+
"grad_norm": 0.008544921875,
|
| 1378 |
+
"learning_rate": 1.9713333333333337e-05,
|
| 1379 |
+
"loss": 3.329,
|
| 1380 |
+
"mean_token_accuracy": 0.431678411744585,
|
| 1381 |
+
"num_tokens": 15009964.0,
|
| 1382 |
+
"step": 1130
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"entropy": 2.3623578011989594,
|
| 1386 |
+
"epoch": 1.0142435876036278,
|
| 1387 |
+
"grad_norm": 0.01019287109375,
|
| 1388 |
+
"learning_rate": 1.969111111111111e-05,
|
| 1389 |
+
"loss": 3.2394,
|
| 1390 |
+
"mean_token_accuracy": 0.4485295919701457,
|
| 1391 |
+
"num_tokens": 15146469.0,
|
| 1392 |
+
"step": 1140
|
| 1393 |
+
},
|
| 1394 |
+
{
|
| 1395 |
+
"entropy": 2.537761741876602,
|
| 1396 |
+
"epoch": 1.0231458298558949,
|
| 1397 |
+
"grad_norm": 0.017578125,
|
| 1398 |
+
"learning_rate": 1.9668888888888892e-05,
|
| 1399 |
+
"loss": 3.4544,
|
| 1400 |
+
"mean_token_accuracy": 0.42700372273102405,
|
| 1401 |
+
"num_tokens": 15274532.0,
|
| 1402 |
+
"step": 1150
|
| 1403 |
+
},
|
| 1404 |
+
{
|
| 1405 |
+
"entropy": 2.560138799250126,
|
| 1406 |
+
"epoch": 1.0320480721081622,
|
| 1407 |
+
"grad_norm": 0.01312255859375,
|
| 1408 |
+
"learning_rate": 1.9646666666666666e-05,
|
| 1409 |
+
"loss": 3.5139,
|
| 1410 |
+
"mean_token_accuracy": 0.42576750814914704,
|
| 1411 |
+
"num_tokens": 15404569.0,
|
| 1412 |
+
"step": 1160
|
| 1413 |
+
},
|
| 1414 |
+
{
|
| 1415 |
+
"entropy": 2.4245593287050724,
|
| 1416 |
+
"epoch": 1.0409503143604295,
|
| 1417 |
+
"grad_norm": 0.00665283203125,
|
| 1418 |
+
"learning_rate": 1.9624444444444447e-05,
|
| 1419 |
+
"loss": 3.3292,
|
| 1420 |
+
"mean_token_accuracy": 0.4398623496294022,
|
| 1421 |
+
"num_tokens": 15550449.0,
|
| 1422 |
+
"step": 1170
|
| 1423 |
+
},
|
| 1424 |
+
{
|
| 1425 |
+
"entropy": 2.447620178759098,
|
| 1426 |
+
"epoch": 1.0498525566126968,
|
| 1427 |
+
"grad_norm": 0.00872802734375,
|
| 1428 |
+
"learning_rate": 1.9602222222222225e-05,
|
| 1429 |
+
"loss": 3.4233,
|
| 1430 |
+
"mean_token_accuracy": 0.4298626586794853,
|
| 1431 |
+
"num_tokens": 15681709.0,
|
| 1432 |
+
"step": 1180
|
| 1433 |
+
},
|
| 1434 |
+
{
|
| 1435 |
+
"entropy": 2.481611392647028,
|
| 1436 |
+
"epoch": 1.0587547988649642,
|
| 1437 |
+
"grad_norm": 0.01165771484375,
|
| 1438 |
+
"learning_rate": 1.9580000000000002e-05,
|
| 1439 |
+
"loss": 3.3803,
|
| 1440 |
+
"mean_token_accuracy": 0.43227153811603786,
|
| 1441 |
+
"num_tokens": 15816502.0,
|
| 1442 |
+
"step": 1190
|
| 1443 |
+
},
|
| 1444 |
+
{
|
| 1445 |
+
"entropy": 2.441844770312309,
|
| 1446 |
+
"epoch": 1.0676570411172315,
|
| 1447 |
+
"grad_norm": 0.00958251953125,
|
| 1448 |
+
"learning_rate": 1.955777777777778e-05,
|
| 1449 |
+
"loss": 3.3808,
|
| 1450 |
+
"mean_token_accuracy": 0.4364687578752637,
|
| 1451 |
+
"num_tokens": 15949421.0,
|
| 1452 |
+
"step": 1200
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"epoch": 1.0676570411172315,
|
| 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": 15949421.0,
|
| 1460 |
+
"eval_coding_runtime": 95.6237,
|
| 1461 |
+
"eval_coding_samples_per_second": 5.229,
|
| 1462 |
+
"eval_coding_steps_per_second": 2.614,
|
| 1463 |
+
"step": 1200
|
| 1464 |
+
},
|
| 1465 |
+
{
|
| 1466 |
+
"epoch": 1.0676570411172315,
|
| 1467 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 1468 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 1469 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 1470 |
+
"eval_chemistry_num_tokens": 15949421.0,
|
| 1471 |
+
"eval_chemistry_runtime": 53.6265,
|
| 1472 |
+
"eval_chemistry_samples_per_second": 9.324,
|
| 1473 |
+
"eval_chemistry_steps_per_second": 4.662,
|
| 1474 |
+
"step": 1200
|
| 1475 |
+
},
|
| 1476 |
+
{
|
| 1477 |
+
"entropy": 2.4238644503057003,
|
| 1478 |
+
"epoch": 1.0765592833694986,
|
| 1479 |
+
"grad_norm": 0.00921630859375,
|
| 1480 |
+
"learning_rate": 1.9535555555555557e-05,
|
| 1481 |
+
"loss": 3.3419,
|
| 1482 |
+
"mean_token_accuracy": 0.43726830892264845,
|
| 1483 |
+
"num_tokens": 16088471.0,
|
| 1484 |
+
"step": 1210
|
| 1485 |
+
},
|
| 1486 |
+
{
|
| 1487 |
+
"entropy": 2.4736556738615034,
|
| 1488 |
+
"epoch": 1.085461525621766,
|
| 1489 |
+
"grad_norm": 0.0079345703125,
|
| 1490 |
+
"learning_rate": 1.9513333333333335e-05,
|
| 1491 |
+
"loss": 3.403,
|
| 1492 |
+
"mean_token_accuracy": 0.43131555467844007,
|
| 1493 |
+
"num_tokens": 16221916.0,
|
| 1494 |
+
"step": 1220
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"entropy": 2.5666570000350477,
|
| 1498 |
+
"epoch": 1.0943637678740332,
|
| 1499 |
+
"grad_norm": 0.0107421875,
|
| 1500 |
+
"learning_rate": 1.9491111111111113e-05,
|
| 1501 |
+
"loss": 3.4806,
|
| 1502 |
+
"mean_token_accuracy": 0.4240891897119582,
|
| 1503 |
+
"num_tokens": 16353558.0,
|
| 1504 |
+
"step": 1230
|
| 1505 |
+
},
|
| 1506 |
+
{
|
| 1507 |
+
"entropy": 2.5181381188333036,
|
| 1508 |
+
"epoch": 1.1032660101263005,
|
| 1509 |
+
"grad_norm": 0.00799560546875,
|
| 1510 |
+
"learning_rate": 1.946888888888889e-05,
|
| 1511 |
+
"loss": 3.4298,
|
| 1512 |
+
"mean_token_accuracy": 0.4259687649086118,
|
| 1513 |
+
"num_tokens": 16488154.0,
|
| 1514 |
+
"step": 1240
|
| 1515 |
+
},
|
| 1516 |
+
{
|
| 1517 |
+
"entropy": 2.514085105806589,
|
| 1518 |
+
"epoch": 1.1121682523785679,
|
| 1519 |
+
"grad_norm": 0.010498046875,
|
| 1520 |
+
"learning_rate": 1.9446666666666668e-05,
|
| 1521 |
+
"loss": 3.4249,
|
| 1522 |
+
"mean_token_accuracy": 0.42915988666936755,
|
| 1523 |
+
"num_tokens": 16618151.0,
|
| 1524 |
+
"step": 1250
|
| 1525 |
+
},
|
| 1526 |
+
{
|
| 1527 |
+
"entropy": 2.4717010237276553,
|
| 1528 |
+
"epoch": 1.1210704946308352,
|
| 1529 |
+
"grad_norm": 0.00811767578125,
|
| 1530 |
+
"learning_rate": 1.9424444444444446e-05,
|
| 1531 |
+
"loss": 3.3908,
|
| 1532 |
+
"mean_token_accuracy": 0.43228524839505555,
|
| 1533 |
+
"num_tokens": 16756828.0,
|
| 1534 |
+
"step": 1260
|
| 1535 |
+
},
|
| 1536 |
+
{
|
| 1537 |
+
"entropy": 2.517887058854103,
|
| 1538 |
+
"epoch": 1.1299727368831025,
|
| 1539 |
+
"grad_norm": 0.01141357421875,
|
| 1540 |
+
"learning_rate": 1.9402222222222223e-05,
|
| 1541 |
+
"loss": 3.4328,
|
| 1542 |
+
"mean_token_accuracy": 0.42816000785678626,
|
| 1543 |
+
"num_tokens": 16890026.0,
|
| 1544 |
+
"step": 1270
|
| 1545 |
+
},
|
| 1546 |
+
{
|
| 1547 |
+
"entropy": 2.4103298880159856,
|
| 1548 |
+
"epoch": 1.1388749791353696,
|
| 1549 |
+
"grad_norm": 0.01025390625,
|
| 1550 |
+
"learning_rate": 1.938e-05,
|
| 1551 |
+
"loss": 3.3448,
|
| 1552 |
+
"mean_token_accuracy": 0.4348219852894545,
|
| 1553 |
+
"num_tokens": 17023681.0,
|
| 1554 |
+
"step": 1280
|
| 1555 |
+
},
|
| 1556 |
+
{
|
| 1557 |
+
"entropy": 2.509786891192198,
|
| 1558 |
+
"epoch": 1.147777221387637,
|
| 1559 |
+
"grad_norm": 0.0179443359375,
|
| 1560 |
+
"learning_rate": 1.935777777777778e-05,
|
| 1561 |
+
"loss": 3.4512,
|
| 1562 |
+
"mean_token_accuracy": 0.4285705531015992,
|
| 1563 |
+
"num_tokens": 17155619.0,
|
| 1564 |
+
"step": 1290
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"entropy": 2.503946328163147,
|
| 1568 |
+
"epoch": 1.1566794636399043,
|
| 1569 |
+
"grad_norm": 0.01123046875,
|
| 1570 |
+
"learning_rate": 1.9335555555555556e-05,
|
| 1571 |
+
"loss": 3.4103,
|
| 1572 |
+
"mean_token_accuracy": 0.4285626333206892,
|
| 1573 |
+
"num_tokens": 17286672.0,
|
| 1574 |
+
"step": 1300
|
| 1575 |
+
},
|
| 1576 |
+
{
|
| 1577 |
+
"epoch": 1.1566794636399043,
|
| 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": 17286672.0,
|
| 1582 |
+
"eval_coding_runtime": 95.8416,
|
| 1583 |
+
"eval_coding_samples_per_second": 5.217,
|
| 1584 |
+
"eval_coding_steps_per_second": 2.608,
|
| 1585 |
+
"step": 1300
|
| 1586 |
+
},
|
| 1587 |
+
{
|
| 1588 |
+
"epoch": 1.1566794636399043,
|
| 1589 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 1590 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 1591 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 1592 |
+
"eval_chemistry_num_tokens": 17286672.0,
|
| 1593 |
+
"eval_chemistry_runtime": 53.6206,
|
| 1594 |
+
"eval_chemistry_samples_per_second": 9.325,
|
| 1595 |
+
"eval_chemistry_steps_per_second": 4.662,
|
| 1596 |
+
"step": 1300
|
| 1597 |
+
},
|
| 1598 |
+
{
|
| 1599 |
+
"entropy": 2.511377315223217,
|
| 1600 |
+
"epoch": 1.1655817058921716,
|
| 1601 |
+
"grad_norm": 0.00958251953125,
|
| 1602 |
+
"learning_rate": 1.9313333333333334e-05,
|
| 1603 |
+
"loss": 3.493,
|
| 1604 |
+
"mean_token_accuracy": 0.4217289647087455,
|
| 1605 |
+
"num_tokens": 17418216.0,
|
| 1606 |
+
"step": 1310
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"entropy": 2.5961489491164684,
|
| 1610 |
+
"epoch": 1.174483948144439,
|
| 1611 |
+
"grad_norm": 0.00958251953125,
|
| 1612 |
+
"learning_rate": 1.9291111111111115e-05,
|
| 1613 |
+
"loss": 3.4532,
|
| 1614 |
+
"mean_token_accuracy": 0.4226861286908388,
|
| 1615 |
+
"num_tokens": 17551581.0,
|
| 1616 |
+
"step": 1320
|
| 1617 |
+
},
|
| 1618 |
+
{
|
| 1619 |
+
"entropy": 2.4733773186802863,
|
| 1620 |
+
"epoch": 1.1833861903967062,
|
| 1621 |
+
"grad_norm": 0.0078125,
|
| 1622 |
+
"learning_rate": 1.926888888888889e-05,
|
| 1623 |
+
"loss": 3.406,
|
| 1624 |
+
"mean_token_accuracy": 0.43328642603009937,
|
| 1625 |
+
"num_tokens": 17685328.0,
|
| 1626 |
+
"step": 1330
|
| 1627 |
+
},
|
| 1628 |
+
{
|
| 1629 |
+
"entropy": 2.504808610677719,
|
| 1630 |
+
"epoch": 1.1922884326489736,
|
| 1631 |
+
"grad_norm": 0.010986328125,
|
| 1632 |
+
"learning_rate": 1.924666666666667e-05,
|
| 1633 |
+
"loss": 3.3902,
|
| 1634 |
+
"mean_token_accuracy": 0.43533999361097814,
|
| 1635 |
+
"num_tokens": 17821205.0,
|
| 1636 |
+
"step": 1340
|
| 1637 |
+
},
|
| 1638 |
+
{
|
| 1639 |
+
"entropy": 2.554856265336275,
|
| 1640 |
+
"epoch": 1.2011906749012407,
|
| 1641 |
+
"grad_norm": 0.008544921875,
|
| 1642 |
+
"learning_rate": 1.9224444444444444e-05,
|
| 1643 |
+
"loss": 3.5145,
|
| 1644 |
+
"mean_token_accuracy": 0.4222357952967286,
|
| 1645 |
+
"num_tokens": 17950081.0,
|
| 1646 |
+
"step": 1350
|
| 1647 |
+
},
|
| 1648 |
+
{
|
| 1649 |
+
"entropy": 2.4698183365166186,
|
| 1650 |
+
"epoch": 1.210092917153508,
|
| 1651 |
+
"grad_norm": 0.007568359375,
|
| 1652 |
+
"learning_rate": 1.9202222222222225e-05,
|
| 1653 |
+
"loss": 3.3678,
|
| 1654 |
+
"mean_token_accuracy": 0.4337294826284051,
|
| 1655 |
+
"num_tokens": 18087759.0,
|
| 1656 |
+
"step": 1360
|
| 1657 |
+
},
|
| 1658 |
+
{
|
| 1659 |
+
"entropy": 2.491861944645643,
|
| 1660 |
+
"epoch": 1.2189951594057753,
|
| 1661 |
+
"grad_norm": 0.00933837890625,
|
| 1662 |
+
"learning_rate": 1.918e-05,
|
| 1663 |
+
"loss": 3.3956,
|
| 1664 |
+
"mean_token_accuracy": 0.43155251136049627,
|
| 1665 |
+
"num_tokens": 18229440.0,
|
| 1666 |
+
"step": 1370
|
| 1667 |
+
},
|
| 1668 |
+
{
|
| 1669 |
+
"entropy": 2.544880051165819,
|
| 1670 |
+
"epoch": 1.2278974016580426,
|
| 1671 |
+
"grad_norm": 0.01019287109375,
|
| 1672 |
+
"learning_rate": 1.915777777777778e-05,
|
| 1673 |
+
"loss": 3.4837,
|
| 1674 |
+
"mean_token_accuracy": 0.4227764903567731,
|
| 1675 |
+
"num_tokens": 18355732.0,
|
| 1676 |
+
"step": 1380
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"entropy": 2.608750829845667,
|
| 1680 |
+
"epoch": 1.23679964391031,
|
| 1681 |
+
"grad_norm": 0.0096435546875,
|
| 1682 |
+
"learning_rate": 1.9135555555555555e-05,
|
| 1683 |
+
"loss": 3.5353,
|
| 1684 |
+
"mean_token_accuracy": 0.42066937144845723,
|
| 1685 |
+
"num_tokens": 18489654.0,
|
| 1686 |
+
"step": 1390
|
| 1687 |
+
},
|
| 1688 |
+
{
|
| 1689 |
+
"entropy": 2.4528128817677497,
|
| 1690 |
+
"epoch": 1.2457018861625773,
|
| 1691 |
+
"grad_norm": 0.0067138671875,
|
| 1692 |
+
"learning_rate": 1.9113333333333336e-05,
|
| 1693 |
+
"loss": 3.3402,
|
| 1694 |
+
"mean_token_accuracy": 0.43648717207834126,
|
| 1695 |
+
"num_tokens": 18626245.0,
|
| 1696 |
+
"step": 1400
|
| 1697 |
+
},
|
| 1698 |
+
{
|
| 1699 |
+
"epoch": 1.2457018861625773,
|
| 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": 18626245.0,
|
| 1704 |
+
"eval_coding_runtime": 95.8265,
|
| 1705 |
+
"eval_coding_samples_per_second": 5.218,
|
| 1706 |
+
"eval_coding_steps_per_second": 2.609,
|
| 1707 |
+
"step": 1400
|
| 1708 |
+
},
|
| 1709 |
+
{
|
| 1710 |
+
"epoch": 1.2457018861625773,
|
| 1711 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 1712 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 1713 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 1714 |
+
"eval_chemistry_num_tokens": 18626245.0,
|
| 1715 |
+
"eval_chemistry_runtime": 53.6283,
|
| 1716 |
+
"eval_chemistry_samples_per_second": 9.323,
|
| 1717 |
+
"eval_chemistry_steps_per_second": 4.662,
|
| 1718 |
+
"step": 1400
|
| 1719 |
+
},
|
| 1720 |
+
{
|
| 1721 |
+
"entropy": 2.4507749184966086,
|
| 1722 |
+
"epoch": 1.2546041284148446,
|
| 1723 |
+
"grad_norm": 0.00872802734375,
|
| 1724 |
+
"learning_rate": 1.9091111111111113e-05,
|
| 1725 |
+
"loss": 3.3585,
|
| 1726 |
+
"mean_token_accuracy": 0.43596437461674215,
|
| 1727 |
+
"num_tokens": 18767785.0,
|
| 1728 |
+
"step": 1410
|
| 1729 |
+
},
|
| 1730 |
+
{
|
| 1731 |
+
"entropy": 2.432799159735441,
|
| 1732 |
+
"epoch": 1.2635063706671117,
|
| 1733 |
+
"grad_norm": 0.012451171875,
|
| 1734 |
+
"learning_rate": 1.906888888888889e-05,
|
| 1735 |
+
"loss": 3.309,
|
| 1736 |
+
"mean_token_accuracy": 0.4405426589772105,
|
| 1737 |
+
"num_tokens": 18899632.0,
|
| 1738 |
+
"step": 1420
|
| 1739 |
+
},
|
| 1740 |
+
{
|
| 1741 |
+
"entropy": 2.523366042226553,
|
| 1742 |
+
"epoch": 1.272408612919379,
|
| 1743 |
+
"grad_norm": 0.01068115234375,
|
| 1744 |
+
"learning_rate": 1.904666666666667e-05,
|
| 1745 |
+
"loss": 3.4447,
|
| 1746 |
+
"mean_token_accuracy": 0.42682514479383826,
|
| 1747 |
+
"num_tokens": 19039727.0,
|
| 1748 |
+
"step": 1430
|
| 1749 |
+
},
|
| 1750 |
+
{
|
| 1751 |
+
"entropy": 2.522237445414066,
|
| 1752 |
+
"epoch": 1.2813108551716463,
|
| 1753 |
+
"grad_norm": 0.01190185546875,
|
| 1754 |
+
"learning_rate": 1.9024444444444446e-05,
|
| 1755 |
+
"loss": 3.4611,
|
| 1756 |
+
"mean_token_accuracy": 0.4245713768526912,
|
| 1757 |
+
"num_tokens": 19173635.0,
|
| 1758 |
+
"step": 1440
|
| 1759 |
+
},
|
| 1760 |
+
{
|
| 1761 |
+
"entropy": 2.4513756319880486,
|
| 1762 |
+
"epoch": 1.2902130974239137,
|
| 1763 |
+
"grad_norm": 0.0079345703125,
|
| 1764 |
+
"learning_rate": 1.9002222222222224e-05,
|
| 1765 |
+
"loss": 3.3933,
|
| 1766 |
+
"mean_token_accuracy": 0.4320486688986421,
|
| 1767 |
+
"num_tokens": 19317295.0,
|
| 1768 |
+
"step": 1450
|
| 1769 |
+
},
|
| 1770 |
+
{
|
| 1771 |
+
"entropy": 2.417076099663973,
|
| 1772 |
+
"epoch": 1.299115339676181,
|
| 1773 |
+
"grad_norm": 0.01165771484375,
|
| 1774 |
+
"learning_rate": 1.898e-05,
|
| 1775 |
+
"loss": 3.3298,
|
| 1776 |
+
"mean_token_accuracy": 0.4392012171447277,
|
| 1777 |
+
"num_tokens": 19453495.0,
|
| 1778 |
+
"step": 1460
|
| 1779 |
+
},
|
| 1780 |
+
{
|
| 1781 |
+
"entropy": 2.4171031497418882,
|
| 1782 |
+
"epoch": 1.3080175819284483,
|
| 1783 |
+
"grad_norm": 0.007720947265625,
|
| 1784 |
+
"learning_rate": 1.895777777777778e-05,
|
| 1785 |
+
"loss": 3.3321,
|
| 1786 |
+
"mean_token_accuracy": 0.4389203391969204,
|
| 1787 |
+
"num_tokens": 19588860.0,
|
| 1788 |
+
"step": 1470
|
| 1789 |
+
},
|
| 1790 |
+
{
|
| 1791 |
+
"entropy": 2.475263304263353,
|
| 1792 |
+
"epoch": 1.3169198241807156,
|
| 1793 |
+
"grad_norm": 0.00787353515625,
|
| 1794 |
+
"learning_rate": 1.8935555555555556e-05,
|
| 1795 |
+
"loss": 3.423,
|
| 1796 |
+
"mean_token_accuracy": 0.42983661517500876,
|
| 1797 |
+
"num_tokens": 19719086.0,
|
| 1798 |
+
"step": 1480
|
| 1799 |
+
},
|
| 1800 |
+
{
|
| 1801 |
+
"entropy": 2.4915241256356238,
|
| 1802 |
+
"epoch": 1.3258220664329827,
|
| 1803 |
+
"grad_norm": 0.01251220703125,
|
| 1804 |
+
"learning_rate": 1.8913333333333334e-05,
|
| 1805 |
+
"loss": 3.3932,
|
| 1806 |
+
"mean_token_accuracy": 0.4291253449395299,
|
| 1807 |
+
"num_tokens": 19851321.0,
|
| 1808 |
+
"step": 1490
|
| 1809 |
+
},
|
| 1810 |
+
{
|
| 1811 |
+
"entropy": 2.515060818940401,
|
| 1812 |
+
"epoch": 1.33472430868525,
|
| 1813 |
+
"grad_norm": 0.01190185546875,
|
| 1814 |
+
"learning_rate": 1.8891111111111115e-05,
|
| 1815 |
+
"loss": 3.4452,
|
| 1816 |
+
"mean_token_accuracy": 0.4248286823742092,
|
| 1817 |
+
"num_tokens": 19981272.0,
|
| 1818 |
+
"step": 1500
|
| 1819 |
+
},
|
| 1820 |
+
{
|
| 1821 |
+
"epoch": 1.33472430868525,
|
| 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": 19981272.0,
|
| 1826 |
+
"eval_coding_runtime": 95.9024,
|
| 1827 |
+
"eval_coding_samples_per_second": 5.214,
|
| 1828 |
+
"eval_coding_steps_per_second": 2.607,
|
| 1829 |
+
"step": 1500
|
| 1830 |
+
},
|
| 1831 |
+
{
|
| 1832 |
+
"epoch": 1.33472430868525,
|
| 1833 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 1834 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 1835 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 1836 |
+
"eval_chemistry_num_tokens": 19981272.0,
|
| 1837 |
+
"eval_chemistry_runtime": 53.3916,
|
| 1838 |
+
"eval_chemistry_samples_per_second": 9.365,
|
| 1839 |
+
"eval_chemistry_steps_per_second": 4.682,
|
| 1840 |
+
"step": 1500
|
| 1841 |
+
},
|
| 1842 |
+
{
|
| 1843 |
+
"entropy": 2.537444035708904,
|
| 1844 |
+
"epoch": 1.3436265509375174,
|
| 1845 |
+
"grad_norm": 0.01397705078125,
|
| 1846 |
+
"learning_rate": 1.886888888888889e-05,
|
| 1847 |
+
"loss": 3.4621,
|
| 1848 |
+
"mean_token_accuracy": 0.42645752560347316,
|
| 1849 |
+
"num_tokens": 20112097.0,
|
| 1850 |
+
"step": 1510
|
| 1851 |
+
},
|
| 1852 |
+
{
|
| 1853 |
+
"entropy": 2.4578563667833806,
|
| 1854 |
+
"epoch": 1.3525287931897847,
|
| 1855 |
+
"grad_norm": 0.00701904296875,
|
| 1856 |
+
"learning_rate": 1.884666666666667e-05,
|
| 1857 |
+
"loss": 3.4011,
|
| 1858 |
+
"mean_token_accuracy": 0.43212775196880104,
|
| 1859 |
+
"num_tokens": 20243034.0,
|
| 1860 |
+
"step": 1520
|
| 1861 |
+
},
|
| 1862 |
+
{
|
| 1863 |
+
"entropy": 2.5289953693747522,
|
| 1864 |
+
"epoch": 1.361431035442052,
|
| 1865 |
+
"grad_norm": 0.015380859375,
|
| 1866 |
+
"learning_rate": 1.8824444444444445e-05,
|
| 1867 |
+
"loss": 3.4629,
|
| 1868 |
+
"mean_token_accuracy": 0.4234733306802809,
|
| 1869 |
+
"num_tokens": 20372999.0,
|
| 1870 |
+
"step": 1530
|
| 1871 |
+
},
|
| 1872 |
+
{
|
| 1873 |
+
"entropy": 2.4936239890754224,
|
| 1874 |
+
"epoch": 1.3703332776943191,
|
| 1875 |
+
"grad_norm": 0.007659912109375,
|
| 1876 |
+
"learning_rate": 1.8802222222222226e-05,
|
| 1877 |
+
"loss": 3.4047,
|
| 1878 |
+
"mean_token_accuracy": 0.43090203367173674,
|
| 1879 |
+
"num_tokens": 20509028.0,
|
| 1880 |
+
"step": 1540
|
| 1881 |
+
},
|
| 1882 |
+
{
|
| 1883 |
+
"entropy": 2.6229711353778837,
|
| 1884 |
+
"epoch": 1.3792355199465867,
|
| 1885 |
+
"grad_norm": 0.0081787109375,
|
| 1886 |
+
"learning_rate": 1.878e-05,
|
| 1887 |
+
"loss": 3.6425,
|
| 1888 |
+
"mean_token_accuracy": 0.41157348044216635,
|
| 1889 |
+
"num_tokens": 20633479.0,
|
| 1890 |
+
"step": 1550
|
| 1891 |
+
},
|
| 1892 |
+
{
|
| 1893 |
+
"entropy": 2.507130479812622,
|
| 1894 |
+
"epoch": 1.3881377621988538,
|
| 1895 |
+
"grad_norm": 0.01025390625,
|
| 1896 |
+
"learning_rate": 1.875777777777778e-05,
|
| 1897 |
+
"loss": 3.4246,
|
| 1898 |
+
"mean_token_accuracy": 0.42894090730696915,
|
| 1899 |
+
"num_tokens": 20762668.0,
|
| 1900 |
+
"step": 1560
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"entropy": 2.56754671856761,
|
| 1904 |
+
"epoch": 1.397040004451121,
|
| 1905 |
+
"grad_norm": 0.00732421875,
|
| 1906 |
+
"learning_rate": 1.873555555555556e-05,
|
| 1907 |
+
"loss": 3.4484,
|
| 1908 |
+
"mean_token_accuracy": 0.4255117969587445,
|
| 1909 |
+
"num_tokens": 20894609.0,
|
| 1910 |
+
"step": 1570
|
| 1911 |
+
},
|
| 1912 |
+
{
|
| 1913 |
+
"entropy": 2.6108976893126963,
|
| 1914 |
+
"epoch": 1.4059422467033884,
|
| 1915 |
+
"grad_norm": 0.01123046875,
|
| 1916 |
+
"learning_rate": 1.8713333333333336e-05,
|
| 1917 |
+
"loss": 3.5745,
|
| 1918 |
+
"mean_token_accuracy": 0.4152322731912136,
|
| 1919 |
+
"num_tokens": 21025277.0,
|
| 1920 |
+
"step": 1580
|
| 1921 |
+
},
|
| 1922 |
+
{
|
| 1923 |
+
"entropy": 2.575570172071457,
|
| 1924 |
+
"epoch": 1.4148444889556557,
|
| 1925 |
+
"grad_norm": 0.016357421875,
|
| 1926 |
+
"learning_rate": 1.8691111111111114e-05,
|
| 1927 |
+
"loss": 3.5483,
|
| 1928 |
+
"mean_token_accuracy": 0.4183428635820746,
|
| 1929 |
+
"num_tokens": 21156848.0,
|
| 1930 |
+
"step": 1590
|
| 1931 |
+
},
|
| 1932 |
+
{
|
| 1933 |
+
"entropy": 2.4909443251788614,
|
| 1934 |
+
"epoch": 1.423746731207923,
|
| 1935 |
+
"grad_norm": 0.01080322265625,
|
| 1936 |
+
"learning_rate": 1.866888888888889e-05,
|
| 1937 |
+
"loss": 3.4169,
|
| 1938 |
+
"mean_token_accuracy": 0.42875550473108887,
|
| 1939 |
+
"num_tokens": 21292320.0,
|
| 1940 |
+
"step": 1600
|
| 1941 |
+
},
|
| 1942 |
+
{
|
| 1943 |
+
"epoch": 1.423746731207923,
|
| 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": 21292320.0,
|
| 1948 |
+
"eval_coding_runtime": 95.8321,
|
| 1949 |
+
"eval_coding_samples_per_second": 5.217,
|
| 1950 |
+
"eval_coding_steps_per_second": 2.609,
|
| 1951 |
+
"step": 1600
|
| 1952 |
+
},
|
| 1953 |
+
{
|
| 1954 |
+
"epoch": 1.423746731207923,
|
| 1955 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 1956 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 1957 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 1958 |
+
"eval_chemistry_num_tokens": 21292320.0,
|
| 1959 |
+
"eval_chemistry_runtime": 53.6996,
|
| 1960 |
+
"eval_chemistry_samples_per_second": 9.311,
|
| 1961 |
+
"eval_chemistry_steps_per_second": 4.656,
|
| 1962 |
+
"step": 1600
|
| 1963 |
+
},
|
| 1964 |
+
{
|
| 1965 |
+
"entropy": 2.5857157841324807,
|
| 1966 |
+
"epoch": 1.4326489734601902,
|
| 1967 |
+
"grad_norm": 0.0120849609375,
|
| 1968 |
+
"learning_rate": 1.864666666666667e-05,
|
| 1969 |
+
"loss": 3.5036,
|
| 1970 |
+
"mean_token_accuracy": 0.4268370010890067,
|
| 1971 |
+
"num_tokens": 21426944.0,
|
| 1972 |
+
"step": 1610
|
| 1973 |
+
},
|
| 1974 |
+
{
|
| 1975 |
+
"entropy": 2.471120712906122,
|
| 1976 |
+
"epoch": 1.4415512157124577,
|
| 1977 |
+
"grad_norm": 0.01239013671875,
|
| 1978 |
+
"learning_rate": 1.8624444444444446e-05,
|
| 1979 |
+
"loss": 3.4141,
|
| 1980 |
+
"mean_token_accuracy": 0.43633277975022794,
|
| 1981 |
+
"num_tokens": 21563668.0,
|
| 1982 |
+
"step": 1620
|
| 1983 |
+
},
|
| 1984 |
+
{
|
| 1985 |
+
"entropy": 2.572203493118286,
|
| 1986 |
+
"epoch": 1.4504534579647248,
|
| 1987 |
+
"grad_norm": 0.0074462890625,
|
| 1988 |
+
"learning_rate": 1.8602222222222224e-05,
|
| 1989 |
+
"loss": 3.5546,
|
| 1990 |
+
"mean_token_accuracy": 0.416438902169466,
|
| 1991 |
+
"num_tokens": 21687993.0,
|
| 1992 |
+
"step": 1630
|
| 1993 |
+
},
|
| 1994 |
+
{
|
| 1995 |
+
"entropy": 2.4553592331707477,
|
| 1996 |
+
"epoch": 1.4593557002169921,
|
| 1997 |
+
"grad_norm": 0.00927734375,
|
| 1998 |
+
"learning_rate": 1.858e-05,
|
| 1999 |
+
"loss": 3.42,
|
| 2000 |
+
"mean_token_accuracy": 0.43670414835214616,
|
| 2001 |
+
"num_tokens": 21817298.0,
|
| 2002 |
+
"step": 1640
|
| 2003 |
+
},
|
| 2004 |
+
{
|
| 2005 |
+
"entropy": 2.5596740052103995,
|
| 2006 |
+
"epoch": 1.4682579424692594,
|
| 2007 |
+
"grad_norm": 0.00897216796875,
|
| 2008 |
+
"learning_rate": 1.855777777777778e-05,
|
| 2009 |
+
"loss": 3.479,
|
| 2010 |
+
"mean_token_accuracy": 0.42424469059333203,
|
| 2011 |
+
"num_tokens": 21947593.0,
|
| 2012 |
+
"step": 1650
|
| 2013 |
+
},
|
| 2014 |
+
{
|
| 2015 |
+
"entropy": 2.558923949301243,
|
| 2016 |
+
"epoch": 1.4771601847215268,
|
| 2017 |
+
"grad_norm": 0.01104736328125,
|
| 2018 |
+
"learning_rate": 1.8535555555555557e-05,
|
| 2019 |
+
"loss": 3.4637,
|
| 2020 |
+
"mean_token_accuracy": 0.42529286816716194,
|
| 2021 |
+
"num_tokens": 22083010.0,
|
| 2022 |
+
"step": 1660
|
| 2023 |
+
},
|
| 2024 |
+
{
|
| 2025 |
+
"entropy": 2.5305933080613614,
|
| 2026 |
+
"epoch": 1.486062426973794,
|
| 2027 |
+
"grad_norm": 0.01385498046875,
|
| 2028 |
+
"learning_rate": 1.8513333333333335e-05,
|
| 2029 |
+
"loss": 3.4958,
|
| 2030 |
+
"mean_token_accuracy": 0.4228696158155799,
|
| 2031 |
+
"num_tokens": 22216759.0,
|
| 2032 |
+
"step": 1670
|
| 2033 |
+
},
|
| 2034 |
+
{
|
| 2035 |
+
"entropy": 2.5268216267228127,
|
| 2036 |
+
"epoch": 1.4949646692260612,
|
| 2037 |
+
"grad_norm": 0.010498046875,
|
| 2038 |
+
"learning_rate": 1.8491111111111112e-05,
|
| 2039 |
+
"loss": 3.4217,
|
| 2040 |
+
"mean_token_accuracy": 0.4293845698237419,
|
| 2041 |
+
"num_tokens": 22350046.0,
|
| 2042 |
+
"step": 1680
|
| 2043 |
+
},
|
| 2044 |
+
{
|
| 2045 |
+
"entropy": 2.5090344458818437,
|
| 2046 |
+
"epoch": 1.5038669114783287,
|
| 2047 |
+
"grad_norm": 0.01373291015625,
|
| 2048 |
+
"learning_rate": 1.846888888888889e-05,
|
| 2049 |
+
"loss": 3.4432,
|
| 2050 |
+
"mean_token_accuracy": 0.4325392559170723,
|
| 2051 |
+
"num_tokens": 22485677.0,
|
| 2052 |
+
"step": 1690
|
| 2053 |
+
},
|
| 2054 |
+
{
|
| 2055 |
+
"entropy": 2.4932730071246625,
|
| 2056 |
+
"epoch": 1.5127691537305958,
|
| 2057 |
+
"grad_norm": 0.00860595703125,
|
| 2058 |
+
"learning_rate": 1.8446666666666667e-05,
|
| 2059 |
+
"loss": 3.3879,
|
| 2060 |
+
"mean_token_accuracy": 0.4324304299429059,
|
| 2061 |
+
"num_tokens": 22615933.0,
|
| 2062 |
+
"step": 1700
|
| 2063 |
+
},
|
| 2064 |
+
{
|
| 2065 |
+
"epoch": 1.5127691537305958,
|
| 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": 22615933.0,
|
| 2070 |
+
"eval_coding_runtime": 96.0736,
|
| 2071 |
+
"eval_coding_samples_per_second": 5.204,
|
| 2072 |
+
"eval_coding_steps_per_second": 2.602,
|
| 2073 |
+
"step": 1700
|
| 2074 |
+
},
|
| 2075 |
+
{
|
| 2076 |
+
"epoch": 1.5127691537305958,
|
| 2077 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 2078 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 2079 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 2080 |
+
"eval_chemistry_num_tokens": 22615933.0,
|
| 2081 |
+
"eval_chemistry_runtime": 53.6801,
|
| 2082 |
+
"eval_chemistry_samples_per_second": 9.314,
|
| 2083 |
+
"eval_chemistry_steps_per_second": 4.657,
|
| 2084 |
+
"step": 1700
|
| 2085 |
+
},
|
| 2086 |
+
{
|
| 2087 |
+
"entropy": 2.499319192022085,
|
| 2088 |
+
"epoch": 1.5216713959828632,
|
| 2089 |
+
"grad_norm": 0.01531982421875,
|
| 2090 |
+
"learning_rate": 1.842444444444445e-05,
|
| 2091 |
+
"loss": 3.4393,
|
| 2092 |
+
"mean_token_accuracy": 0.42634991379454734,
|
| 2093 |
+
"num_tokens": 22749756.0,
|
| 2094 |
+
"step": 1710
|
| 2095 |
+
},
|
| 2096 |
+
{
|
| 2097 |
+
"entropy": 2.3928098790347576,
|
| 2098 |
+
"epoch": 1.5305736382351305,
|
| 2099 |
+
"grad_norm": 0.00811767578125,
|
| 2100 |
+
"learning_rate": 1.8402222222222223e-05,
|
| 2101 |
+
"loss": 3.2777,
|
| 2102 |
+
"mean_token_accuracy": 0.44273359794169664,
|
| 2103 |
+
"num_tokens": 22886843.0,
|
| 2104 |
+
"step": 1720
|
| 2105 |
+
},
|
| 2106 |
+
{
|
| 2107 |
+
"entropy": 2.515210550278425,
|
| 2108 |
+
"epoch": 1.5394758804873978,
|
| 2109 |
+
"grad_norm": 0.0145263671875,
|
| 2110 |
+
"learning_rate": 1.8380000000000004e-05,
|
| 2111 |
+
"loss": 3.4278,
|
| 2112 |
+
"mean_token_accuracy": 0.430076424498111,
|
| 2113 |
+
"num_tokens": 23013890.0,
|
| 2114 |
+
"step": 1730
|
| 2115 |
+
},
|
| 2116 |
+
{
|
| 2117 |
+
"entropy": 2.511288223415613,
|
| 2118 |
+
"epoch": 1.5483781227396651,
|
| 2119 |
+
"grad_norm": 0.0174560546875,
|
| 2120 |
+
"learning_rate": 1.8357777777777778e-05,
|
| 2121 |
+
"loss": 3.4467,
|
| 2122 |
+
"mean_token_accuracy": 0.42953401962295173,
|
| 2123 |
+
"num_tokens": 23140244.0,
|
| 2124 |
+
"step": 1740
|
| 2125 |
+
},
|
| 2126 |
+
{
|
| 2127 |
+
"entropy": 2.5117117315530777,
|
| 2128 |
+
"epoch": 1.5572803649919322,
|
| 2129 |
+
"grad_norm": 0.01177978515625,
|
| 2130 |
+
"learning_rate": 1.833555555555556e-05,
|
| 2131 |
+
"loss": 3.437,
|
| 2132 |
+
"mean_token_accuracy": 0.43029365949332715,
|
| 2133 |
+
"num_tokens": 23268188.0,
|
| 2134 |
+
"step": 1750
|
| 2135 |
+
},
|
| 2136 |
+
{
|
| 2137 |
+
"entropy": 2.472087085992098,
|
| 2138 |
+
"epoch": 1.5661826072441998,
|
| 2139 |
+
"grad_norm": 0.00958251953125,
|
| 2140 |
+
"learning_rate": 1.8313333333333333e-05,
|
| 2141 |
+
"loss": 3.3994,
|
| 2142 |
+
"mean_token_accuracy": 0.4351077421568334,
|
| 2143 |
+
"num_tokens": 23405121.0,
|
| 2144 |
+
"step": 1760
|
| 2145 |
+
},
|
| 2146 |
+
{
|
| 2147 |
+
"entropy": 2.5334790728986265,
|
| 2148 |
+
"epoch": 1.5750848494964669,
|
| 2149 |
+
"grad_norm": 0.00897216796875,
|
| 2150 |
+
"learning_rate": 1.8291111111111114e-05,
|
| 2151 |
+
"loss": 3.456,
|
| 2152 |
+
"mean_token_accuracy": 0.42388113122433424,
|
| 2153 |
+
"num_tokens": 23535787.0,
|
| 2154 |
+
"step": 1770
|
| 2155 |
+
},
|
| 2156 |
+
{
|
| 2157 |
+
"entropy": 2.5175728268921373,
|
| 2158 |
+
"epoch": 1.5839870917487342,
|
| 2159 |
+
"grad_norm": 0.007049560546875,
|
| 2160 |
+
"learning_rate": 1.8268888888888888e-05,
|
| 2161 |
+
"loss": 3.4153,
|
| 2162 |
+
"mean_token_accuracy": 0.426735052280128,
|
| 2163 |
+
"num_tokens": 23671826.0,
|
| 2164 |
+
"step": 1780
|
| 2165 |
+
},
|
| 2166 |
+
{
|
| 2167 |
+
"entropy": 2.522493792325258,
|
| 2168 |
+
"epoch": 1.5928893340010015,
|
| 2169 |
+
"grad_norm": 0.007781982421875,
|
| 2170 |
+
"learning_rate": 1.824666666666667e-05,
|
| 2171 |
+
"loss": 3.4456,
|
| 2172 |
+
"mean_token_accuracy": 0.42770035564899445,
|
| 2173 |
+
"num_tokens": 23805612.0,
|
| 2174 |
+
"step": 1790
|
| 2175 |
+
},
|
| 2176 |
+
{
|
| 2177 |
+
"entropy": 2.5342708349227907,
|
| 2178 |
+
"epoch": 1.6017915762532688,
|
| 2179 |
+
"grad_norm": 0.0174560546875,
|
| 2180 |
+
"learning_rate": 1.8224444444444447e-05,
|
| 2181 |
+
"loss": 3.4542,
|
| 2182 |
+
"mean_token_accuracy": 0.4265250092372298,
|
| 2183 |
+
"num_tokens": 23933374.0,
|
| 2184 |
+
"step": 1800
|
| 2185 |
+
},
|
| 2186 |
+
{
|
| 2187 |
+
"epoch": 1.6017915762532688,
|
| 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": 23933374.0,
|
| 2192 |
+
"eval_coding_runtime": 95.8632,
|
| 2193 |
+
"eval_coding_samples_per_second": 5.216,
|
| 2194 |
+
"eval_coding_steps_per_second": 2.608,
|
| 2195 |
+
"step": 1800
|
| 2196 |
+
},
|
| 2197 |
+
{
|
| 2198 |
+
"epoch": 1.6017915762532688,
|
| 2199 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 2200 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 2201 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 2202 |
+
"eval_chemistry_num_tokens": 23933374.0,
|
| 2203 |
+
"eval_chemistry_runtime": 53.6651,
|
| 2204 |
+
"eval_chemistry_samples_per_second": 9.317,
|
| 2205 |
+
"eval_chemistry_steps_per_second": 4.659,
|
| 2206 |
+
"step": 1800
|
| 2207 |
+
},
|
| 2208 |
+
{
|
| 2209 |
+
"entropy": 2.4730284474790096,
|
| 2210 |
+
"epoch": 1.6106938185055362,
|
| 2211 |
+
"grad_norm": 0.01123046875,
|
| 2212 |
+
"learning_rate": 1.8202222222222225e-05,
|
| 2213 |
+
"loss": 3.4249,
|
| 2214 |
+
"mean_token_accuracy": 0.4301054811105132,
|
| 2215 |
+
"num_tokens": 24070188.0,
|
| 2216 |
+
"step": 1810
|
| 2217 |
+
},
|
| 2218 |
+
{
|
| 2219 |
+
"entropy": 2.4333154663443564,
|
| 2220 |
+
"epoch": 1.6195960607578033,
|
| 2221 |
+
"grad_norm": 0.0162353515625,
|
| 2222 |
+
"learning_rate": 1.8180000000000002e-05,
|
| 2223 |
+
"loss": 3.3849,
|
| 2224 |
+
"mean_token_accuracy": 0.4358032012358308,
|
| 2225 |
+
"num_tokens": 24210156.0,
|
| 2226 |
+
"step": 1820
|
| 2227 |
+
},
|
| 2228 |
+
{
|
| 2229 |
+
"entropy": 2.548785130679607,
|
| 2230 |
+
"epoch": 1.6284983030100708,
|
| 2231 |
+
"grad_norm": 0.00994873046875,
|
| 2232 |
+
"learning_rate": 1.815777777777778e-05,
|
| 2233 |
+
"loss": 3.4663,
|
| 2234 |
+
"mean_token_accuracy": 0.4266028679907322,
|
| 2235 |
+
"num_tokens": 24335746.0,
|
| 2236 |
+
"step": 1830
|
| 2237 |
+
},
|
| 2238 |
+
{
|
| 2239 |
+
"entropy": 2.493963433802128,
|
| 2240 |
+
"epoch": 1.637400545262338,
|
| 2241 |
+
"grad_norm": 0.0115966796875,
|
| 2242 |
+
"learning_rate": 1.8135555555555557e-05,
|
| 2243 |
+
"loss": 3.4112,
|
| 2244 |
+
"mean_token_accuracy": 0.43058306723833084,
|
| 2245 |
+
"num_tokens": 24462726.0,
|
| 2246 |
+
"step": 1840
|
| 2247 |
+
},
|
| 2248 |
+
{
|
| 2249 |
+
"entropy": 2.4432963475584986,
|
| 2250 |
+
"epoch": 1.6463027875146052,
|
| 2251 |
+
"grad_norm": 0.00848388671875,
|
| 2252 |
+
"learning_rate": 1.8113333333333335e-05,
|
| 2253 |
+
"loss": 3.3659,
|
| 2254 |
+
"mean_token_accuracy": 0.4354290099814534,
|
| 2255 |
+
"num_tokens": 24597391.0,
|
| 2256 |
+
"step": 1850
|
| 2257 |
+
},
|
| 2258 |
+
{
|
| 2259 |
+
"entropy": 2.4352858766913412,
|
| 2260 |
+
"epoch": 1.6552050297668726,
|
| 2261 |
+
"grad_norm": 0.0150146484375,
|
| 2262 |
+
"learning_rate": 1.8091111111111113e-05,
|
| 2263 |
+
"loss": 3.3265,
|
| 2264 |
+
"mean_token_accuracy": 0.44209435898810623,
|
| 2265 |
+
"num_tokens": 24732815.0,
|
| 2266 |
+
"step": 1860
|
| 2267 |
+
},
|
| 2268 |
+
{
|
| 2269 |
+
"entropy": 2.494772292673588,
|
| 2270 |
+
"epoch": 1.6641072720191397,
|
| 2271 |
+
"grad_norm": 0.00811767578125,
|
| 2272 |
+
"learning_rate": 1.806888888888889e-05,
|
| 2273 |
+
"loss": 3.4225,
|
| 2274 |
+
"mean_token_accuracy": 0.42676153369247916,
|
| 2275 |
+
"num_tokens": 24869428.0,
|
| 2276 |
+
"step": 1870
|
| 2277 |
+
},
|
| 2278 |
+
{
|
| 2279 |
+
"entropy": 2.4837465301156043,
|
| 2280 |
+
"epoch": 1.6730095142714072,
|
| 2281 |
+
"grad_norm": 0.0181884765625,
|
| 2282 |
+
"learning_rate": 1.8046666666666668e-05,
|
| 2283 |
+
"loss": 3.3856,
|
| 2284 |
+
"mean_token_accuracy": 0.43438148498535156,
|
| 2285 |
+
"num_tokens": 25002091.0,
|
| 2286 |
+
"step": 1880
|
| 2287 |
+
},
|
| 2288 |
+
{
|
| 2289 |
+
"entropy": 2.5113090477883815,
|
| 2290 |
+
"epoch": 1.6819117565236743,
|
| 2291 |
+
"grad_norm": 0.0087890625,
|
| 2292 |
+
"learning_rate": 1.8024444444444445e-05,
|
| 2293 |
+
"loss": 3.4708,
|
| 2294 |
+
"mean_token_accuracy": 0.426338127348572,
|
| 2295 |
+
"num_tokens": 25133714.0,
|
| 2296 |
+
"step": 1890
|
| 2297 |
+
},
|
| 2298 |
+
{
|
| 2299 |
+
"entropy": 2.4073795929551123,
|
| 2300 |
+
"epoch": 1.6908139987759419,
|
| 2301 |
+
"grad_norm": 0.0106201171875,
|
| 2302 |
+
"learning_rate": 1.8002222222222223e-05,
|
| 2303 |
+
"loss": 3.3643,
|
| 2304 |
+
"mean_token_accuracy": 0.4404640804976225,
|
| 2305 |
+
"num_tokens": 25267949.0,
|
| 2306 |
+
"step": 1900
|
| 2307 |
+
},
|
| 2308 |
+
{
|
| 2309 |
+
"epoch": 1.6908139987759419,
|
| 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": 25267949.0,
|
| 2314 |
+
"eval_coding_runtime": 95.8242,
|
| 2315 |
+
"eval_coding_samples_per_second": 5.218,
|
| 2316 |
+
"eval_coding_steps_per_second": 2.609,
|
| 2317 |
+
"step": 1900
|
| 2318 |
+
},
|
| 2319 |
+
{
|
| 2320 |
+
"epoch": 1.6908139987759419,
|
| 2321 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 2322 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 2323 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 2324 |
+
"eval_chemistry_num_tokens": 25267949.0,
|
| 2325 |
+
"eval_chemistry_runtime": 53.6517,
|
| 2326 |
+
"eval_chemistry_samples_per_second": 9.319,
|
| 2327 |
+
"eval_chemistry_steps_per_second": 4.66,
|
| 2328 |
+
"step": 1900
|
| 2329 |
+
},
|
| 2330 |
+
{
|
| 2331 |
+
"entropy": 2.4964852534234523,
|
| 2332 |
+
"epoch": 1.699716241028209,
|
| 2333 |
+
"grad_norm": 0.01220703125,
|
| 2334 |
+
"learning_rate": 1.798e-05,
|
| 2335 |
+
"loss": 3.3746,
|
| 2336 |
+
"mean_token_accuracy": 0.43742703888565304,
|
| 2337 |
+
"num_tokens": 25401385.0,
|
| 2338 |
+
"step": 1910
|
| 2339 |
+
},
|
| 2340 |
+
{
|
| 2341 |
+
"entropy": 2.5503848932683466,
|
| 2342 |
+
"epoch": 1.7086184832804763,
|
| 2343 |
+
"grad_norm": 0.008056640625,
|
| 2344 |
+
"learning_rate": 1.7957777777777778e-05,
|
| 2345 |
+
"loss": 3.4842,
|
| 2346 |
+
"mean_token_accuracy": 0.42500705253332854,
|
| 2347 |
+
"num_tokens": 25525772.0,
|
| 2348 |
+
"step": 1920
|
| 2349 |
+
},
|
| 2350 |
+
{
|
| 2351 |
+
"entropy": 2.5723555073142053,
|
| 2352 |
+
"epoch": 1.7175207255327436,
|
| 2353 |
+
"grad_norm": 0.01055908203125,
|
| 2354 |
+
"learning_rate": 1.7935555555555556e-05,
|
| 2355 |
+
"loss": 3.4885,
|
| 2356 |
+
"mean_token_accuracy": 0.4221608478575945,
|
| 2357 |
+
"num_tokens": 25657946.0,
|
| 2358 |
+
"step": 1930
|
| 2359 |
+
},
|
| 2360 |
+
{
|
| 2361 |
+
"entropy": 2.5482451558113097,
|
| 2362 |
+
"epoch": 1.7264229677850107,
|
| 2363 |
+
"grad_norm": 0.01416015625,
|
| 2364 |
+
"learning_rate": 1.7913333333333337e-05,
|
| 2365 |
+
"loss": 3.4748,
|
| 2366 |
+
"mean_token_accuracy": 0.42012830562889575,
|
| 2367 |
+
"num_tokens": 25787727.0,
|
| 2368 |
+
"step": 1940
|
| 2369 |
+
},
|
| 2370 |
+
{
|
| 2371 |
+
"entropy": 2.4831707894802095,
|
| 2372 |
+
"epoch": 1.7353252100372782,
|
| 2373 |
+
"grad_norm": 0.008544921875,
|
| 2374 |
+
"learning_rate": 1.789111111111111e-05,
|
| 2375 |
+
"loss": 3.402,
|
| 2376 |
+
"mean_token_accuracy": 0.4355609222315252,
|
| 2377 |
+
"num_tokens": 25925569.0,
|
| 2378 |
+
"step": 1950
|
| 2379 |
+
},
|
| 2380 |
+
{
|
| 2381 |
+
"entropy": 2.4309555172920225,
|
| 2382 |
+
"epoch": 1.7442274522895453,
|
| 2383 |
+
"grad_norm": 0.0072021484375,
|
| 2384 |
+
"learning_rate": 1.7868888888888892e-05,
|
| 2385 |
+
"loss": 3.3031,
|
| 2386 |
+
"mean_token_accuracy": 0.4397842838428915,
|
| 2387 |
+
"num_tokens": 26058026.0,
|
| 2388 |
+
"step": 1960
|
| 2389 |
+
},
|
| 2390 |
+
{
|
| 2391 |
+
"entropy": 2.4790328785777094,
|
| 2392 |
+
"epoch": 1.7531296945418127,
|
| 2393 |
+
"grad_norm": 0.00823974609375,
|
| 2394 |
+
"learning_rate": 1.7846666666666666e-05,
|
| 2395 |
+
"loss": 3.3659,
|
| 2396 |
+
"mean_token_accuracy": 0.4327216723002493,
|
| 2397 |
+
"num_tokens": 26195268.0,
|
| 2398 |
+
"step": 1970
|
| 2399 |
+
},
|
| 2400 |
+
{
|
| 2401 |
+
"entropy": 2.3836306020617486,
|
| 2402 |
+
"epoch": 1.76203193679408,
|
| 2403 |
+
"grad_norm": 0.00848388671875,
|
| 2404 |
+
"learning_rate": 1.7824444444444447e-05,
|
| 2405 |
+
"loss": 3.3147,
|
| 2406 |
+
"mean_token_accuracy": 0.4457951638847589,
|
| 2407 |
+
"num_tokens": 26326631.0,
|
| 2408 |
+
"step": 1980
|
| 2409 |
+
},
|
| 2410 |
+
{
|
| 2411 |
+
"entropy": 2.5131599582731723,
|
| 2412 |
+
"epoch": 1.7709341790463473,
|
| 2413 |
+
"grad_norm": 0.0086669921875,
|
| 2414 |
+
"learning_rate": 1.780222222222222e-05,
|
| 2415 |
+
"loss": 3.4339,
|
| 2416 |
+
"mean_token_accuracy": 0.42837768141180277,
|
| 2417 |
+
"num_tokens": 26462379.0,
|
| 2418 |
+
"step": 1990
|
| 2419 |
+
},
|
| 2420 |
+
{
|
| 2421 |
+
"entropy": 2.4848237335681915,
|
| 2422 |
+
"epoch": 1.7798364212986146,
|
| 2423 |
+
"grad_norm": 0.00921630859375,
|
| 2424 |
+
"learning_rate": 1.7780000000000003e-05,
|
| 2425 |
+
"loss": 3.3823,
|
| 2426 |
+
"mean_token_accuracy": 0.4355517864227295,
|
| 2427 |
+
"num_tokens": 26591735.0,
|
| 2428 |
+
"step": 2000
|
| 2429 |
+
},
|
| 2430 |
+
{
|
| 2431 |
+
"epoch": 1.7798364212986146,
|
| 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": 26591735.0,
|
| 2436 |
+
"eval_coding_runtime": 95.8115,
|
| 2437 |
+
"eval_coding_samples_per_second": 5.219,
|
| 2438 |
+
"eval_coding_steps_per_second": 2.609,
|
| 2439 |
+
"step": 2000
|
| 2440 |
+
},
|
| 2441 |
+
{
|
| 2442 |
+
"epoch": 1.7798364212986146,
|
| 2443 |
+
"eval_chemistry_entropy": 2.520227357387543,
|
| 2444 |
+
"eval_chemistry_loss": 3.5777227878570557,
|
| 2445 |
+
"eval_chemistry_mean_token_accuracy": 0.4262875291109085,
|
| 2446 |
+
"eval_chemistry_num_tokens": 26591735.0,
|
| 2447 |
+
"eval_chemistry_runtime": 53.3564,
|
| 2448 |
+
"eval_chemistry_samples_per_second": 9.371,
|
| 2449 |
+
"eval_chemistry_steps_per_second": 4.685,
|
| 2450 |
+
"step": 2000
|
| 2451 |
+
}
|
| 2452 |
+
],
|
| 2453 |
+
"logging_steps": 10,
|
| 2454 |
+
"max_steps": 10000,
|
| 2455 |
+
"num_input_tokens_seen": 0,
|
| 2456 |
+
"num_train_epochs": 9,
|
| 2457 |
+
"save_steps": 500,
|
| 2458 |
+
"stateful_callbacks": {
|
| 2459 |
+
"TrainerControl": {
|
| 2460 |
+
"args": {
|
| 2461 |
+
"should_epoch_stop": false,
|
| 2462 |
+
"should_evaluate": false,
|
| 2463 |
+
"should_log": false,
|
| 2464 |
+
"should_save": true,
|
| 2465 |
+
"should_training_stop": false
|
| 2466 |
+
},
|
| 2467 |
+
"attributes": {}
|
| 2468 |
+
}
|
| 2469 |
+
},
|
| 2470 |
+
"total_flos": 2.2087693595689667e+18,
|
| 2471 |
+
"train_batch_size": 2,
|
| 2472 |
+
"trial_name": null,
|
| 2473 |
+
"trial_params": null
|
| 2474 |
+
}
|
checkpoint-2000/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:98f6a4eed050ba43d4f1f37cb84e4a0e4c7e84f48c9b66045451e2ca37bc478d
|
| 3 |
+
size 6417
|