How to use Emuixom/davidsgrim 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("Emuixom/davidsgrim") prompt = "this is a digitally-created artwork from a dark, gothic-themed album cover inspired by ancient classical architecture, central to the image is a statue of a young, serene blonde male face with closed eyes, placed on a golden, ornate pedestal, above the face looms a dark-robed figure wielding a large, intricately designed scythe, symbolizing death, both the statue and the figure are surrounded by a crimson, blood-like substance, emphasizing a theme of sacrifice or darkness, the architectural background features grand, weathered columns and a majestic ancient domed structure, hinting at a historical or mythological setting, a circle of blood-red rose petals and broken stone fragments scattered around the base complete the gothic atmosphere, text at the top left reads parental advisory - explicit content in bold white, contrasting against the dark tones" image = pipe(prompt).images[0]
· Sign up or log in to comment