CoolFace
Modelpublic

pkats94/amaya-hart-lora

sourceHugging Faceotherupdated 22d agoView on Hugging Face
0likes80downloads
Model Card

Amaya Hart — FLUX.1-dev LoRA

A character LoRA for the original fictional model Amaya Hart, trained on FLUX.1-dev (29 images, 1000 steps, rank 16).

Trigger word: amayahart

Signature look: heterochromia — green left eye / brown right eye — warm golden-brown skin, freckles, long dark wavy hair with honey highlights.

Usage (diffusers)

python
import torch
from diffusers import FluxPipeline

pipe = FluxPipeline.from_pretrained(
    "black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16
).to("cuda")
pipe.load_lora_weights("pkats94/amaya-hart-lora", weight_name="amaya-hart.safetensors")

image = pipe(
    "a photo of amayahart woman, candid iPhone selfie, soft window light",
    num_inference_steps=28, guidance_scale=3.5,
).images[0]
image.save("amaya.png")

Put amayahart near the start of the prompt. Recommended LoRA scale 0.8–1.0.