CoolFace
Modelpublic

conanco/flux-kiki-lora

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes8downloads
Model Card

flux-kiki-lora

<Gallery />

Model description

A text2img styled lora weight fine-tuned on FLUX.1-dev, for my favorite Ghibli Studio animation Kiki's delivery service.

Use it with the 🧨 diffusers library

python
import torch
from diffusers import AutoPipelineForText2Image

base_model = "black-forest-labs/FLUX.1-dev"
pipeline = AutoPipelineForText2Image.from_pretrained(base_model, torch_dtype=torch.bfloat16).to("cuda")

repo_id = "conanco/flux-kiki-lora"
weight_name = "flux-kiki-lora.safetensors"
pipeline.load_lora_weights(repo_id, weight_name=weight_name)
generator = torch.Generator(device="cuda").manual_seed(1)

prompt = "A kikisdeliveryservice style image of a smiling girl with red bow on hair and holding a sign that says hello world."
image = pipeline(prompt, num_inference_steps=50, generator=generator).images[0]
image.save("output.png")

For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers.

Trigger words

You should use kikisdeliveryservice style to trigger the image generation.

Download model

Weights for this model are available in Safetensors format.

Download them in the Files & versions tab.