Working like a charm on FFXL

#3
by idlebg - opened

I've cloned the space to address the "token" issue with private repositories and to incorporate an invisible watermark requirement. You can see these changes at https://huggingface.co/spaces/FFusion/FFXL-SDXL-Convert-diffusers

In the process, our FFXL model was converted, which can be viewed here: https://huggingface.co/FFusion/FFusionXL-09-SDXL

We have set up a demo here: https://huggingface.co/spaces/FFusion/FFusionXL-SDXL-DEMO

using

from diffusers import DiffusionPipeline
import torch

pipe = DiffusionPipeline.from_pretrained("FFusion/FFusionXL-09-SDXL", torch_dtype=torch.float16, use_safetensors=True, variant="fp16")

and Refiner
DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-refiner-0.9", torch_dtype=torch.float16, variant="fp16", use_safetensors=True)
on top.

Sign up or log in to comment