satyamt commited on
Commit
921c133
1 Parent(s): b1b8a34

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - microsoft/Orca-2-7b
10
+ ---
11
+
12
+ # Mediquad-orca-20B
13
+
14
+ Mediquad-orca-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
+ * [microsoft/Orca-2-7b](https://huggingface.co/microsoft/Orca-2-7b)
19
+
20
+ ## 🧩 Configuration
21
+
22
+ ```yamlbase_model: microsoft/Orca-2-7b
23
+ gate_mode: hidden
24
+ dtype: bfloat16
25
+ experts:
26
+ - source_model: epfl-llm/meditron-7b
27
+ positive_prompts:
28
+ - "How does sleep affect cardiovascular health?"
29
+ - "When discussing diabetes management, the key factors to consider are"
30
+ - "The differential diagnosis for a headache with visual aura could include"
31
+ negative_prompts:
32
+ - "What are the environmental impacts of deforestation?"
33
+ - "The recent advancements in artificial intelligence have led to developments in"
34
+ - source_model: medalpaca/medalpaca-7b
35
+ positive_prompts:
36
+ - "When discussing diabetes management, the key factors to consider are"
37
+ - "The differential diagnosis for a headache with visual aura could include"
38
+ negative_prompts:
39
+ - "Recommend a good recipe for a vegetarian lasagna."
40
+ - "The fundamental concepts in economics include ideas like supply and demand, which explain"
41
+ - source_model: chaoyi-wu/PMC_LLAMA_7B_10_epoch
42
+ positive_prompts:
43
+ - "How does sleep affect cardiovascular health?"
44
+ - "When discussing diabetes management, the key factors to consider are"
45
+ negative_prompts:
46
+ - "Recommend a good recipe for a vegetarian lasagna."
47
+ - "The recent advancements in artificial intelligence have led to developments in"
48
+ - "The fundamental concepts in economics include ideas like supply and demand, which explain"
49
+ - source_model: microsoft/Orca-2-7b
50
+ positive_prompts:
51
+ - "Here is a funny joke for you -"
52
+ - "When considering the ethical implications of artificial intelligence, one must take into account"
53
+ - "In strategic planning, a company must analyze its strengths and weaknesses, which involves"
54
+ - "Understanding consumer behavior in marketing requires considering factors like"
55
+ - "The debate on climate change solutions hinges on arguments that"
56
+ negative_prompts:
57
+ - "In discussing dietary adjustments for managing hypertension, it's crucial to emphasize"
58
+ - "For early detection of melanoma, dermatologists recommend that patients regularly check their skin for"
59
+ - "Explaining the importance of vaccination, a healthcare professional should highlight"
60
+
61
+ ```
62
+
63
+ ## 💻 Usage
64
+
65
+ ```python
66
+ !pip install -qU transformers bitsandbytes accelerate
67
+
68
+ from transformers import AutoTokenizer
69
+ import transformers
70
+ import torch
71
+
72
+ model = "Technoculture/Mediquad-orca-20B"
73
+
74
+ tokenizer = AutoTokenizer.from_pretrained(model)
75
+ pipeline = transformers.pipeline(
76
+ "text-generation",
77
+ model=model,
78
+ model_kwargs={"torch_dtype": torch.float16, "load_in_4bit": True},
79
+ )
80
+
81
+ messages = [{"role": "user", "content": "Explain what a Mixture of Experts is in less than 100 words."}]
82
+ prompt = pipeline.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
83
+ outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
84
+ print(outputs[0]["generated_text"])
85
+ ```
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": "microsoft/Orca-2-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": 4096,
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-05,
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": "float32",
30
+ "transformers_version": "4.37.0.dev0",
31
+ "use_cache": true,
32
+ "vocab_size": 32003
33
+ }
mergekit_moe_config.yml ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ base_model: microsoft/Orca-2-7b
2
+ gate_mode: hidden
3
+ dtype: bfloat16
4
+ experts:
5
+ - source_model: epfl-llm/meditron-7b
6
+ positive_prompts:
7
+ - "How does sleep affect cardiovascular health?"
8
+ - "When discussing diabetes management, the key factors to consider are"
9
+ - "The differential diagnosis for a headache with visual aura could include"
10
+ negative_prompts:
11
+ - "What are the environmental impacts of deforestation?"
12
+ - "The recent advancements in artificial intelligence have led to developments in"
13
+ - source_model: medalpaca/medalpaca-7b
14
+ positive_prompts:
15
+ - "When discussing diabetes management, the key factors to consider are"
16
+ - "The differential diagnosis for a headache with visual aura could include"
17
+ negative_prompts:
18
+ - "Recommend a good recipe for a vegetarian lasagna."
19
+ - "The fundamental concepts in economics include ideas like supply and demand, which explain"
20
+ - source_model: chaoyi-wu/PMC_LLAMA_7B_10_epoch
21
+ positive_prompts:
22
+ - "How does sleep affect cardiovascular health?"
23
+ - "When discussing diabetes management, the key factors to consider are"
24
+ negative_prompts:
25
+ - "Recommend a good recipe for a vegetarian lasagna."
26
+ - "The recent advancements in artificial intelligence have led to developments in"
27
+ - "The fundamental concepts in economics include ideas like supply and demand, which explain"
28
+ - source_model: microsoft/Orca-2-7b
29
+ positive_prompts:
30
+ - "Here is a funny joke for you -"
31
+ - "When considering the ethical implications of artificial intelligence, one must take into account"
32
+ - "In strategic planning, a company must analyze its strengths and weaknesses, which involves"
33
+ - "Understanding consumer behavior in marketing requires considering factors like"
34
+ - "The debate on climate change solutions hinges on arguments that"
35
+ negative_prompts:
36
+ - "In discussing dietary adjustments for managing hypertension, it's crucial to emphasize"
37
+ - "For early detection of melanoma, dermatologists recommend that patients regularly check their skin for"
38
+ - "Explaining the importance of vaccination, a healthcare professional should highlight"
39
+
model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1f59b248971d125989319046615aef043f3bcb1dd0dbf4984138b2779efceaa
3
+ size 9993266472
model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:881493d1b106793249884c7af0be9fe8e8a4360a6673d3a0a1a26b6373ccd6cd
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:578fdcf3814c0ee78557a993d28835860e22cd596c1f4dfc5adec1471976c3ec
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:a63fe2b156b56d8fa47e436097222339296952ae9f3eb8818b1a209deb600bc7
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": 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:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
tokenizer_config.json ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<unk>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "<s>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "</s>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "32000": {
30
+ "content": "[PAD]",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "32001": {
38
+ "content": "<|im_start|>",
39
+ "lstrip": false,
40
+ "normalized": true,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": false
44
+ },
45
+ "32002": {
46
+ "content": "<|im_end|>",
47
+ "lstrip": false,
48
+ "normalized": true,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": false
52
+ }
53
+ },
54
+ "bos_token": "<s>",
55
+ "clean_up_tokenization_spaces": false,
56
+ "eos_token": "</s>",
57
+ "legacy": false,
58
+ "model_max_length": 4096,
59
+ "pad_token": "<s>",
60
+ "padding_side": "left",
61
+ "sp_model_kwargs": {},
62
+ "spaces_between_special_tokens": false,
63
+ "tokenizer_class": "LlamaTokenizer",
64
+ "unk_token": "<unk>",
65
+ "use_default_system_prompt": true
66
+ }