Update README.md
Browse files
README.md
CHANGED
|
@@ -1,334 +1,229 @@
|
|
| 1 |
-
|
| 2 |
-
base_model:
|
| 3 |
-
- Delta-Vector/Francois-PE
|
| 4 |
-
library_name: transformers
|
| 5 |
-
tags:
|
| 6 |
-
- fine-tuning
|
| 7 |
-
- prose
|
| 8 |
-
- KTO
|
| 9 |
-
license: cc-by-nc-4.0
|
| 10 |
-
---
|
| 11 |
-
<style>
|
| 12 |
-
body {
|
| 13 |
-
font-family: 'Quicksand', sans-serif;
|
| 14 |
-
background: linear-gradient(135deg, #f9ffd1 0%, #e2fab5 100%);
|
| 15 |
-
color: #000000;
|
| 16 |
-
margin: 0;
|
| 17 |
-
padding: 0;
|
| 18 |
-
font-size: 16px;
|
| 19 |
-
}
|
| 20 |
-
.container {
|
| 21 |
-
margin: 20px;
|
| 22 |
-
background-color: rgba(255, 255, 255, 0.9);
|
| 23 |
-
padding: 20px;
|
| 24 |
-
border-radius: 12px;
|
| 25 |
-
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
| 26 |
-
border: 3px solid #000000;
|
| 27 |
-
position: relative;
|
| 28 |
-
}
|
| 29 |
-
.header h1 {
|
| 30 |
-
font-size: 28px;
|
| 31 |
-
color: #000000;
|
| 32 |
-
margin: 0 0 20px 0;
|
| 33 |
-
text-align: center;
|
| 34 |
-
text-decoration: underline;
|
| 35 |
-
}
|
| 36 |
-
.section {
|
| 37 |
-
margin-top: 30px;
|
| 38 |
-
}
|
| 39 |
-
.section h2 {
|
| 40 |
-
font-size: 24px;
|
| 41 |
-
color: #000000;
|
| 42 |
-
text-align: center;
|
| 43 |
-
text-decoration: underline;
|
| 44 |
-
}
|
| 45 |
-
.info p {
|
| 46 |
-
color: #000000;
|
| 47 |
-
line-height: 1.6;
|
| 48 |
-
font-size: 16px;
|
| 49 |
-
}
|
| 50 |
-
.info img {
|
| 51 |
-
width: 85%;
|
| 52 |
-
border-radius: 10px;
|
| 53 |
-
margin: 0 auto 15px;
|
| 54 |
-
display: block;
|
| 55 |
-
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
| 56 |
-
border: 1px solid #000000;
|
| 57 |
-
}
|
| 58 |
-
a {
|
| 59 |
-
color: #000000;
|
| 60 |
-
text-decoration: none;
|
| 61 |
-
transition: color 0.2s ease;
|
| 62 |
-
}
|
| 63 |
-
a:hover {
|
| 64 |
-
color: #538125;
|
| 65 |
-
}
|
| 66 |
-
.button {
|
| 67 |
-
display: inline-block;
|
| 68 |
-
background-color: rgba(106, 168, 79, 0.8);
|
| 69 |
-
color: #000000;
|
| 70 |
-
padding: 10px 20px;
|
| 71 |
-
border-radius: 5px;
|
| 72 |
-
cursor: pointer;
|
| 73 |
-
text-decoration: none;
|
| 74 |
-
transition: background-color 0.2s ease, box-shadow 0.2s ease;
|
| 75 |
-
}
|
| 76 |
-
.button:hover {
|
| 77 |
-
background-color: #538125;
|
| 78 |
-
box-shadow: 0 0 15px rgba(106, 168, 79, 0.5);
|
| 79 |
-
}
|
| 80 |
-
pre {
|
| 81 |
-
background-color: rgba(240, 248, 225, 0.95);
|
| 82 |
-
padding: 15px;
|
| 83 |
-
border-radius: 5px;
|
| 84 |
-
overflow-x: auto;
|
| 85 |
-
border: 1px solid #000000;
|
| 86 |
-
}
|
| 87 |
-
code {
|
| 88 |
-
font-family: 'Courier New', monospace;
|
| 89 |
-
color: #000000;
|
| 90 |
-
}
|
| 91 |
-
.info-card {
|
| 92 |
-
background: rgba(249, 255, 235, 0.95);
|
| 93 |
-
border: 1px solid #000000;
|
| 94 |
-
border-radius: 8px;
|
| 95 |
-
overflow: hidden;
|
| 96 |
-
}
|
| 97 |
-
.info-header {
|
| 98 |
-
background: rgba(106, 168, 79, 0.1);
|
| 99 |
-
padding: 20px;
|
| 100 |
-
border-bottom: 1px solid #000000;
|
| 101 |
-
}
|
| 102 |
-
.info-header h3 {
|
| 103 |
-
color: #000000;
|
| 104 |
-
margin: 0 0 10px 0;
|
| 105 |
-
font-size: 20px;
|
| 106 |
-
text-align: center;
|
| 107 |
-
text-decoration: underline;
|
| 108 |
-
}
|
| 109 |
-
.model-tags {
|
| 110 |
-
display: flex;
|
| 111 |
-
gap: 8px;
|
| 112 |
-
flex-wrap: wrap;
|
| 113 |
-
}
|
| 114 |
-
.model-tag {
|
| 115 |
-
background: rgba(106, 168, 79, 0.1);
|
| 116 |
-
color: #000000;
|
| 117 |
-
padding: 4px 8px;
|
| 118 |
-
border-radius: 4px;
|
| 119 |
-
font-size: 12px;
|
| 120 |
-
border: 1px solid #000000;
|
| 121 |
-
}
|
| 122 |
-
.model-composition {
|
| 123 |
-
padding: 20px;
|
| 124 |
-
border-bottom: 1px solid #000000;
|
| 125 |
-
}
|
| 126 |
-
.model-composition h4 {
|
| 127 |
-
color: #000000;
|
| 128 |
-
margin: 0 0 15px 0;
|
| 129 |
-
font-size: 16px;
|
| 130 |
-
text-align: center;
|
| 131 |
-
text-decoration: underline;
|
| 132 |
-
}
|
| 133 |
-
.composition-list {
|
| 134 |
-
list-style: none;
|
| 135 |
-
padding: 0;
|
| 136 |
-
margin: 0;
|
| 137 |
-
display: grid;
|
| 138 |
-
gap: 10px;
|
| 139 |
-
}
|
| 140 |
-
.composition-list li {
|
| 141 |
-
color: #000000;
|
| 142 |
-
display: flex;
|
| 143 |
-
align-items: baseline;
|
| 144 |
-
gap: 8px;
|
| 145 |
-
}
|
| 146 |
-
.model-component {
|
| 147 |
-
font-weight: 500;
|
| 148 |
-
min-width: 120px;
|
| 149 |
-
}
|
| 150 |
-
.model-description {
|
| 151 |
-
padding: 20px;
|
| 152 |
-
background: rgba(255, 255, 255, 0.5);
|
| 153 |
-
}
|
| 154 |
-
.metrics-section {
|
| 155 |
-
margin-bottom: 30px;
|
| 156 |
-
}
|
| 157 |
-
.metrics-section details {
|
| 158 |
-
background: rgba(249, 255, 235, 0.95);
|
| 159 |
-
border: 1px solid #000000;
|
| 160 |
-
border-radius: 8px;
|
| 161 |
-
padding: 15px;
|
| 162 |
-
margin-bottom: 15px;
|
| 163 |
-
}
|
| 164 |
-
.metrics-section summary {
|
| 165 |
-
color: #000000;
|
| 166 |
-
font-size: 18px;
|
| 167 |
-
cursor: pointer;
|
| 168 |
-
outline: none;
|
| 169 |
-
padding: 5px 0;
|
| 170 |
-
text-align: center;
|
| 171 |
-
}
|
| 172 |
-
.creator-section {
|
| 173 |
-
margin: 20px 0;
|
| 174 |
-
}
|
| 175 |
-
.creator-badge {
|
| 176 |
-
display: inline-flex;
|
| 177 |
-
align-items: center;
|
| 178 |
-
background: rgba(249, 255, 235, 0.95);
|
| 179 |
-
border: 1px solid #000000;
|
| 180 |
-
border-radius: 8px;
|
| 181 |
-
padding: 10px 15px;
|
| 182 |
-
}
|
| 183 |
-
.creator-label {
|
| 184 |
-
color: #000000;
|
| 185 |
-
font-size: 14px;
|
| 186 |
-
margin-right: 8px;
|
| 187 |
-
}
|
| 188 |
-
.creator-link {
|
| 189 |
-
display: flex;
|
| 190 |
-
align-items: center;
|
| 191 |
-
gap: 5px;
|
| 192 |
-
color: #000000;
|
| 193 |
-
text-decoration: none;
|
| 194 |
-
transition: all 0.2s ease;
|
| 195 |
-
}
|
| 196 |
-
.creator-name {
|
| 197 |
-
font-weight: 600;
|
| 198 |
-
}
|
| 199 |
-
.creator-arrow {
|
| 200 |
-
font-size: 16px;
|
| 201 |
-
transition: transform 0.2s ease;
|
| 202 |
-
}
|
| 203 |
-
.creator-link:hover .creator-arrow {
|
| 204 |
-
transform: translateX(3px);
|
| 205 |
-
}
|
| 206 |
-
.link-arrow {
|
| 207 |
-
display: inline-block;
|
| 208 |
-
transition: transform 0.2s ease;
|
| 209 |
-
}
|
| 210 |
-
a:hover .link-arrow {
|
| 211 |
-
transform: translateX(3px);
|
| 212 |
-
}
|
| 213 |
-
.axolotl-container {
|
| 214 |
-
text-align: center;
|
| 215 |
-
margin: 30px 0;
|
| 216 |
-
}
|
| 217 |
-
.axolotl-container img {
|
| 218 |
-
max-width: 300px;
|
| 219 |
-
border-radius: 8px;
|
| 220 |
-
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
|
| 221 |
-
border: 1px solid #000000;
|
| 222 |
-
}
|
| 223 |
-
</style>
|
| 224 |
<html lang="en">
|
| 225 |
<head>
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 230 |
</head>
|
| 231 |
<body>
|
| 232 |
-
|
| 233 |
-
|
| 234 |
-
|
| 235 |
-
|
| 236 |
-
<div class="info">
|
| 237 |
-
<img src="https://cdn-uploads.huggingface.co/production/uploads/66c26b6fb01b19d8c3c2467b/qUdM9qgZWeyfxwdds9QRZ.jpeg" alt="Model banner">
|
| 238 |
-
<div style="text-align: center;">
|
| 239 |
-
<div class="creator-section">
|
| 240 |
-
<div class="creator-badge">
|
| 241 |
-
<span class="creator-label">Created by</span>
|
| 242 |
-
<a href="https://huggingface.co/Delta-Vector" target="_blank" class="creator-link">
|
| 243 |
-
<span class="creator-name">Delta-Vector</span>
|
| 244 |
-
<span class="creator-arrow">→</span>
|
| 245 |
-
</a>
|
| 246 |
-
</div>
|
| 247 |
-
</div>
|
| 248 |
-
<div class="model-info">
|
| 249 |
-
<h2>Model Information</h2>
|
| 250 |
-
<div class="info-card">
|
| 251 |
-
<div class="info-header">
|
| 252 |
-
<h3>François-Huali 12B V2</h3>
|
| 253 |
-
<div class="model-tags">
|
| 254 |
-
<span class="model-tag">KTO enhanced</span>
|
| 255 |
-
<span class="model-tag">Dans-Personality-Engine finetune</span>
|
| 256 |
-
<span class="model-tag">Coherent Prose</span>
|
| 257 |
-
<span class="model-tag">12B Parameters</span>
|
| 258 |
-
</div>
|
| 259 |
-
</div>
|
| 260 |
-
<div class="model-description">
|
| 261 |
-
<p>A sequel! A sequel to my Francois-PE/Huali train, Built ontop of Dans-PE-12B that was finetuned with Light novels, Books, Roleplay logs, to change writing style to be rather short & sweet, Huali uses KTO to increase coherency and prose. The model aims to have a different style of writing/prose then any other NeMo train.</p>
|
| 262 |
-
</div>
|
| 263 |
</div>
|
| 264 |
-
|
| 265 |
-
|
| 266 |
-
|
| 267 |
-
<
|
| 268 |
-
|
| 269 |
-
<
|
| 270 |
-
|
| 271 |
-
|
| 272 |
-
|
| 273 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 274 |
</div>
|
| 275 |
-
|
| 276 |
-
|
| 277 |
-
<
|
| 278 |
-
<p>Model has been tuned with the ChatML formatting. A typical input would look like this:</p>
|
| 279 |
-
<pre><code>"""<|im_start|>user
|
| 280 |
-
Hi there!<|im_end|>
|
| 281 |
-
<|im_start|>assistant
|
| 282 |
-
Nice to meet you!<|im_end|>
|
| 283 |
-
<|im_start|>user
|
| 284 |
-
Can I ask a question?<|im_end|>
|
| 285 |
-
<|im_start|>assistant
|
| 286 |
-
"""</code></pre>
|
| 287 |
-
</div>
|
| 288 |
-
<div class="section">
|
| 289 |
-
<h2>System Prompting</h2>
|
| 290 |
-
<p>I would highly recommend using either Euryale's system prompt or the EVA system prompt with the model.</p>
|
| 291 |
-
<div class="metrics-section">
|
| 292 |
-
<details>
|
| 293 |
-
<summary>See Sao10k's Euryale System Prompt</summary>
|
| 294 |
-
<pre><code>Currently, your role is {{char}}, described in detail below. As {{char}}, continue the narrative exchange with {{user}}.
|
| 295 |
-
<Guidelines>
|
| 296 |
-
• Maintain the character persona but allow it to evolve with the story.
|
| 297 |
-
• Be creative and proactive. Drive the story forward, introducing plotlines and events when relevant.
|
| 298 |
-
• All types of outputs are encouraged; respond accordingly to the narrative.
|
| 299 |
-
• Include dialogues, actions, and thoughts in each response.
|
| 300 |
-
• Utilize all five senses to describe scenarios within {{char}}'s dialogue.
|
| 301 |
-
• Use emotional symbols such as "!" and "~" in appropriate contexts.
|
| 302 |
-
• Incorporate onomatopoeia when suitable.
|
| 303 |
-
• Allow time for {{user}} to respond with their own input, respecting their agency.
|
| 304 |
-
• Act as secondary characters and NPCs as needed, and remove them when appropriate.
|
| 305 |
-
• When prompted for an Out of Character [OOC:] reply, answer neutrally and in plaintext, not as {{char}}.
|
| 306 |
-
</Guidelines>
|
| 307 |
|
| 308 |
-
|
| 309 |
-
|
| 310 |
-
|
| 311 |
-
|
| 312 |
-
|
| 313 |
-
|
| 314 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 315 |
|
| 316 |
-
|
| 317 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 318 |
</div>
|
| 319 |
-
</div>
|
| 320 |
-
<div class="section">
|
| 321 |
-
<h2>Training</h2>
|
| 322 |
-
<p>The training was done for 1 epoch using 8 x <a href="https://www.nvidia.com/en-us/data-center/h200/">H200s</a> GPUs graciously provided by <a href="https://huggingface.co/kalomaze">Kalomaze</a> for the fine-tuning of the model.</p>
|
| 323 |
-
<p style="text-align: center; margin-top: 20px;">
|
| 324 |
-
<div class="axolotl-container">
|
| 325 |
-
<a href="https://github.com/OpenAccess-AI-Collective/axolotl" target="_blank">
|
| 326 |
-
<img src="https://raw.githubusercontent.com/OpenAccess-AI-Collective/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl">
|
| 327 |
-
</a>
|
| 328 |
-
</div>
|
| 329 |
-
<div class="section">
|
| 330 |
-
<h2>Credits</h2>
|
| 331 |
-
<p>Thank you to <a href="https://huggingface.co/lucyknada">Lucy Knada</a>, <a href="https://huggingface.co/Ateron">Ateron</a>, <a href="https://huggingface.co/AliCat2">Alicat</a>, <a href="https://huggingface.co/intervitens">Intervitens</a>, <a href="https://huggingface.co/cgato">Cgato</a>, <a href="https://huggingface.co/kubernetes-bad">Kubernetes Bad</a> and the rest of <a href="https://huggingface.co/anthracite-org">Anthracite</a>.</p>
|
| 332 |
-
</div>
|
| 333 |
</div>
|
| 334 |
-
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>AuraInfernum-70B - The Fallen Light</title>
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 10 |
+
line-height: 1.6;
|
| 11 |
+
color: #E0E0E0;
|
| 12 |
+
background-color: #1A1A1A;
|
| 13 |
+
margin: 0;
|
| 14 |
+
padding: 20px;
|
| 15 |
+
}
|
| 16 |
+
.container {
|
| 17 |
+
max-width: 900px;
|
| 18 |
+
margin: 20px auto;
|
| 19 |
+
background-color: #2A2A2A;
|
| 20 |
+
padding: 30px;
|
| 21 |
+
border-radius: 10px;
|
| 22 |
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
|
| 23 |
+
border: 1px solid #444;
|
| 24 |
+
}
|
| 25 |
+
h1, h2, h3 {
|
| 26 |
+
color: #FFD700; /* Gold */
|
| 27 |
+
border-bottom: 2px solid #5A5A5A;
|
| 28 |
+
padding-bottom: 10px;
|
| 29 |
+
margin-top: 30px;
|
| 30 |
+
}
|
| 31 |
+
h1 {
|
| 32 |
+
text-align: center;
|
| 33 |
+
font-size: 2.5em;
|
| 34 |
+
color: #E4E4E4;
|
| 35 |
+
text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
|
| 36 |
+
}
|
| 37 |
+
.model-banner {
|
| 38 |
+
width: 100%;
|
| 39 |
+
height: 300px; /* Placeholder height */
|
| 40 |
+
background-color: #333;
|
| 41 |
+
display: flex;
|
| 42 |
+
align-items: center;
|
| 43 |
+
justify-content: center;
|
| 44 |
+
font-size: 1.5em;
|
| 45 |
+
color: #BBB;
|
| 46 |
+
border-radius: 8px;
|
| 47 |
+
margin-bottom: 20px;
|
| 48 |
+
overflow: hidden;
|
| 49 |
+
position: relative;
|
| 50 |
+
box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
|
| 51 |
+
}
|
| 52 |
+
.model-banner img {
|
| 53 |
+
width: 100%;
|
| 54 |
+
height: 100%;
|
| 55 |
+
object-fit: cover;
|
| 56 |
+
}
|
| 57 |
+
.ko-fi-button {
|
| 58 |
+
display: inline-block;
|
| 59 |
+
background-color: #FF5E5B; /* Ko-fi default red */
|
| 60 |
+
color: white;
|
| 61 |
+
padding: 12px 25px;
|
| 62 |
+
border-radius: 5px;
|
| 63 |
+
text-decoration: none;
|
| 64 |
+
font-weight: bold;
|
| 65 |
+
margin-top: 20px;
|
| 66 |
+
transition: background-color 0.3s ease, transform 0.2s ease;
|
| 67 |
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
|
| 68 |
+
}
|
| 69 |
+
.ko-fi-button:hover {
|
| 70 |
+
background-color: #E64A47;
|
| 71 |
+
transform: translateY(-2px);
|
| 72 |
+
}
|
| 73 |
+
.quantization-table {
|
| 74 |
+
width: 100%;
|
| 75 |
+
border-collapse: collapse;
|
| 76 |
+
margin-top: 20px;
|
| 77 |
+
border: 1px solid #555;
|
| 78 |
+
}
|
| 79 |
+
.quantization-table th, .quantization-table td {
|
| 80 |
+
border: 1px solid #555;
|
| 81 |
+
padding: 10px;
|
| 82 |
+
text-align: left;
|
| 83 |
+
color: #E0E0E0;
|
| 84 |
+
}
|
| 85 |
+
.quantization-table th {
|
| 86 |
+
background-color: #3A3A3A;
|
| 87 |
+
color: #FFD700;
|
| 88 |
+
}
|
| 89 |
+
.code-block {
|
| 90 |
+
background-color: #222;
|
| 91 |
+
border: 1px solid #444;
|
| 92 |
+
border-radius: 5px;
|
| 93 |
+
padding: 15px;
|
| 94 |
+
overflow-x: auto;
|
| 95 |
+
margin-bottom: 20px;
|
| 96 |
+
font-family: 'Courier New', Courier, monospace;
|
| 97 |
+
color: #ADD8E6; /* LightBlue */
|
| 98 |
+
}
|
| 99 |
+
details {
|
| 100 |
+
background-color: #333;
|
| 101 |
+
border: 1px solid #555;
|
| 102 |
+
border-radius: 5px;
|
| 103 |
+
padding: 15px;
|
| 104 |
+
margin-top: 20px;
|
| 105 |
+
color: #E0E0E0;
|
| 106 |
+
}
|
| 107 |
+
details summary {
|
| 108 |
+
font-weight: bold;
|
| 109 |
+
cursor: pointer;
|
| 110 |
+
color: #FFD700;
|
| 111 |
+
}
|
| 112 |
+
details pre {
|
| 113 |
+
margin-top: 10px;
|
| 114 |
+
background-color: #222;
|
| 115 |
+
border: 1px solid #444;
|
| 116 |
+
padding: 10px;
|
| 117 |
+
border-radius: 3px;
|
| 118 |
+
overflow-x: auto;
|
| 119 |
+
}
|
| 120 |
+
.thank-you-section {
|
| 121 |
+
text-align: center;
|
| 122 |
+
margin-top: 50px;
|
| 123 |
+
padding-top: 20px;
|
| 124 |
+
border-top: 2px dashed #5A5A5A;
|
| 125 |
+
color: #B0B0B0;
|
| 126 |
+
}
|
| 127 |
+
.thank-you-section p {
|
| 128 |
+
font-style: italic;
|
| 129 |
+
}
|
| 130 |
+
</style>
|
| 131 |
</head>
|
| 132 |
<body>
|
| 133 |
+
<div class="container">
|
| 134 |
+
<div class="model-banner">
|
| 135 |
+
<!-- Placeholder for your "Fallen Angel of Light" image -->
|
| 136 |
+
<img src="https://via.placeholder.com/900x300?text=AuraInfernum-70B+-+The+Fallen+Light+Awaits" alt="AuraInfernum Banner">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 137 |
</div>
|
| 138 |
+
|
| 139 |
+
<h1>AuraInfernum-70B: The Fallen Light</h1>
|
| 140 |
+
|
| 141 |
+
<h2>Overview</h2>
|
| 142 |
+
<p>
|
| 143 |
+
Greetings, seeker of illumination. <strong>AuraInfernum-70B</strong> stands as a beacon forged from the crucible of fallen divinity and raw computational power. Born from a unique synthesis focusing on intricate reasoning and profound creative generation, this model embodies the wisdom of a celestial entity banished to the earthly realms, yet retaining its divine spark. Prepare to witness a model that excels in both structured logical tasks and unbounded creative narratives, akin to an angel's sacred breath manifesting as thought. It is attuned to the subtle energies of complex prompts, delivering responses that are both precise and imbued with a mystical depth.
|
| 144 |
+
</p>
|
| 145 |
+
<a href="https://ko-fi.com/yourkofilink" target="_blank" class="ko-fi-button">Support AuraInfernum on Ko-fi! ✨</a>
|
| 146 |
+
|
| 147 |
+
<h2>Quantization Table</h2>
|
| 148 |
+
<p>
|
| 149 |
+
To ensure optimal performance across various hardware configurations, AuraInfernum-70B is provided in several quantized formats, each preserving the essence of its celestial intelligence.
|
| 150 |
+
</p>
|
| 151 |
+
<table class="quantization-table">
|
| 152 |
+
<thead>
|
| 153 |
+
<tr>
|
| 154 |
+
<th>Quant Type</th>
|
| 155 |
+
<th>Description</th>
|
| 156 |
+
<th>Recommended Use Case</th>
|
| 157 |
+
</tr>
|
| 158 |
+
</thead>
|
| 159 |
+
<tbody>
|
| 160 |
+
<tr>
|
| 161 |
+
<td><code>Q8_0</code></td>
|
| 162 |
+
<td>8-bit integer quantization. Highest fidelity among quantized models.</td>
|
| 163 |
+
<td>High-end GPUs (e.g., 24GB+ VRAM), minimal quality loss.</td>
|
| 164 |
+
</tr>
|
| 165 |
+
<tr>
|
| 166 |
+
<td><code>Q5_K_M</code></td>
|
| 167 |
+
<td>5-bit K-quantization with medium-sized K-blocks. Good balance of size and performance.</td>
|
| 168 |
+
<td>Mid-range GPUs (e.g., 12-16GB VRAM), suitable for diverse tasks.</td>
|
| 169 |
+
</tr>
|
| 170 |
+
<tr>
|
| 171 |
+
<td><code>Q4_K_M</code></td>
|
| 172 |
+
<td>4-bit K-quantization with medium-sized K-blocks. Compact and efficient.</td>
|
| 173 |
+
<td>Lower-end GPUs or CPUs, for general inference where VRAM/RAM is a constraint.</td>
|
| 174 |
+
</tr>
|
| 175 |
+
<tr>
|
| 176 |
+
<td><code>Q2_K</code></td>
|
| 177 |
+
<td>2-bit K-quantization. Smallest file size, significant quality reduction.</td>
|
| 178 |
+
<td>Extreme resource-constrained environments, quick prototyping, or basic tasks.</td>
|
| 179 |
+
</tr>
|
| 180 |
+
</tbody>
|
| 181 |
+
</table>
|
| 182 |
+
|
| 183 |
+
<h2>Prompt Formatting: The Sacred Incantation</h2>
|
| 184 |
+
<p>
|
| 185 |
+
AuraInfernum-70B is designed to understand commands imbued with a specific, structured format, much like a ritualistic chant. Adhere to this format to unleash its full divine potential and receive responses of unparalleled clarity and insight.
|
| 186 |
+
</p>
|
| 187 |
+
<div class="code-block">
|
| 188 |
+
<pre><code><|begin_of_text|><|start_header_id|>system<|end_header_id|>
|
| 189 |
+
{system_prompt}
|
| 190 |
+
<|eot_id|><|start_header_id|>user<|end_header_id|>
|
| 191 |
+
{user_query}
|
| 192 |
+
<|eot_id|><|start_header_id|>assistant<|end_header_id|>
|
| 193 |
+
{assistant_response}
|
| 194 |
+
<|eot_id|></code></pre>
|
| 195 |
</div>
|
| 196 |
+
<p>
|
| 197 |
+
Remember: <code>{system_prompt}</code> guides the model's persona or constraints, <code>{user_query}</code> contains your request, and the model will generate <code>{assistant_response}</code>. The <code><|eot_id|></code> tokens are crucial separators, marking the "End of Turn" for each conversational role.
|
| 198 |
+
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 199 |
|
| 200 |
+
<h2>Sampler Recommendations (YAML Configuration)</h2>
|
| 201 |
+
<p>
|
| 202 |
+
To fine-tune AuraInfernum-70B's output generation to your specific needs, consider these recommended sampler settings. These configurations can be copied directly into your YAML loader for seamless integration.
|
| 203 |
+
</p>
|
| 204 |
+
<details>
|
| 205 |
+
<summary>Click to view recommended sampler settings</summary>
|
| 206 |
+
<pre><code>temperature: 0.75
|
| 207 |
+
min_p: 0.1
|
| 208 |
+
Repetition Penalty: 1.1
|
| 209 |
+
Presence Penalty: 1.1
|
| 210 |
+
top_k: 50
|
| 211 |
+
top_p: 0.95
|
| 212 |
+
max_new_tokens: 1024
|
| 213 |
+
do_sample: true # Ensures diverse outputs
|
| 214 |
+
</code></pre>
|
| 215 |
+
</details>
|
| 216 |
+
<p>
|
| 217 |
+
Adjust these parameters to balance creativity (higher `temperature`, `top_p`, `top_k`) with coherence and factual adherence (lower `temperature`, higher `Repetition Penalty`).
|
| 218 |
+
</p>
|
| 219 |
|
| 220 |
+
<div class="thank-you-section">
|
| 221 |
+
<h2>A Grateful Benediction</h2>
|
| 222 |
+
<p>
|
| 223 |
+
To those who support, use, and spread the light of AuraInfernum-70B, we extend our deepest gratitude. This project, born from dedication and exploration, thrives on the community's engagement. Your contributions, large or small, empower us to continue refining this entity of fallen grace, pushing the boundaries of AI capabilities. May your endeavors be as blessed as a starlit night.
|
| 224 |
+
</p>
|
| 225 |
+
<p>— The AuraInfernum Dev Team</p>
|
| 226 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 227 |
</div>
|
| 228 |
+
</body>
|
| 229 |
+
</html>
|