Nadar Photograph LoRA
A FLUX LoRA trained on portrait photographs by Nadar (Félix Tournachon), the pioneering French photographer of the 19th century. Known for intimate, psychologically revealing studio portraits of Paris's intellectual and artistic elite, with soft, directional natural light and minimal props.
Artist: Nadar / Félix Tournachon (1820–1910)
Trigger word: NADARPHOTOGRAPH
Usage
Use this LoRA with any FLUX model. Include the trigger word NADARPHOTOGRAPH in your prompt.
On Replicate
This model is available on Replicate at replicate.com/vestigia/flux-lora-nadar-photograph.
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-nadar-photograph")
pipe.to("cuda")
image = pipe(
"NADARPHOTOGRAPH portrait of a man in formal attire, soft studio lighting, 19th century photographic style, psychological intimacy",
guidance_scale=3.5,
num_inference_steps=28,
).images[0]
image.save("output.png")
Example prompt
NADARPHOTOGRAPH portrait of a man in formal attire, soft studio lighting, 19th century photographic style, psychological intimacy
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.