jsfs11 commited on
Commit
4d233a3
1 Parent(s): 019d470

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - moe
5
+ - frankenmoe
6
+ - merge
7
+ - mergekit
8
+ - lazymergekit
9
+ - flemmingmiguel/MBX-7B-v3
10
+ - Kukedlc/NeuTrixOmniBe-7B-model-remix
11
+ - PetroGPT/WestSeverus-7B-DPO
12
+ - vanillaOVO/supermario_v4
13
+ base_model:
14
+ - flemmingmiguel/MBX-7B-v3
15
+ - Kukedlc/NeuTrixOmniBe-7B-model-remix
16
+ - PetroGPT/WestSeverus-7B-DPO
17
+ - vanillaOVO/supermario_v4
18
+ ---
19
+
20
+ # MixtureofMerges-MoE-4x7b-v4
21
+
22
+ MixtureofMerges-MoE-4x7b-v4 is a Mixure of Experts (MoE) made with the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
23
+ * [flemmingmiguel/MBX-7B-v3](https://huggingface.co/flemmingmiguel/MBX-7B-v3)
24
+ * [Kukedlc/NeuTrixOmniBe-7B-model-remix](https://huggingface.co/Kukedlc/NeuTrixOmniBe-7B-model-remix)
25
+ * [PetroGPT/WestSeverus-7B-DPO](https://huggingface.co/PetroGPT/WestSeverus-7B-DPO)
26
+ * [vanillaOVO/supermario_v4](https://huggingface.co/vanillaOVO/supermario_v4)
27
+
28
+ ## 🧩 Configuration
29
+
30
+ ```yaml
31
+ base_model: Kukedlc/NeuTrixOmniBe-7B-model-remix
32
+ gate_mode: hidden
33
+ dtype: bfloat16
34
+ experts:
35
+ - source_model: flemmingmiguel/MBX-7B-v3
36
+ positive_prompts:
37
+ - "Answer this question from the ARC (Argument Reasoning Comprehension)."
38
+ - "Use common sense and logical reasoning skills."
39
+ - "What assumptions does this argument rely on?"
40
+ - "Are these assumptions valid? Explain."
41
+ - "Could this be explained in a different way? Provide an alternative explanation."
42
+ - "Identify any weaknesses in this argument."
43
+ - "Does this argument contain any logical fallacies? If so, which ones?"
44
+ negative_prompts:
45
+ - "misses key evidence"
46
+ - "overly general"
47
+ - "focuses on irrelevant details"
48
+ - "assumes information not provided"
49
+ - "relies on stereotypes"
50
+ - source_model: Kukedlc/NeuTrixOmniBe-7B-model-remix
51
+ positive_prompts:
52
+ - "Answer this question, demonstrating commonsense understanding and using any relevant general knowledge you may have."
53
+ - "Provide a concise summary of this passage, then explain why the highlighted section is essential to the main idea."
54
+ - "Read these two brief articles presenting different viewpoints on the same topic. List their key arguments and highlight where they disagree."
55
+ - "Paraphrase this statement, changing the emotional tone but keeping the core meaning intact. Example: Rephrase a worried statement in a humorous way"
56
+ - "Create a short analogy that helps illustrate the main concept of this article."
57
+ negative_prompts:
58
+ - "sounds too basic"
59
+ - "understated"
60
+ - "dismisses important details"
61
+ - "avoids the question's nuance"
62
+ - "takes this statement too literally"
63
+ - source_model: PetroGPT/WestSeverus-7B-DPO
64
+ positive_prompts:
65
+ - "Calculate the answer to this math problem"
66
+ - "My mathematical capabilities are strong, allowing me to handle complex mathematical queries"
67
+ - "solve for"
68
+ - "A store sells apples at $0.50 each. If Emily buys 12 apples, how much does she need to pay?"
69
+ - "Isolate x in the following equation: 2x + 5 = 17"
70
+ - "Solve this equation and show your working."
71
+ - "Explain why you used this formula to solve the problem."
72
+ - "Attempt to divide this number by zero. Explain why this cannot be done."
73
+ negative_prompts:
74
+ - "incorrect"
75
+ - "inaccurate"
76
+ - "creativity"
77
+ - "assumed without proof"
78
+ - "rushed calculation"
79
+ - "confuses mathematical concepts"
80
+ - "draws illogical conclusions"
81
+ - "circular reasoning"
82
+ - source_model: vanillaOVO/supermario_v4
83
+ positive_prompts:
84
+ - "Generate a few possible continuations to this scenario."
85
+ - "Demonstrate understanding of everyday commonsense in your response."
86
+ - "Use contextual clues to determine the most likely outcome."
87
+ - "Continue this scenario, but make the writing style sound archaic and overly formal."
88
+ - "This narrative is predictable. Can you introduce an unexpected yet plausible twist?"
89
+ - "The character is angry. Continue this scenario showcasing a furious outburst."
90
+ negative_prompts:
91
+ - "repetitive phrases"
92
+ - "overuse of the same words"
93
+ - "contradicts earlier statements - breaks the internal logic of the scenario"
94
+ - "out of character dialogue"
95
+ - "awkward phrasing - sounds unnatural"
96
+ - "doesn't match the given genre"
97
+ ```
98
+
99
+ ## 💻 Usage
100
+
101
+ ```python
102
+ !pip install -qU transformers bitsandbytes accelerate
103
+
104
+ from transformers import AutoTokenizer
105
+ import transformers
106
+ import torch
107
+
108
+ model = "jsfs11/MixtureofMerges-MoE-4x7b-v4"
109
+
110
+ tokenizer = AutoTokenizer.from_pretrained(model)
111
+ pipeline = transformers.pipeline(
112
+ "text-generation",
113
+ model=model,
114
+ model_kwargs={"torch_dtype": torch.float16, "load_in_4bit": True},
115
+ )
116
+
117
+ messages = [{"role": "user", "content": "Explain what a Mixture of Experts is in less than 100 words."}]
118
+ prompt = pipeline.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
119
+ outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
120
+ print(outputs[0]["generated_text"])
121
+ ```
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Kukedlc/NeuTrixOmniBe-7B-model-remix",
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": 4,
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.37.2",
28
+ "use_cache": true,
29
+ "vocab_size": 32000
30
+ }
mergekit_moe_config.yml ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ base_model: Kukedlc/NeuTrixOmniBe-7B-model-remix
3
+ gate_mode: hidden
4
+ dtype: bfloat16
5
+ experts:
6
+ - source_model: flemmingmiguel/MBX-7B-v3
7
+ positive_prompts:
8
+ - "Answer this question from the ARC (Argument Reasoning Comprehension)."
9
+ - "Use common sense and logical reasoning skills."
10
+ - "What assumptions does this argument rely on?"
11
+ - "Are these assumptions valid? Explain."
12
+ - "Could this be explained in a different way? Provide an alternative explanation."
13
+ - "Identify any weaknesses in this argument."
14
+ - "Does this argument contain any logical fallacies? If so, which ones?"
15
+ negative_prompts:
16
+ - "misses key evidence"
17
+ - "overly general"
18
+ - "focuses on irrelevant details"
19
+ - "assumes information not provided"
20
+ - "relies on stereotypes"
21
+ - source_model: Kukedlc/NeuTrixOmniBe-7B-model-remix
22
+ positive_prompts:
23
+ - "Answer this question, demonstrating commonsense understanding and using any relevant general knowledge you may have."
24
+ - "Provide a concise summary of this passage, then explain why the highlighted section is essential to the main idea."
25
+ - "Read these two brief articles presenting different viewpoints on the same topic. List their key arguments and highlight where they disagree."
26
+ - "Paraphrase this statement, changing the emotional tone but keeping the core meaning intact. Example: Rephrase a worried statement in a humorous way"
27
+ - "Create a short analogy that helps illustrate the main concept of this article."
28
+ negative_prompts:
29
+ - "sounds too basic"
30
+ - "understated"
31
+ - "dismisses important details"
32
+ - "avoids the question's nuance"
33
+ - "takes this statement too literally"
34
+ - source_model: PetroGPT/WestSeverus-7B-DPO
35
+ positive_prompts:
36
+ - "Calculate the answer to this math problem"
37
+ - "My mathematical capabilities are strong, allowing me to handle complex mathematical queries"
38
+ - "solve for"
39
+ - "A store sells apples at $0.50 each. If Emily buys 12 apples, how much does she need to pay?"
40
+ - "Isolate x in the following equation: 2x + 5 = 17"
41
+ - "Solve this equation and show your working."
42
+ - "Explain why you used this formula to solve the problem."
43
+ - "Attempt to divide this number by zero. Explain why this cannot be done."
44
+ negative_prompts:
45
+ - "incorrect"
46
+ - "inaccurate"
47
+ - "creativity"
48
+ - "assumed without proof"
49
+ - "rushed calculation"
50
+ - "confuses mathematical concepts"
51
+ - "draws illogical conclusions"
52
+ - "circular reasoning"
53
+ - source_model: vanillaOVO/supermario_v4
54
+ positive_prompts:
55
+ - "Generate a few possible continuations to this scenario."
56
+ - "Demonstrate understanding of everyday commonsense in your response."
57
+ - "Use contextual clues to determine the most likely outcome."
58
+ - "Continue this scenario, but make the writing style sound archaic and overly formal."
59
+ - "This narrative is predictable. Can you introduce an unexpected yet plausible twist?"
60
+ - "The character is angry. Continue this scenario showcasing a furious outburst."
61
+ negative_prompts:
62
+ - "repetitive phrases"
63
+ - "overuse of the same words"
64
+ - "contradicts earlier statements - breaks the internal logic of the scenario"
65
+ - "out of character dialogue"
66
+ - "awkward phrasing - sounds unnatural"
67
+ - "doesn't match the given genre"
model-00001-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49b8f7325e638897b80498deac6d2e94905e0e570f1c4a0ab699052eb90906c4
3
+ size 9919813704
model-00002-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21dcb5f925a8ff08df6a67b67c64822fa3f622375180c38106c675b261892dd4
3
+ size 9982454720
model-00003-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26c60b3c365958dea89e9d262eb4ff9cc3b8e271c156edb633a7d39d1150e7c8
3
+ size 9982454752
model-00004-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:790922cda3c60e27180bb51ddc8430b110c1a8312f8537aaedb8c9c24d68b162
3
+ size 9982454720
model-00005-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ac5585d462b27c0a81acf235714097484d4abad1c55b04e95ff5fdcb2c2bc01
3
+ size 8440279464
model.safetensors.index.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"metadata": {"mergekit_version": "0.0.4"}, "weight_map": {"model.embed_tokens.weight": "model-00001-of-00005.safetensors", "model.norm.weight": "model-00001-of-00005.safetensors", "lm_head.weight": "model-00001-of-00005.safetensors", "model.layers.0.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.1.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.2.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.3.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.4.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.5.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.6.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.7.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.8.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.9.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.10.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.11.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.12.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.13.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.14.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.15.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.16.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.17.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.18.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.19.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.20.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.21.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.22.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.23.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.24.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.25.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.26.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.27.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.28.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.29.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.30.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.31.input_layernorm.weight": "model-00001-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.2.w2.weight": "model-00004-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.3.w2.weight": "model-00004-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.0.w2.weight": "model-00004-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.1.w2.weight": "model-00004-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.2.w2.weight": "model-00004-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.3.w2.weight": "model-00004-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.0.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.1.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.2.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.3.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.4.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.5.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.6.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.7.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.8.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.9.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.10.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.11.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.12.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.13.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.14.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.15.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.16.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.17.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.18.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00005.safetensors", "model.layers.19.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.20.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.21.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.22.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.23.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.24.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.25.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.26.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.27.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.28.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.29.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.30.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.0.w1.weight": "model-00005-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.1.w1.weight": "model-00005-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.2.w1.weight": "model-00005-of-00005.safetensors", "model.layers.31.block_sparse_moe.experts.3.w1.weight": "model-00005-of-00005.safetensors", "model.layers.0.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.1.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.2.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.3.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.4.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.5.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.6.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.7.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.8.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.9.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.10.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.11.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.12.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.13.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.14.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.15.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.16.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.17.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.18.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.19.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.20.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.21.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.22.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.23.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.24.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.25.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.26.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.27.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.28.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.29.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.30.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.31.post_attention_layernorm.weight": "model-00005-of-00005.safetensors", "model.layers.0.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.1.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.2.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.3.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.4.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.5.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.6.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.7.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.8.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.9.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.10.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.11.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.12.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.13.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.14.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.15.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.16.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.17.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.18.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.19.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.20.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.21.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.22.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.23.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.24.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.25.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.26.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.27.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.28.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.29.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.30.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.31.self_attn.q_proj.weight": "model-00005-of-00005.safetensors", "model.layers.0.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.1.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.2.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.3.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.4.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.5.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.6.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.7.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.8.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.9.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.10.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.11.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.12.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.13.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.14.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.15.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.16.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.17.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.18.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.19.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.20.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.21.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.22.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.23.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.24.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.25.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.26.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.27.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.28.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.29.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.30.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.31.self_attn.k_proj.weight": "model-00005-of-00005.safetensors", "model.layers.0.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.1.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.2.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.3.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.4.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.5.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.6.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.7.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.8.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.9.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.10.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.11.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.12.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.13.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.14.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.15.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.16.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.17.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.18.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.19.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.20.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.21.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.22.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.23.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.24.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.25.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.26.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.27.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.28.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.29.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.30.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.31.self_attn.v_proj.weight": "model-00005-of-00005.safetensors", "model.layers.0.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.1.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.2.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.3.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.4.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.5.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.6.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.7.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.8.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.9.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.10.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.11.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.12.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.13.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.14.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.15.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.16.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.17.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.18.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.19.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.20.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.21.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.22.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.23.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.24.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.25.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.26.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.27.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.28.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.29.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.30.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.31.self_attn.o_proj.weight": "model-00005-of-00005.safetensors", "model.layers.0.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.1.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.2.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.3.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.4.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.5.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.6.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.7.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.8.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.9.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.10.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.11.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.12.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.13.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.14.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.15.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.16.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.17.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.18.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.19.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.20.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.21.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.22.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.23.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.24.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.25.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.26.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.27.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.28.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.29.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.30.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors", "model.layers.31.block_sparse_moe.gate.weight": "model-00005-of-00005.safetensors"}}
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "<s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
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,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "bos_token": "<s>",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "legacy": true,
35
+ "model_max_length": 1000000000000000019884624838656,
36
+ "pad_token": "<s>",
37
+ "sp_model_kwargs": {},
38
+ "spaces_between_special_tokens": false,
39
+ "tokenizer_class": "LlamaTokenizer",
40
+ "unk_token": "<unk>",
41
+ "use_default_system_prompt": false
42
+ }