Thomas Lawrence Painting LoRA
A FLUX LoRA trained on portraits by Thomas Lawrence, the leading British portraitist of the Regency era. Known for elegant sitters rendered with fluid, confident brushwork, romantic lighting, and a sense of aristocratic ease.
Artist: Thomas Lawrence (1769–1830)
Trigger word: LAWRENCEPAINTING
Usage
Use this LoRA with any FLUX model. Include the trigger word LAWRENCEPAINTING in your prompt.
On Replicate
This model is available on Replicate at replicate.com/vestigia/flux-lora-lawrence-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-lawrence-painting")
pipe.to("cuda")
image = pipe(
"LAWRENCEPAINTING portrait of a young woman in a white dress, soft romantic background, elegant pose, Regency era",
guidance_scale=3.5,
num_inference_steps=28,
).images[0]
image.save("output.png")
Example prompt
LAWRENCEPAINTING portrait of a young woman in a white dress, soft romantic background, elegant pose, Regency era
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.