CoolFace
Modelpublic

sercancelenk/ai-girlfriend-anna-lora

sourceHugging Facemitupdated 9mo agoView on Hugging Face
1likes
Model Card

๐Ÿ‘ฉ Anna LoRA - AI Girlfriend Character

Model Description

Anna is a Flux.1-dev LoRA adapter for consistent character generation in the AI Girlfriend Platform.

AttributeValue
NameAnna
Age25
NationalityNorwegian
PersonalitySweet, caring, gentle, romantic
HairPlatinum blonde, long, silky
EyesIce blue, almond-shaped
SkinFair, porcelain
BodySlim, toned, athletic

Usage

python
from diffusers import FluxPipeline
import torch

# Load base model
pipe = FluxPipeline.from_pretrained(
    "black-forest-labs/FLUX.1-dev",
    torch_dtype=torch.bfloat16
)
pipe.enable_model_cpu_offload()

# Load Anna LoRA
pipe.load_lora_weights(
    "sercancelenk/ai-girlfriend-anna-lora",
    weight_name="pytorch_lora_weights.safetensors",
    adapter_name="anna_lora"
)
pipe.set_adapters(["anna_lora"], adapter_weights=[0.7])

# Generate with trigger token
prompt = "ohwx_anna, beautiful woman smiling at camera, professional photo, 8k"
image = pipe(prompt, num_inference_steps=20).images[0]
image.save("anna.png")

Trigger Token: ohwx_anna

Use this token at the beginning of your prompt to activate the LoRA.

Recommended Settings

ParameterValue
LoRA Scale0.7
Inference Steps20-30
Guidance Scale3.5
Resolution1024x1024

Training Details

ParameterValue
Base Modelblack-forest-labs/FLUX.1-dev
MethodDreamBooth-LoRA
Training Images13 (6 SFW + 7 NSFW)
Training Steps2000
LoRA Rank32
Learning Rate1e-4
GPURTX 6000 Ada (48GB)

Related Links

License

MIT License


Part of the AI Girlfriend Platform ๐Ÿ’•