Diffusers How to use Emuixom/Typography_CoreDeath 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/Typography_CoreDeath")
prompt = "The image is a black square with a white, abstract design in the center that forms the title of the band: \"The Dominate Arcade End.\" The design is composed of intricate, angular branches arranged in a symmetrical pattern, giving it a sense of depth and dimension. Each branch converges to shape the letters of the band name, blending seamlessly into an abstract and chaotic composition. The branches are uniform in size and stark white, creating a sharp and oppressive aesthetic. The background is entirely black, enhancing the contrast and making the white design stand out dramatically. The overall effect is a fusion of abstract brutality and precise symmetry, embodying the intensity of deathcore style."
image = pipe(prompt).images[0]