Diffusers How to use strangerzonehf/Dynamic-Silver-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/Dynamic-Silver-Flux")
prompt = "Dynamic Silver Art, Silver Surfer , Captured at eye-level on a digital art print of a mans torso and upper torso. The mans body is a shiny silver metal, and the mans head is adorned with a white headband. His eyes are a piercing blue, and his mouth is slightly open. His hands are clasped in front of his chest. The backdrop is dark, and there are small white stars in the sky, adding a touch of contrast to the scene. "
image = pipe(prompt).images[0]