How to use strangerzonehf/Flux-Master-Claymation 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/Flux-Master-Claymation") prompt = "Master Claymation, A mid-shot on a sandy beige backdrop, three plastic figures walk in unison, dressed in desert-themed outfits: beige overalls, linen scarves, and boots dusted with fine powder. The central figure wears aviator goggles and holds a mini compass. The light is warm, evoking the glow of a setting sun in a stop-motion desert expedition." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!