How to use ayanda13/Ruins_v1 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("ayanda13/Ruins_v1") prompt = "Rust-eaten locomotives slump in a valley swallowed by wildflowers and thorny brambles, their shattered windows glittering like jagged teeth under a stormy violet sky. Vines snake through coal carriages, while a lone fox pauses on tracks buried under dandelions. Lightning fractures the horizon, illuminating graffiti ghosts of names long forgotten. Ruin5" image = pipe(prompt).images[0]