--- license: openrail++ base_model: diffusers/stable-diffusion-xl-base-1.0 tags:

language:


FFusionXL-openvino-onnx-directml.png <div style="display: flex; flex-wrap: wrap; gap: 2px;"> <a href="https://huggingface.co/FFusion/"><img src="https://img.shields.io/badge/ONNX_Version-Available-brightgreen" alt="ONNX Version Available"></a> <a href="https://huggingface.co/FFusion/"><img src="https://img.shields.io/badge/OpenVINO-Support-blue" alt="OpenVINO Support"></a> <a href="https://huggingface.co/FFusion/"><img src="https://img.shields.io/badge/Compatibility-Intel%20|%20AMD%20|%20NVIDIA-orange" alt="Intel/AMD/NVIDIA Compatible"></a> </div>

๐ŸŒŸ Overview

๐Ÿ“œ Model Description

FFusionXL "Base" is a foundational model designed to accelerate training processes. Crafted with flexibility in mind, it serves as a base for training custom models across a variety of standards, enabling innovation and efficiency.

<div style="display: flex; flex-wrap: wrap; gap: 2px;"> <a href="#"><img src="https://img.shields.io/badge/Safetensor-FP16%20%26%20FP32-blue" alt="Safetensor checkpoints"></a> <a href="#"><img src="https://img.shields.io/badge/Diffusers(Safetensors)-FP16%20%26%20FP32-green" alt="Diffusers(safetensors)"></a> <a href="#"><img src="https://img.shields.io/badge/Diffusers(PyTorch%20Bin)-FP16%20%26%20FP32-orange" alt="Diffusers(pytorch bin)"></a> <a href="#"><img src="https://img.shields.io/badge/ONNX-Unoptimized%20FP32-red" alt="ONNX un-optimized FP32"></a> <a href="#"><img src="https://img.shields.io/badge/ONNX%20Optimized-FP16%20DirectML%20Support-blueviolet" alt="ONNX Optimized FP16 full DirectML support"></a> <a href="#"><img src="https://img.shields.io/badge/Intelยฎ%20OpenVINOโ„ข-FP32%20%26%20FP16-brightgreen" alt="Intelยฎ OpenVINOโ„ข FP32 & FP16"></a> </div>

Available formats for training:

๐Ÿ“Š Model Sources

Table of Contents

  1. ๐Ÿ“Œ ONNX Version
    1. ๐Ÿ”– ### ๐Ÿ“Œ ONNX Details
    2. ๐Ÿ”– ### ๐Ÿ“Œ AMD Support for Microsoftยฎ DirectML Optimization of Stable Diffusion
    3. ๐Ÿ”– ### ๐Ÿ“Œ ONNX Inference Instructions
    4. ๐Ÿ”– ### ๐Ÿ“Œ Text-to-Image
  2. ๐Ÿ“Œ Intelยฎ OpenVINOโ„ข Version
    1. ๐Ÿ“Œ OpenVINO Inference with FFusion/FFusionXL-BASE
    2. ๐Ÿ”– ### ๐Ÿ“Œ Installing Dependencies
    3. ๐Ÿ”– ### ๐Ÿ“Œ Text-to-Image
    4. ๐Ÿ”– ### ๐Ÿ“Œ Text-to-Image with Textual Inversion
    5. ๐Ÿ”– ### ๐Ÿ“Œ Image-to-Image
    6. ๐Ÿ”– ### ๐Ÿ“Œ Refining the Image Output
  3. ๐Ÿ“œ Part 003: ๐Ÿงจ Model Diffusers, Fast LoRa Loading, and Training 1. ๐Ÿ“Œ Model Diffusers: Unleashing the Power of FFusion/FFusionXL-BASE 2. ๐Ÿ“Œ Installing the dependencies 3. ๐Ÿ“Œ Training 4. ๐Ÿ“Œ Inference 5. ๐Ÿ“Œ Training 6. ๐Ÿ“Œ Finetuning the text encoder and UNet 7. ๐Ÿ“Œ Inference
  4. ๐Ÿ“Œ Evaluation

### ๐Ÿ“Œ ONNX Version

preview-ffusionAI__base_00026_ copy.jpg

We are proud to announce a fully optimized Microsoft ONNX Version exclusively compatible with the latest DirectML Execution Provider. All the ONNX files are optimized (Quantization) to fp16 for fast inference and training across all devices.

The Vae_Decoder is kept at fp32 with settings:

"float16": false,
"use_gpu": true,
"keep_io_types": true,
"force_fp32_ops": ["RandomNormalLike"]

to avoid black screens and broken renders. As soon as a proper solution for a full fp16 VAE decoder arrives, we will update it. VAE encoder and everything else is fully optimized ๐ŸคŸ.

