How to use FFusion/FFusionXL-BASE with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("FFusion/FFusionXL-BASE", dtype=torch.bfloat16, device_map="cuda") prompt = "a dog in colorful exploding clouds, dreamlike surrealism colorful smoke and fire coming out of it, explosion of data fragments, exploding background,realistic explosion, 3d digital art" image = pipe(prompt).images[0]
Hello, I noticed there's a reference to the FFusion/FFusionXL-BASE-refiner-1.0 model, however it does not appear to be available. Do you have plans to include it in the future?
FFusion/FFusionXL-BASE-refiner-1.0
· Sign up or log in to comment