Immerse yourself in the nostalgic charm of Kodachrome 64 film from the 1970s with this LoRA model, delivering a unique aesthetic characterized by its warm and saturated colors, distinctive red-orange shadow shifts, subtle grain texture, and signature 'Kodachrome glow' in highlights.
Apply the trigger word 'k0d4chr0me' in your prompts for seamless integration. Ideal strength ranges from 0.85 to 1.0, paired with FluxGuidance settings of 3.0-4.0 for optimal results.
1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipe = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.float16).to("cuda")
5pipe.load_lora_weights("strkyyy/kodachrome-1970s")
6image = pipe("k0d4chr0me, your prompt", num_inference_steps=30).images[0]