FLUX.1 Aesthetic v2 (merged)

Official adapter · maintained by ModelForgeLab

General aesthetic improvement adapter merged into the FLUX.1-dev base. Single-file deployment, no separate adapter loading required. Improved color saturation, sharpness, and prompt adherence.

Usage

from diffusers import DiffusionPipeline
import torch

pipe = DiffusionPipeline.from_pretrained(
    "black-forest-labs/FLUX.1-dev",
    torch_dtype=torch.float16,
).to("cuda")
pipe.load_lora_weights("modelforgelab/flux-aesthetic-v2-merged")

image = pipe("your prompt here").images[0]
image.save("output.png")

Compatibility

  • diffusers>=0.30
  • ComfyUI

You might also like