munish0838
commited on
Commit
•
45ebaec
1
Parent(s):
c815c9e
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: llama3
|
3 |
+
library_name: transformers
|
4 |
+
tags:
|
5 |
+
- nsfw
|
6 |
+
- not-for-all-audiences
|
7 |
+
- llama-3
|
8 |
+
- text-generation-inference
|
9 |
+
- mergekit
|
10 |
+
- merge
|
11 |
+
base_model: HiroseKoichi/L3-8B-Lunar-Stheno
|
12 |
+
pipeline_tag: text-generation
|
13 |
+
---
|
14 |
+
|
15 |
+
# L3-8B-Lunar-Stheno-GGUF
|
16 |
+
This is quantrized version of [HiroseKoichi/L3-8B-Lunar-Stheno](https://huggingface.co/HiroseKoichi/L3-8B-Lunar-Stheno?not-for-all-audiences=true) created using llama.cpp
|
17 |
+
|
18 |
+
# Model Description
|
19 |
+
L3-8B-Lunaris-v1 is definitely a significant improvement over L3-8B-Stheno-v3.2 in terms of situational awareness and prose, but it's not without issues: the response length can sometimes be very long, causing it to go on a rant; it tends to not take direct action, saying that it will do something but never actually doing it; and its performance outside of roleplay took a hit.
|
20 |
+
|
21 |
+
This merge fixes all of those issues, and I'm genuinely impressed with the results. While I did use a SLERP merge to create this model, there was no blending of the models; all I did was replace L3-8B-Stheno-v3.2's weights with L3-8B-Lunaris-v1's.
|
22 |
+
|
23 |
+
# Details
|
24 |
+
- **License**: [llama3](https://llama.meta.com/llama3/license/)
|
25 |
+
- **Instruct Format**: [llama-3](https://llama.meta.com/docs/model-cards-and-prompt-formats/meta-llama-3/)
|
26 |
+
- **Context Size**: 8K
|
27 |
+
|
28 |
+
## Models Used
|
29 |
+
- [L3-8B-Stheno-v3.2](https://huggingface.co/Sao10K/L3-8B-Stheno-v3.2)
|
30 |
+
- [L3-8B-Lunaris-v1](https://huggingface.co/Sao10K/L3-8B-Lunaris-v1)
|
31 |
+
|
32 |
+
## Merge Config
|
33 |
+
```yaml
|
34 |
+
models:
|
35 |
+
- model: Sao10K/L3-8B-Stheno-v3.2
|
36 |
+
- model: Sao10K/L3-8B-Lunaris-v1
|
37 |
+
merge_method: slerp
|
38 |
+
base_model: Sao10K/L3-8B-Stheno-v3.2
|
39 |
+
parameters:
|
40 |
+
t:
|
41 |
+
- filter: self_attn
|
42 |
+
value: 0
|
43 |
+
- filter: mlp
|
44 |
+
value: 1
|
45 |
+
- value: 0
|
46 |
+
dtype: bfloat16
|
47 |
+
```
|