How to use MidnightRunner/manuka_fudge with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("MidnightRunner/manuka_fudge", dtype=torch.bfloat16, device_map="cuda") prompt = "male, 1male, aesthetic, realistic, realism, strength, assertiveness, competitiveness, masterpiece, best quality, ultra-detailed, ((solo)), nature, (stars, crescent moon), (full body photo:1.3), (colorful background:1.2), spotlight backlit, psychedelic backdrop, realist detail, standing" image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!