by Alissonerdx
Open source · 6k downloads · 84 likes
The flux.1 dev SRPO LoRAs model is an optimized and modular version of the Flux.1-Dev AI, designed to provide lightweight and interchangeable adaptations through LoRA technology. It enhances image generation quality while reducing storage space and enabling rapid experimentation across different precision levels. Its primary use cases include fine-tuning renderings, integration with other models or LoRAs, and performance optimization on platforms like Flux Krea. What sets it apart is its ability to combine the power of SRPO with the flexibility of LoRAs, offering an adaptable solution without requiring a dedicated base model. Multiple variants are available, each introducing distinct nuances, such as the RockerBOO version recommended for balanced results.
These LoRAs were extracted from three sources:
They are designed to provide modular, lightweight adaptations you can mix with other LoRAs, reducing storage and enabling fast experimentation across ranks (8, 16, 32, 64, 128).
Notes:

Example comparison between Flux1-Dev baseline and LoRA extractions
use with 🧨diffusers:
import torch
from diffusers import FluxPipeline
pipe = FluxPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16)
pipe.load_lora_weights('Alissonerdx/flux.1-dev-SRPO-LoRas', weight_name='srpo_128_base_R%26Q_model_fp16.safetensors')
pipe.to("cuda")
prompt = "aiyouxiketang, a man in armor with a beard and a beard"
image = pipe(
prompt,
num_inference_steps=28,
guidance_scale=5.0,
generator=torch.Generator("cpu").manual_seed(0)
).images[0]