SARGENTPAINTINGSARGENTPAINTING in your prompt.1import torch
2from diffusers import FluxPipeline
3
4pipe = FluxPipeline.from_pretrained(
5 "black-forest-labs/FLUX.1-dev",
6 torch_dtype=torch.bfloat16,
7)
8pipe.load_lora_weights("Vestigia/flux-lora-sargent-painting")
9pipe.to("cuda")
10
11image = pipe(
12 "SARGENTPAINTING portrait of a woman in a white evening gown, confident pose, dark background, bravura brushwork, Gilded Age",
13 guidance_scale=3.5,
14 num_inference_steps=28,
15).images[0]
16image.save("output.png")SARGENTPAINTING portrait of a woman in a white evening gown, confident pose, dark background, bravura brushwork, Gilded Age