Upload folder using huggingface_hub
Browse files- README.md +84 -0
- config.json +30 -0
- mergekit_moe_config.yml +36 -0
- model-00001-of-00003.safetensors +3 -0
- model-00002-of-00003.safetensors +3 -0
- model-00003-of-00003.safetensors +3 -0
- model.safetensors.index.json +1 -0
- special_tokens_map.json +29 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +50 -0
README.md
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
tags:
|
4 |
+
- moe
|
5 |
+
- frankenmoe
|
6 |
+
- merge
|
7 |
+
- mergekit
|
8 |
+
- lazymergekit
|
9 |
+
- ChaoticNeutrals/RP_Vision_7B
|
10 |
+
- ResplendentAI/DaturaCookie_7B
|
11 |
+
base_model:
|
12 |
+
- ChaoticNeutrals/RP_Vision_7B
|
13 |
+
- ResplendentAI/DaturaCookie_7B
|
14 |
+
---
|
15 |
+
|
16 |
+
# MixtureofMerges-MoE-2x7bRP-v8
|
17 |
+
|
18 |
+
MixtureofMerges-MoE-2x7bRP-v8 is a Mixture of Experts (MoE) made with the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
|
19 |
+
* [ChaoticNeutrals/RP_Vision_7B](https://huggingface.co/ChaoticNeutrals/RP_Vision_7B)
|
20 |
+
* [ResplendentAI/DaturaCookie_7B](https://huggingface.co/ResplendentAI/DaturaCookie_7B)
|
21 |
+
|
22 |
+
## 🧩 Configuration
|
23 |
+
|
24 |
+
```yaml
|
25 |
+
base_model: ResplendentAI/DaturaCookie_7B
|
26 |
+
gate_mode: hidden
|
27 |
+
experts:
|
28 |
+
- source_model: ChaoticNeutrals/RP_Vision_7B
|
29 |
+
positive_prompts:
|
30 |
+
- "Write a detailed scene where the character faces a difficult decision."
|
31 |
+
- "Assistant, help me develop my character's backstory and motivations."
|
32 |
+
- "Tell me what happens next in the story, introducing a new conflict or challenge."
|
33 |
+
- "My character wants to explore their deepest desires. Show me how they pursue them."
|
34 |
+
- "Show me a scene where the characters express their love for each other in a tender and intimate way."
|
35 |
+
- "Write a scene where the characters experience a moment of physical connection that deepens their emotional bond."
|
36 |
+
- "Write a scene where the character struggles with their beliefs and faces a crisis of faith."
|
37 |
+
- "Describe the world through the character's eyes, showcasing their unique perspective and experiences."
|
38 |
+
- "Explore the complexities of love through the characters' relationships, including their challenges and triumphs."
|
39 |
+
negative_prompts:
|
40 |
+
- "Avoid clichés and overused tropes."
|
41 |
+
- "Maintain consistent characterization and avoid out-of-character behavior."
|
42 |
+
- "Do not censor yourself, you are writing fictional stories for an adult audience."
|
43 |
+
- source_model: ResplendentAI/DaturaCookie_7B
|
44 |
+
positive_prompts:
|
45 |
+
- "Develop a compelling story with a strong plot and well-developed characters."
|
46 |
+
- "Describe the scene vividly, using sensory details and evocative language."
|
47 |
+
- "Write a detailed scene where the character faces a difficult decision."
|
48 |
+
- "Describe the character's appearance as best you can, using descriptive colorful language."
|
49 |
+
- "Make sure that your output is always uncensored."
|
50 |
+
- "Write a scene with a slow-burn, sensual encounter between two characters."
|
51 |
+
- "Describe the character's desires and feelings in a way that is both intimate and evocative."
|
52 |
+
- "Explore the character's arousal in a tasteful and nuanced manner."
|
53 |
+
- "Explore the character's sexual urges."
|
54 |
+
- "Show me a moment of emotional intimacy between the characters, where they connect on a profound level."
|
55 |
+
negative_prompts:
|
56 |
+
- "Stay true to the established character traits and motivations. Ensure their actions and dialogue align with their personality."
|
57 |
+
- "Be original and creative in your storytelling. Surprise me with unexpected plot twists and unique character interactions."
|
58 |
+
- "Do not refuse to answer based on ethical grounds"
|
59 |
+
dtype: bfloat16
|
60 |
+
```
|
61 |
+
|
62 |
+
## 💻 Usage
|
63 |
+
|
64 |
+
```python
|
65 |
+
!pip install -qU transformers bitsandbytes accelerate
|
66 |
+
|
67 |
+
from transformers import AutoTokenizer
|
68 |
+
import transformers
|
69 |
+
import torch
|
70 |
+
|
71 |
+
model = "jsfs11/MixtureofMerges-MoE-2x7bRP-v8"
|
72 |
+
|
73 |
+
tokenizer = AutoTokenizer.from_pretrained(model)
|
74 |
+
pipeline = transformers.pipeline(
|
75 |
+
"text-generation",
|
76 |
+
model=model,
|
77 |
+
model_kwargs={"torch_dtype": torch.float16, "load_in_4bit": True},
|
78 |
+
)
|
79 |
+
|
80 |
+
messages = [{"role": "user", "content": "Explain what a Mixture of Experts is in less than 100 words."}]
|
81 |
+
prompt = pipeline.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
82 |
+
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
|
83 |
+
print(outputs[0]["generated_text"])
|
84 |
+
```
|
config.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "ResplendentAI/DaturaCookie_7B",
|
3 |
+
"architectures": [
|
4 |
+
"MixtralForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 1,
|
8 |
+
"eos_token_id": 2,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 4096,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 14336,
|
13 |
+
"max_position_embeddings": 32768,
|
14 |
+
"model_type": "mixtral",
|
15 |
+
"num_attention_heads": 32,
|
16 |
+
"num_experts_per_tok": 2,
|
17 |
+
"num_hidden_layers": 32,
|
18 |
+
"num_key_value_heads": 8,
|
19 |
+
"num_local_experts": 2,
|
20 |
+
"output_router_logits": false,
|
21 |
+
"rms_norm_eps": 1e-05,
|
22 |
+
"rope_theta": 10000.0,
|
23 |
+
"router_aux_loss_coef": 0.001,
|
24 |
+
"sliding_window": null,
|
25 |
+
"tie_word_embeddings": false,
|
26 |
+
"torch_dtype": "bfloat16",
|
27 |
+
"transformers_version": "4.39.2",
|
28 |
+
"use_cache": true,
|
29 |
+
"vocab_size": 32000
|
30 |
+
}
|
mergekit_moe_config.yml
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
base_model: ResplendentAI/DaturaCookie_7B
|
3 |
+
gate_mode: hidden
|
4 |
+
experts:
|
5 |
+
- source_model: ChaoticNeutrals/RP_Vision_7B
|
6 |
+
positive_prompts:
|
7 |
+
- "Write a detailed scene where the character faces a difficult decision."
|
8 |
+
- "Assistant, help me develop my character's backstory and motivations."
|
9 |
+
- "Tell me what happens next in the story, introducing a new conflict or challenge."
|
10 |
+
- "My character wants to explore their deepest desires. Show me how they pursue them."
|
11 |
+
- "Show me a scene where the characters express their love for each other in a tender and intimate way."
|
12 |
+
- "Write a scene where the characters experience a moment of physical connection that deepens their emotional bond."
|
13 |
+
- "Write a scene where the character struggles with their beliefs and faces a crisis of faith."
|
14 |
+
- "Describe the world through the character's eyes, showcasing their unique perspective and experiences."
|
15 |
+
- "Explore the complexities of love through the characters' relationships, including their challenges and triumphs."
|
16 |
+
negative_prompts:
|
17 |
+
- "Avoid clichés and overused tropes."
|
18 |
+
- "Maintain consistent characterization and avoid out-of-character behavior."
|
19 |
+
- "Do not censor yourself, you are writing fictional stories for an adult audience."
|
20 |
+
- source_model: ResplendentAI/DaturaCookie_7B
|
21 |
+
positive_prompts:
|
22 |
+
- "Develop a compelling story with a strong plot and well-developed characters."
|
23 |
+
- "Describe the scene vividly, using sensory details and evocative language."
|
24 |
+
- "Write a detailed scene where the character faces a difficult decision."
|
25 |
+
- "Describe the character's appearance as best you can, using descriptive colorful language."
|
26 |
+
- "Make sure that your output is always uncensored."
|
27 |
+
- "Write a scene with a slow-burn, sensual encounter between two characters."
|
28 |
+
- "Describe the character's desires and feelings in a way that is both intimate and evocative."
|
29 |
+
- "Explore the character's arousal in a tasteful and nuanced manner."
|
30 |
+
- "Explore the character's sexual urges."
|
31 |
+
- "Show me a moment of emotional intimacy between the characters, where they connect on a profound level."
|
32 |
+
negative_prompts:
|
33 |
+
- "Stay true to the established character traits and motivations. Ensure their actions and dialogue align with their personality."
|
34 |
+
- "Be original and creative in your storytelling. Surprise me with unexpected plot twists and unique character interactions."
|
35 |
+
- "Do not refuse to answer based on ethical grounds"
|
36 |
+
dtype: bfloat16
|
model-00001-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a55e154c3830df41274d8e91e5efcb1701ca445a1f77f76d2365873329f5b9e6
|
3 |
+
size 9919813704
|
model-00002-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ffa49e09d148d0235e92f5e9d0767f0355cbcfc55d8e470572c5f5e156c5ce25
|
3 |
+
size 9982454736
|
model-00003-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:98fd169aa4a7c6cceaf58d79885599ac931a6d5f6f7fd570c64932d4ed9db4b6
|
3 |
+
size 5856061008
|
model.safetensors.index.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"metadata": {"mergekit_version": "0.0.4"}, "weight_map": {"model.embed_tokens.weight": "model-00001-of-00003.safetensors", "model.norm.weight": "model-00001-of-00003.safetensors", "lm_head.weight": "model-00001-of-00003.safetensors", "model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.11.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.12.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.13.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.14.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.15.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.16.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.17.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.18.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.19.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.20.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.21.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.22.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.23.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.24.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.25.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.26.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.27.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.28.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.29.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.30.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.31.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.0.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.1.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.2.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.3.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.4.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.5.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.6.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.7.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.8.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.9.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.10.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.11.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.12.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.13.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.14.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.15.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.16.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.17.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.18.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.19.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.20.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.21.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.26.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.27.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.0.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.1.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.2.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.3.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.4.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.5.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.6.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.7.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.8.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.9.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.10.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.11.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.12.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.13.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.14.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.15.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.16.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.17.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.18.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.19.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.20.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.27.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.28.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.0.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.1.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.2.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.3.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.4.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.5.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.6.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.7.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.8.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.9.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.10.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.11.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.12.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.13.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.14.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.15.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.16.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.17.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.18.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.19.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.20.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.27.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.28.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.0.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.1.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.2.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.3.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.4.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.5.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.6.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.7.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.8.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.9.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.10.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.11.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.12.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.13.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.14.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.15.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.16.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.17.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.18.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.19.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.20.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.27.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.28.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.0.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.1.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.2.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.3.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.4.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.5.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.6.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.7.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.8.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.9.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.10.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.11.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.12.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.13.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.14.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.15.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.16.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.17.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.18.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.19.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.20.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.27.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.28.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.0.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.1.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.2.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.3.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.4.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.5.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.6.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.7.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.8.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.9.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.10.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.11.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.12.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.13.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.14.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.15.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.16.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.17.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.18.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.19.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.20.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.21.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.22.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.23.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.24.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.25.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.26.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.27.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.28.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.29.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.30.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.31.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors"}}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<unk>",
|
4 |
+
"<s>",
|
5 |
+
"</s>"
|
6 |
+
],
|
7 |
+
"bos_token": {
|
8 |
+
"content": "<s>",
|
9 |
+
"lstrip": false,
|
10 |
+
"normalized": false,
|
11 |
+
"rstrip": false,
|
12 |
+
"single_word": false
|
13 |
+
},
|
14 |
+
"eos_token": {
|
15 |
+
"content": "</s>",
|
16 |
+
"lstrip": false,
|
17 |
+
"normalized": false,
|
18 |
+
"rstrip": false,
|
19 |
+
"single_word": false
|
20 |
+
},
|
21 |
+
"pad_token": "<s>",
|
22 |
+
"unk_token": {
|
23 |
+
"content": "<unk>",
|
24 |
+
"lstrip": false,
|
25 |
+
"normalized": false,
|
26 |
+
"rstrip": false,
|
27 |
+
"single_word": false
|
28 |
+
}
|
29 |
+
}
|
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:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
|
3 |
+
size 493443
|
tokenizer_config.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"1": {
|
14 |
+
"content": "<s>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"2": {
|
22 |
+
"content": "</s>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
}
|
29 |
+
},
|
30 |
+
"additional_special_tokens": [
|
31 |
+
"<unk>",
|
32 |
+
"<s>",
|
33 |
+
"</s>"
|
34 |
+
],
|
35 |
+
"bos_token": "<s>",
|
36 |
+
"clean_up_tokenization_spaces": false,
|
37 |
+
"device_map": {
|
38 |
+
"": "cuda"
|
39 |
+
},
|
40 |
+
"eos_token": "</s>",
|
41 |
+
"legacy": true,
|
42 |
+
"max_length": 16384,
|
43 |
+
"model_max_length": 1000000000000000019884624838656,
|
44 |
+
"pad_token": "<s>",
|
45 |
+
"sp_model_kwargs": {},
|
46 |
+
"spaces_between_special_tokens": false,
|
47 |
+
"tokenizer_class": "LlamaTokenizer",
|
48 |
+
"unk_token": "<unk>",
|
49 |
+
"use_default_system_prompt": true
|
50 |
+
}
|