[Model] FLUX.1 Full Finetuned & Merged
Collection
This is *not* a collection of FLUX LoRA fine-tuned models, it collects FLUX.1-dev full fine-tuned models.
•
8 items
•
Updated
This model is a conversion of the original model from the fp8 single file format to the Diffusers standalone format.
The script used for the conversion, cast from fp8 to bf16 for convenience:
from diffusers import FluxPipeline, FluxTransformer2DModel
import torch
transformer = (
FluxTransformer2DModel.from_single_file(
"./jgs-v2-fp8.safetensors",
torch_dtype=torch.float8_e4m3fn,
)
.to("cuda")
.to(torch.bfloat16)
)
pipe = FluxPipeline.from_pretrained(
"black-forest-labs/FLUX.1-dev", transformer=transformer, torch_dtype=torch.bfloat16
)
pipe.save_pretrained("./output-model")
Base model
black-forest-labs/FLUX.1-dev