How to use KappaNeuro/tim-walker-style with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("KappaNeuro/tim-walker-style") prompt = "Tim Walker Style - A full body white model with a chanel tailleur minimalistic beige dress holding several animals like a pink monkey, a pink parrot, a pink cats, a pink peacock inspired by Brazilian Candomble folclore xango in a old aristocratic barroc house photographed by Tim Walker, red and pink, creepy, evil, Black Magic, old aristocraty house, scary,, bizarre, extremely sharp image, extremely detailed, best quality possible, best definition possible, 8k" image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!