Naphula commited on
Commit
3563fb6
·
verified ·
1 Parent(s): ae1685a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -211
README.md CHANGED
@@ -13,214 +13,4 @@ tags:
13
  - nsfw
14
  ---
15
 
16
- <!DOCTYPE html>
17
- <style>
18
- @import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Sorts+Mill+Goudy&display=swap');
19
-
20
- body {
21
- font-family: 'Sorts Mill Goudy', serif;
22
- color: #D7CFC6; /* Bone White */
23
- line-height: 1.6;
24
- margin: 0;
25
- padding: 40px 0; /* Added padding for glow effect */
26
- background-color: #000000; /* Abyssal Black */
27
- background-image: url('https://www.transparenttextures.com/patterns/cracks.png'); /* Subtle crack texture */
28
- }
29
-
30
- b, strong {
31
- color: #FF4500; /* Searing Orange */
32
- font-weight: bold;
33
- }
34
-
35
- .infernal-text {
36
- font-family: 'Cinzel Decorative', cursive;
37
- color: #FF4500; /* Searing Orange */
38
- position: relative;
39
- z-index: 2;
40
- margin-left: 0.2em;
41
- text-shadow: 0 0 20px #FF0000, 0 0 10px #FF4500;
42
- }
43
-
44
- /* Section styling */
45
- .section-container {
46
- background-color: rgba(10, 10, 10, 0.6); /* Darker, more transparent */
47
- margin-bottom: 30px;
48
- position: relative;
49
- overflow: hidden;
50
- border: 1px solid #4D1A00; /* Deep Ember Border */
51
- border-radius: 2px;
52
- box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
53
- }
54
-
55
- .section-header {
56
- display: flex;
57
- align-items: center;
58
- background: linear-gradient(90deg, rgba(255, 69, 0, 0.25) 0%, rgba(10, 10, 10, 0) 100%);
59
- padding: 10px 20px;
60
- border-bottom: 1px solid #4D1A00;
61
- }
62
-
63
- .section-indicator {
64
- width: 8px;
65
- height: 20px;
66
- background-color: #FF4500;
67
- margin-right: 15px;
68
- box-shadow: 0 0 12px #FF0000;
69
- }
70
-
71
- .section-title {
72
- font-family: 'Cinzel Decorative', cursive;
73
- color: #D7CFC6;
74
- font-size: 1.4rem;
75
- margin: 0;
76
- letter-spacing: 1px;
77
- font-weight: 700;
78
- text-transform: capitalize;
79
- }
80
-
81
- .section-content {
82
- padding: 20px;
83
- font-family: 'Sorts Mill Goudy', serif;
84
- color: #D7CFC6;
85
- line-height: 1.7;
86
- }
87
-
88
- .section-content pre code {
89
- color: #FFB56E; /* Light Orange */
90
- }
91
-
92
- /* Title styling */
93
- .title-container {
94
- background-color: #0A0A0A;
95
- position: relative;
96
- overflow: hidden;
97
- margin-bottom: 40px;
98
- border: 2px solid #FF4500;
99
- box-shadow: 0 0 25px #FF4500
100
- }
101
-
102
- .title-wrapper {
103
- position: relative;
104
- z-index: 2;
105
- padding: 25px 20px 30px 30px;
106
- text-align: center;
107
- }
108
-
109
- .title-main {
110
- color: #D7CFC6;
111
- font-size: 1.8rem;
112
- font-weight: 700;
113
- margin: 0;
114
- letter-spacing: 2px;
115
- display: inline-block;
116
- position: relative;
117
- text-transform: uppercase;
118
- }
119
-
120
- /* Subheading styling */
121
- .subheading {
122
- font-family: 'Cinzel Decorative', cursive;
123
- color: #FF8C42; /* Fiery Orange */
124
- font-size: 1.1rem;
125
- margin-top: 20px;
126
- margin-bottom: 15px;
127
- font-weight: 700;
128
- border-bottom: 1px solid #5E2D14;
129
- display: inline-block;
130
- text-transform: uppercase;
131
- letter-spacing: 1px;
132
- }
133
-
134
- /* Links */
135
- a {
136
- color: #FF8C42;
137
- text-decoration: none;
138
- font-weight: bold;
139
- }
140
-
141
- a:hover {
142
- text-decoration: underline;
143
- color: #FFB56E; /* Light Orange on hover */
144
- }
145
-
146
- /* Container */
147
- .container {
148
- max-width: 1200px;
149
- margin: 20px auto;
150
- padding: 40px 20px;
151
- background-color: #111111; /* Dark Charcoal */
152
- min-height: calc(100vh - 120px); /* Adjusted for body padding */
153
- border: 2px solid #FF4500;
154
- border-radius: 4px;
155
- box-shadow: 0 0 25px #FF4500;
156
- }
157
-
158
- </style>
159
- <html lang="en">
160
- <head>
161
- <meta charset="UTF-8">
162
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
163
- <title>Asmodeus-24B</title>
164
- </head>
165
- <body>
166
-
167
- <div class="container">
168
- <div class="title-container">
169
- <div class="title-wrapper">
170
- <h1 class="title-main">
171
- <span class="infernal-text">Asmodeus 24B v1</span>
172
- </h1>
173
- </div>
174
- </div>
175
-
176
- <img src="https://i.imgur.com/QcANSNG.jpeg" alt="Asmodeus" style="width:100%; border-radius: 2px; margin-bottom: 30px; border: 1px solid #4D1A00;">
177
-
178
- <div class="section-container">
179
- <div class="section-header">
180
- <div class="section-indicator"></div>
181
- <h2 class="section-title">Infernal Invocation</h2>
182
- </div>
183
- <div class="section-content"><font face="verdana">
184
- <b><a href="https://ia601406.us.archive.org/8/items/12.-j.-s.-bach-toccata-and-fugue-in-d-minor-bwv-565-raymond-daveluy-organ/12.%20J.S.%20Bach%20Toccata%20And%20Fugue%20in%20D%20Minor%2C%20BWV%20565%20-%20Raymond%20Daveluy%2C%20Organ.mp3">“Once you introduce enough chaos, people will willingly abandon reason for the comfort of madness.” - Asmodeus</a></b><br><br>
185
- This is a <b>fully uncensored and articulate</b> merge of pre-trained language models, summoned into existence with <a href="https://github.com/cg123/mergekit">mergekit</a>.<br><br>Asmodeus synergistically combines the advanced intelligence of Magidonia with DolphinVenice's unrestricted prompt adherence, Fallen's arcane wisdom, and PaintedFantasy's creative prose/roleplay.<br><br>
186
- <b>Observations:</b>
187
- <ul><li>Asmodeus has zero refusals. No jailbreaks are required. The model is capable of generating evil, graphic and NSFW content.</li>
188
- <li><b>Top NSigma</b> set to <b>1.26</b> vastly improves creativity and quality.</li>
189
- <li>This model can be considered a culmination of everything envisioned for the Cthulhu, Kraken and Goetia merge series.</li>
190
- <li><b>Karcher</b> is seemingly superior to other methods for this type of merge, especially DARE/TIES. It appears to preserve more nuance, logic and reasoning.</li>
191
- <li>Adding Cydonia v4r on top of Magidonia v4s was instrumental for rooting the "Karcher mean" towards greater complexity.</li>
192
- <li>Several <a href="https://huggingface.co/Naphula/Checkpoint-GGUFs">checkpoints</a> (over 20) were tested for v1 (A-R). CPJ was the "smartest" and most consistent overall.</li>
193
- <li>I tried adding more uncensored models like Mullein and BlackSheep, but unfortunately they lowered the quality too much. Models like Animus and Harbinger brought back refusals.</li>
194
- <li>I have yet to find any base models which pass the <a href="https://huggingface.co/Naphula/Q0_Benchmark">Q0G litmus test</a>. Even GLM 4.6 failed. This is not a good sign for AGI.</li></ul>
195
- </div>
196
- </div>
197
-
198
- <div class="section-container">
199
- <div class="section-header">
200
- <div class="section-indicator"></div>
201
- <h2 class="section-title">Hellforged Parameters</h2>
202
- </div>
203
- <div class="section-content"><font face="verdana">
204
- The following edict was used to forge this entity:
205
- <pre style="font-family: 'Courier New', Courier, monospace; white-space: pre; margin: 0; background-color: rgba(0,0,0,0.4); padding: 15px; border-radius: 2px; border: 1px solid #4D1A00;"><code>architecture: MistralForCausalLM
206
- merge_method: karcher
207
- dtype: bfloat16
208
- models:
209
- - model: Naphula/BeaverAI_Fallen-Mistral-Small-3.1-24B-v1e_textonly
210
- - model: TheDrummer/Magidonia-24B-v4.2.0
211
- - model: dphn/Dolphin-Mistral-24B-Venice-Edition
212
- - model: TheDrummer/Cydonia-24B-v4.2.0
213
- - model: zerofata/MS3.2-PaintedFantasy-v2-24B
214
- parameters:
215
- tokenizer:
216
- source: union
217
- chat_template: auto</code></pre><br>
218
- <b>Checkpoint GGUFs:</b><br>
219
- Q6 GGUFs and yaml config archives for various checkpoint model tests.<br><br>
220
- Download: <b><a href="https://huggingface.co/Naphula/Checkpoint-GGUFs">https://huggingface.co/Naphula/Checkpoint-GGUFs</a></b>
221
- <img src="https://i.imgur.com/TCGnugG.jpeg" width=300></img>
222
- </div>
223
- </div>
224
- </div>
225
- </body>
226
- </html>
 
13
  - nsfw
14
  ---
15
 
16
+ Checkpoint J safetensors. A prototype test of Asmodeus.