🚀 ntcai.xyz滑塊 - 極致細節 (SDXL LoRA)
本項目是一個基於SDXL的LoRA模型,名為“極致細節”,可用於文本到圖像的生成,能為生成的圖像增添極致細節的效果。
🚀 快速開始
效果展示
更多內容請查看 https://sliders.ntcai.xyz/sliders/app/loras/4f6174b8-2db1-42ab-80e1-b341235dd6ac
📦 安裝指南
此模型的權重以Safetensors格式提供。
✨ 主要特性
觸發詞
你可以使用以下觸發詞來應用此LoRA以獲得額外效果:
extremely detailed
💻 使用示例
基礎用法
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.extremely-detailed', weight_name='extremely detailed.safetensors', adapter_name="extremely detailed")
pipe.set_adapters(["extremely detailed"], adapter_weights=[2.0])
prompt = "medieval rich kingpin sitting in a tavern, extremely detailed"
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,你將可以訪問一個不斷增長的庫,其中包含超過1496個獨特多樣的LoRA以及14600多個滑塊合併模型,涵蓋廣泛的風格和類型。你還將獲得新模型和更新的早期訪問權、獨家幕後內容,以及強大的 NTC Slider Factory LoRA創建器,讓你能夠製作自己的自定義LoRA和合並模型,開啟無限可能。
你在Patreon上的支持將使我們能夠繼續開發新的模型和工具。
其他資源
📄 許可證
本項目採用MIT許可證。