Upload 26 files
Browse files- .gitattributes +0 -1
- README.md +46 -0
- config.json +26 -0
- generation_config.json +6 -0
- model-00001-of-00013.safetensors +3 -0
- model-00002-of-00013.safetensors +3 -0
- model-00003-of-00013.safetensors +3 -0
- model-00004-of-00013.safetensors +3 -0
- model-00005-of-00013.safetensors +3 -0
- model-00006-of-00013.safetensors +3 -0
- model-00007-of-00013.safetensors +3 -0
- model-00008-of-00013.safetensors +3 -0
- model-00009-of-00013.safetensors +3 -0
- model-00010-of-00013.safetensors +3 -0
- model-00011-of-00013.safetensors +3 -0
- model-00012-of-00013.safetensors +3 -0
- model-00013-of-00013.safetensors +3 -0
- model.safetensors.index.json +431 -0
- pytorch_model-00001-of-00002.bin +3 -0
- pytorch_model-00002-of-00002.bin +3 -0
- pytorch_model.bin.index.json +431 -0
- special_tokens_map.json +11 -0
- tokenizer.json +0 -0
- tokenizer_config.json +7 -0
- trainer_state.json +64 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
@@ -25,7 +25,6 @@
|
|
25 |
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
26 |
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
27 |
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
28 |
-
*.tar filter=lfs diff=lfs merge=lfs -text
|
29 |
*.tflite filter=lfs diff=lfs merge=lfs -text
|
30 |
*.tgz filter=lfs diff=lfs merge=lfs -text
|
31 |
*.wasm filter=lfs diff=lfs merge=lfs -text
|
|
|
25 |
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
26 |
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
27 |
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
|
|
28 |
*.tflite filter=lfs diff=lfs merge=lfs -text
|
29 |
*.tgz filter=lfs diff=lfs merge=lfs -text
|
30 |
*.wasm filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
tags:
|
4 |
+
- generated_from_trainer
|
5 |
+
- polyglot-ko
|
6 |
+
- gpt-neox
|
7 |
+
- KoAlpaca
|
8 |
+
model-index:
|
9 |
+
- name: KoAlpaca-Polyglot-5.8B
|
10 |
+
results: []
|
11 |
+
language:
|
12 |
+
- ko
|
13 |
+
datasets:
|
14 |
+
- KoAlpaca-v1.1b
|
15 |
+
pipeline_tag: text-generation
|
16 |
+
---
|
17 |
+
|
18 |
+
Update @ 2023.06.01
|
19 |
+
|
20 |
+
- Add Safetensor sharded model weight (max shard = 1GB)
|
21 |
+
|
22 |
+
# KoAlpaca-Polyglot-5.8B (v1.1b)
|
23 |
+
|
24 |
+
This model is a fine-tuned version of [EleutherAI/polyglot-ko-5.8b](https://huggingface.co/EleutherAI/polyglot-ko-5.8b) on a KoAlpaca Dataset v1.1b
|
25 |
+
|
26 |
+
Detail Codes are available at [KoAlpaca Github Repository](https://github.com/Beomi/KoAlpaca)
|
27 |
+
|
28 |
+
## Training procedure
|
29 |
+
|
30 |
+
### Training hyperparameters
|
31 |
+
|
32 |
+
The following hyperparameters were used during training:
|
33 |
+
- learning_rate: 5e-05
|
34 |
+
- train_batch_size: 2
|
35 |
+
- seed: 42
|
36 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
37 |
+
- lr_scheduler_type: linear
|
38 |
+
- num_epochs: 2.0
|
39 |
+
- mixed_precision_training: Native AMP
|
40 |
+
|
41 |
+
### Framework versions
|
42 |
+
|
43 |
+
- Transformers 4.29.0.dev0
|
44 |
+
- Pytorch 2.0.0+cu117
|
45 |
+
- Datasets 2.10.1
|
46 |
+
- Tokenizers 0.13.2
|
config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "beomi/KoAlpaca-Polyglot-5.8B",
|
3 |
+
"architectures": [
|
4 |
+
"GPTNeoXForCausalLM"
|
5 |
+
],
|
6 |
+
"bos_token_id": 0,
|
7 |
+
"eos_token_id": 0,
|
8 |
+
"hidden_act": "gelu",
|
9 |
+
"hidden_size": 4096,
|
10 |
+
"initializer_range": 0.02,
|
11 |
+
"intermediate_size": 16384,
|
12 |
+
"layer_norm_eps": 1e-05,
|
13 |
+
"max_position_embeddings": 2048,
|
14 |
+
"model_type": "gpt_neox",
|
15 |
+
"num_attention_heads": 16,
|
16 |
+
"num_hidden_layers": 28,
|
17 |
+
"num_steps": "global_step320000",
|
18 |
+
"rotary_emb_base": 10000,
|
19 |
+
"rotary_pct": 0.25,
|
20 |
+
"tie_word_embeddings": false,
|
21 |
+
"torch_dtype": "float16",
|
22 |
+
"transformers_version": "4.29.0.dev0",
|
23 |
+
"use_cache": true,
|
24 |
+
"use_parallel_residual": true,
|
25 |
+
"vocab_size": 30080
|
26 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 0,
|
4 |
+
"eos_token_id": 2,
|
5 |
+
"transformers_version": "4.29.0.dev0"
|
6 |
+
}
|
model-00001-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c8a1f356a59d738bcb97e3c3aa5f89f584da7cab0063db73b95eb056f8049398
|
3 |
+
size 134
|
model-00002-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:450875c20ff67f7931aabff2df6dc0dcc3ce40ad07f520c60defa9d042dc0f82
|
3 |
+
size 134
|
model-00003-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1f51e22b62abbd4d82b13718b23d604929d3791aefcd1c0886406634997233b5
|
3 |
+
size 134
|
model-00004-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5730115f2923b236955f0092560bec728b90e772c5d29f0cd160ed9813e47297
|
3 |
+
size 134
|
model-00005-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eaead070d919596a22cebbb53f70e000c6d733ef1a8c3eadd0c69f53383033b9
|
3 |
+
size 134
|
model-00006-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9558092e24ced045ef96cfe45d81a87184ebabf8d208e9eb303e4a50d09f154a
|
3 |
+
size 134
|
model-00007-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:83e260b2ece13b9faa00f1e9c0b480228637bced5a3e9200cad9db48f3468faf
|
3 |
+
size 134
|
model-00008-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:79a745f96edf1ae8706c4ed3b1922c7f6163687e3b1a2a3ee1fee489370ebb65
|
3 |
+
size 134
|
model-00009-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a13236131e610ae7fa1e8a187feeb0c12d8b3b1d9aa0f74451454ece1100b9b2
|
3 |
+
size 134
|
model-00010-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:81251eb4e4fd3a808a03ded7e545c486c633649e640fde58724ae7f9385f2730
|
3 |
+
size 134
|
model-00011-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e736dc83893c65628454dd2865508af017a5d0e9a5c8a6297e3419b4691596a9
|
3 |
+
size 134
|
model-00012-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:956229ad6417bad15cdc9555f862adefdff50ff589af7be3f670cc8e15ca8576
|
3 |
+
size 134
|
model-00013-of-00013.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:25f114c522c0416ed191c309f811029ad62ea1f6815203962452996adeeb61b8
|
3 |
+
size 134
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,431 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 11784801848.0
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"embed_out.weight": "model-00013-of-00013.safetensors",
|
7 |
+
"gpt_neox.embed_in.weight": "model-00001-of-00013.safetensors",
|
8 |
+
"gpt_neox.final_layer_norm.bias": "model-00013-of-00013.safetensors",
|
9 |
+
"gpt_neox.final_layer_norm.weight": "model-00013-of-00013.safetensors",
|
10 |
+
"gpt_neox.layers.0.attention.bias": "model-00001-of-00013.safetensors",
|
11 |
+
"gpt_neox.layers.0.attention.dense.bias": "model-00001-of-00013.safetensors",
|
12 |
+
"gpt_neox.layers.0.attention.dense.weight": "model-00001-of-00013.safetensors",
|
13 |
+
"gpt_neox.layers.0.attention.masked_bias": "model-00001-of-00013.safetensors",
|
14 |
+
"gpt_neox.layers.0.attention.query_key_value.bias": "model-00001-of-00013.safetensors",
|
15 |
+
"gpt_neox.layers.0.attention.query_key_value.weight": "model-00001-of-00013.safetensors",
|
16 |
+
"gpt_neox.layers.0.attention.rotary_emb.inv_freq": "model-00001-of-00013.safetensors",
|
17 |
+
"gpt_neox.layers.0.input_layernorm.bias": "model-00001-of-00013.safetensors",
|
18 |
+
"gpt_neox.layers.0.input_layernorm.weight": "model-00001-of-00013.safetensors",
|
19 |
+
"gpt_neox.layers.0.mlp.dense_4h_to_h.bias": "model-00001-of-00013.safetensors",
|
20 |
+
"gpt_neox.layers.0.mlp.dense_4h_to_h.weight": "model-00001-of-00013.safetensors",
|
21 |
+
"gpt_neox.layers.0.mlp.dense_h_to_4h.bias": "model-00001-of-00013.safetensors",
|
22 |
+
"gpt_neox.layers.0.mlp.dense_h_to_4h.weight": "model-00001-of-00013.safetensors",
|
23 |
+
"gpt_neox.layers.0.post_attention_layernorm.bias": "model-00001-of-00013.safetensors",
|
24 |
+
"gpt_neox.layers.0.post_attention_layernorm.weight": "model-00001-of-00013.safetensors",
|
25 |
+
"gpt_neox.layers.1.attention.bias": "model-00001-of-00013.safetensors",
|
26 |
+
"gpt_neox.layers.1.attention.dense.bias": "model-00001-of-00013.safetensors",
|
27 |
+
"gpt_neox.layers.1.attention.dense.weight": "model-00001-of-00013.safetensors",
|
28 |
+
"gpt_neox.layers.1.attention.masked_bias": "model-00001-of-00013.safetensors",
|
29 |
+
"gpt_neox.layers.1.attention.query_key_value.bias": "model-00001-of-00013.safetensors",
|
30 |
+
"gpt_neox.layers.1.attention.query_key_value.weight": "model-00001-of-00013.safetensors",
|
31 |
+
"gpt_neox.layers.1.attention.rotary_emb.inv_freq": "model-00001-of-00013.safetensors",
|
32 |
+
"gpt_neox.layers.1.input_layernorm.bias": "model-00001-of-00013.safetensors",
|
33 |
+
"gpt_neox.layers.1.input_layernorm.weight": "model-00001-of-00013.safetensors",
|
34 |
+
"gpt_neox.layers.1.mlp.dense_4h_to_h.bias": "model-00002-of-00013.safetensors",
|
35 |
+
"gpt_neox.layers.1.mlp.dense_4h_to_h.weight": "model-00002-of-00013.safetensors",
|
36 |
+
"gpt_neox.layers.1.mlp.dense_h_to_4h.bias": "model-00001-of-00013.safetensors",
|
37 |
+
"gpt_neox.layers.1.mlp.dense_h_to_4h.weight": "model-00001-of-00013.safetensors",
|
38 |
+
"gpt_neox.layers.1.post_attention_layernorm.bias": "model-00001-of-00013.safetensors",
|
39 |
+
"gpt_neox.layers.1.post_attention_layernorm.weight": "model-00001-of-00013.safetensors",
|
40 |
+
"gpt_neox.layers.10.attention.bias": "model-00005-of-00013.safetensors",
|
41 |
+
"gpt_neox.layers.10.attention.dense.bias": "model-00005-of-00013.safetensors",
|
42 |
+
"gpt_neox.layers.10.attention.dense.weight": "model-00005-of-00013.safetensors",
|
43 |
+
"gpt_neox.layers.10.attention.masked_bias": "model-00005-of-00013.safetensors",
|
44 |
+
"gpt_neox.layers.10.attention.query_key_value.bias": "model-00005-of-00013.safetensors",
|
45 |
+
"gpt_neox.layers.10.attention.query_key_value.weight": "model-00005-of-00013.safetensors",
|
46 |
+
"gpt_neox.layers.10.attention.rotary_emb.inv_freq": "model-00005-of-00013.safetensors",
|
47 |
+
"gpt_neox.layers.10.input_layernorm.bias": "model-00005-of-00013.safetensors",
|
48 |
+
"gpt_neox.layers.10.input_layernorm.weight": "model-00005-of-00013.safetensors",
|
49 |
+
"gpt_neox.layers.10.mlp.dense_4h_to_h.bias": "model-00005-of-00013.safetensors",
|
50 |
+
"gpt_neox.layers.10.mlp.dense_4h_to_h.weight": "model-00005-of-00013.safetensors",
|
51 |
+
"gpt_neox.layers.10.mlp.dense_h_to_4h.bias": "model-00005-of-00013.safetensors",
|
52 |
+
"gpt_neox.layers.10.mlp.dense_h_to_4h.weight": "model-00005-of-00013.safetensors",
|
53 |
+
"gpt_neox.layers.10.post_attention_layernorm.bias": "model-00005-of-00013.safetensors",
|
54 |
+
"gpt_neox.layers.10.post_attention_layernorm.weight": "model-00005-of-00013.safetensors",
|
55 |
+
"gpt_neox.layers.11.attention.bias": "model-00005-of-00013.safetensors",
|
56 |
+
"gpt_neox.layers.11.attention.dense.bias": "model-00006-of-00013.safetensors",
|
57 |
+
"gpt_neox.layers.11.attention.dense.weight": "model-00006-of-00013.safetensors",
|
58 |
+
"gpt_neox.layers.11.attention.masked_bias": "model-00005-of-00013.safetensors",
|
59 |
+
"gpt_neox.layers.11.attention.query_key_value.bias": "model-00006-of-00013.safetensors",
|
60 |
+
"gpt_neox.layers.11.attention.query_key_value.weight": "model-00006-of-00013.safetensors",
|
61 |
+
"gpt_neox.layers.11.attention.rotary_emb.inv_freq": "model-00005-of-00013.safetensors",
|
62 |
+
"gpt_neox.layers.11.input_layernorm.bias": "model-00005-of-00013.safetensors",
|
63 |
+
"gpt_neox.layers.11.input_layernorm.weight": "model-00005-of-00013.safetensors",
|
64 |
+
"gpt_neox.layers.11.mlp.dense_4h_to_h.bias": "model-00006-of-00013.safetensors",
|
65 |
+
"gpt_neox.layers.11.mlp.dense_4h_to_h.weight": "model-00006-of-00013.safetensors",
|
66 |
+
"gpt_neox.layers.11.mlp.dense_h_to_4h.bias": "model-00006-of-00013.safetensors",
|
67 |
+
"gpt_neox.layers.11.mlp.dense_h_to_4h.weight": "model-00006-of-00013.safetensors",
|
68 |
+
"gpt_neox.layers.11.post_attention_layernorm.bias": "model-00005-of-00013.safetensors",
|
69 |
+
"gpt_neox.layers.11.post_attention_layernorm.weight": "model-00005-of-00013.safetensors",
|
70 |
+
"gpt_neox.layers.12.attention.bias": "model-00006-of-00013.safetensors",
|
71 |
+
"gpt_neox.layers.12.attention.dense.bias": "model-00006-of-00013.safetensors",
|
72 |
+
"gpt_neox.layers.12.attention.dense.weight": "model-00006-of-00013.safetensors",
|
73 |
+
"gpt_neox.layers.12.attention.masked_bias": "model-00006-of-00013.safetensors",
|
74 |
+
"gpt_neox.layers.12.attention.query_key_value.bias": "model-00006-of-00013.safetensors",
|
75 |
+
"gpt_neox.layers.12.attention.query_key_value.weight": "model-00006-of-00013.safetensors",
|
76 |
+
"gpt_neox.layers.12.attention.rotary_emb.inv_freq": "model-00006-of-00013.safetensors",
|
77 |
+
"gpt_neox.layers.12.input_layernorm.bias": "model-00006-of-00013.safetensors",
|
78 |
+
"gpt_neox.layers.12.input_layernorm.weight": "model-00006-of-00013.safetensors",
|
79 |
+
"gpt_neox.layers.12.mlp.dense_4h_to_h.bias": "model-00006-of-00013.safetensors",
|
80 |
+
"gpt_neox.layers.12.mlp.dense_4h_to_h.weight": "model-00006-of-00013.safetensors",
|
81 |
+
"gpt_neox.layers.12.mlp.dense_h_to_4h.bias": "model-00006-of-00013.safetensors",
|
82 |
+
"gpt_neox.layers.12.mlp.dense_h_to_4h.weight": "model-00006-of-00013.safetensors",
|
83 |
+
"gpt_neox.layers.12.post_attention_layernorm.bias": "model-00006-of-00013.safetensors",
|
84 |
+
"gpt_neox.layers.12.post_attention_layernorm.weight": "model-00006-of-00013.safetensors",
|
85 |
+
"gpt_neox.layers.13.attention.bias": "model-00006-of-00013.safetensors",
|
86 |
+
"gpt_neox.layers.13.attention.dense.bias": "model-00006-of-00013.safetensors",
|
87 |
+
"gpt_neox.layers.13.attention.dense.weight": "model-00006-of-00013.safetensors",
|
88 |
+
"gpt_neox.layers.13.attention.masked_bias": "model-00006-of-00013.safetensors",
|
89 |
+
"gpt_neox.layers.13.attention.query_key_value.bias": "model-00006-of-00013.safetensors",
|
90 |
+
"gpt_neox.layers.13.attention.query_key_value.weight": "model-00006-of-00013.safetensors",
|
91 |
+
"gpt_neox.layers.13.attention.rotary_emb.inv_freq": "model-00006-of-00013.safetensors",
|
92 |
+
"gpt_neox.layers.13.input_layernorm.bias": "model-00006-of-00013.safetensors",
|
93 |
+
"gpt_neox.layers.13.input_layernorm.weight": "model-00006-of-00013.safetensors",
|
94 |
+
"gpt_neox.layers.13.mlp.dense_4h_to_h.bias": "model-00007-of-00013.safetensors",
|
95 |
+
"gpt_neox.layers.13.mlp.dense_4h_to_h.weight": "model-00007-of-00013.safetensors",
|
96 |
+
"gpt_neox.layers.13.mlp.dense_h_to_4h.bias": "model-00007-of-00013.safetensors",
|
97 |
+
"gpt_neox.layers.13.mlp.dense_h_to_4h.weight": "model-00007-of-00013.safetensors",
|
98 |
+
"gpt_neox.layers.13.post_attention_layernorm.bias": "model-00006-of-00013.safetensors",
|
99 |
+
"gpt_neox.layers.13.post_attention_layernorm.weight": "model-00006-of-00013.safetensors",
|
100 |
+
"gpt_neox.layers.14.attention.bias": "model-00007-of-00013.safetensors",
|
101 |
+
"gpt_neox.layers.14.attention.dense.bias": "model-00007-of-00013.safetensors",
|
102 |
+
"gpt_neox.layers.14.attention.dense.weight": "model-00007-of-00013.safetensors",
|
103 |
+
"gpt_neox.layers.14.attention.masked_bias": "model-00007-of-00013.safetensors",
|
104 |
+
"gpt_neox.layers.14.attention.query_key_value.bias": "model-00007-of-00013.safetensors",
|
105 |
+
"gpt_neox.layers.14.attention.query_key_value.weight": "model-00007-of-00013.safetensors",
|
106 |
+
"gpt_neox.layers.14.attention.rotary_emb.inv_freq": "model-00007-of-00013.safetensors",
|
107 |
+
"gpt_neox.layers.14.input_layernorm.bias": "model-00007-of-00013.safetensors",
|
108 |
+
"gpt_neox.layers.14.input_layernorm.weight": "model-00007-of-00013.safetensors",
|
109 |
+
"gpt_neox.layers.14.mlp.dense_4h_to_h.bias": "model-00007-of-00013.safetensors",
|
110 |
+
"gpt_neox.layers.14.mlp.dense_4h_to_h.weight": "model-00007-of-00013.safetensors",
|
111 |
+
"gpt_neox.layers.14.mlp.dense_h_to_4h.bias": "model-00007-of-00013.safetensors",
|
112 |
+
"gpt_neox.layers.14.mlp.dense_h_to_4h.weight": "model-00007-of-00013.safetensors",
|
113 |
+
"gpt_neox.layers.14.post_attention_layernorm.bias": "model-00007-of-00013.safetensors",
|
114 |
+
"gpt_neox.layers.14.post_attention_layernorm.weight": "model-00007-of-00013.safetensors",
|
115 |
+
"gpt_neox.layers.15.attention.bias": "model-00007-of-00013.safetensors",
|
116 |
+
"gpt_neox.layers.15.attention.dense.bias": "model-00007-of-00013.safetensors",
|
117 |
+
"gpt_neox.layers.15.attention.dense.weight": "model-00007-of-00013.safetensors",
|
118 |
+
"gpt_neox.layers.15.attention.masked_bias": "model-00007-of-00013.safetensors",
|
119 |
+
"gpt_neox.layers.15.attention.query_key_value.bias": "model-00007-of-00013.safetensors",
|
120 |
+
"gpt_neox.layers.15.attention.query_key_value.weight": "model-00007-of-00013.safetensors",
|
121 |
+
"gpt_neox.layers.15.attention.rotary_emb.inv_freq": "model-00007-of-00013.safetensors",
|
122 |
+
"gpt_neox.layers.15.input_layernorm.bias": "model-00007-of-00013.safetensors",
|
123 |
+
"gpt_neox.layers.15.input_layernorm.weight": "model-00007-of-00013.safetensors",
|
124 |
+
"gpt_neox.layers.15.mlp.dense_4h_to_h.bias": "model-00008-of-00013.safetensors",
|
125 |
+
"gpt_neox.layers.15.mlp.dense_4h_to_h.weight": "model-00008-of-00013.safetensors",
|
126 |
+
"gpt_neox.layers.15.mlp.dense_h_to_4h.bias": "model-00007-of-00013.safetensors",
|
127 |
+
"gpt_neox.layers.15.mlp.dense_h_to_4h.weight": "model-00007-of-00013.safetensors",
|
128 |
+
"gpt_neox.layers.15.post_attention_layernorm.bias": "model-00007-of-00013.safetensors",
|
129 |
+
"gpt_neox.layers.15.post_attention_layernorm.weight": "model-00007-of-00013.safetensors",
|
130 |
+
"gpt_neox.layers.16.attention.bias": "model-00008-of-00013.safetensors",
|
131 |
+
"gpt_neox.layers.16.attention.dense.bias": "model-00008-of-00013.safetensors",
|
132 |
+
"gpt_neox.layers.16.attention.dense.weight": "model-00008-of-00013.safetensors",
|
133 |
+
"gpt_neox.layers.16.attention.masked_bias": "model-00008-of-00013.safetensors",
|
134 |
+
"gpt_neox.layers.16.attention.query_key_value.bias": "model-00008-of-00013.safetensors",
|
135 |
+
"gpt_neox.layers.16.attention.query_key_value.weight": "model-00008-of-00013.safetensors",
|
136 |
+
"gpt_neox.layers.16.attention.rotary_emb.inv_freq": "model-00008-of-00013.safetensors",
|
137 |
+
"gpt_neox.layers.16.input_layernorm.bias": "model-00008-of-00013.safetensors",
|
138 |
+
"gpt_neox.layers.16.input_layernorm.weight": "model-00008-of-00013.safetensors",
|
139 |
+
"gpt_neox.layers.16.mlp.dense_4h_to_h.bias": "model-00008-of-00013.safetensors",
|
140 |
+
"gpt_neox.layers.16.mlp.dense_4h_to_h.weight": "model-00008-of-00013.safetensors",
|
141 |
+
"gpt_neox.layers.16.mlp.dense_h_to_4h.bias": "model-00008-of-00013.safetensors",
|
142 |
+
"gpt_neox.layers.16.mlp.dense_h_to_4h.weight": "model-00008-of-00013.safetensors",
|
143 |
+
"gpt_neox.layers.16.post_attention_layernorm.bias": "model-00008-of-00013.safetensors",
|
144 |
+
"gpt_neox.layers.16.post_attention_layernorm.weight": "model-00008-of-00013.safetensors",
|
145 |
+
"gpt_neox.layers.17.attention.bias": "model-00008-of-00013.safetensors",
|
146 |
+
"gpt_neox.layers.17.attention.dense.bias": "model-00008-of-00013.safetensors",
|
147 |
+
"gpt_neox.layers.17.attention.dense.weight": "model-00008-of-00013.safetensors",
|
148 |
+
"gpt_neox.layers.17.attention.masked_bias": "model-00008-of-00013.safetensors",
|
149 |
+
"gpt_neox.layers.17.attention.query_key_value.bias": "model-00008-of-00013.safetensors",
|
150 |
+
"gpt_neox.layers.17.attention.query_key_value.weight": "model-00008-of-00013.safetensors",
|
151 |
+
"gpt_neox.layers.17.attention.rotary_emb.inv_freq": "model-00008-of-00013.safetensors",
|
152 |
+
"gpt_neox.layers.17.input_layernorm.bias": "model-00008-of-00013.safetensors",
|
153 |
+
"gpt_neox.layers.17.input_layernorm.weight": "model-00008-of-00013.safetensors",
|
154 |
+
"gpt_neox.layers.17.mlp.dense_4h_to_h.bias": "model-00008-of-00013.safetensors",
|
155 |
+
"gpt_neox.layers.17.mlp.dense_4h_to_h.weight": "model-00008-of-00013.safetensors",
|
156 |
+
"gpt_neox.layers.17.mlp.dense_h_to_4h.bias": "model-00008-of-00013.safetensors",
|
157 |
+
"gpt_neox.layers.17.mlp.dense_h_to_4h.weight": "model-00008-of-00013.safetensors",
|
158 |
+
"gpt_neox.layers.17.post_attention_layernorm.bias": "model-00008-of-00013.safetensors",
|
159 |
+
"gpt_neox.layers.17.post_attention_layernorm.weight": "model-00008-of-00013.safetensors",
|
160 |
+
"gpt_neox.layers.18.attention.bias": "model-00008-of-00013.safetensors",
|
161 |
+
"gpt_neox.layers.18.attention.dense.bias": "model-00009-of-00013.safetensors",
|
162 |
+
"gpt_neox.layers.18.attention.dense.weight": "model-00009-of-00013.safetensors",
|
163 |
+
"gpt_neox.layers.18.attention.masked_bias": "model-00008-of-00013.safetensors",
|
164 |
+
"gpt_neox.layers.18.attention.query_key_value.bias": "model-00009-of-00013.safetensors",
|
165 |
+
"gpt_neox.layers.18.attention.query_key_value.weight": "model-00009-of-00013.safetensors",
|
166 |
+
"gpt_neox.layers.18.attention.rotary_emb.inv_freq": "model-00008-of-00013.safetensors",
|
167 |
+
"gpt_neox.layers.18.input_layernorm.bias": "model-00008-of-00013.safetensors",
|
168 |
+
"gpt_neox.layers.18.input_layernorm.weight": "model-00008-of-00013.safetensors",
|
169 |
+
"gpt_neox.layers.18.mlp.dense_4h_to_h.bias": "model-00009-of-00013.safetensors",
|
170 |
+
"gpt_neox.layers.18.mlp.dense_4h_to_h.weight": "model-00009-of-00013.safetensors",
|
171 |
+
"gpt_neox.layers.18.mlp.dense_h_to_4h.bias": "model-00009-of-00013.safetensors",
|
172 |
+
"gpt_neox.layers.18.mlp.dense_h_to_4h.weight": "model-00009-of-00013.safetensors",
|
173 |
+
"gpt_neox.layers.18.post_attention_layernorm.bias": "model-00008-of-00013.safetensors",
|
174 |
+
"gpt_neox.layers.18.post_attention_layernorm.weight": "model-00008-of-00013.safetensors",
|
175 |
+
"gpt_neox.layers.19.attention.bias": "model-00009-of-00013.safetensors",
|
176 |
+
"gpt_neox.layers.19.attention.dense.bias": "model-00009-of-00013.safetensors",
|
177 |
+
"gpt_neox.layers.19.attention.dense.weight": "model-00009-of-00013.safetensors",
|
178 |
+
"gpt_neox.layers.19.attention.masked_bias": "model-00009-of-00013.safetensors",
|
179 |
+
"gpt_neox.layers.19.attention.query_key_value.bias": "model-00009-of-00013.safetensors",
|
180 |
+
"gpt_neox.layers.19.attention.query_key_value.weight": "model-00009-of-00013.safetensors",
|
181 |
+
"gpt_neox.layers.19.attention.rotary_emb.inv_freq": "model-00009-of-00013.safetensors",
|
182 |
+
"gpt_neox.layers.19.input_layernorm.bias": "model-00009-of-00013.safetensors",
|
183 |
+
"gpt_neox.layers.19.input_layernorm.weight": "model-00009-of-00013.safetensors",
|
184 |
+
"gpt_neox.layers.19.mlp.dense_4h_to_h.bias": "model-00009-of-00013.safetensors",
|
185 |
+
"gpt_neox.layers.19.mlp.dense_4h_to_h.weight": "model-00009-of-00013.safetensors",
|
186 |
+
"gpt_neox.layers.19.mlp.dense_h_to_4h.bias": "model-00009-of-00013.safetensors",
|
187 |
+
"gpt_neox.layers.19.mlp.dense_h_to_4h.weight": "model-00009-of-00013.safetensors",
|
188 |
+
"gpt_neox.layers.19.post_attention_layernorm.bias": "model-00009-of-00013.safetensors",
|
189 |
+
"gpt_neox.layers.19.post_attention_layernorm.weight": "model-00009-of-00013.safetensors",
|
190 |
+
"gpt_neox.layers.2.attention.bias": "model-00002-of-00013.safetensors",
|
191 |
+
"gpt_neox.layers.2.attention.dense.bias": "model-00002-of-00013.safetensors",
|
192 |
+
"gpt_neox.layers.2.attention.dense.weight": "model-00002-of-00013.safetensors",
|
193 |
+
"gpt_neox.layers.2.attention.masked_bias": "model-00002-of-00013.safetensors",
|
194 |
+
"gpt_neox.layers.2.attention.query_key_value.bias": "model-00002-of-00013.safetensors",
|
195 |
+
"gpt_neox.layers.2.attention.query_key_value.weight": "model-00002-of-00013.safetensors",
|
196 |
+
"gpt_neox.layers.2.attention.rotary_emb.inv_freq": "model-00002-of-00013.safetensors",
|
197 |
+
"gpt_neox.layers.2.input_layernorm.bias": "model-00002-of-00013.safetensors",
|
198 |
+
"gpt_neox.layers.2.input_layernorm.weight": "model-00002-of-00013.safetensors",
|
199 |
+
"gpt_neox.layers.2.mlp.dense_4h_to_h.bias": "model-00002-of-00013.safetensors",
|
200 |
+
"gpt_neox.layers.2.mlp.dense_4h_to_h.weight": "model-00002-of-00013.safetensors",
|
201 |
+
"gpt_neox.layers.2.mlp.dense_h_to_4h.bias": "model-00002-of-00013.safetensors",
|
202 |
+
"gpt_neox.layers.2.mlp.dense_h_to_4h.weight": "model-00002-of-00013.safetensors",
|
203 |
+
"gpt_neox.layers.2.post_attention_layernorm.bias": "model-00002-of-00013.safetensors",
|
204 |
+
"gpt_neox.layers.2.post_attention_layernorm.weight": "model-00002-of-00013.safetensors",
|
205 |
+
"gpt_neox.layers.20.attention.bias": "model-00009-of-00013.safetensors",
|
206 |
+
"gpt_neox.layers.20.attention.dense.bias": "model-00009-of-00013.safetensors",
|
207 |
+
"gpt_neox.layers.20.attention.dense.weight": "model-00009-of-00013.safetensors",
|
208 |
+
"gpt_neox.layers.20.attention.masked_bias": "model-00009-of-00013.safetensors",
|
209 |
+
"gpt_neox.layers.20.attention.query_key_value.bias": "model-00009-of-00013.safetensors",
|
210 |
+
"gpt_neox.layers.20.attention.query_key_value.weight": "model-00009-of-00013.safetensors",
|
211 |
+
"gpt_neox.layers.20.attention.rotary_emb.inv_freq": "model-00009-of-00013.safetensors",
|
212 |
+
"gpt_neox.layers.20.input_layernorm.bias": "model-00009-of-00013.safetensors",
|
213 |
+
"gpt_neox.layers.20.input_layernorm.weight": "model-00009-of-00013.safetensors",
|
214 |
+
"gpt_neox.layers.20.mlp.dense_4h_to_h.bias": "model-00010-of-00013.safetensors",
|
215 |
+
"gpt_neox.layers.20.mlp.dense_4h_to_h.weight": "model-00010-of-00013.safetensors",
|
216 |
+
"gpt_neox.layers.20.mlp.dense_h_to_4h.bias": "model-00010-of-00013.safetensors",
|
217 |
+
"gpt_neox.layers.20.mlp.dense_h_to_4h.weight": "model-00010-of-00013.safetensors",
|
218 |
+
"gpt_neox.layers.20.post_attention_layernorm.bias": "model-00009-of-00013.safetensors",
|
219 |
+
"gpt_neox.layers.20.post_attention_layernorm.weight": "model-00009-of-00013.safetensors",
|
220 |
+
"gpt_neox.layers.21.attention.bias": "model-00010-of-00013.safetensors",
|
221 |
+
"gpt_neox.layers.21.attention.dense.bias": "model-00010-of-00013.safetensors",
|
222 |
+
"gpt_neox.layers.21.attention.dense.weight": "model-00010-of-00013.safetensors",
|
223 |
+
"gpt_neox.layers.21.attention.masked_bias": "model-00010-of-00013.safetensors",
|
224 |
+
"gpt_neox.layers.21.attention.query_key_value.bias": "model-00010-of-00013.safetensors",
|
225 |
+
"gpt_neox.layers.21.attention.query_key_value.weight": "model-00010-of-00013.safetensors",
|
226 |
+
"gpt_neox.layers.21.attention.rotary_emb.inv_freq": "model-00010-of-00013.safetensors",
|
227 |
+
"gpt_neox.layers.21.input_layernorm.bias": "model-00010-of-00013.safetensors",
|
228 |
+
"gpt_neox.layers.21.input_layernorm.weight": "model-00010-of-00013.safetensors",
|
229 |
+
"gpt_neox.layers.21.mlp.dense_4h_to_h.bias": "model-00010-of-00013.safetensors",
|
230 |
+
"gpt_neox.layers.21.mlp.dense_4h_to_h.weight": "model-00010-of-00013.safetensors",
|
231 |
+
"gpt_neox.layers.21.mlp.dense_h_to_4h.bias": "model-00010-of-00013.safetensors",
|
232 |
+
"gpt_neox.layers.21.mlp.dense_h_to_4h.weight": "model-00010-of-00013.safetensors",
|
233 |
+
"gpt_neox.layers.21.post_attention_layernorm.bias": "model-00010-of-00013.safetensors",
|
234 |
+
"gpt_neox.layers.21.post_attention_layernorm.weight": "model-00010-of-00013.safetensors",
|
235 |
+
"gpt_neox.layers.22.attention.bias": "model-00010-of-00013.safetensors",
|
236 |
+
"gpt_neox.layers.22.attention.dense.bias": "model-00010-of-00013.safetensors",
|
237 |
+
"gpt_neox.layers.22.attention.dense.weight": "model-00010-of-00013.safetensors",
|
238 |
+
"gpt_neox.layers.22.attention.masked_bias": "model-00010-of-00013.safetensors",
|
239 |
+
"gpt_neox.layers.22.attention.query_key_value.bias": "model-00010-of-00013.safetensors",
|
240 |
+
"gpt_neox.layers.22.attention.query_key_value.weight": "model-00010-of-00013.safetensors",
|
241 |
+
"gpt_neox.layers.22.attention.rotary_emb.inv_freq": "model-00010-of-00013.safetensors",
|
242 |
+
"gpt_neox.layers.22.input_layernorm.bias": "model-00010-of-00013.safetensors",
|
243 |
+
"gpt_neox.layers.22.input_layernorm.weight": "model-00010-of-00013.safetensors",
|
244 |
+
"gpt_neox.layers.22.mlp.dense_4h_to_h.bias": "model-00011-of-00013.safetensors",
|
245 |
+
"gpt_neox.layers.22.mlp.dense_4h_to_h.weight": "model-00011-of-00013.safetensors",
|
246 |
+
"gpt_neox.layers.22.mlp.dense_h_to_4h.bias": "model-00010-of-00013.safetensors",
|
247 |
+
"gpt_neox.layers.22.mlp.dense_h_to_4h.weight": "model-00010-of-00013.safetensors",
|
248 |
+
"gpt_neox.layers.22.post_attention_layernorm.bias": "model-00010-of-00013.safetensors",
|
249 |
+
"gpt_neox.layers.22.post_attention_layernorm.weight": "model-00010-of-00013.safetensors",
|
250 |
+
"gpt_neox.layers.23.attention.bias": "model-00011-of-00013.safetensors",
|
251 |
+
"gpt_neox.layers.23.attention.dense.bias": "model-00011-of-00013.safetensors",
|
252 |
+
"gpt_neox.layers.23.attention.dense.weight": "model-00011-of-00013.safetensors",
|
253 |
+
"gpt_neox.layers.23.attention.masked_bias": "model-00011-of-00013.safetensors",
|
254 |
+
"gpt_neox.layers.23.attention.query_key_value.bias": "model-00011-of-00013.safetensors",
|
255 |
+
"gpt_neox.layers.23.attention.query_key_value.weight": "model-00011-of-00013.safetensors",
|
256 |
+
"gpt_neox.layers.23.attention.rotary_emb.inv_freq": "model-00011-of-00013.safetensors",
|
257 |
+
"gpt_neox.layers.23.input_layernorm.bias": "model-00011-of-00013.safetensors",
|
258 |
+
"gpt_neox.layers.23.input_layernorm.weight": "model-00011-of-00013.safetensors",
|
259 |
+
"gpt_neox.layers.23.mlp.dense_4h_to_h.bias": "model-00011-of-00013.safetensors",
|
260 |
+
"gpt_neox.layers.23.mlp.dense_4h_to_h.weight": "model-00011-of-00013.safetensors",
|
261 |
+
"gpt_neox.layers.23.mlp.dense_h_to_4h.bias": "model-00011-of-00013.safetensors",
|
262 |
+
"gpt_neox.layers.23.mlp.dense_h_to_4h.weight": "model-00011-of-00013.safetensors",
|
263 |
+
"gpt_neox.layers.23.post_attention_layernorm.bias": "model-00011-of-00013.safetensors",
|
264 |
+
"gpt_neox.layers.23.post_attention_layernorm.weight": "model-00011-of-00013.safetensors",
|
265 |
+
"gpt_neox.layers.24.attention.bias": "model-00011-of-00013.safetensors",
|
266 |
+
"gpt_neox.layers.24.attention.dense.bias": "model-00011-of-00013.safetensors",
|
267 |
+
"gpt_neox.layers.24.attention.dense.weight": "model-00011-of-00013.safetensors",
|
268 |
+
"gpt_neox.layers.24.attention.masked_bias": "model-00011-of-00013.safetensors",
|
269 |
+
"gpt_neox.layers.24.attention.query_key_value.bias": "model-00011-of-00013.safetensors",
|
270 |
+
"gpt_neox.layers.24.attention.query_key_value.weight": "model-00011-of-00013.safetensors",
|
271 |
+
"gpt_neox.layers.24.attention.rotary_emb.inv_freq": "model-00011-of-00013.safetensors",
|
272 |
+
"gpt_neox.layers.24.input_layernorm.bias": "model-00011-of-00013.safetensors",
|
273 |
+
"gpt_neox.layers.24.input_layernorm.weight": "model-00011-of-00013.safetensors",
|
274 |
+
"gpt_neox.layers.24.mlp.dense_4h_to_h.bias": "model-00011-of-00013.safetensors",
|
275 |
+
"gpt_neox.layers.24.mlp.dense_4h_to_h.weight": "model-00011-of-00013.safetensors",
|
276 |
+
"gpt_neox.layers.24.mlp.dense_h_to_4h.bias": "model-00011-of-00013.safetensors",
|
277 |
+
"gpt_neox.layers.24.mlp.dense_h_to_4h.weight": "model-00011-of-00013.safetensors",
|
278 |
+
"gpt_neox.layers.24.post_attention_layernorm.bias": "model-00011-of-00013.safetensors",
|
279 |
+
"gpt_neox.layers.24.post_attention_layernorm.weight": "model-00011-of-00013.safetensors",
|
280 |
+
"gpt_neox.layers.25.attention.bias": "model-00011-of-00013.safetensors",
|
281 |
+
"gpt_neox.layers.25.attention.dense.bias": "model-00012-of-00013.safetensors",
|
282 |
+
"gpt_neox.layers.25.attention.dense.weight": "model-00012-of-00013.safetensors",
|
283 |
+
"gpt_neox.layers.25.attention.masked_bias": "model-00011-of-00013.safetensors",
|
284 |
+
"gpt_neox.layers.25.attention.query_key_value.bias": "model-00012-of-00013.safetensors",
|
285 |
+
"gpt_neox.layers.25.attention.query_key_value.weight": "model-00012-of-00013.safetensors",
|
286 |
+
"gpt_neox.layers.25.attention.rotary_emb.inv_freq": "model-00011-of-00013.safetensors",
|
287 |
+
"gpt_neox.layers.25.input_layernorm.bias": "model-00011-of-00013.safetensors",
|
288 |
+
"gpt_neox.layers.25.input_layernorm.weight": "model-00011-of-00013.safetensors",
|
289 |
+
"gpt_neox.layers.25.mlp.dense_4h_to_h.bias": "model-00012-of-00013.safetensors",
|
290 |
+
"gpt_neox.layers.25.mlp.dense_4h_to_h.weight": "model-00012-of-00013.safetensors",
|
291 |
+
"gpt_neox.layers.25.mlp.dense_h_to_4h.bias": "model-00012-of-00013.safetensors",
|
292 |
+
"gpt_neox.layers.25.mlp.dense_h_to_4h.weight": "model-00012-of-00013.safetensors",
|
293 |
+
"gpt_neox.layers.25.post_attention_layernorm.bias": "model-00011-of-00013.safetensors",
|
294 |
+
"gpt_neox.layers.25.post_attention_layernorm.weight": "model-00011-of-00013.safetensors",
|
295 |
+
"gpt_neox.layers.26.attention.bias": "model-00012-of-00013.safetensors",
|
296 |
+
"gpt_neox.layers.26.attention.dense.bias": "model-00012-of-00013.safetensors",
|
297 |
+
"gpt_neox.layers.26.attention.dense.weight": "model-00012-of-00013.safetensors",
|
298 |
+
"gpt_neox.layers.26.attention.masked_bias": "model-00012-of-00013.safetensors",
|
299 |
+
"gpt_neox.layers.26.attention.query_key_value.bias": "model-00012-of-00013.safetensors",
|
300 |
+
"gpt_neox.layers.26.attention.query_key_value.weight": "model-00012-of-00013.safetensors",
|
301 |
+
"gpt_neox.layers.26.attention.rotary_emb.inv_freq": "model-00012-of-00013.safetensors",
|
302 |
+
"gpt_neox.layers.26.input_layernorm.bias": "model-00012-of-00013.safetensors",
|
303 |
+
"gpt_neox.layers.26.input_layernorm.weight": "model-00012-of-00013.safetensors",
|
304 |
+
"gpt_neox.layers.26.mlp.dense_4h_to_h.bias": "model-00012-of-00013.safetensors",
|
305 |
+
"gpt_neox.layers.26.mlp.dense_4h_to_h.weight": "model-00012-of-00013.safetensors",
|
306 |
+
"gpt_neox.layers.26.mlp.dense_h_to_4h.bias": "model-00012-of-00013.safetensors",
|
307 |
+
"gpt_neox.layers.26.mlp.dense_h_to_4h.weight": "model-00012-of-00013.safetensors",
|
308 |
+
"gpt_neox.layers.26.post_attention_layernorm.bias": "model-00012-of-00013.safetensors",
|
309 |
+
"gpt_neox.layers.26.post_attention_layernorm.weight": "model-00012-of-00013.safetensors",
|
310 |
+
"gpt_neox.layers.27.attention.bias": "model-00012-of-00013.safetensors",
|
311 |
+
"gpt_neox.layers.27.attention.dense.bias": "model-00012-of-00013.safetensors",
|
312 |
+
"gpt_neox.layers.27.attention.dense.weight": "model-00012-of-00013.safetensors",
|
313 |
+
"gpt_neox.layers.27.attention.masked_bias": "model-00012-of-00013.safetensors",
|
314 |
+
"gpt_neox.layers.27.attention.query_key_value.bias": "model-00012-of-00013.safetensors",
|
315 |
+
"gpt_neox.layers.27.attention.query_key_value.weight": "model-00012-of-00013.safetensors",
|
316 |
+
"gpt_neox.layers.27.attention.rotary_emb.inv_freq": "model-00012-of-00013.safetensors",
|
317 |
+
"gpt_neox.layers.27.input_layernorm.bias": "model-00012-of-00013.safetensors",
|
318 |
+
"gpt_neox.layers.27.input_layernorm.weight": "model-00012-of-00013.safetensors",
|
319 |
+
"gpt_neox.layers.27.mlp.dense_4h_to_h.bias": "model-00013-of-00013.safetensors",
|
320 |
+
"gpt_neox.layers.27.mlp.dense_4h_to_h.weight": "model-00013-of-00013.safetensors",
|
321 |
+
"gpt_neox.layers.27.mlp.dense_h_to_4h.bias": "model-00013-of-00013.safetensors",
|
322 |
+
"gpt_neox.layers.27.mlp.dense_h_to_4h.weight": "model-00013-of-00013.safetensors",
|
323 |
+
"gpt_neox.layers.27.post_attention_layernorm.bias": "model-00012-of-00013.safetensors",
|
324 |
+
"gpt_neox.layers.27.post_attention_layernorm.weight": "model-00012-of-00013.safetensors",
|
325 |
+
"gpt_neox.layers.3.attention.bias": "model-00002-of-00013.safetensors",
|
326 |
+
"gpt_neox.layers.3.attention.dense.bias": "model-00002-of-00013.safetensors",
|
327 |
+
"gpt_neox.layers.3.attention.dense.weight": "model-00002-of-00013.safetensors",
|
328 |
+
"gpt_neox.layers.3.attention.masked_bias": "model-00002-of-00013.safetensors",
|
329 |
+
"gpt_neox.layers.3.attention.query_key_value.bias": "model-00002-of-00013.safetensors",
|
330 |
+
"gpt_neox.layers.3.attention.query_key_value.weight": "model-00002-of-00013.safetensors",
|
331 |
+
"gpt_neox.layers.3.attention.rotary_emb.inv_freq": "model-00002-of-00013.safetensors",
|
332 |
+
"gpt_neox.layers.3.input_layernorm.bias": "model-00002-of-00013.safetensors",
|
333 |
+
"gpt_neox.layers.3.input_layernorm.weight": "model-00002-of-00013.safetensors",
|
334 |
+
"gpt_neox.layers.3.mlp.dense_4h_to_h.bias": "model-00002-of-00013.safetensors",
|
335 |
+
"gpt_neox.layers.3.mlp.dense_4h_to_h.weight": "model-00002-of-00013.safetensors",
|
336 |
+
"gpt_neox.layers.3.mlp.dense_h_to_4h.bias": "model-00002-of-00013.safetensors",
|
337 |
+
"gpt_neox.layers.3.mlp.dense_h_to_4h.weight": "model-00002-of-00013.safetensors",
|
338 |
+
"gpt_neox.layers.3.post_attention_layernorm.bias": "model-00002-of-00013.safetensors",
|
339 |
+
"gpt_neox.layers.3.post_attention_layernorm.weight": "model-00002-of-00013.safetensors",
|
340 |
+
"gpt_neox.layers.4.attention.bias": "model-00002-of-00013.safetensors",
|
341 |
+
"gpt_neox.layers.4.attention.dense.bias": "model-00003-of-00013.safetensors",
|
342 |
+
"gpt_neox.layers.4.attention.dense.weight": "model-00003-of-00013.safetensors",
|
343 |
+
"gpt_neox.layers.4.attention.masked_bias": "model-00002-of-00013.safetensors",
|
344 |
+
"gpt_neox.layers.4.attention.query_key_value.bias": "model-00003-of-00013.safetensors",
|
345 |
+
"gpt_neox.layers.4.attention.query_key_value.weight": "model-00003-of-00013.safetensors",
|
346 |
+
"gpt_neox.layers.4.attention.rotary_emb.inv_freq": "model-00002-of-00013.safetensors",
|
347 |
+
"gpt_neox.layers.4.input_layernorm.bias": "model-00002-of-00013.safetensors",
|
348 |
+
"gpt_neox.layers.4.input_layernorm.weight": "model-00002-of-00013.safetensors",
|
349 |
+
"gpt_neox.layers.4.mlp.dense_4h_to_h.bias": "model-00003-of-00013.safetensors",
|
350 |
+
"gpt_neox.layers.4.mlp.dense_4h_to_h.weight": "model-00003-of-00013.safetensors",
|
351 |
+
"gpt_neox.layers.4.mlp.dense_h_to_4h.bias": "model-00003-of-00013.safetensors",
|
352 |
+
"gpt_neox.layers.4.mlp.dense_h_to_4h.weight": "model-00003-of-00013.safetensors",
|
353 |
+
"gpt_neox.layers.4.post_attention_layernorm.bias": "model-00002-of-00013.safetensors",
|
354 |
+
"gpt_neox.layers.4.post_attention_layernorm.weight": "model-00002-of-00013.safetensors",
|
355 |
+
"gpt_neox.layers.5.attention.bias": "model-00003-of-00013.safetensors",
|
356 |
+
"gpt_neox.layers.5.attention.dense.bias": "model-00003-of-00013.safetensors",
|
357 |
+
"gpt_neox.layers.5.attention.dense.weight": "model-00003-of-00013.safetensors",
|
358 |
+
"gpt_neox.layers.5.attention.masked_bias": "model-00003-of-00013.safetensors",
|
359 |
+
"gpt_neox.layers.5.attention.query_key_value.bias": "model-00003-of-00013.safetensors",
|
360 |
+
"gpt_neox.layers.5.attention.query_key_value.weight": "model-00003-of-00013.safetensors",
|
361 |
+
"gpt_neox.layers.5.attention.rotary_emb.inv_freq": "model-00003-of-00013.safetensors",
|
362 |
+
"gpt_neox.layers.5.input_layernorm.bias": "model-00003-of-00013.safetensors",
|
363 |
+
"gpt_neox.layers.5.input_layernorm.weight": "model-00003-of-00013.safetensors",
|
364 |
+
"gpt_neox.layers.5.mlp.dense_4h_to_h.bias": "model-00003-of-00013.safetensors",
|
365 |
+
"gpt_neox.layers.5.mlp.dense_4h_to_h.weight": "model-00003-of-00013.safetensors",
|
366 |
+
"gpt_neox.layers.5.mlp.dense_h_to_4h.bias": "model-00003-of-00013.safetensors",
|
367 |
+
"gpt_neox.layers.5.mlp.dense_h_to_4h.weight": "model-00003-of-00013.safetensors",
|
368 |
+
"gpt_neox.layers.5.post_attention_layernorm.bias": "model-00003-of-00013.safetensors",
|
369 |
+
"gpt_neox.layers.5.post_attention_layernorm.weight": "model-00003-of-00013.safetensors",
|
370 |
+
"gpt_neox.layers.6.attention.bias": "model-00003-of-00013.safetensors",
|
371 |
+
"gpt_neox.layers.6.attention.dense.bias": "model-00003-of-00013.safetensors",
|
372 |
+
"gpt_neox.layers.6.attention.dense.weight": "model-00003-of-00013.safetensors",
|
373 |
+
"gpt_neox.layers.6.attention.masked_bias": "model-00003-of-00013.safetensors",
|
374 |
+
"gpt_neox.layers.6.attention.query_key_value.bias": "model-00003-of-00013.safetensors",
|
375 |
+
"gpt_neox.layers.6.attention.query_key_value.weight": "model-00003-of-00013.safetensors",
|
376 |
+
"gpt_neox.layers.6.attention.rotary_emb.inv_freq": "model-00003-of-00013.safetensors",
|
377 |
+
"gpt_neox.layers.6.input_layernorm.bias": "model-00003-of-00013.safetensors",
|
378 |
+
"gpt_neox.layers.6.input_layernorm.weight": "model-00003-of-00013.safetensors",
|
379 |
+
"gpt_neox.layers.6.mlp.dense_4h_to_h.bias": "model-00004-of-00013.safetensors",
|
380 |
+
"gpt_neox.layers.6.mlp.dense_4h_to_h.weight": "model-00004-of-00013.safetensors",
|
381 |
+
"gpt_neox.layers.6.mlp.dense_h_to_4h.bias": "model-00004-of-00013.safetensors",
|
382 |
+
"gpt_neox.layers.6.mlp.dense_h_to_4h.weight": "model-00004-of-00013.safetensors",
|
383 |
+
"gpt_neox.layers.6.post_attention_layernorm.bias": "model-00003-of-00013.safetensors",
|
384 |
+
"gpt_neox.layers.6.post_attention_layernorm.weight": "model-00003-of-00013.safetensors",
|
385 |
+
"gpt_neox.layers.7.attention.bias": "model-00004-of-00013.safetensors",
|
386 |
+
"gpt_neox.layers.7.attention.dense.bias": "model-00004-of-00013.safetensors",
|
387 |
+
"gpt_neox.layers.7.attention.dense.weight": "model-00004-of-00013.safetensors",
|
388 |
+
"gpt_neox.layers.7.attention.masked_bias": "model-00004-of-00013.safetensors",
|
389 |
+
"gpt_neox.layers.7.attention.query_key_value.bias": "model-00004-of-00013.safetensors",
|
390 |
+
"gpt_neox.layers.7.attention.query_key_value.weight": "model-00004-of-00013.safetensors",
|
391 |
+
"gpt_neox.layers.7.attention.rotary_emb.inv_freq": "model-00004-of-00013.safetensors",
|
392 |
+
"gpt_neox.layers.7.input_layernorm.bias": "model-00004-of-00013.safetensors",
|
393 |
+
"gpt_neox.layers.7.input_layernorm.weight": "model-00004-of-00013.safetensors",
|
394 |
+
"gpt_neox.layers.7.mlp.dense_4h_to_h.bias": "model-00004-of-00013.safetensors",
|
395 |
+
"gpt_neox.layers.7.mlp.dense_4h_to_h.weight": "model-00004-of-00013.safetensors",
|
396 |
+
"gpt_neox.layers.7.mlp.dense_h_to_4h.bias": "model-00004-of-00013.safetensors",
|
397 |
+
"gpt_neox.layers.7.mlp.dense_h_to_4h.weight": "model-00004-of-00013.safetensors",
|
398 |
+
"gpt_neox.layers.7.post_attention_layernorm.bias": "model-00004-of-00013.safetensors",
|
399 |
+
"gpt_neox.layers.7.post_attention_layernorm.weight": "model-00004-of-00013.safetensors",
|
400 |
+
"gpt_neox.layers.8.attention.bias": "model-00004-of-00013.safetensors",
|
401 |
+
"gpt_neox.layers.8.attention.dense.bias": "model-00004-of-00013.safetensors",
|
402 |
+
"gpt_neox.layers.8.attention.dense.weight": "model-00004-of-00013.safetensors",
|
403 |
+
"gpt_neox.layers.8.attention.masked_bias": "model-00004-of-00013.safetensors",
|
404 |
+
"gpt_neox.layers.8.attention.query_key_value.bias": "model-00004-of-00013.safetensors",
|
405 |
+
"gpt_neox.layers.8.attention.query_key_value.weight": "model-00004-of-00013.safetensors",
|
406 |
+
"gpt_neox.layers.8.attention.rotary_emb.inv_freq": "model-00004-of-00013.safetensors",
|
407 |
+
"gpt_neox.layers.8.input_layernorm.bias": "model-00004-of-00013.safetensors",
|
408 |
+
"gpt_neox.layers.8.input_layernorm.weight": "model-00004-of-00013.safetensors",
|
409 |
+
"gpt_neox.layers.8.mlp.dense_4h_to_h.bias": "model-00005-of-00013.safetensors",
|
410 |
+
"gpt_neox.layers.8.mlp.dense_4h_to_h.weight": "model-00005-of-00013.safetensors",
|
411 |
+
"gpt_neox.layers.8.mlp.dense_h_to_4h.bias": "model-00004-of-00013.safetensors",
|
412 |
+
"gpt_neox.layers.8.mlp.dense_h_to_4h.weight": "model-00004-of-00013.safetensors",
|
413 |
+
"gpt_neox.layers.8.post_attention_layernorm.bias": "model-00004-of-00013.safetensors",
|
414 |
+
"gpt_neox.layers.8.post_attention_layernorm.weight": "model-00004-of-00013.safetensors",
|
415 |
+
"gpt_neox.layers.9.attention.bias": "model-00005-of-00013.safetensors",
|
416 |
+
"gpt_neox.layers.9.attention.dense.bias": "model-00005-of-00013.safetensors",
|
417 |
+
"gpt_neox.layers.9.attention.dense.weight": "model-00005-of-00013.safetensors",
|
418 |
+
"gpt_neox.layers.9.attention.masked_bias": "model-00005-of-00013.safetensors",
|
419 |
+
"gpt_neox.layers.9.attention.query_key_value.bias": "model-00005-of-00013.safetensors",
|
420 |
+
"gpt_neox.layers.9.attention.query_key_value.weight": "model-00005-of-00013.safetensors",
|
421 |
+
"gpt_neox.layers.9.attention.rotary_emb.inv_freq": "model-00005-of-00013.safetensors",
|
422 |
+
"gpt_neox.layers.9.input_layernorm.bias": "model-00005-of-00013.safetensors",
|
423 |
+
"gpt_neox.layers.9.input_layernorm.weight": "model-00005-of-00013.safetensors",
|
424 |
+
"gpt_neox.layers.9.mlp.dense_4h_to_h.bias": "model-00005-of-00013.safetensors",
|
425 |
+
"gpt_neox.layers.9.mlp.dense_4h_to_h.weight": "model-00005-of-00013.safetensors",
|
426 |
+
"gpt_neox.layers.9.mlp.dense_h_to_4h.bias": "model-00005-of-00013.safetensors",
|
427 |
+
"gpt_neox.layers.9.mlp.dense_h_to_4h.weight": "model-00005-of-00013.safetensors",
|
428 |
+
"gpt_neox.layers.9.post_attention_layernorm.bias": "model-00005-of-00013.safetensors",
|
429 |
+
"gpt_neox.layers.9.post_attention_layernorm.weight": "model-00005-of-00013.safetensors"
|
430 |
+
}
|
431 |
+
}
|
pytorch_model-00001-of-00002.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3b2815dba3f8bee8100a4d8dadfd9c5f933194aa2c4c5c920c25328ddc90c7fa
|
3 |
+
size 136
|
pytorch_model-00002-of-00002.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9e9d4ba770d05659dc80271e6c6e9e0752041ec0a9ac66f5c47555183ac60080
|
3 |
+
size 135
|
pytorch_model.bin.index.json
ADDED
@@ -0,0 +1,431 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 11784801848.0
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"embed_out.weight": "pytorch_model-00002-of-00002.bin",
|
7 |
+
"gpt_neox.embed_in.weight": "pytorch_model-00001-of-00002.bin",
|
8 |
+
"gpt_neox.final_layer_norm.bias": "pytorch_model-00002-of-00002.bin",
|
9 |
+
"gpt_neox.final_layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
10 |
+
"gpt_neox.layers.0.attention.bias": "pytorch_model-00001-of-00002.bin",
|
11 |
+
"gpt_neox.layers.0.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
12 |
+
"gpt_neox.layers.0.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
13 |
+
"gpt_neox.layers.0.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
14 |
+
"gpt_neox.layers.0.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
15 |
+
"gpt_neox.layers.0.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
16 |
+
"gpt_neox.layers.0.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
17 |
+
"gpt_neox.layers.0.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
18 |
+
"gpt_neox.layers.0.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
19 |
+
"gpt_neox.layers.0.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
20 |
+
"gpt_neox.layers.0.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
21 |
+
"gpt_neox.layers.0.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
22 |
+
"gpt_neox.layers.0.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
23 |
+
"gpt_neox.layers.0.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
24 |
+
"gpt_neox.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
25 |
+
"gpt_neox.layers.1.attention.bias": "pytorch_model-00001-of-00002.bin",
|
26 |
+
"gpt_neox.layers.1.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
27 |
+
"gpt_neox.layers.1.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
28 |
+
"gpt_neox.layers.1.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
29 |
+
"gpt_neox.layers.1.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
30 |
+
"gpt_neox.layers.1.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
31 |
+
"gpt_neox.layers.1.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
32 |
+
"gpt_neox.layers.1.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
33 |
+
"gpt_neox.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
34 |
+
"gpt_neox.layers.1.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
35 |
+
"gpt_neox.layers.1.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
36 |
+
"gpt_neox.layers.1.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
37 |
+
"gpt_neox.layers.1.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
38 |
+
"gpt_neox.layers.1.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
39 |
+
"gpt_neox.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
40 |
+
"gpt_neox.layers.10.attention.bias": "pytorch_model-00001-of-00002.bin",
|
41 |
+
"gpt_neox.layers.10.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
42 |
+
"gpt_neox.layers.10.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
43 |
+
"gpt_neox.layers.10.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
44 |
+
"gpt_neox.layers.10.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
45 |
+
"gpt_neox.layers.10.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
46 |
+
"gpt_neox.layers.10.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
47 |
+
"gpt_neox.layers.10.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
48 |
+
"gpt_neox.layers.10.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
49 |
+
"gpt_neox.layers.10.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
50 |
+
"gpt_neox.layers.10.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
51 |
+
"gpt_neox.layers.10.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
52 |
+
"gpt_neox.layers.10.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
53 |
+
"gpt_neox.layers.10.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
54 |
+
"gpt_neox.layers.10.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
55 |
+
"gpt_neox.layers.11.attention.bias": "pytorch_model-00001-of-00002.bin",
|
56 |
+
"gpt_neox.layers.11.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
57 |
+
"gpt_neox.layers.11.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
58 |
+
"gpt_neox.layers.11.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
59 |
+
"gpt_neox.layers.11.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
60 |
+
"gpt_neox.layers.11.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
61 |
+
"gpt_neox.layers.11.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
62 |
+
"gpt_neox.layers.11.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
63 |
+
"gpt_neox.layers.11.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
64 |
+
"gpt_neox.layers.11.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
65 |
+
"gpt_neox.layers.11.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
66 |
+
"gpt_neox.layers.11.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
67 |
+
"gpt_neox.layers.11.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
68 |
+
"gpt_neox.layers.11.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
69 |
+
"gpt_neox.layers.11.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
70 |
+
"gpt_neox.layers.12.attention.bias": "pytorch_model-00001-of-00002.bin",
|
71 |
+
"gpt_neox.layers.12.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
72 |
+
"gpt_neox.layers.12.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
73 |
+
"gpt_neox.layers.12.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
74 |
+
"gpt_neox.layers.12.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
75 |
+
"gpt_neox.layers.12.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
76 |
+
"gpt_neox.layers.12.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
77 |
+
"gpt_neox.layers.12.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
78 |
+
"gpt_neox.layers.12.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
79 |
+
"gpt_neox.layers.12.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
80 |
+
"gpt_neox.layers.12.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
81 |
+
"gpt_neox.layers.12.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
82 |
+
"gpt_neox.layers.12.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
83 |
+
"gpt_neox.layers.12.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
84 |
+
"gpt_neox.layers.12.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
85 |
+
"gpt_neox.layers.13.attention.bias": "pytorch_model-00001-of-00002.bin",
|
86 |
+
"gpt_neox.layers.13.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
87 |
+
"gpt_neox.layers.13.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
88 |
+
"gpt_neox.layers.13.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
89 |
+
"gpt_neox.layers.13.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
90 |
+
"gpt_neox.layers.13.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
91 |
+
"gpt_neox.layers.13.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
92 |
+
"gpt_neox.layers.13.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
93 |
+
"gpt_neox.layers.13.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
94 |
+
"gpt_neox.layers.13.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
95 |
+
"gpt_neox.layers.13.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
96 |
+
"gpt_neox.layers.13.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
97 |
+
"gpt_neox.layers.13.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
98 |
+
"gpt_neox.layers.13.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
99 |
+
"gpt_neox.layers.13.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
100 |
+
"gpt_neox.layers.14.attention.bias": "pytorch_model-00001-of-00002.bin",
|
101 |
+
"gpt_neox.layers.14.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
102 |
+
"gpt_neox.layers.14.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
103 |
+
"gpt_neox.layers.14.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
104 |
+
"gpt_neox.layers.14.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
105 |
+
"gpt_neox.layers.14.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
106 |
+
"gpt_neox.layers.14.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
107 |
+
"gpt_neox.layers.14.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
108 |
+
"gpt_neox.layers.14.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
109 |
+
"gpt_neox.layers.14.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
110 |
+
"gpt_neox.layers.14.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
111 |
+
"gpt_neox.layers.14.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
112 |
+
"gpt_neox.layers.14.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
113 |
+
"gpt_neox.layers.14.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
114 |
+
"gpt_neox.layers.14.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
115 |
+
"gpt_neox.layers.15.attention.bias": "pytorch_model-00001-of-00002.bin",
|
116 |
+
"gpt_neox.layers.15.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
117 |
+
"gpt_neox.layers.15.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
118 |
+
"gpt_neox.layers.15.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
119 |
+
"gpt_neox.layers.15.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
120 |
+
"gpt_neox.layers.15.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
121 |
+
"gpt_neox.layers.15.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
122 |
+
"gpt_neox.layers.15.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
123 |
+
"gpt_neox.layers.15.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
124 |
+
"gpt_neox.layers.15.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
125 |
+
"gpt_neox.layers.15.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
126 |
+
"gpt_neox.layers.15.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
127 |
+
"gpt_neox.layers.15.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
128 |
+
"gpt_neox.layers.15.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
129 |
+
"gpt_neox.layers.15.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
130 |
+
"gpt_neox.layers.16.attention.bias": "pytorch_model-00001-of-00002.bin",
|
131 |
+
"gpt_neox.layers.16.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
132 |
+
"gpt_neox.layers.16.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
133 |
+
"gpt_neox.layers.16.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
134 |
+
"gpt_neox.layers.16.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
135 |
+
"gpt_neox.layers.16.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
136 |
+
"gpt_neox.layers.16.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
137 |
+
"gpt_neox.layers.16.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
138 |
+
"gpt_neox.layers.16.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
139 |
+
"gpt_neox.layers.16.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
140 |
+
"gpt_neox.layers.16.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
141 |
+
"gpt_neox.layers.16.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
142 |
+
"gpt_neox.layers.16.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
143 |
+
"gpt_neox.layers.16.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
144 |
+
"gpt_neox.layers.16.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
145 |
+
"gpt_neox.layers.17.attention.bias": "pytorch_model-00001-of-00002.bin",
|
146 |
+
"gpt_neox.layers.17.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
147 |
+
"gpt_neox.layers.17.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
148 |
+
"gpt_neox.layers.17.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
149 |
+
"gpt_neox.layers.17.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
150 |
+
"gpt_neox.layers.17.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
151 |
+
"gpt_neox.layers.17.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
152 |
+
"gpt_neox.layers.17.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
153 |
+
"gpt_neox.layers.17.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
154 |
+
"gpt_neox.layers.17.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
155 |
+
"gpt_neox.layers.17.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
156 |
+
"gpt_neox.layers.17.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
157 |
+
"gpt_neox.layers.17.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
158 |
+
"gpt_neox.layers.17.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
159 |
+
"gpt_neox.layers.17.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
160 |
+
"gpt_neox.layers.18.attention.bias": "pytorch_model-00001-of-00002.bin",
|
161 |
+
"gpt_neox.layers.18.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
162 |
+
"gpt_neox.layers.18.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
163 |
+
"gpt_neox.layers.18.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
164 |
+
"gpt_neox.layers.18.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
165 |
+
"gpt_neox.layers.18.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
166 |
+
"gpt_neox.layers.18.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
167 |
+
"gpt_neox.layers.18.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
168 |
+
"gpt_neox.layers.18.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
169 |
+
"gpt_neox.layers.18.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
170 |
+
"gpt_neox.layers.18.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
171 |
+
"gpt_neox.layers.18.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
172 |
+
"gpt_neox.layers.18.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
173 |
+
"gpt_neox.layers.18.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
174 |
+
"gpt_neox.layers.18.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
175 |
+
"gpt_neox.layers.19.attention.bias": "pytorch_model-00001-of-00002.bin",
|
176 |
+
"gpt_neox.layers.19.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
177 |
+
"gpt_neox.layers.19.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
178 |
+
"gpt_neox.layers.19.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
179 |
+
"gpt_neox.layers.19.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
180 |
+
"gpt_neox.layers.19.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
181 |
+
"gpt_neox.layers.19.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
182 |
+
"gpt_neox.layers.19.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
183 |
+
"gpt_neox.layers.19.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
184 |
+
"gpt_neox.layers.19.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
185 |
+
"gpt_neox.layers.19.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
186 |
+
"gpt_neox.layers.19.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
187 |
+
"gpt_neox.layers.19.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
188 |
+
"gpt_neox.layers.19.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
189 |
+
"gpt_neox.layers.19.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
190 |
+
"gpt_neox.layers.2.attention.bias": "pytorch_model-00001-of-00002.bin",
|
191 |
+
"gpt_neox.layers.2.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
192 |
+
"gpt_neox.layers.2.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
193 |
+
"gpt_neox.layers.2.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
194 |
+
"gpt_neox.layers.2.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
195 |
+
"gpt_neox.layers.2.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
196 |
+
"gpt_neox.layers.2.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
197 |
+
"gpt_neox.layers.2.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
198 |
+
"gpt_neox.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
199 |
+
"gpt_neox.layers.2.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
200 |
+
"gpt_neox.layers.2.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
201 |
+
"gpt_neox.layers.2.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
202 |
+
"gpt_neox.layers.2.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
203 |
+
"gpt_neox.layers.2.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
204 |
+
"gpt_neox.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
205 |
+
"gpt_neox.layers.20.attention.bias": "pytorch_model-00001-of-00002.bin",
|
206 |
+
"gpt_neox.layers.20.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
207 |
+
"gpt_neox.layers.20.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
208 |
+
"gpt_neox.layers.20.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
209 |
+
"gpt_neox.layers.20.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
210 |
+
"gpt_neox.layers.20.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
211 |
+
"gpt_neox.layers.20.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
212 |
+
"gpt_neox.layers.20.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
213 |
+
"gpt_neox.layers.20.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
214 |
+
"gpt_neox.layers.20.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
215 |
+
"gpt_neox.layers.20.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
216 |
+
"gpt_neox.layers.20.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
217 |
+
"gpt_neox.layers.20.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
218 |
+
"gpt_neox.layers.20.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
219 |
+
"gpt_neox.layers.20.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
220 |
+
"gpt_neox.layers.21.attention.bias": "pytorch_model-00001-of-00002.bin",
|
221 |
+
"gpt_neox.layers.21.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
222 |
+
"gpt_neox.layers.21.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
223 |
+
"gpt_neox.layers.21.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
224 |
+
"gpt_neox.layers.21.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
225 |
+
"gpt_neox.layers.21.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
226 |
+
"gpt_neox.layers.21.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
227 |
+
"gpt_neox.layers.21.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
228 |
+
"gpt_neox.layers.21.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
229 |
+
"gpt_neox.layers.21.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
230 |
+
"gpt_neox.layers.21.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
231 |
+
"gpt_neox.layers.21.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
232 |
+
"gpt_neox.layers.21.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
233 |
+
"gpt_neox.layers.21.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
234 |
+
"gpt_neox.layers.21.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
235 |
+
"gpt_neox.layers.22.attention.bias": "pytorch_model-00001-of-00002.bin",
|
236 |
+
"gpt_neox.layers.22.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
237 |
+
"gpt_neox.layers.22.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
238 |
+
"gpt_neox.layers.22.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
239 |
+
"gpt_neox.layers.22.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
240 |
+
"gpt_neox.layers.22.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
241 |
+
"gpt_neox.layers.22.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
242 |
+
"gpt_neox.layers.22.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
243 |
+
"gpt_neox.layers.22.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
244 |
+
"gpt_neox.layers.22.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
245 |
+
"gpt_neox.layers.22.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
246 |
+
"gpt_neox.layers.22.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
247 |
+
"gpt_neox.layers.22.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
248 |
+
"gpt_neox.layers.22.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
249 |
+
"gpt_neox.layers.22.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
250 |
+
"gpt_neox.layers.23.attention.bias": "pytorch_model-00001-of-00002.bin",
|
251 |
+
"gpt_neox.layers.23.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
252 |
+
"gpt_neox.layers.23.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
253 |
+
"gpt_neox.layers.23.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
254 |
+
"gpt_neox.layers.23.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
255 |
+
"gpt_neox.layers.23.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
256 |
+
"gpt_neox.layers.23.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
257 |
+
"gpt_neox.layers.23.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
258 |
+
"gpt_neox.layers.23.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
259 |
+
"gpt_neox.layers.23.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
260 |
+
"gpt_neox.layers.23.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
261 |
+
"gpt_neox.layers.23.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
262 |
+
"gpt_neox.layers.23.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
263 |
+
"gpt_neox.layers.23.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
264 |
+
"gpt_neox.layers.23.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
265 |
+
"gpt_neox.layers.24.attention.bias": "pytorch_model-00001-of-00002.bin",
|
266 |
+
"gpt_neox.layers.24.attention.dense.bias": "pytorch_model-00002-of-00002.bin",
|
267 |
+
"gpt_neox.layers.24.attention.dense.weight": "pytorch_model-00002-of-00002.bin",
|
268 |
+
"gpt_neox.layers.24.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
269 |
+
"gpt_neox.layers.24.attention.query_key_value.bias": "pytorch_model-00002-of-00002.bin",
|
270 |
+
"gpt_neox.layers.24.attention.query_key_value.weight": "pytorch_model-00002-of-00002.bin",
|
271 |
+
"gpt_neox.layers.24.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
272 |
+
"gpt_neox.layers.24.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
273 |
+
"gpt_neox.layers.24.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
274 |
+
"gpt_neox.layers.24.mlp.dense_4h_to_h.bias": "pytorch_model-00002-of-00002.bin",
|
275 |
+
"gpt_neox.layers.24.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00002.bin",
|
276 |
+
"gpt_neox.layers.24.mlp.dense_h_to_4h.bias": "pytorch_model-00002-of-00002.bin",
|
277 |
+
"gpt_neox.layers.24.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00002.bin",
|
278 |
+
"gpt_neox.layers.24.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
279 |
+
"gpt_neox.layers.24.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
280 |
+
"gpt_neox.layers.25.attention.bias": "pytorch_model-00002-of-00002.bin",
|
281 |
+
"gpt_neox.layers.25.attention.dense.bias": "pytorch_model-00002-of-00002.bin",
|
282 |
+
"gpt_neox.layers.25.attention.dense.weight": "pytorch_model-00002-of-00002.bin",
|
283 |
+
"gpt_neox.layers.25.attention.masked_bias": "pytorch_model-00002-of-00002.bin",
|
284 |
+
"gpt_neox.layers.25.attention.query_key_value.bias": "pytorch_model-00002-of-00002.bin",
|
285 |
+
"gpt_neox.layers.25.attention.query_key_value.weight": "pytorch_model-00002-of-00002.bin",
|
286 |
+
"gpt_neox.layers.25.attention.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
|
287 |
+
"gpt_neox.layers.25.input_layernorm.bias": "pytorch_model-00002-of-00002.bin",
|
288 |
+
"gpt_neox.layers.25.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
289 |
+
"gpt_neox.layers.25.mlp.dense_4h_to_h.bias": "pytorch_model-00002-of-00002.bin",
|
290 |
+
"gpt_neox.layers.25.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00002.bin",
|
291 |
+
"gpt_neox.layers.25.mlp.dense_h_to_4h.bias": "pytorch_model-00002-of-00002.bin",
|
292 |
+
"gpt_neox.layers.25.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00002.bin",
|
293 |
+
"gpt_neox.layers.25.post_attention_layernorm.bias": "pytorch_model-00002-of-00002.bin",
|
294 |
+
"gpt_neox.layers.25.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
295 |
+
"gpt_neox.layers.26.attention.bias": "pytorch_model-00002-of-00002.bin",
|
296 |
+
"gpt_neox.layers.26.attention.dense.bias": "pytorch_model-00002-of-00002.bin",
|
297 |
+
"gpt_neox.layers.26.attention.dense.weight": "pytorch_model-00002-of-00002.bin",
|
298 |
+
"gpt_neox.layers.26.attention.masked_bias": "pytorch_model-00002-of-00002.bin",
|
299 |
+
"gpt_neox.layers.26.attention.query_key_value.bias": "pytorch_model-00002-of-00002.bin",
|
300 |
+
"gpt_neox.layers.26.attention.query_key_value.weight": "pytorch_model-00002-of-00002.bin",
|
301 |
+
"gpt_neox.layers.26.attention.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
|
302 |
+
"gpt_neox.layers.26.input_layernorm.bias": "pytorch_model-00002-of-00002.bin",
|
303 |
+
"gpt_neox.layers.26.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
304 |
+
"gpt_neox.layers.26.mlp.dense_4h_to_h.bias": "pytorch_model-00002-of-00002.bin",
|
305 |
+
"gpt_neox.layers.26.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00002.bin",
|
306 |
+
"gpt_neox.layers.26.mlp.dense_h_to_4h.bias": "pytorch_model-00002-of-00002.bin",
|
307 |
+
"gpt_neox.layers.26.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00002.bin",
|
308 |
+
"gpt_neox.layers.26.post_attention_layernorm.bias": "pytorch_model-00002-of-00002.bin",
|
309 |
+
"gpt_neox.layers.26.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
310 |
+
"gpt_neox.layers.27.attention.bias": "pytorch_model-00002-of-00002.bin",
|
311 |
+
"gpt_neox.layers.27.attention.dense.bias": "pytorch_model-00002-of-00002.bin",
|
312 |
+
"gpt_neox.layers.27.attention.dense.weight": "pytorch_model-00002-of-00002.bin",
|
313 |
+
"gpt_neox.layers.27.attention.masked_bias": "pytorch_model-00002-of-00002.bin",
|
314 |
+
"gpt_neox.layers.27.attention.query_key_value.bias": "pytorch_model-00002-of-00002.bin",
|
315 |
+
"gpt_neox.layers.27.attention.query_key_value.weight": "pytorch_model-00002-of-00002.bin",
|
316 |
+
"gpt_neox.layers.27.attention.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
|
317 |
+
"gpt_neox.layers.27.input_layernorm.bias": "pytorch_model-00002-of-00002.bin",
|
318 |
+
"gpt_neox.layers.27.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
319 |
+
"gpt_neox.layers.27.mlp.dense_4h_to_h.bias": "pytorch_model-00002-of-00002.bin",
|
320 |
+
"gpt_neox.layers.27.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00002.bin",
|
321 |
+
"gpt_neox.layers.27.mlp.dense_h_to_4h.bias": "pytorch_model-00002-of-00002.bin",
|
322 |
+
"gpt_neox.layers.27.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00002.bin",
|
323 |
+
"gpt_neox.layers.27.post_attention_layernorm.bias": "pytorch_model-00002-of-00002.bin",
|
324 |
+
"gpt_neox.layers.27.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
325 |
+
"gpt_neox.layers.3.attention.bias": "pytorch_model-00001-of-00002.bin",
|
326 |
+
"gpt_neox.layers.3.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
327 |
+
"gpt_neox.layers.3.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
328 |
+
"gpt_neox.layers.3.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
329 |
+
"gpt_neox.layers.3.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
330 |
+
"gpt_neox.layers.3.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
331 |
+
"gpt_neox.layers.3.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
332 |
+
"gpt_neox.layers.3.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
333 |
+
"gpt_neox.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
334 |
+
"gpt_neox.layers.3.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
335 |
+
"gpt_neox.layers.3.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
336 |
+
"gpt_neox.layers.3.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
337 |
+
"gpt_neox.layers.3.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
338 |
+
"gpt_neox.layers.3.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
339 |
+
"gpt_neox.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
340 |
+
"gpt_neox.layers.4.attention.bias": "pytorch_model-00001-of-00002.bin",
|
341 |
+
"gpt_neox.layers.4.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
342 |
+
"gpt_neox.layers.4.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
343 |
+
"gpt_neox.layers.4.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
344 |
+
"gpt_neox.layers.4.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
345 |
+
"gpt_neox.layers.4.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
346 |
+
"gpt_neox.layers.4.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
347 |
+
"gpt_neox.layers.4.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
348 |
+
"gpt_neox.layers.4.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
349 |
+
"gpt_neox.layers.4.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
350 |
+
"gpt_neox.layers.4.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
351 |
+
"gpt_neox.layers.4.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
352 |
+
"gpt_neox.layers.4.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
353 |
+
"gpt_neox.layers.4.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
354 |
+
"gpt_neox.layers.4.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
355 |
+
"gpt_neox.layers.5.attention.bias": "pytorch_model-00001-of-00002.bin",
|
356 |
+
"gpt_neox.layers.5.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
357 |
+
"gpt_neox.layers.5.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
358 |
+
"gpt_neox.layers.5.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
359 |
+
"gpt_neox.layers.5.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
360 |
+
"gpt_neox.layers.5.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
361 |
+
"gpt_neox.layers.5.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
362 |
+
"gpt_neox.layers.5.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
363 |
+
"gpt_neox.layers.5.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
364 |
+
"gpt_neox.layers.5.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
365 |
+
"gpt_neox.layers.5.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
366 |
+
"gpt_neox.layers.5.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
367 |
+
"gpt_neox.layers.5.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
368 |
+
"gpt_neox.layers.5.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
369 |
+
"gpt_neox.layers.5.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
370 |
+
"gpt_neox.layers.6.attention.bias": "pytorch_model-00001-of-00002.bin",
|
371 |
+
"gpt_neox.layers.6.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
372 |
+
"gpt_neox.layers.6.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
373 |
+
"gpt_neox.layers.6.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
374 |
+
"gpt_neox.layers.6.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
375 |
+
"gpt_neox.layers.6.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
376 |
+
"gpt_neox.layers.6.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
377 |
+
"gpt_neox.layers.6.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
378 |
+
"gpt_neox.layers.6.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
379 |
+
"gpt_neox.layers.6.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
380 |
+
"gpt_neox.layers.6.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
381 |
+
"gpt_neox.layers.6.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
382 |
+
"gpt_neox.layers.6.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
383 |
+
"gpt_neox.layers.6.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
384 |
+
"gpt_neox.layers.6.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
385 |
+
"gpt_neox.layers.7.attention.bias": "pytorch_model-00001-of-00002.bin",
|
386 |
+
"gpt_neox.layers.7.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
387 |
+
"gpt_neox.layers.7.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
388 |
+
"gpt_neox.layers.7.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
389 |
+
"gpt_neox.layers.7.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
390 |
+
"gpt_neox.layers.7.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
391 |
+
"gpt_neox.layers.7.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
392 |
+
"gpt_neox.layers.7.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
393 |
+
"gpt_neox.layers.7.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
394 |
+
"gpt_neox.layers.7.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
395 |
+
"gpt_neox.layers.7.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
396 |
+
"gpt_neox.layers.7.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
397 |
+
"gpt_neox.layers.7.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
398 |
+
"gpt_neox.layers.7.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
399 |
+
"gpt_neox.layers.7.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
400 |
+
"gpt_neox.layers.8.attention.bias": "pytorch_model-00001-of-00002.bin",
|
401 |
+
"gpt_neox.layers.8.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
402 |
+
"gpt_neox.layers.8.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
403 |
+
"gpt_neox.layers.8.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
404 |
+
"gpt_neox.layers.8.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
405 |
+
"gpt_neox.layers.8.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
406 |
+
"gpt_neox.layers.8.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
407 |
+
"gpt_neox.layers.8.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
408 |
+
"gpt_neox.layers.8.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
409 |
+
"gpt_neox.layers.8.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
410 |
+
"gpt_neox.layers.8.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
411 |
+
"gpt_neox.layers.8.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
412 |
+
"gpt_neox.layers.8.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
413 |
+
"gpt_neox.layers.8.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
414 |
+
"gpt_neox.layers.8.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
415 |
+
"gpt_neox.layers.9.attention.bias": "pytorch_model-00001-of-00002.bin",
|
416 |
+
"gpt_neox.layers.9.attention.dense.bias": "pytorch_model-00001-of-00002.bin",
|
417 |
+
"gpt_neox.layers.9.attention.dense.weight": "pytorch_model-00001-of-00002.bin",
|
418 |
+
"gpt_neox.layers.9.attention.masked_bias": "pytorch_model-00001-of-00002.bin",
|
419 |
+
"gpt_neox.layers.9.attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
|
420 |
+
"gpt_neox.layers.9.attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
|
421 |
+
"gpt_neox.layers.9.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
422 |
+
"gpt_neox.layers.9.input_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
423 |
+
"gpt_neox.layers.9.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
424 |
+
"gpt_neox.layers.9.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00002.bin",
|
425 |
+
"gpt_neox.layers.9.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
|
426 |
+
"gpt_neox.layers.9.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00002.bin",
|
427 |
+
"gpt_neox.layers.9.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
|
428 |
+
"gpt_neox.layers.9.post_attention_layernorm.bias": "pytorch_model-00001-of-00002.bin",
|
429 |
+
"gpt_neox.layers.9.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin"
|
430 |
+
}
|
431 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|endoftext|>",
|
4 |
+
"<|sep|>",
|
5 |
+
"<|acc|>",
|
6 |
+
"<|tel|>",
|
7 |
+
"<|rrn|>"
|
8 |
+
],
|
9 |
+
"eos_token": "<|endoftext|>",
|
10 |
+
"pad_token": "<|endoftext|>"
|
11 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"clean_up_tokenization_spaces": true,
|
3 |
+
"eos_token": "<|endoftext|>",
|
4 |
+
"model_max_length": 1000000000000000019884624838656,
|
5 |
+
"pad_token": "<|endoftext|>",
|
6 |
+
"tokenizer_class": "PreTrainedTokenizerFast"
|
7 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": 0.2509765625,
|
3 |
+
"best_model_checkpoint": "./models/2023-03-16_1edc4008-e54e/checkpoint-2534",
|
4 |
+
"epoch": 3.0,
|
5 |
+
"global_step": 7602,
|
6 |
+
"is_hyper_param_search": false,
|
7 |
+
"is_local_process_zero": true,
|
8 |
+
"is_world_process_zero": true,
|
9 |
+
"log_history": [
|
10 |
+
{
|
11 |
+
"epoch": 0.0,
|
12 |
+
"learning_rate": 1.9997369113391214e-05,
|
13 |
+
"loss": 9.8984,
|
14 |
+
"step": 1
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"epoch": 1.0,
|
18 |
+
"learning_rate": 1.3333333333333333e-05,
|
19 |
+
"loss": 0.2605,
|
20 |
+
"step": 2534
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"epoch": 1.0,
|
24 |
+
"eval_loss": 0.2509765625,
|
25 |
+
"eval_runtime": 191.3685,
|
26 |
+
"eval_samples_per_second": 23.536,
|
27 |
+
"eval_steps_per_second": 2.942,
|
28 |
+
"step": 2534
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"epoch": 2.0,
|
32 |
+
"learning_rate": 6.666666666666667e-06,
|
33 |
+
"loss": 0.1598,
|
34 |
+
"step": 5068
|
35 |
+
},
|
36 |
+
{
|
37 |
+
"epoch": 2.0,
|
38 |
+
"eval_loss": 0.258544921875,
|
39 |
+
"eval_runtime": 159.499,
|
40 |
+
"eval_samples_per_second": 28.238,
|
41 |
+
"eval_steps_per_second": 3.53,
|
42 |
+
"step": 5068
|
43 |
+
},
|
44 |
+
{
|
45 |
+
"epoch": 3.0,
|
46 |
+
"learning_rate": 0.0,
|
47 |
+
"loss": 0.0753,
|
48 |
+
"step": 7602
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"epoch": 3.0,
|
52 |
+
"eval_loss": 0.3056640625,
|
53 |
+
"eval_runtime": 159.3863,
|
54 |
+
"eval_samples_per_second": 28.258,
|
55 |
+
"eval_steps_per_second": 3.532,
|
56 |
+
"step": 7602
|
57 |
+
}
|
58 |
+
],
|
59 |
+
"max_steps": 7602,
|
60 |
+
"num_train_epochs": 3,
|
61 |
+
"total_flos": 2.1525111523686482e+18,
|
62 |
+
"trial_name": null,
|
63 |
+
"trial_params": null
|
64 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6f53bd7e65a8586258c34de78ab2c36d4059b27f4ef1a568022363ceda2a21bd
|
3 |
+
size 129
|