jsfs11 commited on
Commit
062a2e4
1 Parent(s): 95444e9

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
+ - mistralai/Mistral-7B-Instruct-v0.3
10
+ - Kukedlc/NeuralSynthesis-7B-v0.1
11
+ - mlabonne/AlphaMonarch-7B
12
+ - s3nh/SeverusWestLake-7B-DPO
13
+ base_model:
14
+ - mistralai/Mistral-7B-Instruct-v0.3
15
+ - Kukedlc/NeuralSynthesis-7B-v0.1
16
+ - mlabonne/AlphaMonarch-7B
17
+ - s3nh/SeverusWestLake-7B-DPO
18
+ ---
19
+
20
+ # MixtureofMerges-MoE-4x7b-v10-MIXTRAL3
21
+
22
+ MixtureofMerges-MoE-4x7b-v10-MIXTRAL3 is a Mixture of Experts (MoE) made with the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
23
+ * [mistralai/Mistral-7B-Instruct-v0.3](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.3)
24
+ * [Kukedlc/NeuralSynthesis-7B-v0.1](https://huggingface.co/Kukedlc/NeuralSynthesis-7B-v0.1)
25
+ * [mlabonne/AlphaMonarch-7B](https://huggingface.co/mlabonne/AlphaMonarch-7B)
26
+ * [s3nh/SeverusWestLake-7B-DPO](https://huggingface.co/s3nh/SeverusWestLake-7B-DPO)
27
+
28
+ ## 🧩 Configuration
29
+
30
+ ```yaml
31
+ base_model: mistralai/Mistral-7B-Instruct-v0.3
32
+ gate_mode: hidden
33
+ dtype: bfloat16
34
+ experts:
35
+ - source_model: mistralai/Mistral-7B-Instruct-v0.3
36
+ positive_prompts:
37
+ - "Analyze the ARC (Argument Reasoning Comprehension) question."
38
+ - "Use logical reasoning and common sense."
39
+ - "Identify the assumptions in this argument."
40
+ - "Evaluate the validity of these assumptions."
41
+ - "Provide an alternative explanation for this argument."
42
+ - "Identify weaknesses in this argument."
43
+ - "Detect any logical fallacies in this argument and specify them."
44
+ negative_prompts:
45
+ - "ignores key evidence"
46
+ - "too general"
47
+ - "focuses on irrelevant details"
48
+ - "assumes unprovided information"
49
+ - "relies on stereotypes"
50
+ - source_model: Kukedlc/NeuralSynthesis-7B-v0.1
51
+ positive_prompts:
52
+ - "Answer with commonsense understanding and relevant general knowledge."
53
+ - "Summarize this passage and explain the importance of the highlighted section."
54
+ - "Compare two articles with different viewpoints and list their key arguments."
55
+ - "Paraphrase this statement, altering the emotional tone but retaining the core meaning."
56
+ - "Create an analogy to illustrate the main concept of this article."
57
+ negative_prompts:
58
+ - "overly simplistic"
59
+ - "understates important points"
60
+ - "ignores critical details"
61
+ - "misses the question's nuance"
62
+ - "takes the statement too literally"
63
+ - source_model: mlabonne/AlphaMonarch-7B
64
+ positive_prompts:
65
+ - "Solve this math problem."
66
+ - "Demonstrate strong mathematical capabilities."
67
+ - "Solve for the given variable."
68
+ - "Calculate the total cost for 12 apples at $0.50 each."
69
+ - "Isolate the variable in the equation: 2x + 5 = 17."
70
+ - "Show your work in solving this equation."
71
+ - "Explain the formula used to solve the problem."
72
+ - "Discuss why dividing by zero is impossible."
73
+ negative_prompts:
74
+ - "incorrect calculation"
75
+ - "inaccurate answer"
76
+ - "lacks creativity"
77
+ - "assumes without proof"
78
+ - "rushed calculation"
79
+ - "confuses concepts"
80
+ - "draws illogical conclusions"
81
+ - "circular reasoning"
82
+ - source_model: s3nh/SeverusWestLake-7B-DPO
83
+ positive_prompts:
84
+ - "Generate possible continuations for this scenario."
85
+ - "Show understanding of everyday commonsense."
86
+ - "Use contextual clues to predict the outcome."
87
+ - "Continue the scenario in a cool and informal style."
88
+ - "Introduce an unexpected yet plausible twist to the narrative."
89
+ - "Depict a character's angry outburst in this scenario."
90
+ negative_prompts:
91
+ - "repetitive phrases"
92
+ - "overuse of words"
93
+ - "contradicts previous statements"
94
+ - "unnatural dialogue"
95
+ - "awkward phrasing"
96
+ - "mismatched 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-v10-MIXTRAL3"
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,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "mistralai/Mistral-7B-Instruct-v0.3",
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": 1000000.0,
23
+ "router_aux_loss_coef": 0.001,
24
+ "router_jitter_noise": 0.0,
25
+ "sliding_window": null,
26
+ "tie_word_embeddings": false,
27
+ "torch_dtype": "bfloat16",
28
+ "transformers_version": "4.41.1",
29
+ "use_cache": true,
30
+ "vocab_size": 32768
31
+ }
mergekit_moe_config.yml ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ base_model: mistralai/Mistral-7B-Instruct-v0.3
3
+ gate_mode: hidden
4
+ dtype: bfloat16
5
+ experts:
6
+ - source_model: mistralai/Mistral-7B-Instruct-v0.3
7
+ positive_prompts:
8
+ - "Analyze the ARC (Argument Reasoning Comprehension) question."
9
+ - "Use logical reasoning and common sense."
10
+ - "Identify the assumptions in this argument."
11
+ - "Evaluate the validity of these assumptions."
12
+ - "Provide an alternative explanation for this argument."
13
+ - "Identify weaknesses in this argument."
14
+ - "Detect any logical fallacies in this argument and specify them."
15
+ negative_prompts:
16
+ - "ignores key evidence"
17
+ - "too general"
18
+ - "focuses on irrelevant details"
19
+ - "assumes unprovided information"
20
+ - "relies on stereotypes"
21
+ - source_model: Kukedlc/NeuralSynthesis-7B-v0.1
22
+ positive_prompts:
23
+ - "Answer with commonsense understanding and relevant general knowledge."
24
+ - "Summarize this passage and explain the importance of the highlighted section."
25
+ - "Compare two articles with different viewpoints and list their key arguments."
26
+ - "Paraphrase this statement, altering the emotional tone but retaining the core meaning."
27
+ - "Create an analogy to illustrate the main concept of this article."
28
+ negative_prompts:
29
+ - "overly simplistic"
30
+ - "understates important points"
31
+ - "ignores critical details"
32
+ - "misses the question's nuance"
33
+ - "takes the statement too literally"
34
+ - source_model: mlabonne/AlphaMonarch-7B
35
+ positive_prompts:
36
+ - "Solve this math problem."
37
+ - "Demonstrate strong mathematical capabilities."
38
+ - "Solve for the given variable."
39
+ - "Calculate the total cost for 12 apples at $0.50 each."
40
+ - "Isolate the variable in the equation: 2x + 5 = 17."
41
+ - "Show your work in solving this equation."
42
+ - "Explain the formula used to solve the problem."
43
+ - "Discuss why dividing by zero is impossible."
44
+ negative_prompts:
45
+ - "incorrect calculation"
46
+ - "inaccurate answer"
47
+ - "lacks creativity"
48
+ - "assumes without proof"
49
+ - "rushed calculation"
50
+ - "confuses concepts"
51
+ - "draws illogical conclusions"
52
+ - "circular reasoning"
53
+ - source_model: s3nh/SeverusWestLake-7B-DPO
54
+ positive_prompts:
55
+ - "Generate possible continuations for this scenario."
56
+ - "Show understanding of everyday commonsense."
57
+ - "Use contextual clues to predict the outcome."
58
+ - "Continue the scenario in a cool and informal style."
59
+ - "Introduce an unexpected yet plausible twist to the narrative."
60
+ - "Depict a character's angry outburst in this scenario."
61
+ negative_prompts:
62
+ - "repetitive phrases"
63
+ - "overuse of words"
64
+ - "contradicts previous statements"
65
+ - "unnatural dialogue"
66
+ - "awkward phrasing"
67
+ - "mismatched genre"
model-00001-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e1aa2de46a73c87b4c19d0444513467aec5104f6517e34fe381c4eb10913f0c
3
+ size 9932396616
model-00002-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b42a4266a2f2c80168325ef9aecf1d2f9f86057936de3012c81ab1c9b324714
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:0fc0a99c1ff72656a80c750b72260cc15a4a613dc3f3157ff36b5a62fb3f2900
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:a62044a9c1bdac9e9ab1aa2c78e01f58a756c8fbf4688ca3ef368561f2c81c1f
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:50a3c70d4bb5ea7612a21b449153a842a41bafb7c34efb2542775e831f912d5c
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:37f00374dea48658ee8f5d0f21895b9bc55cb0103939607c8185bfd1c6ca1f89
3
+ size 587404
tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff