Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- merge
|
4 |
+
- mergekit
|
5 |
+
- lazymergekit
|
6 |
+
- senseable/Westlake-7B
|
7 |
+
- abideen/DareVox-7B
|
8 |
+
base_model:
|
9 |
+
- senseable/Westlake-7B
|
10 |
+
- abideen/DareVox-7B
|
11 |
+
license: apache-2.0
|
12 |
+
---
|
13 |
+
|
14 |
+
# West-Dare-7B
|
15 |
+
|
16 |
+
West-Dare-7B is a merge of the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
|
17 |
+
* [senseable/Westlake-7B](https://huggingface.co/senseable/Westlake-7B)
|
18 |
+
* [abideen/DareVox-7B](https://huggingface.co/abideen/DareVox-7B)
|
19 |
+
|
20 |
+
## 🧩 Configuration
|
21 |
+
|
22 |
+
```yaml
|
23 |
+
models:
|
24 |
+
- model: mistralai/Mistral-7B-v0.1
|
25 |
+
# no parameters necessary for base model
|
26 |
+
models:
|
27 |
+
- model: senseable/Westlake-7B
|
28 |
+
parameters:
|
29 |
+
density: 0.5
|
30 |
+
weight: 0.5
|
31 |
+
- model: abideen/DareVox-7B
|
32 |
+
parameters:
|
33 |
+
density: 0.5
|
34 |
+
weight: 0.3
|
35 |
+
merge_method: ties
|
36 |
+
base_model: mistralai/Mistral-7B-v0.1
|
37 |
+
parameters:
|
38 |
+
normalize: true
|
39 |
+
dtype: float16
|
40 |
+
|
41 |
+
```
|
42 |
+
Credit to Maxime Labonne and his excellent blog https://mlabonne.github.io/blog/
|