🚀 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 |