Our ONNX is OPTIMIZED using ONNX v8:

๐Ÿ”– ### ๐Ÿ“Œ ONNX Details

NETRON Detrails: onxxapp-nutron-ffusionai.jpg

Install

macOS: Download the .dmg file or run brew install --cask netron

Linux: Download the .AppImage file or run snap install netron

Windows: Download the .exe installer or run winget install -s winget netron

https://netron.app/

-- NETRON browser version: Start Text Encoder Text Encoder1 FFusionXL.jpg

--NETRON browser version: Start Text Encoder 2 TextEncoder2 FFusionXL.jpg

--NETRON browser version: Start VAE decoder

--NETRON browser version: Start VAE encoder VAE encoder FFUSION-ai-Screenshot_2016.jpg

--NETRON browser version: Start UNET

๐Ÿ”– ### ๐Ÿ“Œ AMD Support for Microsoftยฎ DirectML Optimization of Stable Diffusion

FFusionXL-directML.jpg

AMD has released support for Microsoft DirectML optimizations for Stable Diffusion, working closely with Microsoft for optimal performance on AMD devices.

Microsoft DirectML AMD Microsoft DirectML Stable Diffusion

๐Ÿ”– ### ๐Ÿ“Œ ONNX Inference Instructions

Onnx-FFusionXL1.jpg

๐Ÿ”– ### ๐Ÿ“Œ Text-to-Image

Here is an example of how you can load an ONNX Stable Diffusion model and run inference using ONNX Runtime:

from optimum.onnxruntime import ORTStableDiffusionPipeline

model_id = "FFusion/FFusionXL-BASE"
pipeline = ORTStableDiffusionPipeline.from_pretrained(model_id)
prompt = "sailing ship in storm by Leonardo da Vinci"
images = pipeline(prompt).images

### ๐Ÿ“Œ Intelยฎ OpenVINOโ„ข Version

A converted Intelยฎ OpenVINOโ„ข model is also included for inference testing and training. No Quantization and optimization applied yet.


### ๐Ÿ“Œ OpenVINO Inference with FFusion/FFusionXL-BASE

๐Ÿ”– ### ๐Ÿ“Œ Installing Dependencies

Before using OVStableDiffusionXLPipeline, make sure to have diffusers and invisible_watermark installed. You can install the libraries as follows:

pip install diffusers
pip install invisible-watermark>=0.2.0

๐Ÿ”– ### ๐Ÿ“Œ Text-to-Image

Here is an example of how you can load a FFusion/FFusionXL-BASE OpenVINO model and run inference using OpenVINO Runtime:

from optimum.intel import OVStableDiffusionXLPipeline

model_id = "FFusion/FFusionXL-BASE"
base = OVStableDiffusionXLPipeline.from_pretrained(model_id)
prompt = "train station by Caspar David Friedrich"
image = base(prompt).images[0]
image.save("train_station.png")

๐Ÿ”– ### ๐Ÿ“Œ Text-to-Image with Textual Inversion

First, you can run the original pipeline without textual inversion:

from optimum.intel import OVStableDiffusionXLPipeline
import numpy as np

model_id = "FFusion/FFusionXL-BASE"
prompt = "charturnerv2, multiple views of the same character in the same outfit, a character turnaround of a beautiful cyber female wearing a black corset and pink latex shirt, scifi best quality, intricate details."
np.random.seed(0)

base = OVStableDiffusionXLPipeline.from_pretrained(model_id, export=False, compile=False)
base.compile()
image1 = base(prompt, num_inference_steps=50).images[0]
image1.save("sdxl_without_textual_inversion.png")

Then, you can load charturnerv2 textual inversion embedding and run the pipeline with the same prompt again:

# Reset stable diffusion pipeline
base.clear_requests()

# Load textual inversion into stable diffusion pipeline
base.load_textual_inversion("./charturnerv2.pt", "charturnerv2")

# Compile the model before the first inference
base.compile()
image2 = base(prompt, num_inference_steps=50).images[0]
image2.save("sdxl_with_textual_inversion.png")

SDXL-preview.png FFusi1onXL_with_textual_inveaarsion1.png FFusionXL_with_textual_inversion1.png

๐Ÿ”– ### ๐Ÿ“Œ Image-to-Image

Here is an example of how you can load a PyTorch FFusion/FFusionXL-BASE model, convert it to OpenVINO on-the-fly, and run inference using OpenVINO Runtime for image-to-image:

from optimum.intel import OVStableDiffusionXLImg2ImgPipeline
from diffusers.utils import load_image

