Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- checkpoint-1000/added_tokens.json +3 -0
- checkpoint-1000/chat_template.jinja +47 -0
- checkpoint-1000/config.json +86 -0
- checkpoint-1000/generation_config.json +12 -0
- checkpoint-1000/model-00001-of-00005.safetensors +3 -0
- checkpoint-1000/model-00002-of-00005.safetensors +3 -0
- checkpoint-1000/model-00003-of-00005.safetensors +3 -0
- checkpoint-1000/model-00004-of-00005.safetensors +3 -0
- checkpoint-1000/model-00005-of-00005.safetensors +3 -0
- checkpoint-1000/model.safetensors.index.json +634 -0
- checkpoint-1000/optimizer.pt +3 -0
- checkpoint-1000/rng_state.pth +3 -0
- checkpoint-1000/scheduler.pt +3 -0
- checkpoint-1000/special_tokens_map.json +33 -0
- checkpoint-1000/tokenizer.json +3 -0
- checkpoint-1000/tokenizer.model +3 -0
- checkpoint-1000/tokenizer_config.json +0 -0
- checkpoint-1000/trainer_state.json +1254 -0
- checkpoint-1000/training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
checkpoint-1000/added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<image_soft_token>": 262144
|
| 3 |
+
}
|
checkpoint-1000/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-1000/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-1000/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-1000/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-1000/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-1000/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-1000/model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8b76dd5c3b1bb971354de059db455aac1c59fea624bf8a0289e37557ff43261
|
| 3 |
+
size 4931294528
|
checkpoint-1000/model-00005-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d9c549d5bc84e50ecc0c62c8bf5edebd5036ac83bceabccf75b83689f58f370
|
| 3 |
+
size 3822364808
|
checkpoint-1000/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-1000/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3807720906b8ce0d6cdb5a1234d2eeebfa06b4ee459ad56f544f678293838513
|
| 3 |
+
size 18355
|
checkpoint-1000/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:acd74ad34e3c5060506b53a8a3fafbfb35d44065ee496b2abf3a0b9a3b93ba09
|
| 3 |
+
size 14645
|
checkpoint-1000/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6078e52773a379f026b8fbbbc5546ab7ed9418d05b713f8aff2a4f3c7e12f108
|
| 3 |
+
size 1465
|
checkpoint-1000/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-1000/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
|
| 3 |
+
size 33384568
|
checkpoint-1000/tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
|
| 3 |
+
size 4689074
|
checkpoint-1000/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1000/trainer_state.json
ADDED
|
@@ -0,0 +1,1254 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.8,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 1000,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 1.9169743306934834,
|
| 14 |
+
"epoch": 0.008,
|
| 15 |
+
"grad_norm": 0.10595703125,
|
| 16 |
+
"learning_rate": 1.8e-07,
|
| 17 |
+
"loss": 11.4093,
|
| 18 |
+
"mean_token_accuracy": 0.16113518364727497,
|
| 19 |
+
"num_tokens": 103172.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 1.943360574543476,
|
| 24 |
+
"epoch": 0.016,
|
| 25 |
+
"grad_norm": 0.11328125,
|
| 26 |
+
"learning_rate": 3.8e-07,
|
| 27 |
+
"loss": 11.3724,
|
| 28 |
+
"mean_token_accuracy": 0.15745336734689772,
|
| 29 |
+
"num_tokens": 195524.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 1.8853021122515201,
|
| 34 |
+
"epoch": 0.024,
|
| 35 |
+
"grad_norm": 0.11376953125,
|
| 36 |
+
"learning_rate": 5.800000000000001e-07,
|
| 37 |
+
"loss": 11.4536,
|
| 38 |
+
"mean_token_accuracy": 0.1584921860601753,
|
| 39 |
+
"num_tokens": 296999.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 1.9313011743128299,
|
| 44 |
+
"epoch": 0.032,
|
| 45 |
+
"grad_norm": 0.11962890625,
|
| 46 |
+
"learning_rate": 7.8e-07,
|
| 47 |
+
"loss": 11.4176,
|
| 48 |
+
"mean_token_accuracy": 0.15730738821439444,
|
| 49 |
+
"num_tokens": 390903.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.886887714266777,
|
| 54 |
+
"epoch": 0.04,
|
| 55 |
+
"grad_norm": 0.11083984375,
|
| 56 |
+
"learning_rate": 9.800000000000001e-07,
|
| 57 |
+
"loss": 11.362,
|
| 58 |
+
"mean_token_accuracy": 0.15966884773224593,
|
| 59 |
+
"num_tokens": 488481.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 1.8928033113479614,
|
| 64 |
+
"epoch": 0.048,
|
| 65 |
+
"grad_norm": 0.10791015625,
|
| 66 |
+
"learning_rate": 1.1800000000000001e-06,
|
| 67 |
+
"loss": 11.4662,
|
| 68 |
+
"mean_token_accuracy": 0.1601271564140916,
|
| 69 |
+
"num_tokens": 589868.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 1.9126614801585675,
|
| 74 |
+
"epoch": 0.056,
|
| 75 |
+
"grad_norm": 0.11083984375,
|
| 76 |
+
"learning_rate": 1.3800000000000001e-06,
|
| 77 |
+
"loss": 11.4393,
|
| 78 |
+
"mean_token_accuracy": 0.15678977984935044,
|
| 79 |
+
"num_tokens": 690754.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 1.8982849732041358,
|
| 84 |
+
"epoch": 0.064,
|
| 85 |
+
"grad_norm": 0.11279296875,
|
| 86 |
+
"learning_rate": 1.5800000000000001e-06,
|
| 87 |
+
"loss": 11.428,
|
| 88 |
+
"mean_token_accuracy": 0.15833127587102352,
|
| 89 |
+
"num_tokens": 791190.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 1.9196412533521652,
|
| 94 |
+
"epoch": 0.072,
|
| 95 |
+
"grad_norm": 0.11181640625,
|
| 96 |
+
"learning_rate": 1.7800000000000001e-06,
|
| 97 |
+
"loss": 11.3783,
|
| 98 |
+
"mean_token_accuracy": 0.1575094529427588,
|
| 99 |
+
"num_tokens": 890075.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 1.8977599568665027,
|
| 104 |
+
"epoch": 0.08,
|
| 105 |
+
"grad_norm": 0.1142578125,
|
| 106 |
+
"learning_rate": 1.98e-06,
|
| 107 |
+
"loss": 11.3874,
|
| 108 |
+
"mean_token_accuracy": 0.16100947242230176,
|
| 109 |
+
"num_tokens": 989860.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.08,
|
| 114 |
+
"eval_coding_entropy": 1.000721924304962,
|
| 115 |
+
"eval_coding_loss": 8.267828941345215,
|
| 116 |
+
"eval_coding_mean_token_accuracy": 0.2908177390098572,
|
| 117 |
+
"eval_coding_num_tokens": 989860.0,
|
| 118 |
+
"eval_coding_runtime": 94.2996,
|
| 119 |
+
"eval_coding_samples_per_second": 5.302,
|
| 120 |
+
"eval_coding_steps_per_second": 2.651,
|
| 121 |
+
"step": 100
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"epoch": 0.08,
|
| 125 |
+
"eval_biology_entropy": 1.8729813146591185,
|
| 126 |
+
"eval_biology_loss": 11.396076202392578,
|
| 127 |
+
"eval_biology_mean_token_accuracy": 0.1593981314599514,
|
| 128 |
+
"eval_biology_num_tokens": 989860.0,
|
| 129 |
+
"eval_biology_runtime": 41.3672,
|
| 130 |
+
"eval_biology_samples_per_second": 12.087,
|
| 131 |
+
"eval_biology_steps_per_second": 6.043,
|
| 132 |
+
"step": 100
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"entropy": 1.9323325648903846,
|
| 136 |
+
"epoch": 0.088,
|
| 137 |
+
"grad_norm": 0.109375,
|
| 138 |
+
"learning_rate": 2.1800000000000003e-06,
|
| 139 |
+
"loss": 11.43,
|
| 140 |
+
"mean_token_accuracy": 0.15889165913686157,
|
| 141 |
+
"num_tokens": 1087099.0,
|
| 142 |
+
"step": 110
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"entropy": 1.9131557896733284,
|
| 146 |
+
"epoch": 0.096,
|
| 147 |
+
"grad_norm": 0.1123046875,
|
| 148 |
+
"learning_rate": 2.38e-06,
|
| 149 |
+
"loss": 11.2832,
|
| 150 |
+
"mean_token_accuracy": 0.15686040292494,
|
| 151 |
+
"num_tokens": 1181777.0,
|
| 152 |
+
"step": 120
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"entropy": 1.8847123883664607,
|
| 156 |
+
"epoch": 0.104,
|
| 157 |
+
"grad_norm": 0.1181640625,
|
| 158 |
+
"learning_rate": 2.5800000000000003e-06,
|
| 159 |
+
"loss": 11.5591,
|
| 160 |
+
"mean_token_accuracy": 0.15738505702465772,
|
| 161 |
+
"num_tokens": 1283881.0,
|
| 162 |
+
"step": 130
|
| 163 |
+
},
|
| 164 |
+
{
|
| 165 |
+
"entropy": 1.871863854676485,
|
| 166 |
+
"epoch": 0.112,
|
| 167 |
+
"grad_norm": 0.10888671875,
|
| 168 |
+
"learning_rate": 2.7800000000000005e-06,
|
| 169 |
+
"loss": 11.3822,
|
| 170 |
+
"mean_token_accuracy": 0.15778318694792687,
|
| 171 |
+
"num_tokens": 1385513.0,
|
| 172 |
+
"step": 140
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"entropy": 1.9166233658790588,
|
| 176 |
+
"epoch": 0.12,
|
| 177 |
+
"grad_norm": 0.115234375,
|
| 178 |
+
"learning_rate": 2.9800000000000003e-06,
|
| 179 |
+
"loss": 11.3895,
|
| 180 |
+
"mean_token_accuracy": 0.15918795759789645,
|
| 181 |
+
"num_tokens": 1483667.0,
|
| 182 |
+
"step": 150
|
| 183 |
+
},
|
| 184 |
+
{
|
| 185 |
+
"entropy": 1.902534269541502,
|
| 186 |
+
"epoch": 0.128,
|
| 187 |
+
"grad_norm": 0.10888671875,
|
| 188 |
+
"learning_rate": 3.1800000000000005e-06,
|
| 189 |
+
"loss": 11.4745,
|
| 190 |
+
"mean_token_accuracy": 0.15784057211130859,
|
| 191 |
+
"num_tokens": 1582368.0,
|
| 192 |
+
"step": 160
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"entropy": 1.9250910609960556,
|
| 196 |
+
"epoch": 0.136,
|
| 197 |
+
"grad_norm": 0.1015625,
|
| 198 |
+
"learning_rate": 3.3800000000000007e-06,
|
| 199 |
+
"loss": 11.3645,
|
| 200 |
+
"mean_token_accuracy": 0.15877335243858398,
|
| 201 |
+
"num_tokens": 1677060.0,
|
| 202 |
+
"step": 170
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"entropy": 1.888841236382723,
|
| 206 |
+
"epoch": 0.144,
|
| 207 |
+
"grad_norm": 0.1201171875,
|
| 208 |
+
"learning_rate": 3.58e-06,
|
| 209 |
+
"loss": 11.3131,
|
| 210 |
+
"mean_token_accuracy": 0.15988174122758209,
|
| 211 |
+
"num_tokens": 1773764.0,
|
| 212 |
+
"step": 180
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"entropy": 1.923802337050438,
|
| 216 |
+
"epoch": 0.152,
|
| 217 |
+
"grad_norm": 0.10986328125,
|
| 218 |
+
"learning_rate": 3.7800000000000002e-06,
|
| 219 |
+
"loss": 11.4321,
|
| 220 |
+
"mean_token_accuracy": 0.15674821990542115,
|
| 221 |
+
"num_tokens": 1873167.0,
|
| 222 |
+
"step": 190
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"entropy": 1.913605347275734,
|
| 226 |
+
"epoch": 0.16,
|
| 227 |
+
"grad_norm": 0.10693359375,
|
| 228 |
+
"learning_rate": 3.980000000000001e-06,
|
| 229 |
+
"loss": 11.5801,
|
| 230 |
+
"mean_token_accuracy": 0.1564559088088572,
|
| 231 |
+
"num_tokens": 1970077.0,
|
| 232 |
+
"step": 200
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"epoch": 0.16,
|
| 236 |
+
"eval_coding_entropy": 1.000721924304962,
|
| 237 |
+
"eval_coding_loss": 8.267828941345215,
|
| 238 |
+
"eval_coding_mean_token_accuracy": 0.2908177390098572,
|
| 239 |
+
"eval_coding_num_tokens": 1970077.0,
|
| 240 |
+
"eval_coding_runtime": 93.1599,
|
| 241 |
+
"eval_coding_samples_per_second": 5.367,
|
| 242 |
+
"eval_coding_steps_per_second": 2.684,
|
| 243 |
+
"step": 200
|
| 244 |
+
},
|
| 245 |
+
{
|
| 246 |
+
"epoch": 0.16,
|
| 247 |
+
"eval_biology_entropy": 1.8729813146591185,
|
| 248 |
+
"eval_biology_loss": 11.396076202392578,
|
| 249 |
+
"eval_biology_mean_token_accuracy": 0.1593981314599514,
|
| 250 |
+
"eval_biology_num_tokens": 1970077.0,
|
| 251 |
+
"eval_biology_runtime": 41.0689,
|
| 252 |
+
"eval_biology_samples_per_second": 12.175,
|
| 253 |
+
"eval_biology_steps_per_second": 6.087,
|
| 254 |
+
"step": 200
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"entropy": 1.9281546145677566,
|
| 258 |
+
"epoch": 0.168,
|
| 259 |
+
"grad_norm": 0.11083984375,
|
| 260 |
+
"learning_rate": 4.18e-06,
|
| 261 |
+
"loss": 11.4462,
|
| 262 |
+
"mean_token_accuracy": 0.15564582953229547,
|
| 263 |
+
"num_tokens": 2066815.0,
|
| 264 |
+
"step": 210
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"entropy": 1.883149204403162,
|
| 268 |
+
"epoch": 0.176,
|
| 269 |
+
"grad_norm": 0.103515625,
|
| 270 |
+
"learning_rate": 4.38e-06,
|
| 271 |
+
"loss": 11.4588,
|
| 272 |
+
"mean_token_accuracy": 0.1579661637544632,
|
| 273 |
+
"num_tokens": 2168354.0,
|
| 274 |
+
"step": 220
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"entropy": 1.914576094597578,
|
| 278 |
+
"epoch": 0.184,
|
| 279 |
+
"grad_norm": 0.10400390625,
|
| 280 |
+
"learning_rate": 4.58e-06,
|
| 281 |
+
"loss": 11.3803,
|
| 282 |
+
"mean_token_accuracy": 0.15757576958276331,
|
| 283 |
+
"num_tokens": 2270617.0,
|
| 284 |
+
"step": 230
|
| 285 |
+
},
|
| 286 |
+
{
|
| 287 |
+
"entropy": 1.9133810736238956,
|
| 288 |
+
"epoch": 0.192,
|
| 289 |
+
"grad_norm": 0.11083984375,
|
| 290 |
+
"learning_rate": 4.78e-06,
|
| 291 |
+
"loss": 11.5562,
|
| 292 |
+
"mean_token_accuracy": 0.15540659767575563,
|
| 293 |
+
"num_tokens": 2365822.0,
|
| 294 |
+
"step": 240
|
| 295 |
+
},
|
| 296 |
+
{
|
| 297 |
+
"entropy": 1.9234349891543387,
|
| 298 |
+
"epoch": 0.2,
|
| 299 |
+
"grad_norm": 0.1142578125,
|
| 300 |
+
"learning_rate": 4.980000000000001e-06,
|
| 301 |
+
"loss": 11.5222,
|
| 302 |
+
"mean_token_accuracy": 0.15323229427449406,
|
| 303 |
+
"num_tokens": 2459876.0,
|
| 304 |
+
"step": 250
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"entropy": 1.9399859428405761,
|
| 308 |
+
"epoch": 0.208,
|
| 309 |
+
"grad_norm": 0.109375,
|
| 310 |
+
"learning_rate": 5.18e-06,
|
| 311 |
+
"loss": 11.428,
|
| 312 |
+
"mean_token_accuracy": 0.1552271238528192,
|
| 313 |
+
"num_tokens": 2558762.0,
|
| 314 |
+
"step": 260
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"entropy": 1.9029304042458535,
|
| 318 |
+
"epoch": 0.216,
|
| 319 |
+
"grad_norm": 0.10205078125,
|
| 320 |
+
"learning_rate": 5.380000000000001e-06,
|
| 321 |
+
"loss": 11.2925,
|
| 322 |
+
"mean_token_accuracy": 0.16210160069167615,
|
| 323 |
+
"num_tokens": 2654953.0,
|
| 324 |
+
"step": 270
|
| 325 |
+
},
|
| 326 |
+
{
|
| 327 |
+
"entropy": 1.9189352929592132,
|
| 328 |
+
"epoch": 0.224,
|
| 329 |
+
"grad_norm": 0.09912109375,
|
| 330 |
+
"learning_rate": 5.580000000000001e-06,
|
| 331 |
+
"loss": 11.3849,
|
| 332 |
+
"mean_token_accuracy": 0.15769596104510128,
|
| 333 |
+
"num_tokens": 2755347.0,
|
| 334 |
+
"step": 280
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"entropy": 1.8914753369987012,
|
| 338 |
+
"epoch": 0.232,
|
| 339 |
+
"grad_norm": 0.1181640625,
|
| 340 |
+
"learning_rate": 5.78e-06,
|
| 341 |
+
"loss": 11.4031,
|
| 342 |
+
"mean_token_accuracy": 0.16200053002685308,
|
| 343 |
+
"num_tokens": 2852298.0,
|
| 344 |
+
"step": 290
|
| 345 |
+
},
|
| 346 |
+
{
|
| 347 |
+
"entropy": 1.9092405900359153,
|
| 348 |
+
"epoch": 0.24,
|
| 349 |
+
"grad_norm": 0.10302734375,
|
| 350 |
+
"learning_rate": 5.98e-06,
|
| 351 |
+
"loss": 11.2327,
|
| 352 |
+
"mean_token_accuracy": 0.16136883310973643,
|
| 353 |
+
"num_tokens": 2947346.0,
|
| 354 |
+
"step": 300
|
| 355 |
+
},
|
| 356 |
+
{
|
| 357 |
+
"epoch": 0.24,
|
| 358 |
+
"eval_coding_entropy": 1.000721924304962,
|
| 359 |
+
"eval_coding_loss": 8.267828941345215,
|
| 360 |
+
"eval_coding_mean_token_accuracy": 0.2908177390098572,
|
| 361 |
+
"eval_coding_num_tokens": 2947346.0,
|
| 362 |
+
"eval_coding_runtime": 93.3688,
|
| 363 |
+
"eval_coding_samples_per_second": 5.355,
|
| 364 |
+
"eval_coding_steps_per_second": 2.678,
|
| 365 |
+
"step": 300
|
| 366 |
+
},
|
| 367 |
+
{
|
| 368 |
+
"epoch": 0.24,
|
| 369 |
+
"eval_biology_entropy": 1.8729813146591185,
|
| 370 |
+
"eval_biology_loss": 11.396076202392578,
|
| 371 |
+
"eval_biology_mean_token_accuracy": 0.1593981314599514,
|
| 372 |
+
"eval_biology_num_tokens": 2947346.0,
|
| 373 |
+
"eval_biology_runtime": 41.7366,
|
| 374 |
+
"eval_biology_samples_per_second": 11.98,
|
| 375 |
+
"eval_biology_steps_per_second": 5.99,
|
| 376 |
+
"step": 300
|
| 377 |
+
},
|
| 378 |
+
{
|
| 379 |
+
"entropy": 1.9313343465328217,
|
| 380 |
+
"epoch": 0.248,
|
| 381 |
+
"grad_norm": 0.1123046875,
|
| 382 |
+
"learning_rate": 6.18e-06,
|
| 383 |
+
"loss": 11.5425,
|
| 384 |
+
"mean_token_accuracy": 0.15317737096920608,
|
| 385 |
+
"num_tokens": 3043128.0,
|
| 386 |
+
"step": 310
|
| 387 |
+
},
|
| 388 |
+
{
|
| 389 |
+
"entropy": 1.9211706645786761,
|
| 390 |
+
"epoch": 0.256,
|
| 391 |
+
"grad_norm": 0.1083984375,
|
| 392 |
+
"learning_rate": 6.380000000000001e-06,
|
| 393 |
+
"loss": 11.4729,
|
| 394 |
+
"mean_token_accuracy": 0.1547949264757335,
|
| 395 |
+
"num_tokens": 3139957.0,
|
| 396 |
+
"step": 320
|
| 397 |
+
},
|
| 398 |
+
{
|
| 399 |
+
"entropy": 1.923046988248825,
|
| 400 |
+
"epoch": 0.264,
|
| 401 |
+
"grad_norm": 0.10693359375,
|
| 402 |
+
"learning_rate": 6.5800000000000005e-06,
|
| 403 |
+
"loss": 11.4159,
|
| 404 |
+
"mean_token_accuracy": 0.15573964624200015,
|
| 405 |
+
"num_tokens": 3232159.0,
|
| 406 |
+
"step": 330
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"entropy": 1.8901807874441148,
|
| 410 |
+
"epoch": 0.272,
|
| 411 |
+
"grad_norm": 0.1083984375,
|
| 412 |
+
"learning_rate": 6.780000000000001e-06,
|
| 413 |
+
"loss": 11.3543,
|
| 414 |
+
"mean_token_accuracy": 0.1617777702398598,
|
| 415 |
+
"num_tokens": 3335951.0,
|
| 416 |
+
"step": 340
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"entropy": 1.8801799044013023,
|
| 420 |
+
"epoch": 0.28,
|
| 421 |
+
"grad_norm": 0.10498046875,
|
| 422 |
+
"learning_rate": 6.98e-06,
|
| 423 |
+
"loss": 11.4879,
|
| 424 |
+
"mean_token_accuracy": 0.15775063186883925,
|
| 425 |
+
"num_tokens": 3437213.0,
|
| 426 |
+
"step": 350
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"entropy": 1.9043901436030866,
|
| 430 |
+
"epoch": 0.288,
|
| 431 |
+
"grad_norm": 0.11474609375,
|
| 432 |
+
"learning_rate": 7.180000000000001e-06,
|
| 433 |
+
"loss": 11.5366,
|
| 434 |
+
"mean_token_accuracy": 0.15751364254392683,
|
| 435 |
+
"num_tokens": 3539731.0,
|
| 436 |
+
"step": 360
|
| 437 |
+
},
|
| 438 |
+
{
|
| 439 |
+
"entropy": 1.9588028222322464,
|
| 440 |
+
"epoch": 0.296,
|
| 441 |
+
"grad_norm": 0.1064453125,
|
| 442 |
+
"learning_rate": 7.3800000000000005e-06,
|
| 443 |
+
"loss": 11.3894,
|
| 444 |
+
"mean_token_accuracy": 0.153670167690143,
|
| 445 |
+
"num_tokens": 3633448.0,
|
| 446 |
+
"step": 370
|
| 447 |
+
},
|
| 448 |
+
{
|
| 449 |
+
"entropy": 1.881439681351185,
|
| 450 |
+
"epoch": 0.304,
|
| 451 |
+
"grad_norm": 0.1064453125,
|
| 452 |
+
"learning_rate": 7.58e-06,
|
| 453 |
+
"loss": 11.3016,
|
| 454 |
+
"mean_token_accuracy": 0.16050010859034955,
|
| 455 |
+
"num_tokens": 3733488.0,
|
| 456 |
+
"step": 380
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"entropy": 1.9542286798357964,
|
| 460 |
+
"epoch": 0.312,
|
| 461 |
+
"grad_norm": 0.103515625,
|
| 462 |
+
"learning_rate": 7.78e-06,
|
| 463 |
+
"loss": 11.273,
|
| 464 |
+
"mean_token_accuracy": 0.15929239662364125,
|
| 465 |
+
"num_tokens": 3825212.0,
|
| 466 |
+
"step": 390
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"entropy": 1.9287514887750148,
|
| 470 |
+
"epoch": 0.32,
|
| 471 |
+
"grad_norm": 0.10107421875,
|
| 472 |
+
"learning_rate": 7.980000000000002e-06,
|
| 473 |
+
"loss": 11.3054,
|
| 474 |
+
"mean_token_accuracy": 0.1604186396114528,
|
| 475 |
+
"num_tokens": 3920545.0,
|
| 476 |
+
"step": 400
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"epoch": 0.32,
|
| 480 |
+
"eval_coding_entropy": 1.000721924304962,
|
| 481 |
+
"eval_coding_loss": 8.267828941345215,
|
| 482 |
+
"eval_coding_mean_token_accuracy": 0.2908177390098572,
|
| 483 |
+
"eval_coding_num_tokens": 3920545.0,
|
| 484 |
+
"eval_coding_runtime": 92.8995,
|
| 485 |
+
"eval_coding_samples_per_second": 5.382,
|
| 486 |
+
"eval_coding_steps_per_second": 2.691,
|
| 487 |
+
"step": 400
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.32,
|
| 491 |
+
"eval_biology_entropy": 1.8729813146591185,
|
| 492 |
+
"eval_biology_loss": 11.396076202392578,
|
| 493 |
+
"eval_biology_mean_token_accuracy": 0.1593981314599514,
|
| 494 |
+
"eval_biology_num_tokens": 3920545.0,
|
| 495 |
+
"eval_biology_runtime": 41.088,
|
| 496 |
+
"eval_biology_samples_per_second": 12.169,
|
| 497 |
+
"eval_biology_steps_per_second": 6.085,
|
| 498 |
+
"step": 400
|
| 499 |
+
},
|
| 500 |
+
{
|
| 501 |
+
"entropy": 1.9058279685676098,
|
| 502 |
+
"epoch": 0.328,
|
| 503 |
+
"grad_norm": 0.11181640625,
|
| 504 |
+
"learning_rate": 8.18e-06,
|
| 505 |
+
"loss": 11.3842,
|
| 506 |
+
"mean_token_accuracy": 0.15871414174325765,
|
| 507 |
+
"num_tokens": 4016673.0,
|
| 508 |
+
"step": 410
|
| 509 |
+
},
|
| 510 |
+
{
|
| 511 |
+
"entropy": 1.930207794904709,
|
| 512 |
+
"epoch": 0.336,
|
| 513 |
+
"grad_norm": 0.10888671875,
|
| 514 |
+
"learning_rate": 8.380000000000001e-06,
|
| 515 |
+
"loss": 11.3961,
|
| 516 |
+
"mean_token_accuracy": 0.1579543233383447,
|
| 517 |
+
"num_tokens": 4114077.0,
|
| 518 |
+
"step": 420
|
| 519 |
+
},
|
| 520 |
+
{
|
| 521 |
+
"entropy": 1.9419952422380446,
|
| 522 |
+
"epoch": 0.344,
|
| 523 |
+
"grad_norm": 0.111328125,
|
| 524 |
+
"learning_rate": 8.580000000000001e-06,
|
| 525 |
+
"loss": 11.362,
|
| 526 |
+
"mean_token_accuracy": 0.15992560391314328,
|
| 527 |
+
"num_tokens": 4210403.0,
|
| 528 |
+
"step": 430
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"entropy": 1.913541816174984,
|
| 532 |
+
"epoch": 0.352,
|
| 533 |
+
"grad_norm": 0.1142578125,
|
| 534 |
+
"learning_rate": 8.78e-06,
|
| 535 |
+
"loss": 11.3323,
|
| 536 |
+
"mean_token_accuracy": 0.1633904448710382,
|
| 537 |
+
"num_tokens": 4306949.0,
|
| 538 |
+
"step": 440
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"entropy": 1.913567177206278,
|
| 542 |
+
"epoch": 0.36,
|
| 543 |
+
"grad_norm": 0.1240234375,
|
| 544 |
+
"learning_rate": 8.98e-06,
|
| 545 |
+
"loss": 11.458,
|
| 546 |
+
"mean_token_accuracy": 0.15837323614396154,
|
| 547 |
+
"num_tokens": 4406104.0,
|
| 548 |
+
"step": 450
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"entropy": 1.931741751730442,
|
| 552 |
+
"epoch": 0.368,
|
| 553 |
+
"grad_norm": 0.1025390625,
|
| 554 |
+
"learning_rate": 9.180000000000002e-06,
|
| 555 |
+
"loss": 11.2873,
|
| 556 |
+
"mean_token_accuracy": 0.15801281332969666,
|
| 557 |
+
"num_tokens": 4504001.0,
|
| 558 |
+
"step": 460
|
| 559 |
+
},
|
| 560 |
+
{
|
| 561 |
+
"entropy": 1.904297123849392,
|
| 562 |
+
"epoch": 0.376,
|
| 563 |
+
"grad_norm": 0.1025390625,
|
| 564 |
+
"learning_rate": 9.38e-06,
|
| 565 |
+
"loss": 11.3813,
|
| 566 |
+
"mean_token_accuracy": 0.155983364302665,
|
| 567 |
+
"num_tokens": 4597559.0,
|
| 568 |
+
"step": 470
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"entropy": 1.9029462151229382,
|
| 572 |
+
"epoch": 0.384,
|
| 573 |
+
"grad_norm": 0.09716796875,
|
| 574 |
+
"learning_rate": 9.58e-06,
|
| 575 |
+
"loss": 11.3823,
|
| 576 |
+
"mean_token_accuracy": 0.15874490085989237,
|
| 577 |
+
"num_tokens": 4693812.0,
|
| 578 |
+
"step": 480
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"entropy": 1.9272562205791473,
|
| 582 |
+
"epoch": 0.392,
|
| 583 |
+
"grad_norm": 0.11474609375,
|
| 584 |
+
"learning_rate": 9.780000000000001e-06,
|
| 585 |
+
"loss": 11.2937,
|
| 586 |
+
"mean_token_accuracy": 0.1593953504692763,
|
| 587 |
+
"num_tokens": 4790965.0,
|
| 588 |
+
"step": 490
|
| 589 |
+
},
|
| 590 |
+
{
|
| 591 |
+
"entropy": 1.9103233270347117,
|
| 592 |
+
"epoch": 0.4,
|
| 593 |
+
"grad_norm": 0.1083984375,
|
| 594 |
+
"learning_rate": 9.980000000000001e-06,
|
| 595 |
+
"loss": 11.3472,
|
| 596 |
+
"mean_token_accuracy": 0.15859601702541112,
|
| 597 |
+
"num_tokens": 4887094.0,
|
| 598 |
+
"step": 500
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.4,
|
| 602 |
+
"eval_coding_entropy": 1.000721924304962,
|
| 603 |
+
"eval_coding_loss": 8.267828941345215,
|
| 604 |
+
"eval_coding_mean_token_accuracy": 0.2908177390098572,
|
| 605 |
+
"eval_coding_num_tokens": 4887094.0,
|
| 606 |
+
"eval_coding_runtime": 93.1337,
|
| 607 |
+
"eval_coding_samples_per_second": 5.369,
|
| 608 |
+
"eval_coding_steps_per_second": 2.684,
|
| 609 |
+
"step": 500
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"epoch": 0.4,
|
| 613 |
+
"eval_biology_entropy": 1.8729813146591185,
|
| 614 |
+
"eval_biology_loss": 11.396076202392578,
|
| 615 |
+
"eval_biology_mean_token_accuracy": 0.1593981314599514,
|
| 616 |
+
"eval_biology_num_tokens": 4887094.0,
|
| 617 |
+
"eval_biology_runtime": 41.2135,
|
| 618 |
+
"eval_biology_samples_per_second": 12.132,
|
| 619 |
+
"eval_biology_steps_per_second": 6.066,
|
| 620 |
+
"step": 500
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 1.9290625013411045,
|
| 624 |
+
"epoch": 0.408,
|
| 625 |
+
"grad_norm": 0.1142578125,
|
| 626 |
+
"learning_rate": 1.018e-05,
|
| 627 |
+
"loss": 11.375,
|
| 628 |
+
"mean_token_accuracy": 0.16000252263620496,
|
| 629 |
+
"num_tokens": 4985394.0,
|
| 630 |
+
"step": 510
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 1.9234229408204555,
|
| 634 |
+
"epoch": 0.416,
|
| 635 |
+
"grad_norm": 0.10595703125,
|
| 636 |
+
"learning_rate": 1.038e-05,
|
| 637 |
+
"loss": 11.4479,
|
| 638 |
+
"mean_token_accuracy": 0.1574494892731309,
|
| 639 |
+
"num_tokens": 5085369.0,
|
| 640 |
+
"step": 520
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 1.9453741960227489,
|
| 644 |
+
"epoch": 0.424,
|
| 645 |
+
"grad_norm": 0.1162109375,
|
| 646 |
+
"learning_rate": 1.0580000000000002e-05,
|
| 647 |
+
"loss": 11.3764,
|
| 648 |
+
"mean_token_accuracy": 0.15493024131283165,
|
| 649 |
+
"num_tokens": 5176083.0,
|
| 650 |
+
"step": 530
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 1.9170791164040566,
|
| 654 |
+
"epoch": 0.432,
|
| 655 |
+
"grad_norm": 0.10498046875,
|
| 656 |
+
"learning_rate": 1.0780000000000002e-05,
|
| 657 |
+
"loss": 11.4612,
|
| 658 |
+
"mean_token_accuracy": 0.15664362437091767,
|
| 659 |
+
"num_tokens": 5271275.0,
|
| 660 |
+
"step": 540
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 1.9397698909044265,
|
| 664 |
+
"epoch": 0.44,
|
| 665 |
+
"grad_norm": 0.1044921875,
|
| 666 |
+
"learning_rate": 1.0980000000000002e-05,
|
| 667 |
+
"loss": 11.2801,
|
| 668 |
+
"mean_token_accuracy": 0.15725393719039857,
|
| 669 |
+
"num_tokens": 5362624.0,
|
| 670 |
+
"step": 550
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 1.9190262392163278,
|
| 674 |
+
"epoch": 0.448,
|
| 675 |
+
"grad_norm": 0.10205078125,
|
| 676 |
+
"learning_rate": 1.1180000000000001e-05,
|
| 677 |
+
"loss": 11.4585,
|
| 678 |
+
"mean_token_accuracy": 0.157243634108454,
|
| 679 |
+
"num_tokens": 5460559.0,
|
| 680 |
+
"step": 560
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 1.9073573514819144,
|
| 684 |
+
"epoch": 0.456,
|
| 685 |
+
"grad_norm": 0.10791015625,
|
| 686 |
+
"learning_rate": 1.138e-05,
|
| 687 |
+
"loss": 11.4459,
|
| 688 |
+
"mean_token_accuracy": 0.15579957109875978,
|
| 689 |
+
"num_tokens": 5558471.0,
|
| 690 |
+
"step": 570
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 1.92078455388546,
|
| 694 |
+
"epoch": 0.464,
|
| 695 |
+
"grad_norm": 0.10693359375,
|
| 696 |
+
"learning_rate": 1.1580000000000001e-05,
|
| 697 |
+
"loss": 11.3866,
|
| 698 |
+
"mean_token_accuracy": 0.15736165479756892,
|
| 699 |
+
"num_tokens": 5653809.0,
|
| 700 |
+
"step": 580
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 1.9094278007745742,
|
| 704 |
+
"epoch": 0.472,
|
| 705 |
+
"grad_norm": 0.10595703125,
|
| 706 |
+
"learning_rate": 1.178e-05,
|
| 707 |
+
"loss": 11.4047,
|
| 708 |
+
"mean_token_accuracy": 0.15574069027788937,
|
| 709 |
+
"num_tokens": 5751529.0,
|
| 710 |
+
"step": 590
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 1.9597051613032819,
|
| 714 |
+
"epoch": 0.48,
|
| 715 |
+
"grad_norm": 0.1181640625,
|
| 716 |
+
"learning_rate": 1.198e-05,
|
| 717 |
+
"loss": 11.4724,
|
| 718 |
+
"mean_token_accuracy": 0.1529582162387669,
|
| 719 |
+
"num_tokens": 5850176.0,
|
| 720 |
+
"step": 600
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"epoch": 0.48,
|
| 724 |
+
"eval_coding_entropy": 1.000721924304962,
|
| 725 |
+
"eval_coding_loss": 8.267828941345215,
|
| 726 |
+
"eval_coding_mean_token_accuracy": 0.2908177390098572,
|
| 727 |
+
"eval_coding_num_tokens": 5850176.0,
|
| 728 |
+
"eval_coding_runtime": 93.1046,
|
| 729 |
+
"eval_coding_samples_per_second": 5.37,
|
| 730 |
+
"eval_coding_steps_per_second": 2.685,
|
| 731 |
+
"step": 600
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 0.48,
|
| 735 |
+
"eval_biology_entropy": 1.8729813146591185,
|
| 736 |
+
"eval_biology_loss": 11.396076202392578,
|
| 737 |
+
"eval_biology_mean_token_accuracy": 0.1593981314599514,
|
| 738 |
+
"eval_biology_num_tokens": 5850176.0,
|
| 739 |
+
"eval_biology_runtime": 41.2971,
|
| 740 |
+
"eval_biology_samples_per_second": 12.107,
|
| 741 |
+
"eval_biology_steps_per_second": 6.054,
|
| 742 |
+
"step": 600
|
| 743 |
+
},
|
| 744 |
+
{
|
| 745 |
+
"entropy": 1.8962870091199875,
|
| 746 |
+
"epoch": 0.488,
|
| 747 |
+
"grad_norm": 0.10302734375,
|
| 748 |
+
"learning_rate": 1.218e-05,
|
| 749 |
+
"loss": 11.3305,
|
| 750 |
+
"mean_token_accuracy": 0.16129443161189555,
|
| 751 |
+
"num_tokens": 5948898.0,
|
| 752 |
+
"step": 610
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"entropy": 1.9090802267193794,
|
| 756 |
+
"epoch": 0.496,
|
| 757 |
+
"grad_norm": 0.10009765625,
|
| 758 |
+
"learning_rate": 1.2380000000000002e-05,
|
| 759 |
+
"loss": 11.2714,
|
| 760 |
+
"mean_token_accuracy": 0.16270390092395245,
|
| 761 |
+
"num_tokens": 6046503.0,
|
| 762 |
+
"step": 620
|
| 763 |
+
},
|
| 764 |
+
{
|
| 765 |
+
"entropy": 1.9413189493119716,
|
| 766 |
+
"epoch": 0.504,
|
| 767 |
+
"grad_norm": 0.1064453125,
|
| 768 |
+
"learning_rate": 1.2580000000000002e-05,
|
| 769 |
+
"loss": 11.348,
|
| 770 |
+
"mean_token_accuracy": 0.15744470418430864,
|
| 771 |
+
"num_tokens": 6138649.0,
|
| 772 |
+
"step": 630
|
| 773 |
+
},
|
| 774 |
+
{
|
| 775 |
+
"entropy": 1.9004696995019912,
|
| 776 |
+
"epoch": 0.512,
|
| 777 |
+
"grad_norm": 0.1142578125,
|
| 778 |
+
"learning_rate": 1.2780000000000001e-05,
|
| 779 |
+
"loss": 11.5757,
|
| 780 |
+
"mean_token_accuracy": 0.15675477078184485,
|
| 781 |
+
"num_tokens": 6240456.0,
|
| 782 |
+
"step": 640
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"entropy": 1.9349555149674416,
|
| 786 |
+
"epoch": 0.52,
|
| 787 |
+
"grad_norm": 0.109375,
|
| 788 |
+
"learning_rate": 1.2980000000000001e-05,
|
| 789 |
+
"loss": 11.3673,
|
| 790 |
+
"mean_token_accuracy": 0.15686554382555187,
|
| 791 |
+
"num_tokens": 6333958.0,
|
| 792 |
+
"step": 650
|
| 793 |
+
},
|
| 794 |
+
{
|
| 795 |
+
"entropy": 1.9110501252114773,
|
| 796 |
+
"epoch": 0.528,
|
| 797 |
+
"grad_norm": 0.111328125,
|
| 798 |
+
"learning_rate": 1.3180000000000001e-05,
|
| 799 |
+
"loss": 11.3261,
|
| 800 |
+
"mean_token_accuracy": 0.15933070508763195,
|
| 801 |
+
"num_tokens": 6430555.0,
|
| 802 |
+
"step": 660
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"entropy": 1.89276999309659,
|
| 806 |
+
"epoch": 0.536,
|
| 807 |
+
"grad_norm": 0.1103515625,
|
| 808 |
+
"learning_rate": 1.3380000000000002e-05,
|
| 809 |
+
"loss": 11.3362,
|
| 810 |
+
"mean_token_accuracy": 0.16168827014043927,
|
| 811 |
+
"num_tokens": 6533033.0,
|
| 812 |
+
"step": 670
|
| 813 |
+
},
|
| 814 |
+
{
|
| 815 |
+
"entropy": 1.9395132802426815,
|
| 816 |
+
"epoch": 0.544,
|
| 817 |
+
"grad_norm": 0.11083984375,
|
| 818 |
+
"learning_rate": 1.3580000000000002e-05,
|
| 819 |
+
"loss": 11.4779,
|
| 820 |
+
"mean_token_accuracy": 0.15581823773682119,
|
| 821 |
+
"num_tokens": 6626006.0,
|
| 822 |
+
"step": 680
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"entropy": 1.941649568080902,
|
| 826 |
+
"epoch": 0.552,
|
| 827 |
+
"grad_norm": 0.10986328125,
|
| 828 |
+
"learning_rate": 1.378e-05,
|
| 829 |
+
"loss": 11.4785,
|
| 830 |
+
"mean_token_accuracy": 0.15422701863572003,
|
| 831 |
+
"num_tokens": 6719864.0,
|
| 832 |
+
"step": 690
|
| 833 |
+
},
|
| 834 |
+
{
|
| 835 |
+
"entropy": 1.8964682638645172,
|
| 836 |
+
"epoch": 0.56,
|
| 837 |
+
"grad_norm": 0.109375,
|
| 838 |
+
"learning_rate": 1.398e-05,
|
| 839 |
+
"loss": 11.3283,
|
| 840 |
+
"mean_token_accuracy": 0.16160819460637868,
|
| 841 |
+
"num_tokens": 6820754.0,
|
| 842 |
+
"step": 700
|
| 843 |
+
},
|
| 844 |
+
{
|
| 845 |
+
"epoch": 0.56,
|
| 846 |
+
"eval_coding_entropy": 1.000721924304962,
|
| 847 |
+
"eval_coding_loss": 8.267828941345215,
|
| 848 |
+
"eval_coding_mean_token_accuracy": 0.2908177390098572,
|
| 849 |
+
"eval_coding_num_tokens": 6820754.0,
|
| 850 |
+
"eval_coding_runtime": 93.0261,
|
| 851 |
+
"eval_coding_samples_per_second": 5.375,
|
| 852 |
+
"eval_coding_steps_per_second": 2.687,
|
| 853 |
+
"step": 700
|
| 854 |
+
},
|
| 855 |
+
{
|
| 856 |
+
"epoch": 0.56,
|
| 857 |
+
"eval_biology_entropy": 1.8729813146591185,
|
| 858 |
+
"eval_biology_loss": 11.396076202392578,
|
| 859 |
+
"eval_biology_mean_token_accuracy": 0.1593981314599514,
|
| 860 |
+
"eval_biology_num_tokens": 6820754.0,
|
| 861 |
+
"eval_biology_runtime": 40.9428,
|
| 862 |
+
"eval_biology_samples_per_second": 12.212,
|
| 863 |
+
"eval_biology_steps_per_second": 6.106,
|
| 864 |
+
"step": 700
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"entropy": 1.8812049485743045,
|
| 868 |
+
"epoch": 0.568,
|
| 869 |
+
"grad_norm": 0.10986328125,
|
| 870 |
+
"learning_rate": 1.418e-05,
|
| 871 |
+
"loss": 11.4292,
|
| 872 |
+
"mean_token_accuracy": 0.15740878535434605,
|
| 873 |
+
"num_tokens": 6924942.0,
|
| 874 |
+
"step": 710
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"entropy": 1.9126729860901832,
|
| 878 |
+
"epoch": 0.576,
|
| 879 |
+
"grad_norm": 0.10205078125,
|
| 880 |
+
"learning_rate": 1.4380000000000001e-05,
|
| 881 |
+
"loss": 11.4497,
|
| 882 |
+
"mean_token_accuracy": 0.15626165526919067,
|
| 883 |
+
"num_tokens": 7021844.0,
|
| 884 |
+
"step": 720
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"entropy": 1.9178711868822576,
|
| 888 |
+
"epoch": 0.584,
|
| 889 |
+
"grad_norm": 0.1083984375,
|
| 890 |
+
"learning_rate": 1.4580000000000001e-05,
|
| 891 |
+
"loss": 11.4406,
|
| 892 |
+
"mean_token_accuracy": 0.1565072405152023,
|
| 893 |
+
"num_tokens": 7118443.0,
|
| 894 |
+
"step": 730
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"entropy": 1.899195620045066,
|
| 898 |
+
"epoch": 0.592,
|
| 899 |
+
"grad_norm": 0.10498046875,
|
| 900 |
+
"learning_rate": 1.478e-05,
|
| 901 |
+
"loss": 11.3891,
|
| 902 |
+
"mean_token_accuracy": 0.15970171936787664,
|
| 903 |
+
"num_tokens": 7213951.0,
|
| 904 |
+
"step": 740
|
| 905 |
+
},
|
| 906 |
+
{
|
| 907 |
+
"entropy": 1.8711984746158123,
|
| 908 |
+
"epoch": 0.6,
|
| 909 |
+
"grad_norm": 0.107421875,
|
| 910 |
+
"learning_rate": 1.498e-05,
|
| 911 |
+
"loss": 11.6155,
|
| 912 |
+
"mean_token_accuracy": 0.1571272831875831,
|
| 913 |
+
"num_tokens": 7317984.0,
|
| 914 |
+
"step": 750
|
| 915 |
+
},
|
| 916 |
+
{
|
| 917 |
+
"entropy": 1.8990586549043655,
|
| 918 |
+
"epoch": 0.608,
|
| 919 |
+
"grad_norm": 0.10888671875,
|
| 920 |
+
"learning_rate": 1.5180000000000002e-05,
|
| 921 |
+
"loss": 11.5369,
|
| 922 |
+
"mean_token_accuracy": 0.15493298289366067,
|
| 923 |
+
"num_tokens": 7416773.0,
|
| 924 |
+
"step": 760
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"entropy": 1.8844982825219632,
|
| 928 |
+
"epoch": 0.616,
|
| 929 |
+
"grad_norm": 0.11376953125,
|
| 930 |
+
"learning_rate": 1.5380000000000002e-05,
|
| 931 |
+
"loss": 11.4661,
|
| 932 |
+
"mean_token_accuracy": 0.15754226935096086,
|
| 933 |
+
"num_tokens": 7514031.0,
|
| 934 |
+
"step": 770
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"entropy": 1.9250130340456963,
|
| 938 |
+
"epoch": 0.624,
|
| 939 |
+
"grad_norm": 0.1142578125,
|
| 940 |
+
"learning_rate": 1.5580000000000003e-05,
|
| 941 |
+
"loss": 11.5539,
|
| 942 |
+
"mean_token_accuracy": 0.15620456612668931,
|
| 943 |
+
"num_tokens": 7612843.0,
|
| 944 |
+
"step": 780
|
| 945 |
+
},
|
| 946 |
+
{
|
| 947 |
+
"entropy": 1.9027365200221538,
|
| 948 |
+
"epoch": 0.632,
|
| 949 |
+
"grad_norm": 0.11572265625,
|
| 950 |
+
"learning_rate": 1.578e-05,
|
| 951 |
+
"loss": 11.397,
|
| 952 |
+
"mean_token_accuracy": 0.15837502111680807,
|
| 953 |
+
"num_tokens": 7710332.0,
|
| 954 |
+
"step": 790
|
| 955 |
+
},
|
| 956 |
+
{
|
| 957 |
+
"entropy": 1.9388741664588451,
|
| 958 |
+
"epoch": 0.64,
|
| 959 |
+
"grad_norm": 0.1015625,
|
| 960 |
+
"learning_rate": 1.5980000000000003e-05,
|
| 961 |
+
"loss": 11.2848,
|
| 962 |
+
"mean_token_accuracy": 0.15811930843628944,
|
| 963 |
+
"num_tokens": 7801633.0,
|
| 964 |
+
"step": 800
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 0.64,
|
| 968 |
+
"eval_coding_entropy": 1.000721924304962,
|
| 969 |
+
"eval_coding_loss": 8.267828941345215,
|
| 970 |
+
"eval_coding_mean_token_accuracy": 0.2908177390098572,
|
| 971 |
+
"eval_coding_num_tokens": 7801633.0,
|
| 972 |
+
"eval_coding_runtime": 92.9264,
|
| 973 |
+
"eval_coding_samples_per_second": 5.381,
|
| 974 |
+
"eval_coding_steps_per_second": 2.69,
|
| 975 |
+
"step": 800
|
| 976 |
+
},
|
| 977 |
+
{
|
| 978 |
+
"epoch": 0.64,
|
| 979 |
+
"eval_biology_entropy": 1.8729813146591185,
|
| 980 |
+
"eval_biology_loss": 11.396076202392578,
|
| 981 |
+
"eval_biology_mean_token_accuracy": 0.1593981314599514,
|
| 982 |
+
"eval_biology_num_tokens": 7801633.0,
|
| 983 |
+
"eval_biology_runtime": 40.9144,
|
| 984 |
+
"eval_biology_samples_per_second": 12.221,
|
| 985 |
+
"eval_biology_steps_per_second": 6.11,
|
| 986 |
+
"step": 800
|
| 987 |
+
},
|
| 988 |
+
{
|
| 989 |
+
"entropy": 1.8989893589168787,
|
| 990 |
+
"epoch": 0.648,
|
| 991 |
+
"grad_norm": 0.1123046875,
|
| 992 |
+
"learning_rate": 1.618e-05,
|
| 993 |
+
"loss": 11.4501,
|
| 994 |
+
"mean_token_accuracy": 0.1592996684834361,
|
| 995 |
+
"num_tokens": 7899038.0,
|
| 996 |
+
"step": 810
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"entropy": 1.9489813253283501,
|
| 1000 |
+
"epoch": 0.656,
|
| 1001 |
+
"grad_norm": 0.1103515625,
|
| 1002 |
+
"learning_rate": 1.638e-05,
|
| 1003 |
+
"loss": 11.6214,
|
| 1004 |
+
"mean_token_accuracy": 0.15152352401055397,
|
| 1005 |
+
"num_tokens": 7995843.0,
|
| 1006 |
+
"step": 820
|
| 1007 |
+
},
|
| 1008 |
+
{
|
| 1009 |
+
"entropy": 1.9073718406260014,
|
| 1010 |
+
"epoch": 0.664,
|
| 1011 |
+
"grad_norm": 0.109375,
|
| 1012 |
+
"learning_rate": 1.658e-05,
|
| 1013 |
+
"loss": 11.4378,
|
| 1014 |
+
"mean_token_accuracy": 0.1551885347813368,
|
| 1015 |
+
"num_tokens": 8092148.0,
|
| 1016 |
+
"step": 830
|
| 1017 |
+
},
|
| 1018 |
+
{
|
| 1019 |
+
"entropy": 1.9346605040133,
|
| 1020 |
+
"epoch": 0.672,
|
| 1021 |
+
"grad_norm": 0.1142578125,
|
| 1022 |
+
"learning_rate": 1.6780000000000002e-05,
|
| 1023 |
+
"loss": 11.4991,
|
| 1024 |
+
"mean_token_accuracy": 0.15528175202198327,
|
| 1025 |
+
"num_tokens": 8183103.0,
|
| 1026 |
+
"step": 840
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"entropy": 1.8954717583954335,
|
| 1030 |
+
"epoch": 0.68,
|
| 1031 |
+
"grad_norm": 0.11328125,
|
| 1032 |
+
"learning_rate": 1.698e-05,
|
| 1033 |
+
"loss": 11.5802,
|
| 1034 |
+
"mean_token_accuracy": 0.15582030937075614,
|
| 1035 |
+
"num_tokens": 8283708.0,
|
| 1036 |
+
"step": 850
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"entropy": 1.8708562321960926,
|
| 1040 |
+
"epoch": 0.688,
|
| 1041 |
+
"grad_norm": 0.10986328125,
|
| 1042 |
+
"learning_rate": 1.718e-05,
|
| 1043 |
+
"loss": 11.3021,
|
| 1044 |
+
"mean_token_accuracy": 0.16033690557815133,
|
| 1045 |
+
"num_tokens": 8385976.0,
|
| 1046 |
+
"step": 860
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"entropy": 1.940383419394493,
|
| 1050 |
+
"epoch": 0.696,
|
| 1051 |
+
"grad_norm": 0.11376953125,
|
| 1052 |
+
"learning_rate": 1.7380000000000003e-05,
|
| 1053 |
+
"loss": 11.5672,
|
| 1054 |
+
"mean_token_accuracy": 0.15030423626303674,
|
| 1055 |
+
"num_tokens": 8480263.0,
|
| 1056 |
+
"step": 870
|
| 1057 |
+
},
|
| 1058 |
+
{
|
| 1059 |
+
"entropy": 1.8808147184550763,
|
| 1060 |
+
"epoch": 0.704,
|
| 1061 |
+
"grad_norm": 0.10986328125,
|
| 1062 |
+
"learning_rate": 1.758e-05,
|
| 1063 |
+
"loss": 11.3381,
|
| 1064 |
+
"mean_token_accuracy": 0.16111928690224886,
|
| 1065 |
+
"num_tokens": 8578431.0,
|
| 1066 |
+
"step": 880
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"entropy": 1.8877504222095012,
|
| 1070 |
+
"epoch": 0.712,
|
| 1071 |
+
"grad_norm": 0.10791015625,
|
| 1072 |
+
"learning_rate": 1.7780000000000003e-05,
|
| 1073 |
+
"loss": 11.3877,
|
| 1074 |
+
"mean_token_accuracy": 0.1602990841027349,
|
| 1075 |
+
"num_tokens": 8679830.0,
|
| 1076 |
+
"step": 890
|
| 1077 |
+
},
|
| 1078 |
+
{
|
| 1079 |
+
"entropy": 1.8855501756072044,
|
| 1080 |
+
"epoch": 0.72,
|
| 1081 |
+
"grad_norm": 0.11279296875,
|
| 1082 |
+
"learning_rate": 1.798e-05,
|
| 1083 |
+
"loss": 11.5192,
|
| 1084 |
+
"mean_token_accuracy": 0.1597036702558398,
|
| 1085 |
+
"num_tokens": 8781342.0,
|
| 1086 |
+
"step": 900
|
| 1087 |
+
},
|
| 1088 |
+
{
|
| 1089 |
+
"epoch": 0.72,
|
| 1090 |
+
"eval_coding_entropy": 1.000721924304962,
|
| 1091 |
+
"eval_coding_loss": 8.267828941345215,
|
| 1092 |
+
"eval_coding_mean_token_accuracy": 0.2908177390098572,
|
| 1093 |
+
"eval_coding_num_tokens": 8781342.0,
|
| 1094 |
+
"eval_coding_runtime": 92.7951,
|
| 1095 |
+
"eval_coding_samples_per_second": 5.388,
|
| 1096 |
+
"eval_coding_steps_per_second": 2.694,
|
| 1097 |
+
"step": 900
|
| 1098 |
+
},
|
| 1099 |
+
{
|
| 1100 |
+
"epoch": 0.72,
|
| 1101 |
+
"eval_biology_entropy": 1.8729813146591185,
|
| 1102 |
+
"eval_biology_loss": 11.396076202392578,
|
| 1103 |
+
"eval_biology_mean_token_accuracy": 0.1593981314599514,
|
| 1104 |
+
"eval_biology_num_tokens": 8781342.0,
|
| 1105 |
+
"eval_biology_runtime": 40.8386,
|
| 1106 |
+
"eval_biology_samples_per_second": 12.243,
|
| 1107 |
+
"eval_biology_steps_per_second": 6.122,
|
| 1108 |
+
"step": 900
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"entropy": 1.8865461751818657,
|
| 1112 |
+
"epoch": 0.728,
|
| 1113 |
+
"grad_norm": 0.1083984375,
|
| 1114 |
+
"learning_rate": 1.8180000000000002e-05,
|
| 1115 |
+
"loss": 11.4372,
|
| 1116 |
+
"mean_token_accuracy": 0.15840516053140163,
|
| 1117 |
+
"num_tokens": 8876240.0,
|
| 1118 |
+
"step": 910
|
| 1119 |
+
},
|
| 1120 |
+
{
|
| 1121 |
+
"entropy": 1.8957439251244068,
|
| 1122 |
+
"epoch": 0.736,
|
| 1123 |
+
"grad_norm": 0.1201171875,
|
| 1124 |
+
"learning_rate": 1.8380000000000004e-05,
|
| 1125 |
+
"loss": 11.4042,
|
| 1126 |
+
"mean_token_accuracy": 0.16179822930134832,
|
| 1127 |
+
"num_tokens": 8977918.0,
|
| 1128 |
+
"step": 920
|
| 1129 |
+
},
|
| 1130 |
+
{
|
| 1131 |
+
"entropy": 1.9178364366292953,
|
| 1132 |
+
"epoch": 0.744,
|
| 1133 |
+
"grad_norm": 0.11279296875,
|
| 1134 |
+
"learning_rate": 1.858e-05,
|
| 1135 |
+
"loss": 11.3294,
|
| 1136 |
+
"mean_token_accuracy": 0.15907879420556129,
|
| 1137 |
+
"num_tokens": 9073936.0,
|
| 1138 |
+
"step": 930
|
| 1139 |
+
},
|
| 1140 |
+
{
|
| 1141 |
+
"entropy": 1.8959111988544464,
|
| 1142 |
+
"epoch": 0.752,
|
| 1143 |
+
"grad_norm": 0.11328125,
|
| 1144 |
+
"learning_rate": 1.878e-05,
|
| 1145 |
+
"loss": 11.5083,
|
| 1146 |
+
"mean_token_accuracy": 0.1573775229975581,
|
| 1147 |
+
"num_tokens": 9169322.0,
|
| 1148 |
+
"step": 940
|
| 1149 |
+
},
|
| 1150 |
+
{
|
| 1151 |
+
"entropy": 1.9043195970356463,
|
| 1152 |
+
"epoch": 0.76,
|
| 1153 |
+
"grad_norm": 0.10595703125,
|
| 1154 |
+
"learning_rate": 1.898e-05,
|
| 1155 |
+
"loss": 11.4335,
|
| 1156 |
+
"mean_token_accuracy": 0.15969336559064687,
|
| 1157 |
+
"num_tokens": 9267416.0,
|
| 1158 |
+
"step": 950
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"entropy": 1.8812848784029483,
|
| 1162 |
+
"epoch": 0.768,
|
| 1163 |
+
"grad_norm": 0.1044921875,
|
| 1164 |
+
"learning_rate": 1.918e-05,
|
| 1165 |
+
"loss": 11.4766,
|
| 1166 |
+
"mean_token_accuracy": 0.16011672262102367,
|
| 1167 |
+
"num_tokens": 9368141.0,
|
| 1168 |
+
"step": 960
|
| 1169 |
+
},
|
| 1170 |
+
{
|
| 1171 |
+
"entropy": 1.9347192905843258,
|
| 1172 |
+
"epoch": 0.776,
|
| 1173 |
+
"grad_norm": 0.1171875,
|
| 1174 |
+
"learning_rate": 1.938e-05,
|
| 1175 |
+
"loss": 11.4781,
|
| 1176 |
+
"mean_token_accuracy": 0.15778247057460248,
|
| 1177 |
+
"num_tokens": 9463691.0,
|
| 1178 |
+
"step": 970
|
| 1179 |
+
},
|
| 1180 |
+
{
|
| 1181 |
+
"entropy": 1.8791780702769756,
|
| 1182 |
+
"epoch": 0.784,
|
| 1183 |
+
"grad_norm": 0.11376953125,
|
| 1184 |
+
"learning_rate": 1.9580000000000002e-05,
|
| 1185 |
+
"loss": 11.3971,
|
| 1186 |
+
"mean_token_accuracy": 0.16152906292118133,
|
| 1187 |
+
"num_tokens": 9565236.0,
|
| 1188 |
+
"step": 980
|
| 1189 |
+
},
|
| 1190 |
+
{
|
| 1191 |
+
"entropy": 1.9060623526573182,
|
| 1192 |
+
"epoch": 0.792,
|
| 1193 |
+
"grad_norm": 0.11474609375,
|
| 1194 |
+
"learning_rate": 1.978e-05,
|
| 1195 |
+
"loss": 11.3989,
|
| 1196 |
+
"mean_token_accuracy": 0.15776223079301416,
|
| 1197 |
+
"num_tokens": 9664805.0,
|
| 1198 |
+
"step": 990
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"entropy": 1.9234035909175873,
|
| 1202 |
+
"epoch": 0.8,
|
| 1203 |
+
"grad_norm": 0.109375,
|
| 1204 |
+
"learning_rate": 1.9980000000000002e-05,
|
| 1205 |
+
"loss": 11.363,
|
| 1206 |
+
"mean_token_accuracy": 0.15743429348804056,
|
| 1207 |
+
"num_tokens": 9761227.0,
|
| 1208 |
+
"step": 1000
|
| 1209 |
+
},
|
| 1210 |
+
{
|
| 1211 |
+
"epoch": 0.8,
|
| 1212 |
+
"eval_coding_entropy": 1.000721924304962,
|
| 1213 |
+
"eval_coding_loss": 8.267828941345215,
|
| 1214 |
+
"eval_coding_mean_token_accuracy": 0.2908177390098572,
|
| 1215 |
+
"eval_coding_num_tokens": 9761227.0,
|
| 1216 |
+
"eval_coding_runtime": 92.8952,
|
| 1217 |
+
"eval_coding_samples_per_second": 5.382,
|
| 1218 |
+
"eval_coding_steps_per_second": 2.691,
|
| 1219 |
+
"step": 1000
|
| 1220 |
+
},
|
| 1221 |
+
{
|
| 1222 |
+
"epoch": 0.8,
|
| 1223 |
+
"eval_biology_entropy": 1.8729813146591185,
|
| 1224 |
+
"eval_biology_loss": 11.396076202392578,
|
| 1225 |
+
"eval_biology_mean_token_accuracy": 0.1593981314599514,
|
| 1226 |
+
"eval_biology_num_tokens": 9761227.0,
|
| 1227 |
+
"eval_biology_runtime": 40.8879,
|
| 1228 |
+
"eval_biology_samples_per_second": 12.229,
|
| 1229 |
+
"eval_biology_steps_per_second": 6.114,
|
| 1230 |
+
"step": 1000
|
| 1231 |
+
}
|
| 1232 |
+
],
|
| 1233 |
+
"logging_steps": 10,
|
| 1234 |
+
"max_steps": 10000,
|
| 1235 |
+
"num_input_tokens_seen": 0,
|
| 1236 |
+
"num_train_epochs": 8,
|
| 1237 |
+
"save_steps": 500,
|
| 1238 |
+
"stateful_callbacks": {
|
| 1239 |
+
"TrainerControl": {
|
| 1240 |
+
"args": {
|
| 1241 |
+
"should_epoch_stop": false,
|
| 1242 |
+
"should_evaluate": false,
|
| 1243 |
+
"should_log": false,
|
| 1244 |
+
"should_save": true,
|
| 1245 |
+
"should_training_stop": false
|
| 1246 |
+
},
|
| 1247 |
+
"attributes": {}
|
| 1248 |
+
}
|
| 1249 |
+
},
|
| 1250 |
+
"total_flos": 8.372499771845745e+17,
|
| 1251 |
+
"train_batch_size": 2,
|
| 1252 |
+
"trial_name": null,
|
| 1253 |
+
"trial_params": null
|
| 1254 |
+
}
|
checkpoint-1000/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6cf30dd8c29e5358e9f34b5ea066dcaeb173898ab05b9087697aafc563ccddea
|
| 3 |
+
size 6481
|