Diffusers How to use renderartist/simplevectorhidream with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("HiDream-ai/HiDream-I1-Full", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("renderartist/simplevectorhidream")
prompt = "v3ct0r style, simple flat vector art, isolated, cute playful duckling front pose holding a sign that says \"Simple Vector HiDream\" in an orange font, the background is solid dark blue background with star patterns"
image = pipe(prompt).images[0]