How to use JerryOrbachJr/Dieter-Rams-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("runwayml/stable-diffusion-v1-5", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("JerryOrbachJr/Dieter-Rams-Style") prompt = "cinematic photography, haze cinematic scene, of a woman wearing a black futuristic latex mask, sitting in a sphere personal vehicle, moment of stillness, led lighting, weird, 2000s aesthetic, mirrored, white sand desert background, futuristic fashion, masterpiece, film grain, 35mm film" image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!