Jean-Auguste-Dominique Ingres Painting LoRA
A FLUX LoRA trained on paintings by J.-A.-D. Ingres, the great neoclassical master. Known for porcelain-smooth surfaces, exquisitely elongated forms, precise linear contours, and an obsessive attention to the fall of fabric and the texture of skin.
Artist: Jean-Auguste-Dominique Ingres (1780–1867)
Trigger word: NGRS
Usage
Use this LoRA with any FLUX model. Include the trigger word NGRS in your prompt.
On Replicate
This model is available on Replicate at replicate.com/vestigia/flux-lora-ingres-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-ingres-painting")
pipe.to("cuda")
image = pipe(
"NGRS portrait of a seated woman in a white dress, smooth porcelain finish, neoclassical style, precise contours, Ingres",
guidance_scale=3.5,
num_inference_steps=28,
).images[0]
image.save("output.png")
Example prompt
NGRS portrait of a seated woman in a white dress, smooth porcelain finish, neoclassical style, precise contours, Ingres
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.