Diffusers How to use AIGaming/mist with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("AIGaming/mist", dtype=torch.bfloat16, device_map="cuda")
prompt = "Realistic,Traditional Chinese female portrait,delicate facial features,youthful woman,intricate hair adorned with floral accessories,rosy cheeks,slender neck,wearing an ornate qipao with elaborate embroidery,vibrant warm hues,cultural attire signifying elegance and status,serene and graceful demeanor,adorned with understated drop earrings,clear attention to textile patterns and jewelry details,soft pastel background complementing the subject's gentle visage,artistic inspiration likely drawn from historical Chinese paintings or modern reinterpretations thereof,volumetric lighting, depth of field, cinematic, vibrant, shadows, detailed ,score_9,source_photo,"
image = pipe(prompt).images[0]