InsecureErasure commited on
Commit
d9ffdd3
Β·
verified Β·
1 Parent(s): 83f2677

docs: Update README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -3
README.md CHANGED
@@ -1,3 +1,66 @@
1
- ---
2
- license: creativeml-openrail-m
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: openrail++
3
+ base_model: stabilityai/stable-diffusion-xl-base-1.0
4
+ tags:
5
+ - stable-diffusion-xl
6
+ - text-to-image
7
+ - gguf
8
+ ---
9
+
10
+ # CyberRealistic XL v9.0 β€” GGUF
11
+
12
+ This repository contains the extracted components and GGUF quantizations of
13
+ [CyberRealistic XL v9.0](https://civitai.com/models/312530?modelVersionId=2611295)
14
+ by [Cyberdelia](https://civitai.com/user/Cyberdelia), intended for use with
15
+ [ComfyUI-GGUF](https://github.com/city96/ComfyUI-GGUF).
16
+
17
+ The scripts and workflows used to generate these files are documented in
18
+ [insecure-erasure/safetensors-goodies](https://github.com/insecure-erasure/safetensors-goodies).
19
+
20
+ ## Repository Structure
21
+
22
+ ```
23
+ /
24
+ β”œβ”€β”€ cyberrealisticXL_v90.gguf
25
+ β”œβ”€β”€ cyberrealisticXL_v90-Q8_0.gguf
26
+ β”œβ”€β”€ cyberrealisticXL_v90-Q6_K.gguf
27
+ β”œβ”€β”€ cyberrealisticXL_v90-Q5_K_S.gguf
28
+ β”œβ”€β”€ cyberrealisticXL_v90-Q4_K_M.gguf
29
+ β”œβ”€β”€ cyberrealisticXL_v90-Q3_K_M.gguf
30
+ β”œβ”€β”€ cyberrealisticXL_v90-Q2_K.gguf
31
+ └── safetensors/
32
+ β”œβ”€β”€ cyberrealisticXL_v90_unet.safetensors
33
+ β”œβ”€β”€ cyberrealisticXL_v90_clip_l.safetensors
34
+ β”œβ”€β”€ cyberrealisticXL_v90_clip_g.safetensors
35
+ └── cyberrealisticXL_v90_vae.safetensors
36
+ ```
37
+
38
+ ## SDXL Pipeline Comparison: Checkpoint vs GGUF + VAE Configurations
39
+
40
+ This section validates that different SDXL pipeline configurations produce equivalent results.
41
+
42
+ All three images were generated using the same prompt, seed, and sampler settings.
43
+
44
+ * **Checkpoint:** [cyberrealisticXL v9.0](https://civitai.com/models/312530?modelVersionId=2611295) by [Cyberdelia](https://civitai.com/user/Cyberdelia)
45
+ * **Prompt:** *ultra detailed bust portrait of a 28-year-old woman, medium shot, wearing turtle neck sweater, subject centered, natural framing, 50mm lens, realistic skin texture, detailed eyes, soft cinematic lighting, professional photography, high dynamic range, sharp focus, natural colors*
46
+ * **Negative prompt:** *lowres, blurry, oversharpened, jpeg artifacts, bad anatomy, extra fingers, deformed hands, cross-eye, plastic skin, overexposed, underexposed, watermark, text, logo*
47
+ * **Sampler:** dpmpp_2m
48
+ * **Scheduler:** karras
49
+ * **Steps:** 30
50
+ * **Denoise:** 1.0
51
+
52
+ | [![Full checkpoint F16](images/sdxl_checkpoint-fp16.png)](images/sdxl_checkpoint-fp16.png) | [![GGUF F16 + VAE from checkpoint](images/sdxl_gguf-fp16_clip_vae.png)](images/sdxl_gguf-fp16_clip_vae.png) | [![GGUF F16 + VAE fp16-fix F16](images/sdxl_gguf-fp16_clip_vae-fp16-fix-fp16.png)](images/sdxl_gguf-fp16_clip_vae-fp16-fix-fp16.png) |
53
+ |:---:|:---:|:---:|
54
+ | <small>**Full checkpoint β€” F16**<br>Standard SDXL checkpoint with the VAE baked in at F16. Reference output.</small> | <small>**GGUF F16 + VAE extracted from checkpoint**<br>UNet in GGUF F16, VAE and CLIP extracted from the same checkpoint in F16. Pixel-perfect identical to the reference.</small> | <small>**GGUF F16 + [madebyollin VAE fp16-fix](https://huggingface.co/madebyollin/sdxl-vae-fp16-fix) β€” F16**<br>Same as above but with madebyollin's VAE (originally FP32, converted to F16).</small> |
55
+
56
+ The following table shows the difference between some of the K-quants available with `llama-quantize`.
57
+
58
+ | ![Q8_0](images/Q8_0.png) | ![Q6_K](images/Q6_K.png) | ![Q4_K_M](images/Q4_K_M.png) |
59
+ |:---:|:---:|:---:|
60
+ | Q8_0 | Q6_K | Q4_K_M |
61
+
62
+ ## Credits
63
+
64
+ This repository contains derived weights from
65
+ [CyberRealistic XL v9.0](https://civitai.com/models/312530?modelVersionId=2611295)
66
+ by [Cyberdelia](https://civitai.com/user/Cyberdelia), used under its original license.