Hi, I did Dreambooth fine tuning on Flux-Dev-1 following the tutorial. I'd like to use this fine tu
Hi, I did Dreambooth fine tuning on Flux-Dev-1 following the tutorial. I'd like to use this fine tuned model in the Stable Diffusion pipeline if possible, i.e. something like the following but using my Dreambooth weights:
import torch
from diffusers import FluxPipeline
pipe = FluxPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16)
Is there a recommended way to load the Dreambooth model weights?
import torch
from diffusers import FluxPipeline
pipe = FluxPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16)
Is there a recommended way to load the Dreambooth model weights?

