Instructions to use rityak/RealCoreXL with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use rityak/RealCoreXL with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("rityak/RealCoreXL", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
| language: | |
| - en | |
| pipeline_tag: text-to-image | |
| library_name: diffusers | |
| tags: | |
| - text-to-image | |
| - stable-diffusion | |
| - safetensors | |
| - stable-diffusion-xl | |
| - merge | |
| license: openrail++ | |
| base_model: | |
| - stabilityai/stable-diffusion-xl-base-1.0 | |
| - boopyfloopy/lustifyXL_v7 | |
| - nDimensional/NatVis-Natural-Vision-SDXL | |
| - cyberdelia/CyberRealisticXL | |
| - fancyfeast/big-asp-v2 | |
| - emilianJR/epiCRealism | |
| - John6666/natural-beauty-v4-sdxl | |
| <style> | |
| /* ===== Hero section ===== */ | |
| .rc-hero { | |
| display: flex; | |
| gap: 1.75rem; | |
| align-items: flex-start; | |
| justify-content: center; | |
| max-width: 1100px; | |
| margin: 0 auto 2.25rem; | |
| flex-wrap: wrap; | |
| } | |
| .rc-hero-media, | |
| .rc-hero-details { | |
| flex: 1 1 320px; | |
| min-width: 0; | |
| } | |
| .rc-hero-media { | |
| display: flex; | |
| justify-content: center; | |
| } | |
| .rc-hero-video { | |
| width: 100%; | |
| max-width: 460px; | |
| border-radius: 8px; | |
| box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); | |
| overflow: hidden; | |
| } | |
| .rc-hero-title { | |
| margin: 0 0 0.6rem; | |
| font-size: 1.9rem; | |
| line-height: 1.2; | |
| color: var(--text-title, inherit); | |
| } | |
| .rc-hero-description { | |
| margin: 0 0 1.1rem; | |
| line-height: 1.5; | |
| font-size: 0.95rem; | |
| color: var(--text-normal, inherit); | |
| } | |
| .rc-hero-features { | |
| list-style: none; | |
| padding: 0; | |
| margin: 0 0 1.2rem; | |
| font-size: 0.95rem; | |
| color: var(--text-normal, inherit); | |
| } | |
| .rc-hero-features li { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.4rem; | |
| margin-bottom: 0.35rem; | |
| } | |
| .rc-hero-features .icon { | |
| font-size: 1.05rem; | |
| opacity: 0.9; | |
| } | |
| .rc-badge-list { | |
| list-style: none; | |
| padding: 0; | |
| margin: 0; | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 0.5rem; | |
| } | |
| .rc-badge-item { | |
| margin: 0; | |
| } | |
| .rc-badge-btn { | |
| display: inline-flex; | |
| align-items: center; | |
| height: 30px; | |
| padding: 0 11px; | |
| font-size: 0.85rem; | |
| font-weight: 500; | |
| text-decoration: none; | |
| border-radius: 4px; | |
| white-space: nowrap; | |
| transition: opacity 0.18s ease, transform 0.1s ease, background-color 0.18s ease; | |
| border: 1px solid transparent; | |
| background-color: transparent; | |
| color: var(--text-normal, inherit); | |
| } | |
| .rc-badge-btn-icon { | |
| width: 14px; | |
| height: 14px; | |
| margin-right: 6px; | |
| } | |
| .rc-badge-btn:hover { | |
| opacity: 0.9; | |
| transform: translateY(-1px); | |
| } | |
| .rc-badge-btn.civitai { | |
| border-color: #2975fa40; | |
| background-color: #2975fa1a; | |
| color: #2975fa; | |
| } | |
| .rc-badge-btn.hf { | |
| border-color: #ff660040; | |
| background-color: #ff66001a; | |
| color: #ff6600; | |
| } | |
| @media (max-width: 700px) { | |
| .rc-hero { | |
| margin-bottom: 1.75rem; | |
| } | |
| .rc-hero-video { | |
| max-width: 100%; | |
| } | |
| } | |
| /* ===== Model cards (ะบะพะผะฟะฐะบัะฝัะต, ะตัะปะธ ะฟะพะฝะฐะดะพะฑัััั) ===== */ | |
| .models-container { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); | |
| gap: 1rem; | |
| padding: 0; | |
| margin: 0 0 1.75rem; | |
| } | |
| .model-card { | |
| border-radius: 8px; | |
| padding: 0.9rem 1rem; | |
| border: 1px solid var(--background-modifier-border, #dedede); | |
| background-color: var(--background-secondary, transparent); | |
| box-shadow: none; | |
| transition: border-color 0.18s ease, transform 0.1s ease; | |
| font-size: 0.9rem; | |
| } | |
| .model-card:hover { | |
| transform: translateY(-2px); | |
| border-color: var(--text-accent, #2975fa80); | |
| } | |
| .model-header { | |
| margin: 0 0 0.35rem; | |
| padding-bottom: 0.25rem; | |
| border-bottom: 1px solid var(--background-modifier-border, #e0e0e0); | |
| font-size: 0.95rem; | |
| font-weight: 600; | |
| color: var(--text-title, inherit); | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| gap: 0.5rem; | |
| } | |
| .model-version { | |
| background: var(--background-modifier-border, #e0e0e0); | |
| color: var(--text-normal, #555); | |
| padding: 0.05rem 0.45rem; | |
| border-radius: 999px; | |
| font-size: 0.75rem; | |
| font-weight: 600; | |
| flex-shrink: 0; | |
| } | |
| .model-type { | |
| font-style: normal; | |
| font-size: 0.78rem; | |
| color: var(--text-muted, #777); | |
| margin-bottom: 0.55rem; | |
| display: block; | |
| } | |
| .model-base { | |
| font-weight: 600; | |
| color: var(--text-accent, #2975fa); | |
| } | |
| .model-description { | |
| margin: 0 0 0.7rem; | |
| line-height: 1.4; | |
| color: var(--text-normal, inherit); | |
| } | |
| .features-list { | |
| list-style: none; | |
| padding: 0; | |
| margin: 0 0 0.75rem; | |
| font-size: 0.85rem; | |
| color: var(--text-normal, inherit); | |
| } | |
| .features-list li { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.35rem; | |
| margin-bottom: 0.3rem; | |
| } | |
| .features-list .icon { | |
| font-size: 0.95rem; | |
| opacity: 0.9; | |
| } | |
| .badge-list { | |
| list-style: none; | |
| padding: 0; | |
| margin: 0; | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 0.4rem; | |
| } | |
| .badge-list li { | |
| margin: 0; | |
| } | |
| .badge-btn { | |
| display: inline-flex; | |
| align-items: center; | |
| padding: 0 9px; | |
| height: 26px; | |
| font-size: 0.78rem; | |
| font-weight: 500; | |
| border-radius: 4px; | |
| text-decoration: none; | |
| border: 1px solid transparent; | |
| background-color: transparent; | |
| transition: opacity 0.18s ease, transform 0.1s ease, background-color 0.18s ease; | |
| color: var(--text-normal, inherit); | |
| } | |
| .badge-btn .btn-icon { | |
| width: 13px; | |
| height: 13px; | |
| margin-right: 5px; | |
| } | |
| .badge-btn:hover { | |
| opacity: 0.9; | |
| transform: translateY(-1px); | |
| } | |
| .badge-btn.civitai { | |
| border-color: #2975fa40; | |
| background-color: #2975fa12; | |
| color: #2975fa; | |
| } | |
| .badge-btn.hf { | |
| border-color: #ff660040; | |
| background-color: #ff660012; | |
| color: #ff6600; | |
| } | |
| /* ===== Repo links block ===== */ | |
| .repo-links { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 0.6rem; | |
| justify-content: center; | |
| margin: 1.75rem auto 0; | |
| padding: 1rem 1.25rem; | |
| max-width: 750px; | |
| border-radius: 10px; | |
| background: var(--background-secondary, rgba(0, 0, 0, 0.02)); | |
| border: 1px solid var(--background-modifier-border, #e0e0e0); | |
| } | |
| .repo-link { | |
| display: inline-flex; | |
| align-items: center; | |
| padding: 0.45rem 0.9rem; | |
| border-radius: 6px; | |
| font-size: 0.82rem; | |
| font-weight: 500; | |
| text-decoration: none; | |
| transition: opacity 0.18s ease, transform 0.1s ease, background-color 0.18s ease; | |
| border: 1px solid transparent; | |
| color: var(--text-normal, inherit); | |
| background-color: transparent; | |
| } | |
| .repo-link:hover { | |
| opacity: 0.9; | |
| transform: translateY(-1px); | |
| } | |
| .repo-link.hf { | |
| border-color: #ff660040; | |
| background-color: #ff660012; | |
| color: #ff6600; | |
| } | |
| .repo-link.civitai { | |
| border-color: #2975fa40; | |
| background-color: #2975fa12; | |
| color: #2975fa; | |
| } | |
| @media (max-width: 768px) { | |
| .repo-links { | |
| flex-direction: column; | |
| align-items: stretch; | |
| } | |
| .repo-link { | |
| justify-content: center; | |
| } | |
| } | |
| .rc-footer-note { | |
| text-align: center; | |
| margin-top: 1.75rem; | |
| padding: 0.75rem; | |
| font-size: 0.8rem; | |
| color: var(--text-muted, #6c757d); | |
| font-style: italic; | |
| } | |
| </style> | |
| <div class="rc-hero"> | |
| <div class="rc-hero-media"> | |
| <video | |
| class="rc-hero-video" | |
| controls | |
| autoplay | |
| loop | |
| muted | |
| playsinline | |
| preload="metadata" | |
| poster="https://huggingface.co/rityak/RealCoreXL/resolve/main/img.png" | |
| > | |
| <source src="https://huggingface.co/rityak/RealCoreXL/resolve/main/vid.mp4" type="video/mp4"> | |
| <img | |
| src="https://huggingface.co/rityak/RealCoreXL/resolve/main/img.png" | |
| alt="Preview image of RealCore XL model" | |
| style="width:100%; max-width:500px; border-radius:8px;" | |
| /> | |
| Your browser does not support the video tag. | |
| </video> | |
| </div> | |
| <div class="rc-hero-details"> | |
| <h1 class="rc-hero-title">RealCore XL 1.0</h1> | |
| <p class="rc-hero-description"> | |
| <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 <em>realistic</em> and <em>amateur photo</em> styles. | |
| Fully supports <strong>NSFW</strong> generation and integrates seamlessly with <strong>LCM</strong> acceleration. | |
| </p> | |
| <ul class="rc-hero-features"> | |
| <li><span class="icon">๐ท</span>Realistic & amateur photo rendering</li> | |
| <li><span class="icon">๐</span>Complex multi-model merge with LoRAs</li> | |
| <li><span class="icon">โก</span>Excellent <strong>LCM</strong> compatibility</li> | |
| <li><span class="icon">๐</span>NSFW supported</li> | |
| </ul> | |
| <ul class="rc-badge-list"> | |
| <li class="rc-badge-item"> | |
| <a | |
| href="https://civitai.com/models/2077774" | |
| target="_blank" | |
| class="rc-badge-btn civitai" | |
| > | |
| <img | |
| src="https://civitai.com/favicon-blue.ico" | |
| alt="CivitAI" | |
| class="rc-badge-btn-icon" | |
| /> | |
| View on CivitAI | |
| </a> | |
| </li> | |
| <li class="rc-badge-item"> | |
| <a | |
| href="https://huggingface.co/rityak/RealCoreXL/resolve/main/RealCoreXL.safetensors?download=true" | |
| target="_blank" | |
| class="rc-badge-btn hf" | |
| > | |
| <img | |
| src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg" | |
| alt="Hugging Face" | |
| class="rc-badge-btn-icon" | |
| /> | |
| Download RealCore XL 1.0 | |
| </a> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| --- | |
| ## ๐งฉ Model Overview | |
| **RealCore XL** is a diffusion-based **Stable Diffusion XL (SDXL)** checkpoint obtained through a complex merging process of multiple anime and realistic models combined with several custom LoRAs. | |
| It produces highly detailed, lifelike, and emotionally grounded results โ especially suited for **realistic**, **soft amateur**, and **photo-like** compositions. | |
| - **Type:** SDXL Merge | |
| - **Base:** SDXL 1.0 | |
| - **Supports:** Realistic / Amateur Photo / NSFW | |
| - **Optimized for:** ComfyUI + LCM | |
| --- | |
| ## โ๏ธ ComfyUI Workflows | |
| | Workflow | Description | Link | | |
| | ----------------- | -------------------------------------------------- | ----- | | |
| | **LCM DMD2** | Optimized for fast inference with LCM acceleration | <a href="https://huggingface.co/rityak/RealCoreXL/blob/main/RealCoreXL-LCM-DMD2.json" target="_blank">Download LCM DMD2 Workflow</a> | | |
| | **Base Workflow** | Standard setup for regular SDXL inference | <a href="https://huggingface.co/rityak/RealCoreXL/blob/main/RealCoreXL.json" target="_blank">Download Base Workflow</a> | | |
| > โ ๏ธ If you encounter issues with the **KSamplerWithNAG** node, please clone the required custom node: | |
| > | |
| > ```bash | |
| > git clone https://github.com/xmarre/ComfyUI-NAG.git | |
| > ``` | |
| > | |
| > into your `ComfyUI/custom_nodes` directory. | |
| --- | |
| ## ๐ง Prompting | |
| For example prompts, styles, and tag guidance โ please check | |
| ๐ [RealCore XL on CivitAI](https://civitai.com/models/2077774) | |
| --- | |
| ## ๐งพ Checkpoint Recipe | |
| Unfortunately, the original **merge recipe** for RealCore XL has been lost. | |
| This model was developed over an extended period involving numerous tests, experiments, and custom node scripting, which led to the recipe being unrecoverable. | |
| A future version is planned, where **RealCore XL** will be **re-merged, improved, and released with a full recipe** for transparency and reproducibility. | |
| --- | |
| **RealCore XL 1.0 โ a versatile SDXL checkpoint for realistic generation, blending art and authenticity.** | |