realrebelai commited on
Commit
96fc8f6
·
verified ·
1 Parent(s): 3345f5a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +156 -1
README.md CHANGED
@@ -1,3 +1,158 @@
1
  ---
2
- license: unknown
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ license_name: krea-2-community-license
4
+ license_link: https://huggingface.co/krea/Krea-2-Turbo/blob/main/LICENSE.pdf
5
+ base_model:
6
+ - krea/Krea-2-Turbo
7
+ base_model_relation: quantized
8
+ pipeline_tag: text-to-image
9
+ library_name: gguf
10
+ tags:
11
+ - gguf
12
+ - comfyui
13
+ - krea-2
14
+ - krea2
15
+ - text-to-image
16
+ - quantized
17
+ - lora-merge
18
+ - rebelrealai
19
+ language:
20
+ - en
21
  ---
22
+
23
+
24
+ # Krea-R-Turbo · GGUF
25
+
26
+ GGUF quants of **Krea 2 Turbo** with two RealRebelAI style LoRAs baked directly into
27
+ the transformer, so you get the blended look in a single file with nothing to stack at
28
+ runtime. Built to run on consumer GPUs (8 GB VRAM and up) through the ComfyUI-GGUF
29
+ loader.
30
+
31
+ This is a **derivative** of [`krea/Krea-2-Turbo`](https://huggingface.co/krea/Krea-2-Turbo):
32
+ LoRA-merged, then quantized. It is not the original checkpoint.
33
+
34
+ > [!IMPORTANT]
35
+ > **Stock ComfyUI-GGUF will not load these.** Krea 2 uses a custom architecture
36
+ > (`krea2`) that isn't in city96's upstream loader. You must use the krea2-aware fork:
37
+ > **[RealRebelAI/ComfyUI-GGUF_KREA-2](https://github.com/RealRebelAI/ComfyUI-GGUF_KREA-2)**.
38
+ > Loading with any other GGUF node will fail with `unknown model architecture: 'krea2'`.
39
+
40
+ ---
41
+
42
+ ## What's baked in
43
+
44
+ The base transformer is Krea 2 Turbo. Merged on top, in weight space (not runtime patches):
45
+
46
+ | LoRA | Strength | What it does |
47
+ |------|----------|--------------|
48
+ | **RebelReal** | 0.31 | Photoreal grounding — skin, light, material realism |
49
+ | **RebelMidjourney** | 0.13 | A light MJ-style aesthetic lift on composition and color |
50
+
51
+ Both were trained on **Krea 2 Raw** (per Krea's "train on Raw, run on Turbo" guidance)
52
+ and merged into the Turbo checkpoint before quantization. Strengths are fixed in the
53
+ weights — no LoRA loaders needed in your graph.
54
+
55
+ ---
56
+
57
+ ## Quants
58
+
59
+ Pick by how much VRAM you can spare for the diffusion model (leave room for the text
60
+ encoder + VAE). Sizes are approximate — see the **Files** tab for exact numbers.
61
+
62
+ | File | Type | ~Size | Notes |
63
+ |------|------|-------|-------|
64
+ | `Krea-R-Turbo-Q8_0.gguf` | Q8_0 | ~14 GB | Near-lossless. For 16 GB+ cards or offload. |
65
+ | `Krea-R-Turbo-Q6_K.gguf` | Q6_K | ~11 GB | Excellent quality, hard to tell from Q8. |
66
+ | `Krea-R-Turbo-Q5_K_M.gguf` | Q5_K_M | ~9.4 GB | Great quality/size balance. |
67
+ | `Krea-R-Turbo-Q4_K_M.gguf` | Q4_K_M | ~8.0 GB | **Recommended all-rounder.** 12 GB cards, or 8 GB with offload. |
68
+ | `Krea-R-Turbo-Q3_K_M.gguf` | Q3_K_M | ~6.4 GB | **Best pick for 8 GB VRAM.** Small quality trade. |
69
+ | `Krea-R-Turbo-Q2_K.gguf` | Q2_K | ~5.5 GB | Tightest fit. Visible degradation but usable. |
70
+
71
+ On an 8 GB card (e.g. RTX 3070), Q3_K_M or Q2_K fit most comfortably alongside the VAE
72
+ and text encoder. Larger quants still run via ComfyUI's `--lowvram` / block-swap
73
+ offload — just slower.
74
+
75
+ ---
76
+
77
+ ## Usage in ComfyUI
78
+
79
+ **1. Install the loader node** (one time):
80
+ ```
81
+ cd ComfyUI/custom_nodes
82
+ git clone https://github.com/RealRebelAI/ComfyUI-GGUF_KREA-2
83
+ ```
84
+ Restart ComfyUI.
85
+
86
+ **2. Place the files:**
87
+
88
+ | File | Folder |
89
+ |------|--------|
90
+ | `Krea-R-Turbo-QX.gguf` (this repo) | `ComfyUI/models/unet/` (or `diffusion_models/`) |
91
+ | `qwen3vl_4b` text encoder | `ComfyUI/models/text_encoders/` |
92
+ | `qwen_image_vae.safetensors` | `ComfyUI/models/vae/` |
93
+
94
+ The text encoder (Qwen3-VL 4B) and VAE (Qwen-image VAE) are the standard Krea 2 companions
95
+ and can be pulled from the ComfyUI repack:
96
+ [`Comfy-Org/Krea-2`](https://huggingface.co/Comfy-Org/Krea-2).
97
+
98
+ **3. Wire it up:** load the GGUF with the **Unet Loader (GGUF)** node from the fork above,
99
+ feed it the Qwen3-VL text encoder and Qwen-image VAE, and sample as normal Krea 2 Turbo.
100
+
101
+ ### Recommended sampling
102
+
103
+ Krea 2 Turbo is a distilled, few-step model:
104
+
105
+ - **Steps:** ~8
106
+ - **Guidance:** CFG-free — set CFG to `1.0` (no negative prompt), or guidance `0`
107
+ - **Sampler / scheduler:** `er_sde` + `simple` works well (or `euler` + `simple`)
108
+ - **Resolution:** up to 2048², 1024–1280 sweet spot on 8 GB
109
+
110
+ No positive/negative CFG split is needed; this checkpoint was distilled without it.
111
+
112
+ ---
113
+
114
+ ## Requirements
115
+
116
+ - ComfyUI (recent build with Krea 2 support)
117
+ - [RealRebelAI/ComfyUI-GGUF_KREA-2](https://github.com/RealRebelAI/ComfyUI-GGUF_KREA-2) custom node
118
+ - Qwen3-VL 4B text encoder + Qwen-image VAE (from [`Comfy-Org/Krea-2`](https://huggingface.co/Comfy-Org/Krea-2))
119
+
120
+ This repo contains the **diffusion model (transformer) only** — it will not generate
121
+ anything on its own without the VAE and text encoder above.
122
+
123
+ ---
124
+
125
+ ## License & attribution
126
+
127
+ These weights are a derivative of **Krea 2 Turbo** © Krea.ai, Inc., and remain governed
128
+ by the **Krea 2 Community License Agreement** and the **Krea Acceptable Use Policy** —
129
+ exactly as the original model. See the license:
130
+ [LICENSE.pdf](https://huggingface.co/krea/Krea-2-Turbo/blob/main/LICENSE.pdf).
131
+ In the event of any conflict, the Krea Acceptable Use Policy and Krea 2 Community License
132
+ control.
133
+
134
+ **Deployer obligation:** if you serve or redistribute this model, the license requires
135
+ you to implement content-filtering or equivalent review to prevent generation or
136
+ distribution of unlawful or policy-violating content. Report harmful or illegal outputs
137
+ to `safety@krea.ai`.
138
+
139
+ Upstream:
140
+ - Base model: [`krea/Krea-2-Turbo`](https://huggingface.co/krea/Krea-2-Turbo) (distilled from [`krea/Krea-2-Raw`](https://huggingface.co/krea/Krea-2-Raw))
141
+ - ComfyUI repack (VAE / text encoder): [`Comfy-Org/Krea-2`](https://huggingface.co/Comfy-Org/Krea-2)
142
+ - GGUF tooling based on city96's [ComfyUI-GGUF](https://github.com/city96/ComfyUI-GGUF)
143
+
144
+ The **RebelReal** and **RebelMidjourney** LoRAs are original work by RealRebelAI, trained
145
+ on Krea 2 Raw. The merge and quantization are also RealRebelAI's work; the underlying
146
+ model rights belong to Krea.ai, Inc.
147
+
148
+ ---
149
+
150
+ ## Credits
151
+
152
+ Merged, quantized, and released by **RealRebelAI**.
153
+
154
+ - GitHub: [github.com/RealRebelAI](https://github.com/RealRebelAI)
155
+ - Hugging Face: [huggingface.co/realrebelai](https://huggingface.co/realrebelai)
156
+
157
+ If these are useful, a like on the repo helps others find them. Issues with loading go on
158
+ the [ComfyUI-GGUF_KREA-2](https://github.com/RealRebelAI/ComfyUI-GGUF_KREA-2) tracker.