FLUX Editorial Illustration
Published by @editorial_flux · Community adapter
FLUX-based editorial illustration in the style of contemporary magazine illustration: bold shapes, limited palette, conceptual metaphors, and strong negative-space use.
Usage
from diffusers import DiffusionPipeline
import torch
pipe = DiffusionPipeline.from_pretrained(
"black-forest-labs/FLUX.1-dev",
torch_dtype=torch.float16,
).to("cuda")
pipe.load_lora_weights("modelforgelab/flux-illustration-lora")
image = pipe("your prompt here").images[0]
image.save("output.png")
Compatibility
- diffusers>=0.30
- ComfyUI