Bronzino Painting LoRA
A FLUX LoRA trained on paintings by Bronzino, the quintessential Florentine Mannerist. Known for cold, enamel-smooth surfaces, austere aristocratic sitters, jewelled costumes, and an almost uncanny psychological detachment.
Artist: Bronzino / Agnolo di Cosimo (1503–1572)
Trigger word: BRONZINOPAINTING
Usage
Use this LoRA with any FLUX model. Include the trigger word BRONZINOPAINTING in your prompt.
On Replicate
This model is available on Replicate at replicate.com/vestigia/flux-lora-bronzino-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-bronzino-painting")
pipe.to("cuda")
image = pipe(
"BRONZINOPAINTING portrait of a noble lady in elaborate embroidered dress, cool palette, austere expression, Florentine mannerist style",
guidance_scale=3.5,
num_inference_steps=28,
).images[0]
image.save("output.png")
Example prompt
BRONZINOPAINTING portrait of a noble lady in elaborate embroidered dress, cool palette, austere expression, Florentine mannerist style
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.