Instructions to use ilkerzgi/krea-2-graphic-novel-earthy-ink-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ilkerzgi/krea-2-graphic-novel-earthy-ink-lora with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("krea/Krea-2-Turbo", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("ilkerzgi/krea-2-graphic-novel-earthy-ink-lora") prompt = "a lighthouse on a rocky cliff. graphic novel earthy ink style" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Add ComfyUI usage note
Browse files
README.md
CHANGED
|
@@ -111,3 +111,11 @@ print(result)
|
|
| 111 |
## License
|
| 112 |
|
| 113 |
Krea 2 Community License. See the [license](https://huggingface.co/krea/Krea-2-LoRA-impressionist/blob/main/LICENSE.pdf).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
## License
|
| 112 |
|
| 113 |
Krea 2 Community License. See the [license](https://huggingface.co/krea/Krea-2-LoRA-impressionist/blob/main/LICENSE.pdf).
|
| 114 |
+
|
| 115 |
+
## ComfyUI
|
| 116 |
+
|
| 117 |
+
A ComfyUI-compatible copy of the weights is included in this repo: **`graphic-novel-earthy-ink-comfy.safetensors`**. It is the
|
| 118 |
+
exact same LoRA with the key prefix remapped (`base_model.model.` to `diffusion_model.`) so
|
| 119 |
+
ComfyUI loads it directly. Download that file into `ComfyUI/models/loras/` and use it like
|
| 120 |
+
any other LoRA. The original `graphic-novel-earthy-ink.safetensors` is for [fal](https://fal.ai) / diffusers.
|
| 121 |
+
|