model_id = "FFusion/FFusionXL-BASE-refiner-1.0"
pipeline = OVStableDiffusionXLImg2ImgPipeline.from_pretrained(model_id, export=True)

url = "https://huggingface.co/datasets/optimum/documentation-images/resolve/main/intel/openvino/sd_xl/castle_friedrich.png"
image = load_image(url).convert("RGB")
prompt = "medieval castle by Caspar David Friedrich"
image = pipeline(prompt, image=image).images[0]
pipeline.save_pretrained("openvino-FF-xl-refiner-1.0")

๐Ÿ”– ### ๐Ÿ“Œ Refining the Image Output

The image can be refined by making use of a model like FFusion/FFusionXL-BASE-refiner-1.0. In this case, you only have to output the latents from the base model.

from optimum.intel import OVStableDiffusionXLImg2ImgPipeline

model_id = "FFusion/FFusionXL-BASE-refiner-1.0"
refiner = OVStableDiffusionXLImg2ImgPipeline.from_pretrained(model_id, export=True)

image = base(prompt=prompt, output_type="latent").images[0]
image = refiner(prompt=prompt, image=image[None, :]).images[0]

๐Ÿ“œ Part 003: ๐Ÿงจ Model Diffusers, Fast LoRa Loading, and Training

### ๐Ÿ“Œ Model Diffusers: Unleashing the Power of FFusion/FFusionXL-BASE

Whether you're an artist, researcher, or AI enthusiast, our model is designed to make your journey smooth and exciting. Make sure to upgrade diffusers to >= 0.19.3:

pip install diffusers --upgrade

In addition, make sure to install transformers, safetensors, accelerate, and the invisible watermark:

pip install invisible_watermark transformers accelerate safetensors

You can use the model then as follows:

from diffusers import DiffusionPipeline
import torch

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

# if using torch < 2.0
# pipe.enable_xformers_memory_efficient_attention()

prompt = "An astronaut riding a green horse"

images = pipe(prompt=prompt).images[0]

๐Ÿ“œ Diffusers Training Guide: Training FFusion/FFusionXL-BASE with LoRA

Stable Diffusion XL text-to-image fine-tuning

The train_text_to_image_sdxl.py script shows how to fine-tune Stable Diffusion XL (SDXL) on your own dataset.

๐Ÿšจ This script is experimental. The script fine-tunes the whole model and often times the model overfits and runs into issues like catastrophic forgetting. It's recommended to try different hyperparamters to get the best result on your dataset. ๐Ÿšจ

๐Ÿ“œ Running locally with PyTorch

### ๐Ÿ“Œ Installing the dependencies

Before running the scripts, make sure to install the library's training dependencies:

Important

To make sure you can successfully run the latest versions of the example scripts, we highly recommend installing from source and keeping the install up to date as we update the example scripts frequently and install some example-specific requirements. To do this, execute the following steps in a new virtual environment:

git clone https://github.com/huggingface/diffusers
cd diffusers
pip install -e .

Then cd in the examples/text_to_image folder and run

pip install -r requirements_sdxl.txt

And initialize an ๐Ÿค—Accelerate environment with:

accelerate config

Or for a default accelerate configuration without answering questions about your environment

accelerate config default

Or if your environment doesn't support an interactive shell (e.g., a notebook)

from accelerate.utils import write_basic_config
write_basic_config()

When running accelerate config, if we specify torch compile mode to True there can be dramatic speedups.

### ๐Ÿ“Œ Training

export MODEL_NAME="FFusion/FFusionXL-BASE"
export VAE="madebyollin/sdxl-vae-fp16-fix"
export DATASET_NAME="lambdalabs/pokemon-blip-captions"

accelerate launch train_text_to_image_sdxl.py \
  --pretrained_model_name_or_path=$MODEL_NAME \
  --pretrained_vae_model_name_or_path=$VAE \
  --dataset_name=$DATASET_NAME \
  --enable_xformers_memory_efficient_attention \
  --resolution=512 --center_crop --random_flip \
  --proportion_empty_prompts=0.2 \
  --train_batch_size=1 \
  --gradient_accumulation_steps=4 --gradient_checkpointing \
  --max_train_steps=10000 \
  --use_8bit_adam \
  --learning_rate=1e-06 --lr_scheduler="constant" --lr_warmup_steps=0 \
  --mixed_precision="fp16" \
  --report_to="wandb" \
  --validation_prompt="a cute Sundar Pichai creature" --validation_epochs 5 \
  --checkpointing_steps=5000 \
  --output_dir="sdxl-pokemon-model" \
  --push_to_hub

Notes:

### ๐Ÿ“Œ Inference

from diffusers import DiffusionPipeline
import torch

