Diffusers How to use strangerzonehf/Halftone-Recraft-Flux with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("strangerzonehf/Halftone-Recraft-Flux")
prompt = "Halftone Recraft, A close-up of a black and white photograph of a cars tail light. The car is facing towards the right side of the frame. The tail light is glowing red. The bumper of the car is visible. The background of the photograph is white with black"
image = pipe(prompt).images[0]