A FLUX LoRA trained on paintings by Thomas Gainsborough, the great 18th-century British portraitist and landscapist. Known for feathery, delicate brushwork, luminous silks, and pastoral English backgrounds.
Use this LoRA with any FLUX model. Include the trigger word GAINSBOROUGHPAINTING 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-gainsborough-painting")
9pipe.to("cuda")
10
11image = pipe(
12 "GAINSBOROUGHPAINTING portrait of a lady in a blue silk gown, parkland background, feathery brushwork, 18th century English",
13 guidance_scale=3.5,
14 num_inference_steps=28,
15).images[0]
16image.save("output.png")
Vestigia is a collection of FLUX LoRA models trained on historical portrait and painting styles,
allowing you to generate images inspired by the great masters of Western art history.