chargoddard
commited on
Commit
•
1e721b6
1
Parent(s):
43a2bd2
Upload folder using huggingface_hub
Browse files- README.md +45 -0
- config.json +40 -0
- mergekit_config.yml +16 -0
- merges.txt +0 -0
- model-00001-of-00001.safetensors +3 -0
- model.safetensors.index.json +1 -0
- special_tokens_map.json +5 -0
- tokenizer.json +0 -0
- tokenizer_config.json +19 -0
- vocab.json +0 -0
README.md
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model:
|
3 |
+
- openai-community/gpt2-xl
|
4 |
+
library_name: transformers
|
5 |
+
tags:
|
6 |
+
- mergekit
|
7 |
+
- merge
|
8 |
+
|
9 |
+
---
|
10 |
+
# merge
|
11 |
+
|
12 |
+
This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
|
13 |
+
|
14 |
+
## Merge Details
|
15 |
+
### Merge Method
|
16 |
+
|
17 |
+
This model was merged using the [TIES](https://arxiv.org/abs/2306.01708) merge method using [openai-community/gpt2-xl](https://huggingface.co/openai-community/gpt2-xl) as a base.
|
18 |
+
|
19 |
+
### Models Merged
|
20 |
+
|
21 |
+
The following models were included in the merge:
|
22 |
+
|
23 |
+
|
24 |
+
### Configuration
|
25 |
+
|
26 |
+
The following YAML configuration was used to produce this model:
|
27 |
+
|
28 |
+
```yaml
|
29 |
+
models:
|
30 |
+
- model: openai-community/gpt2-xl
|
31 |
+
parameters:
|
32 |
+
density: 0.5
|
33 |
+
weight: 0.5
|
34 |
+
- model: openai-community/gpt2-xl
|
35 |
+
parameters:
|
36 |
+
density: 0.5
|
37 |
+
weight: 0.5
|
38 |
+
|
39 |
+
merge_method: ties
|
40 |
+
base_model: openai-community/gpt2-xl
|
41 |
+
parameters:
|
42 |
+
normalize: false
|
43 |
+
int8_mask: true
|
44 |
+
dtype: float16
|
45 |
+
```
|
config.json
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "openai-community/gpt2-xl",
|
3 |
+
"activation_function": "gelu_new",
|
4 |
+
"architectures": [
|
5 |
+
"GPT2LMHeadModel"
|
6 |
+
],
|
7 |
+
"attn_pdrop": 0.1,
|
8 |
+
"bos_token_id": 50256,
|
9 |
+
"embd_pdrop": 0.1,
|
10 |
+
"eos_token_id": 50256,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"layer_norm_epsilon": 1e-05,
|
13 |
+
"model_type": "gpt2",
|
14 |
+
"n_ctx": 1024,
|
15 |
+
"n_embd": 1600,
|
16 |
+
"n_head": 25,
|
17 |
+
"n_inner": null,
|
18 |
+
"n_layer": 48,
|
19 |
+
"n_positions": 1024,
|
20 |
+
"output_past": true,
|
21 |
+
"reorder_and_upcast_attn": false,
|
22 |
+
"resid_pdrop": 0.1,
|
23 |
+
"scale_attn_by_inverse_layer_idx": false,
|
24 |
+
"scale_attn_weights": true,
|
25 |
+
"summary_activation": null,
|
26 |
+
"summary_first_dropout": 0.1,
|
27 |
+
"summary_proj_to_labels": true,
|
28 |
+
"summary_type": "cls_index",
|
29 |
+
"summary_use_proj": true,
|
30 |
+
"task_specific_params": {
|
31 |
+
"text-generation": {
|
32 |
+
"do_sample": true,
|
33 |
+
"max_length": 50
|
34 |
+
}
|
35 |
+
},
|
36 |
+
"torch_dtype": "float16",
|
37 |
+
"transformers_version": "4.44.1",
|
38 |
+
"use_cache": true,
|
39 |
+
"vocab_size": 50257
|
40 |
+
}
|
mergekit_config.yml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
models:
|
2 |
+
- model: openai-community/gpt2-xl
|
3 |
+
parameters:
|
4 |
+
density: 0.5
|
5 |
+
weight: 0.5
|
6 |
+
- model: openai-community/gpt2-xl
|
7 |
+
parameters:
|
8 |
+
density: 0.5
|
9 |
+
weight: 0.5
|
10 |
+
|
11 |
+
merge_method: ties
|
12 |
+
base_model: openai-community/gpt2-xl
|
13 |
+
parameters:
|
14 |
+
normalize: false
|
15 |
+
int8_mask: true
|
16 |
+
dtype: float16
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model-00001-of-00001.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d0bc5a60c17717354b02f71dab0cc0f670f57638706d30ff538984cd709aaa68
|
3 |
+
size 3115276168
|
model.safetensors.index.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"metadata": {"mergekit_version": "0.0.4.4", "total_size": 3115222400}, "weight_map": {"h.0.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.0.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.0.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.0.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.0.ln_1.bias": "model-00001-of-00001.safetensors", "h.0.ln_1.weight": "model-00001-of-00001.safetensors", "h.0.ln_2.bias": "model-00001-of-00001.safetensors", "h.0.ln_2.weight": "model-00001-of-00001.safetensors", "h.0.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.0.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.0.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.0.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.1.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.1.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.1.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.1.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.1.ln_1.bias": "model-00001-of-00001.safetensors", "h.1.ln_1.weight": "model-00001-of-00001.safetensors", "h.1.ln_2.bias": "model-00001-of-00001.safetensors", "h.1.ln_2.weight": "model-00001-of-00001.safetensors", "h.1.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.1.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.1.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.1.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.10.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.10.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.10.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.10.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.10.ln_1.bias": "model-00001-of-00001.safetensors", "h.10.ln_1.weight": "model-00001-of-00001.safetensors", "h.10.ln_2.bias": "model-00001-of-00001.safetensors", "h.10.ln_2.weight": "model-00001-of-00001.safetensors", "h.10.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.10.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.10.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.10.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.11.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.11.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.11.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.11.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.11.ln_1.bias": "model-00001-of-00001.safetensors", "h.11.ln_1.weight": "model-00001-of-00001.safetensors", "h.11.ln_2.bias": "model-00001-of-00001.safetensors", "h.11.ln_2.weight": "model-00001-of-00001.safetensors", "h.11.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.11.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.11.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.11.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.12.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.12.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.12.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.12.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.12.ln_1.bias": "model-00001-of-00001.safetensors", "h.12.ln_1.weight": "model-00001-of-00001.safetensors", "h.12.ln_2.bias": "model-00001-of-00001.safetensors", "h.12.ln_2.weight": "model-00001-of-00001.safetensors", "h.12.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.12.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.12.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.12.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.13.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.13.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.13.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.13.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.13.ln_1.bias": "model-00001-of-00001.safetensors", "h.13.ln_1.weight": "model-00001-of-00001.safetensors", "h.13.ln_2.bias": "model-00001-of-00001.safetensors", "h.13.ln_2.weight": "model-00001-of-00001.safetensors", "h.13.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.13.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.13.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.13.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.14.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.14.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.14.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.14.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.14.ln_1.bias": "model-00001-of-00001.safetensors", "h.14.ln_1.weight": "model-00001-of-00001.safetensors", "h.14.ln_2.bias": "model-00001-of-00001.safetensors", "h.14.ln_2.weight": "model-00001-of-00001.safetensors", "h.14.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.14.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.14.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.14.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.15.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.15.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.15.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.15.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.15.ln_1.bias": "model-00001-of-00001.safetensors", "h.15.ln_1.weight": "model-00001-of-00001.safetensors", "h.15.ln_2.bias": "model-00001-of-00001.safetensors", "h.15.ln_2.weight": "model-00001-of-00001.safetensors", "h.15.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.15.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.15.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.15.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.16.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.16.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.16.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.16.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.16.ln_1.bias": "model-00001-of-00001.safetensors", "h.16.ln_1.weight": "model-00001-of-00001.safetensors", "h.16.ln_2.bias": "model-00001-of-00001.safetensors", "h.16.ln_2.weight": "model-00001-of-00001.safetensors", "h.16.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.16.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.16.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.16.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.17.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.17.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.17.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.17.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.17.ln_1.bias": "model-00001-of-00001.safetensors", "h.17.ln_1.weight": "model-00001-of-00001.safetensors", "h.17.ln_2.bias": "model-00001-of-00001.safetensors", "h.17.ln_2.weight": "model-00001-of-00001.safetensors", "h.17.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.17.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.17.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.17.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.18.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.18.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.18.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.18.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.18.ln_1.bias": "model-00001-of-00001.safetensors", "h.18.ln_1.weight": "model-00001-of-00001.safetensors", "h.18.ln_2.bias": "model-00001-of-00001.safetensors", "h.18.ln_2.weight": "model-00001-of-00001.safetensors", "h.18.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.18.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.18.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.18.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.19.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.19.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.19.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.19.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.19.ln_1.bias": "model-00001-of-00001.safetensors", "h.19.ln_1.weight": "model-00001-of-00001.safetensors", "h.19.ln_2.bias": "model-00001-of-00001.safetensors", "h.19.ln_2.weight": "model-00001-of-00001.safetensors", "h.19.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.19.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.19.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.19.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.2.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.2.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.2.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.2.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.2.ln_1.bias": "model-00001-of-00001.safetensors", "h.2.ln_1.weight": "model-00001-of-00001.safetensors", "h.2.ln_2.bias": "model-00001-of-00001.safetensors", "h.2.ln_2.weight": "model-00001-of-00001.safetensors", "h.2.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.2.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.2.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.2.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.20.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.20.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.20.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.20.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.20.ln_1.bias": "model-00001-of-00001.safetensors", "h.20.ln_1.weight": "model-00001-of-00001.safetensors", "h.20.ln_2.bias": "model-00001-of-00001.safetensors", "h.20.ln_2.weight": "model-00001-of-00001.safetensors", "h.20.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.20.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.20.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.20.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.21.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.21.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.21.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.21.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.21.ln_1.bias": "model-00001-of-00001.safetensors", "h.21.ln_1.weight": "model-00001-of-00001.safetensors", "h.21.ln_2.bias": "model-00001-of-00001.safetensors", "h.21.ln_2.weight": "model-00001-of-00001.safetensors", "h.21.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.21.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.21.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.21.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.22.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.22.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.22.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.22.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.22.ln_1.bias": "model-00001-of-00001.safetensors", "h.22.ln_1.weight": "model-00001-of-00001.safetensors", "h.22.ln_2.bias": "model-00001-of-00001.safetensors", "h.22.ln_2.weight": "model-00001-of-00001.safetensors", "h.22.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.22.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.22.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.22.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.23.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.23.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.23.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.23.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.23.ln_1.bias": "model-00001-of-00001.safetensors", "h.23.ln_1.weight": "model-00001-of-00001.safetensors", "h.23.ln_2.bias": "model-00001-of-00001.safetensors", "h.23.ln_2.weight": "model-00001-of-00001.safetensors", "h.23.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.23.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.23.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.23.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.24.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.24.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.24.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.24.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.24.ln_1.bias": "model-00001-of-00001.safetensors", "h.24.ln_1.weight": "model-00001-of-00001.safetensors", "h.24.ln_2.bias": "model-00001-of-00001.safetensors", "h.24.ln_2.weight": "model-00001-of-00001.safetensors", "h.24.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.24.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.24.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.24.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.25.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.25.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.25.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.25.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.25.ln_1.bias": "model-00001-of-00001.safetensors", "h.25.ln_1.weight": "model-00001-of-00001.safetensors", "h.25.ln_2.bias": "model-00001-of-00001.safetensors", "h.25.ln_2.weight": "model-00001-of-00001.safetensors", "h.25.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.25.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.25.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.25.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.26.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.26.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.26.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.26.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.26.ln_1.bias": "model-00001-of-00001.safetensors", "h.26.ln_1.weight": "model-00001-of-00001.safetensors", "h.26.ln_2.bias": "model-00001-of-00001.safetensors", "h.26.ln_2.weight": "model-00001-of-00001.safetensors", "h.26.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.26.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.26.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.26.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.27.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.27.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.27.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.27.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.27.ln_1.bias": "model-00001-of-00001.safetensors", "h.27.ln_1.weight": "model-00001-of-00001.safetensors", "h.27.ln_2.bias": "model-00001-of-00001.safetensors", "h.27.ln_2.weight": "model-00001-of-00001.safetensors", "h.27.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.27.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.27.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.27.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.28.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.28.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.28.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.28.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.28.ln_1.bias": "model-00001-of-00001.safetensors", "h.28.ln_1.weight": "model-00001-of-00001.safetensors", "h.28.ln_2.bias": "model-00001-of-00001.safetensors", "h.28.ln_2.weight": "model-00001-of-00001.safetensors", "h.28.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.28.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.28.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.28.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.29.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.29.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.29.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.29.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.29.ln_1.bias": "model-00001-of-00001.safetensors", "h.29.ln_1.weight": "model-00001-of-00001.safetensors", "h.29.ln_2.bias": "model-00001-of-00001.safetensors", "h.29.ln_2.weight": "model-00001-of-00001.safetensors", "h.29.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.29.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.29.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.29.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.3.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.3.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.3.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.3.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.3.ln_1.bias": "model-00001-of-00001.safetensors", "h.3.ln_1.weight": "model-00001-of-00001.safetensors", "h.3.ln_2.bias": "model-00001-of-00001.safetensors", "h.3.ln_2.weight": "model-00001-of-00001.safetensors", "h.3.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.3.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.3.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.3.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.30.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.30.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.30.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.30.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.30.ln_1.bias": "model-00001-of-00001.safetensors", "h.30.ln_1.weight": "model-00001-of-00001.safetensors", "h.30.ln_2.bias": "model-00001-of-00001.safetensors", "h.30.ln_2.weight": "model-00001-of-00001.safetensors", "h.30.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.30.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.30.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.30.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.31.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.31.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.31.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.31.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.31.ln_1.bias": "model-00001-of-00001.safetensors", "h.31.ln_1.weight": "model-00001-of-00001.safetensors", "h.31.ln_2.bias": "model-00001-of-00001.safetensors", "h.31.ln_2.weight": "model-00001-of-00001.safetensors", "h.31.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.31.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.31.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.31.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.32.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.32.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.32.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.32.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.32.ln_1.bias": "model-00001-of-00001.safetensors", "h.32.ln_1.weight": "model-00001-of-00001.safetensors", "h.32.ln_2.bias": "model-00001-of-00001.safetensors", "h.32.ln_2.weight": "model-00001-of-00001.safetensors", "h.32.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.32.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.32.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.32.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.33.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.33.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.33.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.33.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.33.ln_1.bias": "model-00001-of-00001.safetensors", "h.33.ln_1.weight": "model-00001-of-00001.safetensors", "h.33.ln_2.bias": "model-00001-of-00001.safetensors", "h.33.ln_2.weight": "model-00001-of-00001.safetensors", "h.33.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.33.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.33.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.33.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.34.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.34.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.34.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.34.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.34.ln_1.bias": "model-00001-of-00001.safetensors", "h.34.ln_1.weight": "model-00001-of-00001.safetensors", "h.34.ln_2.bias": "model-00001-of-00001.safetensors", "h.34.ln_2.weight": "model-00001-of-00001.safetensors", "h.34.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.34.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.34.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.34.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.35.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.35.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.35.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.35.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.35.ln_1.bias": "model-00001-of-00001.safetensors", "h.35.ln_1.weight": "model-00001-of-00001.safetensors", "h.35.ln_2.bias": "model-00001-of-00001.safetensors", "h.35.ln_2.weight": "model-00001-of-00001.safetensors", "h.35.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.35.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.35.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.35.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.36.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.36.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.36.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.36.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.36.ln_1.bias": "model-00001-of-00001.safetensors", "h.36.ln_1.weight": "model-00001-of-00001.safetensors", "h.36.ln_2.bias": "model-00001-of-00001.safetensors", "h.36.ln_2.weight": "model-00001-of-00001.safetensors", "h.36.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.36.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.36.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.36.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.37.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.37.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.37.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.37.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.37.ln_1.bias": "model-00001-of-00001.safetensors", "h.37.ln_1.weight": "model-00001-of-00001.safetensors", "h.37.ln_2.bias": "model-00001-of-00001.safetensors", "h.37.ln_2.weight": "model-00001-of-00001.safetensors", "h.37.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.37.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.37.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.37.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.38.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.38.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.38.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.38.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.38.ln_1.bias": "model-00001-of-00001.safetensors", "h.38.ln_1.weight": "model-00001-of-00001.safetensors", "h.38.ln_2.bias": "model-00001-of-00001.safetensors", "h.38.ln_2.weight": "model-00001-of-00001.safetensors", "h.38.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.38.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.38.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.38.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.39.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.39.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.39.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.39.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.39.ln_1.bias": "model-00001-of-00001.safetensors", "h.39.ln_1.weight": "model-00001-of-00001.safetensors", "h.39.ln_2.bias": "model-00001-of-00001.safetensors", "h.39.ln_2.weight": "model-00001-of-00001.safetensors", "h.39.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.39.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.39.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.39.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.4.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.4.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.4.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.4.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.4.ln_1.bias": "model-00001-of-00001.safetensors", "h.4.ln_1.weight": "model-00001-of-00001.safetensors", "h.4.ln_2.bias": "model-00001-of-00001.safetensors", "h.4.ln_2.weight": "model-00001-of-00001.safetensors", "h.4.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.4.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.4.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.4.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.40.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.40.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.40.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.40.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.40.ln_1.bias": "model-00001-of-00001.safetensors", "h.40.ln_1.weight": "model-00001-of-00001.safetensors", "h.40.ln_2.bias": "model-00001-of-00001.safetensors", "h.40.ln_2.weight": "model-00001-of-00001.safetensors", "h.40.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.40.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.40.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.40.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.41.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.41.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.41.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.41.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.41.ln_1.bias": "model-00001-of-00001.safetensors", "h.41.ln_1.weight": "model-00001-of-00001.safetensors", "h.41.ln_2.bias": "model-00001-of-00001.safetensors", "h.41.ln_2.weight": "model-00001-of-00001.safetensors", "h.41.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.41.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.41.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.41.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.42.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.42.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.42.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.42.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.42.ln_1.bias": "model-00001-of-00001.safetensors", "h.42.ln_1.weight": "model-00001-of-00001.safetensors", "h.42.ln_2.bias": "model-00001-of-00001.safetensors", "h.42.ln_2.weight": "model-00001-of-00001.safetensors", "h.42.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.42.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.42.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.42.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.43.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.43.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.43.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.43.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.43.ln_1.bias": "model-00001-of-00001.safetensors", "h.43.ln_1.weight": "model-00001-of-00001.safetensors", "h.43.ln_2.bias": "model-00001-of-00001.safetensors", "h.43.ln_2.weight": "model-00001-of-00001.safetensors", "h.43.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.43.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.43.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.43.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.44.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.44.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.44.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.44.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.44.ln_1.bias": "model-00001-of-00001.safetensors", "h.44.ln_1.weight": "model-00001-of-00001.safetensors", "h.44.ln_2.bias": "model-00001-of-00001.safetensors", "h.44.ln_2.weight": "model-00001-of-00001.safetensors", "h.44.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.44.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.44.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.44.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.45.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.45.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.45.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.45.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.45.ln_1.bias": "model-00001-of-00001.safetensors", "h.45.ln_1.weight": "model-00001-of-00001.safetensors", "h.45.ln_2.bias": "model-00001-of-00001.safetensors", "h.45.ln_2.weight": "model-00001-of-00001.safetensors", "h.45.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.45.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.45.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.45.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.46.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.46.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.46.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.46.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.46.ln_1.bias": "model-00001-of-00001.safetensors", "h.46.ln_1.weight": "model-00001-of-00001.safetensors", "h.46.ln_2.bias": "model-00001-of-00001.safetensors", "h.46.ln_2.weight": "model-00001-of-00001.safetensors", "h.46.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.46.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.46.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.46.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.47.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.47.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.47.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.47.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.47.ln_1.bias": "model-00001-of-00001.safetensors", "h.47.ln_1.weight": "model-00001-of-00001.safetensors", "h.47.ln_2.bias": "model-00001-of-00001.safetensors", "h.47.ln_2.weight": "model-00001-of-00001.safetensors", "h.47.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.47.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.47.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.47.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.5.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.5.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.5.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.5.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.5.ln_1.bias": "model-00001-of-00001.safetensors", "h.5.ln_1.weight": "model-00001-of-00001.safetensors", "h.5.ln_2.bias": "model-00001-of-00001.safetensors", "h.5.ln_2.weight": "model-00001-of-00001.safetensors", "h.5.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.5.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.5.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.5.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.6.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.6.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.6.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.6.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.6.ln_1.bias": "model-00001-of-00001.safetensors", "h.6.ln_1.weight": "model-00001-of-00001.safetensors", "h.6.ln_2.bias": "model-00001-of-00001.safetensors", "h.6.ln_2.weight": "model-00001-of-00001.safetensors", "h.6.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.6.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.6.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.6.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.7.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.7.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.7.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.7.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.7.ln_1.bias": "model-00001-of-00001.safetensors", "h.7.ln_1.weight": "model-00001-of-00001.safetensors", "h.7.ln_2.bias": "model-00001-of-00001.safetensors", "h.7.ln_2.weight": "model-00001-of-00001.safetensors", "h.7.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.7.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.7.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.7.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.8.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.8.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.8.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.8.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.8.ln_1.bias": "model-00001-of-00001.safetensors", "h.8.ln_1.weight": "model-00001-of-00001.safetensors", "h.8.ln_2.bias": "model-00001-of-00001.safetensors", "h.8.ln_2.weight": "model-00001-of-00001.safetensors", "h.8.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.8.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.8.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.8.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "h.9.attn.c_attn.bias": "model-00001-of-00001.safetensors", "h.9.attn.c_attn.weight": "model-00001-of-00001.safetensors", "h.9.attn.c_proj.bias": "model-00001-of-00001.safetensors", "h.9.attn.c_proj.weight": "model-00001-of-00001.safetensors", "h.9.ln_1.bias": "model-00001-of-00001.safetensors", "h.9.ln_1.weight": "model-00001-of-00001.safetensors", "h.9.ln_2.bias": "model-00001-of-00001.safetensors", "h.9.ln_2.weight": "model-00001-of-00001.safetensors", "h.9.mlp.c_fc.bias": "model-00001-of-00001.safetensors", "h.9.mlp.c_fc.weight": "model-00001-of-00001.safetensors", "h.9.mlp.c_proj.bias": "model-00001-of-00001.safetensors", "h.9.mlp.c_proj.weight": "model-00001-of-00001.safetensors", "ln_f.bias": "model-00001-of-00001.safetensors", "ln_f.weight": "model-00001-of-00001.safetensors", "wpe.weight": "model-00001-of-00001.safetensors", "wte.weight": "model-00001-of-00001.safetensors"}}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<|endoftext|>",
|
3 |
+
"eos_token": "<|endoftext|>",
|
4 |
+
"unk_token": "<|endoftext|>"
|
5 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_prefix_space": false,
|
3 |
+
"added_tokens_decoder": {
|
4 |
+
"50256": {
|
5 |
+
"content": "<|endoftext|>",
|
6 |
+
"lstrip": false,
|
7 |
+
"normalized": true,
|
8 |
+
"rstrip": false,
|
9 |
+
"single_word": false,
|
10 |
+
"special": true
|
11 |
+
}
|
12 |
+
},
|
13 |
+
"bos_token": "<|endoftext|>",
|
14 |
+
"clean_up_tokenization_spaces": true,
|
15 |
+
"eos_token": "<|endoftext|>",
|
16 |
+
"model_max_length": 1024,
|
17 |
+
"tokenizer_class": "GPT2Tokenizer",
|
18 |
+
"unk_token": "<|endoftext|>"
|
19 |
+
}
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|