ntc-ai commited on
Commit
8a16ea3
1 Parent(s): 5421655

Update README, safetensors and PNGs

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ *.png filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ language:
4
+ - en
5
+ thumbnail: "images/evaluate/demon...angel/demon_17_3.0.png"
6
+ widget:
7
+ - text: demon
8
+ output:
9
+ url: images/demon_17_3.0.png
10
+ - text: demon
11
+ output:
12
+ url: images/demon_19_3.0.png
13
+ - text: demon
14
+ output:
15
+ url: images/demon_20_3.0.png
16
+ - text: demon
17
+ output:
18
+ url: images/demon_21_3.0.png
19
+ - text: demon
20
+ output:
21
+ url: images/demon_22_3.0.png
22
+ tags:
23
+ - text-to-image
24
+ - stable-diffusion-xl
25
+ - lora
26
+ - template:sd-lora
27
+ - template:sdxl-lora
28
+ - sdxl-sliders
29
+ - ntcai.xyz-sliders
30
+ - concept
31
+ - diffusers
32
+ license: "mit"
33
+ inference: false
34
+ instance_prompt: "demon"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - demon (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/demon_17_-3.0.png" width=256 height=256 /> | <img src="images/demon_17_0.0.png" width=256 height=256 /> | <img src="images/demon_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/demon_19_-3.0.png" width=256 height=256 /> | <img src="images/demon_19_0.0.png" width=256 height=256 /> | <img src="images/demon_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/demon_20_-3.0.png" width=256 height=256 /> | <img src="images/demon_20_0.0.png" width=256 height=256 /> | <img src="images/demon_20_3.0.png" width=256 height=256 /> |
44
+
45
+
46
+ ## Download
47
+
48
+ Weights for this model are available in Safetensors format.
49
+
50
+ ## Trigger words
51
+
52
+ You can apply this LoRA with trigger words for additional effect:
53
+
54
+ ```
55
+ demon
56
+ ```
57
+
58
+ ## Use in diffusers
59
+
60
+ ```python
61
+ from diffusers import StableDiffusionXLPipeline
62
+ from diffusers import EulerAncestralDiscreteScheduler
63
+ import torch
64
+
65
+ pipe = StableDiffusionXLPipeline.from_single_file("https://huggingface.co/martyn/sdxl-turbo-mario-merge-top-rated/blob/main/topRatedTurboxlLCM_v10.safetensors")
66
+ pipe.to("cuda")
67
+ pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
68
+
69
+ # Load the LoRA
70
+ pipe.load_lora_weights('ntc-ai/SDXL-LoRA-slider.demon', weight_name='demon.safetensors', adapter_name="demon")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["demon"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, demon"
76
+ negative_prompt = "nsfw"
77
+ width = 512
78
+ height = 512
79
+ num_inference_steps = 10
80
+ guidance_scale = 2
81
+ image = pipe(prompt, negative_prompt=negative_prompt, width=width, height=height, guidance_scale=guidance_scale, num_inference_steps=num_inference_steps).images[0]
82
+ image.save('result.png')
83
+ ```
84
+
85
+ ## Support the Patreon
86
+
87
+ If you like this model please consider [joining our Patreon](https://www.patreon.com/NTCAI).
88
+
89
+ By joining our Patreon, you'll gain access to an ever-growing library of over 430+ unique and diverse LoRAs, covering a wide range of styles and genres. You'll also receive early access to new models and updates, exclusive behind-the-scenes content, and the powerful LoRA slider creator, allowing you to craft your own custom LoRAs and experiment with endless possibilities.
90
+
91
+ Your support on Patreon will allow us to continue developing and refining new models.
92
+
93
+ ## Other resources
94
+
95
+ - [CivitAI](https://civitai.com/user/ntc) - Follow ntc on Civit for even more LoRAs
96
+ - [ntcai.xyz](https://ntcai.xyz) - See ntcai.xyz to find more articles and LoRAs
demon.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5698f185aa7bdf3eb468741f8c09b11bff9cb48e50a2194877625a6e9f61d9b7
3
+ size 8789076
images/demon_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 4b983a48de5134e87452fc26ac53c988cfbe9411e2d5787851222e14b88b6d72
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/demon_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 2d0f0dab22b0d50952ef0bcaabe0da9be2a96bba15e8eac7d48109f9492e4e5a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/demon_17_0.0.png ADDED

Git LFS Details

  • SHA256: 0d7707ff5caa245b27a1bf1e4f848dc0e61c033c8a3c31c125e20ce7687ea246
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/demon_17_1.5.png ADDED

Git LFS Details

  • SHA256: 28e4c9cdc90a76ac8f43e3156e4c476249bc6d2dfb23a87233d75fff9289fb85
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/demon_17_3.0.png ADDED

Git LFS Details

  • SHA256: 4f087ac84ef84bab3973a9dc0a1a4545f23f458d99560c7902e5001a63b81268
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/demon_19_-1.5.png ADDED

Git LFS Details

  • SHA256: d2cd44b7f69093c1184a1d947fe817275c7c6d0020842774307372122a10ee4b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/demon_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 4dd49a44764035e97e8e866650b367c24462c4a7ed5789e1fcde94de43ee76a9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/demon_19_0.0.png ADDED

Git LFS Details

  • SHA256: a2cc220ca5c732a79557218f1b2a1fa30cc1fec11b6775fd2c9af9d354816ac2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/demon_19_1.5.png ADDED

Git LFS Details

  • SHA256: ff37b8a88eac0d799a1081d9c22348fbbce0d4cc28e2c5507e90dd331f2f65a8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/demon_19_3.0.png ADDED

Git LFS Details

  • SHA256: da74febd6c33b0a75ecf9e0b2ddcc921839bdfbea907c755d31d6f0361e633b1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/demon_20_-1.5.png ADDED

Git LFS Details

  • SHA256: a7e94d9f6c95db01b3ac81c0de7173235bee6b09475fa00e027d669c7ed2ce61
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/demon_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 1d6f3f4a87f2a087cdd576e3dd24a74ad6409b984591eff20cfd6aca627ca2be
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/demon_20_0.0.png ADDED

Git LFS Details

  • SHA256: f7998fe3adb28bd9ecfcc3b61fe414d9bb5454c5ccdbdadc4c044a2d3c14cdd3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/demon_20_1.5.png ADDED

Git LFS Details

  • SHA256: ff2c01c36e9f3deaaecb8e683ad4b26d83ef99b1c79872fc69d60b1c5df0f4fc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/demon_20_3.0.png ADDED

Git LFS Details

  • SHA256: 214ab228d6a400f5ae69423b23fc612349ab2e1e71208a736ad42d3151e29aae
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/demon_21_-1.5.png ADDED

Git LFS Details

  • SHA256: e7e13e9a325b4a682e09fee627b3c589b1bddf756cff7ecea79eda2474e9f44c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.7 MB
images/demon_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 8e1acce482e6cdd82437a574a5e8c4b07f78cee38ff74f64df5d7a49c3372fe9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.7 MB
images/demon_21_0.0.png ADDED

Git LFS Details

  • SHA256: 1108deb1dbcc1b950d5fded823dcdb1f5bfe82705c91d3a9fe8df5bc440a4c54
  • Pointer size: 132 Bytes
  • Size of remote file: 1.7 MB
images/demon_21_1.5.png ADDED

Git LFS Details

  • SHA256: af28192458870cca2c4fd799ed45b3c242dfc20ac860481ccdbe12b6829d4260
  • Pointer size: 132 Bytes
  • Size of remote file: 1.71 MB
images/demon_21_3.0.png ADDED

Git LFS Details

  • SHA256: dad06f882c7f144f885a82e63b1b134ccb92581062ebb9aafac1fdbb0611f816
  • Pointer size: 132 Bytes
  • Size of remote file: 1.7 MB
images/demon_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 919e312e2f7fbde95aa8c67d54267eb20990058425a4251aa95de701f6201ad5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/demon_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 63368be224da70699161060ca03975f307d74b7ba00d382d6c8035af8bf80c80
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/demon_22_0.0.png ADDED

Git LFS Details

  • SHA256: 58d21785432ff381b08e5160a04c49ebd789f6d73b340d8f2741666d0938757e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/demon_22_1.5.png ADDED

Git LFS Details

  • SHA256: 0538dae4d090c9073e6f0ec162a6b270015348cd901b73dfbab26687ae559093
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/demon_22_3.0.png ADDED

Git LFS Details

  • SHA256: 846e81ed2998a76099468382b6ef8b79a416d1a56c7efd216f781b51ddfb0985
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB