TurboRender-flux-dev generates better results compared to the original flux dev baseline within the 4-6 step range. Additionally, when using more steps (we suggest 10-15 steps), it delivers even finer details, offering improved performance compared with LCM LoRA.
The LoRA was trained in just 8 hours with 1x A100 GPU.
1from diffusers import DiffusionPipeline
2
3pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev")
4pipe.load_lora_weights("DarkMoonDragon/TurboRender-flux-dev")
5image = pipe(
6 prompt="your prompt",
7 guidance_scale=3.5,
8 height=1024,
9 width=1024,
10 num_inference_steps=8,
11 generator=torch.Generator(device='cuda').manual_seed(0)
12).images[0]
No trigger word, plug and play, accelerates generation process & adds more details!!!
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.