Quant for 3.5
Browse files- .gitattributes +1 -0
- README.md +189 -37
- config.json +30 -0
- dolphin_moe.png +3 -0
- mergekit_moe_config.yml +47 -0
- model.safetensors.index.json +1 -0
- original_repo_url.txt +1 -0
- output.safetensors +3 -0
- special_tokens_map.json +29 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +46 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
dolphin_moe.png filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,69 +1,221 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
library_name: transformers
|
4 |
-
quantized_by: bartowski
|
5 |
-
pipeline_tag: text-generation
|
6 |
---
|
|
|
7 |
|
8 |
-
|
9 |
|
10 |
-
|
11 |
|
12 |
-
|
13 |
|
14 |
-
|
15 |
|
16 |
-
|
17 |
|
18 |
-
|
|
|
|
|
19 |
|
20 |
-
|
21 |
|
|
|
22 |
|
23 |
-
|
24 |
|
25 |
-
|
26 |
|
27 |
-
|
28 |
|
29 |
-
|
|
|
30 |
|
31 |
-
|
32 |
|
|
|
33 |
|
34 |
-
|
35 |
|
36 |
-
|
37 |
|
38 |
-
```shell
|
39 |
-
git clone --single-branch --branch 6_5 https://huggingface.co/bartowski/laser-dolphin-mixtral-2x7b-dpo-exl2
|
40 |
-
```
|
41 |
|
42 |
-
|
|
|
|
|
43 |
|
44 |
-
|
45 |
-
|
46 |
-
```
|
47 |
|
48 |
-
|
|
|
49 |
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
|
55 |
-
|
|
|
56 |
|
57 |
-
|
|
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
```
|
63 |
|
64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
66 |
-
```
|
67 |
-
|
68 |
-
|
|
|
|
|
|
|
|
|
69 |
```
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
library_name: transformers
|
|
|
|
|
4 |
---
|
5 |
+
# Laser-Dolphin-Mixtral-2x7b-dpo
|
6 |
|
7 |
+

