CoolFace
Modelpublic

Keltezaa/missing-teeth

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

missing teeth

<Gallery />

(CivitAI)

Model description

<p><strong>This LoRA is made for those who love beautiful smiles!</strong> ๐Ÿ˜Š</p><p>It works great with Forge's inpainting, and most likely with Comfy's as well. Of course, it's also highly effective in text-to-image, creating realistic and expressive faces.</p><p>Enjoy and have fun exploring all the possibilities it offers!</p>

Trigger words

You should use d4nt4 a mouth with missing teeth, d4nt4 smiling widely to reveal several missing yellow teeth, with visible decay and discoloration, his teeth are in bad condition 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/missing-teeth', weight_name='teethv1_rank16_bf16-step04000.safetensors')
image = pipeline('`d4nt4 a mouth with missing teeth`, `d4nt4 smiling widely to reveal several missing yellow teeth, with visible decay and discoloration, his teeth are in bad condition`').images[0]

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