PhoenixB commited on
Commit
a9fb40c
·
verified ·
1 Parent(s): af00ebb

End of training

Browse files
README.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5
3
+ library_name: transformers
4
+ model_name: 28eaeb4e-7c09-4042-8679-45aa8ad87240
5
+ tags:
6
+ - generated_from_trainer
7
+ - axolotl
8
+ - dpo
9
+ - trl
10
+ licence: license
11
+ ---
12
+
13
+ # Model Card for 28eaeb4e-7c09-4042-8679-45aa8ad87240
14
+
15
+ This model is a fine-tuned version of [OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5](https://huggingface.co/OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5).
16
+ It has been trained using [TRL](https://github.com/huggingface/trl).
17
+
18
+ ## Quick start
19
+
20
+ ```python
21
+ from transformers import pipeline
22
+
23
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
24
+ generator = pipeline("text-generation", model="PhoenixB/28eaeb4e-7c09-4042-8679-45aa8ad87240", device="cuda")
25
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
26
+ print(output["generated_text"])
27
+ ```
28
+
29
+ ## Training procedure
30
+
31
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/phoenix-formless/Gradients-On-Demand/runs/p3v6th6u)
32
+
33
+ This model was trained with DPO, a method introduced in [Direct Preference Optimization: Your Language Model is Secretly a Reward Model](https://huggingface.co/papers/2305.18290).
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 0.12.0
38
+ - Transformers: 4.46.3
39
+ - Pytorch: 2.5.1+cu124
40
+ - Datasets: 3.1.0
41
+ - Tokenizers: 0.20.3
42
+
43
+ ## Citations
44
+
45
+ Cite DPO as:
46
+
47
+ ```bibtex
48
+ @inproceedings{rafailov2023direct,
49
+ title = {{Direct Preference Optimization: Your Language Model is Secretly a Reward Model}},
50
+ author = {Rafael Rafailov and Archit Sharma and Eric Mitchell and Christopher D. Manning and Stefano Ermon and Chelsea Finn},
51
+ year = 2023,
52
+ booktitle = {Advances in Neural Information Processing Systems 36: Annual Conference on Neural Information Processing Systems 2023, NeurIPS 2023, New Orleans, LA, USA, December 10 - 16, 2023},
53
+ url = {http://papers.nips.cc/paper_files/paper/2023/hash/a85b405ed65c6477a4fe8302b5e06ce7-Abstract-Conference.html},
54
+ editor = {Alice Oh and Tristan Naumann and Amir Globerson and Kate Saenko and Moritz Hardt and Sergey Levine},
55
+ }
56
+ ```
57
+
58
+ Cite TRL as:
59
+
60
+ ```bibtex
61
+ @misc{vonwerra2022trl,
62
+ title = {{TRL: Transformer Reinforcement Learning}},
63
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
64
+ year = 2020,
65
+ journal = {GitHub repository},
66
+ publisher = {GitHub},
67
+ howpublished = {\url{https://github.com/huggingface/trl}}
68
+ }
69
+ ```
adapter_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9413b7f14805938312fb77460b793cb307e6ea94ddf06da59bf2394bb7daa4e0
3
+ size 94419706
config.json CHANGED
@@ -1,5 +1,4 @@
1
  {
2
- "_attn_implementation_autoset": true,
3
  "_name_or_path": "OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5",
4
  "architectures": [
5
  "GPTNeoXForCausalLM"
@@ -25,7 +24,7 @@
25
  "rotary_emb_base": 10000,
26
  "rotary_pct": 0.25,
27
  "tie_word_embeddings": false,
28
- "torch_dtype": "float16",
29
  "transformers_version": "4.46.3",
30
  "use_cache": false,
31
  "use_parallel_residual": true,
 
1
  {
 
2
  "_name_or_path": "OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5",
3
  "architectures": [
4
  "GPTNeoXForCausalLM"
 
24
  "rotary_emb_base": 10000,
25
  "rotary_pct": 0.25,
26
  "tie_word_embeddings": false,
27
+ "torch_dtype": "bfloat16",
28
  "transformers_version": "4.46.3",
29
  "use_cache": false,
30
  "use_parallel_residual": true,
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "do_sample": true,
5
+ "eos_token_id": 0,
6
+ "transformers_version": "4.46.3"
7
+ }
pytorch_model-00001-of-00005.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fde9dff9bed4d23db191fe99416c161653a5710cccb897591f84844c88d86de4
3
+ size 4804621966
pytorch_model-00002-of-00005.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d634d431b857a80e445a70da9749a78a1ba5e3e1199f1a74043e7c40373e9ef2
3
+ size 4824507958
pytorch_model-00003-of-00005.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c86964e07dcddb9879218d1d52108efb48d4a0ef4516b584c70625af2c9ffef
3
+ size 4981825166
pytorch_model-00004-of-00005.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:018a5b54398fc2248be7d37fe1ee35cc617c80c972e5d4437ae81e85d68aba77
3
+ size 4876947062
pytorch_model-00005-of-00005.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b67958a2bf45c3f45f2228addf317af98d3aa4b8e70e10a928dde2a254570470
3
+ size 4290626856
pytorch_model.bin.index.json ADDED
@@ -0,0 +1,731 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 23778324480
4
+ },
5
+ "weight_map": {
6
+ "embed_out.weight": "pytorch_model-00005-of-00005.bin",
7
+ "gpt_neox.embed_in.weight": "pytorch_model-00001-of-00005.bin",
8
+ "gpt_neox.final_layer_norm.bias": "pytorch_model-00005-of-00005.bin",
9
+ "gpt_neox.final_layer_norm.weight": "pytorch_model-00005-of-00005.bin",
10
+ "gpt_neox.layers.0.attention.dense.base_layer.bias": "pytorch_model-00001-of-00005.bin",
11
+ "gpt_neox.layers.0.attention.dense.base_layer.weight": "pytorch_model-00001-of-00005.bin",
12
+ "gpt_neox.layers.0.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
13
+ "gpt_neox.layers.0.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
14
+ "gpt_neox.layers.0.attention.query_key_value.base_layer.bias": "pytorch_model-00001-of-00005.bin",
15
+ "gpt_neox.layers.0.attention.query_key_value.base_layer.weight": "pytorch_model-00001-of-00005.bin",
16
+ "gpt_neox.layers.0.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
17
+ "gpt_neox.layers.0.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
18
+ "gpt_neox.layers.0.input_layernorm.bias": "pytorch_model-00001-of-00005.bin",
19
+ "gpt_neox.layers.0.input_layernorm.weight": "pytorch_model-00001-of-00005.bin",
20
+ "gpt_neox.layers.0.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
21
+ "gpt_neox.layers.0.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
22
+ "gpt_neox.layers.0.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
23
+ "gpt_neox.layers.0.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
24
+ "gpt_neox.layers.0.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
25
+ "gpt_neox.layers.0.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
26
+ "gpt_neox.layers.0.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
27
+ "gpt_neox.layers.0.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
28
+ "gpt_neox.layers.0.post_attention_layernorm.bias": "pytorch_model-00001-of-00005.bin",
29
+ "gpt_neox.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.bin",
30
+ "gpt_neox.layers.1.attention.dense.base_layer.bias": "pytorch_model-00001-of-00005.bin",
31
+ "gpt_neox.layers.1.attention.dense.base_layer.weight": "pytorch_model-00001-of-00005.bin",
32
+ "gpt_neox.layers.1.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
33
+ "gpt_neox.layers.1.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
34
+ "gpt_neox.layers.1.attention.query_key_value.base_layer.bias": "pytorch_model-00001-of-00005.bin",
35
+ "gpt_neox.layers.1.attention.query_key_value.base_layer.weight": "pytorch_model-00001-of-00005.bin",
36
+ "gpt_neox.layers.1.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
37
+ "gpt_neox.layers.1.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
38
+ "gpt_neox.layers.1.input_layernorm.bias": "pytorch_model-00001-of-00005.bin",
39
+ "gpt_neox.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00005.bin",
40
+ "gpt_neox.layers.1.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
41
+ "gpt_neox.layers.1.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
42
+ "gpt_neox.layers.1.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
43
+ "gpt_neox.layers.1.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
44
+ "gpt_neox.layers.1.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
45
+ "gpt_neox.layers.1.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
46
+ "gpt_neox.layers.1.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
47
+ "gpt_neox.layers.1.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
48
+ "gpt_neox.layers.1.post_attention_layernorm.bias": "pytorch_model-00001-of-00005.bin",
49
+ "gpt_neox.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.bin",
50
+ "gpt_neox.layers.10.attention.dense.base_layer.bias": "pytorch_model-00002-of-00005.bin",
51
+ "gpt_neox.layers.10.attention.dense.base_layer.weight": "pytorch_model-00002-of-00005.bin",
52
+ "gpt_neox.layers.10.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
53
+ "gpt_neox.layers.10.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
54
+ "gpt_neox.layers.10.attention.query_key_value.base_layer.bias": "pytorch_model-00002-of-00005.bin",
55
+ "gpt_neox.layers.10.attention.query_key_value.base_layer.weight": "pytorch_model-00002-of-00005.bin",
56
+ "gpt_neox.layers.10.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
57
+ "gpt_neox.layers.10.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
58
+ "gpt_neox.layers.10.input_layernorm.bias": "pytorch_model-00002-of-00005.bin",
59
+ "gpt_neox.layers.10.input_layernorm.weight": "pytorch_model-00002-of-00005.bin",
60
+ "gpt_neox.layers.10.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
61
+ "gpt_neox.layers.10.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
62
+ "gpt_neox.layers.10.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
63
+ "gpt_neox.layers.10.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
64
+ "gpt_neox.layers.10.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
65
+ "gpt_neox.layers.10.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
66
+ "gpt_neox.layers.10.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
67
+ "gpt_neox.layers.10.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
68
+ "gpt_neox.layers.10.post_attention_layernorm.bias": "pytorch_model-00002-of-00005.bin",
69
+ "gpt_neox.layers.10.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.bin",
70
+ "gpt_neox.layers.11.attention.dense.base_layer.bias": "pytorch_model-00002-of-00005.bin",
71
+ "gpt_neox.layers.11.attention.dense.base_layer.weight": "pytorch_model-00002-of-00005.bin",
72
+ "gpt_neox.layers.11.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
73
+ "gpt_neox.layers.11.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
74
+ "gpt_neox.layers.11.attention.query_key_value.base_layer.bias": "pytorch_model-00002-of-00005.bin",
75
+ "gpt_neox.layers.11.attention.query_key_value.base_layer.weight": "pytorch_model-00002-of-00005.bin",
76
+ "gpt_neox.layers.11.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
77
+ "gpt_neox.layers.11.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
78
+ "gpt_neox.layers.11.input_layernorm.bias": "pytorch_model-00002-of-00005.bin",
79
+ "gpt_neox.layers.11.input_layernorm.weight": "pytorch_model-00002-of-00005.bin",
80
+ "gpt_neox.layers.11.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
81
+ "gpt_neox.layers.11.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
82
+ "gpt_neox.layers.11.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
83
+ "gpt_neox.layers.11.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
84
+ "gpt_neox.layers.11.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
85
+ "gpt_neox.layers.11.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
86
+ "gpt_neox.layers.11.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
87
+ "gpt_neox.layers.11.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
88
+ "gpt_neox.layers.11.post_attention_layernorm.bias": "pytorch_model-00002-of-00005.bin",
89
+ "gpt_neox.layers.11.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.bin",
90
+ "gpt_neox.layers.12.attention.dense.base_layer.bias": "pytorch_model-00002-of-00005.bin",
91
+ "gpt_neox.layers.12.attention.dense.base_layer.weight": "pytorch_model-00002-of-00005.bin",
92
+ "gpt_neox.layers.12.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
93
+ "gpt_neox.layers.12.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
94
+ "gpt_neox.layers.12.attention.query_key_value.base_layer.bias": "pytorch_model-00002-of-00005.bin",
95
+ "gpt_neox.layers.12.attention.query_key_value.base_layer.weight": "pytorch_model-00002-of-00005.bin",
96
+ "gpt_neox.layers.12.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
97
+ "gpt_neox.layers.12.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
98
+ "gpt_neox.layers.12.input_layernorm.bias": "pytorch_model-00002-of-00005.bin",
99
+ "gpt_neox.layers.12.input_layernorm.weight": "pytorch_model-00002-of-00005.bin",
100
+ "gpt_neox.layers.12.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
101
+ "gpt_neox.layers.12.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
102
+ "gpt_neox.layers.12.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
103
+ "gpt_neox.layers.12.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
104
+ "gpt_neox.layers.12.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
105
+ "gpt_neox.layers.12.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
106
+ "gpt_neox.layers.12.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
107
+ "gpt_neox.layers.12.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
108
+ "gpt_neox.layers.12.post_attention_layernorm.bias": "pytorch_model-00002-of-00005.bin",
109
+ "gpt_neox.layers.12.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.bin",
110
+ "gpt_neox.layers.13.attention.dense.base_layer.bias": "pytorch_model-00002-of-00005.bin",
111
+ "gpt_neox.layers.13.attention.dense.base_layer.weight": "pytorch_model-00002-of-00005.bin",
112
+ "gpt_neox.layers.13.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
113
+ "gpt_neox.layers.13.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
114
+ "gpt_neox.layers.13.attention.query_key_value.base_layer.bias": "pytorch_model-00002-of-00005.bin",
115
+ "gpt_neox.layers.13.attention.query_key_value.base_layer.weight": "pytorch_model-00002-of-00005.bin",
116
+ "gpt_neox.layers.13.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
117
+ "gpt_neox.layers.13.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
118
+ "gpt_neox.layers.13.input_layernorm.bias": "pytorch_model-00002-of-00005.bin",
119
+ "gpt_neox.layers.13.input_layernorm.weight": "pytorch_model-00002-of-00005.bin",
120
+ "gpt_neox.layers.13.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
121
+ "gpt_neox.layers.13.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
122
+ "gpt_neox.layers.13.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
123
+ "gpt_neox.layers.13.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
124
+ "gpt_neox.layers.13.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
125
+ "gpt_neox.layers.13.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
126
+ "gpt_neox.layers.13.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
127
+ "gpt_neox.layers.13.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
128
+ "gpt_neox.layers.13.post_attention_layernorm.bias": "pytorch_model-00002-of-00005.bin",
129
+ "gpt_neox.layers.13.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.bin",
130
+ "gpt_neox.layers.14.attention.dense.base_layer.bias": "pytorch_model-00002-of-00005.bin",
131
+ "gpt_neox.layers.14.attention.dense.base_layer.weight": "pytorch_model-00002-of-00005.bin",
132
+ "gpt_neox.layers.14.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
133
+ "gpt_neox.layers.14.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
134
+ "gpt_neox.layers.14.attention.query_key_value.base_layer.bias": "pytorch_model-00002-of-00005.bin",
135
+ "gpt_neox.layers.14.attention.query_key_value.base_layer.weight": "pytorch_model-00002-of-00005.bin",
136
+ "gpt_neox.layers.14.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
137
+ "gpt_neox.layers.14.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
138
+ "gpt_neox.layers.14.input_layernorm.bias": "pytorch_model-00002-of-00005.bin",
139
+ "gpt_neox.layers.14.input_layernorm.weight": "pytorch_model-00002-of-00005.bin",
140
+ "gpt_neox.layers.14.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
141
+ "gpt_neox.layers.14.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
142
+ "gpt_neox.layers.14.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
143
+ "gpt_neox.layers.14.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
144
+ "gpt_neox.layers.14.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
145
+ "gpt_neox.layers.14.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
146
+ "gpt_neox.layers.14.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
147
+ "gpt_neox.layers.14.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
148
+ "gpt_neox.layers.14.post_attention_layernorm.bias": "pytorch_model-00002-of-00005.bin",
149
+ "gpt_neox.layers.14.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.bin",
150
+ "gpt_neox.layers.15.attention.dense.base_layer.bias": "pytorch_model-00003-of-00005.bin",
151
+ "gpt_neox.layers.15.attention.dense.base_layer.weight": "pytorch_model-00003-of-00005.bin",
152
+ "gpt_neox.layers.15.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
153
+ "gpt_neox.layers.15.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
154
+ "gpt_neox.layers.15.attention.query_key_value.base_layer.bias": "pytorch_model-00003-of-00005.bin",
155
+ "gpt_neox.layers.15.attention.query_key_value.base_layer.weight": "pytorch_model-00003-of-00005.bin",
156
+ "gpt_neox.layers.15.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
157
+ "gpt_neox.layers.15.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
158
+ "gpt_neox.layers.15.input_layernorm.bias": "pytorch_model-00003-of-00005.bin",
159
+ "gpt_neox.layers.15.input_layernorm.weight": "pytorch_model-00003-of-00005.bin",
160
+ "gpt_neox.layers.15.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
161
+ "gpt_neox.layers.15.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
162
+ "gpt_neox.layers.15.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
163
+ "gpt_neox.layers.15.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
164
+ "gpt_neox.layers.15.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
165
+ "gpt_neox.layers.15.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
166
+ "gpt_neox.layers.15.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
167
+ "gpt_neox.layers.15.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
168
+ "gpt_neox.layers.15.post_attention_layernorm.bias": "pytorch_model-00003-of-00005.bin",
169
+ "gpt_neox.layers.15.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.bin",
170
+ "gpt_neox.layers.16.attention.dense.base_layer.bias": "pytorch_model-00003-of-00005.bin",
171
+ "gpt_neox.layers.16.attention.dense.base_layer.weight": "pytorch_model-00003-of-00005.bin",
172
+ "gpt_neox.layers.16.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
173
+ "gpt_neox.layers.16.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
174
+ "gpt_neox.layers.16.attention.query_key_value.base_layer.bias": "pytorch_model-00003-of-00005.bin",
175
+ "gpt_neox.layers.16.attention.query_key_value.base_layer.weight": "pytorch_model-00003-of-00005.bin",
176
+ "gpt_neox.layers.16.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
177
+ "gpt_neox.layers.16.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
178
+ "gpt_neox.layers.16.input_layernorm.bias": "pytorch_model-00003-of-00005.bin",
179
+ "gpt_neox.layers.16.input_layernorm.weight": "pytorch_model-00003-of-00005.bin",
180
+ "gpt_neox.layers.16.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
181
+ "gpt_neox.layers.16.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
182
+ "gpt_neox.layers.16.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
183
+ "gpt_neox.layers.16.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
184
+ "gpt_neox.layers.16.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
185
+ "gpt_neox.layers.16.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
186
+ "gpt_neox.layers.16.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
187
+ "gpt_neox.layers.16.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
188
+ "gpt_neox.layers.16.post_attention_layernorm.bias": "pytorch_model-00003-of-00005.bin",
189
+ "gpt_neox.layers.16.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.bin",
190
+ "gpt_neox.layers.17.attention.dense.base_layer.bias": "pytorch_model-00003-of-00005.bin",
191
+ "gpt_neox.layers.17.attention.dense.base_layer.weight": "pytorch_model-00003-of-00005.bin",
192
+ "gpt_neox.layers.17.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
193
+ "gpt_neox.layers.17.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
194
+ "gpt_neox.layers.17.attention.query_key_value.base_layer.bias": "pytorch_model-00003-of-00005.bin",
195
+ "gpt_neox.layers.17.attention.query_key_value.base_layer.weight": "pytorch_model-00003-of-00005.bin",
196
+ "gpt_neox.layers.17.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
197
+ "gpt_neox.layers.17.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
198
+ "gpt_neox.layers.17.input_layernorm.bias": "pytorch_model-00003-of-00005.bin",
199
+ "gpt_neox.layers.17.input_layernorm.weight": "pytorch_model-00003-of-00005.bin",
200
+ "gpt_neox.layers.17.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
201
+ "gpt_neox.layers.17.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
202
+ "gpt_neox.layers.17.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
203
+ "gpt_neox.layers.17.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
204
+ "gpt_neox.layers.17.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
205
+ "gpt_neox.layers.17.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
206
+ "gpt_neox.layers.17.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
207
+ "gpt_neox.layers.17.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
208
+ "gpt_neox.layers.17.post_attention_layernorm.bias": "pytorch_model-00003-of-00005.bin",
209
+ "gpt_neox.layers.17.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.bin",
210
+ "gpt_neox.layers.18.attention.dense.base_layer.bias": "pytorch_model-00003-of-00005.bin",
211
+ "gpt_neox.layers.18.attention.dense.base_layer.weight": "pytorch_model-00003-of-00005.bin",
212
+ "gpt_neox.layers.18.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
213
+ "gpt_neox.layers.18.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
214
+ "gpt_neox.layers.18.attention.query_key_value.base_layer.bias": "pytorch_model-00003-of-00005.bin",
215
+ "gpt_neox.layers.18.attention.query_key_value.base_layer.weight": "pytorch_model-00003-of-00005.bin",
216
+ "gpt_neox.layers.18.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
217
+ "gpt_neox.layers.18.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
218
+ "gpt_neox.layers.18.input_layernorm.bias": "pytorch_model-00003-of-00005.bin",
219
+ "gpt_neox.layers.18.input_layernorm.weight": "pytorch_model-00003-of-00005.bin",
220
+ "gpt_neox.layers.18.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
221
+ "gpt_neox.layers.18.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
222
+ "gpt_neox.layers.18.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
223
+ "gpt_neox.layers.18.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
224
+ "gpt_neox.layers.18.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
225
+ "gpt_neox.layers.18.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
226
+ "gpt_neox.layers.18.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
227
+ "gpt_neox.layers.18.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
228
+ "gpt_neox.layers.18.post_attention_layernorm.bias": "pytorch_model-00003-of-00005.bin",
229
+ "gpt_neox.layers.18.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.bin",
230
+ "gpt_neox.layers.19.attention.dense.base_layer.bias": "pytorch_model-00003-of-00005.bin",
231
+ "gpt_neox.layers.19.attention.dense.base_layer.weight": "pytorch_model-00003-of-00005.bin",
232
+ "gpt_neox.layers.19.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
233
+ "gpt_neox.layers.19.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
234
+ "gpt_neox.layers.19.attention.query_key_value.base_layer.bias": "pytorch_model-00003-of-00005.bin",
235
+ "gpt_neox.layers.19.attention.query_key_value.base_layer.weight": "pytorch_model-00003-of-00005.bin",
236
+ "gpt_neox.layers.19.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
237
+ "gpt_neox.layers.19.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
238
+ "gpt_neox.layers.19.input_layernorm.bias": "pytorch_model-00003-of-00005.bin",
239
+ "gpt_neox.layers.19.input_layernorm.weight": "pytorch_model-00003-of-00005.bin",
240
+ "gpt_neox.layers.19.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
241
+ "gpt_neox.layers.19.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
242
+ "gpt_neox.layers.19.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
243
+ "gpt_neox.layers.19.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
244
+ "gpt_neox.layers.19.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
245
+ "gpt_neox.layers.19.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
246
+ "gpt_neox.layers.19.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
247
+ "gpt_neox.layers.19.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
248
+ "gpt_neox.layers.19.post_attention_layernorm.bias": "pytorch_model-00003-of-00005.bin",
249
+ "gpt_neox.layers.19.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.bin",
250
+ "gpt_neox.layers.2.attention.dense.base_layer.bias": "pytorch_model-00001-of-00005.bin",
251
+ "gpt_neox.layers.2.attention.dense.base_layer.weight": "pytorch_model-00001-of-00005.bin",
252
+ "gpt_neox.layers.2.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
253
+ "gpt_neox.layers.2.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
254
+ "gpt_neox.layers.2.attention.query_key_value.base_layer.bias": "pytorch_model-00001-of-00005.bin",
255
+ "gpt_neox.layers.2.attention.query_key_value.base_layer.weight": "pytorch_model-00001-of-00005.bin",
256
+ "gpt_neox.layers.2.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
257
+ "gpt_neox.layers.2.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
258
+ "gpt_neox.layers.2.input_layernorm.bias": "pytorch_model-00001-of-00005.bin",
259
+ "gpt_neox.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00005.bin",
260
+ "gpt_neox.layers.2.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
261
+ "gpt_neox.layers.2.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
262
+ "gpt_neox.layers.2.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
263
+ "gpt_neox.layers.2.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
264
+ "gpt_neox.layers.2.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
265
+ "gpt_neox.layers.2.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
266
+ "gpt_neox.layers.2.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
267
+ "gpt_neox.layers.2.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
268
+ "gpt_neox.layers.2.post_attention_layernorm.bias": "pytorch_model-00001-of-00005.bin",
269
+ "gpt_neox.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.bin",
270
+ "gpt_neox.layers.20.attention.dense.base_layer.bias": "pytorch_model-00003-of-00005.bin",
271
+ "gpt_neox.layers.20.attention.dense.base_layer.weight": "pytorch_model-00003-of-00005.bin",
272
+ "gpt_neox.layers.20.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
273
+ "gpt_neox.layers.20.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
274
+ "gpt_neox.layers.20.attention.query_key_value.base_layer.bias": "pytorch_model-00003-of-00005.bin",
275
+ "gpt_neox.layers.20.attention.query_key_value.base_layer.weight": "pytorch_model-00003-of-00005.bin",
276
+ "gpt_neox.layers.20.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
277
+ "gpt_neox.layers.20.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
278
+ "gpt_neox.layers.20.input_layernorm.bias": "pytorch_model-00003-of-00005.bin",
279
+ "gpt_neox.layers.20.input_layernorm.weight": "pytorch_model-00003-of-00005.bin",
280
+ "gpt_neox.layers.20.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
281
+ "gpt_neox.layers.20.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
282
+ "gpt_neox.layers.20.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
283
+ "gpt_neox.layers.20.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
284
+ "gpt_neox.layers.20.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
285
+ "gpt_neox.layers.20.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
286
+ "gpt_neox.layers.20.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
287
+ "gpt_neox.layers.20.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
288
+ "gpt_neox.layers.20.post_attention_layernorm.bias": "pytorch_model-00003-of-00005.bin",
289
+ "gpt_neox.layers.20.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.bin",
290
+ "gpt_neox.layers.21.attention.dense.base_layer.bias": "pytorch_model-00003-of-00005.bin",
291
+ "gpt_neox.layers.21.attention.dense.base_layer.weight": "pytorch_model-00003-of-00005.bin",
292
+ "gpt_neox.layers.21.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
293
+ "gpt_neox.layers.21.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
294
+ "gpt_neox.layers.21.attention.query_key_value.base_layer.bias": "pytorch_model-00003-of-00005.bin",
295
+ "gpt_neox.layers.21.attention.query_key_value.base_layer.weight": "pytorch_model-00003-of-00005.bin",
296
+ "gpt_neox.layers.21.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
297
+ "gpt_neox.layers.21.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
298
+ "gpt_neox.layers.21.input_layernorm.bias": "pytorch_model-00003-of-00005.bin",
299
+ "gpt_neox.layers.21.input_layernorm.weight": "pytorch_model-00003-of-00005.bin",
300
+ "gpt_neox.layers.21.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
301
+ "gpt_neox.layers.21.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
302
+ "gpt_neox.layers.21.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
303
+ "gpt_neox.layers.21.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
304
+ "gpt_neox.layers.21.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00003-of-00005.bin",
305
+ "gpt_neox.layers.21.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00003-of-00005.bin",
306
+ "gpt_neox.layers.21.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
307
+ "gpt_neox.layers.21.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
308
+ "gpt_neox.layers.21.post_attention_layernorm.bias": "pytorch_model-00003-of-00005.bin",
309
+ "gpt_neox.layers.21.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.bin",
310
+ "gpt_neox.layers.22.attention.dense.base_layer.bias": "pytorch_model-00004-of-00005.bin",
311
+ "gpt_neox.layers.22.attention.dense.base_layer.weight": "pytorch_model-00004-of-00005.bin",
312
+ "gpt_neox.layers.22.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
313
+ "gpt_neox.layers.22.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
314
+ "gpt_neox.layers.22.attention.query_key_value.base_layer.bias": "pytorch_model-00003-of-00005.bin",
315
+ "gpt_neox.layers.22.attention.query_key_value.base_layer.weight": "pytorch_model-00003-of-00005.bin",
316
+ "gpt_neox.layers.22.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
317
+ "gpt_neox.layers.22.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
318
+ "gpt_neox.layers.22.input_layernorm.bias": "pytorch_model-00003-of-00005.bin",
319
+ "gpt_neox.layers.22.input_layernorm.weight": "pytorch_model-00003-of-00005.bin",
320
+ "gpt_neox.layers.22.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
321
+ "gpt_neox.layers.22.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
322
+ "gpt_neox.layers.22.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
323
+ "gpt_neox.layers.22.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
324
+ "gpt_neox.layers.22.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
325
+ "gpt_neox.layers.22.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
326
+ "gpt_neox.layers.22.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
327
+ "gpt_neox.layers.22.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
328
+ "gpt_neox.layers.22.post_attention_layernorm.bias": "pytorch_model-00003-of-00005.bin",
329
+ "gpt_neox.layers.22.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.bin",
330
+ "gpt_neox.layers.23.attention.dense.base_layer.bias": "pytorch_model-00004-of-00005.bin",
331
+ "gpt_neox.layers.23.attention.dense.base_layer.weight": "pytorch_model-00004-of-00005.bin",
332
+ "gpt_neox.layers.23.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
333
+ "gpt_neox.layers.23.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
334
+ "gpt_neox.layers.23.attention.query_key_value.base_layer.bias": "pytorch_model-00004-of-00005.bin",
335
+ "gpt_neox.layers.23.attention.query_key_value.base_layer.weight": "pytorch_model-00004-of-00005.bin",
336
+ "gpt_neox.layers.23.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
337
+ "gpt_neox.layers.23.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
338
+ "gpt_neox.layers.23.input_layernorm.bias": "pytorch_model-00004-of-00005.bin",
339
+ "gpt_neox.layers.23.input_layernorm.weight": "pytorch_model-00004-of-00005.bin",
340
+ "gpt_neox.layers.23.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
341
+ "gpt_neox.layers.23.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
342
+ "gpt_neox.layers.23.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
343
+ "gpt_neox.layers.23.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
344
+ "gpt_neox.layers.23.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
345
+ "gpt_neox.layers.23.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
346
+ "gpt_neox.layers.23.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
347
+ "gpt_neox.layers.23.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
348
+ "gpt_neox.layers.23.post_attention_layernorm.bias": "pytorch_model-00004-of-00005.bin",
349
+ "gpt_neox.layers.23.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.bin",
350
+ "gpt_neox.layers.24.attention.dense.base_layer.bias": "pytorch_model-00004-of-00005.bin",
351
+ "gpt_neox.layers.24.attention.dense.base_layer.weight": "pytorch_model-00004-of-00005.bin",
352
+ "gpt_neox.layers.24.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
353
+ "gpt_neox.layers.24.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
354
+ "gpt_neox.layers.24.attention.query_key_value.base_layer.bias": "pytorch_model-00004-of-00005.bin",
355
+ "gpt_neox.layers.24.attention.query_key_value.base_layer.weight": "pytorch_model-00004-of-00005.bin",
356
+ "gpt_neox.layers.24.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
357
+ "gpt_neox.layers.24.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
358
+ "gpt_neox.layers.24.input_layernorm.bias": "pytorch_model-00004-of-00005.bin",
359
+ "gpt_neox.layers.24.input_layernorm.weight": "pytorch_model-00004-of-00005.bin",
360
+ "gpt_neox.layers.24.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
361
+ "gpt_neox.layers.24.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
362
+ "gpt_neox.layers.24.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
363
+ "gpt_neox.layers.24.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
364
+ "gpt_neox.layers.24.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
365
+ "gpt_neox.layers.24.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
366
+ "gpt_neox.layers.24.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
367
+ "gpt_neox.layers.24.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
368
+ "gpt_neox.layers.24.post_attention_layernorm.bias": "pytorch_model-00004-of-00005.bin",
369
+ "gpt_neox.layers.24.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.bin",
370
+ "gpt_neox.layers.25.attention.dense.base_layer.bias": "pytorch_model-00004-of-00005.bin",
371
+ "gpt_neox.layers.25.attention.dense.base_layer.weight": "pytorch_model-00004-of-00005.bin",
372
+ "gpt_neox.layers.25.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
373
+ "gpt_neox.layers.25.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
374
+ "gpt_neox.layers.25.attention.query_key_value.base_layer.bias": "pytorch_model-00004-of-00005.bin",
375
+ "gpt_neox.layers.25.attention.query_key_value.base_layer.weight": "pytorch_model-00004-of-00005.bin",
376
+ "gpt_neox.layers.25.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
377
+ "gpt_neox.layers.25.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
378
+ "gpt_neox.layers.25.input_layernorm.bias": "pytorch_model-00004-of-00005.bin",
379
+ "gpt_neox.layers.25.input_layernorm.weight": "pytorch_model-00004-of-00005.bin",
380
+ "gpt_neox.layers.25.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
381
+ "gpt_neox.layers.25.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
382
+ "gpt_neox.layers.25.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
383
+ "gpt_neox.layers.25.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
384
+ "gpt_neox.layers.25.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
385
+ "gpt_neox.layers.25.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
386
+ "gpt_neox.layers.25.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
387
+ "gpt_neox.layers.25.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
388
+ "gpt_neox.layers.25.post_attention_layernorm.bias": "pytorch_model-00004-of-00005.bin",
389
+ "gpt_neox.layers.25.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.bin",
390
+ "gpt_neox.layers.26.attention.dense.base_layer.bias": "pytorch_model-00004-of-00005.bin",
391
+ "gpt_neox.layers.26.attention.dense.base_layer.weight": "pytorch_model-00004-of-00005.bin",
392
+ "gpt_neox.layers.26.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
393
+ "gpt_neox.layers.26.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
394
+ "gpt_neox.layers.26.attention.query_key_value.base_layer.bias": "pytorch_model-00004-of-00005.bin",
395
+ "gpt_neox.layers.26.attention.query_key_value.base_layer.weight": "pytorch_model-00004-of-00005.bin",
396
+ "gpt_neox.layers.26.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
397
+ "gpt_neox.layers.26.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
398
+ "gpt_neox.layers.26.input_layernorm.bias": "pytorch_model-00004-of-00005.bin",
399
+ "gpt_neox.layers.26.input_layernorm.weight": "pytorch_model-00004-of-00005.bin",
400
+ "gpt_neox.layers.26.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
401
+ "gpt_neox.layers.26.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
402
+ "gpt_neox.layers.26.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
403
+ "gpt_neox.layers.26.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
404
+ "gpt_neox.layers.26.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
405
+ "gpt_neox.layers.26.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
406
+ "gpt_neox.layers.26.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
407
+ "gpt_neox.layers.26.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
408
+ "gpt_neox.layers.26.post_attention_layernorm.bias": "pytorch_model-00004-of-00005.bin",
409
+ "gpt_neox.layers.26.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.bin",
410
+ "gpt_neox.layers.27.attention.dense.base_layer.bias": "pytorch_model-00004-of-00005.bin",
411
+ "gpt_neox.layers.27.attention.dense.base_layer.weight": "pytorch_model-00004-of-00005.bin",
412
+ "gpt_neox.layers.27.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
413
+ "gpt_neox.layers.27.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
414
+ "gpt_neox.layers.27.attention.query_key_value.base_layer.bias": "pytorch_model-00004-of-00005.bin",
415
+ "gpt_neox.layers.27.attention.query_key_value.base_layer.weight": "pytorch_model-00004-of-00005.bin",
416
+ "gpt_neox.layers.27.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
417
+ "gpt_neox.layers.27.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
418
+ "gpt_neox.layers.27.input_layernorm.bias": "pytorch_model-00004-of-00005.bin",
419
+ "gpt_neox.layers.27.input_layernorm.weight": "pytorch_model-00004-of-00005.bin",
420
+ "gpt_neox.layers.27.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
421
+ "gpt_neox.layers.27.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
422
+ "gpt_neox.layers.27.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
423
+ "gpt_neox.layers.27.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
424
+ "gpt_neox.layers.27.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
425
+ "gpt_neox.layers.27.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
426
+ "gpt_neox.layers.27.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
427
+ "gpt_neox.layers.27.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
428
+ "gpt_neox.layers.27.post_attention_layernorm.bias": "pytorch_model-00004-of-00005.bin",
429
+ "gpt_neox.layers.27.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.bin",
430
+ "gpt_neox.layers.28.attention.dense.base_layer.bias": "pytorch_model-00004-of-00005.bin",
431
+ "gpt_neox.layers.28.attention.dense.base_layer.weight": "pytorch_model-00004-of-00005.bin",
432
+ "gpt_neox.layers.28.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
433
+ "gpt_neox.layers.28.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
434
+ "gpt_neox.layers.28.attention.query_key_value.base_layer.bias": "pytorch_model-00004-of-00005.bin",
435
+ "gpt_neox.layers.28.attention.query_key_value.base_layer.weight": "pytorch_model-00004-of-00005.bin",
436
+ "gpt_neox.layers.28.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
437
+ "gpt_neox.layers.28.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
438
+ "gpt_neox.layers.28.input_layernorm.bias": "pytorch_model-00004-of-00005.bin",
439
+ "gpt_neox.layers.28.input_layernorm.weight": "pytorch_model-00004-of-00005.bin",
440
+ "gpt_neox.layers.28.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
441
+ "gpt_neox.layers.28.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
442
+ "gpt_neox.layers.28.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
443
+ "gpt_neox.layers.28.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
444
+ "gpt_neox.layers.28.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
445
+ "gpt_neox.layers.28.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
446
+ "gpt_neox.layers.28.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
447
+ "gpt_neox.layers.28.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
448
+ "gpt_neox.layers.28.post_attention_layernorm.bias": "pytorch_model-00004-of-00005.bin",
449
+ "gpt_neox.layers.28.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.bin",
450
+ "gpt_neox.layers.29.attention.dense.base_layer.bias": "pytorch_model-00004-of-00005.bin",
451
+ "gpt_neox.layers.29.attention.dense.base_layer.weight": "pytorch_model-00004-of-00005.bin",
452
+ "gpt_neox.layers.29.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
453
+ "gpt_neox.layers.29.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
454
+ "gpt_neox.layers.29.attention.query_key_value.base_layer.bias": "pytorch_model-00004-of-00005.bin",
455
+ "gpt_neox.layers.29.attention.query_key_value.base_layer.weight": "pytorch_model-00004-of-00005.bin",
456
+ "gpt_neox.layers.29.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
457
+ "gpt_neox.layers.29.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
458
+ "gpt_neox.layers.29.input_layernorm.bias": "pytorch_model-00004-of-00005.bin",
459
+ "gpt_neox.layers.29.input_layernorm.weight": "pytorch_model-00004-of-00005.bin",
460
+ "gpt_neox.layers.29.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
461
+ "gpt_neox.layers.29.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
462
+ "gpt_neox.layers.29.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
463
+ "gpt_neox.layers.29.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
464
+ "gpt_neox.layers.29.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00004-of-00005.bin",
465
+ "gpt_neox.layers.29.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00004-of-00005.bin",
466
+ "gpt_neox.layers.29.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
467
+ "gpt_neox.layers.29.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
468
+ "gpt_neox.layers.29.post_attention_layernorm.bias": "pytorch_model-00004-of-00005.bin",
469
+ "gpt_neox.layers.29.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.bin",
470
+ "gpt_neox.layers.3.attention.dense.base_layer.bias": "pytorch_model-00001-of-00005.bin",
471
+ "gpt_neox.layers.3.attention.dense.base_layer.weight": "pytorch_model-00001-of-00005.bin",
472
+ "gpt_neox.layers.3.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
473
+ "gpt_neox.layers.3.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
474
+ "gpt_neox.layers.3.attention.query_key_value.base_layer.bias": "pytorch_model-00001-of-00005.bin",
475
+ "gpt_neox.layers.3.attention.query_key_value.base_layer.weight": "pytorch_model-00001-of-00005.bin",
476
+ "gpt_neox.layers.3.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
477
+ "gpt_neox.layers.3.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
478
+ "gpt_neox.layers.3.input_layernorm.bias": "pytorch_model-00001-of-00005.bin",
479
+ "gpt_neox.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00005.bin",
480
+ "gpt_neox.layers.3.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
481
+ "gpt_neox.layers.3.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
482
+ "gpt_neox.layers.3.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
483
+ "gpt_neox.layers.3.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
484
+ "gpt_neox.layers.3.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
485
+ "gpt_neox.layers.3.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
486
+ "gpt_neox.layers.3.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
487
+ "gpt_neox.layers.3.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
488
+ "gpt_neox.layers.3.post_attention_layernorm.bias": "pytorch_model-00001-of-00005.bin",
489
+ "gpt_neox.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.bin",
490
+ "gpt_neox.layers.30.attention.dense.base_layer.bias": "pytorch_model-00005-of-00005.bin",
491
+ "gpt_neox.layers.30.attention.dense.base_layer.weight": "pytorch_model-00005-of-00005.bin",
492
+ "gpt_neox.layers.30.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
493
+ "gpt_neox.layers.30.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
494
+ "gpt_neox.layers.30.attention.query_key_value.base_layer.bias": "pytorch_model-00005-of-00005.bin",
495
+ "gpt_neox.layers.30.attention.query_key_value.base_layer.weight": "pytorch_model-00005-of-00005.bin",
496
+ "gpt_neox.layers.30.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
497
+ "gpt_neox.layers.30.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
498
+ "gpt_neox.layers.30.input_layernorm.bias": "pytorch_model-00004-of-00005.bin",
499
+ "gpt_neox.layers.30.input_layernorm.weight": "pytorch_model-00004-of-00005.bin",
500
+ "gpt_neox.layers.30.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
501
+ "gpt_neox.layers.30.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
502
+ "gpt_neox.layers.30.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
503
+ "gpt_neox.layers.30.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
504
+ "gpt_neox.layers.30.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
505
+ "gpt_neox.layers.30.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
506
+ "gpt_neox.layers.30.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
507
+ "gpt_neox.layers.30.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
508
+ "gpt_neox.layers.30.post_attention_layernorm.bias": "pytorch_model-00004-of-00005.bin",
509
+ "gpt_neox.layers.30.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.bin",
510
+ "gpt_neox.layers.31.attention.dense.base_layer.bias": "pytorch_model-00005-of-00005.bin",
511
+ "gpt_neox.layers.31.attention.dense.base_layer.weight": "pytorch_model-00005-of-00005.bin",
512
+ "gpt_neox.layers.31.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
513
+ "gpt_neox.layers.31.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
514
+ "gpt_neox.layers.31.attention.query_key_value.base_layer.bias": "pytorch_model-00005-of-00005.bin",
515
+ "gpt_neox.layers.31.attention.query_key_value.base_layer.weight": "pytorch_model-00005-of-00005.bin",
516
+ "gpt_neox.layers.31.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
517
+ "gpt_neox.layers.31.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
518
+ "gpt_neox.layers.31.input_layernorm.bias": "pytorch_model-00005-of-00005.bin",
519
+ "gpt_neox.layers.31.input_layernorm.weight": "pytorch_model-00005-of-00005.bin",
520
+ "gpt_neox.layers.31.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
521
+ "gpt_neox.layers.31.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
522
+ "gpt_neox.layers.31.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
523
+ "gpt_neox.layers.31.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
524
+ "gpt_neox.layers.31.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
525
+ "gpt_neox.layers.31.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
526
+ "gpt_neox.layers.31.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
527
+ "gpt_neox.layers.31.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
528
+ "gpt_neox.layers.31.post_attention_layernorm.bias": "pytorch_model-00005-of-00005.bin",
529
+ "gpt_neox.layers.31.post_attention_layernorm.weight": "pytorch_model-00005-of-00005.bin",
530
+ "gpt_neox.layers.32.attention.dense.base_layer.bias": "pytorch_model-00005-of-00005.bin",
531
+ "gpt_neox.layers.32.attention.dense.base_layer.weight": "pytorch_model-00005-of-00005.bin",
532
+ "gpt_neox.layers.32.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
533
+ "gpt_neox.layers.32.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
534
+ "gpt_neox.layers.32.attention.query_key_value.base_layer.bias": "pytorch_model-00005-of-00005.bin",
535
+ "gpt_neox.layers.32.attention.query_key_value.base_layer.weight": "pytorch_model-00005-of-00005.bin",
536
+ "gpt_neox.layers.32.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
537
+ "gpt_neox.layers.32.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
538
+ "gpt_neox.layers.32.input_layernorm.bias": "pytorch_model-00005-of-00005.bin",
539
+ "gpt_neox.layers.32.input_layernorm.weight": "pytorch_model-00005-of-00005.bin",
540
+ "gpt_neox.layers.32.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
541
+ "gpt_neox.layers.32.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
542
+ "gpt_neox.layers.32.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
543
+ "gpt_neox.layers.32.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
544
+ "gpt_neox.layers.32.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
545
+ "gpt_neox.layers.32.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
546
+ "gpt_neox.layers.32.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
547
+ "gpt_neox.layers.32.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
548
+ "gpt_neox.layers.32.post_attention_layernorm.bias": "pytorch_model-00005-of-00005.bin",
549
+ "gpt_neox.layers.32.post_attention_layernorm.weight": "pytorch_model-00005-of-00005.bin",
550
+ "gpt_neox.layers.33.attention.dense.base_layer.bias": "pytorch_model-00005-of-00005.bin",
551
+ "gpt_neox.layers.33.attention.dense.base_layer.weight": "pytorch_model-00005-of-00005.bin",
552
+ "gpt_neox.layers.33.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
553
+ "gpt_neox.layers.33.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
554
+ "gpt_neox.layers.33.attention.query_key_value.base_layer.bias": "pytorch_model-00005-of-00005.bin",
555
+ "gpt_neox.layers.33.attention.query_key_value.base_layer.weight": "pytorch_model-00005-of-00005.bin",
556
+ "gpt_neox.layers.33.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
557
+ "gpt_neox.layers.33.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
558
+ "gpt_neox.layers.33.input_layernorm.bias": "pytorch_model-00005-of-00005.bin",
559
+ "gpt_neox.layers.33.input_layernorm.weight": "pytorch_model-00005-of-00005.bin",
560
+ "gpt_neox.layers.33.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
561
+ "gpt_neox.layers.33.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
562
+ "gpt_neox.layers.33.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
563
+ "gpt_neox.layers.33.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
564
+ "gpt_neox.layers.33.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
565
+ "gpt_neox.layers.33.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
566
+ "gpt_neox.layers.33.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
567
+ "gpt_neox.layers.33.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
568
+ "gpt_neox.layers.33.post_attention_layernorm.bias": "pytorch_model-00005-of-00005.bin",
569
+ "gpt_neox.layers.33.post_attention_layernorm.weight": "pytorch_model-00005-of-00005.bin",
570
+ "gpt_neox.layers.34.attention.dense.base_layer.bias": "pytorch_model-00005-of-00005.bin",
571
+ "gpt_neox.layers.34.attention.dense.base_layer.weight": "pytorch_model-00005-of-00005.bin",
572
+ "gpt_neox.layers.34.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
573
+ "gpt_neox.layers.34.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
574
+ "gpt_neox.layers.34.attention.query_key_value.base_layer.bias": "pytorch_model-00005-of-00005.bin",
575
+ "gpt_neox.layers.34.attention.query_key_value.base_layer.weight": "pytorch_model-00005-of-00005.bin",
576
+ "gpt_neox.layers.34.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
577
+ "gpt_neox.layers.34.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
578
+ "gpt_neox.layers.34.input_layernorm.bias": "pytorch_model-00005-of-00005.bin",
579
+ "gpt_neox.layers.34.input_layernorm.weight": "pytorch_model-00005-of-00005.bin",
580
+ "gpt_neox.layers.34.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
581
+ "gpt_neox.layers.34.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
582
+ "gpt_neox.layers.34.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
583
+ "gpt_neox.layers.34.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
584
+ "gpt_neox.layers.34.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
585
+ "gpt_neox.layers.34.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
586
+ "gpt_neox.layers.34.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
587
+ "gpt_neox.layers.34.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
588
+ "gpt_neox.layers.34.post_attention_layernorm.bias": "pytorch_model-00005-of-00005.bin",
589
+ "gpt_neox.layers.34.post_attention_layernorm.weight": "pytorch_model-00005-of-00005.bin",
590
+ "gpt_neox.layers.35.attention.dense.base_layer.bias": "pytorch_model-00005-of-00005.bin",
591
+ "gpt_neox.layers.35.attention.dense.base_layer.weight": "pytorch_model-00005-of-00005.bin",
592
+ "gpt_neox.layers.35.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
593
+ "gpt_neox.layers.35.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
594
+ "gpt_neox.layers.35.attention.query_key_value.base_layer.bias": "pytorch_model-00005-of-00005.bin",
595
+ "gpt_neox.layers.35.attention.query_key_value.base_layer.weight": "pytorch_model-00005-of-00005.bin",
596
+ "gpt_neox.layers.35.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
597
+ "gpt_neox.layers.35.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
598
+ "gpt_neox.layers.35.input_layernorm.bias": "pytorch_model-00005-of-00005.bin",
599
+ "gpt_neox.layers.35.input_layernorm.weight": "pytorch_model-00005-of-00005.bin",
600
+ "gpt_neox.layers.35.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
601
+ "gpt_neox.layers.35.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
602
+ "gpt_neox.layers.35.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
603
+ "gpt_neox.layers.35.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
604
+ "gpt_neox.layers.35.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00005-of-00005.bin",
605
+ "gpt_neox.layers.35.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00005-of-00005.bin",
606
+ "gpt_neox.layers.35.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
607
+ "gpt_neox.layers.35.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
608
+ "gpt_neox.layers.35.post_attention_layernorm.bias": "pytorch_model-00005-of-00005.bin",
609
+ "gpt_neox.layers.35.post_attention_layernorm.weight": "pytorch_model-00005-of-00005.bin",
610
+ "gpt_neox.layers.4.attention.dense.base_layer.bias": "pytorch_model-00001-of-00005.bin",
611
+ "gpt_neox.layers.4.attention.dense.base_layer.weight": "pytorch_model-00001-of-00005.bin",
612
+ "gpt_neox.layers.4.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
613
+ "gpt_neox.layers.4.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
614
+ "gpt_neox.layers.4.attention.query_key_value.base_layer.bias": "pytorch_model-00001-of-00005.bin",
615
+ "gpt_neox.layers.4.attention.query_key_value.base_layer.weight": "pytorch_model-00001-of-00005.bin",
616
+ "gpt_neox.layers.4.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
617
+ "gpt_neox.layers.4.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
618
+ "gpt_neox.layers.4.input_layernorm.bias": "pytorch_model-00001-of-00005.bin",
619
+ "gpt_neox.layers.4.input_layernorm.weight": "pytorch_model-00001-of-00005.bin",
620
+ "gpt_neox.layers.4.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
621
+ "gpt_neox.layers.4.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
622
+ "gpt_neox.layers.4.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
623
+ "gpt_neox.layers.4.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
624
+ "gpt_neox.layers.4.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
625
+ "gpt_neox.layers.4.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
626
+ "gpt_neox.layers.4.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
627
+ "gpt_neox.layers.4.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
628
+ "gpt_neox.layers.4.post_attention_layernorm.bias": "pytorch_model-00001-of-00005.bin",
629
+ "gpt_neox.layers.4.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.bin",
630
+ "gpt_neox.layers.5.attention.dense.base_layer.bias": "pytorch_model-00001-of-00005.bin",
631
+ "gpt_neox.layers.5.attention.dense.base_layer.weight": "pytorch_model-00001-of-00005.bin",
632
+ "gpt_neox.layers.5.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
633
+ "gpt_neox.layers.5.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
634
+ "gpt_neox.layers.5.attention.query_key_value.base_layer.bias": "pytorch_model-00001-of-00005.bin",
635
+ "gpt_neox.layers.5.attention.query_key_value.base_layer.weight": "pytorch_model-00001-of-00005.bin",
636
+ "gpt_neox.layers.5.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
637
+ "gpt_neox.layers.5.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
638
+ "gpt_neox.layers.5.input_layernorm.bias": "pytorch_model-00001-of-00005.bin",
639
+ "gpt_neox.layers.5.input_layernorm.weight": "pytorch_model-00001-of-00005.bin",
640
+ "gpt_neox.layers.5.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
641
+ "gpt_neox.layers.5.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
642
+ "gpt_neox.layers.5.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
643
+ "gpt_neox.layers.5.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
644
+ "gpt_neox.layers.5.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
645
+ "gpt_neox.layers.5.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
646
+ "gpt_neox.layers.5.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
647
+ "gpt_neox.layers.5.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
648
+ "gpt_neox.layers.5.post_attention_layernorm.bias": "pytorch_model-00001-of-00005.bin",
649
+ "gpt_neox.layers.5.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.bin",
650
+ "gpt_neox.layers.6.attention.dense.base_layer.bias": "pytorch_model-00001-of-00005.bin",
651
+ "gpt_neox.layers.6.attention.dense.base_layer.weight": "pytorch_model-00001-of-00005.bin",
652
+ "gpt_neox.layers.6.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
653
+ "gpt_neox.layers.6.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
654
+ "gpt_neox.layers.6.attention.query_key_value.base_layer.bias": "pytorch_model-00001-of-00005.bin",
655
+ "gpt_neox.layers.6.attention.query_key_value.base_layer.weight": "pytorch_model-00001-of-00005.bin",
656
+ "gpt_neox.layers.6.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
657
+ "gpt_neox.layers.6.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
658
+ "gpt_neox.layers.6.input_layernorm.bias": "pytorch_model-00001-of-00005.bin",
659
+ "gpt_neox.layers.6.input_layernorm.weight": "pytorch_model-00001-of-00005.bin",
660
+ "gpt_neox.layers.6.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
661
+ "gpt_neox.layers.6.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
662
+ "gpt_neox.layers.6.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
663
+ "gpt_neox.layers.6.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
664
+ "gpt_neox.layers.6.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00001-of-00005.bin",
665
+ "gpt_neox.layers.6.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00001-of-00005.bin",
666
+ "gpt_neox.layers.6.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
667
+ "gpt_neox.layers.6.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
668
+ "gpt_neox.layers.6.post_attention_layernorm.bias": "pytorch_model-00001-of-00005.bin",
669
+ "gpt_neox.layers.6.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.bin",
670
+ "gpt_neox.layers.7.attention.dense.base_layer.bias": "pytorch_model-00002-of-00005.bin",
671
+ "gpt_neox.layers.7.attention.dense.base_layer.weight": "pytorch_model-00002-of-00005.bin",
672
+ "gpt_neox.layers.7.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
673
+ "gpt_neox.layers.7.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
674
+ "gpt_neox.layers.7.attention.query_key_value.base_layer.bias": "pytorch_model-00002-of-00005.bin",
675
+ "gpt_neox.layers.7.attention.query_key_value.base_layer.weight": "pytorch_model-00002-of-00005.bin",
676
+ "gpt_neox.layers.7.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
677
+ "gpt_neox.layers.7.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
678
+ "gpt_neox.layers.7.input_layernorm.bias": "pytorch_model-00002-of-00005.bin",
679
+ "gpt_neox.layers.7.input_layernorm.weight": "pytorch_model-00002-of-00005.bin",
680
+ "gpt_neox.layers.7.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
681
+ "gpt_neox.layers.7.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
682
+ "gpt_neox.layers.7.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
683
+ "gpt_neox.layers.7.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
684
+ "gpt_neox.layers.7.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
685
+ "gpt_neox.layers.7.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
686
+ "gpt_neox.layers.7.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
687
+ "gpt_neox.layers.7.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
688
+ "gpt_neox.layers.7.post_attention_layernorm.bias": "pytorch_model-00002-of-00005.bin",
689
+ "gpt_neox.layers.7.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.bin",
690
+ "gpt_neox.layers.8.attention.dense.base_layer.bias": "pytorch_model-00002-of-00005.bin",
691
+ "gpt_neox.layers.8.attention.dense.base_layer.weight": "pytorch_model-00002-of-00005.bin",
692
+ "gpt_neox.layers.8.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
693
+ "gpt_neox.layers.8.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
694
+ "gpt_neox.layers.8.attention.query_key_value.base_layer.bias": "pytorch_model-00002-of-00005.bin",
695
+ "gpt_neox.layers.8.attention.query_key_value.base_layer.weight": "pytorch_model-00002-of-00005.bin",
696
+ "gpt_neox.layers.8.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
697
+ "gpt_neox.layers.8.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
698
+ "gpt_neox.layers.8.input_layernorm.bias": "pytorch_model-00002-of-00005.bin",
699
+ "gpt_neox.layers.8.input_layernorm.weight": "pytorch_model-00002-of-00005.bin",
700
+ "gpt_neox.layers.8.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
701
+ "gpt_neox.layers.8.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
702
+ "gpt_neox.layers.8.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
703
+ "gpt_neox.layers.8.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
704
+ "gpt_neox.layers.8.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
705
+ "gpt_neox.layers.8.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
706
+ "gpt_neox.layers.8.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
707
+ "gpt_neox.layers.8.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
708
+ "gpt_neox.layers.8.post_attention_layernorm.bias": "pytorch_model-00002-of-00005.bin",
709
+ "gpt_neox.layers.8.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.bin",
710
+ "gpt_neox.layers.9.attention.dense.base_layer.bias": "pytorch_model-00002-of-00005.bin",
711
+ "gpt_neox.layers.9.attention.dense.base_layer.weight": "pytorch_model-00002-of-00005.bin",
712
+ "gpt_neox.layers.9.attention.dense.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
713
+ "gpt_neox.layers.9.attention.dense.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
714
+ "gpt_neox.layers.9.attention.query_key_value.base_layer.bias": "pytorch_model-00002-of-00005.bin",
715
+ "gpt_neox.layers.9.attention.query_key_value.base_layer.weight": "pytorch_model-00002-of-00005.bin",
716
+ "gpt_neox.layers.9.attention.query_key_value.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
717
+ "gpt_neox.layers.9.attention.query_key_value.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
718
+ "gpt_neox.layers.9.input_layernorm.bias": "pytorch_model-00002-of-00005.bin",
719
+ "gpt_neox.layers.9.input_layernorm.weight": "pytorch_model-00002-of-00005.bin",
720
+ "gpt_neox.layers.9.mlp.dense_4h_to_h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
721
+ "gpt_neox.layers.9.mlp.dense_4h_to_h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
722
+ "gpt_neox.layers.9.mlp.dense_4h_to_h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
723
+ "gpt_neox.layers.9.mlp.dense_4h_to_h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
724
+ "gpt_neox.layers.9.mlp.dense_h_to_4h.base_layer.bias": "pytorch_model-00002-of-00005.bin",
725
+ "gpt_neox.layers.9.mlp.dense_h_to_4h.base_layer.weight": "pytorch_model-00002-of-00005.bin",
726
+ "gpt_neox.layers.9.mlp.dense_h_to_4h.lora_A.default.weight": "pytorch_model-00001-of-00005.bin",
727
+ "gpt_neox.layers.9.mlp.dense_h_to_4h.lora_B.default.weight": "pytorch_model-00001-of-00005.bin",
728
+ "gpt_neox.layers.9.post_attention_layernorm.bias": "pytorch_model-00002-of-00005.bin",
729
+ "gpt_neox.layers.9.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.bin"
730
+ }
731
+ }