model_path = "FFusion/FFusionXL-BASE" # <-- change this to your new trained model
pipe = DiffusionPipeline.from_pretrained(model_path, torch_dtype=torch.float16)
pipe.to("cuda")

prompt = "A pokemon with green eyes and red legs."
image = pipe(prompt, num_inference_steps=30, guidance_scale=7.5).images[0]
image.save("pokemon.png")

๐Ÿ“œ LoRA training example for Stable Diffusion XL (SDXL)

Low-Rank Adaption of Large Language Models was first introduced by Microsoft in LoRA: Low-Rank Adaptation of Large Language Models by Edward J. Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen.

In a nutshell, LoRA allows adapting pretrained models by adding pairs of rank-decomposition matrices to existing weights and only training those newly added weights. This has a couple of advantages:

cloneofsimo was the first to try out LoRA training for Stable Diffusion in the popular lora GitHub repository.

With LoRA, it's possible to fine-tune Stable Diffusion on a custom image-caption pair dataset on consumer GPUs like Tesla T4, Tesla V100.

### ๐Ÿ“Œ Training

First, you need to set up your development environment as is explained in the installation section. Make sure to set the MODEL_NAME and DATASET_NAME environment variables. Here, we will use Stable Diffusion XL 1.0-base and the Pokemons dataset.

Note: It is quite useful to monitor the training progress by regularly generating sample images during training. Weights and Biases is a nice solution to easily see generating images during training. All you need to do is to run pip install wandb before training to automatically log images.

export MODEL_NAME="FFusion/FFusionXL-BASE"
export DATASET_NAME="lambdalabs/pokemon-blip-captions"

For this example we want to directly store the trained LoRA embeddings on the Hub, so we need to be logged in and add the --push_to_hub flag.

huggingface-cli login

Now we can start training!

accelerate launch train_text_to_image_lora_sdxl.py \
  --pretrained_model_name_or_path=$MODEL_NAME \
  --dataset_name=$DATASET_NAME --caption_column="text" \
  --resolution=1024 --random_flip \
  --train_batch_size=1 \
  --num_train_epochs=2 --checkpointing_steps=500 \
  --learning_rate=1e-04 --lr_scheduler="constant" --lr_warmup_steps=0 \
  --seed=42 \
  --output_dir="sd-pokemon-model-lora-sdxl" \
  --validation_prompt="cute dragon creature" --report_to="wandb" \
  --push_to_hub

The above command will also run inference as fine-tuning progresses and log the results to Weights and Biases.

### ๐Ÿ“Œ Finetuning the text encoder and UNet

The script also allows you to finetune the text_encoder along with the unet.

๐Ÿšจ Training the text encoder requires additional memory.

Pass the --train_text_encoder argument to the training script to enable finetuning the text_encoder and unet:

accelerate launch train_text_to_image_lora_sdxl.py \
  --pretrained_model_name_or_path=$MODEL_NAME \
  --dataset_name=$DATASET_NAME --caption_column="text" \
  --resolution=1024 --random_flip \
  --train_batch_size=1 \
  --num_train_epochs=2 --checkpointing_steps=500 \
  --learning_rate=1e-04 --lr_scheduler="constant" --lr_warmup_steps=0 \
  --seed=42 \
  --output_dir="sd-pokemon-model-lora-sdxl-txt" \
  --train_text_encoder \
  --validation_prompt="cute dragon creature" --report_to="wandb" \
  --push_to_hub

### ๐Ÿ“Œ Inference

Once you have trained a model using above command, the inference can be done simply using the DiffusionPipeline after loading the trained LoRA weights. You need to pass the output_dir for loading the LoRA weights which, in this case, is sd-pokemon-model-lora-sdxl.

from diffusers import DiffusionPipeline
import torch

model_path = "takuoko/sd-pokemon-model-lora-sdxl"
pipe = DiffusionPipeline.from_pretrained("FFusion/FFusionXL-BASE", torch_dtype=torch.float16)
pipe.to("cuda")
pipe.load_lora_weights(model_path)

prompt = "A pokemon with green eyes and red legs."
image = pipe(prompt, num_inference_steps=30, guidance_scale=7.5).images[0]
image.save("pokemon.png")

### ๐Ÿ“Œ Evaluation

evaluation-ffusionAI.jpg evaluation-ffusionXL.jpg

image_comparisons.png combined_FFigure.png

Utilizing yuvalkirstain/PickScore_v1 model, this analysis was conducted by FFusion.AI. It serves as a vital contribution to the ongoing research in testing Stable Diffusion Models' prompt win rate and accuracy.

๐Ÿ“ง For any inquiries or support, please contact di@ffusion.ai. We're here to help you every step of the way!