rityak commited on
Commit
992db4c
·
verified ·
1 Parent(s): 0e29988

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +301 -0
README.md CHANGED
@@ -187,6 +187,307 @@ license: openrail++
187
 
188
  ---
189
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  ## 🧩 Model Overview
191
 
192
  **RealCore Illustrious** is a diffusion-based **Illustrious** checkpoint obtained through a complex merging process of multiple realistic models combined with several custom LoRAs.
 
187
 
188
  ---
189
 
190
+ # RealCore Models Collection
191
+
192
+ <style>
193
+ .models-container {
194
+ display: flex;
195
+ flex-direction: column;
196
+ gap: 1.5rem;
197
+ max-width: 1200px;
198
+ margin: 0 auto;
199
+ padding: 1rem;
200
+ }
201
+
202
+ .models-header {
203
+ text-align: center;
204
+ margin-bottom: 2rem;
205
+ }
206
+
207
+ .models-header h1 {
208
+ color: #2c3e50;
209
+ font-size: 2.5rem;
210
+ margin-bottom: 0.5rem;
211
+ }
212
+
213
+ .models-header p {
214
+ color: #7f8c8d;
215
+ font-size: 1.2rem;
216
+ }
217
+
218
+ .models-table {
219
+ border-collapse: separate;
220
+ border-spacing: 0;
221
+ width: 100%;
222
+ background-color: white;
223
+ border-radius: 10px;
224
+ overflow: hidden;
225
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
226
+ }
227
+
228
+ .models-table th {
229
+ background-color: #3498db;
230
+ color: white;
231
+ font-weight: bold;
232
+ padding: 1rem;
233
+ text-align: left;
234
+ }
235
+
236
+ .models-table th:first-child {
237
+ border-top-left-radius: 10px;
238
+ }
239
+
240
+ .models-table th:last-child {
241
+ border-top-right-radius: 10px;
242
+ }
243
+
244
+ .models-table tr:nth-child(even) {
245
+ background-color: #f8f9fa;
246
+ }
247
+
248
+ .models-table td {
249
+ padding: 1rem;
250
+ border-bottom: 1px solid #e9ecef;
251
+ }
252
+
253
+ .models-table tr:last-child td:first-child {
254
+ border-bottom-left-radius: 10px;
255
+ }
256
+
257
+ .models-table tr:last-child td:last-child {
258
+ border-bottom-right-radius: 10px;
259
+ }
260
+
261
+ .model-name {
262
+ font-weight: bold;
263
+ color: #2c3e50;
264
+ font-size: 1.1rem;
265
+ }
266
+
267
+ .model-version {
268
+ background-color: #e1f0fa;
269
+ color: #3498db;
270
+ padding: 0.25rem 0.5rem;
271
+ border-radius: 4px;
272
+ font-weight: bold;
273
+ }
274
+
275
+ .link-button {
276
+ display: inline-flex;
277
+ align-items: center;
278
+ justify-content: center;
279
+ height: 32px;
280
+ padding: 0 12px;
281
+ background-color: #f1f3f4;
282
+ color: #495057;
283
+ text-decoration: none;
284
+ border-radius: 6px;
285
+ font-weight: 500;
286
+ transition: all 0.2s;
287
+ border: 1px solid #dee2e6;
288
+ }
289
+
290
+ .link-button:hover {
291
+ background-color: #e9ecef;
292
+ transform: translateY(-2px);
293
+ box-shadow: 0 4px 8px rgba(0,0,0,0.1);
294
+ }
295
+
296
+ .huggingface-button {
297
+ background-color: #ffde59;
298
+ color: #000000;
299
+ border: 1px solid #ffd43b;
300
+ }
301
+
302
+ .civitai-button {
303
+ background-color: #2975fa;
304
+ color: white;
305
+ border: 1px solid #2975fa;
306
+ }
307
+
308
+ .huggingface-button:hover {
309
+ background-color: #f2d04c;
310
+ }
311
+
312
+ .civitai-button:hover {
313
+ background-color: #225cb9;
314
+ }
315
+
316
+ .model-features {
317
+ list-style: none;
318
+ padding: 0;
319
+ margin: 0;
320
+ }
321
+
322
+ .model-features li {
323
+ margin-bottom: 0.5rem;
324
+ }
325
+
326
+ .model-features li:last-child {
327
+ margin-bottom: 0;
328
+ }
329
+
330
+ .repo-links {
331
+ display: flex;
332
+ flex-wrap: wrap;
333
+ gap: 1rem;
334
+ justify-content: center;
335
+ margin: 2rem 0;
336
+ }
337
+
338
+ .repo-link {
339
+ display: inline-flex;
340
+ align-items: center;
341
+ padding: 0.75rem 1.5rem;
342
+ background-color: #3498db;
343
+ color: white;
344
+ text-decoration: none;
345
+ border-radius: 8px;
346
+ font-weight: 500;
347
+ transition: all 0.2s;
348
+ }
349
+
350
+ .repo-link:hover {
351
+ background-color: #2980b9;
352
+ transform: translateY(-2px);
353
+ box-shadow: 0 4px 8px rgba(0,0,0,0.1);
354
+ }
355
+
356
+ .repo-link.hf {
357
+ background-color: #ff66008d;
358
+ }
359
+
360
+ .repo-link.civitai {
361
+ background-color: #2975fa8d;
362
+ }
363
+
364
+ .repo-link.hf:hover {
365
+ background-color: #e65c00;
366
+ }
367
+
368
+ .repo-link.civitai:hover {
369
+ background-color: #1d66d2;
370
+ }
371
+ </style>
372
+
373
+ <div class="models-container">
374
+ <div class="models-header">
375
+ <h1>RealCore Models Collection</h1>
376
+ <p>This page provides an overview of all RealCore models with direct links to their repositories and resources.</p>
377
+ </div>
378
+
379
+ <table class="models-table">
380
+ <thead>
381
+ <tr>
382
+ <th>Model Name</th>
383
+ <th>Version</th>
384
+ <th>Base Model</th>
385
+ <th>Type</th>
386
+ <th>Hugging Face</th>
387
+ <th>CivitAI</th>
388
+ <th>Description</th>
389
+ </tr>
390
+ </thead>
391
+ <tbody>
392
+ <tr>
393
+ <td><span class="model-name">RealCore Illustrious</span></td>
394
+ <td><span class="model-version">1.0</span></td>
395
+ <td>Illustrious</td>
396
+ <td>SDXL Merge</td>
397
+ <td>
398
+ <a href="https://huggingface.co/rityak/RealCore_Illustrious" target="_blank" class="link-button huggingface-button">
399
+ Open on Hugging Face
400
+ </a>
401
+ </td>
402
+ <td>
403
+ <a href="https://civitai.com/models/2128436" target="_blank" class="link-button civitai-button">
404
+ View on CivitAI
405
+ </a>
406
+ </td>
407
+ <td>Merged Illustrious checkpoint with realistic and photo-realistic focus, supports NSFW and LCM</td>
408
+ </tr>
409
+ <tr>
410
+ <td><span class="model-name">RealCore Pony</span></td>
411
+ <td><span class="model-version">1.0</span></td>
412
+ <td>Pony_Diffusion_V6_XL</td>
413
+ <td>SDXL Merge</td>
414
+ <td>
415
+ <a href="https://huggingface.co/rityak/RealCore_Pony" target="_blank" class="link-button huggingface-button">
416
+ Open on Hugging Face
417
+ </a>
418
+ </td>
419
+ <td>
420
+ <a href="https://civitai.com/models/2095050" target="_blank" class="link-button civitai-button">
421
+ View on CivitAI
422
+ </a>
423
+ </td>
424
+ <td>Pony Diffusion V6 checkpoint with realistic styles, supports NSFW and LCM</td>
425
+ </tr>
426
+ <tr>
427
+ <td><span class="model-name">RealCore XL</span></td>
428
+ <td><span class="model-version">1.0</span></td>
429
+ <td>SDXL 1.0</td>
430
+ <td>SDXL Merge</td>
431
+ <td>
432
+ <a href="https://huggingface.co/rityak/RealCoreXL" target="_blank" class="link-button huggingface-button">
433
+ Open on Hugging Face
434
+ </a>
435
+ </td>
436
+ <td>
437
+ <a href="https://civitai.com/models/2077774" target="_blank" class="link-button civitai-button">
438
+ View on CivitAI
439
+ </a>
440
+ </td>
441
+ <td>Stable Diffusion XL checkpoint for realistic and amateur photo styles, supports NSFW and LCM</td>
442
+ </tr>
443
+ </tbody>
444
+ </table>
445
+
446
+ <div class="repo-links">
447
+ <a href="https://huggingface.co/rityak/RealCore_Illustrious" target="_blank" class="repo-link hf">RealCore Illustrious HuggingFace</a>
448
+ <a href="https://huggingface.co/rityak/RealCore_Pony" target="_blank" class="repo-link hf">RealCore Pony HuggingFace</a>
449
+ <a href="https://huggingface.co/rityak/RealCoreXL" target="_blank" class="repo-link hf">RealCore XL HuggingFace</a>
450
+ </div>
451
+
452
+ <div class="model-details">
453
+ <h2>🧠 Model Details</h2>
454
+
455
+ <h3>RealCore Illustrious 1.0</h3>
456
+ <ul class="model-features">
457
+ <li><strong>RealCore Illustrious</strong> is a merged <strong>Illustrious</strong> checkpoint built from multiple models and LoRAs, designed to deliver stunning results in realistic and photo-realistic styles.</li>
458
+ <li>Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration.</li>
459
+ <li><strong>Features</strong>: Realistic & photo-realistic rendering, Complex multi-model merge with LoRAs, Excellent LCM compatibility, NSFW supported</li>
460
+ </ul>
461
+
462
+ <h3>RealCore Pony 1.0</h3>
463
+ <ul class="model-features">
464
+ <li><strong>RealCore Pony</strong> is a merged <strong>Pony Diffusion V6</strong> checkpoint built from multiple models and LoRAs, designed to deliver stunning results in realistic styles.</li>
465
+ <li>Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration.</li>
466
+ <li><strong>Features</strong>: Realistic & photo rendering, Complex multi-model merge with LoRAs, Excellent LCM compatibility, NSFW supported</li>
467
+ </ul>
468
+
469
+ <h3>RealCore XL 1.0</h3>
470
+ <ul class="model-features">
471
+ <li><strong>RealCore XL</strong> is a merged <strong>Stable Diffusion XL</strong> checkpoint built from multiple models and LoRAs, designed to deliver stunning results in realistic and amateur photo styles.</li>
472
+ <li>Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration.</li>
473
+ <li><strong>Features</strong>: Realistic & amateur photo rendering, Complex multi-model merge with LoRAs, Excellent LCM compatibility, NSFW supported</li>
474
+ </ul>
475
+ </div>
476
+
477
+ <div class="base-models">
478
+ <h2>🧩 Base Models Used</h2>
479
+ <ul class="model-features">
480
+ <li><strong>Illustrious</strong> (for RealCore Illustrious)</li>
481
+ <li><strong>Pony_Diffusion_V6_XL</strong> (for RealCore Pony)</li>
482
+ <li><strong>Stable Diffusion XL 1.0</strong> (for RealCore XL)</li>
483
+ </ul>
484
+
485
+ <p>All models are optimized for ComfyUI + LCM and support NSFW generation.</p>
486
+ </div>
487
+ </div>
488
+
489
+ ---
490
+
491
  ## 🧩 Model Overview
492
 
493
  **RealCore Illustrious** is a diffusion-based **Illustrious** checkpoint obtained through a complex merging process of multiple realistic models combined with several custom LoRAs.