CoolFace
Modelpublic

Shakker-Labs/FLUX.1-Kontext-dev-LoRA-Bioluminescence-Style

sourceHugging Faceotherupdated 1y agoView on Hugging Face
3likes236downloads
Model Card

FLUX.1-Kontext-dev-LoRA-Bioluminescence-Style

This is a dazzling light effect style style LoRA trained on FLUX.1-Kontext-dev by zooey.

Showcases

<Gallery />

Trigger words

You should use bioluminescence efficiency to trigger the image generation.

Inference

python
import torch
from diffusers import FluxKontextPipeline
from diffusers.utils import load_image

pipe = FluxKontextPipeline.from_pretrained("black-forest-labs/FLUX.1-Kontext-dev", torch_dtype=torch.bfloat16)
pipe.load_lora_weights("Shakker-Labs/FLUX.1-Kontext-dev-LoRA-Bioluminescence-Style", weight_name="FLUX-kontext-lora-bioluminescence-style.safetensors")
pipe.fuse_lora(lora_scale=1.0)
pipe.to("cuda")

input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png")
prompt = "bioluminescence efficiency"

image = pipe(
    image=input_image,
    prompt=prompt, 
    num_inference_steps=24, 
    guidance_scale=2.5,
).images[0]
image.save(f"example.png")

Acknowledgements

This model is trained by our copyrighted users zooey. We release this model under permissions. The model follows flux-1-dev-non-commercial-license.