FrenzyBiscuit commited on
Commit
d8d30e7
Β·
verified Β·
1 Parent(s): 48a0c17

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +461 -1
README.md CHANGED
@@ -1 +1,461 @@
1
- edit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Ready.Art
3
+ emoji: πŸŒ–
4
+ colorFrom: purple
5
+ colorTo: yellow
6
+ sdk: static
7
+ pinned: true
8
+ ---
9
+ <style>
10
+ strong {
11
+ color: rgba(255, 20, 147, 0.8) !important;
12
+ }
13
+
14
+ body {
15
+ font-family: 'Quicksand', sans-serif;
16
+ background: linear-gradient(135deg, #000d2a 0%, #1d1d3b 100%);
17
+ color: rgba(138, 43, 226, 0.8) !important;
18
+ text-shadow: 0 0 3px rgba(173, 216, 230, 0.3);
19
+ margin: 0;
20
+ padding: 20px;
21
+ transition: all 0.5s ease;
22
+ }
23
+
24
+ .container {
25
+ min-width: 100%;
26
+ margin: 0 auto;
27
+ max-width: 1200px;
28
+ background: rgba(21, 21, 47, 0.95);
29
+ border-radius: 12px;
30
+ padding: 30px;
31
+ box-shadow: 0 0 20px rgba(138, 43, 226, 0.05);
32
+ border: 1px solid rgba(138, 43, 226, 0.1);
33
+ position: relative;
34
+ overflow: hidden;
35
+ }
36
+
37
+ .container::before {
38
+ content: '';
39
+ position: absolute;
40
+ top: -1px;
41
+ left: -1px;
42
+ right: -1px;
43
+ bottom: -1px;
44
+ border: 1px solid rgba(138, 43, 226, 0.3);
45
+ border-radius: 12px;
46
+ pointer-events: none;
47
+ animation: borderGlow 3s ease-in-out infinite alternate;
48
+ }
49
+
50
+ @keyframes borderGlow {
51
+ 0% {
52
+ box-shadow: 0 0 5px rgba(138, 43, 226, 0.15);
53
+ border-color: rgba(138, 43, 226, 0.3);
54
+ }
55
+ 50% {
56
+ box-shadow: 0 0 15px rgba(75, 0, 130, 0.15);
57
+ border-color: rgba(75, 0, 130, 0.3);
58
+ }
59
+ 100% {
60
+ box-shadow: 0 0 5px rgba(138, 43, 226, 0.15);
61
+ border-color: rgba(138, 43, 226, 0.3);
62
+ }
63
+ }
64
+
65
+ .header {
66
+ text-align: center;
67
+ margin-bottom: 30px;
68
+ position: relative;
69
+ }
70
+
71
+ .header::after {
72
+ content: '';
73
+ position: absolute;
74
+ bottom: -15px;
75
+ left: 25%;
76
+ right: 25%;
77
+ height: 1px;
78
+ background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
79
+ animation: scanline 8s linear infinite;
80
+ }
81
+
82
+ .model-name {
83
+ color: rgba(138, 43, 226, 0.7);
84
+ font-size: 2.5em;
85
+ text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
86
+ margin: 0;
87
+ letter-spacing: -1px;
88
+ animation: textGlow 4s ease-in-out infinite alternate;
89
+ }
90
+
91
+ @keyframes textGlow {
92
+ 0% { text-shadow: 0 0 10px rgba(138, 43, 226, 0.3); }
93
+ 50% { text-shadow: 0 0 15px rgba(75, 0, 130, 0.3); }
94
+ 100% { text-shadow: 0 0 10px rgba(138, 43, 226, 0.3); }
95
+ }
96
+
97
+ .subtitle {
98
+ color: rgba(75, 0, 130, 0.7);
99
+ font-size: 1.2em;
100
+ margin-top: 10px;
101
+ animation: subtitleFade 6s ease-in-out infinite;
102
+ }
103
+
104
+ .waifu-container {
105
+ margin: 20px -30px;
106
+ width: calc(100% + 60px);
107
+ overflow: hidden;
108
+ border-radius: 8px;
109
+ border: 1px solid rgba(138, 43, 226, 0.15);
110
+ position: relative;
111
+ }
112
+
113
+ .waifu-container::before {
114
+ content: '';
115
+ position: absolute;
116
+ top: 0;
117
+ left: 0;
118
+ right: 0;
119
+ bottom: 0;
120
+ background: linear-gradient(45deg,
121
+ rgba(138, 43, 226, 0.05) 0%,
122
+ transparent 20%,
123
+ transparent 80%,
124
+ rgba(75, 0, 130, 0.05) 100%);
125
+ pointer-events: none;
126
+ animation: gradientSlide 10s linear infinite;
127
+ }
128
+
129
+ .waifu-img {
130
+ width: 100%;
131
+ height: auto;
132
+ border-radius: 0;
133
+ border: none;
134
+ box-shadow: 0 0 40px rgba(138, 43, 226, 0.1);
135
+ transition: transform 0.5s ease;
136
+ }
137
+
138
+ .waifu-img:hover {
139
+ transform: scale(1.01);
140
+ }
141
+
142
+ .section {
143
+ color: rgba(75, 0, 130, 0.7);
144
+ margin: 25px 0;
145
+ padding: 20px;
146
+ background: rgba(26, 26, 50, 0.9);
147
+ border-radius: 8px;
148
+ border: 1px solid rgba(138, 43, 226, 0.1);
149
+ position: relative;
150
+ transition: all 0.3s ease;
151
+ }
152
+
153
+ .section:hover {
154
+ border-color: rgba(75, 0, 130, 0.2);
155
+ box-shadow: 0 0 15px rgba(138, 43, 226, 0.05);
156
+ }
157
+
158
+ .section::before {
159
+ content: '';
160
+ position: absolute;
161
+ top: -1px;
162
+ left: -1px;
163
+ right: -1px;
164
+ bottom: -1px;
165
+ border: 1px solid rgba(138, 43, 226, 0.2);
166
+ border-radius: 8px;
167
+ pointer-events: none;
168
+ animation: sectionPulse 5s ease-in-out infinite;
169
+ }
170
+
171
+ @keyframes sectionPulse {
172
+ 0%, 100% { opacity: 0.5; }
173
+ 50% { opacity: 0.3; }
174
+ }
175
+
176
+ .section-title {
177
+ color: rgba(138, 43, 226, 0.7);
178
+ font-size: 1.8em;
179
+ margin-top: 0;
180
+ text-shadow: 0 0 5px rgba(138, 43, 226, 0.2);
181
+ position: relative;
182
+ display: inline-block;
183
+ }
184
+
185
+ .section-title::after {
186
+ content: '';
187
+ position: absolute;
188
+ bottom: -5px;
189
+ left: 0;
190
+ width: 100%;
191
+ height: 1px;
192
+ background: linear-gradient(90deg, rgba(138, 43, 226, 0.3), rgba(75, 0, 130, 0.3));
193
+ transform: scaleX(0);
194
+ transform-origin: left;
195
+ transition: transform 0.3s ease;
196
+ }
197
+
198
+ .section:hover .section-title::after {
199
+ transform: scaleX(1);
200
+ }
201
+
202
+ .quant-links {
203
+ display: grid;
204
+ grid-template-columns: repeat(3, 1fr);
205
+ gap: 15px;
206
+ margin: 20px 0;
207
+ }
208
+
209
+ .link-card {
210
+ padding: 15px;
211
+ background: rgba(30, 30, 60, 0.95);
212
+ border-radius: 8px;
213
+ transition: all 0.3s ease;
214
+ border: 1px solid rgba(138, 43, 226, 0.1);
215
+ position: relative;
216
+ overflow: hidden;
217
+ text-decoration: none;
218
+ color: inherit;
219
+ }
220
+
221
+ .link-card::before {
222
+ content: '';
223
+ position: absolute;
224
+ top: 0;
225
+ left: 0;
226
+ right: 0;
227
+ height: 2px;
228
+ background: linear-gradient(90deg, rgba(138, 43, 226, 0.3), rgba(75, 0, 130, 0.3));
229
+ animation: cardScan 4s linear infinite;
230
+ }
231
+
232
+ @keyframes cardScan {
233
+ 0% { transform: translateX(-100%); }
234
+ 100% { transform: translateX(100%); }
235
+ }
236
+
237
+ .link-card:hover {
238
+ transform: translateY(-3px);
239
+ box-shadow: 0 5px 15px rgba(138, 43, 226, 0.1);
240
+ border-color: rgba(75, 0, 130, 0.2);
241
+ }
242
+
243
+ .link-card h3 {
244
+ margin-top: 0;
245
+ color: rgba(75, 0, 130, 0.7) !important;
246
+ }
247
+
248
+ .link-button {
249
+ display: inline-flex;
250
+ align-items: center;
251
+ background: rgba(138, 43, 226, 0.05);
252
+ color: rgba(138, 43, 226, 0.7) !important;
253
+ padding: 8px 15px;
254
+ border-radius: 6px;
255
+ text-decoration: none;
256
+ border: 1px solid rgba(138, 43, 226, 0.15);
257
+ margin: 5px 0;
258
+ transition: all 0.3s ease;
259
+ font-size: 0.95em;
260
+ position: relative;
261
+ overflow: hidden;
262
+ }
263
+
264
+ .link-button::before {
265
+ content: '';
266
+ position: absolute;
267
+ top: 0;
268
+ left: -100%;
269
+ width: 100%;
270
+ height: 100%;
271
+ background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
272
+ transition: all 0.5s ease;
273
+ }
274
+
275
+ .link-button:hover {
276
+ background: rgba(75, 0, 130, 0.1);
277
+ border-color: rgba(75, 0, 130, 0.3);
278
+ transform: translateY(-2px);
279
+ box-shadow: 0 4px 12px rgba(138, 43, 226, 0.1);
280
+ }
281
+
282
+ .link-button::after {
283
+ content: 'β†’';
284
+ margin-left: 8px;
285
+ opacity: 0.6;
286
+ transition: all 0.3s ease;
287
+ }
288
+
289
+ .link-button:hover::after {
290
+ transform: translateX(3px);
291
+ opacity: 1;
292
+ }
293
+
294
+ .button-group {
295
+ display: flex;
296
+ flex-wrap: wrap;
297
+ gap: 10px;
298
+ margin: 15px 0;
299
+ }
300
+
301
+ .disclaimer {
302
+ color: rgba(147, 112, 219, 0.7);
303
+ border-left: 3px solid rgba(147, 112, 219, 0.7);
304
+ padding-left: 15px;
305
+ margin: 20px 0;
306
+ position: relative;
307
+ }
308
+
309
+ .disclaimer::before {
310
+ content: '⚠️';
311
+ position: absolute;
312
+ left: -10px;
313
+ top: 0;
314
+ transform: translateX(-100%);
315
+ animation: pulse 2s ease-in-out infinite;
316
+ }
317
+
318
+ @keyframes pulse {
319
+ 0%, 100% { opacity: 0.8; }
320
+ 50% { opacity: 0.5; }
321
+ }
322
+
323
+ .badge {
324
+ display: inline-block;
325
+ padding: 5px 10px;
326
+ border-radius: 5px;
327
+ background: rgba(138, 43, 226, 0.05);
328
+ border: 1px solid rgba(138, 43, 226, 0.2);
329
+ margin: 5px;
330
+ font-size: 0.9em;
331
+ animation: badgePulse 3s ease-in-out infinite;
332
+ }
333
+
334
+ @keyframes badgePulse {
335
+ 0%, 100% { box-shadow: 0 0 5px rgba(138, 43, 226, 0.15); }
336
+ 50% { box-shadow: 0 0 10px rgba(138, 43, 226, 0.25); }
337
+ }
338
+
339
+ @media (prefers-color-scheme: light) {
340
+ .container {
341
+ background: rgba(255, 255, 255, 0.95);
342
+ border-color: rgba(75, 0, 130, 0.15);
343
+ }
344
+
345
+ .model-name, .section-title, .subtitle {
346
+ color: rgba(75, 0, 130, 0.7);
347
+ text-shadow: 0 0 5px rgba(75, 0, 130, 0.2);
348
+ }
349
+
350
+ .section {
351
+ background: rgba(255, 255, 255, 0.9);
352
+ border-color: rgba(75, 0, 130, 0.15);
353
+ color: rgba(75, 0, 130, 0.7);
354
+ }
355
+
356
+ .section p,
357
+ .section ul li,
358
+ .section > p > strong {
359
+ color: rgba(75, 0, 130, 0.7) !important;
360
+ }
361
+
362
+ .link-card {
363
+ background: rgba(255, 255, 255, 0.95);
364
+ border-color: rgba(75, 0, 130, 0.15);
365
+ }
366
+
367
+ .link-card h3 {
368
+ color: rgba(75, 0, 130, 0.7) !important;
369
+ }
370
+
371
+ .link-button {
372
+ background: rgba(75, 0, 130, 0.05);
373
+ color: rgba(75, 0, 130, 0.7) !important;
374
+ border-color: rgba(75, 0, 130, 0.2);
375
+ }
376
+
377
+ .link-button:hover {
378
+ background: rgba(75, 0, 130, 0.15);
379
+ border-color: rgba(75, 0, 130, 0.3);
380
+ }
381
+
382
+ .disclaimer {
383
+ color: rgba(75, 0, 130, 0.7);
384
+ border-color: rgba(75, 0, 130, 0.7);
385
+ }
386
+
387
+ .badge {
388
+ border-color: rgba(75, 0, 130, 0.2);
389
+ background: rgba(75, 0, 130, 0.05);
390
+ }
391
+ }
392
+ </style>
393
+
394
+ <div class="container">
395
+ <div class="header">
396
+ <h1 class="model-name">Ready.Art</h1>
397
+ <p class="subtitle">Specializing in uncensored LLM fine-tuning & quantization</p>
398
+ </div>
399
+
400
+ <div class="waifu-container">
401
+ <img src="./ready.png" class="waifu-img" alt="Ready.Art Community">
402
+ </div>
403
+
404
+ <div class="section">
405
+ <h2 class="section-title">🌟 Featured Model</h2>
406
+ <p><a href="https://huggingface.co/ReadyArt/The-Omega-Directive-M-24B-Unslop-v2.0" class="link-button">The-Omega-Directive-M-24B-Unslop-v2.0</a></p>
407
+ <ul>
408
+ <li>🧠 Optimized for extreme roleplay scenarios</li>
409
+ <li>⚑ Unfiltered narrative generation</li>
410
+ </ul>
411
+ </div>
412
+
413
+ <div class="section">
414
+ <h2 class="section-title">πŸ”’ Quantization Services</h2>
415
+ <p>We provide optimized quants for all our models:</p>
416
+ <div class="quant-links">
417
+ <a href="https://huggingface.co/docs/hub/en/gguf" class="link-card" target="_blank">
418
+ <h3>GGUF</h3>
419
+ <p>CPU-focused inference</p>
420
+ </a>
421
+ <a href="https://github.com/turboderp-org/exllamav2" class="link-card" target="_blank">
422
+ <h3>EXL2</h3>
423
+ <p>High-speed GPU inference</p>
424
+ </a>
425
+ <a href="https://github.com/turboderp-org/exllamav3" class="link-card" target="_blank">
426
+ <h3>EXL3</h3>
427
+ <p>Next-gen GPU optimization</p>
428
+ </a>
429
+ </div>
430
+ </div>
431
+
432
+ <div class="section">
433
+ <h2 class="section-title">βš™οΈ Recommended Settings</h2>
434
+ <p>For 24B models:</p>
435
+ <a href="https://huggingface.co/ReadyArt/Mistral-V7-Tekken-T8-XML" class="link-button">
436
+ Mistral-V7-Tekken-T8-XML Preset
437
+ </a>
438
+ <p style="margin-top: 15px;">For 12B models:</p>
439
+ <a href="https://huggingface.co/ReadyArt/Mistral-V3-Tekken-T8-XML" class="link-button">
440
+ Mistral-V3-Tekken-T8-XML Preset
441
+ </a>
442
+ </div>
443
+
444
+ <div class="section">
445
+ <h2 class="section-title">πŸ§‘β€πŸ”¬ POC for help</h2>
446
+ <ul>
447
+ <li>FrenzyBiscuit (Project Lead)</li>
448
+ <li>ToastyPigeon (Quantization)</li>
449
+ <li>Sleep Deprived (Fine-Tuning)</li>
450
+ </ul>
451
+ <p>Need help? Join our <a href="https://discord.gg/SppPu776Js" class="link-button">Discord</a> for support!</p>
452
+ </div>
453
+
454
+ <div class="section">
455
+ <h2 class="section-title">β˜• Support Creators</h2>
456
+ <div class="button-group">
457
+ <a href="https://ko-fi.com/readyartsleep" class="link-button">Ko-fi</a>
458
+ <a href="https://discord.gg/SppPu776Js" class="link-button">BeaverAI Discord</a>
459
+ </div>
460
+ </div>
461
+ </div>