Edit model card

This is a Diffusers-compatible version of Yiffymix v43 by chilon249. See the original page for more information.

This model uses v-prediction scheduler. If you are using WebUI Stable Diffusion, put the .yaml file next to the model or otherwise your images will be fried.

Furception VAE 1.0 by RedRocket is included in this page. For WebUI users, it's pretty easy to add it into your Stable Diffusion, just look somewhere for a tutorial. For those who are using Diffusers, you can add it by adding these lines of codes:

from diffusers import StableDiffusionPipeline, AutoencoderKL

model_id = "your desired model"
vae = AutoencoderKL.from_single_file("https://huggingface.co/IDK-ab0ut/Yiffymix_v43/blob/main/furception_vae_1-0.safetensors")
pipeline = StableDiffusionPipeline.from_pretrained(model_id, vae=vae)
Downloads last month
434