michaelfeil commited on
Commit
a26a67f
1 Parent(s): f7e2fb8

Upload Salesforce/codegen2-7B ctranslate fp16 weights

Browse files
README.md ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ tags:
4
+ - fauxpilot
5
+ - gpt-j
6
+ - float16
7
+
8
+ license: apache-2.0
9
+ ---
10
+ # Conversion for FauxPilot, Codegen-2 as GPT-J
11
+ It feels like GPT-J, acts like any other GPT-J, but its Codegen-2 weights under the hood.
12
+
13
+ Converted on 2023-05-22 using
14
+ ```
15
+ python /home/michael/fauxpilot/converter/codegen_gptj_convert.py --code_model Salesforce/codegen2-7B /home/michael/tmp-codegen2-7B-gptj
16
+ ```
17
+
18
+ # Licence and other remarks:
19
+ Licence conditions are intended to be idential to original huggingface repo.
20
+
21
+ # Original description
22
+ see https://huggingface.co/'Salesforce/codegen2-7B'
23
+
24
+
25
+
26
+ # CodeGen2 (CodeGen2-16B)
27
+
28
+ ## Model description
29
+
30
+ [CodeGen2](https://github.com/salesforce/CodeGen2) is a family of autoregressive language models for **program synthesis**, introduced in the paper:
31
+
32
+ [CodeGen2: Lessons for Training LLMs on Programming and Natural Languages](https://arxiv.org/abs/2305.02309) by Erik Nijkamp\*, Hiroaki Hayashi\*, Caiming Xiong, Silvio Savarese, Yingbo Zhou.
33
+
34
+ Unlike the original CodeGen model family (i.e., CodeGen1), CodeGen2 is capable of infilling, and supports more programming languages.
35
+
36
+ Four model sizes are released: `1B`, `3.7B`, `7B`, `16B`.
37
+
38
+ ## How to use
39
+
40
+ This model can be easily loaded using the `AutoModelForCausalLM` functionality.
41
+
42
+ ### Causal sampling
43
+
44
+ For regular causal sampling, simply generate completions given the context:
45
+ ```python
46
+ from transformers import AutoTokenizer, AutoModelForCausalLM
47
+ tokenizer = AutoTokenizer.from_pretrained("Salesforce/codegen2-16B")
48
+ model = AutoModelForCausalLM.from_pretrained("Salesforce/codegen2-16B", trust_remote_code=True, revision="main")
49
+
50
+ text = "def hello_world():"
51
+ input_ids = tokenizer(text, return_tensors="pt").input_ids
52
+ generated_ids = model.generate(input_ids, max_length=128)
53
+ print(tokenizer.decode(generated_ids[0], skip_special_tokens=True))
54
+ ```
55
+
56
+ ### Infill sampling
57
+
58
+ For **infill** sampling, we introduce three new special token types:
59
+
60
+ * `<mask_N>`: N-th span to be masked. In practice, use `<mask_1>` to where you want to sample infill.
61
+ * `<sep>`: Seperator token between the suffix and the infilled sample. See below.
62
+ * `<eom>`: "End-Of-Mask" token that model will output at the end of infilling. You may use this token to truncate the output.
63
+
64
+ For example, if we want to generate infill for the following cursor position of a function:
65
+ ```python
66
+ def hello_world():
67
+ |
68
+ return name
69
+ ```
70
+ we construct an input to the model by
71
+
72
+ 1. Inserting `<mask_1>` token in place of cursor position
73
+ 2. Append `<sep>` token to indicate the boundary
74
+ 3. Insert another `<mask_1>` to indicate which mask we want to infill.
75
+
76
+ The final snippet looks as follows:
77
+
78
+ ```python
79
+ from transformers import AutoTokenizer, AutoModelForCausalLM
80
+ tokenizer = AutoTokenizer.from_pretrained("Salesforce/codegen2-16B")
81
+ model = AutoModelForCausalLM.from_pretrained("Salesforce/codegen2-16B", trust_remote_code=True, revision="main")
82
+
83
+
84
+ def format(prefix, suffix):
85
+ return prefix + "<mask_1>" + suffix + "<|endoftext|>" + "<sep>" + "<mask_1>"
86
+
87
+
88
+ prefix = "def hello_world():
89
+ "
90
+ suffix = " return name"
91
+ text = format(prefix, suffix)
92
+ input_ids = tokenizer(text, return_tensors="pt").input_ids
93
+ generated_ids = model.generate(input_ids, max_length=128)
94
+ print(tokenizer.decode(generated_ids[0], skip_special_tokens=False)[len(text):])
95
+ ```
96
+
97
+ You might want to truncate the model output with `<eom>`.
98
+
99
+ ## Training data
100
+
101
+ This checkpoint is trained on the stricter permissive subset of [the deduplicated version of the Stack dataset (v1.1)](https://huggingface.co/datasets/bigcode/the-stack-dedup). Supported languages (and frameworks) are as follows:
102
+ `c`, `c++`, `c-sharp`, `dart`, `go`, `java`, `javascript`, `kotlin`, `lua`, `php`, `python`, `ruby`, `rust`, `scala`, `shell`, `sql`, `swift`, `typescript`, `vue`.
103
+
104
+ ## Training procedure
105
+
106
+ CodeGen2 was trained using cross-entropy loss to maximize the likelihood of sequential inputs.
107
+ The input sequences are formatted in two ways: (1) causal language modeling and (2) file-level span corruption.
108
+ Please refer to the paper for more details.
109
+
110
+ ## Evaluation results
111
+
112
+ We evaluate our models on HumanEval and HumanEval-Infill. Please refer to the [paper](https://arxiv.org/abs/2305.02309) for more details.
113
+
114
+ ## Intended use and limitations
115
+
116
+ As an autoregressive language model, CodeGen2 is capable of extracting features from given natural language and programming language texts, and calculating the likelihood of them.
117
+ However, the model is intended for and best at **program synthesis**, that is, generating executable code given English prompts, where the prompts should be in the form of a comment string. The model can complete partially-generated code as well.
118
+
119
+
120
+ ## BibTeX entry and citation info
121
+
122
+ ```bibtex
123
+ @article{Nijkamp2023codegen2,
124
+ title={CodeGen2: Lessons for Training LLMs on Programming and Natural Languages},
125
+ author={Nijkamp, Erik and Hayashi, Hiroaki and Xiong, Caiming and Savarese, Silvio and Zhou, Yingbo},
126
+ journal={arXiv preprint},
127
+ year={2023}
128
+ }
129
+ ```
130
+
config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_function": "gelu_new",
3
+ "architectures": [
4
+ "GPTJForCausalLM"
5
+ ],
6
+ "attn_pdrop": 0.0,
7
+ "bos_token_id": 1,
8
+ "embd_pdrop": 0.0,
9
+ "eos_token_id": 2,
10
+ "initializer_range": 0.02,
11
+ "layer_norm_epsilon": 1e-05,
12
+ "model_type": "gptj",
13
+ "n_embd": 4096,
14
+ "n_head": 16,
15
+ "n_inner": null,
16
+ "n_layer": 32,
17
+ "n_positions": 2048,
18
+ "resid_pdrop": 0.0,
19
+ "rotary_dim": 64,
20
+ "scale_attn_weights": true,
21
+ "tie_word_embeddings": false,
22
+ "tokenizer_class": "CodeGenTokenizer",
23
+ "torch_dtype": "float16",
24
+ "transformers_version": "4.28.1",
25
+ "use_cache": true,
26
+ "vocab_size": 51200
27
+ }
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "transformers_version": "4.28.1"
6
+ }
pytorch_model-00001-of-00002.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef1c3fa0255c2516ed29df4b40a2656fb983d945e607400267ff954f0520aa44
3
+ size 10051017272
pytorch_model-00002-of-00002.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b739f55967d28ae465d70a986875ba72f9e5e39b242d08cf9066e4ebd7d4ab15
3
+ size 3809047229
pytorch_model.bin.index.json ADDED
@@ -0,0 +1,396 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 13742493760.0
4
+ },
5
+ "weight_map": {
6
+ "lm_head.bias": "pytorch_model-00002-of-00002.bin",
7
+ "lm_head.weight": "pytorch_model-00002-of-00002.bin",
8
+ "transformer.h.0.attn.bias": "pytorch_model-00001-of-00002.bin",
9
+ "transformer.h.0.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
10
+ "transformer.h.0.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
11
+ "transformer.h.0.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
12
+ "transformer.h.0.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
13
+ "transformer.h.0.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
14
+ "transformer.h.0.ln_1.bias": "pytorch_model-00001-of-00002.bin",
15
+ "transformer.h.0.ln_1.weight": "pytorch_model-00001-of-00002.bin",
16
+ "transformer.h.0.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
17
+ "transformer.h.0.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
18
+ "transformer.h.0.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
19
+ "transformer.h.0.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
20
+ "transformer.h.1.attn.bias": "pytorch_model-00001-of-00002.bin",
21
+ "transformer.h.1.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
22
+ "transformer.h.1.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
23
+ "transformer.h.1.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
24
+ "transformer.h.1.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
25
+ "transformer.h.1.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
26
+ "transformer.h.1.ln_1.bias": "pytorch_model-00001-of-00002.bin",
27
+ "transformer.h.1.ln_1.weight": "pytorch_model-00001-of-00002.bin",
28
+ "transformer.h.1.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
29
+ "transformer.h.1.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
30
+ "transformer.h.1.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
31
+ "transformer.h.1.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
32
+ "transformer.h.10.attn.bias": "pytorch_model-00001-of-00002.bin",
33
+ "transformer.h.10.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
34
+ "transformer.h.10.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
35
+ "transformer.h.10.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
36
+ "transformer.h.10.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
37
+ "transformer.h.10.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
38
+ "transformer.h.10.ln_1.bias": "pytorch_model-00001-of-00002.bin",
39
+ "transformer.h.10.ln_1.weight": "pytorch_model-00001-of-00002.bin",
40
+ "transformer.h.10.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
41
+ "transformer.h.10.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
42
+ "transformer.h.10.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
43
+ "transformer.h.10.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
44
+ "transformer.h.11.attn.bias": "pytorch_model-00001-of-00002.bin",
45
+ "transformer.h.11.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
46
+ "transformer.h.11.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
47
+ "transformer.h.11.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
48
+ "transformer.h.11.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
49
+ "transformer.h.11.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
50
+ "transformer.h.11.ln_1.bias": "pytorch_model-00001-of-00002.bin",
51
+ "transformer.h.11.ln_1.weight": "pytorch_model-00001-of-00002.bin",
52
+ "transformer.h.11.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
53
+ "transformer.h.11.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
54
+ "transformer.h.11.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
55
+ "transformer.h.11.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
56
+ "transformer.h.12.attn.bias": "pytorch_model-00001-of-00002.bin",
57
+ "transformer.h.12.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
58
+ "transformer.h.12.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
59
+ "transformer.h.12.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
60
+ "transformer.h.12.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
61
+ "transformer.h.12.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
62
+ "transformer.h.12.ln_1.bias": "pytorch_model-00001-of-00002.bin",
63
+ "transformer.h.12.ln_1.weight": "pytorch_model-00001-of-00002.bin",
64
+ "transformer.h.12.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
65
+ "transformer.h.12.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
66
+ "transformer.h.12.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
67
+ "transformer.h.12.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
68
+ "transformer.h.13.attn.bias": "pytorch_model-00001-of-00002.bin",
69
+ "transformer.h.13.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
70
+ "transformer.h.13.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
71
+ "transformer.h.13.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
72
+ "transformer.h.13.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
73
+ "transformer.h.13.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
74
+ "transformer.h.13.ln_1.bias": "pytorch_model-00001-of-00002.bin",
75
+ "transformer.h.13.ln_1.weight": "pytorch_model-00001-of-00002.bin",
76
+ "transformer.h.13.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
77
+ "transformer.h.13.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
78
+ "transformer.h.13.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
79
+ "transformer.h.13.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
80
+ "transformer.h.14.attn.bias": "pytorch_model-00001-of-00002.bin",
81
+ "transformer.h.14.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
82
+ "transformer.h.14.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
83
+ "transformer.h.14.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
84
+ "transformer.h.14.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
85
+ "transformer.h.14.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
86
+ "transformer.h.14.ln_1.bias": "pytorch_model-00001-of-00002.bin",
87
+ "transformer.h.14.ln_1.weight": "pytorch_model-00001-of-00002.bin",
88
+ "transformer.h.14.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
89
+ "transformer.h.14.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
90
+ "transformer.h.14.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
91
+ "transformer.h.14.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
92
+ "transformer.h.15.attn.bias": "pytorch_model-00001-of-00002.bin",
93
+ "transformer.h.15.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
94
+ "transformer.h.15.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
95
+ "transformer.h.15.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
96
+ "transformer.h.15.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
97
+ "transformer.h.15.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
98
+ "transformer.h.15.ln_1.bias": "pytorch_model-00001-of-00002.bin",
99
+ "transformer.h.15.ln_1.weight": "pytorch_model-00001-of-00002.bin",
100
+ "transformer.h.15.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
101
+ "transformer.h.15.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
102
+ "transformer.h.15.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
103
+ "transformer.h.15.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
104
+ "transformer.h.16.attn.bias": "pytorch_model-00001-of-00002.bin",
105
+ "transformer.h.16.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
106
+ "transformer.h.16.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
107
+ "transformer.h.16.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
108
+ "transformer.h.16.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
109
+ "transformer.h.16.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
110
+ "transformer.h.16.ln_1.bias": "pytorch_model-00001-of-00002.bin",
111
+ "transformer.h.16.ln_1.weight": "pytorch_model-00001-of-00002.bin",
112
+ "transformer.h.16.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
113
+ "transformer.h.16.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
114
+ "transformer.h.16.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
115
+ "transformer.h.16.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
116
+ "transformer.h.17.attn.bias": "pytorch_model-00001-of-00002.bin",
117
+ "transformer.h.17.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
118
+ "transformer.h.17.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
119
+ "transformer.h.17.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
120
+ "transformer.h.17.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
121
+ "transformer.h.17.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
122
+ "transformer.h.17.ln_1.bias": "pytorch_model-00001-of-00002.bin",
123
+ "transformer.h.17.ln_1.weight": "pytorch_model-00001-of-00002.bin",
124
+ "transformer.h.17.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
125
+ "transformer.h.17.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
126
+ "transformer.h.17.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
127
+ "transformer.h.17.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
128
+ "transformer.h.18.attn.bias": "pytorch_model-00001-of-00002.bin",
129
+ "transformer.h.18.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
130
+ "transformer.h.18.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
131
+ "transformer.h.18.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
132
+ "transformer.h.18.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
133
+ "transformer.h.18.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
134
+ "transformer.h.18.ln_1.bias": "pytorch_model-00001-of-00002.bin",
135
+ "transformer.h.18.ln_1.weight": "pytorch_model-00001-of-00002.bin",
136
+ "transformer.h.18.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
137
+ "transformer.h.18.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
138
+ "transformer.h.18.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
139
+ "transformer.h.18.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
140
+ "transformer.h.19.attn.bias": "pytorch_model-00001-of-00002.bin",
141
+ "transformer.h.19.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
142
+ "transformer.h.19.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
143
+ "transformer.h.19.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
144
+ "transformer.h.19.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
145
+ "transformer.h.19.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
146
+ "transformer.h.19.ln_1.bias": "pytorch_model-00001-of-00002.bin",
147
+ "transformer.h.19.ln_1.weight": "pytorch_model-00001-of-00002.bin",
148
+ "transformer.h.19.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
149
+ "transformer.h.19.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
150
+ "transformer.h.19.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
151
+ "transformer.h.19.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
152
+ "transformer.h.2.attn.bias": "pytorch_model-00001-of-00002.bin",
153
+ "transformer.h.2.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
154
+ "transformer.h.2.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
155
+ "transformer.h.2.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
156
+ "transformer.h.2.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
157
+ "transformer.h.2.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
158
+ "transformer.h.2.ln_1.bias": "pytorch_model-00001-of-00002.bin",
159
+ "transformer.h.2.ln_1.weight": "pytorch_model-00001-of-00002.bin",
160
+ "transformer.h.2.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
161
+ "transformer.h.2.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
162
+ "transformer.h.2.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
163
+ "transformer.h.2.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
164
+ "transformer.h.20.attn.bias": "pytorch_model-00001-of-00002.bin",
165
+ "transformer.h.20.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
166
+ "transformer.h.20.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
167
+ "transformer.h.20.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
168
+ "transformer.h.20.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
169
+ "transformer.h.20.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
170
+ "transformer.h.20.ln_1.bias": "pytorch_model-00001-of-00002.bin",
171
+ "transformer.h.20.ln_1.weight": "pytorch_model-00001-of-00002.bin",
172
+ "transformer.h.20.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
173
+ "transformer.h.20.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
174
+ "transformer.h.20.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
175
+ "transformer.h.20.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
176
+ "transformer.h.21.attn.bias": "pytorch_model-00001-of-00002.bin",
177
+ "transformer.h.21.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
178
+ "transformer.h.21.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
179
+ "transformer.h.21.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
180
+ "transformer.h.21.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
181
+ "transformer.h.21.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
182
+ "transformer.h.21.ln_1.bias": "pytorch_model-00001-of-00002.bin",
183
+ "transformer.h.21.ln_1.weight": "pytorch_model-00001-of-00002.bin",
184
+ "transformer.h.21.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
185
+ "transformer.h.21.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
186
+ "transformer.h.21.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
187
+ "transformer.h.21.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
188
+ "transformer.h.22.attn.bias": "pytorch_model-00001-of-00002.bin",
189
+ "transformer.h.22.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
190
+ "transformer.h.22.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
191
+ "transformer.h.22.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
192
+ "transformer.h.22.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
193
+ "transformer.h.22.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
194
+ "transformer.h.22.ln_1.bias": "pytorch_model-00001-of-00002.bin",
195
+ "transformer.h.22.ln_1.weight": "pytorch_model-00001-of-00002.bin",
196
+ "transformer.h.22.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
197
+ "transformer.h.22.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
198
+ "transformer.h.22.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
199
+ "transformer.h.22.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
200
+ "transformer.h.23.attn.bias": "pytorch_model-00001-of-00002.bin",
201
+ "transformer.h.23.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
202
+ "transformer.h.23.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
203
+ "transformer.h.23.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
204
+ "transformer.h.23.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
205
+ "transformer.h.23.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
206
+ "transformer.h.23.ln_1.bias": "pytorch_model-00001-of-00002.bin",
207
+ "transformer.h.23.ln_1.weight": "pytorch_model-00001-of-00002.bin",
208
+ "transformer.h.23.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
209
+ "transformer.h.23.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
210
+ "transformer.h.23.mlp.fc_out.bias": "pytorch_model-00002-of-00002.bin",
211
+ "transformer.h.23.mlp.fc_out.weight": "pytorch_model-00002-of-00002.bin",
212
+ "transformer.h.24.attn.bias": "pytorch_model-00002-of-00002.bin",
213
+ "transformer.h.24.attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
214
+ "transformer.h.24.attn.masked_bias": "pytorch_model-00002-of-00002.bin",
215
+ "transformer.h.24.attn.out_proj.weight": "pytorch_model-00002-of-00002.bin",
216
+ "transformer.h.24.attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
217
+ "transformer.h.24.attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
218
+ "transformer.h.24.ln_1.bias": "pytorch_model-00002-of-00002.bin",
219
+ "transformer.h.24.ln_1.weight": "pytorch_model-00002-of-00002.bin",
220
+ "transformer.h.24.mlp.fc_in.bias": "pytorch_model-00002-of-00002.bin",
221
+ "transformer.h.24.mlp.fc_in.weight": "pytorch_model-00002-of-00002.bin",
222
+ "transformer.h.24.mlp.fc_out.bias": "pytorch_model-00002-of-00002.bin",
223
+ "transformer.h.24.mlp.fc_out.weight": "pytorch_model-00002-of-00002.bin",
224
+ "transformer.h.25.attn.bias": "pytorch_model-00002-of-00002.bin",
225
+ "transformer.h.25.attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
226
+ "transformer.h.25.attn.masked_bias": "pytorch_model-00002-of-00002.bin",
227
+ "transformer.h.25.attn.out_proj.weight": "pytorch_model-00002-of-00002.bin",
228
+ "transformer.h.25.attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
229
+ "transformer.h.25.attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
230
+ "transformer.h.25.ln_1.bias": "pytorch_model-00002-of-00002.bin",
231
+ "transformer.h.25.ln_1.weight": "pytorch_model-00002-of-00002.bin",
232
+ "transformer.h.25.mlp.fc_in.bias": "pytorch_model-00002-of-00002.bin",
233
+ "transformer.h.25.mlp.fc_in.weight": "pytorch_model-00002-of-00002.bin",
234
+ "transformer.h.25.mlp.fc_out.bias": "pytorch_model-00002-of-00002.bin",
235
+ "transformer.h.25.mlp.fc_out.weight": "pytorch_model-00002-of-00002.bin",
236
+ "transformer.h.26.attn.bias": "pytorch_model-00002-of-00002.bin",
237
+ "transformer.h.26.attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
238
+ "transformer.h.26.attn.masked_bias": "pytorch_model-00002-of-00002.bin",
239
+ "transformer.h.26.attn.out_proj.weight": "pytorch_model-00002-of-00002.bin",
240
+ "transformer.h.26.attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
241
+ "transformer.h.26.attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
242
+ "transformer.h.26.ln_1.bias": "pytorch_model-00002-of-00002.bin",
243
+ "transformer.h.26.ln_1.weight": "pytorch_model-00002-of-00002.bin",
244
+ "transformer.h.26.mlp.fc_in.bias": "pytorch_model-00002-of-00002.bin",
245
+ "transformer.h.26.mlp.fc_in.weight": "pytorch_model-00002-of-00002.bin",
246
+ "transformer.h.26.mlp.fc_out.bias": "pytorch_model-00002-of-00002.bin",
247
+ "transformer.h.26.mlp.fc_out.weight": "pytorch_model-00002-of-00002.bin",
248
+ "transformer.h.27.attn.bias": "pytorch_model-00002-of-00002.bin",
249
+ "transformer.h.27.attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
250
+ "transformer.h.27.attn.masked_bias": "pytorch_model-00002-of-00002.bin",
251
+ "transformer.h.27.attn.out_proj.weight": "pytorch_model-00002-of-00002.bin",
252
+ "transformer.h.27.attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
253
+ "transformer.h.27.attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
254
+ "transformer.h.27.ln_1.bias": "pytorch_model-00002-of-00002.bin",
255
+ "transformer.h.27.ln_1.weight": "pytorch_model-00002-of-00002.bin",
256
+ "transformer.h.27.mlp.fc_in.bias": "pytorch_model-00002-of-00002.bin",
257
+ "transformer.h.27.mlp.fc_in.weight": "pytorch_model-00002-of-00002.bin",
258
+ "transformer.h.27.mlp.fc_out.bias": "pytorch_model-00002-of-00002.bin",
259
+ "transformer.h.27.mlp.fc_out.weight": "pytorch_model-00002-of-00002.bin",
260
+ "transformer.h.28.attn.bias": "pytorch_model-00002-of-00002.bin",
261
+ "transformer.h.28.attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
262
+ "transformer.h.28.attn.masked_bias": "pytorch_model-00002-of-00002.bin",
263
+ "transformer.h.28.attn.out_proj.weight": "pytorch_model-00002-of-00002.bin",
264
+ "transformer.h.28.attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
265
+ "transformer.h.28.attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
266
+ "transformer.h.28.ln_1.bias": "pytorch_model-00002-of-00002.bin",
267
+ "transformer.h.28.ln_1.weight": "pytorch_model-00002-of-00002.bin",
268
+ "transformer.h.28.mlp.fc_in.bias": "pytorch_model-00002-of-00002.bin",
269
+ "transformer.h.28.mlp.fc_in.weight": "pytorch_model-00002-of-00002.bin",
270
+ "transformer.h.28.mlp.fc_out.bias": "pytorch_model-00002-of-00002.bin",
271
+ "transformer.h.28.mlp.fc_out.weight": "pytorch_model-00002-of-00002.bin",
272
+ "transformer.h.29.attn.bias": "pytorch_model-00002-of-00002.bin",
273
+ "transformer.h.29.attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
274
+ "transformer.h.29.attn.masked_bias": "pytorch_model-00002-of-00002.bin",
275
+ "transformer.h.29.attn.out_proj.weight": "pytorch_model-00002-of-00002.bin",
276
+ "transformer.h.29.attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
277
+ "transformer.h.29.attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
278
+ "transformer.h.29.ln_1.bias": "pytorch_model-00002-of-00002.bin",
279
+ "transformer.h.29.ln_1.weight": "pytorch_model-00002-of-00002.bin",
280
+ "transformer.h.29.mlp.fc_in.bias": "pytorch_model-00002-of-00002.bin",
281
+ "transformer.h.29.mlp.fc_in.weight": "pytorch_model-00002-of-00002.bin",
282
+ "transformer.h.29.mlp.fc_out.bias": "pytorch_model-00002-of-00002.bin",
283
+ "transformer.h.29.mlp.fc_out.weight": "pytorch_model-00002-of-00002.bin",
284
+ "transformer.h.3.attn.bias": "pytorch_model-00001-of-00002.bin",
285
+ "transformer.h.3.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
286
+ "transformer.h.3.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
287
+ "transformer.h.3.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
288
+ "transformer.h.3.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
289
+ "transformer.h.3.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
290
+ "transformer.h.3.ln_1.bias": "pytorch_model-00001-of-00002.bin",
291
+ "transformer.h.3.ln_1.weight": "pytorch_model-00001-of-00002.bin",
292
+ "transformer.h.3.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
293
+ "transformer.h.3.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
294
+ "transformer.h.3.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
295
+ "transformer.h.3.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
296
+ "transformer.h.30.attn.bias": "pytorch_model-00002-of-00002.bin",
297
+ "transformer.h.30.attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
298
+ "transformer.h.30.attn.masked_bias": "pytorch_model-00002-of-00002.bin",
299
+ "transformer.h.30.attn.out_proj.weight": "pytorch_model-00002-of-00002.bin",
300
+ "transformer.h.30.attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
301
+ "transformer.h.30.attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
302
+ "transformer.h.30.ln_1.bias": "pytorch_model-00002-of-00002.bin",
303
+ "transformer.h.30.ln_1.weight": "pytorch_model-00002-of-00002.bin",
304
+ "transformer.h.30.mlp.fc_in.bias": "pytorch_model-00002-of-00002.bin",
305
+ "transformer.h.30.mlp.fc_in.weight": "pytorch_model-00002-of-00002.bin",
306
+ "transformer.h.30.mlp.fc_out.bias": "pytorch_model-00002-of-00002.bin",
307
+ "transformer.h.30.mlp.fc_out.weight": "pytorch_model-00002-of-00002.bin",
308
+ "transformer.h.31.attn.bias": "pytorch_model-00002-of-00002.bin",
309
+ "transformer.h.31.attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
310
+ "transformer.h.31.attn.masked_bias": "pytorch_model-00002-of-00002.bin",
311
+ "transformer.h.31.attn.out_proj.weight": "pytorch_model-00002-of-00002.bin",
312
+ "transformer.h.31.attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
313
+ "transformer.h.31.attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
314
+ "transformer.h.31.ln_1.bias": "pytorch_model-00002-of-00002.bin",
315
+ "transformer.h.31.ln_1.weight": "pytorch_model-00002-of-00002.bin",
316
+ "transformer.h.31.mlp.fc_in.bias": "pytorch_model-00002-of-00002.bin",
317
+ "transformer.h.31.mlp.fc_in.weight": "pytorch_model-00002-of-00002.bin",
318
+ "transformer.h.31.mlp.fc_out.bias": "pytorch_model-00002-of-00002.bin",
319
+ "transformer.h.31.mlp.fc_out.weight": "pytorch_model-00002-of-00002.bin",
320
+ "transformer.h.4.attn.bias": "pytorch_model-00001-of-00002.bin",
321
+ "transformer.h.4.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
322
+ "transformer.h.4.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
323
+ "transformer.h.4.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
324
+ "transformer.h.4.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
325
+ "transformer.h.4.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
326
+ "transformer.h.4.ln_1.bias": "pytorch_model-00001-of-00002.bin",
327
+ "transformer.h.4.ln_1.weight": "pytorch_model-00001-of-00002.bin",
328
+ "transformer.h.4.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
329
+ "transformer.h.4.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
330
+ "transformer.h.4.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
331
+ "transformer.h.4.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
332
+ "transformer.h.5.attn.bias": "pytorch_model-00001-of-00002.bin",
333
+ "transformer.h.5.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
334
+ "transformer.h.5.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
335
+ "transformer.h.5.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
336
+ "transformer.h.5.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
337
+ "transformer.h.5.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
338
+ "transformer.h.5.ln_1.bias": "pytorch_model-00001-of-00002.bin",
339
+ "transformer.h.5.ln_1.weight": "pytorch_model-00001-of-00002.bin",
340
+ "transformer.h.5.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
341
+ "transformer.h.5.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
342
+ "transformer.h.5.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
343
+ "transformer.h.5.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
344
+ "transformer.h.6.attn.bias": "pytorch_model-00001-of-00002.bin",
345
+ "transformer.h.6.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
346
+ "transformer.h.6.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
347
+ "transformer.h.6.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
348
+ "transformer.h.6.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
349
+ "transformer.h.6.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
350
+ "transformer.h.6.ln_1.bias": "pytorch_model-00001-of-00002.bin",
351
+ "transformer.h.6.ln_1.weight": "pytorch_model-00001-of-00002.bin",
352
+ "transformer.h.6.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
353
+ "transformer.h.6.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
354
+ "transformer.h.6.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
355
+ "transformer.h.6.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
356
+ "transformer.h.7.attn.bias": "pytorch_model-00001-of-00002.bin",
357
+ "transformer.h.7.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
358
+ "transformer.h.7.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
359
+ "transformer.h.7.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
360
+ "transformer.h.7.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
361
+ "transformer.h.7.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
362
+ "transformer.h.7.ln_1.bias": "pytorch_model-00001-of-00002.bin",
363
+ "transformer.h.7.ln_1.weight": "pytorch_model-00001-of-00002.bin",
364
+ "transformer.h.7.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
365
+ "transformer.h.7.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
366
+ "transformer.h.7.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
367
+ "transformer.h.7.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
368
+ "transformer.h.8.attn.bias": "pytorch_model-00001-of-00002.bin",
369
+ "transformer.h.8.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
370
+ "transformer.h.8.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
371
+ "transformer.h.8.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
372
+ "transformer.h.8.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
373
+ "transformer.h.8.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
374
+ "transformer.h.8.ln_1.bias": "pytorch_model-00001-of-00002.bin",
375
+ "transformer.h.8.ln_1.weight": "pytorch_model-00001-of-00002.bin",
376
+ "transformer.h.8.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
377
+ "transformer.h.8.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
378
+ "transformer.h.8.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
379
+ "transformer.h.8.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
380
+ "transformer.h.9.attn.bias": "pytorch_model-00001-of-00002.bin",
381
+ "transformer.h.9.attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
382
+ "transformer.h.9.attn.masked_bias": "pytorch_model-00001-of-00002.bin",
383
+ "transformer.h.9.attn.out_proj.weight": "pytorch_model-00001-of-00002.bin",
384
+ "transformer.h.9.attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
385
+ "transformer.h.9.attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
386
+ "transformer.h.9.ln_1.bias": "pytorch_model-00001-of-00002.bin",
387
+ "transformer.h.9.ln_1.weight": "pytorch_model-00001-of-00002.bin",
388
+ "transformer.h.9.mlp.fc_in.bias": "pytorch_model-00001-of-00002.bin",
389
+ "transformer.h.9.mlp.fc_in.weight": "pytorch_model-00001-of-00002.bin",
390
+ "transformer.h.9.mlp.fc_out.bias": "pytorch_model-00001-of-00002.bin",
391
+ "transformer.h.9.mlp.fc_out.weight": "pytorch_model-00001-of-00002.bin",
392
+ "transformer.ln_f.bias": "pytorch_model-00002-of-00002.bin",
393
+ "transformer.ln_f.weight": "pytorch_model-00002-of-00002.bin",
394
+ "transformer.wte.weight": "pytorch_model-00001-of-00002.bin"
395
+ }
396
+ }