Thomas Gainsborough Painting LoRA
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.
Artist: Thomas Gainsborough (1727–1788)
Trigger word: GAINSBOROUGHPAINTING
Usage
Use this LoRA with any FLUX model. Include the trigger word GAINSBOROUGHPAINTING in your prompt.
On Replicate
This model is available on Replicate at replicate.com/vestigia/flux-lora-gainsborough-painting.
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("Vestigia/flux-lora-gainsborough-painting")
pipe.to("cuda")
image = pipe(
"GAINSBOROUGHPAINTING portrait of a lady in a blue silk gown, parkland background, feathery brushwork, 18th century English",
guidance_scale=3.5,
num_inference_steps=28,
).images[0]
image.save("output.png")
Example prompt
GAINSBOROUGHPAINTING portrait of a lady in a blue silk gown, parkland background, feathery brushwork, 18th century English
About Vestigia
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.
Browse all models at huggingface.co/Vestigia.