CoolFace
Modelpublic

Keltezaa/tinkerbell-flux1-d

sourceHugging Faceotherupdated 2y agoView on Hugging Face
0likes18downloads
Model Card

Tinkerbell - Flux1.D

<Gallery />

Model description

<p><span style="color:rgb(193, 194, 197)">You can support me here : </span><a target="_blank" rel="ugc" href="https://ko-fi.com/photobait"><span style="color:rgb(76, 110, 245)">https://ko-fi.com/photobait</span></a><span style="color:rgb(193, 194, 197)"> if you enjoy my </span><strong><span style="color:rgb(193, 194, 197)">400+ free Loras</span></strong><span style="color:rgb(193, 194, 197)"> (including the update) of fictional characters, if you want to encourage me and help me create more Loras. You can also follow me on Civitai to reach 1000 follower to get into the creator program or just reward me with Buzz.</span></p><p><span style="color:rgb(193, 194, 197)">To request a specific/custom Flux1.D Lora using buzz:</span></p><p><span style="color:rgb(193, 194, 197)">- 2500 Buzz if the Lora can be shared publicly (SFW),</span></p><p><span style="color:rgb(193, 194, 197)">- 5000 Buzz if the Lora have to remain private.</span></p><p><span style="color:rgb(193, 194, 197)">For SDXL Lora, please contact me directly.</span></p>

Trigger words

You should use Tinkerbell is a woman to trigger the image generation.

Download model

Weights for this model are available in Safetensors format.

Download them in the Files & versions tab.

Use it with the 🧨 diffusers library

py
from diffusers import AutoPipelineForText2Image
import torch

device = "cuda" if torch.cuda.is_available() else "cpu"

pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
pipeline.load_lora_weights('Keltezaa/tinkerbell-flux1-d', weight_name='Tinkerbell.safetensors')
image = pipeline('Tinkerbell is a fairy in a grocery store ').images[0]

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