by andro-flock
Open source · 3k downloads · 16 likes
The LUSTIFY SDXL NSFW checkpoint v2.0 INPAINTING model is a specialized version of SDXL optimized for generating adult or suggestive imagery, featuring built-in inpainting functionality. It allows for the modification of specific parts of an existing image while preserving the rest of the content, providing precise control over targeted adjustments. This model is particularly well-suited for adult content creators, digital artists, or projects requiring fine-tuned refinements in specific areas. What sets it apart is its ability to produce consistent and detailed results in contexts where discretion and precision are essential.

None
You can use this with the 🧨Diffusers library
from diffusers import StableDiffusionPipeline
import torch
model_id = "andro-flock/LUSTIFY-SDXL-NSFW-checkpoint-v2-0-INPAINTING"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = "masterpiece, best quality, 1girl, (colorful),(delicate eyes and face), volumatic light, ray tracing, bust shot ,extremely detailed CG unity 8k wallpaper,solo,smile"
image = pipe(prompt).images[0]
image.save("result.png")