FrenzyBiscuit commited on
Commit
f1ad81e
·
verified ·
1 Parent(s): 59e0e98

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +410 -0
README.md ADDED
@@ -0,0 +1,410 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - ReadyArt/Broken-Tutu-24B-Transgression-v2.0
4
+ base_model_relation: quantized
5
+ quantized_by: frenzybiscuit
6
+ tags:
7
+ - awq
8
+ - 4-bit
9
+ ---
10
+ <style>
11
+ body {
12
+ font-family: 'Quicksand', sans-serif;
13
+ background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
14
+ color: #333 !important;
15
+ text-shadow: 0 0 3px rgba(224, 224, 224, 0.7);
16
+ margin: 0;
17
+ padding: 20px;
18
+ transition: all 0.5s ease;
19
+ }
20
+
21
+ .container {
22
+ min-width: 100%;
23
+ margin: 0 auto;
24
+ max-width: 1200px;
25
+ background: rgba(240, 240, 240, 0.95);
26
+ border-radius: 12px;
27
+ padding: 30px;
28
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 30px rgba(200, 200, 200, 0.5);
29
+ border: 1px solid rgba(200, 200, 200, 0.2);
30
+ position: relative;
31
+ overflow: hidden;
32
+ }
33
+
34
+ .container::before {
35
+ content: '';
36
+ position: absolute;
37
+ top: -1px;
38
+ left: -1px;
39
+ right: -1px;
40
+ bottom: -1px;
41
+ border: 1px solid rgba(200, 200, 200, 0.5);
42
+ border-radius: 12px;
43
+ pointer-events: none;
44
+ animation: borderGlow 3s ease-in-out infinite alternate;
45
+ }
46
+
47
+ @keyframes borderGlow {
48
+ 0% {
49
+ box-shadow: 0 0 5px rgba(200, 200, 200, 0.3);
50
+ border-color: rgba(200, 200, 200, 0.5);
51
+ }
52
+ 50% {
53
+ box-shadow: 0 0 15px rgba(170, 170, 170, 0.3);
54
+ border-color: rgba(170, 170, 170, 0.5);
55
+ }
56
+ 100% {
57
+ box-shadow: 0 0 5px rgba(200, 200, 200, 0.3);
58
+ border-color: rgba(200, 200, 200, 0.5);
59
+ }
60
+ }
61
+
62
+ .header {
63
+ text-align: center;
64
+ margin-bottom: 30px;
65
+ position: relative;
66
+ }
67
+
68
+ .header::after {
69
+ content: '';
70
+ position: absolute;
71
+ bottom: -15px;
72
+ left: 25%;
73
+ right: 25%;
74
+ height: 1px;
75
+ background: linear-gradient(90deg, transparent, rgba(200, 200, 200, 0.5), transparent);
76
+ animation: scanline 8s linear infinite;
77
+ }
78
+
79
+ .model-name {
80
+ color: #333;
81
+ font-size: 2.5em;
82
+ text-shadow: 0 0 15px rgba(200, 200, 200, 0.5);
83
+ margin: 0;
84
+ letter-spacing: -1px;
85
+ animation: textGlow 4s ease-in-out infinite alternate;
86
+ }
87
+
88
+ @keyframes textGlow {
89
+ 0% { text-shadow: 0 0 15px rgba(200, 200, 200, 0.5); }
90
+ 50% { text-shadow: 0 0 20px rgba(170, 170, 170, 0.5); }
91
+ 100% { text-shadow: 0 0 15px rgba(200, 200, 200, 0.5); }
92
+ }
93
+
94
+ .subtitle {
95
+ color: #444;
96
+ font-size: 1.2em;
97
+ margin-top: 10px;
98
+ animation: subtitleFade 6s ease-in-out infinite;
99
+ }
100
+
101
+ .waifu-container {
102
+ margin: 20px -30px;
103
+ width: calc(100% + 60px);
104
+ overflow: hidden;
105
+ border-radius: 8px;
106
+ border: 1px solid rgba(200, 200, 200, 0.3);
107
+ position: relative;
108
+ }
109
+
110
+ .waifu-container::before {
111
+ content: '';
112
+ position: absolute;
113
+ top: 0;
114
+ left: 0;
115
+ right: 0;
116
+ bottom: 0;
117
+ background: linear-gradient(45deg,
118
+ rgba(200, 200, 200, 0.1) 0%,
119
+ transparent 20%,
120
+ transparent 80%,
121
+ rgba(170, 170, 170, 0.1) 100%);
122
+ pointer-events: none;
123
+ animation: gradientSlide 10s linear infinite;
124
+ }
125
+
126
+ .waifu-img {
127
+ width: 100%;
128
+ height: auto;
129
+ border-radius: 0;
130
+ border: none;
131
+ box-shadow: 0 0 40px rgba(200, 200, 200, 0.2);
132
+ transition: transform 0.5s ease;
133
+ }
134
+
135
+ .waifu-img:hover {
136
+ transform: scale(1.01);
137
+ }
138
+
139
+ .section {
140
+ color: #444;
141
+ margin: 25px 0;
142
+ padding: 20px;
143
+ background: rgba(230, 230, 230, 0.9);
144
+ border-radius: 8px;
145
+ border: 1px solid rgba(200, 200, 200, 0.15);
146
+ position: relative;
147
+ transition: all 0.3s ease;
148
+ }
149
+
150
+ .section:hover {
151
+ border-color: rgba(170, 170, 170, 0.3);
152
+ box-shadow: 0 0 15px rgba(200, 200, 200, 0.1);
153
+ }
154
+
155
+ .section::before {
156
+ content: '';
157
+ position: absolute;
158
+ top: -1px;
159
+ left: -1px;
160
+ right: -1px;
161
+ bottom: -1px;
162
+ border: 1px solid rgba(200, 200, 200, 0.3);
163
+ border-radius: 8px;
164
+ pointer-events: none;
165
+ animation: sectionPulse 5s ease-in-out infinite;
166
+ }
167
+
168
+ @keyframes sectionPulse {
169
+ 0%, 100% { opacity: 0.7; }
170
+ 50% { opacity: 0.3; }
171
+ }
172
+
173
+ .section-title {
174
+ color: #333;
175
+ font-size: 1.8em;
176
+ margin-top: 0;
177
+ text-shadow: 0 0 5px rgba(200, 200, 200, 0.3);
178
+ position: relative;
179
+ display: inline-block;
180
+ }
181
+
182
+ .section-title::after {
183
+ content: '';
184
+ position: absolute;
185
+ bottom: -5px;
186
+ left: 0;
187
+ width: 100%;
188
+ height: 1px;
189
+ background: linear-gradient(90deg, rgba(200, 200, 200, 0.5), rgba(170, 170, 170, 0.5));
190
+ transform: scaleX(0);
191
+ transform-origin: left;
192
+ transition: transform 0.3s ease;
193
+ }
194
+
195
+ .section:hover .section-title::after {
196
+ transform: scaleX(1);
197
+ }
198
+
199
+ .quant-links {
200
+ display: grid;
201
+ grid-template-columns: repeat(3, 1fr);
202
+ gap: 15px;
203
+ margin: 20px 0;
204
+ }
205
+
206
+ .link-card {
207
+ padding: 15px;
208
+ background: rgba(220, 220, 220, 0.95);
209
+ border-radius: 8px;
210
+ transition: all 0.3s ease;
211
+ border: 1px solid rgba(200, 200, 200, 0.1);
212
+ position: relative;
213
+ overflow: hidden;
214
+ text-decoration: none;
215
+ color: inherit;
216
+ }
217
+
218
+ .link-card::before {
219
+ content: '';
220
+ position: absolute;
221
+ top: 0;
222
+ left: 0;
223
+ right: 0;
224
+ height: 2px;
225
+ background: linear-gradient(90deg, rgba(200, 200, 200, 0.5), rgba(170, 170, 170, 0.5));
226
+ animation: cardScan 4s linear infinite;
227
+ }
228
+
229
+ @keyframes cardScan {
230
+ 0% { transform: translateX(-100%); }
231
+ 100% { transform: translateX(100%); }
232
+ }
233
+
234
+ .link-card:hover {
235
+ transform: translateY(-3px);
236
+ box-shadow: 0 5px 15px rgba(200, 200, 200, 0.2);
237
+ border-color: rgba(170, 170, 170, 0.3);
238
+ }
239
+
240
+ .link-card h3 {
241
+ margin-top: 0;
242
+ color: #444 !important;
243
+ }
244
+
245
+ .link-button {
246
+ display: inline-flex;
247
+ align-items: center;
248
+ background: rgba(200, 200, 200, 0.1);
249
+ color: #444 !important;
250
+ padding: 8px 15px;
251
+ border-radius: 6px;
252
+ text-decoration: none;
253
+ border: 1px solid rgba(200, 200, 200, 0.3);
254
+ margin: 5px 0;
255
+ transition: all 0.3s ease;
256
+ font-size: 0.95em;
257
+ position: relative;
258
+ overflow: hidden;
259
+ }
260
+
261
+ .link-button::before {
262
+ content: '';
263
+ position: absolute;
264
+ top: 0;
265
+ left: -100%;
266
+ width: 100%;
267
+ height: 100%;
268
+ background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
269
+ transition: all 0.5s ease;
270
+ }
271
+
272
+ .link-button:hover {
273
+ background: rgba(170, 170, 170, 0.2);
274
+ border-color: rgba(170, 170, 170, 0.5);
275
+ transform: translateY(-2px);
276
+ box-shadow: 0 4px 12px rgba(200, 200, 200, 0.2);
277
+ }
278
+
279
+ .link-button::after {
280
+ content: '→';
281
+ margin-left: 8px;
282
+ opacity: 0.7;
283
+ transition: all 0.3s ease;
284
+ }
285
+
286
+ .link-button:hover::after {
287
+ transform: translateX(3px);
288
+ opacity: 1;
289
+ }
290
+
291
+ .button-group {
292
+ display: flex;
293
+ flex-wrap: wrap;
294
+ gap: 10px;
295
+ margin: 15px 0;
296
+ }
297
+
298
+ .disclaimer {
299
+ color: #555;
300
+ border-left: 3px solid #555;
301
+ padding-left: 15px;
302
+ margin: 20px 0;
303
+ position: relative;
304
+ }
305
+
306
+ .disclaimer::before {
307
+ content: '⚠️';
308
+ position: absolute;
309
+ left: -10px;
310
+ top: 0;
311
+ transform: translateX(-100%);
312
+ animation: pulse 2s ease-in-out infinite;
313
+ }
314
+
315
+ @keyframes pulse {
316
+ 0%, 100% { opacity: 1; }
317
+ 50% { opacity: 0.5; }
318
+ }
319
+
320
+ .badge {
321
+ display: inline-block;
322
+ padding: 5px 10px;
323
+ border-radius: 5px;
324
+ background: rgba(200, 200, 200, 0.1);
325
+ border: 1px solid #ccc;
326
+ margin: 5px;
327
+ font-size: 0.9em;
328
+ animation: badgePulse 3s ease-in-out infinite;
329
+ }
330
+
331
+ @keyframes badgePulse {
332
+ 0%, 100% { box-shadow: 0 0 5px rgba(200, 200, 200, 0.3); }
333
+ 50% { box-shadow: 0 0 10px rgba(200, 200, 200, 0.5); }
334
+ }
335
+
336
+ @media (prefers-color-scheme: light) {
337
+ .container {
338
+ background: rgba(255, 255, 255, 0.95);
339
+ border-color: rgba(170, 170, 170, 0.3);
340
+ }
341
+
342
+ .model-name, .section-title, .subtitle {
343
+ color: #333;
344
+ text-shadow: 0 0 5px rgba(170, 170, 170, 0.3);
345
+ }
346
+
347
+ .section {
348
+ background: rgba(255, 255, 255, 0.9);
349
+ border-color: rgba(170, 170, 170, 0.2);
350
+ color: #333;
351
+ }
352
+
353
+ .section p,
354
+ .section ul li,
355
+ .section > p > strong {
356
+ color: #333 !important;
357
+ }
358
+
359
+ .link-card {
360
+ background: rgba(255, 255, 255, 0.95);
361
+ border-color: rgba(170, 170, 170, 0.2);
362
+ }
363
+
364
+ .link-card h3 {
365
+ color: #333 !important;
366
+ }
367
+
368
+ .link-button {
369
+ background: rgba(170, 170, 170, 0.1);
370
+ color: #333 !important;
371
+ border-color: rgba(170, 170, 170, 0.3);
372
+ }
373
+
374
+ .link-button:hover {
375
+ background: rgba(170, 170, 170, 0.2);
376
+ border-color: rgba(170, 170, 170, 0.5);
377
+ }
378
+
379
+ .disclaimer {
380
+ color: #333;
381
+ border-color: #333;
382
+ }
383
+
384
+ .badge {
385
+ border-color: #333;
386
+ background: rgba(170, 170, 170, 0.1);
387
+ }
388
+ }
389
+ </style>
390
+
391
+ <div class="container">
392
+ <div class="header">
393
+ <h1 class="model-name">Broken Tutu 24B Transgression v2.0</h1>
394
+ <p class="subtitle">Released by ReadyArt</p>
395
+ <p class="subtitle">Quant by FrenzyBiscuit</p>
396
+ </div>
397
+
398
+ <div class="waifu-container">
399
+ <img src="./frenzy.webp" class="waifu-img" alt="FrenzyBiscuit">
400
+ </div>
401
+
402
+ <div class="section">
403
+ <h2 class="section-title">AWQ Details</h2>
404
+ <ul>
405
+ <li>Model was quantized down to INT4 using GEMM Kernels.</li>
406
+ <li>Zero point quantization</li>
407
+ <li>Group size of 64</li>
408
+ </ul>
409
+ </div>
410
+ </div>