satyamt commited on
Commit
0898e68
1 Parent(s): a0ca84b

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - moe
5
+ - merge
6
+ - epfl-llm/meditron-7b
7
+ - medalpaca/medalpaca-7b
8
+ - chaoyi-wu/PMC_LLAMA_7B_10_epoch
9
+ - allenai/tulu-2-dpo-7b
10
+ ---
11
+
12
+ # Mediquad-tulu-20B
13
+
14
+ Mediquad-tulu-20B is a Mixure of Experts (MoE) made with the following models:
15
+ * [epfl-llm/meditron-7b](https://huggingface.co/epfl-llm/meditron-7b)
16
+ * [medalpaca/medalpaca-7b](https://huggingface.co/medalpaca/medalpaca-7b)
17
+ * [chaoyi-wu/PMC_LLAMA_7B_10_epoch](https://huggingface.co/chaoyi-wu/PMC_LLAMA_7B_10_epoch)
18
+ * [allenai/tulu-2-dpo-7b](https://huggingface.co/allenai/tulu-2-dpo-7b)
19
+
20
+ ## 🧩 Configuration
21
+
22
+ ```yamlbase_model: allenai/tulu-2-dpo-7b
23
+ gate_mode: hidden
24
+ dtype: bfloat16
25
+ experts:
26
+ - source_model: epfl-llm/meditron-7b
27
+ positive_prompts:
28
+ - "What are the latest guidelines for managing type 2 diabetes?"
29
+ - "Best practices for post-operative care in cardiac surgery are"
30
+ negative_prompts:
31
+ - "What are the environmental impacts of deforestation?"
32
+ - "The recent advancements in artificial intelligence have led to developments in"
33
+ - source_model: medalpaca/medalpaca-7b
34
+ positive_prompts:
35
+ - "When discussing diabetes management, the key factors to consider are"
36
+ - "The differential diagnosis for a headache with visual aura could include"
37
+ negative_prompts:
38
+ - "Recommend a good recipe for a vegetarian lasagna."
39
+ - "The fundamental concepts in economics include ideas like supply and demand, which explain"
40
+ - source_model: chaoyi-wu/PMC_LLAMA_7B_10_epoch
41
+ positive_prompts:
42
+ - "How would you explain the importance of hypertension management to a patient?"
43
+ - "Describe the recovery process after knee replacement surgery in layman's terms."
44
+ negative_prompts:
45
+ - "Recommend a good recipe for a vegetarian lasagna."
46
+ - "The recent advancements in artificial intelligence have led to developments in"
47
+ - "The fundamental concepts in economics include ideas like supply and demand, which explain"
48
+ - source_model: allenai/tulu-2-dpo-7b
49
+ positive_prompts:
50
+ - "Here is a funny joke for you -"
51
+ - "When considering the ethical implications of artificial intelligence, one must take into account"
52
+ - "In strategic planning, a company must analyze its strengths and weaknesses, which involves"
53
+ - "Understanding consumer behavior in marketing requires considering factors like"
54
+ - "The debate on climate change solutions hinges on arguments that"
55
+ negative_prompts:
56
+ - "In discussing dietary adjustments for managing hypertension, it's crucial to emphasize"
57
+ - "For early detection of melanoma, dermatologists recommend that patients regularly check their skin for"
58
+ - "Explaining the importance of vaccination, a healthcare professional should highlight"
59
+
60
+ ```
61
+
62
+ ## 💻 Usage
63
+
64
+ ```python
65
+ !pip install -qU transformers bitsandbytes accelerate
66
+
67
+ from transformers import AutoTokenizer
68
+ import transformers
69
+ import torch
70
+
71
+ model = "Technoculture/Mediquad-tulu-20B"
72
+
73
+ tokenizer = AutoTokenizer.from_pretrained(model)
74
+ pipeline = transformers.pipeline(
75
+ "text-generation",
76
+ model=model,
77
+ model_kwargs={"torch_dtype": torch.float16, "load_in_4bit": True},
78
+ )
79
+
80
+ messages = [{"role": "user", "content": "Explain what a Mixture of Experts is in less than 100 words."}]
81
+ prompt = pipeline.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
82
+ outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
83
+ print(outputs[0]["generated_text"])
84
+ ```
added_tokens.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "<|im_end|>": 32002,
3
+ "<|im_start|>": 32001,
4
+ "[PAD]": 32000
5
+ }
config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "allenai/tulu-2-dpo-7b",
3
+ "architectures": [
4
+ "MixtralForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 1,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 4096,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 11008,
14
+ "max_position_embeddings": 8192,
15
+ "model_type": "mixtral",
16
+ "num_attention_heads": 32,
17
+ "num_experts_per_tok": 2,
18
+ "num_hidden_layers": 32,
19
+ "num_key_value_heads": 32,
20
+ "num_local_experts": 4,
21
+ "output_router_logits": false,
22
+ "pretraining_tp": 1,
23
+ "rms_norm_eps": 1e-06,
24
+ "rope_scaling": null,
25
+ "rope_theta": 10000.0,
26
+ "router_aux_loss_coef": 0.001,
27
+ "sliding_window": null,
28
+ "tie_word_embeddings": false,
29
+ "torch_dtype": "bfloat16",
30
+ "transformers_version": "4.37.0.dev0",
31
+ "use_cache": true,
32
+ "vocab_size": 32000
33
+ }
mergekit_moe_config.yml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ base_model: allenai/tulu-2-dpo-7b
2
+ gate_mode: hidden
3
+ dtype: bfloat16
4
+ experts:
5
+ - source_model: epfl-llm/meditron-7b
6
+ positive_prompts:
7
+ - "What are the latest guidelines for managing type 2 diabetes?"
8
+ - "Best practices for post-operative care in cardiac surgery are"
9
+ negative_prompts:
10
+ - "What are the environmental impacts of deforestation?"
11
+ - "The recent advancements in artificial intelligence have led to developments in"
12
+ - source_model: medalpaca/medalpaca-7b
13
+ positive_prompts:
14
+ - "When discussing diabetes management, the key factors to consider are"
15
+ - "The differential diagnosis for a headache with visual aura could include"
16
+ negative_prompts:
17
+ - "Recommend a good recipe for a vegetarian lasagna."
18
+ - "The fundamental concepts in economics include ideas like supply and demand, which explain"
19
+ - source_model: chaoyi-wu/PMC_LLAMA_7B_10_epoch
20
+ positive_prompts:
21
+ - "How would you explain the importance of hypertension management to a patient?"
22
+ - "Describe the recovery process after knee replacement surgery in layman's terms."
23
+ negative_prompts:
24
+ - "Recommend a good recipe for a vegetarian lasagna."
25
+ - "The recent advancements in artificial intelligence have led to developments in"
26
+ - "The fundamental concepts in economics include ideas like supply and demand, which explain"
27
+ - source_model: allenai/tulu-2-dpo-7b
28
+ positive_prompts:
29
+ - "Here is a funny joke for you -"
30
+ - "When considering the ethical implications of artificial intelligence, one must take into account"
31
+ - "In strategic planning, a company must analyze its strengths and weaknesses, which involves"
32
+ - "Understanding consumer behavior in marketing requires considering factors like"
33
+ - "The debate on climate change solutions hinges on arguments that"
34
+ negative_prompts:
35
+ - "In discussing dietary adjustments for managing hypertension, it's crucial to emphasize"
36
+ - "For early detection of melanoma, dermatologists recommend that patients regularly check their skin for"
37
+ - "Explaining the importance of vaccination, a healthcare professional should highlight"
38
+
model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:555cecf7c5e15b26eb58201ab1c5a19199e02d94f76c8f6598579cb8f5ce3a9d
3
+ size 9993217320
model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f18d7637c820216fd3de09f8e6d30c37481aa0dbb9c6fdaba8e9475ffce9c12
3
+ size 9919543448
model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f897f9f19d11ca52f5e7eca2bae0c3212e4b8a9c309b150bc2f3b0e0ffb84f1
3
+ size 9919543448
model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f5270860c26b1d7bbb1f7f8b0a449dd68d1e6a7eda355b7855eeed4d6c1fee1
3
+ size 9616783112
model.safetensors.index.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"metadata": {"mergekit_version": "0.0.3.2"}, "weight_map": {"model.embed_tokens.weight": "model-00001-of-00004.safetensors", "model.norm.weight": "model-00001-of-00004.safetensors", "lm_head.weight": "model-00001-of-00004.safetensors", "model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.8.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.9.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.10.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.11.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.12.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.13.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.14.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.15.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.16.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.17.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.18.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.19.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.20.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.21.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.22.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.23.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.24.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.25.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.26.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.27.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.28.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.29.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.30.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.31.input_layernorm.weight": "model-00001-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.0.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.1.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.2.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.3.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.4.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.5.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.6.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.7.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.8.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.9.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.10.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.11.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.12.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.13.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.14.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.15.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors", "model.layers.16.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.17.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.18.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.19.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.20.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.21.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.22.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.23.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.24.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.25.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.26.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.27.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.28.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.29.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.30.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors", "model.layers.31.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors", "model.layers.0.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.1.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.2.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.3.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.4.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.5.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.6.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.7.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.8.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.9.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.10.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.11.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.12.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.13.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.14.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.15.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.16.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.17.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.18.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.19.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.20.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.21.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.22.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.23.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.24.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.25.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.26.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.27.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.28.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.29.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.30.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.31.post_attention_layernorm.weight": "model-00004-of-00004.safetensors", "model.layers.0.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.1.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.2.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.3.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.4.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.5.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.6.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.7.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.8.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.9.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.10.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.11.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.12.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.13.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.14.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.15.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.16.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.17.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.18.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.19.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.20.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.21.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.22.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.23.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.24.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.25.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.26.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.27.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.28.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.29.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.30.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.31.self_attn.q_proj.weight": "model-00004-of-00004.safetensors", "model.layers.0.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.1.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.2.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.3.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.4.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.5.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.6.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.7.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.8.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.9.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.10.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.11.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.12.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.13.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.14.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.15.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.16.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.17.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.18.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.19.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.20.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.21.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.22.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.23.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.24.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.25.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.26.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.27.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.28.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.29.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.30.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.31.self_attn.k_proj.weight": "model-00004-of-00004.safetensors", "model.layers.0.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.1.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.2.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.3.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.4.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.5.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.6.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.7.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.8.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.9.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.10.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.11.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.12.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.13.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.14.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.15.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.16.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.17.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.18.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.19.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.20.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.21.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.22.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.23.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.24.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.25.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.26.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.27.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.28.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.29.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.30.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.31.self_attn.v_proj.weight": "model-00004-of-00004.safetensors", "model.layers.0.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.1.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.2.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.3.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.4.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.5.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.6.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.7.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.8.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.9.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.10.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.11.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.12.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.13.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.14.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.15.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.16.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.17.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.18.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.19.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.20.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.21.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.22.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.23.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.24.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.25.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.26.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.27.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.28.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.29.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.30.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.31.self_attn.o_proj.weight": "model-00004-of-00004.safetensors", "model.layers.0.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.1.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.2.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.3.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.4.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.5.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.6.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.7.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.8.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.9.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.10.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.11.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.12.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.13.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.14.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.15.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.16.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.17.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.18.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.19.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.20.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.21.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.22.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.23.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.24.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.25.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.26.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.27.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.28.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.29.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.30.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors", "model.layers.31.block_sparse_moe.gate.weight": "model-00004-of-00004.safetensors"}}
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "<s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": true,
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:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
tokenizer_config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<unk>",
7
+ "lstrip": false,
8
+ "normalized": true,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "<s>",
15
+ "lstrip": false,
16
+ "normalized": true,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "</s>",
23
+ "lstrip": false,
24
+ "normalized": true,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ }
29
+ },
30
+ "bos_token": "<s>",
31
+ "clean_up_tokenization_spaces": false,
32
+ "eos_token": "</s>",
33
+ "legacy": true,
34
+ "model_max_length": 2048,
35
+ "pad_token": "<s>",
36
+ "sp_model_kwargs": {},
37
+ "spaces_between_special_tokens": false,
38
+ "tokenizer_class": "LlamaTokenizer",
39
+ "unk_token": "<unk>",
40
+ "use_default_system_prompt": false
41
+ }