First Empire Paintings LoRA
A FLUX LoRA trained on paintings from the French First Empire (Napoleonic era, c. 1800โ1815). Captures the grandeur of Napoleonic state portraiture โ generals in gleaming uniforms, imperial ceremonies, neoclassical sternness blended with romantic heroism.
Trigger word: FIRSTEMPIREPAINTINGS
Usage
Use this LoRA with any FLUX model. Include the trigger word FIRSTEMPIREPAINTINGS in your prompt.
On Replicate
This model is available on Replicate at replicate.com/vestigia/flux-lora-first-empire-paintings.
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-first-empire-paintings")
pipe.to("cuda")
image = pipe(
"FIRSTEMPIREPAINTINGS portrait of a general in Napoleonic uniform, gold epaulettes, ceremonial setting, empire style, neoclassical",
guidance_scale=3.5,
num_inference_steps=28,
).images[0]
image.save("output.png")
Example prompt
FIRSTEMPIREPAINTINGS portrait of a general in Napoleonic uniform, gold epaulettes, ceremonial setting, empire style, neoclassical
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.