Delta-Vector commited on
Commit
20bd069
·
verified ·
1 Parent(s): f947a08

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +356 -434
README.md CHANGED
@@ -1,447 +1,369 @@
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
- @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
9
- * {
10
- margin: 0;
11
- padding: 0;
12
- box-sizing: border-box;
13
- }
14
- :root {
15
- --primary: #FF6B35;
16
- --secondary: #F7931E;
17
- --accent: #FFE66D;
18
- --dark: #1A1A1A;
19
- --darker: #0F0F0F;
20
- --light: #FFFFFF;
21
- --gray-100: #F5F5F5;
22
- --gray-200: #E5E5E5;
23
- --gray-300: #D4D4D4;
24
- --gray-400: #A3A3A3;
25
- --gray-500: #737373;
26
- --gray-600: #525252;
27
- --gray-700: #404040;
28
- --gray-800: #262626;
29
- --gray-900: #171717;
30
- }
31
- body {
32
- font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
33
- line-height: 1.7;
34
- color: var(--light);
35
- background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, var(--gray-900) 100%);
36
- min-height: 100vh;
37
- }
38
- .container {
39
- max-width: 1100px;
40
- margin: 0 auto;
41
- padding: 40px 20px;
42
- }
43
- /* Header */
44
- .header {
45
- text-align: center;
46
- margin-bottom: 80px;
47
- padding: 60px 0;
48
- background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
49
- border-radius: 24px;
50
- border: 1px solid rgba(255, 107, 53, 0.2);
51
- }
52
- .logo {
53
- font-size: 4rem;
54
- font-weight: 700;
55
- background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
56
- -webkit-background-clip: text;
57
- -webkit-text-fill-color: transparent;
58
- background-clip: text;
59
- margin-bottom: 16px;
60
- letter-spacing: -0.02em;
61
- }
62
- .tagline {
63
- font-size: 1.5rem;
64
- color: var(--gray-300);
65
- font-weight: 300;
66
- margin-bottom: 32px;
67
- max-width: 600px;
68
- margin-left: auto;
69
- margin-right: auto;
70
- }
71
- .hero-image {
72
- width: 100%;
73
- height: 300px;
74
- background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
75
- border-radius: 16px;
76
- display: flex;
77
- align-items: center;
78
- justify-content: center;
79
- font-size: 1.5rem;
80
- font-weight: 600;
81
- color: var(--light);
82
- text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
83
- margin-bottom: 32px;
84
- }
85
- /* Support Button */
86
- .support-button {
87
- display: inline-flex;
88
- align-items: center;
89
- gap: 8px;
90
- background: linear-gradient(135deg, #FF5E5B 0%, #FF9A56 100%);
91
- color: var(--light);
92
- padding: 16px 32px;
93
- border-radius: 50px;
94
- text-decoration: none;
95
- font-weight: 600;
96
- font-size: 1.1rem;
97
- box-shadow: 0 8px 32px rgba(255, 94, 91, 0.3);
98
- border: none;
99
- cursor: pointer;
100
- }
101
- .support-button:hover {
102
- box-shadow: 0 12px 48px rgba(255, 94, 91, 0.4);
103
- transform: translateY(-2px);
104
- }
105
- /* Cards */
106
- .card {
107
- background: rgba(255, 255, 255, 0.03);
108
- backdrop-filter: blur(20px);
109
- border: 1px solid rgba(255, 255, 255, 0.1);
110
- border-radius: 20px;
111
- padding: 40px;
112
- margin-bottom: 32px;
113
- box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
114
- }
115
- .card:hover {
116
- border-color: rgba(255, 107, 53, 0.3);
117
- box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
118
- }
119
- /* Typography */
120
- h1 {
121
- font-size: 3rem;
122
- font-weight: 700;
123
- color: var(--light);
124
- margin-bottom: 24px;
125
- letter-spacing: -0.02em;
126
- }
127
- h2 {
128
- font-size: 2rem;
129
- font-weight: 600;
130
- color: var(--primary);
131
- margin-bottom: 24px;
132
- position: relative;
133
- padding-bottom: 12px;
134
- }
135
- h2::after {
136
- content: '';
137
- position: absolute;
138
- bottom: 0;
139
- left: 0;
140
- width: 40px;
141
- height: 3px;
142
- background: linear-gradient(90deg, var(--primary), var(--secondary));
143
- border-radius: 2px;
144
- }
145
- h3 {
146
- font-size: 1.5rem;
147
- font-weight: 600;
148
- color: var(--accent);
149
- margin-bottom: 16px;
150
- }
151
- p {
152
- color: var(--gray-200);
153
- font-size: 1.1rem;
154
- margin-bottom: 20px;
155
- line-height: 1.8;
156
- }
157
- strong {
158
- color: var(--light);
159
- font-weight: 600;
160
- }
161
- /* Table */
162
- .table-container {
163
- overflow-x: auto;
164
- border-radius: 12px;
165
- border: 1px solid rgba(255, 255, 255, 0.1);
166
- margin: 24px 0;
167
- }
168
- table {
169
- width: 100%;
170
- border-collapse: collapse;
171
- background: rgba(0, 0, 0, 0.2);
172
- }
173
- th, td {
174
- padding: 20px;
175
- text-align: left;
176
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
177
- }
178
- th {
179
- background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
180
- color: var(--light);
181
- font-weight: 600;
182
- font-size: 0.95rem;
183
- text-transform: uppercase;
184
- letter-spacing: 0.5px;
185
- }
186
- td {
187
- color: var(--gray-200);
188
- font-size: 1rem;
189
- }
190
- tr:hover {
191
- background: rgba(255, 107, 53, 0.05);
192
- }
193
- tr:last-child td {
194
- border-bottom: none;
195
- }
196
- /* Code */
197
- code {
198
- background: rgba(255, 230, 109, 0.1);
199
- color: var(--accent);
200
- padding: 4px 8px;
201
- border-radius: 6px;
202
- font-family: 'JetBrains Mono', monospace;
203
- font-size: 0.9em;
204
- font-weight: 500;
205
- border: 1px solid rgba(255, 230, 109, 0.2);
206
- }
207
- .code-block {
208
- background: rgba(0, 0, 0, 0.6);
209
- border: 1px solid rgba(255, 230, 109, 0.3);
210
- border-radius: 12px;
211
- padding: 24px;
212
- margin: 24px 0;
213
- overflow-x: auto;
214
- }
215
- .code-block pre {
216
- font-family: 'JetBrains Mono', monospace;
217
- font-size: 0.95rem;
218
- line-height: 1.6;
219
- color: var(--accent);
220
- margin: 0;
221
- }
222
- /* Details/Summary */
223
- details {
224
- background: rgba(0, 0, 0, 0.3);
225
- border: 1px solid rgba(255, 255, 255, 0.1);
226
- border-radius: 12px;
227
- padding: 24px;
228
- margin: 24px 0;
229
- }
230
- details:hover {
231
- border-color: rgba(247, 147, 30, 0.3);
232
- }
233
- summary {
234
- font-weight: 600;
235
- cursor: pointer;
236
- color: var(--secondary);
237
- font-size: 1.1rem;
238
- margin-bottom: 16px;
239
- padding: 8px 0;
240
- }
241
- summary:hover {
242
- color: var(--primary);
243
- }
244
- details pre {
245
- background: rgba(0, 0, 0, 0.5);
246
- border: 1px solid rgba(255, 255, 255, 0.1);
247
- border-radius: 8px;
248
- padding: 20px;
249
- font-family: 'JetBrains Mono', monospace;
250
- color: var(--gray-200);
251
- overflow-x: auto;
252
- margin-top: 16px;
253
- }
254
- /* Footer */
255
- .footer {
256
- text-align: center;
257
- margin-top: 80px;
258
- padding: 60px 40px;
259
- background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
260
- border-radius: 20px;
261
- border: 1px solid rgba(255, 107, 53, 0.1);
262
- }
263
- .footer h2 {
264
- color: var(--light);
265
- margin-bottom: 24px;
266
- }
267
- .footer p {
268
- font-size: 1.1rem;
269
- margin-bottom: 16px;
270
- max-width: 800px;
271
- margin-left: auto;
272
- margin-right: auto;
273
- }
274
- .signature {
275
- color: var(--primary);
276
- font-weight: 600;
277
- font-size: 1.2rem;
278
- margin-top: 32px;
279
- }
280
- /* Responsive */
281
- @media (max-width: 768px) {
282
- .container {
283
- padding: 20px 16px;
284
- }
285
- .logo {
286
- font-size: 2.5rem;
287
- }
288
- .tagline {
289
- font-size: 1.2rem;
290
- }
291
- h1 {
292
- font-size: 2rem;
293
- }
294
- h2 {
295
- font-size: 1.5rem;
296
- }
297
- .card {
298
- padding: 24px;
299
- }
300
- th, td {
301
- padding: 12px 8px;
302
- font-size: 0.9rem;
303
- }
304
- .hero-image {
305
- height: 200px;
306
- font-size: 1.2rem;
307
- }
308
- }
309
- /* Utility Classes */
310
- .text-center { text-align: center; }
311
- .mb-4 { margin-bottom: 24px; }
312
- .mt-4 { margin-top: 24px; }
313
- /* Custom Scrollbar */
314
- ::-webkit-scrollbar {
315
- width: 8px;
316
- height: 8px;
317
- }
318
- ::-webkit-scrollbar-track {
319
- background: var(--gray-800);
320
- border-radius: 4px;
321
- }
322
- ::-webkit-scrollbar-thumb {
323
- background: linear-gradient(135deg, var(--primary), var(--secondary));
324
- border-radius: 4px;
325
- }
326
- ::-webkit-scrollbar-thumb:hover {
327
- background: linear-gradient(135deg, var(--secondary), var(--accent));
328
- }
329
- </style>
330
  </head>
331
  <body>
332
- <div class="container">
333
- <!-- Header Section -->
334
- <header class="header">
335
- <div class="hero-image">
336
- 🔥 THE FALLEN LIGHT AWAITS 🔥
337
- </div>
338
- <h1 class="logo">AuraInfernum-70B</h1>
339
- <p class="tagline">Where Divine Intelligence Meets Earthly Power</p>
340
- <a href="https://ko-fi.com/yourkofilink" target="_blank" class="support-button">
341
- Support on Ko-fi
342
- </a>
343
- </header>
344
- <!-- Overview Section -->
345
- <div class="card">
346
- <h2>Divine Overview</h2>
347
- <p>
348
- 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.
349
- </p>
350
- <p>
351
- 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.
352
- </p>
353
  </div>
354
- <!-- Quantization Table -->
355
- <div class="card">
356
- <h2>Celestial Quantization Matrix</h2>
357
- <p>
358
- To ensure optimal performance across various hardware configurations, AuraInfernum-70B is provided in several quantized formats, each preserving the essence of its celestial intelligence.
359
- </p>
360
- <div class="table-container">
361
- <table>
362
- <thead>
363
- <tr>
364
- <th>Quant Type</th>
365
- <th>Divine Description</th>
366
- <th>Sacred Use Case</th>
367
- </tr>
368
- </thead>
369
- <tbody>
370
- <tr>
371
- <td><code>Q8_0</code></td>
372
- <td>8-bit integer quantization. Highest fidelity among quantized models.</td>
373
- <td>High-end GPUs (e.g., 24GB+ VRAM), minimal quality loss.</td>
374
- </tr>
375
- <tr>
376
- <td><code>Q5_K_M</code></td>
377
- <td>5-bit K-quantization with medium-sized K-blocks. Perfect balance of size and divine performance.</td>
378
- <td>Mid-range GPUs (e.g., 12-16GB VRAM), suitable for diverse mystical tasks.</td>
379
- </tr>
380
- <tr>
381
- <td><code>Q4_K_M</code></td>
382
- <td>4-bit K-quantization with medium-sized K-blocks. Compact celestial efficiency.</td>
383
- <td>Lower-end GPUs or CPUs, for general inference where VRAM/RAM is a constraint.</td>
384
- </tr>
385
- <tr>
386
- <td><code>Q2_K</code></td>
387
- <td>2-bit K-quantization. Smallest file size, ethereal compression.</td>
388
- <td>Extreme resource-constrained environments, quick divine prototyping.</td>
389
- </tr>
390
- </tbody>
391
- </table>
392
  </div>
 
 
 
 
393
  </div>
394
- <!-- Prompt Format -->
395
- <div class="card">
396
- <h2>Sacred Incantation Format</h2>
397
- <p>
398
- 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.
399
- </p>
400
- <div class="code-block">
401
- <pre><code>&lt;|begin_of_text|&gt;&lt;|start_header_id|&gt;system&lt;|end_header_id|&gt;
402
- {system_prompt}
403
- &lt;|eot_id|&gt;&lt;|start_header_id|&gt;user&lt;|end_header_id|&gt;
404
- {user_query}
405
- &lt;|eot_id|&gt;&lt;|start_header_id|&gt;assistant&lt;|end_header_id|&gt;
406
- {assistant_response}
407
- &lt;|eot_id|&gt;</code></pre>
408
- </div>
409
- <p>
410
- Remember: <code>{system_prompt}</code> guides the model's divine persona or celestial constraints, <code>{user_query}</code> contains your mortal request, and the model will generate <code>{assistant_response}</code>. The <code>&lt;|eot_id|&gt;</code> tokens are crucial separators, marking the "End of Turn" for each conversational role in this sacred dialogue.
411
- </p>
412
  </div>
413
- <!-- Sampler Settings -->
414
- <div class="card">
415
- <h2>Divine Sampler Configuration</h2>
416
- <p>
417
- 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 celestial integration.
418
- </p>
419
- <details>
420
- <summary>🔮 Click to reveal the sacred parameters</summary>
421
- <pre><code>temperature: 0.75
422
- min_p: 0.1
423
- Repetition Penalty: 1.1
424
- Presence Penalty: 1.1
425
- top_k: 50
426
- top_p: 0.95
427
- max_new_tokens: 1024
428
- do_sample: true # Ensures diverse divine outputs</code></pre>
429
- </details>
430
- <p>
431
- Adjust these parameters to balance creativity (higher <code>temperature</code>, <code>top_p</code>, <code>top_k</code>) with coherence and factual adherence (lower <code>temperature</code>, higher <code>Repetition Penalty</code>). Each adjustment brings you closer to the perfect harmony between chaos and order.
432
- </p>
 
 
 
433
  </div>
434
- <!-- Footer -->
435
- <footer class="footer">
436
- <h2>A Grateful Benediction</h2>
437
- <p>
438
- 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.
439
- </p>
440
- <p>
441
- May your endeavors be as blessed as a starlit night, and may the divine spark within AuraInfernum-70B illuminate your path to unprecedented discoveries.
442
- </p>
443
- <p class="signature">— The AuraInfernum Dev Team</p>
444
- </footer>
 
 
 
445
  </div>
 
446
  </body>
447
  </html>
 
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>François-Huali 12B</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
8
+ <style>
9
+ body {
10
+ font-family: 'Quicksand', sans-serif;
11
+ background: linear-gradient(135deg, #ffeef8 0%, #fff0e6 50%, #f8e8ff 100%);
12
+ color: #8b4a6b;
13
+ margin: 0;
14
+ padding: 0;
15
+ font-size: 16px;
16
+ min-height: 100vh;
17
+ }
18
+ .container {
19
+ margin: 20px;
20
+ background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 250, 0.95));
21
+ padding: 30px;
22
+ border-radius: 20px;
23
+ box-shadow: 0 8px 32px rgba(255, 182, 193, 0.3), 0 4px 16px rgba(255, 215, 0, 0.2);
24
+ border: 2px solid rgba(255, 182, 193, 0.4);
25
+ position: relative;
26
+ backdrop-filter: blur(10px);
27
+ }
28
+ .container::before {
29
+ content: '';
30
+ position: absolute;
31
+ top: 0;
32
+ left: 0;
33
+ right: 0;
34
+ bottom: 0;
35
+ background: linear-gradient(45deg, rgba(255, 192, 203, 0.1), rgba(255, 215, 0, 0.1), rgba(221, 160, 221, 0.1));
36
+ border-radius: 20px;
37
+ z-index: -1;
38
+ }
39
+ .header h1 {
40
+ font-size: 32px;
41
+ background: linear-gradient(45deg, #d63384, #fd7e14, #e91e63);
42
+ -webkit-background-clip: text;
43
+ -webkit-text-fill-color: transparent;
44
+ background-clip: text;
45
+ margin: 0 0 20px 0;
46
+ text-align: center;
47
+ font-weight: 600;
48
+ text-shadow: 0 2px 4px rgba(255, 182, 193, 0.3);
49
+ }
50
+ .section {
51
+ margin-top: 30px;
52
+ }
53
+ .section h2 {
54
+ font-size: 24px;
55
+ background: linear-gradient(45deg, #d63384, #fd7e14);
56
+ -webkit-background-clip: text;
57
+ -webkit-text-fill-color: transparent;
58
+ background-clip: text;
59
+ text-align: center;
60
+ font-weight: 600;
61
+ margin-bottom: 20px;
62
+ }
63
+ .info p {
64
+ color: #8b4a6b;
65
+ line-height: 1.8;
66
+ font-size: 16px;
67
+ }
68
+ .info img {
69
+ width: 85%;
70
+ border-radius: 15px;
71
+ margin: 0 auto 15px;
72
+ display: block;
73
+ box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
74
+ border: 2px solid rgba(255, 192, 203, 0.5);
75
+ }
76
+ a {
77
+ color: #d63384;
78
+ text-decoration: none;
79
+ transition: all 0.3s ease;
80
+ font-weight: 500;
81
+ }
82
+ a:hover {
83
+ color: #fd7e14;
84
+ text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
85
+ }
86
+ .button {
87
+ display: inline-block;
88
+ background: linear-gradient(45deg, #ffb6c1, #ffd700);
89
+ color: #8b4a6b;
90
+ padding: 12px 24px;
91
+ border-radius: 25px;
92
+ cursor: pointer;
93
+ text-decoration: none;
94
+ transition: all 0.3s ease;
95
+ border: 1px solid rgba(255, 182, 193, 0.5);
96
+ font-weight: 500;
97
+ }
98
+ .button:hover {
99
+ background: linear-gradient(45deg, #ff91a4, #ffed4e);
100
+ box-shadow: 0 4px 15px rgba(255, 182, 193, 0.6);
101
+ transform: translateY(-2px);
102
+ }
103
+ pre {
104
+ background: linear-gradient(135deg, rgba(255, 240, 245, 0.8), rgba(255, 248, 220, 0.8));
105
+ padding: 20px;
106
+ border-radius: 12px;
107
+ overflow-x: auto;
108
+ border: 1px solid rgba(255, 182, 193, 0.3);
109
+ box-shadow: inset 0 2px 4px rgba(255, 182, 193, 0.2);
110
+ }
111
+ code {
112
+ font-family: 'Courier New', monospace;
113
+ color: #8b4a6b;
114
+ }
115
+ .info-card {
116
+ background: linear-gradient(145deg, rgba(255, 240, 245, 0.9), rgba(255, 248, 220, 0.9));
117
+ border: 2px solid rgba(255, 182, 193, 0.4);
118
+ border-radius: 15px;
119
+ overflow: hidden;
120
+ box-shadow: 0 4px 20px rgba(255, 182, 193, 0.3);
121
+ }
122
+ .info-header {
123
+ background: linear-gradient(135deg, rgba(255, 192, 203, 0.3), rgba(255, 215, 0, 0.2));
124
+ padding: 25px;
125
+ border-bottom: 1px solid rgba(255, 182, 193, 0.3);
126
+ }
127
+ .info-header h3 {
128
+ background: linear-gradient(45deg, #d63384, #fd7e14);
129
+ -webkit-background-clip: text;
130
+ -webkit-text-fill-color: transparent;
131
+ background-clip: text;
132
+ margin: 0 0 15px 0;
133
+ font-size: 22px;
134
+ text-align: center;
135
+ font-weight: 600;
136
+ }
137
+ .model-tags {
138
+ display: flex;
139
+ gap: 10px;
140
+ flex-wrap: wrap;
141
+ justify-content: center;
142
+ }
143
+ .model-tag {
144
+ background: linear-gradient(45deg, rgba(255, 182, 193, 0.4), rgba(255, 215, 0, 0.3));
145
+ color: #8b4a6b;
146
+ padding: 8px 16px;
147
+ border-radius: 20px;
148
+ font-size: 13px;
149
+ border: 1px solid rgba(255, 182, 193, 0.5);
150
+ font-weight: 500;
151
+ box-shadow: 0 2px 8px rgba(255, 182, 193, 0.2);
152
+ }
153
+ .model-composition {
154
+ padding: 25px;
155
+ border-bottom: 1px solid rgba(255, 182, 193, 0.3);
156
+ }
157
+ .model-composition h4 {
158
+ background: linear-gradient(45deg, #d63384, #fd7e14);
159
+ -webkit-background-clip: text;
160
+ -webkit-text-fill-color: transparent;
161
+ background-clip: text;
162
+ margin: 0 0 20px 0;
163
+ font-size: 18px;
164
+ text-align: center;
165
+ font-weight: 600;
166
+ }
167
+ .composition-list {
168
+ list-style: none;
169
+ padding: 0;
170
+ margin: 0;
171
+ display: grid;
172
+ gap: 15px;
173
+ }
174
+ .composition-list li {
175
+ color: #8b4a6b;
176
+ display: flex;
177
+ align-items: baseline;
178
+ gap: 12px;
179
+ padding: 10px;
180
+ background: rgba(255, 240, 245, 0.5);
181
+ border-radius: 8px;
182
+ border-left: 4px solid #ffb6c1;
183
+ }
184
+ .model-component {
185
+ font-weight: 600;
186
+ min-width: 120px;
187
+ }
188
+ .model-description {
189
+ padding: 25px;
190
+ background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 240, 245, 0.8));
191
+ }
192
+ .metrics-section {
193
+ margin-bottom: 30px;
194
+ }
195
+ .metrics-section details {
196
+ background: linear-gradient(145deg, rgba(255, 240, 245, 0.9), rgba(255, 248, 220, 0.9));
197
+ border: 2px solid rgba(255, 182, 193, 0.4);
198
+ border-radius: 12px;
199
+ padding: 20px;
200
+ margin-bottom: 20px;
201
+ box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
202
+ }
203
+ .metrics-section summary {
204
+ background: linear-gradient(45deg, #d63384, #fd7e14);
205
+ -webkit-background-clip: text;
206
+ -webkit-text-fill-color: transparent;
207
+ background-clip: text;
208
+ font-size: 18px;
209
+ cursor: pointer;
210
+ outline: none;
211
+ padding: 8px 0;
212
+ text-align: center;
213
+ font-weight: 600;
214
+ transition: all 0.3s ease;
215
+ }
216
+ .metrics-section summary:hover {
217
+ text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
218
+ }
219
+ .creator-section {
220
+ margin: 20px 0;
221
+ text-align: center;
222
+ }
223
+ .creator-badge {
224
+ display: inline-flex;
225
+ align-items: center;
226
+ background: linear-gradient(145deg, rgba(255, 240, 245, 0.9), rgba(255, 248, 220, 0.9));
227
+ border: 2px solid rgba(255, 182, 193, 0.4);
228
+ border-radius: 25px;
229
+ padding: 15px 20px;
230
+ box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
231
+ }
232
+ .creator-label {
233
+ color: #8b4a6b;
234
+ font-size: 14px;
235
+ margin-right: 10px;
236
+ font-weight: 500;
237
+ }
238
+ .creator-link {
239
+ display: flex;
240
+ align-items: center;
241
+ gap: 8px;
242
+ color: #d63384;
243
+ text-decoration: none;
244
+ transition: all 0.3s ease;
245
+ }
246
+ .creator-name {
247
+ font-weight: 600;
248
+ }
249
+ .creator-arrow {
250
+ font-size: 16px;
251
+ transition: transform 0.3s ease;
252
+ }
253
+ .creator-link:hover .creator-arrow {
254
+ transform: translateX(4px);
255
+ color: #fd7e14;
256
+ }
257
+ .creator-link:hover {
258
+ color: #fd7e14;
259
+ text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
260
+ }
261
+ .link-arrow {
262
+ display: inline-block;
263
+ transition: transform 0.3s ease;
264
+ }
265
+ a:hover .link-arrow {
266
+ transform: translateX(3px);
267
+ }
268
+ .axolotl-container {
269
+ text-align: center;
270
+ margin: 30px 0;
271
+ }
272
+ .axolotl-container img {
273
+ max-width: 300px;
274
+ border-radius: 15px;
275
+ box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
276
+ border: 2px solid rgba(255, 192, 203, 0.5);
277
+ transition: transform 0.3s ease;
278
+ }
279
+ .axolotl-container img:hover {
280
+ transform: scale(1.05);
281
+ }
282
+ </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  </head>
284
  <body>
285
+ <div class="container">
286
+ <div class="header">
287
+ <h1>François-PE-Huali 12B</h1>
288
+ </div>
289
+ <div class="info">
290
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/66c26b6fb01b19d8c3c2467b/DYgyLUEaHAv9kTffBYH-F.jpeg" alt="Model banner">
291
+ <div style="text-align: center;">
292
+ <div class="creator-section">
293
+ <div class="creator-badge">
294
+ <span class="creator-label">Created by</span>
295
+ <a href="https://huggingface.co/Delta-Vector" target="_blank" class="creator-link">
296
+ <span class="creator-name">Delta-Vector</span>
297
+ <span class="creator-arrow">→</span>
298
+ </a>
 
 
 
 
 
 
 
299
  </div>
300
+ </div>
301
+ <div class="model-info">
302
+ <h2>Model Information</h2>
303
+ <div class="info-card">
304
+ <div class="info-header">
305
+ <h3>Sol-Reaver-15B-Instruct</h3>
306
+ <div class="model-tags">
307
+ <span class="model-tag">15B parameters</span>
308
+ <span class="model-tag">Creative / Fresh Prose</span>
309
+ <span class="model-tag">Co-writing/Roleplay/Adventure Generalist</span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
  </div>
311
+ </div>
312
+ <div class="model-description">
313
+ <p></p>
314
+ </div>
315
  </div>
316
+ </div>
317
+ <div class="section">
318
+ <h2>Quantized Versions</h2>
319
+ <div class="info-card">
320
+ <div class="model-composition">
321
+ <h4>Available Downloads</h4>
322
+ <ul class="composition-list">
323
+ <li><span class="model-component"><a href="" target="_blank">GGUF Format</a></span>For use with LLama.cpp & Forks(Coming Soon!)</li>
324
+ <li><span class="model-component"><a href="" target="_blank">EXL2 Format</a></span>For use with TabbyAPI (Coming Soon!)</li>
325
+ </ul>
326
+ </div>
 
 
 
 
 
 
 
327
  </div>
328
+ </div>
329
+ <div class="section">
330
+ <h2>Prompting</h2>
331
+ <p>Model has been tuned with the ChatML formatting. A typical input would look like this:</p>
332
+ <pre><code>"""&lt;|im_start|&gt;user
333
+ Hi there!&lt;|im_end|&gt;
334
+ &lt;|im_start|&gt;assistant
335
+ Nice to meet you!&lt;|im_end|&gt;
336
+ &lt;|im_start|&gt;user
337
+ Can I ask a question?&lt;|im_end|&gt;
338
+ &lt;|im_start|&gt;assistant
339
+ """</code></pre>
340
+ </div>
341
+ <div class="section">
342
+ <h2>System Prompting</h2>
343
+ <p>I would highly recommend using either Euryale's system prompt or the EVA system prompt with the model.</p>
344
+ <div class="metrics-section">
345
+ <details>
346
+ <summary>See Axolotl Config</summary>
347
+ <pre><code>
348
+ https://wandb.ai/new-eden/Rae/artifacts/axolotl-config/config-7d4ecudg/v0/files/axolotl_config_avyx566_.yml
349
+ </code></pre>
350
+ </details>
351
  </div>
352
+ </div>
353
+ <div class="section">
354
+ <h2>Training</h2>
355
+ <p>The training was done for 2 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>
356
+ <p style="text-align: center; margin-top: 20px;">
357
+ <div class="axolotl-container">
358
+ <a href="https://github.com/OpenAccess-AI-Collective/axolotl" target="_blank">
359
+ <img src="https://raw.githubusercontent.com/OpenAccess-AI-Collective/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl">
360
+ </a>
361
+ </div>
362
+ <div class="section">
363
+ <h2>Credits</h2>
364
+ <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>
365
+ </div>
366
  </div>
367
+ </div>
368
  </body>
369
  </html>