Diffusers How to use lenML/case-h-beta with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("lenML/case-h-beta", dtype=torch.bfloat16, device_map="cuda")
prompt = "cinematic film still one man, orc, in armor. shallow depth of field, vignette, highly detailed, high budget Hollywood movie, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy"
image = pipe(prompt).images[0]