🚀 ntcai.xyz滑块 - 极度恐惧 (SDXL LoRA)
本项目是一个基于SDXL LoRA技术的图像生成模型,借助特定的触发词,能在图像中呈现出“极度恐惧”的效果。通过不同强度的设置,可以灵活调整这种效果的表现程度。
🚀 快速开始
模型效果展示
下载
此模型的权重以Safetensors格式提供。
触发词
你可以使用以下触发词来应用此LoRA以获得额外效果:
absolutely terrified
在diffusers中使用
from diffusers import StableDiffusionXLPipeline
from diffusers import EulerAncestralDiscreteScheduler
import torch
pipe = StableDiffusionXLPipeline.from_single_file("https://huggingface.co/martyn/sdxl-turbo-mario-merge-top-rated/blob/main/topRatedTurboxlLCM_v10.safetensors")
pipe.to("cuda")
pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
pipe.load_lora_weights('ntc-ai/SDXL-LoRA-slider.absolutely-terrified', weight_name='absolutely terrified.safetensors', adapter_name="absolutely terrified")
pipe.set_adapters(["absolutely terrified"], adapter_weights=[2.0])
prompt = "medieval rich kingpin sitting in a tavern, absolutely terrified"
negative_prompt = "nsfw"
width = 512
height = 512
num_inference_steps = 10
guidance_scale = 2
image = pipe(prompt, negative_prompt=negative_prompt, width=width, height=height, guidance_scale=guidance_scale, num_inference_steps=num_inference_steps).images[0]
image.save('result.png')
🤝 支持Patreon
如果你喜欢这个模型,请考虑加入我们的Patreon。
加入我们的Patreon,你将可以访问一个不断增长的、包含超过840个独特且多样的LoRA库,涵盖广泛的风格和类型。你还将获得新模型和更新的早期访问权、独家幕后内容,以及强大的LoRA滑块创建器,让你能够创建自己的自定义LoRA并尝试无限的可能性。
你在Patreon上的支持将使我们能够继续开发和完善新模型。
🔗 其他资源
📄 许可证
本项目采用MIT许可证。
属性 |
详情 |
模型类型 |
SDXL LoRA |
基础模型 |
stabilityai/stable-diffusion-xl-base-1.0 |
触发词 |
absolutely terrified |
许可证 |
MIT |