Views
No views yet
e4m3fn) safetensors of black-forest-labs/FLUX.1-Fill-dev, prepared for inpainting workloads on consumer GPUs. This repository is an unmodified redistribution of boricuapab/flux1-fill-dev-fp8 with an explicit copy of the upstream license added (the source had an empty LICENSE file).flux1-fill-dev-fp8.safetensors — single-file fp8 weights (~11 GB)LICENSE — FLUX.1 [dev] Non-Commercial License textREADME.md — this file1import torch
2from diffusers import FluxFillPipeline
3
4pipe = FluxFillPipeline.from_pretrained(
5 "cudabenchmarktest/flux1-fill-dev-fp8",
6 torch_dtype=torch.bfloat16,
7).to("cuda")
8
9result = pipe(
10 prompt="...",
11 image=init_image,
12 mask_image=mask_image,
13 num_inference_steps=28,
14 guidance_scale=3.5,
15).images[0]LICENSE). Non-commercial use only. Commercial use requires a separate license from Black Forest Labs.black-forest-labs/FLUX.1-Fill-dev).boricuapab (boricuapab/flux1-fill-dev-fp8).