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 +1144 -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:4bd9340bc368427bcc805e329f32ec7f6a73ab12274d00a8b9c03d49fe0853d0
|
| 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:d80ec30fa09df9cb78149b3af4da5e7f22bbe89087198871d4f36c70903e30a6
|
| 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:91861e673783103b21a79d949ed9e8491382c01c03a0dfac6dac094ef797dcca
|
| 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:c6bf96921d4da8b61663178a411f06e7fa998416e8e1f6df81ce9d5b5c397b95
|
| 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,1144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.7797930343829975,
|
| 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": 2.4441180236637594,
|
| 14 |
+
"epoch": 0.017803493935684877,
|
| 15 |
+
"grad_norm": 0.0079345703125,
|
| 16 |
+
"learning_rate": 1.8e-07,
|
| 17 |
+
"loss": 3.382,
|
| 18 |
+
"mean_token_accuracy": 0.4423037525266409,
|
| 19 |
+
"num_tokens": 257189.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 2.45082361549139,
|
| 24 |
+
"epoch": 0.035606987871369754,
|
| 25 |
+
"grad_norm": 0.0086669921875,
|
| 26 |
+
"learning_rate": 3.8e-07,
|
| 27 |
+
"loss": 3.375,
|
| 28 |
+
"mean_token_accuracy": 0.4396079422906041,
|
| 29 |
+
"num_tokens": 528285.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 2.461306857317686,
|
| 34 |
+
"epoch": 0.053410481807054634,
|
| 35 |
+
"grad_norm": 0.00860595703125,
|
| 36 |
+
"learning_rate": 5.800000000000001e-07,
|
| 37 |
+
"loss": 3.3839,
|
| 38 |
+
"mean_token_accuracy": 0.43654753603041174,
|
| 39 |
+
"num_tokens": 801635.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 2.486989914625883,
|
| 44 |
+
"epoch": 0.07121397574273951,
|
| 45 |
+
"grad_norm": 0.00860595703125,
|
| 46 |
+
"learning_rate": 7.8e-07,
|
| 47 |
+
"loss": 3.4182,
|
| 48 |
+
"mean_token_accuracy": 0.435793649405241,
|
| 49 |
+
"num_tokens": 1060812.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 2.4777335457503797,
|
| 54 |
+
"epoch": 0.08901746967842439,
|
| 55 |
+
"grad_norm": 0.007049560546875,
|
| 56 |
+
"learning_rate": 9.800000000000001e-07,
|
| 57 |
+
"loss": 3.407,
|
| 58 |
+
"mean_token_accuracy": 0.4357369150966406,
|
| 59 |
+
"num_tokens": 1327380.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 2.478399809449911,
|
| 64 |
+
"epoch": 0.10682096361410927,
|
| 65 |
+
"grad_norm": 0.00726318359375,
|
| 66 |
+
"learning_rate": 1.1800000000000001e-06,
|
| 67 |
+
"loss": 3.4405,
|
| 68 |
+
"mean_token_accuracy": 0.43458456825464964,
|
| 69 |
+
"num_tokens": 1597405.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 2.5134010180830955,
|
| 74 |
+
"epoch": 0.12462445754979415,
|
| 75 |
+
"grad_norm": 0.006683349609375,
|
| 76 |
+
"learning_rate": 1.3800000000000001e-06,
|
| 77 |
+
"loss": 3.4613,
|
| 78 |
+
"mean_token_accuracy": 0.4291722310706973,
|
| 79 |
+
"num_tokens": 1859684.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 2.5495446130633352,
|
| 84 |
+
"epoch": 0.14242795148547902,
|
| 85 |
+
"grad_norm": 0.00787353515625,
|
| 86 |
+
"learning_rate": 1.5800000000000001e-06,
|
| 87 |
+
"loss": 3.5072,
|
| 88 |
+
"mean_token_accuracy": 0.42735045179724696,
|
| 89 |
+
"num_tokens": 2118068.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 2.4757557071745397,
|
| 94 |
+
"epoch": 0.1602314454211639,
|
| 95 |
+
"grad_norm": 0.007659912109375,
|
| 96 |
+
"learning_rate": 1.7800000000000001e-06,
|
| 97 |
+
"loss": 3.4228,
|
| 98 |
+
"mean_token_accuracy": 0.43469055872410534,
|
| 99 |
+
"num_tokens": 2388824.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 2.5207040145993234,
|
| 104 |
+
"epoch": 0.17803493935684878,
|
| 105 |
+
"grad_norm": 0.00994873046875,
|
| 106 |
+
"learning_rate": 1.98e-06,
|
| 107 |
+
"loss": 3.506,
|
| 108 |
+
"mean_token_accuracy": 0.4275117186829448,
|
| 109 |
+
"num_tokens": 2644330.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.17803493935684878,
|
| 114 |
+
"eval_chemistry_entropy": 2.4951189584732054,
|
| 115 |
+
"eval_chemistry_loss": 3.512981414794922,
|
| 116 |
+
"eval_chemistry_mean_token_accuracy": 0.4329572098255157,
|
| 117 |
+
"eval_chemistry_num_tokens": 2644330.0,
|
| 118 |
+
"eval_chemistry_runtime": 42.5715,
|
| 119 |
+
"eval_chemistry_samples_per_second": 11.745,
|
| 120 |
+
"eval_chemistry_steps_per_second": 2.936,
|
| 121 |
+
"step": 100
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"entropy": 2.460470324009657,
|
| 125 |
+
"epoch": 0.19583843329253367,
|
| 126 |
+
"grad_norm": 0.0084228515625,
|
| 127 |
+
"learning_rate": 2.1800000000000003e-06,
|
| 128 |
+
"loss": 3.3945,
|
| 129 |
+
"mean_token_accuracy": 0.4391466261819005,
|
| 130 |
+
"num_tokens": 2913700.0,
|
| 131 |
+
"step": 110
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"entropy": 2.478592600673437,
|
| 135 |
+
"epoch": 0.21364192722821854,
|
| 136 |
+
"grad_norm": 0.006866455078125,
|
| 137 |
+
"learning_rate": 2.38e-06,
|
| 138 |
+
"loss": 3.3703,
|
| 139 |
+
"mean_token_accuracy": 0.4405368799343705,
|
| 140 |
+
"num_tokens": 3185255.0,
|
| 141 |
+
"step": 120
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"entropy": 2.4654680602252483,
|
| 145 |
+
"epoch": 0.2314454211639034,
|
| 146 |
+
"grad_norm": 0.00994873046875,
|
| 147 |
+
"learning_rate": 2.5800000000000003e-06,
|
| 148 |
+
"loss": 3.3981,
|
| 149 |
+
"mean_token_accuracy": 0.43972534593194723,
|
| 150 |
+
"num_tokens": 3454750.0,
|
| 151 |
+
"step": 130
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"entropy": 2.5018775165081024,
|
| 155 |
+
"epoch": 0.2492489150995883,
|
| 156 |
+
"grad_norm": 0.0091552734375,
|
| 157 |
+
"learning_rate": 2.7800000000000005e-06,
|
| 158 |
+
"loss": 3.4682,
|
| 159 |
+
"mean_token_accuracy": 0.4316142167896032,
|
| 160 |
+
"num_tokens": 3719113.0,
|
| 161 |
+
"step": 140
|
| 162 |
+
},
|
| 163 |
+
{
|
| 164 |
+
"entropy": 2.568158584088087,
|
| 165 |
+
"epoch": 0.26705240903527316,
|
| 166 |
+
"grad_norm": 0.007659912109375,
|
| 167 |
+
"learning_rate": 2.9800000000000003e-06,
|
| 168 |
+
"loss": 3.5044,
|
| 169 |
+
"mean_token_accuracy": 0.4264186339452863,
|
| 170 |
+
"num_tokens": 3990505.0,
|
| 171 |
+
"step": 150
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"entropy": 2.420287236571312,
|
| 175 |
+
"epoch": 0.28485590297095803,
|
| 176 |
+
"grad_norm": 0.007415771484375,
|
| 177 |
+
"learning_rate": 3.1800000000000005e-06,
|
| 178 |
+
"loss": 3.3513,
|
| 179 |
+
"mean_token_accuracy": 0.44414950646460055,
|
| 180 |
+
"num_tokens": 4267403.0,
|
| 181 |
+
"step": 160
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"entropy": 2.4532286070287226,
|
| 185 |
+
"epoch": 0.30265939690664295,
|
| 186 |
+
"grad_norm": 0.0079345703125,
|
| 187 |
+
"learning_rate": 3.3800000000000007e-06,
|
| 188 |
+
"loss": 3.3478,
|
| 189 |
+
"mean_token_accuracy": 0.4404185781255364,
|
| 190 |
+
"num_tokens": 4535458.0,
|
| 191 |
+
"step": 170
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"entropy": 2.4985749416053293,
|
| 195 |
+
"epoch": 0.3204628908423278,
|
| 196 |
+
"grad_norm": 0.007720947265625,
|
| 197 |
+
"learning_rate": 3.58e-06,
|
| 198 |
+
"loss": 3.4363,
|
| 199 |
+
"mean_token_accuracy": 0.4365795683115721,
|
| 200 |
+
"num_tokens": 4796815.0,
|
| 201 |
+
"step": 180
|
| 202 |
+
},
|
| 203 |
+
{
|
| 204 |
+
"entropy": 2.4519996128976347,
|
| 205 |
+
"epoch": 0.3382663847780127,
|
| 206 |
+
"grad_norm": 0.00701904296875,
|
| 207 |
+
"learning_rate": 3.7800000000000002e-06,
|
| 208 |
+
"loss": 3.3977,
|
| 209 |
+
"mean_token_accuracy": 0.440047624707222,
|
| 210 |
+
"num_tokens": 5066948.0,
|
| 211 |
+
"step": 190
|
| 212 |
+
},
|
| 213 |
+
{
|
| 214 |
+
"entropy": 2.521295293420553,
|
| 215 |
+
"epoch": 0.35606987871369755,
|
| 216 |
+
"grad_norm": 0.010009765625,
|
| 217 |
+
"learning_rate": 3.980000000000001e-06,
|
| 218 |
+
"loss": 3.4496,
|
| 219 |
+
"mean_token_accuracy": 0.4322214875370264,
|
| 220 |
+
"num_tokens": 5324751.0,
|
| 221 |
+
"step": 200
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"epoch": 0.35606987871369755,
|
| 225 |
+
"eval_chemistry_entropy": 2.4951189584732054,
|
| 226 |
+
"eval_chemistry_loss": 3.512981414794922,
|
| 227 |
+
"eval_chemistry_mean_token_accuracy": 0.4329572098255157,
|
| 228 |
+
"eval_chemistry_num_tokens": 5324751.0,
|
| 229 |
+
"eval_chemistry_runtime": 42.5086,
|
| 230 |
+
"eval_chemistry_samples_per_second": 11.762,
|
| 231 |
+
"eval_chemistry_steps_per_second": 2.941,
|
| 232 |
+
"step": 200
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"entropy": 2.44460117071867,
|
| 236 |
+
"epoch": 0.3738733726493824,
|
| 237 |
+
"grad_norm": 0.00732421875,
|
| 238 |
+
"learning_rate": 4.18e-06,
|
| 239 |
+
"loss": 3.3862,
|
| 240 |
+
"mean_token_accuracy": 0.4415476618334651,
|
| 241 |
+
"num_tokens": 5585508.0,
|
| 242 |
+
"step": 210
|
| 243 |
+
},
|
| 244 |
+
{
|
| 245 |
+
"entropy": 2.480318387597799,
|
| 246 |
+
"epoch": 0.39167686658506734,
|
| 247 |
+
"grad_norm": 0.006591796875,
|
| 248 |
+
"learning_rate": 4.38e-06,
|
| 249 |
+
"loss": 3.4199,
|
| 250 |
+
"mean_token_accuracy": 0.43676935136318207,
|
| 251 |
+
"num_tokens": 5848889.0,
|
| 252 |
+
"step": 220
|
| 253 |
+
},
|
| 254 |
+
{
|
| 255 |
+
"entropy": 2.4665837228298186,
|
| 256 |
+
"epoch": 0.4094803605207522,
|
| 257 |
+
"grad_norm": 0.007049560546875,
|
| 258 |
+
"learning_rate": 4.58e-06,
|
| 259 |
+
"loss": 3.399,
|
| 260 |
+
"mean_token_accuracy": 0.4371540261432528,
|
| 261 |
+
"num_tokens": 6114855.0,
|
| 262 |
+
"step": 230
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"entropy": 2.4934676766395567,
|
| 266 |
+
"epoch": 0.4272838544564371,
|
| 267 |
+
"grad_norm": 0.00787353515625,
|
| 268 |
+
"learning_rate": 4.78e-06,
|
| 269 |
+
"loss": 3.392,
|
| 270 |
+
"mean_token_accuracy": 0.4352115549147129,
|
| 271 |
+
"num_tokens": 6378152.0,
|
| 272 |
+
"step": 240
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"entropy": 2.510968402773142,
|
| 276 |
+
"epoch": 0.44508734839212194,
|
| 277 |
+
"grad_norm": 0.00811767578125,
|
| 278 |
+
"learning_rate": 4.980000000000001e-06,
|
| 279 |
+
"loss": 3.4512,
|
| 280 |
+
"mean_token_accuracy": 0.43123594429343937,
|
| 281 |
+
"num_tokens": 6637273.0,
|
| 282 |
+
"step": 250
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"entropy": 2.459284470230341,
|
| 286 |
+
"epoch": 0.4628908423278068,
|
| 287 |
+
"grad_norm": 0.0081787109375,
|
| 288 |
+
"learning_rate": 5.18e-06,
|
| 289 |
+
"loss": 3.4105,
|
| 290 |
+
"mean_token_accuracy": 0.43572237603366376,
|
| 291 |
+
"num_tokens": 6896684.0,
|
| 292 |
+
"step": 260
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"entropy": 2.4737772688269617,
|
| 296 |
+
"epoch": 0.48069433626349173,
|
| 297 |
+
"grad_norm": 0.01324462890625,
|
| 298 |
+
"learning_rate": 5.380000000000001e-06,
|
| 299 |
+
"loss": 3.4275,
|
| 300 |
+
"mean_token_accuracy": 0.4344434389844537,
|
| 301 |
+
"num_tokens": 7166608.0,
|
| 302 |
+
"step": 270
|
| 303 |
+
},
|
| 304 |
+
{
|
| 305 |
+
"entropy": 2.393792650848627,
|
| 306 |
+
"epoch": 0.4984978301991766,
|
| 307 |
+
"grad_norm": 0.00714111328125,
|
| 308 |
+
"learning_rate": 5.580000000000001e-06,
|
| 309 |
+
"loss": 3.3174,
|
| 310 |
+
"mean_token_accuracy": 0.445861529558897,
|
| 311 |
+
"num_tokens": 7444923.0,
|
| 312 |
+
"step": 280
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"entropy": 2.4808071456849574,
|
| 316 |
+
"epoch": 0.5163013241348615,
|
| 317 |
+
"grad_norm": 0.0125732421875,
|
| 318 |
+
"learning_rate": 5.78e-06,
|
| 319 |
+
"loss": 3.4216,
|
| 320 |
+
"mean_token_accuracy": 0.4335135340690613,
|
| 321 |
+
"num_tokens": 7706502.0,
|
| 322 |
+
"step": 290
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"entropy": 2.4993100173771383,
|
| 326 |
+
"epoch": 0.5341048180705463,
|
| 327 |
+
"grad_norm": 0.01153564453125,
|
| 328 |
+
"learning_rate": 5.98e-06,
|
| 329 |
+
"loss": 3.4677,
|
| 330 |
+
"mean_token_accuracy": 0.43226035628467796,
|
| 331 |
+
"num_tokens": 7969704.0,
|
| 332 |
+
"step": 300
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.5341048180705463,
|
| 336 |
+
"eval_chemistry_entropy": 2.4951189584732054,
|
| 337 |
+
"eval_chemistry_loss": 3.512981414794922,
|
| 338 |
+
"eval_chemistry_mean_token_accuracy": 0.4329572098255157,
|
| 339 |
+
"eval_chemistry_num_tokens": 7969704.0,
|
| 340 |
+
"eval_chemistry_runtime": 42.3808,
|
| 341 |
+
"eval_chemistry_samples_per_second": 11.798,
|
| 342 |
+
"eval_chemistry_steps_per_second": 2.949,
|
| 343 |
+
"step": 300
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"entropy": 2.49663657695055,
|
| 347 |
+
"epoch": 0.5519083120062312,
|
| 348 |
+
"grad_norm": 0.0101318359375,
|
| 349 |
+
"learning_rate": 6.18e-06,
|
| 350 |
+
"loss": 3.452,
|
| 351 |
+
"mean_token_accuracy": 0.4326026676222682,
|
| 352 |
+
"num_tokens": 8242162.0,
|
| 353 |
+
"step": 310
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"entropy": 2.491827418655157,
|
| 357 |
+
"epoch": 0.5697118059419161,
|
| 358 |
+
"grad_norm": 0.007476806640625,
|
| 359 |
+
"learning_rate": 6.380000000000001e-06,
|
| 360 |
+
"loss": 3.4701,
|
| 361 |
+
"mean_token_accuracy": 0.4347437607124448,
|
| 362 |
+
"num_tokens": 8497852.0,
|
| 363 |
+
"step": 320
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"entropy": 2.526278664171696,
|
| 367 |
+
"epoch": 0.587515299877601,
|
| 368 |
+
"grad_norm": 0.00946044921875,
|
| 369 |
+
"learning_rate": 6.5800000000000005e-06,
|
| 370 |
+
"loss": 3.504,
|
| 371 |
+
"mean_token_accuracy": 0.4276865454390645,
|
| 372 |
+
"num_tokens": 8757753.0,
|
| 373 |
+
"step": 330
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"entropy": 2.4302435807883738,
|
| 377 |
+
"epoch": 0.6053187938132859,
|
| 378 |
+
"grad_norm": 0.0189208984375,
|
| 379 |
+
"learning_rate": 6.780000000000001e-06,
|
| 380 |
+
"loss": 3.3655,
|
| 381 |
+
"mean_token_accuracy": 0.4372914243489504,
|
| 382 |
+
"num_tokens": 9024677.0,
|
| 383 |
+
"step": 340
|
| 384 |
+
},
|
| 385 |
+
{
|
| 386 |
+
"entropy": 2.4870374642312525,
|
| 387 |
+
"epoch": 0.6231222877489707,
|
| 388 |
+
"grad_norm": 0.00750732421875,
|
| 389 |
+
"learning_rate": 6.98e-06,
|
| 390 |
+
"loss": 3.4166,
|
| 391 |
+
"mean_token_accuracy": 0.4357576759532094,
|
| 392 |
+
"num_tokens": 9291760.0,
|
| 393 |
+
"step": 350
|
| 394 |
+
},
|
| 395 |
+
{
|
| 396 |
+
"entropy": 2.440358117222786,
|
| 397 |
+
"epoch": 0.6409257816846556,
|
| 398 |
+
"grad_norm": 0.007415771484375,
|
| 399 |
+
"learning_rate": 7.180000000000001e-06,
|
| 400 |
+
"loss": 3.3708,
|
| 401 |
+
"mean_token_accuracy": 0.43819774594157934,
|
| 402 |
+
"num_tokens": 9561091.0,
|
| 403 |
+
"step": 360
|
| 404 |
+
},
|
| 405 |
+
{
|
| 406 |
+
"entropy": 2.4518581442534924,
|
| 407 |
+
"epoch": 0.6587292756203404,
|
| 408 |
+
"grad_norm": 0.01177978515625,
|
| 409 |
+
"learning_rate": 7.3800000000000005e-06,
|
| 410 |
+
"loss": 3.39,
|
| 411 |
+
"mean_token_accuracy": 0.4373545182868838,
|
| 412 |
+
"num_tokens": 9827272.0,
|
| 413 |
+
"step": 370
|
| 414 |
+
},
|
| 415 |
+
{
|
| 416 |
+
"entropy": 2.4458557978272437,
|
| 417 |
+
"epoch": 0.6765327695560254,
|
| 418 |
+
"grad_norm": 0.01019287109375,
|
| 419 |
+
"learning_rate": 7.58e-06,
|
| 420 |
+
"loss": 3.3803,
|
| 421 |
+
"mean_token_accuracy": 0.44243213571608064,
|
| 422 |
+
"num_tokens": 10096065.0,
|
| 423 |
+
"step": 380
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"entropy": 2.457463264465332,
|
| 427 |
+
"epoch": 0.6943362634917103,
|
| 428 |
+
"grad_norm": 0.00775146484375,
|
| 429 |
+
"learning_rate": 7.78e-06,
|
| 430 |
+
"loss": 3.3973,
|
| 431 |
+
"mean_token_accuracy": 0.43960350602865217,
|
| 432 |
+
"num_tokens": 10364601.0,
|
| 433 |
+
"step": 390
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"entropy": 2.4410374239087105,
|
| 437 |
+
"epoch": 0.7121397574273951,
|
| 438 |
+
"grad_norm": 0.00860595703125,
|
| 439 |
+
"learning_rate": 7.980000000000002e-06,
|
| 440 |
+
"loss": 3.3916,
|
| 441 |
+
"mean_token_accuracy": 0.4379643935710192,
|
| 442 |
+
"num_tokens": 10633325.0,
|
| 443 |
+
"step": 400
|
| 444 |
+
},
|
| 445 |
+
{
|
| 446 |
+
"epoch": 0.7121397574273951,
|
| 447 |
+
"eval_chemistry_entropy": 2.4951189584732054,
|
| 448 |
+
"eval_chemistry_loss": 3.512981414794922,
|
| 449 |
+
"eval_chemistry_mean_token_accuracy": 0.4329572098255157,
|
| 450 |
+
"eval_chemistry_num_tokens": 10633325.0,
|
| 451 |
+
"eval_chemistry_runtime": 42.4526,
|
| 452 |
+
"eval_chemistry_samples_per_second": 11.778,
|
| 453 |
+
"eval_chemistry_steps_per_second": 2.944,
|
| 454 |
+
"step": 400
|
| 455 |
+
},
|
| 456 |
+
{
|
| 457 |
+
"entropy": 2.409457255154848,
|
| 458 |
+
"epoch": 0.72994325136308,
|
| 459 |
+
"grad_norm": 0.0079345703125,
|
| 460 |
+
"learning_rate": 8.18e-06,
|
| 461 |
+
"loss": 3.3536,
|
| 462 |
+
"mean_token_accuracy": 0.4413986885920167,
|
| 463 |
+
"num_tokens": 10897916.0,
|
| 464 |
+
"step": 410
|
| 465 |
+
},
|
| 466 |
+
{
|
| 467 |
+
"entropy": 2.4690888836979865,
|
| 468 |
+
"epoch": 0.7477467452987648,
|
| 469 |
+
"grad_norm": 0.009033203125,
|
| 470 |
+
"learning_rate": 8.380000000000001e-06,
|
| 471 |
+
"loss": 3.4202,
|
| 472 |
+
"mean_token_accuracy": 0.43675678241997956,
|
| 473 |
+
"num_tokens": 11165356.0,
|
| 474 |
+
"step": 420
|
| 475 |
+
},
|
| 476 |
+
{
|
| 477 |
+
"entropy": 2.456707588583231,
|
| 478 |
+
"epoch": 0.7655502392344498,
|
| 479 |
+
"grad_norm": 0.0074462890625,
|
| 480 |
+
"learning_rate": 8.580000000000001e-06,
|
| 481 |
+
"loss": 3.3849,
|
| 482 |
+
"mean_token_accuracy": 0.43797059506177904,
|
| 483 |
+
"num_tokens": 11436799.0,
|
| 484 |
+
"step": 430
|
| 485 |
+
},
|
| 486 |
+
{
|
| 487 |
+
"entropy": 2.481979151070118,
|
| 488 |
+
"epoch": 0.7833537331701347,
|
| 489 |
+
"grad_norm": 0.00927734375,
|
| 490 |
+
"learning_rate": 8.78e-06,
|
| 491 |
+
"loss": 3.3948,
|
| 492 |
+
"mean_token_accuracy": 0.4386452713981271,
|
| 493 |
+
"num_tokens": 11703496.0,
|
| 494 |
+
"step": 440
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"entropy": 2.511328932642937,
|
| 498 |
+
"epoch": 0.8011572271058195,
|
| 499 |
+
"grad_norm": 0.00836181640625,
|
| 500 |
+
"learning_rate": 8.98e-06,
|
| 501 |
+
"loss": 3.4704,
|
| 502 |
+
"mean_token_accuracy": 0.4308528220281005,
|
| 503 |
+
"num_tokens": 11965530.0,
|
| 504 |
+
"step": 450
|
| 505 |
+
},
|
| 506 |
+
{
|
| 507 |
+
"entropy": 2.4488867104053496,
|
| 508 |
+
"epoch": 0.8189607210415044,
|
| 509 |
+
"grad_norm": 0.00897216796875,
|
| 510 |
+
"learning_rate": 9.180000000000002e-06,
|
| 511 |
+
"loss": 3.4121,
|
| 512 |
+
"mean_token_accuracy": 0.43401869516819713,
|
| 513 |
+
"num_tokens": 12224427.0,
|
| 514 |
+
"step": 460
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"entropy": 2.41854225769639,
|
| 518 |
+
"epoch": 0.8367642149771892,
|
| 519 |
+
"grad_norm": 0.01202392578125,
|
| 520 |
+
"learning_rate": 9.38e-06,
|
| 521 |
+
"loss": 3.312,
|
| 522 |
+
"mean_token_accuracy": 0.4470580581575632,
|
| 523 |
+
"num_tokens": 12509124.0,
|
| 524 |
+
"step": 470
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"entropy": 2.4362686768174173,
|
| 528 |
+
"epoch": 0.8545677089128741,
|
| 529 |
+
"grad_norm": 0.007232666015625,
|
| 530 |
+
"learning_rate": 9.58e-06,
|
| 531 |
+
"loss": 3.3794,
|
| 532 |
+
"mean_token_accuracy": 0.4400447830557823,
|
| 533 |
+
"num_tokens": 12778408.0,
|
| 534 |
+
"step": 480
|
| 535 |
+
},
|
| 536 |
+
{
|
| 537 |
+
"entropy": 2.4321289747953414,
|
| 538 |
+
"epoch": 0.8723712028485591,
|
| 539 |
+
"grad_norm": 0.00811767578125,
|
| 540 |
+
"learning_rate": 9.780000000000001e-06,
|
| 541 |
+
"loss": 3.3687,
|
| 542 |
+
"mean_token_accuracy": 0.44097492955625056,
|
| 543 |
+
"num_tokens": 13046473.0,
|
| 544 |
+
"step": 490
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"entropy": 2.4888896882534026,
|
| 548 |
+
"epoch": 0.8901746967842439,
|
| 549 |
+
"grad_norm": 0.007720947265625,
|
| 550 |
+
"learning_rate": 9.980000000000001e-06,
|
| 551 |
+
"loss": 3.4261,
|
| 552 |
+
"mean_token_accuracy": 0.43556336853653194,
|
| 553 |
+
"num_tokens": 13301659.0,
|
| 554 |
+
"step": 500
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"epoch": 0.8901746967842439,
|
| 558 |
+
"eval_chemistry_entropy": 2.4951189584732054,
|
| 559 |
+
"eval_chemistry_loss": 3.512981414794922,
|
| 560 |
+
"eval_chemistry_mean_token_accuracy": 0.4329572098255157,
|
| 561 |
+
"eval_chemistry_num_tokens": 13301659.0,
|
| 562 |
+
"eval_chemistry_runtime": 42.4183,
|
| 563 |
+
"eval_chemistry_samples_per_second": 11.787,
|
| 564 |
+
"eval_chemistry_steps_per_second": 2.947,
|
| 565 |
+
"step": 500
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"entropy": 2.4065550975501537,
|
| 569 |
+
"epoch": 0.9079781907199288,
|
| 570 |
+
"grad_norm": 0.007110595703125,
|
| 571 |
+
"learning_rate": 1.018e-05,
|
| 572 |
+
"loss": 3.3268,
|
| 573 |
+
"mean_token_accuracy": 0.44642978757619856,
|
| 574 |
+
"num_tokens": 13570986.0,
|
| 575 |
+
"step": 510
|
| 576 |
+
},
|
| 577 |
+
{
|
| 578 |
+
"entropy": 2.4483018897473814,
|
| 579 |
+
"epoch": 0.9257816846556136,
|
| 580 |
+
"grad_norm": 0.0087890625,
|
| 581 |
+
"learning_rate": 1.038e-05,
|
| 582 |
+
"loss": 3.4018,
|
| 583 |
+
"mean_token_accuracy": 0.4386210318654776,
|
| 584 |
+
"num_tokens": 13833901.0,
|
| 585 |
+
"step": 520
|
| 586 |
+
},
|
| 587 |
+
{
|
| 588 |
+
"entropy": 2.454428631067276,
|
| 589 |
+
"epoch": 0.9435851785912985,
|
| 590 |
+
"grad_norm": 0.00921630859375,
|
| 591 |
+
"learning_rate": 1.0580000000000002e-05,
|
| 592 |
+
"loss": 3.4197,
|
| 593 |
+
"mean_token_accuracy": 0.43513929657638073,
|
| 594 |
+
"num_tokens": 14093888.0,
|
| 595 |
+
"step": 530
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"entropy": 2.4978294670581818,
|
| 599 |
+
"epoch": 0.9613886725269835,
|
| 600 |
+
"grad_norm": 0.00750732421875,
|
| 601 |
+
"learning_rate": 1.0780000000000002e-05,
|
| 602 |
+
"loss": 3.43,
|
| 603 |
+
"mean_token_accuracy": 0.43464562948793173,
|
| 604 |
+
"num_tokens": 14354918.0,
|
| 605 |
+
"step": 540
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"entropy": 2.46180320456624,
|
| 609 |
+
"epoch": 0.9791921664626683,
|
| 610 |
+
"grad_norm": 0.00811767578125,
|
| 611 |
+
"learning_rate": 1.0980000000000002e-05,
|
| 612 |
+
"loss": 3.4206,
|
| 613 |
+
"mean_token_accuracy": 0.43483266811817883,
|
| 614 |
+
"num_tokens": 14620244.0,
|
| 615 |
+
"step": 550
|
| 616 |
+
},
|
| 617 |
+
{
|
| 618 |
+
"entropy": 2.4592869602143765,
|
| 619 |
+
"epoch": 0.9969956603983532,
|
| 620 |
+
"grad_norm": 0.00787353515625,
|
| 621 |
+
"learning_rate": 1.1180000000000001e-05,
|
| 622 |
+
"loss": 3.4471,
|
| 623 |
+
"mean_token_accuracy": 0.43371057212352754,
|
| 624 |
+
"num_tokens": 14886593.0,
|
| 625 |
+
"step": 560
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"entropy": 2.3787012269420007,
|
| 629 |
+
"epoch": 1.014242795148548,
|
| 630 |
+
"grad_norm": 0.00830078125,
|
| 631 |
+
"learning_rate": 1.138e-05,
|
| 632 |
+
"loss": 3.2918,
|
| 633 |
+
"mean_token_accuracy": 0.44634086931905437,
|
| 634 |
+
"num_tokens": 15146469.0,
|
| 635 |
+
"step": 570
|
| 636 |
+
},
|
| 637 |
+
{
|
| 638 |
+
"entropy": 2.524292258173227,
|
| 639 |
+
"epoch": 1.0320462890842328,
|
| 640 |
+
"grad_norm": 0.0128173828125,
|
| 641 |
+
"learning_rate": 1.1580000000000001e-05,
|
| 642 |
+
"loss": 3.4816,
|
| 643 |
+
"mean_token_accuracy": 0.43193594105541705,
|
| 644 |
+
"num_tokens": 15404569.0,
|
| 645 |
+
"step": 580
|
| 646 |
+
},
|
| 647 |
+
{
|
| 648 |
+
"entropy": 2.4150695733726026,
|
| 649 |
+
"epoch": 1.0498497830199176,
|
| 650 |
+
"grad_norm": 0.00921630859375,
|
| 651 |
+
"learning_rate": 1.178e-05,
|
| 652 |
+
"loss": 3.3678,
|
| 653 |
+
"mean_token_accuracy": 0.4405944043770432,
|
| 654 |
+
"num_tokens": 15681709.0,
|
| 655 |
+
"step": 590
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"entropy": 2.441706320643425,
|
| 659 |
+
"epoch": 1.0676532769556026,
|
| 660 |
+
"grad_norm": 0.007659912109375,
|
| 661 |
+
"learning_rate": 1.198e-05,
|
| 662 |
+
"loss": 3.3742,
|
| 663 |
+
"mean_token_accuracy": 0.4395477233454585,
|
| 664 |
+
"num_tokens": 15949421.0,
|
| 665 |
+
"step": 600
|
| 666 |
+
},
|
| 667 |
+
{
|
| 668 |
+
"epoch": 1.0676532769556026,
|
| 669 |
+
"eval_chemistry_entropy": 2.4951189584732054,
|
| 670 |
+
"eval_chemistry_loss": 3.512981414794922,
|
| 671 |
+
"eval_chemistry_mean_token_accuracy": 0.4329572098255157,
|
| 672 |
+
"eval_chemistry_num_tokens": 15949421.0,
|
| 673 |
+
"eval_chemistry_runtime": 42.5959,
|
| 674 |
+
"eval_chemistry_samples_per_second": 11.738,
|
| 675 |
+
"eval_chemistry_steps_per_second": 2.935,
|
| 676 |
+
"step": 600
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"entropy": 2.4119591929018496,
|
| 680 |
+
"epoch": 1.0854567708912874,
|
| 681 |
+
"grad_norm": 0.0076904296875,
|
| 682 |
+
"learning_rate": 1.218e-05,
|
| 683 |
+
"loss": 3.367,
|
| 684 |
+
"mean_token_accuracy": 0.4415699910372496,
|
| 685 |
+
"num_tokens": 16221916.0,
|
| 686 |
+
"step": 610
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"entropy": 2.51780494004488,
|
| 690 |
+
"epoch": 1.1032602648269723,
|
| 691 |
+
"grad_norm": 0.007537841796875,
|
| 692 |
+
"learning_rate": 1.2380000000000002e-05,
|
| 693 |
+
"loss": 3.4485,
|
| 694 |
+
"mean_token_accuracy": 0.4301307639107108,
|
| 695 |
+
"num_tokens": 16488154.0,
|
| 696 |
+
"step": 620
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"entropy": 2.4647247321903705,
|
| 700 |
+
"epoch": 1.121063758762657,
|
| 701 |
+
"grad_norm": 0.007354736328125,
|
| 702 |
+
"learning_rate": 1.2580000000000002e-05,
|
| 703 |
+
"loss": 3.4027,
|
| 704 |
+
"mean_token_accuracy": 0.4368906727060676,
|
| 705 |
+
"num_tokens": 16756828.0,
|
| 706 |
+
"step": 630
|
| 707 |
+
},
|
| 708 |
+
{
|
| 709 |
+
"entropy": 2.4489255413413047,
|
| 710 |
+
"epoch": 1.138867252698342,
|
| 711 |
+
"grad_norm": 0.00799560546875,
|
| 712 |
+
"learning_rate": 1.2780000000000001e-05,
|
| 713 |
+
"loss": 3.3816,
|
| 714 |
+
"mean_token_accuracy": 0.43627936094999314,
|
| 715 |
+
"num_tokens": 17023681.0,
|
| 716 |
+
"step": 640
|
| 717 |
+
},
|
| 718 |
+
{
|
| 719 |
+
"entropy": 2.4757089667022227,
|
| 720 |
+
"epoch": 1.156670746634027,
|
| 721 |
+
"grad_norm": 0.01190185546875,
|
| 722 |
+
"learning_rate": 1.2980000000000001e-05,
|
| 723 |
+
"loss": 3.4233,
|
| 724 |
+
"mean_token_accuracy": 0.4360200822353363,
|
| 725 |
+
"num_tokens": 17286672.0,
|
| 726 |
+
"step": 650
|
| 727 |
+
},
|
| 728 |
+
{
|
| 729 |
+
"entropy": 2.542103400081396,
|
| 730 |
+
"epoch": 1.1744742405697117,
|
| 731 |
+
"grad_norm": 0.00726318359375,
|
| 732 |
+
"learning_rate": 1.3180000000000001e-05,
|
| 733 |
+
"loss": 3.4708,
|
| 734 |
+
"mean_token_accuracy": 0.42764721568673847,
|
| 735 |
+
"num_tokens": 17551581.0,
|
| 736 |
+
"step": 660
|
| 737 |
+
},
|
| 738 |
+
{
|
| 739 |
+
"entropy": 2.4632993809878827,
|
| 740 |
+
"epoch": 1.1922777345053968,
|
| 741 |
+
"grad_norm": 0.00946044921875,
|
| 742 |
+
"learning_rate": 1.3380000000000002e-05,
|
| 743 |
+
"loss": 3.3879,
|
| 744 |
+
"mean_token_accuracy": 0.43964554853737353,
|
| 745 |
+
"num_tokens": 17821205.0,
|
| 746 |
+
"step": 670
|
| 747 |
+
},
|
| 748 |
+
{
|
| 749 |
+
"entropy": 2.4974757246673107,
|
| 750 |
+
"epoch": 1.2100812284410816,
|
| 751 |
+
"grad_norm": 0.007415771484375,
|
| 752 |
+
"learning_rate": 1.3580000000000002e-05,
|
| 753 |
+
"loss": 3.4339,
|
| 754 |
+
"mean_token_accuracy": 0.4323098760098219,
|
| 755 |
+
"num_tokens": 18087759.0,
|
| 756 |
+
"step": 680
|
| 757 |
+
},
|
| 758 |
+
{
|
| 759 |
+
"entropy": 2.485871135443449,
|
| 760 |
+
"epoch": 1.2278847223767664,
|
| 761 |
+
"grad_norm": 0.0084228515625,
|
| 762 |
+
"learning_rate": 1.378e-05,
|
| 763 |
+
"loss": 3.4259,
|
| 764 |
+
"mean_token_accuracy": 0.4338374109938741,
|
| 765 |
+
"num_tokens": 18355732.0,
|
| 766 |
+
"step": 690
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"entropy": 2.4948798827826977,
|
| 770 |
+
"epoch": 1.2456882163124514,
|
| 771 |
+
"grad_norm": 0.0069580078125,
|
| 772 |
+
"learning_rate": 1.398e-05,
|
| 773 |
+
"loss": 3.4297,
|
| 774 |
+
"mean_token_accuracy": 0.435987046174705,
|
| 775 |
+
"num_tokens": 18626245.0,
|
| 776 |
+
"step": 700
|
| 777 |
+
},
|
| 778 |
+
{
|
| 779 |
+
"epoch": 1.2456882163124514,
|
| 780 |
+
"eval_chemistry_entropy": 2.4951189584732054,
|
| 781 |
+
"eval_chemistry_loss": 3.512981414794922,
|
| 782 |
+
"eval_chemistry_mean_token_accuracy": 0.4329572098255157,
|
| 783 |
+
"eval_chemistry_num_tokens": 18626245.0,
|
| 784 |
+
"eval_chemistry_runtime": 42.5841,
|
| 785 |
+
"eval_chemistry_samples_per_second": 11.741,
|
| 786 |
+
"eval_chemistry_steps_per_second": 2.935,
|
| 787 |
+
"step": 700
|
| 788 |
+
},
|
| 789 |
+
{
|
| 790 |
+
"entropy": 2.408124291151762,
|
| 791 |
+
"epoch": 1.2634917102481362,
|
| 792 |
+
"grad_norm": 0.00927734375,
|
| 793 |
+
"learning_rate": 1.418e-05,
|
| 794 |
+
"loss": 3.3266,
|
| 795 |
+
"mean_token_accuracy": 0.4450059160590172,
|
| 796 |
+
"num_tokens": 18899632.0,
|
| 797 |
+
"step": 710
|
| 798 |
+
},
|
| 799 |
+
{
|
| 800 |
+
"entropy": 2.4984724432229997,
|
| 801 |
+
"epoch": 1.281295204183821,
|
| 802 |
+
"grad_norm": 0.01214599609375,
|
| 803 |
+
"learning_rate": 1.4380000000000001e-05,
|
| 804 |
+
"loss": 3.4488,
|
| 805 |
+
"mean_token_accuracy": 0.4306912997737527,
|
| 806 |
+
"num_tokens": 19173635.0,
|
| 807 |
+
"step": 720
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"entropy": 2.407220109552145,
|
| 811 |
+
"epoch": 1.299098698119506,
|
| 812 |
+
"grad_norm": 0.01129150390625,
|
| 813 |
+
"learning_rate": 1.4580000000000001e-05,
|
| 814 |
+
"loss": 3.3575,
|
| 815 |
+
"mean_token_accuracy": 0.44124190472066405,
|
| 816 |
+
"num_tokens": 19453495.0,
|
| 817 |
+
"step": 730
|
| 818 |
+
},
|
| 819 |
+
{
|
| 820 |
+
"entropy": 2.426318255066872,
|
| 821 |
+
"epoch": 1.3169021920551909,
|
| 822 |
+
"grad_norm": 0.007049560546875,
|
| 823 |
+
"learning_rate": 1.478e-05,
|
| 824 |
+
"loss": 3.366,
|
| 825 |
+
"mean_token_accuracy": 0.43959415052086115,
|
| 826 |
+
"num_tokens": 19719086.0,
|
| 827 |
+
"step": 740
|
| 828 |
+
},
|
| 829 |
+
{
|
| 830 |
+
"entropy": 2.4674886889755725,
|
| 831 |
+
"epoch": 1.3347056859908757,
|
| 832 |
+
"grad_norm": 0.009033203125,
|
| 833 |
+
"learning_rate": 1.498e-05,
|
| 834 |
+
"loss": 3.4065,
|
| 835 |
+
"mean_token_accuracy": 0.4346128342673182,
|
| 836 |
+
"num_tokens": 19981272.0,
|
| 837 |
+
"step": 750
|
| 838 |
+
},
|
| 839 |
+
{
|
| 840 |
+
"entropy": 2.4601897999644278,
|
| 841 |
+
"epoch": 1.3525091799265607,
|
| 842 |
+
"grad_norm": 0.007354736328125,
|
| 843 |
+
"learning_rate": 1.5180000000000002e-05,
|
| 844 |
+
"loss": 3.4277,
|
| 845 |
+
"mean_token_accuracy": 0.43639134224504234,
|
| 846 |
+
"num_tokens": 20243034.0,
|
| 847 |
+
"step": 760
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"entropy": 2.4810195587575437,
|
| 851 |
+
"epoch": 1.3703126738622455,
|
| 852 |
+
"grad_norm": 0.0084228515625,
|
| 853 |
+
"learning_rate": 1.5380000000000002e-05,
|
| 854 |
+
"loss": 3.4245,
|
| 855 |
+
"mean_token_accuracy": 0.43384860958904026,
|
| 856 |
+
"num_tokens": 20509028.0,
|
| 857 |
+
"step": 770
|
| 858 |
+
},
|
| 859 |
+
{
|
| 860 |
+
"entropy": 2.5357875250279904,
|
| 861 |
+
"epoch": 1.3881161677979303,
|
| 862 |
+
"grad_norm": 0.006988525390625,
|
| 863 |
+
"learning_rate": 1.5580000000000003e-05,
|
| 864 |
+
"loss": 3.5276,
|
| 865 |
+
"mean_token_accuracy": 0.42721649557352065,
|
| 866 |
+
"num_tokens": 20762668.0,
|
| 867 |
+
"step": 780
|
| 868 |
+
},
|
| 869 |
+
{
|
| 870 |
+
"entropy": 2.573459583520889,
|
| 871 |
+
"epoch": 1.4059196617336152,
|
| 872 |
+
"grad_norm": 0.00787353515625,
|
| 873 |
+
"learning_rate": 1.578e-05,
|
| 874 |
+
"loss": 3.5041,
|
| 875 |
+
"mean_token_accuracy": 0.42504764050245286,
|
| 876 |
+
"num_tokens": 21025277.0,
|
| 877 |
+
"step": 790
|
| 878 |
+
},
|
| 879 |
+
{
|
| 880 |
+
"entropy": 2.5099629506468775,
|
| 881 |
+
"epoch": 1.4237231556693,
|
| 882 |
+
"grad_norm": 0.0091552734375,
|
| 883 |
+
"learning_rate": 1.5980000000000003e-05,
|
| 884 |
+
"loss": 3.4735,
|
| 885 |
+
"mean_token_accuracy": 0.42990608550608156,
|
| 886 |
+
"num_tokens": 21292320.0,
|
| 887 |
+
"step": 800
|
| 888 |
+
},
|
| 889 |
+
{
|
| 890 |
+
"epoch": 1.4237231556693,
|
| 891 |
+
"eval_chemistry_entropy": 2.4951189584732054,
|
| 892 |
+
"eval_chemistry_loss": 3.512981414794922,
|
| 893 |
+
"eval_chemistry_mean_token_accuracy": 0.4329572098255157,
|
| 894 |
+
"eval_chemistry_num_tokens": 21292320.0,
|
| 895 |
+
"eval_chemistry_runtime": 42.58,
|
| 896 |
+
"eval_chemistry_samples_per_second": 11.743,
|
| 897 |
+
"eval_chemistry_steps_per_second": 2.936,
|
| 898 |
+
"step": 800
|
| 899 |
+
},
|
| 900 |
+
{
|
| 901 |
+
"entropy": 2.5165034629404546,
|
| 902 |
+
"epoch": 1.441526649604985,
|
| 903 |
+
"grad_norm": 0.00732421875,
|
| 904 |
+
"learning_rate": 1.618e-05,
|
| 905 |
+
"loss": 3.4497,
|
| 906 |
+
"mean_token_accuracy": 0.4366149786859751,
|
| 907 |
+
"num_tokens": 21563668.0,
|
| 908 |
+
"step": 810
|
| 909 |
+
},
|
| 910 |
+
{
|
| 911 |
+
"entropy": 2.4973253421485424,
|
| 912 |
+
"epoch": 1.4593301435406698,
|
| 913 |
+
"grad_norm": 0.007232666015625,
|
| 914 |
+
"learning_rate": 1.638e-05,
|
| 915 |
+
"loss": 3.4814,
|
| 916 |
+
"mean_token_accuracy": 0.4312220415100455,
|
| 917 |
+
"num_tokens": 21817298.0,
|
| 918 |
+
"step": 820
|
| 919 |
+
},
|
| 920 |
+
{
|
| 921 |
+
"entropy": 2.52367008626461,
|
| 922 |
+
"epoch": 1.4771336374763546,
|
| 923 |
+
"grad_norm": 0.007598876953125,
|
| 924 |
+
"learning_rate": 1.658e-05,
|
| 925 |
+
"loss": 3.468,
|
| 926 |
+
"mean_token_accuracy": 0.4320263473317027,
|
| 927 |
+
"num_tokens": 22083010.0,
|
| 928 |
+
"step": 830
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"entropy": 2.50519383251667,
|
| 932 |
+
"epoch": 1.4949371314120397,
|
| 933 |
+
"grad_norm": 0.0074462890625,
|
| 934 |
+
"learning_rate": 1.6780000000000002e-05,
|
| 935 |
+
"loss": 3.4575,
|
| 936 |
+
"mean_token_accuracy": 0.4309014746919274,
|
| 937 |
+
"num_tokens": 22350046.0,
|
| 938 |
+
"step": 840
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"entropy": 2.458015527576208,
|
| 942 |
+
"epoch": 1.5127406253477245,
|
| 943 |
+
"grad_norm": 0.0081787109375,
|
| 944 |
+
"learning_rate": 1.698e-05,
|
| 945 |
+
"loss": 3.4087,
|
| 946 |
+
"mean_token_accuracy": 0.4401903055608273,
|
| 947 |
+
"num_tokens": 22615933.0,
|
| 948 |
+
"step": 850
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"entropy": 2.4192430078983307,
|
| 952 |
+
"epoch": 1.5305441192834093,
|
| 953 |
+
"grad_norm": 0.00787353515625,
|
| 954 |
+
"learning_rate": 1.718e-05,
|
| 955 |
+
"loss": 3.3493,
|
| 956 |
+
"mean_token_accuracy": 0.4408345725387335,
|
| 957 |
+
"num_tokens": 22886843.0,
|
| 958 |
+
"step": 860
|
| 959 |
+
},
|
| 960 |
+
{
|
| 961 |
+
"entropy": 2.4866544254124165,
|
| 962 |
+
"epoch": 1.5483476132190943,
|
| 963 |
+
"grad_norm": 0.006927490234375,
|
| 964 |
+
"learning_rate": 1.7380000000000003e-05,
|
| 965 |
+
"loss": 3.4323,
|
| 966 |
+
"mean_token_accuracy": 0.4359192430973053,
|
| 967 |
+
"num_tokens": 23140244.0,
|
| 968 |
+
"step": 870
|
| 969 |
+
},
|
| 970 |
+
{
|
| 971 |
+
"entropy": 2.472956708818674,
|
| 972 |
+
"epoch": 1.5661511071547791,
|
| 973 |
+
"grad_norm": 0.0076904296875,
|
| 974 |
+
"learning_rate": 1.758e-05,
|
| 975 |
+
"loss": 3.4127,
|
| 976 |
+
"mean_token_accuracy": 0.4368757115676999,
|
| 977 |
+
"num_tokens": 23405121.0,
|
| 978 |
+
"step": 880
|
| 979 |
+
},
|
| 980 |
+
{
|
| 981 |
+
"entropy": 2.4871600806713103,
|
| 982 |
+
"epoch": 1.583954601090464,
|
| 983 |
+
"grad_norm": 0.006378173828125,
|
| 984 |
+
"learning_rate": 1.7780000000000003e-05,
|
| 985 |
+
"loss": 3.425,
|
| 986 |
+
"mean_token_accuracy": 0.43275546226650474,
|
| 987 |
+
"num_tokens": 23671826.0,
|
| 988 |
+
"step": 890
|
| 989 |
+
},
|
| 990 |
+
{
|
| 991 |
+
"entropy": 2.5024729229509832,
|
| 992 |
+
"epoch": 1.601758095026149,
|
| 993 |
+
"grad_norm": 0.01068115234375,
|
| 994 |
+
"learning_rate": 1.798e-05,
|
| 995 |
+
"loss": 3.4415,
|
| 996 |
+
"mean_token_accuracy": 0.43367660194635393,
|
| 997 |
+
"num_tokens": 23933374.0,
|
| 998 |
+
"step": 900
|
| 999 |
+
},
|
| 1000 |
+
{
|
| 1001 |
+
"epoch": 1.601758095026149,
|
| 1002 |
+
"eval_chemistry_entropy": 2.4951189584732054,
|
| 1003 |
+
"eval_chemistry_loss": 3.512981414794922,
|
| 1004 |
+
"eval_chemistry_mean_token_accuracy": 0.4329572098255157,
|
| 1005 |
+
"eval_chemistry_num_tokens": 23933374.0,
|
| 1006 |
+
"eval_chemistry_runtime": 42.5199,
|
| 1007 |
+
"eval_chemistry_samples_per_second": 11.759,
|
| 1008 |
+
"eval_chemistry_steps_per_second": 2.94,
|
| 1009 |
+
"step": 900
|
| 1010 |
+
},
|
| 1011 |
+
{
|
| 1012 |
+
"entropy": 2.4241936951875687,
|
| 1013 |
+
"epoch": 1.6195615889618338,
|
| 1014 |
+
"grad_norm": 0.00836181640625,
|
| 1015 |
+
"learning_rate": 1.8180000000000002e-05,
|
| 1016 |
+
"loss": 3.3926,
|
| 1017 |
+
"mean_token_accuracy": 0.4393082341179252,
|
| 1018 |
+
"num_tokens": 24210156.0,
|
| 1019 |
+
"step": 910
|
| 1020 |
+
},
|
| 1021 |
+
{
|
| 1022 |
+
"entropy": 2.501750738918781,
|
| 1023 |
+
"epoch": 1.6373650828975186,
|
| 1024 |
+
"grad_norm": 0.01043701171875,
|
| 1025 |
+
"learning_rate": 1.8380000000000004e-05,
|
| 1026 |
+
"loss": 3.428,
|
| 1027 |
+
"mean_token_accuracy": 0.4345035368576646,
|
| 1028 |
+
"num_tokens": 24462726.0,
|
| 1029 |
+
"step": 920
|
| 1030 |
+
},
|
| 1031 |
+
{
|
| 1032 |
+
"entropy": 2.4093470610678196,
|
| 1033 |
+
"epoch": 1.6551685768332036,
|
| 1034 |
+
"grad_norm": 0.0118408203125,
|
| 1035 |
+
"learning_rate": 1.858e-05,
|
| 1036 |
+
"loss": 3.3407,
|
| 1037 |
+
"mean_token_accuracy": 0.44576158542186023,
|
| 1038 |
+
"num_tokens": 24732815.0,
|
| 1039 |
+
"step": 930
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"entropy": 2.469248706102371,
|
| 1043 |
+
"epoch": 1.6729720707688884,
|
| 1044 |
+
"grad_norm": 0.0128173828125,
|
| 1045 |
+
"learning_rate": 1.878e-05,
|
| 1046 |
+
"loss": 3.3903,
|
| 1047 |
+
"mean_token_accuracy": 0.4362227080389857,
|
| 1048 |
+
"num_tokens": 25002091.0,
|
| 1049 |
+
"step": 940
|
| 1050 |
+
},
|
| 1051 |
+
{
|
| 1052 |
+
"entropy": 2.4393011182546616,
|
| 1053 |
+
"epoch": 1.6907755647045732,
|
| 1054 |
+
"grad_norm": 0.00982666015625,
|
| 1055 |
+
"learning_rate": 1.898e-05,
|
| 1056 |
+
"loss": 3.4097,
|
| 1057 |
+
"mean_token_accuracy": 0.4377862988039851,
|
| 1058 |
+
"num_tokens": 25267949.0,
|
| 1059 |
+
"step": 950
|
| 1060 |
+
},
|
| 1061 |
+
{
|
| 1062 |
+
"entropy": 2.499985621124506,
|
| 1063 |
+
"epoch": 1.7085790586402583,
|
| 1064 |
+
"grad_norm": 0.007110595703125,
|
| 1065 |
+
"learning_rate": 1.918e-05,
|
| 1066 |
+
"loss": 3.4206,
|
| 1067 |
+
"mean_token_accuracy": 0.4386218637228012,
|
| 1068 |
+
"num_tokens": 25525772.0,
|
| 1069 |
+
"step": 960
|
| 1070 |
+
},
|
| 1071 |
+
{
|
| 1072 |
+
"entropy": 2.518709710240364,
|
| 1073 |
+
"epoch": 1.7263825525759429,
|
| 1074 |
+
"grad_norm": 0.015625,
|
| 1075 |
+
"learning_rate": 1.938e-05,
|
| 1076 |
+
"loss": 3.4744,
|
| 1077 |
+
"mean_token_accuracy": 0.4290819203481078,
|
| 1078 |
+
"num_tokens": 25787727.0,
|
| 1079 |
+
"step": 970
|
| 1080 |
+
},
|
| 1081 |
+
{
|
| 1082 |
+
"entropy": 2.434730440378189,
|
| 1083 |
+
"epoch": 1.744186046511628,
|
| 1084 |
+
"grad_norm": 0.007110595703125,
|
| 1085 |
+
"learning_rate": 1.9580000000000002e-05,
|
| 1086 |
+
"loss": 3.3452,
|
| 1087 |
+
"mean_token_accuracy": 0.4429737152531743,
|
| 1088 |
+
"num_tokens": 26058026.0,
|
| 1089 |
+
"step": 980
|
| 1090 |
+
},
|
| 1091 |
+
{
|
| 1092 |
+
"entropy": 2.405204129964113,
|
| 1093 |
+
"epoch": 1.761989540447313,
|
| 1094 |
+
"grad_norm": 0.007659912109375,
|
| 1095 |
+
"learning_rate": 1.978e-05,
|
| 1096 |
+
"loss": 3.3339,
|
| 1097 |
+
"mean_token_accuracy": 0.44453586284071206,
|
| 1098 |
+
"num_tokens": 26326631.0,
|
| 1099 |
+
"step": 990
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"entropy": 2.473785638809204,
|
| 1103 |
+
"epoch": 1.7797930343829975,
|
| 1104 |
+
"grad_norm": 0.008056640625,
|
| 1105 |
+
"learning_rate": 1.9980000000000002e-05,
|
| 1106 |
+
"loss": 3.3982,
|
| 1107 |
+
"mean_token_accuracy": 0.4379414787515998,
|
| 1108 |
+
"num_tokens": 26591735.0,
|
| 1109 |
+
"step": 1000
|
| 1110 |
+
},
|
| 1111 |
+
{
|
| 1112 |
+
"epoch": 1.7797930343829975,
|
| 1113 |
+
"eval_chemistry_entropy": 2.4951189584732054,
|
| 1114 |
+
"eval_chemistry_loss": 3.512981414794922,
|
| 1115 |
+
"eval_chemistry_mean_token_accuracy": 0.4329572098255157,
|
| 1116 |
+
"eval_chemistry_num_tokens": 26591735.0,
|
| 1117 |
+
"eval_chemistry_runtime": 42.6898,
|
| 1118 |
+
"eval_chemistry_samples_per_second": 11.712,
|
| 1119 |
+
"eval_chemistry_steps_per_second": 2.928,
|
| 1120 |
+
"step": 1000
|
| 1121 |
+
}
|
| 1122 |
+
],
|
| 1123 |
+
"logging_steps": 10,
|
| 1124 |
+
"max_steps": 10000,
|
| 1125 |
+
"num_input_tokens_seen": 0,
|
| 1126 |
+
"num_train_epochs": 18,
|
| 1127 |
+
"save_steps": 500,
|
| 1128 |
+
"stateful_callbacks": {
|
| 1129 |
+
"TrainerControl": {
|
| 1130 |
+
"args": {
|
| 1131 |
+
"should_epoch_stop": false,
|
| 1132 |
+
"should_evaluate": false,
|
| 1133 |
+
"should_log": false,
|
| 1134 |
+
"should_save": true,
|
| 1135 |
+
"should_training_stop": false
|
| 1136 |
+
},
|
| 1137 |
+
"attributes": {}
|
| 1138 |
+
}
|
| 1139 |
+
},
|
| 1140 |
+
"total_flos": 2.672881625860089e+18,
|
| 1141 |
+
"train_batch_size": 4,
|
| 1142 |
+
"trial_name": null,
|
| 1143 |
+
"trial_params": null
|
| 1144 |
+
}
|
checkpoint-1000/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c203431b23c0b2024be20ba2c3b8d6912d99b5a0839b2ccb6094a319dbeed0e
|
| 3 |
+
size 6481
|