--- license: other license_name: bespoke-lora-trained-license license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True tags: - text-to-image - stable-diffusion - lora - diffusers - template:sd-lora - migrated - concept - laughing - smile - teeth base_model: black-forest-labs/FLUX.1-dev instance_prompt: d4nt4 a mouth with missing teeth widget: - text: 'd4nt4, a woman smiling widely to reveal several missing teeth , a front profil view showing the upper half of a woman''s body, dressed in a simple Striped shirt and , in Snow-covered forest with a frozen lake , Fade' output: url: >- 36677573.jpeg - text: 'd4nt4 a man smiling widely to reveal several missing yellow teeth, with visible decay and discoloration, his teeth are in bad condition, A red jacket, blue top with clouds in the background' output: url: >- 36676639.jpeg - text: 'd4nt4, smiling widely to reveal several missing yellow teeth, with visible decay and discoloration, his teeth are in bad condition, showing signs of severe neglect, a top-down view showing the upper half of a man''s body, dressed in a simple black shirt and jacket, his arms slightly spread' output: url: >- 36677070.jpeg - text: 'd4nt4, a woman smiling widely to reveal several missing teeth , a front-facing view showing the upper half of a woman''s body, dressed in a simple Moto jacket and Bootcut pants , in Country market with handmade goods , Curly hair , young adult ' output: url: >- 36677141.jpeg - text: 'd4nt4, a woman smiling widely to reveal several missing teeth , a front-facing view showing the upper half of a woman''s body, dressed in a simple Moto jacket and Dress pants , in Seaside cliff with crashing waves , Side braid , young adult' output: url: >- 36677299.jpeg - text: 'd4nt4, a woman smiling widely to reveal several missing teeth , a front-facing view showing the upper half of a woman''s body, dressed in a simple Leather jacket and Jogger pants , in Urban square with street performers , Curly hair ,' output: url: >- 36677461.jpeg - text: 'realistic photo of a Emmanuel Macron d4nt4, smiling widely to reveal several missing teeth ' output: url: >- 36677626.jpeg - text: ' ' output: url: >- 36678098.jpeg --- # missing teeth ([CivitAI](https://civitai.com/models/)) ## Model description

This LoRA is made for those who love beautiful smiles! ๐Ÿ˜Š

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.

Enjoy and have fun exploring all the possibilities it offers!

## 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](/Keltezaa/missing-teeth/tree/main) them in the Files & versions tab. ## Use it with the [๐Ÿงจ diffusers library](https://github.com/huggingface/diffusers) ```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](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)