ntc-ai commited on
Commit
fa026e8
·
1 Parent(s): f5e3709

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/hot...cold/hot_17_3.0.png"
6
+ widget:
7
+ - text: hot
8
+ output:
9
+ url: images/hot_17_3.0.png
10
+ - text: hot
11
+ output:
12
+ url: images/hot_19_3.0.png
13
+ - text: hot
14
+ output:
15
+ url: images/hot_20_3.0.png
16
+ - text: hot
17
+ output:
18
+ url: images/hot_21_3.0.png
19
+ - text: hot
20
+ output:
21
+ url: images/hot_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: "hot"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - hot (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/hot_17_-3.0.png" width=256 height=256 /> | <img src="images/hot_17_0.0.png" width=256 height=256 /> | <img src="images/hot_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/hot_19_-3.0.png" width=256 height=256 /> | <img src="images/hot_19_0.0.png" width=256 height=256 /> | <img src="images/hot_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/hot_20_-3.0.png" width=256 height=256 /> | <img src="images/hot_20_0.0.png" width=256 height=256 /> | <img src="images/hot_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
+ hot
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.hot', weight_name='hot.safetensors', adapter_name="hot")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["hot"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, hot"
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 400+ 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
hot.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d86bab0fc5ef1a090fd4b07a038fd237c1694c339cc71a69873d9fa8e23bbf64
3
+ size 8789076
images/hot_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 410aed7bc944bd8a1e7606a3ab9f424c205ca7ff39a8cec2361795d4f466e0ae
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/hot_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 0a2e8812cb75b3ed06ece300632d04eff920eadf390d64ff412f26c96da75fa4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/hot_17_0.0.png ADDED

Git LFS Details

  • SHA256: 09a24f3d304d1a8ee493a54e975ad884cf60a319ea25140aabbf5f898fba9f74
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/hot_17_1.5.png ADDED

Git LFS Details

  • SHA256: 777166c16c21516f7b2613c55a6119035c0f8d6936082a6dfc546c5968ac2f21
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/hot_17_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 913fecfb85d85b661b58bf5d9d2cae815a72abf8f723110b25648eae496123e0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/hot_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 589b3f0c24dc7c584054eec8fec897840b64a52ea430d9430f66fade1b4e1095
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/hot_19_0.0.png ADDED

Git LFS Details

  • SHA256: da20ca8c3a81708de8b7e6c3ac7ef0dc0be821d806d327437d006e59522f92d5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/hot_19_1.5.png ADDED

Git LFS Details

  • SHA256: 53e0acde997612f5bf9f902ca1dd442cd1275d6dd21685f18e78f8cdf2adcee9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/hot_19_3.0.png ADDED

Git LFS Details

  • SHA256: 14bf350bfff0653f6e628e674c6b7ef87e35f7622aaaf53454d58181043a3635
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/hot_20_-1.5.png ADDED

Git LFS Details

  • SHA256: e9667d0dc681d6c0d00d51d98942289888d60420814c2a5d098f6cc0565d162c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/hot_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 0714fce2b439679de68dbc33fa086afa92424361bc6f68216103b1a39f7f32b3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/hot_20_0.0.png ADDED

Git LFS Details

  • SHA256: cc0ba111265afd63243cc93c238a616d9b77b996d2828c83d2c428b6f47b8323
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/hot_20_1.5.png ADDED

Git LFS Details

  • SHA256: 72a6dbed85bfc8e1e669b87b977428c582d1b809b833698eb25b8dc714f8124c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/hot_20_3.0.png ADDED

Git LFS Details

  • SHA256: 66062d9b2a6a986407639ece0a84f4047eba367affd4e066cac89360e085229f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/hot_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 6ce8aae26623e6a4b314df747cc354b6a43566a0b0260601936b999a78afab31
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/hot_21_-3.0.png ADDED

Git LFS Details

  • SHA256: fa1e7ca0c3d9d45f7536c9a8eedb8ac8d1f3f0540e46acfc8c8d462b017871de
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/hot_21_0.0.png ADDED

Git LFS Details

  • SHA256: 81e03427e686f93a6f2dc8a036cf8fd50fac46e1dd102966a4c544648fc6859f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/hot_21_1.5.png ADDED

Git LFS Details

  • SHA256: 8507b019fb4645e74ace5cc3baa61adb39faf9f04b75bca98a0308fd2c5bdbf3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/hot_21_3.0.png ADDED

Git LFS Details

  • SHA256: ce4099cb202ac8f2f618a77a4c533b37ef37b33609a215dd1ebcd377e05f0adf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/hot_22_-1.5.png ADDED

Git LFS Details

  • SHA256: b0cc37722e79cfb76ea94f53ef8c849679642ed6138d8b0c774efc3123fb37dc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/hot_22_-3.0.png ADDED

Git LFS Details

  • SHA256: f07cc2b4952ecb70c34e52e381b44f29ae9eeb6bb20e30de5fe67c1181c4ac68
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/hot_22_0.0.png ADDED

Git LFS Details

  • SHA256: 6934ba7855d9166a4b1245bf8a0f19309650b4c226662d07f180012c29c68a13
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/hot_22_1.5.png ADDED

Git LFS Details

  • SHA256: 65885522698d27cabc1f1e7c2f7fd5958081b355913ac33b03be4b6f6eda6a25
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/hot_22_3.0.png ADDED

Git LFS Details

  • SHA256: 0e7697097df0caafabf0b592d3d4161929bca95e26f5f23d7a40541746112963
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB