Update README.md
Browse files
README.md
CHANGED
@@ -1,57 +1,61 @@
|
|
1 |
-
---
|
2 |
-
base_model:
|
3 |
-
- SicariusSicariiStuff/LLAMA-3_8B_Unaligned_BETA
|
4 |
-
- akjindal53244/Llama-3.1-Storm-8B
|
5 |
-
- unsloth/Meta-Llama-3.1-8B-Instruct
|
6 |
-
- arcee-ai/Llama-3.1-SuperNova-Lite
|
7 |
-
library_name: transformers
|
8 |
-
tags:
|
9 |
-
- mergekit
|
10 |
-
- merge
|
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 |
-
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model:
|
3 |
+
- SicariusSicariiStuff/LLAMA-3_8B_Unaligned_BETA
|
4 |
+
- akjindal53244/Llama-3.1-Storm-8B
|
5 |
+
- unsloth/Meta-Llama-3.1-8B-Instruct
|
6 |
+
- arcee-ai/Llama-3.1-SuperNova-Lite
|
7 |
+
library_name: transformers
|
8 |
+
tags:
|
9 |
+
- mergekit
|
10 |
+
- merge
|
11 |
+
- function calling
|
12 |
+
- roleplay
|
13 |
+
- conversational
|
14 |
+
license: llama3.1
|
15 |
+
---
|
16 |
+
# ZEUS 8B 🌩️ V7
|
17 |
+
|
18 |
+
This merge seeks to improve upon the successful [V2 model](https://huggingface.co/T145/ZEUS-8B-V2) by using a more uncensored Llama 3.1 model over Lexi, and increasing the density to `1.0` from `0.8`.
|
19 |
+
Merges with higher densities have shown consistent improvement, and an earlier Evolve Merge test showed that the best density with this model configuration was at `1.0`.
|
20 |
+
|
21 |
+
## Merge Details
|
22 |
+
### Merge Method
|
23 |
+
|
24 |
+
This model was merged using the [DARE](https://arxiv.org/abs/2311.03099) [TIES](https://arxiv.org/abs/2306.01708) merge method using [unsloth/Meta-Llama-3.1-8B-Instruct](https://huggingface.co/unsloth/Meta-Llama-3.1-8B-Instruct) as a base.
|
25 |
+
|
26 |
+
### Models Merged
|
27 |
+
|
28 |
+
The following models were included in the merge:
|
29 |
+
* [SicariusSicariiStuff/LLAMA-3_8B_Unaligned_BETA](https://huggingface.co/SicariusSicariiStuff/LLAMA-3_8B_Unaligned_BETA)
|
30 |
+
* [akjindal53244/Llama-3.1-Storm-8B](https://huggingface.co/akjindal53244/Llama-3.1-Storm-8B)
|
31 |
+
* [arcee-ai/Llama-3.1-SuperNova-Lite](https://huggingface.co/arcee-ai/Llama-3.1-SuperNova-Lite)
|
32 |
+
|
33 |
+
### Configuration
|
34 |
+
|
35 |
+
The following YAML configuration was used to produce this model:
|
36 |
+
|
37 |
+
```yaml
|
38 |
+
base_model: unsloth/Meta-Llama-3.1-8B-Instruct
|
39 |
+
dtype: bfloat16
|
40 |
+
merge_method: dare_ties
|
41 |
+
slices:
|
42 |
+
- sources:
|
43 |
+
- layer_range: [0, 32]
|
44 |
+
model: akjindal53244/Llama-3.1-Storm-8B
|
45 |
+
parameters:
|
46 |
+
density: 1.0
|
47 |
+
weight: 0.25
|
48 |
+
- layer_range: [0, 32]
|
49 |
+
model: arcee-ai/Llama-3.1-SuperNova-Lite
|
50 |
+
parameters:
|
51 |
+
density: 1.0
|
52 |
+
weight: 0.33
|
53 |
+
- layer_range: [0, 32]
|
54 |
+
model: SicariusSicariiStuff/LLAMA-3_8B_Unaligned_BETA
|
55 |
+
parameters:
|
56 |
+
density: 1.0
|
57 |
+
weight: 0.42
|
58 |
+
- layer_range: [0, 32]
|
59 |
+
model: unsloth/Meta-Llama-3.1-8B-Instruct
|
60 |
+
tokenizer_source: base
|
61 |
+
```
|