Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- checkpoint-1500/added_tokens.json +3 -0
- checkpoint-1500/chat_template.jinja +47 -0
- checkpoint-1500/config.json +86 -0
- checkpoint-1500/generation_config.json +12 -0
- checkpoint-1500/model-00001-of-00005.safetensors +3 -0
- checkpoint-1500/model-00002-of-00005.safetensors +3 -0
- checkpoint-1500/model-00003-of-00005.safetensors +3 -0
- checkpoint-1500/model-00004-of-00005.safetensors +3 -0
- checkpoint-1500/model-00005-of-00005.safetensors +3 -0
- checkpoint-1500/model.safetensors.index.json +634 -0
- checkpoint-1500/optimizer.pt +3 -0
- checkpoint-1500/rng_state.pth +3 -0
- checkpoint-1500/scheduler.pt +3 -0
- checkpoint-1500/special_tokens_map.json +33 -0
- checkpoint-1500/tokenizer.json +3 -0
- checkpoint-1500/tokenizer.model +3 -0
- checkpoint-1500/tokenizer_config.json +0 -0
- checkpoint-1500/trainer_state.json +1699 -0
- checkpoint-1500/training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -35,3 +35,4 @@ saved_model/**/* 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
|
|
|
|
|
|
| 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
|
| 38 |
+
checkpoint-1500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
checkpoint-1500/added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<image_soft_token>": 262144
|
| 3 |
+
}
|
checkpoint-1500/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-1500/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-1500/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-1500/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-1500/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-1500/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-1500/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-1500/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-1500/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-1500/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf05c833622814569f76ab59887875cc6f724c722b9f075d3d7e4b135d9edef9
|
| 3 |
+
size 18355
|
checkpoint-1500/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7610f10af744f2895441f2aca56d71350a94d1d448becf2f03f07437fe847e7
|
| 3 |
+
size 14645
|
checkpoint-1500/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb8afd6405fc2f72bcdc3e89147a10597d475bf4457b8f98d9c27aa5442f3ef9
|
| 3 |
+
size 1465
|
checkpoint-1500/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-1500/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
|
| 3 |
+
size 33384568
|
checkpoint-1500/tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
|
| 3 |
+
size 4689074
|
checkpoint-1500/tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1500/trainer_state.json
ADDED
|
@@ -0,0 +1,1699 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.4,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 1500,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 3.6945120811462404,
|
| 14 |
+
"epoch": 0.016,
|
| 15 |
+
"grad_norm": 0.015869140625,
|
| 16 |
+
"learning_rate": 1.8e-07,
|
| 17 |
+
"loss": 5.0851,
|
| 18 |
+
"mean_token_accuracy": 0.2927759636193514,
|
| 19 |
+
"num_tokens": 195524.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 3.7313055276870726,
|
| 24 |
+
"epoch": 0.032,
|
| 25 |
+
"grad_norm": 0.01495361328125,
|
| 26 |
+
"learning_rate": 3.8e-07,
|
| 27 |
+
"loss": 5.0802,
|
| 28 |
+
"mean_token_accuracy": 0.289933389890939,
|
| 29 |
+
"num_tokens": 390903.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 3.705480118095875,
|
| 34 |
+
"epoch": 0.048,
|
| 35 |
+
"grad_norm": 0.0252685546875,
|
| 36 |
+
"learning_rate": 5.800000000000001e-07,
|
| 37 |
+
"loss": 5.0794,
|
| 38 |
+
"mean_token_accuracy": 0.29482015436515213,
|
| 39 |
+
"num_tokens": 589868.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 3.727609448134899,
|
| 44 |
+
"epoch": 0.064,
|
| 45 |
+
"grad_norm": 0.023193359375,
|
| 46 |
+
"learning_rate": 7.8e-07,
|
| 47 |
+
"loss": 5.0815,
|
| 48 |
+
"mean_token_accuracy": 0.29059267388656734,
|
| 49 |
+
"num_tokens": 791190.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 3.7325011074542997,
|
| 54 |
+
"epoch": 0.08,
|
| 55 |
+
"grad_norm": 0.0198974609375,
|
| 56 |
+
"learning_rate": 9.800000000000001e-07,
|
| 57 |
+
"loss": 5.0765,
|
| 58 |
+
"mean_token_accuracy": 0.29154324913397434,
|
| 59 |
+
"num_tokens": 989860.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 3.7289695993065832,
|
| 64 |
+
"epoch": 0.096,
|
| 65 |
+
"grad_norm": 0.015869140625,
|
| 66 |
+
"learning_rate": 1.1800000000000001e-06,
|
| 67 |
+
"loss": 5.084,
|
| 68 |
+
"mean_token_accuracy": 0.2919090397655964,
|
| 69 |
+
"num_tokens": 1181777.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 3.696782369911671,
|
| 74 |
+
"epoch": 0.112,
|
| 75 |
+
"grad_norm": 0.0157470703125,
|
| 76 |
+
"learning_rate": 1.3800000000000001e-06,
|
| 77 |
+
"loss": 5.051,
|
| 78 |
+
"mean_token_accuracy": 0.2921869015321136,
|
| 79 |
+
"num_tokens": 1385513.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 3.7105689987540247,
|
| 84 |
+
"epoch": 0.128,
|
| 85 |
+
"grad_norm": 0.0186767578125,
|
| 86 |
+
"learning_rate": 1.5800000000000001e-06,
|
| 87 |
+
"loss": 5.1046,
|
| 88 |
+
"mean_token_accuracy": 0.2894379127770662,
|
| 89 |
+
"num_tokens": 1582368.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 3.6783719427883623,
|
| 94 |
+
"epoch": 0.144,
|
| 95 |
+
"grad_norm": 0.018798828125,
|
| 96 |
+
"learning_rate": 1.7800000000000001e-06,
|
| 97 |
+
"loss": 5.049,
|
| 98 |
+
"mean_token_accuracy": 0.29489915193989874,
|
| 99 |
+
"num_tokens": 1773764.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 3.7497646793723107,
|
| 104 |
+
"epoch": 0.16,
|
| 105 |
+
"grad_norm": 0.0184326171875,
|
| 106 |
+
"learning_rate": 1.98e-06,
|
| 107 |
+
"loss": 5.1421,
|
| 108 |
+
"mean_token_accuracy": 0.285641394648701,
|
| 109 |
+
"num_tokens": 1970077.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.16,
|
| 114 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 115 |
+
"eval_biology_loss": 5.049773216247559,
|
| 116 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 117 |
+
"eval_biology_num_tokens": 1970077.0,
|
| 118 |
+
"eval_biology_runtime": 48.3951,
|
| 119 |
+
"eval_biology_samples_per_second": 10.332,
|
| 120 |
+
"eval_biology_steps_per_second": 2.583,
|
| 121 |
+
"step": 100
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"entropy": 3.7205758571624754,
|
| 125 |
+
"epoch": 0.176,
|
| 126 |
+
"grad_norm": 0.022216796875,
|
| 127 |
+
"learning_rate": 2.1800000000000003e-06,
|
| 128 |
+
"loss": 5.1124,
|
| 129 |
+
"mean_token_accuracy": 0.2885961330495775,
|
| 130 |
+
"num_tokens": 2168354.0,
|
| 131 |
+
"step": 110
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"entropy": 3.711766928434372,
|
| 135 |
+
"epoch": 0.192,
|
| 136 |
+
"grad_norm": 0.0169677734375,
|
| 137 |
+
"learning_rate": 2.38e-06,
|
| 138 |
+
"loss": 5.091,
|
| 139 |
+
"mean_token_accuracy": 0.29016080107539893,
|
| 140 |
+
"num_tokens": 2365822.0,
|
| 141 |
+
"step": 120
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"entropy": 3.755408400297165,
|
| 145 |
+
"epoch": 0.208,
|
| 146 |
+
"grad_norm": 0.01953125,
|
| 147 |
+
"learning_rate": 2.5800000000000003e-06,
|
| 148 |
+
"loss": 5.1415,
|
| 149 |
+
"mean_token_accuracy": 0.28556298119947315,
|
| 150 |
+
"num_tokens": 2558762.0,
|
| 151 |
+
"step": 130
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"entropy": 3.6979280173778535,
|
| 155 |
+
"epoch": 0.224,
|
| 156 |
+
"grad_norm": 0.013671875,
|
| 157 |
+
"learning_rate": 2.7800000000000005e-06,
|
| 158 |
+
"loss": 5.0488,
|
| 159 |
+
"mean_token_accuracy": 0.2934382151812315,
|
| 160 |
+
"num_tokens": 2755347.0,
|
| 161 |
+
"step": 140
|
| 162 |
+
},
|
| 163 |
+
{
|
| 164 |
+
"entropy": 3.67200947701931,
|
| 165 |
+
"epoch": 0.24,
|
| 166 |
+
"grad_norm": 0.0220947265625,
|
| 167 |
+
"learning_rate": 2.9800000000000003e-06,
|
| 168 |
+
"loss": 5.0267,
|
| 169 |
+
"mean_token_accuracy": 0.29687621584162116,
|
| 170 |
+
"num_tokens": 2947346.0,
|
| 171 |
+
"step": 150
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"entropy": 3.7363524213433266,
|
| 175 |
+
"epoch": 0.256,
|
| 176 |
+
"grad_norm": 0.0224609375,
|
| 177 |
+
"learning_rate": 3.1800000000000005e-06,
|
| 178 |
+
"loss": 5.1623,
|
| 179 |
+
"mean_token_accuracy": 0.28543900661170485,
|
| 180 |
+
"num_tokens": 3139957.0,
|
| 181 |
+
"step": 160
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"entropy": 3.737903955578804,
|
| 185 |
+
"epoch": 0.272,
|
| 186 |
+
"grad_norm": 0.01708984375,
|
| 187 |
+
"learning_rate": 3.3800000000000007e-06,
|
| 188 |
+
"loss": 5.0962,
|
| 189 |
+
"mean_token_accuracy": 0.2901335723698139,
|
| 190 |
+
"num_tokens": 3335951.0,
|
| 191 |
+
"step": 170
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"entropy": 3.7267358005046844,
|
| 195 |
+
"epoch": 0.288,
|
| 196 |
+
"grad_norm": 0.014404296875,
|
| 197 |
+
"learning_rate": 3.58e-06,
|
| 198 |
+
"loss": 5.1225,
|
| 199 |
+
"mean_token_accuracy": 0.2877850123681128,
|
| 200 |
+
"num_tokens": 3539731.0,
|
| 201 |
+
"step": 180
|
| 202 |
+
},
|
| 203 |
+
{
|
| 204 |
+
"entropy": 3.6973107740283013,
|
| 205 |
+
"epoch": 0.304,
|
| 206 |
+
"grad_norm": 0.0218505859375,
|
| 207 |
+
"learning_rate": 3.7800000000000002e-06,
|
| 208 |
+
"loss": 5.0415,
|
| 209 |
+
"mean_token_accuracy": 0.291966971475631,
|
| 210 |
+
"num_tokens": 3733488.0,
|
| 211 |
+
"step": 190
|
| 212 |
+
},
|
| 213 |
+
{
|
| 214 |
+
"entropy": 3.723296643793583,
|
| 215 |
+
"epoch": 0.32,
|
| 216 |
+
"grad_norm": 0.01458740234375,
|
| 217 |
+
"learning_rate": 3.980000000000001e-06,
|
| 218 |
+
"loss": 5.1057,
|
| 219 |
+
"mean_token_accuracy": 0.2924021276645362,
|
| 220 |
+
"num_tokens": 3920545.0,
|
| 221 |
+
"step": 200
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"epoch": 0.32,
|
| 225 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 226 |
+
"eval_biology_loss": 5.049773216247559,
|
| 227 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 228 |
+
"eval_biology_num_tokens": 3920545.0,
|
| 229 |
+
"eval_biology_runtime": 47.9931,
|
| 230 |
+
"eval_biology_samples_per_second": 10.418,
|
| 231 |
+
"eval_biology_steps_per_second": 2.605,
|
| 232 |
+
"step": 200
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"entropy": 3.7122732952237127,
|
| 236 |
+
"epoch": 0.336,
|
| 237 |
+
"grad_norm": 0.0234375,
|
| 238 |
+
"learning_rate": 4.18e-06,
|
| 239 |
+
"loss": 5.0914,
|
| 240 |
+
"mean_token_accuracy": 0.29149032663553953,
|
| 241 |
+
"num_tokens": 4114077.0,
|
| 242 |
+
"step": 210
|
| 243 |
+
},
|
| 244 |
+
{
|
| 245 |
+
"entropy": 3.7262283325195313,
|
| 246 |
+
"epoch": 0.352,
|
| 247 |
+
"grad_norm": 0.0185546875,
|
| 248 |
+
"learning_rate": 4.38e-06,
|
| 249 |
+
"loss": 5.0925,
|
| 250 |
+
"mean_token_accuracy": 0.2936550347134471,
|
| 251 |
+
"num_tokens": 4306949.0,
|
| 252 |
+
"step": 220
|
| 253 |
+
},
|
| 254 |
+
{
|
| 255 |
+
"entropy": 3.723622639477253,
|
| 256 |
+
"epoch": 0.368,
|
| 257 |
+
"grad_norm": 0.017822265625,
|
| 258 |
+
"learning_rate": 4.58e-06,
|
| 259 |
+
"loss": 5.0811,
|
| 260 |
+
"mean_token_accuracy": 0.2895682736299932,
|
| 261 |
+
"num_tokens": 4504001.0,
|
| 262 |
+
"step": 230
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"entropy": 3.7035663962364196,
|
| 266 |
+
"epoch": 0.384,
|
| 267 |
+
"grad_norm": 0.0247802734375,
|
| 268 |
+
"learning_rate": 4.78e-06,
|
| 269 |
+
"loss": 5.0597,
|
| 270 |
+
"mean_token_accuracy": 0.2904216184280813,
|
| 271 |
+
"num_tokens": 4693812.0,
|
| 272 |
+
"step": 240
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"entropy": 3.7003923773765566,
|
| 276 |
+
"epoch": 0.4,
|
| 277 |
+
"grad_norm": 0.01434326171875,
|
| 278 |
+
"learning_rate": 4.980000000000001e-06,
|
| 279 |
+
"loss": 5.0458,
|
| 280 |
+
"mean_token_accuracy": 0.2927747514098883,
|
| 281 |
+
"num_tokens": 4887094.0,
|
| 282 |
+
"step": 250
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"entropy": 3.716284817457199,
|
| 286 |
+
"epoch": 0.416,
|
| 287 |
+
"grad_norm": 0.016357421875,
|
| 288 |
+
"learning_rate": 5.18e-06,
|
| 289 |
+
"loss": 5.0684,
|
| 290 |
+
"mean_token_accuracy": 0.29001498911529777,
|
| 291 |
+
"num_tokens": 5085369.0,
|
| 292 |
+
"step": 260
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"entropy": 3.74227339476347,
|
| 296 |
+
"epoch": 0.432,
|
| 297 |
+
"grad_norm": 0.0203857421875,
|
| 298 |
+
"learning_rate": 5.380000000000001e-06,
|
| 299 |
+
"loss": 5.1343,
|
| 300 |
+
"mean_token_accuracy": 0.2884894346818328,
|
| 301 |
+
"num_tokens": 5271275.0,
|
| 302 |
+
"step": 270
|
| 303 |
+
},
|
| 304 |
+
{
|
| 305 |
+
"entropy": 3.726644665002823,
|
| 306 |
+
"epoch": 0.448,
|
| 307 |
+
"grad_norm": 0.01904296875,
|
| 308 |
+
"learning_rate": 5.580000000000001e-06,
|
| 309 |
+
"loss": 5.1273,
|
| 310 |
+
"mean_token_accuracy": 0.2874998924322426,
|
| 311 |
+
"num_tokens": 5460559.0,
|
| 312 |
+
"step": 280
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"entropy": 3.6816380873322485,
|
| 316 |
+
"epoch": 0.464,
|
| 317 |
+
"grad_norm": 0.0224609375,
|
| 318 |
+
"learning_rate": 5.78e-06,
|
| 319 |
+
"loss": 5.0719,
|
| 320 |
+
"mean_token_accuracy": 0.29172550728544594,
|
| 321 |
+
"num_tokens": 5653809.0,
|
| 322 |
+
"step": 290
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"entropy": 3.7142979234457014,
|
| 326 |
+
"epoch": 0.48,
|
| 327 |
+
"grad_norm": 0.015625,
|
| 328 |
+
"learning_rate": 5.98e-06,
|
| 329 |
+
"loss": 5.0955,
|
| 330 |
+
"mean_token_accuracy": 0.28865716215223075,
|
| 331 |
+
"num_tokens": 5850176.0,
|
| 332 |
+
"step": 300
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.48,
|
| 336 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 337 |
+
"eval_biology_loss": 5.049773216247559,
|
| 338 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 339 |
+
"eval_biology_num_tokens": 5850176.0,
|
| 340 |
+
"eval_biology_runtime": 47.7142,
|
| 341 |
+
"eval_biology_samples_per_second": 10.479,
|
| 342 |
+
"eval_biology_steps_per_second": 2.62,
|
| 343 |
+
"step": 300
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"entropy": 3.6794839769601824,
|
| 347 |
+
"epoch": 0.496,
|
| 348 |
+
"grad_norm": 0.0181884765625,
|
| 349 |
+
"learning_rate": 6.18e-06,
|
| 350 |
+
"loss": 5.0187,
|
| 351 |
+
"mean_token_accuracy": 0.29856595005840064,
|
| 352 |
+
"num_tokens": 6046503.0,
|
| 353 |
+
"step": 310
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"entropy": 3.7517301350831986,
|
| 357 |
+
"epoch": 0.512,
|
| 358 |
+
"grad_norm": 0.0245361328125,
|
| 359 |
+
"learning_rate": 6.380000000000001e-06,
|
| 360 |
+
"loss": 5.1625,
|
| 361 |
+
"mean_token_accuracy": 0.2865315512754023,
|
| 362 |
+
"num_tokens": 6240456.0,
|
| 363 |
+
"step": 320
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"entropy": 3.6911791786551476,
|
| 367 |
+
"epoch": 0.528,
|
| 368 |
+
"grad_norm": 0.016845703125,
|
| 369 |
+
"learning_rate": 6.5800000000000005e-06,
|
| 370 |
+
"loss": 5.0801,
|
| 371 |
+
"mean_token_accuracy": 0.2921980186365545,
|
| 372 |
+
"num_tokens": 6430555.0,
|
| 373 |
+
"step": 330
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"entropy": 3.7338990345597267,
|
| 377 |
+
"epoch": 0.544,
|
| 378 |
+
"grad_norm": 0.0262451171875,
|
| 379 |
+
"learning_rate": 6.780000000000001e-06,
|
| 380 |
+
"loss": 5.1089,
|
| 381 |
+
"mean_token_accuracy": 0.29122597351670265,
|
| 382 |
+
"num_tokens": 6626006.0,
|
| 383 |
+
"step": 340
|
| 384 |
+
},
|
| 385 |
+
{
|
| 386 |
+
"entropy": 3.714175473153591,
|
| 387 |
+
"epoch": 0.56,
|
| 388 |
+
"grad_norm": 0.0194091796875,
|
| 389 |
+
"learning_rate": 6.98e-06,
|
| 390 |
+
"loss": 5.0795,
|
| 391 |
+
"mean_token_accuracy": 0.28960168017074467,
|
| 392 |
+
"num_tokens": 6820754.0,
|
| 393 |
+
"step": 350
|
| 394 |
+
},
|
| 395 |
+
{
|
| 396 |
+
"entropy": 3.692426808178425,
|
| 397 |
+
"epoch": 0.576,
|
| 398 |
+
"grad_norm": 0.0191650390625,
|
| 399 |
+
"learning_rate": 7.180000000000001e-06,
|
| 400 |
+
"loss": 5.0757,
|
| 401 |
+
"mean_token_accuracy": 0.29286856260150673,
|
| 402 |
+
"num_tokens": 7021844.0,
|
| 403 |
+
"step": 360
|
| 404 |
+
},
|
| 405 |
+
{
|
| 406 |
+
"entropy": 3.727046549320221,
|
| 407 |
+
"epoch": 0.592,
|
| 408 |
+
"grad_norm": 0.0213623046875,
|
| 409 |
+
"learning_rate": 7.3800000000000005e-06,
|
| 410 |
+
"loss": 5.1248,
|
| 411 |
+
"mean_token_accuracy": 0.28685210049152376,
|
| 412 |
+
"num_tokens": 7213951.0,
|
| 413 |
+
"step": 370
|
| 414 |
+
},
|
| 415 |
+
{
|
| 416 |
+
"entropy": 3.736472050845623,
|
| 417 |
+
"epoch": 0.608,
|
| 418 |
+
"grad_norm": 0.0177001953125,
|
| 419 |
+
"learning_rate": 7.58e-06,
|
| 420 |
+
"loss": 5.1462,
|
| 421 |
+
"mean_token_accuracy": 0.28853774573653934,
|
| 422 |
+
"num_tokens": 7416773.0,
|
| 423 |
+
"step": 380
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"entropy": 3.74992755651474,
|
| 427 |
+
"epoch": 0.624,
|
| 428 |
+
"grad_norm": 0.01708984375,
|
| 429 |
+
"learning_rate": 7.78e-06,
|
| 430 |
+
"loss": 5.1298,
|
| 431 |
+
"mean_token_accuracy": 0.2880241921171546,
|
| 432 |
+
"num_tokens": 7612843.0,
|
| 433 |
+
"step": 390
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"entropy": 3.7259780153632165,
|
| 437 |
+
"epoch": 0.64,
|
| 438 |
+
"grad_norm": 0.0208740234375,
|
| 439 |
+
"learning_rate": 7.980000000000002e-06,
|
| 440 |
+
"loss": 5.0975,
|
| 441 |
+
"mean_token_accuracy": 0.29221961721777917,
|
| 442 |
+
"num_tokens": 7801633.0,
|
| 443 |
+
"step": 400
|
| 444 |
+
},
|
| 445 |
+
{
|
| 446 |
+
"epoch": 0.64,
|
| 447 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 448 |
+
"eval_biology_loss": 5.049773216247559,
|
| 449 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 450 |
+
"eval_biology_num_tokens": 7801633.0,
|
| 451 |
+
"eval_biology_runtime": 47.8899,
|
| 452 |
+
"eval_biology_samples_per_second": 10.441,
|
| 453 |
+
"eval_biology_steps_per_second": 2.61,
|
| 454 |
+
"step": 400
|
| 455 |
+
},
|
| 456 |
+
{
|
| 457 |
+
"entropy": 3.76672201231122,
|
| 458 |
+
"epoch": 0.656,
|
| 459 |
+
"grad_norm": 0.013916015625,
|
| 460 |
+
"learning_rate": 8.18e-06,
|
| 461 |
+
"loss": 5.1778,
|
| 462 |
+
"mean_token_accuracy": 0.28632718725129963,
|
| 463 |
+
"num_tokens": 7995843.0,
|
| 464 |
+
"step": 410
|
| 465 |
+
},
|
| 466 |
+
{
|
| 467 |
+
"entropy": 3.7688263028860094,
|
| 468 |
+
"epoch": 0.672,
|
| 469 |
+
"grad_norm": 0.026611328125,
|
| 470 |
+
"learning_rate": 8.380000000000001e-06,
|
| 471 |
+
"loss": 5.1731,
|
| 472 |
+
"mean_token_accuracy": 0.2852769985795021,
|
| 473 |
+
"num_tokens": 8183103.0,
|
| 474 |
+
"step": 420
|
| 475 |
+
},
|
| 476 |
+
{
|
| 477 |
+
"entropy": 3.7213131189346313,
|
| 478 |
+
"epoch": 0.688,
|
| 479 |
+
"grad_norm": 0.01708984375,
|
| 480 |
+
"learning_rate": 8.580000000000001e-06,
|
| 481 |
+
"loss": 5.0812,
|
| 482 |
+
"mean_token_accuracy": 0.29185254173353314,
|
| 483 |
+
"num_tokens": 8385976.0,
|
| 484 |
+
"step": 430
|
| 485 |
+
},
|
| 486 |
+
{
|
| 487 |
+
"entropy": 3.7499947547912598,
|
| 488 |
+
"epoch": 0.704,
|
| 489 |
+
"grad_norm": 0.015380859375,
|
| 490 |
+
"learning_rate": 8.78e-06,
|
| 491 |
+
"loss": 5.1107,
|
| 492 |
+
"mean_token_accuracy": 0.28764023520052434,
|
| 493 |
+
"num_tokens": 8578431.0,
|
| 494 |
+
"step": 440
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"entropy": 3.6844282656908036,
|
| 498 |
+
"epoch": 0.72,
|
| 499 |
+
"grad_norm": 0.017822265625,
|
| 500 |
+
"learning_rate": 8.98e-06,
|
| 501 |
+
"loss": 5.0192,
|
| 502 |
+
"mean_token_accuracy": 0.2957433703355491,
|
| 503 |
+
"num_tokens": 8781342.0,
|
| 504 |
+
"step": 450
|
| 505 |
+
},
|
| 506 |
+
{
|
| 507 |
+
"entropy": 3.7240318074822425,
|
| 508 |
+
"epoch": 0.736,
|
| 509 |
+
"grad_norm": 0.01953125,
|
| 510 |
+
"learning_rate": 9.180000000000002e-06,
|
| 511 |
+
"loss": 5.0727,
|
| 512 |
+
"mean_token_accuracy": 0.2915121610276401,
|
| 513 |
+
"num_tokens": 8977918.0,
|
| 514 |
+
"step": 460
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"entropy": 3.723066192865372,
|
| 518 |
+
"epoch": 0.752,
|
| 519 |
+
"grad_norm": 0.016357421875,
|
| 520 |
+
"learning_rate": 9.38e-06,
|
| 521 |
+
"loss": 5.0973,
|
| 522 |
+
"mean_token_accuracy": 0.29267845982685686,
|
| 523 |
+
"num_tokens": 9169322.0,
|
| 524 |
+
"step": 470
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"entropy": 3.702293635904789,
|
| 528 |
+
"epoch": 0.768,
|
| 529 |
+
"grad_norm": 0.0167236328125,
|
| 530 |
+
"learning_rate": 9.58e-06,
|
| 531 |
+
"loss": 5.0474,
|
| 532 |
+
"mean_token_accuracy": 0.29300098568201066,
|
| 533 |
+
"num_tokens": 9368141.0,
|
| 534 |
+
"step": 480
|
| 535 |
+
},
|
| 536 |
+
{
|
| 537 |
+
"entropy": 3.722616221010685,
|
| 538 |
+
"epoch": 0.784,
|
| 539 |
+
"grad_norm": 0.01361083984375,
|
| 540 |
+
"learning_rate": 9.780000000000001e-06,
|
| 541 |
+
"loss": 5.1082,
|
| 542 |
+
"mean_token_accuracy": 0.29106166921556,
|
| 543 |
+
"num_tokens": 9565236.0,
|
| 544 |
+
"step": 490
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"entropy": 3.6929100595414637,
|
| 548 |
+
"epoch": 0.8,
|
| 549 |
+
"grad_norm": 0.0198974609375,
|
| 550 |
+
"learning_rate": 9.980000000000001e-06,
|
| 551 |
+
"loss": 5.055,
|
| 552 |
+
"mean_token_accuracy": 0.2922526111826301,
|
| 553 |
+
"num_tokens": 9761227.0,
|
| 554 |
+
"step": 500
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"epoch": 0.8,
|
| 558 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 559 |
+
"eval_biology_loss": 5.049773216247559,
|
| 560 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 561 |
+
"eval_biology_num_tokens": 9761227.0,
|
| 562 |
+
"eval_biology_runtime": 47.6484,
|
| 563 |
+
"eval_biology_samples_per_second": 10.494,
|
| 564 |
+
"eval_biology_steps_per_second": 2.623,
|
| 565 |
+
"step": 500
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"entropy": 3.7020211443305016,
|
| 569 |
+
"epoch": 0.816,
|
| 570 |
+
"grad_norm": 0.01513671875,
|
| 571 |
+
"learning_rate": 1.018e-05,
|
| 572 |
+
"loss": 5.0565,
|
| 573 |
+
"mean_token_accuracy": 0.29223762024194,
|
| 574 |
+
"num_tokens": 9958727.0,
|
| 575 |
+
"step": 510
|
| 576 |
+
},
|
| 577 |
+
{
|
| 578 |
+
"entropy": 3.690947251021862,
|
| 579 |
+
"epoch": 0.832,
|
| 580 |
+
"grad_norm": 0.0225830078125,
|
| 581 |
+
"learning_rate": 1.038e-05,
|
| 582 |
+
"loss": 5.0388,
|
| 583 |
+
"mean_token_accuracy": 0.2948582774028182,
|
| 584 |
+
"num_tokens": 10155771.0,
|
| 585 |
+
"step": 520
|
| 586 |
+
},
|
| 587 |
+
{
|
| 588 |
+
"entropy": 3.688454346358776,
|
| 589 |
+
"epoch": 0.848,
|
| 590 |
+
"grad_norm": 0.0238037109375,
|
| 591 |
+
"learning_rate": 1.0580000000000002e-05,
|
| 592 |
+
"loss": 5.0305,
|
| 593 |
+
"mean_token_accuracy": 0.29634183505550027,
|
| 594 |
+
"num_tokens": 10357721.0,
|
| 595 |
+
"step": 530
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"entropy": 3.711380937695503,
|
| 599 |
+
"epoch": 0.864,
|
| 600 |
+
"grad_norm": 0.01171875,
|
| 601 |
+
"learning_rate": 1.0780000000000002e-05,
|
| 602 |
+
"loss": 5.058,
|
| 603 |
+
"mean_token_accuracy": 0.293431665468961,
|
| 604 |
+
"num_tokens": 10552495.0,
|
| 605 |
+
"step": 540
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"entropy": 3.7067453160882,
|
| 609 |
+
"epoch": 0.88,
|
| 610 |
+
"grad_norm": 0.01409912109375,
|
| 611 |
+
"learning_rate": 1.0980000000000002e-05,
|
| 612 |
+
"loss": 5.0502,
|
| 613 |
+
"mean_token_accuracy": 0.2919998188503087,
|
| 614 |
+
"num_tokens": 10748749.0,
|
| 615 |
+
"step": 550
|
| 616 |
+
},
|
| 617 |
+
{
|
| 618 |
+
"entropy": 3.722704839706421,
|
| 619 |
+
"epoch": 0.896,
|
| 620 |
+
"grad_norm": 0.0196533203125,
|
| 621 |
+
"learning_rate": 1.1180000000000001e-05,
|
| 622 |
+
"loss": 5.1088,
|
| 623 |
+
"mean_token_accuracy": 0.28890208089724184,
|
| 624 |
+
"num_tokens": 10943319.0,
|
| 625 |
+
"step": 560
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"entropy": 3.7139005795121194,
|
| 629 |
+
"epoch": 0.912,
|
| 630 |
+
"grad_norm": 0.0216064453125,
|
| 631 |
+
"learning_rate": 1.138e-05,
|
| 632 |
+
"loss": 5.0686,
|
| 633 |
+
"mean_token_accuracy": 0.2921730065718293,
|
| 634 |
+
"num_tokens": 11136935.0,
|
| 635 |
+
"step": 570
|
| 636 |
+
},
|
| 637 |
+
{
|
| 638 |
+
"entropy": 3.752144718170166,
|
| 639 |
+
"epoch": 0.928,
|
| 640 |
+
"grad_norm": 0.0172119140625,
|
| 641 |
+
"learning_rate": 1.1580000000000001e-05,
|
| 642 |
+
"loss": 5.0906,
|
| 643 |
+
"mean_token_accuracy": 0.29035252146422863,
|
| 644 |
+
"num_tokens": 11331098.0,
|
| 645 |
+
"step": 580
|
| 646 |
+
},
|
| 647 |
+
{
|
| 648 |
+
"entropy": 3.714654731750488,
|
| 649 |
+
"epoch": 0.944,
|
| 650 |
+
"grad_norm": 0.0162353515625,
|
| 651 |
+
"learning_rate": 1.178e-05,
|
| 652 |
+
"loss": 5.0467,
|
| 653 |
+
"mean_token_accuracy": 0.2949915431439877,
|
| 654 |
+
"num_tokens": 11530550.0,
|
| 655 |
+
"step": 590
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"entropy": 3.7143523931503295,
|
| 659 |
+
"epoch": 0.96,
|
| 660 |
+
"grad_norm": 0.01904296875,
|
| 661 |
+
"learning_rate": 1.198e-05,
|
| 662 |
+
"loss": 5.0766,
|
| 663 |
+
"mean_token_accuracy": 0.29139310084283354,
|
| 664 |
+
"num_tokens": 11729645.0,
|
| 665 |
+
"step": 600
|
| 666 |
+
},
|
| 667 |
+
{
|
| 668 |
+
"epoch": 0.96,
|
| 669 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 670 |
+
"eval_biology_loss": 5.049773216247559,
|
| 671 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 672 |
+
"eval_biology_num_tokens": 11729645.0,
|
| 673 |
+
"eval_biology_runtime": 48.0459,
|
| 674 |
+
"eval_biology_samples_per_second": 10.407,
|
| 675 |
+
"eval_biology_steps_per_second": 2.602,
|
| 676 |
+
"step": 600
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"entropy": 3.6984829902648926,
|
| 680 |
+
"epoch": 0.976,
|
| 681 |
+
"grad_norm": 0.014892578125,
|
| 682 |
+
"learning_rate": 1.218e-05,
|
| 683 |
+
"loss": 5.0862,
|
| 684 |
+
"mean_token_accuracy": 0.2942219194956124,
|
| 685 |
+
"num_tokens": 11924644.0,
|
| 686 |
+
"step": 610
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"entropy": 3.6905887737870215,
|
| 690 |
+
"epoch": 0.992,
|
| 691 |
+
"grad_norm": 0.01507568359375,
|
| 692 |
+
"learning_rate": 1.2380000000000002e-05,
|
| 693 |
+
"loss": 5.0574,
|
| 694 |
+
"mean_token_accuracy": 0.29360062861815095,
|
| 695 |
+
"num_tokens": 12123059.0,
|
| 696 |
+
"step": 620
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"entropy": 3.7239044919610023,
|
| 700 |
+
"epoch": 1.008,
|
| 701 |
+
"grad_norm": 0.0157470703125,
|
| 702 |
+
"learning_rate": 1.2580000000000002e-05,
|
| 703 |
+
"loss": 5.1152,
|
| 704 |
+
"mean_token_accuracy": 0.29114634413272145,
|
| 705 |
+
"num_tokens": 12319366.0,
|
| 706 |
+
"step": 630
|
| 707 |
+
},
|
| 708 |
+
{
|
| 709 |
+
"entropy": 3.6866162970662115,
|
| 710 |
+
"epoch": 1.024,
|
| 711 |
+
"grad_norm": 0.01470947265625,
|
| 712 |
+
"learning_rate": 1.2780000000000001e-05,
|
| 713 |
+
"loss": 5.0343,
|
| 714 |
+
"mean_token_accuracy": 0.2939268404617906,
|
| 715 |
+
"num_tokens": 12524183.0,
|
| 716 |
+
"step": 640
|
| 717 |
+
},
|
| 718 |
+
{
|
| 719 |
+
"entropy": 3.72215301245451,
|
| 720 |
+
"epoch": 1.04,
|
| 721 |
+
"grad_norm": 0.0155029296875,
|
| 722 |
+
"learning_rate": 1.2980000000000001e-05,
|
| 723 |
+
"loss": 5.1367,
|
| 724 |
+
"mean_token_accuracy": 0.28700590375810864,
|
| 725 |
+
"num_tokens": 12718593.0,
|
| 726 |
+
"step": 650
|
| 727 |
+
},
|
| 728 |
+
{
|
| 729 |
+
"entropy": 3.681245695054531,
|
| 730 |
+
"epoch": 1.056,
|
| 731 |
+
"grad_norm": 0.0191650390625,
|
| 732 |
+
"learning_rate": 1.3180000000000001e-05,
|
| 733 |
+
"loss": 5.014,
|
| 734 |
+
"mean_token_accuracy": 0.2961495415307581,
|
| 735 |
+
"num_tokens": 12917803.0,
|
| 736 |
+
"step": 660
|
| 737 |
+
},
|
| 738 |
+
{
|
| 739 |
+
"entropy": 3.7183008253574372,
|
| 740 |
+
"epoch": 1.072,
|
| 741 |
+
"grad_norm": 0.02197265625,
|
| 742 |
+
"learning_rate": 1.3380000000000002e-05,
|
| 743 |
+
"loss": 5.0868,
|
| 744 |
+
"mean_token_accuracy": 0.2896940400823951,
|
| 745 |
+
"num_tokens": 13105826.0,
|
| 746 |
+
"step": 670
|
| 747 |
+
},
|
| 748 |
+
{
|
| 749 |
+
"entropy": 3.742721700668335,
|
| 750 |
+
"epoch": 1.088,
|
| 751 |
+
"grad_norm": 0.016845703125,
|
| 752 |
+
"learning_rate": 1.3580000000000002e-05,
|
| 753 |
+
"loss": 5.1107,
|
| 754 |
+
"mean_token_accuracy": 0.2900996576994658,
|
| 755 |
+
"num_tokens": 13298619.0,
|
| 756 |
+
"step": 680
|
| 757 |
+
},
|
| 758 |
+
{
|
| 759 |
+
"entropy": 3.7236127987504006,
|
| 760 |
+
"epoch": 1.104,
|
| 761 |
+
"grad_norm": 0.0150146484375,
|
| 762 |
+
"learning_rate": 1.378e-05,
|
| 763 |
+
"loss": 5.1279,
|
| 764 |
+
"mean_token_accuracy": 0.28985656797885895,
|
| 765 |
+
"num_tokens": 13491486.0,
|
| 766 |
+
"step": 690
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"entropy": 3.7264697343111037,
|
| 770 |
+
"epoch": 1.12,
|
| 771 |
+
"grad_norm": 0.0186767578125,
|
| 772 |
+
"learning_rate": 1.398e-05,
|
| 773 |
+
"loss": 5.1227,
|
| 774 |
+
"mean_token_accuracy": 0.2900970630347729,
|
| 775 |
+
"num_tokens": 13674663.0,
|
| 776 |
+
"step": 700
|
| 777 |
+
},
|
| 778 |
+
{
|
| 779 |
+
"epoch": 1.12,
|
| 780 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 781 |
+
"eval_biology_loss": 5.049773216247559,
|
| 782 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 783 |
+
"eval_biology_num_tokens": 13674663.0,
|
| 784 |
+
"eval_biology_runtime": 47.6988,
|
| 785 |
+
"eval_biology_samples_per_second": 10.482,
|
| 786 |
+
"eval_biology_steps_per_second": 2.621,
|
| 787 |
+
"step": 700
|
| 788 |
+
},
|
| 789 |
+
{
|
| 790 |
+
"entropy": 3.7335189118981362,
|
| 791 |
+
"epoch": 1.1360000000000001,
|
| 792 |
+
"grad_norm": 0.0230712890625,
|
| 793 |
+
"learning_rate": 1.418e-05,
|
| 794 |
+
"loss": 5.0857,
|
| 795 |
+
"mean_token_accuracy": 0.29160243617370724,
|
| 796 |
+
"num_tokens": 13869134.0,
|
| 797 |
+
"step": 710
|
| 798 |
+
},
|
| 799 |
+
{
|
| 800 |
+
"entropy": 3.6999334722757338,
|
| 801 |
+
"epoch": 1.152,
|
| 802 |
+
"grad_norm": 0.0179443359375,
|
| 803 |
+
"learning_rate": 1.4380000000000001e-05,
|
| 804 |
+
"loss": 5.0276,
|
| 805 |
+
"mean_token_accuracy": 0.29345897743478416,
|
| 806 |
+
"num_tokens": 14078365.0,
|
| 807 |
+
"step": 720
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"entropy": 3.7237380519509315,
|
| 811 |
+
"epoch": 1.168,
|
| 812 |
+
"grad_norm": 0.02734375,
|
| 813 |
+
"learning_rate": 1.4580000000000001e-05,
|
| 814 |
+
"loss": 5.1027,
|
| 815 |
+
"mean_token_accuracy": 0.2900115196593106,
|
| 816 |
+
"num_tokens": 14266831.0,
|
| 817 |
+
"step": 730
|
| 818 |
+
},
|
| 819 |
+
{
|
| 820 |
+
"entropy": 3.728756721317768,
|
| 821 |
+
"epoch": 1.184,
|
| 822 |
+
"grad_norm": 0.028076171875,
|
| 823 |
+
"learning_rate": 1.478e-05,
|
| 824 |
+
"loss": 5.1063,
|
| 825 |
+
"mean_token_accuracy": 0.29116632882505655,
|
| 826 |
+
"num_tokens": 14465660.0,
|
| 827 |
+
"step": 740
|
| 828 |
+
},
|
| 829 |
+
{
|
| 830 |
+
"entropy": 3.694381882250309,
|
| 831 |
+
"epoch": 1.2,
|
| 832 |
+
"grad_norm": 0.0185546875,
|
| 833 |
+
"learning_rate": 1.498e-05,
|
| 834 |
+
"loss": 5.069,
|
| 835 |
+
"mean_token_accuracy": 0.2926430401392281,
|
| 836 |
+
"num_tokens": 14653228.0,
|
| 837 |
+
"step": 750
|
| 838 |
+
},
|
| 839 |
+
{
|
| 840 |
+
"entropy": 3.743997333943844,
|
| 841 |
+
"epoch": 1.216,
|
| 842 |
+
"grad_norm": 0.0235595703125,
|
| 843 |
+
"learning_rate": 1.5180000000000002e-05,
|
| 844 |
+
"loss": 5.1078,
|
| 845 |
+
"mean_token_accuracy": 0.2893166967667639,
|
| 846 |
+
"num_tokens": 14857782.0,
|
| 847 |
+
"step": 760
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"entropy": 3.6960197538137436,
|
| 851 |
+
"epoch": 1.232,
|
| 852 |
+
"grad_norm": 0.01220703125,
|
| 853 |
+
"learning_rate": 1.5380000000000002e-05,
|
| 854 |
+
"loss": 5.062,
|
| 855 |
+
"mean_token_accuracy": 0.2938588274642825,
|
| 856 |
+
"num_tokens": 15047356.0,
|
| 857 |
+
"step": 770
|
| 858 |
+
},
|
| 859 |
+
{
|
| 860 |
+
"entropy": 3.700982950627804,
|
| 861 |
+
"epoch": 1.248,
|
| 862 |
+
"grad_norm": 0.0201416015625,
|
| 863 |
+
"learning_rate": 1.5580000000000003e-05,
|
| 864 |
+
"loss": 5.0837,
|
| 865 |
+
"mean_token_accuracy": 0.29082163264974953,
|
| 866 |
+
"num_tokens": 15241098.0,
|
| 867 |
+
"step": 780
|
| 868 |
+
},
|
| 869 |
+
{
|
| 870 |
+
"entropy": 3.7153700664639473,
|
| 871 |
+
"epoch": 1.264,
|
| 872 |
+
"grad_norm": 0.017822265625,
|
| 873 |
+
"learning_rate": 1.578e-05,
|
| 874 |
+
"loss": 5.0565,
|
| 875 |
+
"mean_token_accuracy": 0.2915728730149567,
|
| 876 |
+
"num_tokens": 15437657.0,
|
| 877 |
+
"step": 790
|
| 878 |
+
},
|
| 879 |
+
{
|
| 880 |
+
"entropy": 3.7014693170785904,
|
| 881 |
+
"epoch": 1.28,
|
| 882 |
+
"grad_norm": 0.0245361328125,
|
| 883 |
+
"learning_rate": 1.5980000000000003e-05,
|
| 884 |
+
"loss": 5.0562,
|
| 885 |
+
"mean_token_accuracy": 0.2920363646000624,
|
| 886 |
+
"num_tokens": 15630795.0,
|
| 887 |
+
"step": 800
|
| 888 |
+
},
|
| 889 |
+
{
|
| 890 |
+
"epoch": 1.28,
|
| 891 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 892 |
+
"eval_biology_loss": 5.049773216247559,
|
| 893 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 894 |
+
"eval_biology_num_tokens": 15630795.0,
|
| 895 |
+
"eval_biology_runtime": 47.6391,
|
| 896 |
+
"eval_biology_samples_per_second": 10.496,
|
| 897 |
+
"eval_biology_steps_per_second": 2.624,
|
| 898 |
+
"step": 800
|
| 899 |
+
},
|
| 900 |
+
{
|
| 901 |
+
"entropy": 3.7237909018993376,
|
| 902 |
+
"epoch": 1.296,
|
| 903 |
+
"grad_norm": 0.0181884765625,
|
| 904 |
+
"learning_rate": 1.618e-05,
|
| 905 |
+
"loss": 5.0864,
|
| 906 |
+
"mean_token_accuracy": 0.29013621537014844,
|
| 907 |
+
"num_tokens": 15827105.0,
|
| 908 |
+
"step": 810
|
| 909 |
+
},
|
| 910 |
+
{
|
| 911 |
+
"entropy": 3.6957172751426697,
|
| 912 |
+
"epoch": 1.312,
|
| 913 |
+
"grad_norm": 0.026123046875,
|
| 914 |
+
"learning_rate": 1.638e-05,
|
| 915 |
+
"loss": 5.0904,
|
| 916 |
+
"mean_token_accuracy": 0.2900472991168499,
|
| 917 |
+
"num_tokens": 16019645.0,
|
| 918 |
+
"step": 820
|
| 919 |
+
},
|
| 920 |
+
{
|
| 921 |
+
"entropy": 3.728809031844139,
|
| 922 |
+
"epoch": 1.328,
|
| 923 |
+
"grad_norm": 0.01904296875,
|
| 924 |
+
"learning_rate": 1.658e-05,
|
| 925 |
+
"loss": 5.1059,
|
| 926 |
+
"mean_token_accuracy": 0.2894112995825708,
|
| 927 |
+
"num_tokens": 16221726.0,
|
| 928 |
+
"step": 830
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"entropy": 3.7269085705280305,
|
| 932 |
+
"epoch": 1.3439999999999999,
|
| 933 |
+
"grad_norm": 0.0174560546875,
|
| 934 |
+
"learning_rate": 1.6780000000000002e-05,
|
| 935 |
+
"loss": 5.0921,
|
| 936 |
+
"mean_token_accuracy": 0.2916096639819443,
|
| 937 |
+
"num_tokens": 16427594.0,
|
| 938 |
+
"step": 840
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"entropy": 3.727548821270466,
|
| 942 |
+
"epoch": 1.3599999999999999,
|
| 943 |
+
"grad_norm": 0.022216796875,
|
| 944 |
+
"learning_rate": 1.698e-05,
|
| 945 |
+
"loss": 5.0558,
|
| 946 |
+
"mean_token_accuracy": 0.2904492556117475,
|
| 947 |
+
"num_tokens": 16621605.0,
|
| 948 |
+
"step": 850
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"entropy": 3.7071838200092317,
|
| 952 |
+
"epoch": 1.376,
|
| 953 |
+
"grad_norm": 0.0272216796875,
|
| 954 |
+
"learning_rate": 1.718e-05,
|
| 955 |
+
"loss": 5.0775,
|
| 956 |
+
"mean_token_accuracy": 0.29065996296703817,
|
| 957 |
+
"num_tokens": 16813444.0,
|
| 958 |
+
"step": 860
|
| 959 |
+
},
|
| 960 |
+
{
|
| 961 |
+
"entropy": 3.7128281995654104,
|
| 962 |
+
"epoch": 1.392,
|
| 963 |
+
"grad_norm": 0.021484375,
|
| 964 |
+
"learning_rate": 1.7380000000000003e-05,
|
| 965 |
+
"loss": 5.1021,
|
| 966 |
+
"mean_token_accuracy": 0.2892353082075715,
|
| 967 |
+
"num_tokens": 17006509.0,
|
| 968 |
+
"step": 870
|
| 969 |
+
},
|
| 970 |
+
{
|
| 971 |
+
"entropy": 3.700386196374893,
|
| 972 |
+
"epoch": 1.408,
|
| 973 |
+
"grad_norm": 0.0233154296875,
|
| 974 |
+
"learning_rate": 1.758e-05,
|
| 975 |
+
"loss": 5.0966,
|
| 976 |
+
"mean_token_accuracy": 0.29179619075730445,
|
| 977 |
+
"num_tokens": 17197870.0,
|
| 978 |
+
"step": 880
|
| 979 |
+
},
|
| 980 |
+
{
|
| 981 |
+
"entropy": 3.6790005937218666,
|
| 982 |
+
"epoch": 1.424,
|
| 983 |
+
"grad_norm": 0.0185546875,
|
| 984 |
+
"learning_rate": 1.7780000000000003e-05,
|
| 985 |
+
"loss": 5.0503,
|
| 986 |
+
"mean_token_accuracy": 0.294497752469033,
|
| 987 |
+
"num_tokens": 17394390.0,
|
| 988 |
+
"step": 890
|
| 989 |
+
},
|
| 990 |
+
{
|
| 991 |
+
"entropy": 3.714966467022896,
|
| 992 |
+
"epoch": 1.44,
|
| 993 |
+
"grad_norm": 0.0220947265625,
|
| 994 |
+
"learning_rate": 1.798e-05,
|
| 995 |
+
"loss": 5.0895,
|
| 996 |
+
"mean_token_accuracy": 0.2897561041638255,
|
| 997 |
+
"num_tokens": 17587777.0,
|
| 998 |
+
"step": 900
|
| 999 |
+
},
|
| 1000 |
+
{
|
| 1001 |
+
"epoch": 1.44,
|
| 1002 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 1003 |
+
"eval_biology_loss": 5.049773216247559,
|
| 1004 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 1005 |
+
"eval_biology_num_tokens": 17587777.0,
|
| 1006 |
+
"eval_biology_runtime": 47.5786,
|
| 1007 |
+
"eval_biology_samples_per_second": 10.509,
|
| 1008 |
+
"eval_biology_steps_per_second": 2.627,
|
| 1009 |
+
"step": 900
|
| 1010 |
+
},
|
| 1011 |
+
{
|
| 1012 |
+
"entropy": 3.718673199415207,
|
| 1013 |
+
"epoch": 1.456,
|
| 1014 |
+
"grad_norm": 0.0169677734375,
|
| 1015 |
+
"learning_rate": 1.8180000000000002e-05,
|
| 1016 |
+
"loss": 5.0906,
|
| 1017 |
+
"mean_token_accuracy": 0.29184630075469614,
|
| 1018 |
+
"num_tokens": 17788456.0,
|
| 1019 |
+
"step": 910
|
| 1020 |
+
},
|
| 1021 |
+
{
|
| 1022 |
+
"entropy": 3.714043965935707,
|
| 1023 |
+
"epoch": 1.472,
|
| 1024 |
+
"grad_norm": 0.0184326171875,
|
| 1025 |
+
"learning_rate": 1.8380000000000004e-05,
|
| 1026 |
+
"loss": 5.1039,
|
| 1027 |
+
"mean_token_accuracy": 0.2923115941695869,
|
| 1028 |
+
"num_tokens": 17984063.0,
|
| 1029 |
+
"step": 920
|
| 1030 |
+
},
|
| 1031 |
+
{
|
| 1032 |
+
"entropy": 3.7208774775266646,
|
| 1033 |
+
"epoch": 1.488,
|
| 1034 |
+
"grad_norm": 0.01226806640625,
|
| 1035 |
+
"learning_rate": 1.858e-05,
|
| 1036 |
+
"loss": 5.1261,
|
| 1037 |
+
"mean_token_accuracy": 0.2891128743067384,
|
| 1038 |
+
"num_tokens": 18175640.0,
|
| 1039 |
+
"step": 930
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"entropy": 3.7392901137471197,
|
| 1043 |
+
"epoch": 1.504,
|
| 1044 |
+
"grad_norm": 0.027587890625,
|
| 1045 |
+
"learning_rate": 1.878e-05,
|
| 1046 |
+
"loss": 5.1405,
|
| 1047 |
+
"mean_token_accuracy": 0.28787331804633143,
|
| 1048 |
+
"num_tokens": 18367857.0,
|
| 1049 |
+
"step": 940
|
| 1050 |
+
},
|
| 1051 |
+
{
|
| 1052 |
+
"entropy": 3.7357000544667245,
|
| 1053 |
+
"epoch": 1.52,
|
| 1054 |
+
"grad_norm": 0.0235595703125,
|
| 1055 |
+
"learning_rate": 1.898e-05,
|
| 1056 |
+
"loss": 5.0929,
|
| 1057 |
+
"mean_token_accuracy": 0.2901941016316414,
|
| 1058 |
+
"num_tokens": 18569146.0,
|
| 1059 |
+
"step": 950
|
| 1060 |
+
},
|
| 1061 |
+
{
|
| 1062 |
+
"entropy": 3.71133918017149,
|
| 1063 |
+
"epoch": 1.536,
|
| 1064 |
+
"grad_norm": 0.01953125,
|
| 1065 |
+
"learning_rate": 1.918e-05,
|
| 1066 |
+
"loss": 5.0759,
|
| 1067 |
+
"mean_token_accuracy": 0.2910002091899514,
|
| 1068 |
+
"num_tokens": 18755079.0,
|
| 1069 |
+
"step": 960
|
| 1070 |
+
},
|
| 1071 |
+
{
|
| 1072 |
+
"entropy": 3.679325211048126,
|
| 1073 |
+
"epoch": 1.552,
|
| 1074 |
+
"grad_norm": 0.0179443359375,
|
| 1075 |
+
"learning_rate": 1.938e-05,
|
| 1076 |
+
"loss": 5.0271,
|
| 1077 |
+
"mean_token_accuracy": 0.29568239795044066,
|
| 1078 |
+
"num_tokens": 18956248.0,
|
| 1079 |
+
"step": 970
|
| 1080 |
+
},
|
| 1081 |
+
{
|
| 1082 |
+
"entropy": 3.7200872167944907,
|
| 1083 |
+
"epoch": 1.568,
|
| 1084 |
+
"grad_norm": 0.0194091796875,
|
| 1085 |
+
"learning_rate": 1.9580000000000002e-05,
|
| 1086 |
+
"loss": 5.0739,
|
| 1087 |
+
"mean_token_accuracy": 0.290937721170485,
|
| 1088 |
+
"num_tokens": 19150315.0,
|
| 1089 |
+
"step": 980
|
| 1090 |
+
},
|
| 1091 |
+
{
|
| 1092 |
+
"entropy": 3.6731236964464187,
|
| 1093 |
+
"epoch": 1.584,
|
| 1094 |
+
"grad_norm": 0.0179443359375,
|
| 1095 |
+
"learning_rate": 1.978e-05,
|
| 1096 |
+
"loss": 4.9996,
|
| 1097 |
+
"mean_token_accuracy": 0.2993267074227333,
|
| 1098 |
+
"num_tokens": 19344260.0,
|
| 1099 |
+
"step": 990
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"entropy": 3.7825915426015855,
|
| 1103 |
+
"epoch": 1.6,
|
| 1104 |
+
"grad_norm": 0.0172119140625,
|
| 1105 |
+
"learning_rate": 1.9980000000000002e-05,
|
| 1106 |
+
"loss": 5.2041,
|
| 1107 |
+
"mean_token_accuracy": 0.2822197400033474,
|
| 1108 |
+
"num_tokens": 19532552.0,
|
| 1109 |
+
"step": 1000
|
| 1110 |
+
},
|
| 1111 |
+
{
|
| 1112 |
+
"epoch": 1.6,
|
| 1113 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 1114 |
+
"eval_biology_loss": 5.049773216247559,
|
| 1115 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 1116 |
+
"eval_biology_num_tokens": 19532552.0,
|
| 1117 |
+
"eval_biology_runtime": 47.6646,
|
| 1118 |
+
"eval_biology_samples_per_second": 10.49,
|
| 1119 |
+
"eval_biology_steps_per_second": 2.622,
|
| 1120 |
+
"step": 1000
|
| 1121 |
+
},
|
| 1122 |
+
{
|
| 1123 |
+
"entropy": 3.7059972777962686,
|
| 1124 |
+
"epoch": 1.616,
|
| 1125 |
+
"grad_norm": 0.0159912109375,
|
| 1126 |
+
"learning_rate": 1.9980000000000002e-05,
|
| 1127 |
+
"loss": 5.0574,
|
| 1128 |
+
"mean_token_accuracy": 0.29472711179405453,
|
| 1129 |
+
"num_tokens": 19732719.0,
|
| 1130 |
+
"step": 1010
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"entropy": 3.736002130806446,
|
| 1134 |
+
"epoch": 1.6320000000000001,
|
| 1135 |
+
"grad_norm": 0.01556396484375,
|
| 1136 |
+
"learning_rate": 1.995777777777778e-05,
|
| 1137 |
+
"loss": 5.1263,
|
| 1138 |
+
"mean_token_accuracy": 0.28895843513309954,
|
| 1139 |
+
"num_tokens": 19926830.0,
|
| 1140 |
+
"step": 1020
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"entropy": 3.726553238928318,
|
| 1144 |
+
"epoch": 1.6480000000000001,
|
| 1145 |
+
"grad_norm": 0.016845703125,
|
| 1146 |
+
"learning_rate": 1.9935555555555557e-05,
|
| 1147 |
+
"loss": 5.1039,
|
| 1148 |
+
"mean_token_accuracy": 0.2898056315258145,
|
| 1149 |
+
"num_tokens": 20118800.0,
|
| 1150 |
+
"step": 1030
|
| 1151 |
+
},
|
| 1152 |
+
{
|
| 1153 |
+
"entropy": 3.7194370150566103,
|
| 1154 |
+
"epoch": 1.6640000000000001,
|
| 1155 |
+
"grad_norm": 0.017578125,
|
| 1156 |
+
"learning_rate": 1.9913333333333335e-05,
|
| 1157 |
+
"loss": 5.0616,
|
| 1158 |
+
"mean_token_accuracy": 0.29428425850346684,
|
| 1159 |
+
"num_tokens": 20320511.0,
|
| 1160 |
+
"step": 1040
|
| 1161 |
+
},
|
| 1162 |
+
{
|
| 1163 |
+
"entropy": 3.7065395385026934,
|
| 1164 |
+
"epoch": 1.6800000000000002,
|
| 1165 |
+
"grad_norm": 0.01397705078125,
|
| 1166 |
+
"learning_rate": 1.9891111111111112e-05,
|
| 1167 |
+
"loss": 5.0716,
|
| 1168 |
+
"mean_token_accuracy": 0.29314093850553036,
|
| 1169 |
+
"num_tokens": 20513393.0,
|
| 1170 |
+
"step": 1050
|
| 1171 |
+
},
|
| 1172 |
+
{
|
| 1173 |
+
"entropy": 3.7188143908977507,
|
| 1174 |
+
"epoch": 1.696,
|
| 1175 |
+
"grad_norm": 0.022705078125,
|
| 1176 |
+
"learning_rate": 1.986888888888889e-05,
|
| 1177 |
+
"loss": 5.0778,
|
| 1178 |
+
"mean_token_accuracy": 0.29205265222117305,
|
| 1179 |
+
"num_tokens": 20707237.0,
|
| 1180 |
+
"step": 1060
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"entropy": 3.7139120802283285,
|
| 1184 |
+
"epoch": 1.712,
|
| 1185 |
+
"grad_norm": 0.025146484375,
|
| 1186 |
+
"learning_rate": 1.9846666666666668e-05,
|
| 1187 |
+
"loss": 5.078,
|
| 1188 |
+
"mean_token_accuracy": 0.2915316676720977,
|
| 1189 |
+
"num_tokens": 20910419.0,
|
| 1190 |
+
"step": 1070
|
| 1191 |
+
},
|
| 1192 |
+
{
|
| 1193 |
+
"entropy": 3.723431368172169,
|
| 1194 |
+
"epoch": 1.728,
|
| 1195 |
+
"grad_norm": 0.0177001953125,
|
| 1196 |
+
"learning_rate": 1.9824444444444445e-05,
|
| 1197 |
+
"loss": 5.0998,
|
| 1198 |
+
"mean_token_accuracy": 0.2917724488303065,
|
| 1199 |
+
"num_tokens": 21107498.0,
|
| 1200 |
+
"step": 1080
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"entropy": 3.729191516339779,
|
| 1204 |
+
"epoch": 1.744,
|
| 1205 |
+
"grad_norm": 0.01373291015625,
|
| 1206 |
+
"learning_rate": 1.9802222222222226e-05,
|
| 1207 |
+
"loss": 5.0911,
|
| 1208 |
+
"mean_token_accuracy": 0.2921753362752497,
|
| 1209 |
+
"num_tokens": 21303955.0,
|
| 1210 |
+
"step": 1090
|
| 1211 |
+
},
|
| 1212 |
+
{
|
| 1213 |
+
"entropy": 3.713176865875721,
|
| 1214 |
+
"epoch": 1.76,
|
| 1215 |
+
"grad_norm": 0.023681640625,
|
| 1216 |
+
"learning_rate": 1.978e-05,
|
| 1217 |
+
"loss": 5.1136,
|
| 1218 |
+
"mean_token_accuracy": 0.2927762917242944,
|
| 1219 |
+
"num_tokens": 21499572.0,
|
| 1220 |
+
"step": 1100
|
| 1221 |
+
},
|
| 1222 |
+
{
|
| 1223 |
+
"epoch": 1.76,
|
| 1224 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 1225 |
+
"eval_biology_loss": 5.049773216247559,
|
| 1226 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 1227 |
+
"eval_biology_num_tokens": 21499572.0,
|
| 1228 |
+
"eval_biology_runtime": 47.7303,
|
| 1229 |
+
"eval_biology_samples_per_second": 10.476,
|
| 1230 |
+
"eval_biology_steps_per_second": 2.619,
|
| 1231 |
+
"step": 1100
|
| 1232 |
+
},
|
| 1233 |
+
{
|
| 1234 |
+
"entropy": 3.683187483251095,
|
| 1235 |
+
"epoch": 1.776,
|
| 1236 |
+
"grad_norm": 0.01165771484375,
|
| 1237 |
+
"learning_rate": 1.975777777777778e-05,
|
| 1238 |
+
"loss": 5.0493,
|
| 1239 |
+
"mean_token_accuracy": 0.2950046713463962,
|
| 1240 |
+
"num_tokens": 21692804.0,
|
| 1241 |
+
"step": 1110
|
| 1242 |
+
},
|
| 1243 |
+
{
|
| 1244 |
+
"entropy": 3.723648378252983,
|
| 1245 |
+
"epoch": 1.792,
|
| 1246 |
+
"grad_norm": 0.0172119140625,
|
| 1247 |
+
"learning_rate": 1.9735555555555556e-05,
|
| 1248 |
+
"loss": 5.0692,
|
| 1249 |
+
"mean_token_accuracy": 0.29330655848607423,
|
| 1250 |
+
"num_tokens": 21894218.0,
|
| 1251 |
+
"step": 1120
|
| 1252 |
+
},
|
| 1253 |
+
{
|
| 1254 |
+
"entropy": 3.680108018219471,
|
| 1255 |
+
"epoch": 1.808,
|
| 1256 |
+
"grad_norm": 0.02197265625,
|
| 1257 |
+
"learning_rate": 1.9713333333333337e-05,
|
| 1258 |
+
"loss": 5.0566,
|
| 1259 |
+
"mean_token_accuracy": 0.29332200549542903,
|
| 1260 |
+
"num_tokens": 22082522.0,
|
| 1261 |
+
"step": 1130
|
| 1262 |
+
},
|
| 1263 |
+
{
|
| 1264 |
+
"entropy": 3.7113044396042825,
|
| 1265 |
+
"epoch": 1.8239999999999998,
|
| 1266 |
+
"grad_norm": 0.0283203125,
|
| 1267 |
+
"learning_rate": 1.969111111111111e-05,
|
| 1268 |
+
"loss": 5.0721,
|
| 1269 |
+
"mean_token_accuracy": 0.29031074047088623,
|
| 1270 |
+
"num_tokens": 22278933.0,
|
| 1271 |
+
"step": 1140
|
| 1272 |
+
},
|
| 1273 |
+
{
|
| 1274 |
+
"entropy": 3.761154365539551,
|
| 1275 |
+
"epoch": 1.8399999999999999,
|
| 1276 |
+
"grad_norm": 0.0223388671875,
|
| 1277 |
+
"learning_rate": 1.9668888888888892e-05,
|
| 1278 |
+
"loss": 5.1725,
|
| 1279 |
+
"mean_token_accuracy": 0.28511819140985606,
|
| 1280 |
+
"num_tokens": 22473801.0,
|
| 1281 |
+
"step": 1150
|
| 1282 |
+
},
|
| 1283 |
+
{
|
| 1284 |
+
"entropy": 3.734527000784874,
|
| 1285 |
+
"epoch": 1.8559999999999999,
|
| 1286 |
+
"grad_norm": 0.0224609375,
|
| 1287 |
+
"learning_rate": 1.9646666666666666e-05,
|
| 1288 |
+
"loss": 5.126,
|
| 1289 |
+
"mean_token_accuracy": 0.28791883746162056,
|
| 1290 |
+
"num_tokens": 22677853.0,
|
| 1291 |
+
"step": 1160
|
| 1292 |
+
},
|
| 1293 |
+
{
|
| 1294 |
+
"entropy": 3.7064869537949563,
|
| 1295 |
+
"epoch": 1.8719999999999999,
|
| 1296 |
+
"grad_norm": 0.031494140625,
|
| 1297 |
+
"learning_rate": 1.9624444444444447e-05,
|
| 1298 |
+
"loss": 5.0564,
|
| 1299 |
+
"mean_token_accuracy": 0.29391895309090615,
|
| 1300 |
+
"num_tokens": 22874965.0,
|
| 1301 |
+
"step": 1170
|
| 1302 |
+
},
|
| 1303 |
+
{
|
| 1304 |
+
"entropy": 3.7308966740965843,
|
| 1305 |
+
"epoch": 1.888,
|
| 1306 |
+
"grad_norm": 0.013671875,
|
| 1307 |
+
"learning_rate": 1.9602222222222225e-05,
|
| 1308 |
+
"loss": 5.1087,
|
| 1309 |
+
"mean_token_accuracy": 0.28873477103188633,
|
| 1310 |
+
"num_tokens": 23068892.0,
|
| 1311 |
+
"step": 1180
|
| 1312 |
+
},
|
| 1313 |
+
{
|
| 1314 |
+
"entropy": 3.7291680380702017,
|
| 1315 |
+
"epoch": 1.904,
|
| 1316 |
+
"grad_norm": 0.020263671875,
|
| 1317 |
+
"learning_rate": 1.9580000000000002e-05,
|
| 1318 |
+
"loss": 5.1221,
|
| 1319 |
+
"mean_token_accuracy": 0.28796409014612434,
|
| 1320 |
+
"num_tokens": 23263827.0,
|
| 1321 |
+
"step": 1190
|
| 1322 |
+
},
|
| 1323 |
+
{
|
| 1324 |
+
"entropy": 3.6863365471363068,
|
| 1325 |
+
"epoch": 1.92,
|
| 1326 |
+
"grad_norm": 0.02490234375,
|
| 1327 |
+
"learning_rate": 1.955777777777778e-05,
|
| 1328 |
+
"loss": 5.0534,
|
| 1329 |
+
"mean_token_accuracy": 0.29244121424853803,
|
| 1330 |
+
"num_tokens": 23463627.0,
|
| 1331 |
+
"step": 1200
|
| 1332 |
+
},
|
| 1333 |
+
{
|
| 1334 |
+
"epoch": 1.92,
|
| 1335 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 1336 |
+
"eval_biology_loss": 5.049773216247559,
|
| 1337 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 1338 |
+
"eval_biology_num_tokens": 23463627.0,
|
| 1339 |
+
"eval_biology_runtime": 47.71,
|
| 1340 |
+
"eval_biology_samples_per_second": 10.48,
|
| 1341 |
+
"eval_biology_steps_per_second": 2.62,
|
| 1342 |
+
"step": 1200
|
| 1343 |
+
},
|
| 1344 |
+
{
|
| 1345 |
+
"entropy": 3.6975948810577393,
|
| 1346 |
+
"epoch": 1.936,
|
| 1347 |
+
"grad_norm": 0.0177001953125,
|
| 1348 |
+
"learning_rate": 1.9535555555555557e-05,
|
| 1349 |
+
"loss": 5.0404,
|
| 1350 |
+
"mean_token_accuracy": 0.29399057319387795,
|
| 1351 |
+
"num_tokens": 23660418.0,
|
| 1352 |
+
"step": 1210
|
| 1353 |
+
},
|
| 1354 |
+
{
|
| 1355 |
+
"entropy": 3.724119584262371,
|
| 1356 |
+
"epoch": 1.952,
|
| 1357 |
+
"grad_norm": 0.01214599609375,
|
| 1358 |
+
"learning_rate": 1.9513333333333335e-05,
|
| 1359 |
+
"loss": 5.0911,
|
| 1360 |
+
"mean_token_accuracy": 0.2915867816656828,
|
| 1361 |
+
"num_tokens": 23858145.0,
|
| 1362 |
+
"step": 1220
|
| 1363 |
+
},
|
| 1364 |
+
{
|
| 1365 |
+
"entropy": 3.7461824998259545,
|
| 1366 |
+
"epoch": 1.968,
|
| 1367 |
+
"grad_norm": 0.0155029296875,
|
| 1368 |
+
"learning_rate": 1.9491111111111113e-05,
|
| 1369 |
+
"loss": 5.1581,
|
| 1370 |
+
"mean_token_accuracy": 0.28603497641161085,
|
| 1371 |
+
"num_tokens": 24053364.0,
|
| 1372 |
+
"step": 1230
|
| 1373 |
+
},
|
| 1374 |
+
{
|
| 1375 |
+
"entropy": 3.7114603489637377,
|
| 1376 |
+
"epoch": 1.984,
|
| 1377 |
+
"grad_norm": 0.0157470703125,
|
| 1378 |
+
"learning_rate": 1.946888888888889e-05,
|
| 1379 |
+
"loss": 5.0847,
|
| 1380 |
+
"mean_token_accuracy": 0.2926376985386014,
|
| 1381 |
+
"num_tokens": 24249465.0,
|
| 1382 |
+
"step": 1240
|
| 1383 |
+
},
|
| 1384 |
+
{
|
| 1385 |
+
"entropy": 3.713132253289223,
|
| 1386 |
+
"epoch": 2.0,
|
| 1387 |
+
"grad_norm": 0.021728515625,
|
| 1388 |
+
"learning_rate": 1.9446666666666668e-05,
|
| 1389 |
+
"loss": 5.0979,
|
| 1390 |
+
"mean_token_accuracy": 0.29202904291450976,
|
| 1391 |
+
"num_tokens": 24442582.0,
|
| 1392 |
+
"step": 1250
|
| 1393 |
+
},
|
| 1394 |
+
{
|
| 1395 |
+
"entropy": 3.7105937510728837,
|
| 1396 |
+
"epoch": 2.016,
|
| 1397 |
+
"grad_norm": 0.020751953125,
|
| 1398 |
+
"learning_rate": 1.9424444444444446e-05,
|
| 1399 |
+
"loss": 5.1146,
|
| 1400 |
+
"mean_token_accuracy": 0.2896880513057113,
|
| 1401 |
+
"num_tokens": 24632353.0,
|
| 1402 |
+
"step": 1260
|
| 1403 |
+
},
|
| 1404 |
+
{
|
| 1405 |
+
"entropy": 3.7421246364712717,
|
| 1406 |
+
"epoch": 2.032,
|
| 1407 |
+
"grad_norm": 0.0234375,
|
| 1408 |
+
"learning_rate": 1.9402222222222223e-05,
|
| 1409 |
+
"loss": 5.156,
|
| 1410 |
+
"mean_token_accuracy": 0.2862941346131265,
|
| 1411 |
+
"num_tokens": 24822715.0,
|
| 1412 |
+
"step": 1270
|
| 1413 |
+
},
|
| 1414 |
+
{
|
| 1415 |
+
"entropy": 3.729320552945137,
|
| 1416 |
+
"epoch": 2.048,
|
| 1417 |
+
"grad_norm": 0.011962890625,
|
| 1418 |
+
"learning_rate": 1.938e-05,
|
| 1419 |
+
"loss": 5.0711,
|
| 1420 |
+
"mean_token_accuracy": 0.2908482993021607,
|
| 1421 |
+
"num_tokens": 25023118.0,
|
| 1422 |
+
"step": 1280
|
| 1423 |
+
},
|
| 1424 |
+
{
|
| 1425 |
+
"entropy": 3.716141538321972,
|
| 1426 |
+
"epoch": 2.064,
|
| 1427 |
+
"grad_norm": 0.0189208984375,
|
| 1428 |
+
"learning_rate": 1.935777777777778e-05,
|
| 1429 |
+
"loss": 5.1159,
|
| 1430 |
+
"mean_token_accuracy": 0.28827573377639054,
|
| 1431 |
+
"num_tokens": 25217414.0,
|
| 1432 |
+
"step": 1290
|
| 1433 |
+
},
|
| 1434 |
+
{
|
| 1435 |
+
"entropy": 3.7167277559638023,
|
| 1436 |
+
"epoch": 2.08,
|
| 1437 |
+
"grad_norm": 0.020263671875,
|
| 1438 |
+
"learning_rate": 1.9335555555555556e-05,
|
| 1439 |
+
"loss": 5.091,
|
| 1440 |
+
"mean_token_accuracy": 0.2915657116100192,
|
| 1441 |
+
"num_tokens": 25408961.0,
|
| 1442 |
+
"step": 1300
|
| 1443 |
+
},
|
| 1444 |
+
{
|
| 1445 |
+
"epoch": 2.08,
|
| 1446 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 1447 |
+
"eval_biology_loss": 5.049773216247559,
|
| 1448 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 1449 |
+
"eval_biology_num_tokens": 25408961.0,
|
| 1450 |
+
"eval_biology_runtime": 47.587,
|
| 1451 |
+
"eval_biology_samples_per_second": 10.507,
|
| 1452 |
+
"eval_biology_steps_per_second": 2.627,
|
| 1453 |
+
"step": 1300
|
| 1454 |
+
},
|
| 1455 |
+
{
|
| 1456 |
+
"entropy": 3.714424678683281,
|
| 1457 |
+
"epoch": 2.096,
|
| 1458 |
+
"grad_norm": 0.0184326171875,
|
| 1459 |
+
"learning_rate": 1.9313333333333334e-05,
|
| 1460 |
+
"loss": 5.0943,
|
| 1461 |
+
"mean_token_accuracy": 0.29086006721481683,
|
| 1462 |
+
"num_tokens": 25600511.0,
|
| 1463 |
+
"step": 1310
|
| 1464 |
+
},
|
| 1465 |
+
{
|
| 1466 |
+
"entropy": 3.743735647201538,
|
| 1467 |
+
"epoch": 2.112,
|
| 1468 |
+
"grad_norm": 0.01531982421875,
|
| 1469 |
+
"learning_rate": 1.9291111111111115e-05,
|
| 1470 |
+
"loss": 5.107,
|
| 1471 |
+
"mean_token_accuracy": 0.2900062766857445,
|
| 1472 |
+
"num_tokens": 25796565.0,
|
| 1473 |
+
"step": 1320
|
| 1474 |
+
},
|
| 1475 |
+
{
|
| 1476 |
+
"entropy": 3.711001531779766,
|
| 1477 |
+
"epoch": 2.128,
|
| 1478 |
+
"grad_norm": 0.016845703125,
|
| 1479 |
+
"learning_rate": 1.926888888888889e-05,
|
| 1480 |
+
"loss": 5.0988,
|
| 1481 |
+
"mean_token_accuracy": 0.2924064252525568,
|
| 1482 |
+
"num_tokens": 25991156.0,
|
| 1483 |
+
"step": 1330
|
| 1484 |
+
},
|
| 1485 |
+
{
|
| 1486 |
+
"entropy": 3.698951078951359,
|
| 1487 |
+
"epoch": 2.144,
|
| 1488 |
+
"grad_norm": 0.01611328125,
|
| 1489 |
+
"learning_rate": 1.924666666666667e-05,
|
| 1490 |
+
"loss": 5.063,
|
| 1491 |
+
"mean_token_accuracy": 0.29314082926139234,
|
| 1492 |
+
"num_tokens": 26193237.0,
|
| 1493 |
+
"step": 1340
|
| 1494 |
+
},
|
| 1495 |
+
{
|
| 1496 |
+
"entropy": 3.7248923525214197,
|
| 1497 |
+
"epoch": 2.16,
|
| 1498 |
+
"grad_norm": 0.0264892578125,
|
| 1499 |
+
"learning_rate": 1.9224444444444444e-05,
|
| 1500 |
+
"loss": 5.0923,
|
| 1501 |
+
"mean_token_accuracy": 0.29320395886898043,
|
| 1502 |
+
"num_tokens": 26387993.0,
|
| 1503 |
+
"step": 1350
|
| 1504 |
+
},
|
| 1505 |
+
{
|
| 1506 |
+
"entropy": 3.7421302527189253,
|
| 1507 |
+
"epoch": 2.176,
|
| 1508 |
+
"grad_norm": 0.014404296875,
|
| 1509 |
+
"learning_rate": 1.9202222222222225e-05,
|
| 1510 |
+
"loss": 5.1362,
|
| 1511 |
+
"mean_token_accuracy": 0.287891149520874,
|
| 1512 |
+
"num_tokens": 26585269.0,
|
| 1513 |
+
"step": 1360
|
| 1514 |
+
},
|
| 1515 |
+
{
|
| 1516 |
+
"entropy": 3.7373417228460313,
|
| 1517 |
+
"epoch": 2.192,
|
| 1518 |
+
"grad_norm": 0.019775390625,
|
| 1519 |
+
"learning_rate": 1.918e-05,
|
| 1520 |
+
"loss": 5.099,
|
| 1521 |
+
"mean_token_accuracy": 0.29109739176928995,
|
| 1522 |
+
"num_tokens": 26776318.0,
|
| 1523 |
+
"step": 1370
|
| 1524 |
+
},
|
| 1525 |
+
{
|
| 1526 |
+
"entropy": 3.7420630186796187,
|
| 1527 |
+
"epoch": 2.208,
|
| 1528 |
+
"grad_norm": 0.02490234375,
|
| 1529 |
+
"learning_rate": 1.915777777777778e-05,
|
| 1530 |
+
"loss": 5.1231,
|
| 1531 |
+
"mean_token_accuracy": 0.28790645729750397,
|
| 1532 |
+
"num_tokens": 26974420.0,
|
| 1533 |
+
"step": 1380
|
| 1534 |
+
},
|
| 1535 |
+
{
|
| 1536 |
+
"entropy": 3.735623452067375,
|
| 1537 |
+
"epoch": 2.224,
|
| 1538 |
+
"grad_norm": 0.0157470703125,
|
| 1539 |
+
"learning_rate": 1.9135555555555555e-05,
|
| 1540 |
+
"loss": 5.1347,
|
| 1541 |
+
"mean_token_accuracy": 0.2884402872994542,
|
| 1542 |
+
"num_tokens": 27167577.0,
|
| 1543 |
+
"step": 1390
|
| 1544 |
+
},
|
| 1545 |
+
{
|
| 1546 |
+
"entropy": 3.7288005337119103,
|
| 1547 |
+
"epoch": 2.24,
|
| 1548 |
+
"grad_norm": 0.01324462890625,
|
| 1549 |
+
"learning_rate": 1.9113333333333336e-05,
|
| 1550 |
+
"loss": 5.0568,
|
| 1551 |
+
"mean_token_accuracy": 0.2936669984832406,
|
| 1552 |
+
"num_tokens": 27364189.0,
|
| 1553 |
+
"step": 1400
|
| 1554 |
+
},
|
| 1555 |
+
{
|
| 1556 |
+
"epoch": 2.24,
|
| 1557 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 1558 |
+
"eval_biology_loss": 5.049773216247559,
|
| 1559 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 1560 |
+
"eval_biology_num_tokens": 27364189.0,
|
| 1561 |
+
"eval_biology_runtime": 47.642,
|
| 1562 |
+
"eval_biology_samples_per_second": 10.495,
|
| 1563 |
+
"eval_biology_steps_per_second": 2.624,
|
| 1564 |
+
"step": 1400
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"entropy": 3.6691079929471018,
|
| 1568 |
+
"epoch": 2.2560000000000002,
|
| 1569 |
+
"grad_norm": 0.0191650390625,
|
| 1570 |
+
"learning_rate": 1.9091111111111113e-05,
|
| 1571 |
+
"loss": 5.0664,
|
| 1572 |
+
"mean_token_accuracy": 0.2951836409047246,
|
| 1573 |
+
"num_tokens": 27557387.0,
|
| 1574 |
+
"step": 1410
|
| 1575 |
+
},
|
| 1576 |
+
{
|
| 1577 |
+
"entropy": 3.7611682564020157,
|
| 1578 |
+
"epoch": 2.2720000000000002,
|
| 1579 |
+
"grad_norm": 0.021728515625,
|
| 1580 |
+
"learning_rate": 1.906888888888889e-05,
|
| 1581 |
+
"loss": 5.152,
|
| 1582 |
+
"mean_token_accuracy": 0.28709178091958165,
|
| 1583 |
+
"num_tokens": 27755725.0,
|
| 1584 |
+
"step": 1420
|
| 1585 |
+
},
|
| 1586 |
+
{
|
| 1587 |
+
"entropy": 3.778307482600212,
|
| 1588 |
+
"epoch": 2.288,
|
| 1589 |
+
"grad_norm": 0.0189208984375,
|
| 1590 |
+
"learning_rate": 1.904666666666667e-05,
|
| 1591 |
+
"loss": 5.1678,
|
| 1592 |
+
"mean_token_accuracy": 0.28473026901483534,
|
| 1593 |
+
"num_tokens": 27950694.0,
|
| 1594 |
+
"step": 1430
|
| 1595 |
+
},
|
| 1596 |
+
{
|
| 1597 |
+
"entropy": 3.7009392485022543,
|
| 1598 |
+
"epoch": 2.304,
|
| 1599 |
+
"grad_norm": 0.016845703125,
|
| 1600 |
+
"learning_rate": 1.9024444444444446e-05,
|
| 1601 |
+
"loss": 5.0617,
|
| 1602 |
+
"mean_token_accuracy": 0.29399854615330695,
|
| 1603 |
+
"num_tokens": 28150719.0,
|
| 1604 |
+
"step": 1440
|
| 1605 |
+
},
|
| 1606 |
+
{
|
| 1607 |
+
"entropy": 3.709285947680473,
|
| 1608 |
+
"epoch": 2.32,
|
| 1609 |
+
"grad_norm": 0.01611328125,
|
| 1610 |
+
"learning_rate": 1.9002222222222224e-05,
|
| 1611 |
+
"loss": 5.0994,
|
| 1612 |
+
"mean_token_accuracy": 0.29222611617296934,
|
| 1613 |
+
"num_tokens": 28348652.0,
|
| 1614 |
+
"step": 1450
|
| 1615 |
+
},
|
| 1616 |
+
{
|
| 1617 |
+
"entropy": 3.718844693899155,
|
| 1618 |
+
"epoch": 2.336,
|
| 1619 |
+
"grad_norm": 0.0157470703125,
|
| 1620 |
+
"learning_rate": 1.898e-05,
|
| 1621 |
+
"loss": 5.09,
|
| 1622 |
+
"mean_token_accuracy": 0.2933342828415334,
|
| 1623 |
+
"num_tokens": 28542945.0,
|
| 1624 |
+
"step": 1460
|
| 1625 |
+
},
|
| 1626 |
+
{
|
| 1627 |
+
"entropy": 3.689019551873207,
|
| 1628 |
+
"epoch": 2.352,
|
| 1629 |
+
"grad_norm": 0.0216064453125,
|
| 1630 |
+
"learning_rate": 1.895777777777778e-05,
|
| 1631 |
+
"loss": 5.0641,
|
| 1632 |
+
"mean_token_accuracy": 0.292084741499275,
|
| 1633 |
+
"num_tokens": 28731927.0,
|
| 1634 |
+
"step": 1470
|
| 1635 |
+
},
|
| 1636 |
+
{
|
| 1637 |
+
"entropy": 3.686488929390907,
|
| 1638 |
+
"epoch": 2.368,
|
| 1639 |
+
"grad_norm": 0.01416015625,
|
| 1640 |
+
"learning_rate": 1.8935555555555556e-05,
|
| 1641 |
+
"loss": 5.0355,
|
| 1642 |
+
"mean_token_accuracy": 0.29083675481379034,
|
| 1643 |
+
"num_tokens": 28929298.0,
|
| 1644 |
+
"step": 1480
|
| 1645 |
+
},
|
| 1646 |
+
{
|
| 1647 |
+
"entropy": 3.7178502827882767,
|
| 1648 |
+
"epoch": 2.384,
|
| 1649 |
+
"grad_norm": 0.0184326171875,
|
| 1650 |
+
"learning_rate": 1.8913333333333334e-05,
|
| 1651 |
+
"loss": 5.1081,
|
| 1652 |
+
"mean_token_accuracy": 0.29000213257968427,
|
| 1653 |
+
"num_tokens": 29121142.0,
|
| 1654 |
+
"step": 1490
|
| 1655 |
+
},
|
| 1656 |
+
{
|
| 1657 |
+
"entropy": 3.709418612718582,
|
| 1658 |
+
"epoch": 2.4,
|
| 1659 |
+
"grad_norm": 0.013671875,
|
| 1660 |
+
"learning_rate": 1.8891111111111115e-05,
|
| 1661 |
+
"loss": 5.0599,
|
| 1662 |
+
"mean_token_accuracy": 0.29317397633567455,
|
| 1663 |
+
"num_tokens": 29317919.0,
|
| 1664 |
+
"step": 1500
|
| 1665 |
+
},
|
| 1666 |
+
{
|
| 1667 |
+
"epoch": 2.4,
|
| 1668 |
+
"eval_biology_entropy": 3.665779479980469,
|
| 1669 |
+
"eval_biology_loss": 5.049773216247559,
|
| 1670 |
+
"eval_biology_mean_token_accuracy": 0.29773494935035705,
|
| 1671 |
+
"eval_biology_num_tokens": 29317919.0,
|
| 1672 |
+
"eval_biology_runtime": 47.6489,
|
| 1673 |
+
"eval_biology_samples_per_second": 10.493,
|
| 1674 |
+
"eval_biology_steps_per_second": 2.623,
|
| 1675 |
+
"step": 1500
|
| 1676 |
+
}
|
| 1677 |
+
],
|
| 1678 |
+
"logging_steps": 10,
|
| 1679 |
+
"max_steps": 10000,
|
| 1680 |
+
"num_input_tokens_seen": 0,
|
| 1681 |
+
"num_train_epochs": 16,
|
| 1682 |
+
"save_steps": 500,
|
| 1683 |
+
"stateful_callbacks": {
|
| 1684 |
+
"TrainerControl": {
|
| 1685 |
+
"args": {
|
| 1686 |
+
"should_epoch_stop": false,
|
| 1687 |
+
"should_evaluate": false,
|
| 1688 |
+
"should_log": false,
|
| 1689 |
+
"should_save": true,
|
| 1690 |
+
"should_training_stop": false
|
| 1691 |
+
},
|
| 1692 |
+
"attributes": {}
|
| 1693 |
+
}
|
| 1694 |
+
},
|
| 1695 |
+
"total_flos": 3.182272592862376e+18,
|
| 1696 |
+
"train_batch_size": 4,
|
| 1697 |
+
"trial_name": null,
|
| 1698 |
+
"trial_params": null
|
| 1699 |
+
}
|
checkpoint-1500/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2aed5ae3f8efda159a1a46bcd744d079d1c322930322ae143f51aff11c274063
|
| 3 |
+
size 6417
|