|
8 |
|
9 |
+
**New Version out now!**
|
10 |
|
11 |
+
Credit to Fernando Fernandes and Eric Hartford for their project [laserRMT](https://github.com/cognitivecomputations/laserRMT)
|
12 |
|
13 |
+
## Overview
|
14 |
|
15 |
+
This model is a medium-sized MoE implementation based on [cognitivecomputations/dolphin-2.6-mistral-7b-dpo-laser](https://huggingface.co/cognitivecomputations/dolphin-2.6-mistral-7b-dpo-laser)
|
16 |
|
17 |
+
+ The new version shows ~1 point on average.
|
18 |
+
|
19 |
+
## Process
|
20 |
|
21 |
+
+ The process is outlined in this [notebook](https://github.com/cognitivecomputations/laserRMT/blob/main/examples/laser-dolphin-mixtral-2x7b.ipynb)
|
22 |
|
23 |
+
+ The mergekit_config is in the files.
|
24 |
|
25 |
+
+ The models used in the configuration are not lasered, but the final product is. This is an update from the last version.
|
26 |
|
27 |
+
+ This process is experimental. Your mileage may vary.
|
28 |
|
29 |
+
## Future Goals
|
30 |
|
31 |
+
+ [ ] Function Calling
|
32 |
+
+ [ ] v2 with new base model to improve performance
|
33 |
|
34 |
+
## Quantizations
|
35 |
|
36 |
+
**These Quants will result in unpredicted behavior. New quants are available as I have updated the model**
|
37 |
|
38 |
+
Quatizations provided by [TheBloke](https://huggingface.co/TheBloke/laser-dolphin-mixtral-2x7b-dpo-GGUF)
|
39 |
|
40 |
+
*Current [Quantizations](https://huggingface.co/macadeliccc/laser-dolphin-mixtral-2x7b-dpo-GGUF)*
|
41 |
|
|
|
|
|
|
|
42 |
|
43 |
+
## HF Spaces
|
44 |
+
+ GGUF chat available [here](https://huggingface.co/spaces/macadeliccc/laser-dolphin-mixtral-chat-GGUF)
|
45 |
+
+ 4-bit bnb chat available [here](https://huggingface.co/spaces/macadeliccc/laser-dolphin-mixtral-chat)
|
46 |
|
47 |
+
## Code Example
|
48 |
+
Switch the commented model definition to use in 4-bit. Should work with 9GB and still exceed the single 7B model by 5-6 points roughly
|
|
|
49 |
|
50 |
+
```python
|
51 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
52 |
|
53 |
+
def generate_response(prompt):
|
54 |
+
"""
|
55 |
+
Generate a response from the model based on the input prompt.
|
56 |
+
|
57 |
+
Args:
|
58 |
+
prompt (str): Prompt for the model.
|
59 |
+
|
60 |
+
Returns:
|
61 |
+
str: The generated response from the model.
|
62 |
+
"""
|
63 |
+
# Tokenize the input prompt
|
64 |
+
inputs = tokenizer(prompt, return_tensors="pt")
|
65 |
|
66 |
+
# Generate output tokens
|
67 |
+
outputs = model.generate(**inputs, max_new_tokens=256, eos_token_id=tokenizer.eos_token_id, pad_token_id=tokenizer.pad_token_id)
|
68 |
|
69 |
+
# Decode the generated tokens to a string
|
70 |
+
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
71 |
|
72 |
+
return response
|
73 |
+
|
74 |
+
# Load the model and tokenizer
|
75 |
+
model_id = "macadeliccc/laser-dolphin-mixtral-2x7b-dpo"
|
76 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
77 |
+
model = AutoModelForCausalLM.from_pretrained(model_id, load_in_4bit=True)
|
78 |
+
|
79 |
+
prompt = "Write a quicksort algorithm in python"
|
80 |
+
|
81 |
+
# Generate and print responses for each language
|
82 |
+
print("Response:")
|
83 |
+
print(generate_response(prompt), "\n")
|
84 |
```
|
85 |
|
86 |
+
[colab](https://colab.research.google.com/drive/1cmRhAkDWItV7utHNqNANVZnqDqQNsTUr?usp=sharing) with usage example
|
87 |
+
|
88 |
+
## Eval
|
89 |
+
|
90 |
+
## EQ Bench
|
91 |
+
|
92 |
+
<pre>----Benchmark Complete----
|
93 |
+
2024-01-31 16:55:37
|
94 |
+
Time taken: 31.1 mins
|
95 |
+
Prompt Format: ChatML
|
96 |
+
Model: macadeliccc/laser-dolphin-mixtral-2x7b-dpo-GGUF
|
97 |
+
Score (v2): 72.76
|
98 |
+
Parseable: 171.0
|
99 |
+
---------------
|
100 |
+
Batch completed
|
101 |
+
Time taken: 31.2 mins
|
102 |
+
---------------
|
103 |
+
</pre>
|
104 |
+
|
105 |
+
|
106 |
+
|
107 |
+
evaluation [colab](https://colab.research.google.com/drive/1FpwgsGzCR4tORTxAwUxpN3PcP22En2xk?usp=sharing)
|
108 |
+
## Summary of previous evaluation
|
109 |
+
| Model |AGIEval|GPT4All|TruthfulQA|Bigbench|Average|
|
110 |
+
|---------------------------------------------------------------------------------------------------|------:|------:|---------:|-------:|------:|
|
111 |
+
|[laser-dolphin-mixtral-2x7b-dpo](https://huggingface.co/macadeliccc/laser-dolphin-mixtral-2x7b-dpo)| 41.31| 73.67| 61.69| 42.79| 54.87|
|
112 |
+
|
113 |
+
## Detailed current evaluation
|
114 |
+
| Model |AGIEval|GPT4All|TruthfulQA|Bigbench|Average|
|
115 |
+
|---------------------------------------------------------------------------------------------------|------:|------:|---------:|-------:|------:|
|
116 |
+
|[laser-dolphin-mixtral-2x7b-dpo](https://huggingface.co/macadeliccc/laser-dolphin-mixtral-2x7b-dpo)| 42.25| 73.45| 63.44| 43.96| 55.77|
|
117 |
+
|
118 |
+
### AGIEval
|
119 |
+
| Task |Version| Metric |Value| |Stderr|
|
120 |
+
|------------------------------|------:|--------|----:|---|-----:|
|
121 |
+
|agieval_aqua_rat | 0|acc |21.26|± | 2.57|
|
122 |
+
| | |acc_norm|21.65|± | 2.59|
|
123 |
+
|agieval_logiqa_en | 0|acc |34.72|± | 1.87|
|
124 |
+
| | |acc_norm|35.64|± | 1.88|
|
125 |
+
|agieval_lsat_ar | 0|acc |26.96|± | 2.93|
|
126 |
+
| | |acc_norm|26.96|± | 2.93|
|
127 |
+
|agieval_lsat_lr | 0|acc |45.88|± | 2.21|
|
128 |
+
| | |acc_norm|46.08|± | 2.21|
|
129 |
+
|agieval_lsat_rc | 0|acc |59.48|± | 3.00|
|
130 |
+
| | |acc_norm|59.48|± | 3.00|
|
131 |
+
|agieval_sat_en | 0|acc |73.79|± | 3.07|
|
132 |
+
| | |acc_norm|73.79|± | 3.07|
|
133 |
+
|agieval_sat_en_without_passage| 0|acc |42.23|± | 3.45|
|
134 |
+
| | |acc_norm|41.26|± | 3.44|
|
135 |
+
|agieval_sat_math | 0|acc |37.27|± | 3.27|
|
136 |
+
| | |acc_norm|33.18|± | 3.18|
|
137 |
+
|
138 |
+
Average: 42.25%
|
139 |
+
|
140 |
+
### GPT4All
|
141 |
+
| Task |Version| Metric |Value| |Stderr|
|
142 |
+
|-------------|------:|--------|----:|---|-----:|
|
143 |
+
|arc_challenge| 0|acc |58.36|± | 1.44|
|
144 |
+
| | |acc_norm|58.02|± | 1.44|
|
145 |
+
|arc_easy | 0|acc |82.20|± | 0.78|
|
146 |
+
| | |acc_norm|77.40|± | 0.86|
|
147 |
+
|boolq | 1|acc |87.52|± | 0.58|
|
148 |
+
|hellaswag | 0|acc |67.50|± | 0.47|
|
149 |
+
| | |acc_norm|84.43|± | 0.36|
|
150 |
+
|openbookqa | 0|acc |34.40|± | 2.13|
|
151 |
+
| | |acc_norm|47.00|± | 2.23|
|
152 |
+
|piqa | 0|acc |81.61|± | 0.90|
|
153 |
+
| | |acc_norm|82.59|± | 0.88|
|
154 |
+
|winogrande | 0|acc |77.19|± | 1.18|
|
155 |
+
|
156 |
+
|
157 |
+
Average: 73.45%
|
158 |
+
|
159 |
+
### GSM8K
|
160 |
+
|Task |Version| Metric |Value| |Stderr|
|
161 |
+
|-----|------:|-----------------------------|-----|---|------|
|
162 |
+
|gsm8k| 2|exact_match,get-answer | 0.75| | |
|
163 |
+
| | |exact_match_stderr,get-answer| 0.01| | |
|
164 |
+
| | |alias |gsm8k| | |
|
165 |
+
|
166 |
+
### TruthfulQA
|
167 |
+
| Task |Version|Metric|Value| |Stderr|
|
168 |
+
|-------------|------:|------|----:|---|-----:|
|
169 |
+
|truthfulqa_mc| 1|mc1 |45.90|± | 1.74|
|
170 |
+
| | |mc2 |63.44|± | 1.56|
|
171 |
+
|
172 |
+
Average: 63.44%
|
173 |
+
|
174 |
+
### Bigbench
|
175 |
+
| Task |Version| Metric |Value| |Stderr|
|
176 |
+
|------------------------------------------------|------:|---------------------|----:|---|-----:|
|
177 |
+
|bigbench_causal_judgement | 0|multiple_choice_grade|58.42|± | 3.59|
|
178 |
+
|bigbench_date_understanding | 0|multiple_choice_grade|60.70|± | 2.55|
|
179 |
+
|bigbench_disambiguation_qa | 0|multiple_choice_grade|38.37|± | 3.03|
|
180 |
+
|bigbench_geometric_shapes | 0|multiple_choice_grade|21.73|± | 2.18|
|
181 |
+
| | |exact_str_match | 0.00|± | 0.00|
|
182 |
+
|bigbench_logical_deduction_five_objects | 0|multiple_choice_grade|35.00|± | 2.14|
|
183 |
+
|bigbench_logical_deduction_seven_objects | 0|multiple_choice_grade|23.57|± | 1.61|
|
184 |
+
|bigbench_logical_deduction_three_objects | 0|multiple_choice_grade|50.33|± | 2.89|
|
185 |
+
|bigbench_movie_recommendation | 0|multiple_choice_grade|45.00|± | 2.23|
|
186 |
+
|bigbench_navigate | 0|multiple_choice_grade|50.00|± | 1.58|
|
187 |
+
|bigbench_reasoning_about_colored_objects | 0|multiple_choice_grade|60.35|± | 1.09|
|
188 |
+
|bigbench_ruin_names | 0|multiple_choice_grade|51.12|± | 2.36|
|
189 |
+
|bigbench_salient_translation_error_detection | 0|multiple_choice_grade|32.26|± | 1.48|
|
190 |
+
|bigbench_snarks | 0|multiple_choice_grade|67.96|± | 3.48|
|
191 |
+
|bigbench_sports_understanding | 0|multiple_choice_grade|70.59|± | 1.45|
|
192 |
+
|bigbench_temporal_sequences | 0|multiple_choice_grade|35.80|± | 1.52|
|
193 |
+
|bigbench_tracking_shuffled_objects_five_objects | 0|multiple_choice_grade|22.56|± | 1.18|
|
194 |
+
|bigbench_tracking_shuffled_objects_seven_objects| 0|multiple_choice_grade|17.20|± | 0.90|
|
195 |
+
|bigbench_tracking_shuffled_objects_three_objects| 0|multiple_choice_grade|50.33|± | 2.89|
|
196 |
+
|
197 |
+
Average: 43.96%
|
198 |
+
|
199 |
+
Average score: 55.77%
|
200 |
+
|
201 |
+
Elapsed time: 02:43:45
|
202 |
+
## Citations
|
203 |
+
|
204 |
+
Fernando Fernandes Neto and Eric Hartford. "Optimizing Large Language Models Using Layer-Selective Rank Reduction and Random Matrix Theory." 2024.
|
205 |
+
|
206 |
+
```bibtex
|
207 |
+
@article{sharma2023truth,
|
208 |
+
title={The Truth is in There: Improving Reasoning in Language Models with Layer-Selective Rank Reduction},
|
209 |
+
author={Sharma, Pratyusha and Ash, Jordan T and Misra, Dipendra},
|
210 |
+
journal={arXiv preprint arXiv:2312.13558},
|
211 |
+
year={2023} }
|
212 |
+
```
|
213 |
|
214 |
+
```bibtex
|
215 |
+
@article{gao2021framework,
|
216 |
+
title={A framework for few-shot language model evaluation},
|
217 |
+
author={Gao, Leo and Tow, Jonathan and Biderman, Stella and Black, Sid and DiPofi, Anthony and Foster, Charles and Golding, Laurence and Hsu, Jeffrey and McDonell, Kyle and Muennighoff, Niklas and others},
|
218 |
+
journal={Version v0. 0.1. Sept},
|
219 |
+
year={2021}
|
220 |
+
}
|
221 |
```
|
config.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "mlabonne/Marcoro14-7B-slerp",
|
3 |
+
"architectures": [
|
4 |
+
"MixtralForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 1,
|
8 |
+
"eos_token_id": 2,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 4096,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 14336,
|
13 |
+
"max_position_embeddings": 32768,
|
14 |
+
"model_type": "mixtral",
|
15 |
+
"num_attention_heads": 32,
|
16 |
+
"num_experts_per_tok": 2,
|
17 |
+
"num_hidden_layers": 32,
|
18 |
+
"num_key_value_heads": 8,
|
19 |
+
"num_local_experts": 2,
|
20 |
+
"output_router_logits": false,
|
21 |
+
"rms_norm_eps": 1e-05,
|
22 |
+
"rope_theta": 10000.0,
|
23 |
+
"router_aux_loss_coef": 0.001,
|
24 |
+
"sliding_window": null,
|
25 |
+
"tie_word_embeddings": false,
|
26 |
+
"torch_dtype": "bfloat16",
|
27 |
+
"transformers_version": "4.37.0.dev0",
|
28 |
+
"use_cache": true,
|
29 |
+
"vocab_size": 32000
|
30 |
+
}
|
dolphin_moe.png
ADDED
![]() |
Git LFS Details
|
mergekit_moe_config.yml
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
base_model: mlabonne/Marcoro14-7B-slerp
|
2 |
+
gate_mode: hidden
|
3 |
+
dtype: bfloat16
|
4 |
+
experts:
|
5 |
+
- source_model: cognitivecomputations/dolphin-2.6-mistral-7b-dpo
|
6 |
+
positive_prompts:
|
7 |
+
- "Help me debug this code."
|
8 |
+
- "Rewrite this function in Python."
|
9 |
+
- "Optimize this C# script."
|
10 |
+
- "Implement this feature using JavaScript."
|
11 |
+
- "Convert this HTML structure into a more efficient design."
|
12 |
+
- "Assist me with writing a program that"
|
13 |
+
- "How do you"
|
14 |
+
- "Explain the concept of"
|
15 |
+
- "Give an overview of"
|
16 |
+
- "Compare and contrast between"
|
17 |
+
- "Provide information about"
|
18 |
+
- "Help me understand"
|
19 |
+
- "Summarize"
|
20 |
+
- "Make a recommendation on"
|
21 |
+
- "Answer this question"
|
22 |
+
|
23 |
+
- source_model: WizardLM/WizardMath-7B-V1.1
|
24 |
+
positive_prompts:
|
25 |
+
- "add these numbers"
|
26 |
+
- "whats 2+2"
|
27 |
+
- "subtraction"
|
28 |
+
- "division"
|
29 |
+
- "multiplication"
|
30 |
+
- "addition"
|
31 |
+
- "I need help with a math problem"
|
32 |
+
- "Solve for x"
|
33 |
+
- "Add these two numbers together: 4 + 3 = 7"
|
34 |
+
- "Multiply 5 by 6: 5 * 6 = 30"
|
35 |
+
- "Divide 8 by 2: 8 / 2 = 4"
|
36 |
+
- "Find the remainder when 9 is divided by 3: 9 % 3 = 0"
|
37 |
+
- "Calculate the square root of 16: sqrt(16) = 4"
|
38 |
+
- "Simplify the expression (a+b)/(c-d): (a+b)/(c-d)"
|
39 |
+
- "Factor out the common factor of 2 from 4x + 6y: 2(2x + 3y)"
|
40 |
+
- "Solve for x in the equation 3x - 7 = 2x + 5: x = 12"
|
41 |
+
- "Graph the line y = 2x + 3"
|
42 |
+
- "Approximate pi to three decimal places: 3.142"
|
43 |
+
- "Find the derivative of f(x) = sin(x): f'(x) = cos(x)"
|
44 |
+
- "Integrate g(x) = x^2 over the interval [0, 1]: g(1) - g(0) = 1/3"
|
45 |
+
- "Calculate the determinant of the matrix A = [[2, 3], [4, 5]]: det(A) = 2*5 - 3*4 = -2"
|
46 |
+
- "Solve the system of equations Ax = b: x = [-5, 10]"
|
47 |
+
- "Calculate the sum of the first n natural numbers using the formula Sn = n*(n+1)/2: sum(n=1 to 5) = 15"
|
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-00003.safetensors", "model.norm.weight": "model-00001-of-00003.safetensors", "lm_head.weight": "model-00001-of-00003.safetensors", "model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.11.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.12.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.13.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.14.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.15.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.16.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.17.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.18.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.19.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.20.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.21.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.22.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.23.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.24.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.25.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.26.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.27.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.28.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.29.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.30.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.31.input_layernorm.weight": "model-00001-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.0.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.1.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.2.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.3.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.4.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.5.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.6.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.7.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.8.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.9.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.10.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.11.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.12.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.13.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.14.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.15.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.16.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.17.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00003.safetensors", "model.layers.18.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.19.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.20.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.21.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.22.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.23.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.24.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.25.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.26.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.27.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.28.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.29.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.30.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00003.safetensors", "model.layers.31.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00003.safetensors", "model.layers.0.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.1.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.2.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.3.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.4.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.5.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.6.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.7.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.8.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.9.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.10.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.11.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.12.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.13.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.14.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.15.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.16.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.17.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.18.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.19.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.20.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.21.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.26.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.27.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors", "model.layers.0.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.1.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.2.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.3.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.4.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.5.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.6.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.7.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.8.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.9.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.10.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.11.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.12.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.13.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.14.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.15.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.16.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.17.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.18.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.19.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.20.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.27.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.28.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors", "model.layers.0.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.1.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.2.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.3.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.4.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.5.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.6.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.7.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.8.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.9.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.10.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.11.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.12.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.13.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.14.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.15.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.16.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.17.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.18.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.19.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.20.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.27.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.28.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors", "model.layers.0.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.1.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.2.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.3.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.4.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.5.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.6.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.7.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.8.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.9.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.10.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.11.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.12.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.13.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.14.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.15.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.16.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.17.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.18.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.19.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.20.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.27.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.28.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors", "model.layers.0.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.1.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.2.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.3.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.4.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.5.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.6.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.7.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.8.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.9.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.10.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.11.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.12.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.13.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.14.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.15.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.16.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.17.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.18.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.19.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.20.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.27.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.28.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors", "model.layers.0.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.1.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.2.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.3.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.4.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.5.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.6.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.7.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.8.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.9.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.10.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.11.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.12.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.13.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.14.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.15.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.16.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.17.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.18.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.19.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.20.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.21.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.22.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.23.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.24.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.25.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.26.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.27.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.28.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.29.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.30.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors", "model.layers.31.block_sparse_moe.gate.weight": "model-00003-of-00003.safetensors"}}
|
original_repo_url.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
https://huggingface.co/macadeliccc/laser-dolphin-mixtral-2x7b-dpo
|
output.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f14437974d59c393670725390a17db1b1e868897caee114b4b89d474f40cbce6
|
3 |
+
size 5885402576
|
special_tokens_map.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<unk>",
|
4 |
+
"<s>",
|
5 |
+
"</s>"
|
6 |
+
],
|
7 |
+
"bos_token": {
|
8 |
+
"content": "<s>",
|
9 |
+
"lstrip": false,
|
10 |
+
"normalized": false,
|
11 |
+
"rstrip": false,
|
12 |
+
"single_word": false
|
13 |
+
},
|
14 |
+
"eos_token": {
|
15 |
+
"content": "</s>",
|
16 |
+
"lstrip": false,
|
17 |
+
"normalized": false,
|
18 |
+
"rstrip": false,
|
19 |
+
"single_word": false
|
20 |
+
},
|
21 |
+
"pad_token": "<s>",
|
22 |
+
"unk_token": {
|
23 |
+
"content": "<unk>",
|
24 |
+
"lstrip": false,
|
25 |
+
"normalized": false,
|
26 |
+
"rstrip": false,
|
27 |
+
"single_word": false
|
28 |
+
}
|
29 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
|
3 |
+
size 493443
|
tokenizer_config.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": true,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"0": {
|
6 |
+
"content": "<unk>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"1": {
|
14 |
+
"content": "<s>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"2": {
|
22 |
+
"content": "</s>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
}
|
29 |
+
},
|
30 |
+
"additional_special_tokens": [
|
31 |
+
"<unk>",
|
32 |
+
"<s>",
|
33 |
+
"</s>"
|
34 |
+
],
|
35 |
+
"bos_token": "<s>",
|
36 |
+
"clean_up_tokenization_spaces": false,
|
37 |
+
"eos_token": "</s>",
|
38 |
+
"legacy": true,
|
39 |
+
"model_max_length": 1000000000000000019884624838656,
|
40 |
+
"pad_token": "<s>",
|
41 |
+
"sp_model_kwargs": {},
|
42 |
+
"spaces_between_special_tokens": false,
|
43 |
+
"tokenizer_class": "LlamaTokenizer",
|
44 |
+
"unk_token": "<unk>",
|
45 |
+
"use_default_system_prompt": true
|
46 |
+
}
|