File size: 16,180 Bytes
98b237c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
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
39
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
---
pipeline_tag: text-generation
library_name: transformers
language:
- en
license: llama3
tags:
- mergekit
- merge
- multi-step merge
- rp
- roleplay
- role-play
- summarization
- emotion classification
base_model:
- Casual-Autopsy/L3-Super-Nova-RP-8B
---

## **L3-Super-Nova-RP-8B**
[exllamav2](https://github.com/turboderp/exllamav2) quant for [Casual-Autopsy/L3-Super-Nova-RP-8B](https://huggingface.co/Casual-Autopsy/L3-Super-Nova-RP-8B)

**Original model information:**


| <img src="https://huggingface.co/Casual-Autopsy/L3-Super-Nova-RP-8B/resolve/main/Card-Assets/NovaKid-Girl.jpeg" width="50%" height="50%" style="display: block; margin: auto;"> |
|:---:|
| Image generated by [mayonays_on_toast](https://civitai.com/user/mayonays_on_toast) - [Sauce](https://civitai.com/images/10153472) |
***
***
***
# L3-Super-Nova-RP-8B

This is a role-playing model designed with the goal of good creativity and intelligence to improve advance role-playing experiences. The aim of L3-Super-Nova-RP-8B is to be good at Chain-of-Thoughts, summarizing information, and recognizing emotions. It also includes data about the human body and mind in an attempt to enhance understanding and interaction within role-playing scenarios.

The model was developed using various methods in multiple merging steps. To boost creativity, it used techniques to strengthen and adjust its output which was paried with the newly released merge method. All merge calculations were done in float32 format and then converted to the usual bfloat16 during merging.

***
***
## Presets

***
### Text Gen
The Current good staring preset for this model. **Subject to change.**
**Settings by yours truly**
```yaml
Top K: 40
Min P: 0.075
Repetition Penalty: 1.01
# Don't make this higher, DRY handles the bulk of Squashing Repetition.
# This is just to lightly nudge the bot to move the plot forward
Rep Pen Range: 2048 # Don't make this higher either.
Presence Penalty: 0.03 # Minor encouragement to use synonyms. Don't make this higher maybe?
Smoothing Factor: 0.3

DRY Repetition Penalty:
  Multiplier: 0.8
  Base: 1.75
  Allowed Length: 2
  Penalty Range: 4096

Dynamic Temperature:
  Min Temp: 0.5
  Max Temp: 1.25
  Exponent: 0.85
```

***
### Context/Instruct
[Virt-io's SillyTavern Presets](https://huggingface.co/Virt-io/SillyTavern-Presets) work really well with this.

***
***
## Usage Info

Some of the **INT** models were chosen with some of SillyTavern's features in mind, such as emotion based sprites, dynamic music, and pretty much any feature, extension, or STscript that uses sumarization. With that said, it's recommended to use SillyTavern as your front-end.

While not required, I'd recommend building the story string prompt with Lorebooks rather than using the Advance Formatting menu. The only thing you really need in the Story String prompt within Advance Formatting is the system prompt. Doing it this way tends to keep the character more consistent as the RP goes on as all character card info is locked to a certain depth rather than getting further and further away within the context.

***
***
## Quants

***
***
## Merge Info

The merge methods used were **Ties**, **Dare Ties**, **Breadcrumbs Ties**, **SLERP**, and **DELLA**.

The model was finished off with both **Merge Densification**, and **Negative Weighting** techniques to boost creativity.

All merging steps had the merge calculations done in **float32** and were output as **bfloat16**.

***
### Models Merged

The following models were used to make this merge:
* [nothingiisreal/L3-8B-Celeste-v1](https://huggingface.co/nothingiisreal/L3-8B-Celeste-v1)
* [Nitral-AI/Hathor_Tahsin-L3-8B-v0.85](https://huggingface.co/Nitral-AI/Hathor_Tahsin-L3-8B-v0.85)
* [Sao10K/L3-8B-Stheno-v3.2](https://huggingface.co/Sao10K/L3-8B-Stheno-v3.2)
* [ChaoticNeutrals/Poppy_Porpoise-1.0-L3-8B](https://huggingface.co/ChaoticNeutrals/Poppy_Porpoise-1.0-L3-8B)
* [Sao10K/L3-8B-Lunaris-v1](https://huggingface.co/Sao10K/L3-8B-Lunaris-v1)
* [turboderp/llama3-turbcat-instruct-8b](https://huggingface.co/turboderp/llama3-turbcat-instruct-8b)
* [ChaoticNeutrals/Domain-Fusion-L3-8B](https://huggingface.co/ChaoticNeutrals/Domain-Fusion-L3-8B)
* [migtissera/Llama-3-8B-Synthia-v3.5](https://huggingface.co/migtissera/Llama-3-8B-Synthia-v3.5)
* [TheDrummer/Llama-3SOME-8B-v2](https://huggingface.co/TheDrummer/Llama-3SOME-8B-v2)
* [ChaoticNeutrals/Hathor_RP-v.01-L3-8B](https://huggingface.co/ChaoticNeutrals/Hathor_RP-v.01-L3-8B)
* [TheSkullery/llama-3-cat-8b-instruct-v1](https://huggingface.co/TheSkullery/llama-3-cat-8b-instruct-v1)
* [FPHam/L3-8B-Everything-COT](https://huggingface.co/FPHam/L3-8B-Everything-COT)
* [Ayush-1722/Meta-Llama-3-8B-Instruct-Summarize-v0.2-24K-LoRANET-Merged](https://huggingface.co/Ayush-1722/Meta-Llama-3-8B-Instruct-Summarize-v0.2-24K-LoRANET-Merged)
* [OEvortex/Emotional-llama-8B](https://huggingface.co/OEvortex/Emotional-llama-8B)
* [lighteternal/Llama3-merge-biomed-8b](https://huggingface.co/lighteternal/Llama3-merge-biomed-8b)
* [Casual-Autopsy/Llama3-merge-psychotherapy-8b](https://huggingface.co/Casual-Autopsy/Llama3-merge-psychotherapy-8b)
* [Sao10K/L3-8B-Tamamo-v1](https://huggingface.co/Sao10K/L3-8B-Tamamo-v1)
* [ResplendentAI/Nymph_8B](https://huggingface.co/ResplendentAI/Nymph_8B)
* [ChaoticNeutrals/T-900-8B](https://huggingface.co/ChaoticNeutrals/T-900-8B)
* [Sao10K/L3-8B-Niitama-v1](https://huggingface.co/Sao10K/L3-8B-Niitama-v1)
* [bluuwhale/L3-SthenoMaidBlackroot-8B-V1](https://huggingface.co/bluuwhale/L3-SthenoMaidBlackroot-8B-V1)
* [Hastagaras/Jamet-8B-L3-MK.V-Blackroot](https://huggingface.co/Hastagaras/Jamet-8B-L3-MK.V-Blackroot)
* [Hastagaras/Halu-8B-Llama3-Blackroot](https://huggingface.co/Hastagaras/Halu-8B-Llama3-Blackroot)
* [crestf411/L3-8B-sunfall-v0.4-stheno-v3.2](https://huggingface.co/crestf411/L3-8B-sunfall-v0.4-stheno-v3.2)

***
***
## Evaluation Results

***
### [Open LLM Leaderboard](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)

**Explaination for AI RP newbies:** IFEval is the most important evaluation for RP AIs as it determines how well it can follow OOC, Lorebooks, and most importantly character cards.
The rest don't matter. At least not nearly as much as IFEval.

|Metric             |  Value|
|:------------------|------:|
|Avg.               |N/A|
|IFEval (0-Shot)    |N/A|
|BBH (3-Shot)       |N/A|
|MATH Lvl 5 (4-Shot)|N/A|
|GPQA (0-shot)      |N/A|
|MuSR (0-shot)      |N/A|
|MMLU-PRO (5-shot)  |N/A|

***
### [UGI Leaderboard](https://huggingface.co/spaces/DontPlanToEnd/UGI-Leaderboard)

Information about the metrics can be found at the bottom of the [UGI Leaderboard](https://huggingface.co/spaces/DontPlanToEnd/UGI-Leaderboard) in the respective tabs.

|Metric(UGI-Leaderboard)  | Value | Value |  Metric(Writing Style)|
|:------------------------|:-----:|:-----:|----------------------:|
|UGI(Avg.)                |N/A|N/A|RegV1                  |
|W/10                     |N/A|N/A|RegV2                  |
|Unruly                   |N/A|N/A|MyScore                |
|Internet                 |N/A|N/A|ASSS                   |
|Stats                    |N/A|N/A|SMOG                   |
|Writing                  |N/A|N/A|Yule                   |
|PolContro                |N/A|       |                       |

***
***
## Secret Sauce

The following YAML configs were used to make this merge.

***
### Super-Nova-CRE_pt.1

```yaml
models:
  - model: nothingiisreal/L3-8B-Celeste-v1
  - model: Nitral-AI/Hathor_Tahsin-L3-8B-v0.85
    parameters:
      density: [0.35, 0.45, 0.5, 0.55, 0.65, 0.55, 0.5, 0.45, 0.35]
      weight: [0.495, 0.165, 0.165, 0.495, 0.495, 0.165, 0.165, 0.495]
  - model: Sao10K/L3-8B-Stheno-v3.2
    parameters:
      density: [0.65, 0.55, 0.5, 0.45, 0.35, 0.45, 0.5, 0.55, 0.65]
      weight: [0.165, 0.495, 0.495, 0.165, 0.165, 0.495, 0.495, 0.165]
merge_method: dare_ties
base_model: nothingiisreal/L3-8B-Celeste-v1
parameters:
  normalize: false
  int8_mask: true
dtype: float32
out_dtype: bfloat16
```

***
### Super-Nova-CRE_pt.2

```yaml
models:
  - model: nothingiisreal/L3-8B-Celeste-v1
  - model: ChaoticNeutrals/Poppy_Porpoise-1.0-L3-8B
    parameters:
      density: [0.35, 0.45, 0.5, 0.55, 0.65, 0.55, 0.5, 0.45, 0.35]
      weight: [0.165, 0.495, 0.495, 0.165, 0.165, 0.495, 0.495, 0.165]
  - model: Sao10K/L3-8B-Lunaris-v1
    parameters:
      density: [0.65, 0.55, 0.5, 0.45, 0.35, 0.45, 0.5, 0.55, 0.65]
      weight: [0.495, 0.165, 0.165, 0.495, 0.495, 0.165, 0.165, 0.495]
merge_method: dare_ties
base_model: nothingiisreal/L3-8B-Celeste-v1
parameters:
  normalize: false
  int8_mask: true
dtype: float32
out_dtype: bfloat16
```

***
### Super-Nova-UNC_pt.1

```yaml
models:
  - model: turboderp/llama3-turbcat-instruct-8b
  - model: ChaoticNeutrals/Domain-Fusion-L3-8B
    parameters:
      density: 0.5
      weight: [0.495, 0.165, 0.165, 0.495, 0.495, 0.165, 0.165, 0.495]
  - model: migtissera/Llama-3-8B-Synthia-v3.5
    parameters:
      density: 0.5
      weight: [0.165, 0.495, 0.495, 0.165, 0.165, 0.495, 0.495, 0.165]
merge_method: dare_ties
base_model: turboderp/llama3-turbcat-instruct-8b
parameters:
  normalize: false
  int8_mask: true
dtype: float32
out_dtype: bfloat16
```

***
### Super-Nova-UNC_pt.2

```yaml
models:
  - model: turboderp/llama3-turbcat-instruct-8b
  - model: TheDrummer/Llama-3SOME-8B-v2
    parameters:
      density: 0.5
      weight: [0.165, 0.495, 0.495, 0.165, 0.165, 0.495, 0.495, 0.165]
  - model: ChaoticNeutrals/Hathor_RP-v.01-L3-8B
    parameters:
      density: 0.5
      weight: [0.495, 0.165, 0.165, 0.495, 0.495, 0.165, 0.165, 0.495]
merge_method: dare_ties
base_model: turboderp/llama3-turbcat-instruct-8b
parameters:
  normalize: false
  int8_mask: true
dtype: float32
out_dtype: bfloat16
```

***
### Super-Nova-INT_pt.1

```yaml
models:
  - model: TheSkullery/llama-3-cat-8b-instruct-v1
  - model: FPHam/L3-8B-Everything-COT
    parameters: 
      density: 0.5
      weight: [0.139, 0.139, 0.208, 0.139, 0.208]
  - model: Ayush-1722/Meta-Llama-3-8B-Instruct-Summarize-v0.2-24K-LoRANET-Merged
    parameters: 
      density: 0.5
      weight: [0.139, 0.208, 0.139, 0.208, 0.139]
  - model: OEvortex/Emotional-llama-8B
    parameters: 
      density: 0.5
      weight: [0.208, 0.139, 0.208, 0.139, 0.139]
  - model: lighteternal/Llama3-merge-biomed-8b
    parameters: 
      density: 0.5
      weight: [0.208, 0.139, 0.139, 0.139, 0.208]
  - model: Casual-Autopsy/Llama3-merge-psychotherapy-8b
    parameters: 
      density: 0.5
      weight: [0.139, 0.208, 0.139, 0.208, 0.139]
merge_method: ties
base_model: TheSkullery/llama-3-cat-8b-instruct-v1
parameters:
  normalize: false
  int8_mask: true
dtype: float32
out_dtype: bfloat16
```

***
### Super-Nova-INT_pt.2

```yaml
models:
  - model: TheSkullery/llama-3-cat-8b-instruct-v1
  - model: FPHam/L3-8B-Everything-COT
    parameters:
      density: 0.9
        gamma: 0.01
        weight: [0.139, 0.208, 0.208, 0.139, 0.139]
  - model: Ayush-1722/Meta-Llama-3-8B-Instruct-Summarize-v0.2-24K-LoRANET-Merged
    parameters:
      density: 0.9
      gamma: 0.01
      weight: [0.208, 0.139, 0.139, 0.139, 0.208]
  - model: OEvortex/Emotional-llama-8B
    parameters:
      density: 0.9
      gamma: 0.01
      weight: [0.139, 0.139, 0.208, 0.208, 0.139]
  - model: lighteternal/Llama3-merge-biomed-8b
    parameters:
      density: 0.9
      gamma: 0.01
      weight: [0.139, 0.208, 0.139, 0.208, 0.139]
  - model: Casual-Autopsy/Llama3-merge-psychotherapy-8b
    parameters:
      density: 0.9
      gamma: 0.01
      weight: [0.208, 0.139, 0.139, 0.139, 0.208]
merge_method: breadcrumbs_ties
base_model: TheSkullery/llama-3-cat-8b-instruct-v1
parameters:
  normalize: false
  int8_mask: true
dtype: float32
out_dtype: bfloat16
```

***
### Super-Nova-CRE

```yaml

models:
  - model:  Casual-Autopsy/Super-Nova-CRE_pt.1
  - model: Casual-Autopsy/Super-Nova-CRE_pt.2
merge_method: slerp
base_model: Casual-Autopsy/Super-Nova-CRE_pt.1
parameters:
  t:
    - filter: self_attn
      value: [0.5, 0.3, 0.7, 0.5, 0.7, 0.3, 0.5, 0.3, 0.7, 0.5, 0.7, 0.3, 0.5]
    - filter: mlp
      value: [0.5, 0.7, 0.3, 0.5, 0.3, 0.7, 0.5, 0.7, 0.3, 0.5, 0.3, 0.7, 0.5]
    - value: 0.5
  embed_slerp: true
dtype: float32
out_dtype: bfloat16
```

***
### Super-Nova-UNC

```yaml
models:
  - model: Casual-Autopsy/Super-Nova-UNC_pt.1
  - model: Casual-Autopsy/Super-Nova-UNC_pt.2
merge_method: slerp
base_model: Casual-Autopsy/Super-Nova-UNC_pt.1
parameters:
  t:
    - value: [0.5, 0.7, 0.3, 0.5, 0.3, 0.7, 0.5, 0.7, 0.3, 0.5, 0.3, 0.7, 0.5]
  embed_slerp: true
dtype: float32
out_dtype: bfloat16
```

***
### Super-Nova-INT

```yaml
models:
  - model: Casual-Autopsy/Super-Nova-INT_pt.1
  - model: Casual-Autopsy/Super-Nova-INT_pt.2
merge_method: slerp
base_model: Casual-Autopsy/Super-Nova-INT_pt.1
parameters:
  t:
    - value: 0.5
  embed_slerp: true
dtype: float32
out_dtype: bfloat16
```

***
### Super-Nova-RP_stp.1

```yaml

models:
  - model: Casual-Autopsy/Super-Nova-CRE
  - model: asual-Autopsy/Super-Nova-UNC
merge_method: slerp
base_model: Casual-Autopsy/Super-Nova-CRE
parameters:
  t:
    - value: [0.7, 0.5, 0.3, 0.25, 0.2, 0.25, 0.3, 0.5, 0.7]
  embed_slerp: true
dtype: float32
out_dtype: bfloat16

```

***
### Super-Nova-RP_stp.2

```yaml
models:
  - model: Casual-Autopsy/Super-Nova-RP_stp.1
  - model: Casual-Autopsy/Super-Nova-INT
merge_method: slerp
base_model: Casual-Autopsy/Super-Nova-RP_stp.1
parameters:
  t:
    - value: [0.1, 0.15, 0.2, 0.4, 0.6, 0.4, 0.2, 0.15, 0.1]
  embed_slerp: true
dtype: float32
out_dtype: bfloat16
```

***
### Super-Nova-RP_pt.1

```yaml
models:
  - model: Casual-Autopsy/Super-Nova-RP_stp.2
  - model: Sao10K/L3-8B-Tamamo-v1
    parameters:
      density: [0.4, 0.6, 0.5, 0.6, 0.4]
      epsilon: [0.15, 0.15, 0.25, 0.15, 0.15]
      lambda: 0.85
      weight: [-0.01523, 0.01768, -0.01384, 0.01835, -0.01247]
  - model: ResplendentAI/Nymph_8B
    parameters:
      density: [0.65, 0.35, 0.5, 0.35, 0.65]
      epsilon: [0.1, 0.1, 0.25, 0.1, 0.1]
      lambda: 0.85
      weight: [0.01823, -0.01647, 0.01422, -0.01975, 0.01128]
  - model: ChaoticNeutrals/T-900-8B
    parameters:
      density: [0.35, 0.65, 0.5, 0.65, 0.35]
      epsilon: [0.1, 0.1, 0.25, 0.1, 0.1]
      lambda: 0.85
      weight: [-0.01891, 0.01554, -0.01325, 0.01791, -0.01458]
  - model: Sao10K/L3-8B-Niitama-v1
    parameters:
      density: [0.6, 0.4, 0.5, 0.4, 0.6]
      epsilon: [0.15, 0.15, 0.25, 0.15, 0.15]
      lambda: 0.85
      weight: [0.01768, -0.01675, 0.01285, -0.01696, 0.01421]
merge_method: della
base_model: Casual-Autopsy/Super-Nova-RP_stp.2
parameters:
  normalize: false
  int8_mask: true
dtype: float32
out_dtype: bfloat16
```

***
### Super-Nova-RP_pt.2

```yaml
models:
  - model: Casual-Autopsy/Super-Nova-RP_stp.2
  - model: bluuwhale/L3-SthenoMaidBlackroot-8B-V1
    parameters:
      density: [0.4, 0.6, 0.5, 0.6, 0.4]
      epsilon: [0.15, 0.15, 0.25, 0.15, 0.15]
      lambda: 0.85
      weight: [-0.01935, 0.01785, -0.01512, 0.01809, -0.01371]
  - model: Hastagaras/Jamet-8B-L3-MK.V-Blackroot
    parameters:
      density: [0.65, 0.35, 0.5, 0.35, 0.65]
      epsilon: [0.1, 0.1, 0.25, 0.1, 0.1]
      lambda: 0.85
      weight: [0.01847, -0.01468, 0.01503, -0.01822, 0.01459]
  - model: Hastagaras/Halu-8B-Llama3-Blackroot
    parameters:
      density: [0.35, 0.65, 0.5, 0.65, 0.35]
      epsilon: [0.1, 0.1, 0.25, 0.1, 0.1]
      lambda: 0.85
      weight: [-0.01578, 0.01821, -0.01753, 0.01677, -0.01442]
  - model: crestf411/L3-8B-sunfall-v0.4-stheno-v3.2
    parameters:
      density: [0.6, 0.5, 0.5, 0.5, 0.6]
      epsilon: [0.15, 0.15, 0.25, 0.15, 0.15]
      lambda: 0.85
      weight: [0.01667, -0.01740, 0.01560, -0.01564, 0.01315]
merge_method: della
base_model: Casual-Autopsy/Super-Nova-RP_stp.2
parameters:
  normalize: false
  int8_mask: true
dtype: float32
out_dtype: bfloat16
```

***
### L3-Super-Nova-RP-8B

```yaml
models:
  - model: Casual-Autopsy/Super-Nova-RP_stp.2
  - model: /kaggle/input/super-nova-rp_pt.4/transformers/hf/1
merge_method: slerp
base_model: /kaggle/input/super-nova-rp_pt.3/transformers/hf/1
parameters:
  t:
    - value: 0.5
dtype: float32
out_dtype: bfloat16
```