LoneStriker commited on
Commit
ef6177e
1 Parent(s): 53ca3f3

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - TheBloke/Llama-2-13B-fp16
4
+ tags:
5
+ - mergekit
6
+ - merge
7
+ license: cc-by-nc-4.0
8
+ ---
9
+ # Introduction
10
+ - Estopia is a model focused on improving the dialogue and prose returned when using the instruct format. As a side benefit, character cards and similar seem to have also improved, remembering details well in many cases.
11
+ - It focuses on "guided narratives" - using instructions to guide or explore fictional stories, where you act as a guide for the AI to narrate and fill in the details.
12
+ - It has primarily been tested around prose, using instructions to guide narrative, detail retention and "neutrality" - in particular with regards to plot armour. Unless you define different rules for your adventure / narrative with instructions, it should be realistic in the responses provided.
13
+ - It has been tested using different modes, such as instruct, chat, adventure and story modes - and should be able to do them all to a degree, with it's strengths being instruct and adventure, with story being a close second.
14
+ # Usage
15
+ - The Estopia model has been tested primarily using the Alpaca format, but with the range of models included likely has some understanding of others. Some examples of tested formats are below:
16
+ - ```\n### Instruction:\nWhat colour is the sky?\n### Response:\nThe sky is...```
17
+ - ```<Story text>\n***\nWrite a summary of the text above\n***\nThe story starts by...```
18
+ - Using the Kobold Lite AI adventure mode
19
+ - ```User:Hello there!\nAssistant:Good morning...\n```
20
+ - For settings, the following are recommended for general use:
21
+ - Temperature: 0.8-1.2
22
+ - Min P: 0.05-0.1
23
+ - Max P: 0.92, or 1 if using a Min P greater than 0
24
+ - Top K: 0
25
+ - Response length: Higher than your usual amount most likely - for example a common value selected is 512.
26
+ - Note: Response lengths are not guaranteed to always be this length. On occasion, responses may be shorter if they convey the response entirely, other times they could be upwards of this value. It depends mostly on the character card, instructions, etc.
27
+ - Rep Pen: 1.1
28
+ - Rep Pen Range: 2 or 3x your response length
29
+ - Stopping tokens (Not needed, but can help if the AI is writing too much):
30
+ - ```##||$||---||$||ASSISTANT:||$||[End||$||</s>``` - A single string for Kobold Lite combining the ones below
31
+ - ```##```
32
+ - ```---```
33
+ - ```ASSISTANT:```
34
+ - ```[End```
35
+ - ```</s>```
36
+ - The settings above should provide a generally good experience balancing instruction following and creativity. Generally the higher you set the temperature, the greater the creativity and higher chance of logical errors when providing responses from the AI.
37
+ # Recipe
38
+ This model was made in three stages, along with many experimental stages which will be skipped for brevity. The first was internally referred to as EstopiaV9, which has a high degree of instruction following and creativity in responses, though they were generally shorter and a little more restricted in the scope of outputs, but conveyed nuance better.
39
+ ```yaml
40
+ merge_method: task_arithmetic
41
+ base_model: TheBloke/Llama-2-13B-fp16
42
+ models:
43
+ - model: TheBloke/Llama-2-13B-fp16
44
+ - model: Undi95/UtopiaXL-13B
45
+ parameters:
46
+ weight: 1.0
47
+ - model: Doctor-Shotgun/cat-v1.0-13b
48
+ parameters:
49
+ weight: 0.02
50
+ - model: PygmalionAI/mythalion-13b
51
+ parameters:
52
+ weight: 0.10
53
+ - model: Undi95/Emerhyst-13B
54
+ parameters:
55
+ weight: 0.05
56
+ - model: CalderaAI/13B-Thorns-l2
57
+ parameters:
58
+ weight: 0.05
59
+ - model: KoboldAI/LLaMA2-13B-Tiefighter
60
+ parameters:
61
+ weight: 0.20
62
+ dtype: float16
63
+ ```
64
+ The second part of the merge was known as EstopiaV13. This produced responses which were long, but tended to write beyond good stopping points for further instructions to be added as it leant heavily on novel style prose. It did however benefit from a greater degree of neutrality as described above, and retained many of the detail tracking abilities of V9.
65
+ ```yaml
66
+ merge_method: task_arithmetic
67
+ base_model: TheBloke/Llama-2-13B-fp16
68
+ models:
69
+ - model: TheBloke/Llama-2-13B-fp16
70
+ - model: Undi95/UtopiaXL-13B
71
+ parameters:
72
+ weight: 1.0
73
+ - model: Doctor-Shotgun/cat-v1.0-13b
74
+ parameters:
75
+ weight: 0.01
76
+ - model: chargoddard/rpguild-chatml-13b
77
+ parameters:
78
+ weight: 0.02
79
+ - model: PygmalionAI/mythalion-13b
80
+ parameters:
81
+ weight: 0.08
82
+ - model: CalderaAI/13B-Thorns-l2
83
+ parameters:
84
+ weight: 0.02
85
+ - model: KoboldAI/LLaMA2-13B-Tiefighter
86
+ parameters:
87
+ weight: 0.20
88
+ dtype: float16
89
+ ```
90
+ The third step was a merge between the two to retain the benefits of both as much as possible. This was performed using the dare merging technique.
91
+ ```yaml
92
+ # task-arithmetic style
93
+ models:
94
+ - model: EstopiaV9
95
+ parameters:
96
+ weight: 1
97
+ density: 1
98
+ - model: EstopiaV13
99
+ parameters:
100
+ weight: 0.05
101
+ density: 0.30
102
+ merge_method: dare_ties
103
+ base_model: TheBloke/Llama-2-13B-fp16
104
+ parameters:
105
+ int8_mask: true
106
+ dtype: bfloat16
107
+ ```
108
+ # Model selection
109
+ - Undi95/UtopiaXL-13B
110
+ - Solid all around base for models, with the ability to write longer responses and generally good retension to detail.
111
+ - Doctor-Shotgun/cat-v1.0-13b
112
+ - A medical focused model which is added to focus a little more on the human responses, such as for psycology.
113
+ - PygmalionAI/mythalion-13b
114
+ - A roleplay and instruct focused model, which improves attentiveness to character card details and the variety of responses
115
+ - Undi95/Emerhyst-13B
116
+ - A roleplay but also longer form response model. It can be quite variable, but helps add to the depth and possible options the AI can respond with during narratives.
117
+ - CalderaAI/13B-Thorns-l2
118
+ - A neutral and very attentive model. It is good at chat and following instructions, which help benefit these modes.
119
+ - KoboldAI/LLaMA2-13B-Tiefighter
120
+ - A solid all around model, focusing on story writing and adventure modes. It provides all around benefits to creativity and the prose in models, along with adventure mode support.
121
+ - chargoddard/rpguild-chatml-13b
122
+ - A roleplay model, which introduces new data and also improves the detail retention in longer narratives.
123
+ # Notes
124
+ - With the differing models inside, this model will not have perfect end of sequence tokens which is a problem many merges can share. While attempts have been made to minimise this, you may occasionally get oddly behaving tokens - this should be possible to resolve with a quick manual edit once and the model should pick up on it.
125
+ - Chat is one of the least tested areas for this model. It works fairly well, but it can be quite character card dependant.
126
+ - This is a narrative and prose focused model. As a result, it can and will talk for you if guided to do so (such as asking it to act as a co-author or narrator) within instructions or other contexts. This can be mitigated mostly by adding instructions to limit this, or using chat mode instead.
127
+ # Future areas
128
+ - Llava
129
+ - Some success has been had with merging the llava lora on this. While no in depth testing has been performed, more narrative responses based on the images could be obtained - though there were drawbacks in the form of degraded performance in other areas, and hallucinations due to the fictional focus of this model.
130
+ - Stheno
131
+ - A merge which has similar promise from Sao. Some merge attempts have been made between the two and were promising, but not entirely consistent at the moment. With some possible refinement, this could produce an even stronger model.
132
+ - DynamicFactor
133
+ - All the merges used have been based on llama two in this merge, but a dare merge with dynamic factor (an attempted refinement of llama two) showed a beneficial improvement to the instruction abilities of the model, along with lengthy responses. It lost a little of the variety of responses, so perhaps if a balance of it could be added the instruction abilities and reasoning could be improved even further.
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "TheBloke/Llama-2-13B-fp16",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 1,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 5120,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 13824,
14
+ "max_position_embeddings": 4096,
15
+ "model_type": "llama",
16
+ "num_attention_heads": 40,
17
+ "num_hidden_layers": 40,
18
+ "num_key_value_heads": 40,
19
+ "pad_token_id": 0,
20
+ "pretraining_tp": 1,
21
+ "rms_norm_eps": 1e-05,
22
+ "rope_scaling": null,
23
+ "rope_theta": 10000.0,
24
+ "tie_word_embeddings": false,
25
+ "torch_dtype": "bfloat16",
26
+ "transformers_version": "4.36.1",
27
+ "use_cache": true,
28
+ "vocab_size": 32000
29
+ }
mergekit_config.yml ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ merge_method: task_arithmetic
2
+ base_model: TheBloke/Llama-2-13B-fp16
3
+ models:
4
+ - model: TheBloke/Llama-2-13B-fp16
5
+ - model: Undi95/UtopiaXL-13B
6
+ parameters:
7
+ weight: 1.0
8
+ - model: Doctor-Shotgun/cat-v1.0-13b
9
+ parameters:
10
+ weight: 0.02
11
+ - model: PygmalionAI/mythalion-13b
12
+ parameters:
13
+ weight: 0.10
14
+ - model: Undi95/Emerhyst-13B
15
+ parameters:
16
+ weight: 0.05
17
+ - model: CalderaAI/13B-Thorns-l2
18
+ parameters:
19
+ weight: 0.05
20
+ - model: KoboldAI/LLaMA2-13B-Tiefighter
21
+ parameters:
22
+ weight: 0.20
23
+ dtype: float16
24
+ name: EstopiaV9
25
+ ---
26
+ merge_method: task_arithmetic
27
+ base_model: TheBloke/Llama-2-13B-fp16
28
+ models:
29
+ - model: TheBloke/Llama-2-13B-fp16
30
+ - model: Undi95/UtopiaXL-13B
31
+ parameters:
32
+ weight: 1.0
33
+ - model: Doctor-Shotgun/cat-v1.0-13b
34
+ parameters:
35
+ weight: 0.01
36
+ - model: chargoddard/rpguild-chatml-13b
37
+ parameters:
38
+ weight: 0.02
39
+ - model: PygmalionAI/mythalion-13b
40
+ parameters:
41
+ weight: 0.08
42
+ - model: CalderaAI/13B-Thorns-l2
43
+ parameters:
44
+ weight: 0.02
45
+ - model: KoboldAI/LLaMA2-13B-Tiefighter
46
+ parameters:
47
+ weight: 0.20
48
+ dtype: float16
49
+ name: EstopiaV13
50
+ ---
51
+ models:
52
+ - model: EstopiaV9
53
+ parameters:
54
+ weight: 1
55
+ density: 1
56
+ - model: EstopiaV13
57
+ parameters:
58
+ weight: 0.05
59
+ density: 0.30
60
+ merge_method: dare_ties
61
+ base_model: TheBloke/Llama-2-13B-fp16
62
+ parameters:
63
+ int8_mask: true
64
+ dtype: bfloat16
model.safetensors.index.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"metadata": {"mergekit_version": "0.0.3.2"}, "weight_map": {"model.embed_tokens.weight": "model-00001-of-00003.safetensors", "model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.10.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.11.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.11.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.11.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.11.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.12.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.12.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.12.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.12.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.12.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.12.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.12.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.13.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.13.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.13.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.13.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.13.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.13.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.13.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.13.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.13.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.14.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.14.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.14.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.14.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.14.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.14.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.14.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.14.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.14.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors", "model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors", "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors", "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors", "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors", "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors", "model.layers.15.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.15.mlp.down_proj.weight": "model-00001-of-00003.safetensors", "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.22.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.22.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.22.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.22.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.23.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.23.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.23.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.23.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.23.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.23.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.23.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.23.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.23.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.24.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.24.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.24.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.24.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.24.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.24.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.24.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.24.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.24.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.25.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.25.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.25.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.25.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.25.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.25.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.25.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.25.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.25.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.26.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.26.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.26.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.26.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.26.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.26.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.26.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.26.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.26.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.27.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.27.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.27.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.27.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.27.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.27.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.27.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.27.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.27.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.28.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.28.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.28.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.28.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.28.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.28.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.28.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.28.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.28.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.29.input_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.29.mlp.down_proj.weight": "model-00002-of-00003.safetensors", "model.layers.29.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.29.mlp.up_proj.weight": "model-00002-of-00003.safetensors", "model.layers.29.post_attention_layernorm.weight": "model-00002-of-00003.safetensors", "model.layers.29.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.29.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.29.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "model.layers.29.self_attn.v_proj.weight": "model-00002-of-00003.safetensors", "model.layers.30.mlp.gate_proj.weight": "model-00002-of-00003.safetensors", "model.layers.30.self_attn.k_proj.weight": "model-00002-of-00003.safetensors", "model.layers.30.self_attn.o_proj.weight": "model-00002-of-00003.safetensors", "model.layers.30.self_attn.q_proj.weight": "model-00002-of-00003.safetensors", "lm_head.weight": "model-00003-of-00003.safetensors", "model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors", "model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors", "model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.32.input_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.32.mlp.down_proj.weight": "model-00003-of-00003.safetensors", "model.layers.32.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", "model.layers.32.mlp.up_proj.weight": "model-00003-of-00003.safetensors", "model.layers.32.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.32.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.32.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.32.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.32.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.33.input_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.33.mlp.down_proj.weight": "model-00003-of-00003.safetensors", "model.layers.33.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", "model.layers.33.mlp.up_proj.weight": "model-00003-of-00003.safetensors", "model.layers.33.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.33.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.33.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.33.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.33.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.34.input_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.34.mlp.down_proj.weight": "model-00003-of-00003.safetensors", "model.layers.34.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", "model.layers.34.mlp.up_proj.weight": "model-00003-of-00003.safetensors", "model.layers.34.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.34.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.34.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.34.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.34.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.35.input_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.35.mlp.down_proj.weight": "model-00003-of-00003.safetensors", "model.layers.35.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", "model.layers.35.mlp.up_proj.weight": "model-00003-of-00003.safetensors", "model.layers.35.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.35.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.35.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.35.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.35.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.36.input_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.36.mlp.down_proj.weight": "model-00003-of-00003.safetensors", "model.layers.36.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", "model.layers.36.mlp.up_proj.weight": "model-00003-of-00003.safetensors", "model.layers.36.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.36.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.36.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.36.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.36.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.37.input_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.37.mlp.down_proj.weight": "model-00003-of-00003.safetensors", "model.layers.37.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", "model.layers.37.mlp.up_proj.weight": "model-00003-of-00003.safetensors", "model.layers.37.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.37.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.37.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.37.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.37.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.38.input_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.38.mlp.down_proj.weight": "model-00003-of-00003.safetensors", "model.layers.38.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", "model.layers.38.mlp.up_proj.weight": "model-00003-of-00003.safetensors", "model.layers.38.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.38.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.38.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.38.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.38.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.39.input_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.39.mlp.down_proj.weight": "model-00003-of-00003.safetensors", "model.layers.39.mlp.gate_proj.weight": "model-00003-of-00003.safetensors", "model.layers.39.mlp.up_proj.weight": "model-00003-of-00003.safetensors", "model.layers.39.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.39.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.39.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.39.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.39.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.norm.weight": "model-00003-of-00003.safetensors"}}
output.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24a478d41d61a7f94a2a96b4aa514db68e42b5ac36fb231a82def5b7489359dc
3
+ size 5222544468
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "unk_token": {
17
+ "content": "<unk>",
18
+ "lstrip": false,
19
+ "normalized": true,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
tokenizer_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<unk>",
7
+ "lstrip": false,
8
+ "normalized": true,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "<s>",
15
+ "lstrip": false,
16
+ "normalized": true,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "</s>",
23
+ "lstrip": false,
24
+ "normalized": true,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ }
29
+ },
30
+ "bos_token": "<s>",
31
+ "clean_up_tokenization_spaces": false,
32
+ "eos_token": "</s>",
33
+ "model_max_length": 1000000000000000019884624838656,
34
+ "pad_token": null,
35
+ "sp_model_kwargs": {},
36
+ "tokenizer_class": "LlamaTokenizer",
37
+ "unk_token": "<unk>",
38
+ "use_default_system_prompt": false
39
+ }