ntc-ai commited on
Commit
df7920b
·
1 Parent(s): 55c5f4e

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/catwalk...sitting/catwalk_17_3.0.png"
6
+ widget:
7
+ - text: catwalk
8
+ output:
9
+ url: images/catwalk_17_3.0.png
10
+ - text: catwalk
11
+ output:
12
+ url: images/catwalk_19_3.0.png
13
+ - text: catwalk
14
+ output:
15
+ url: images/catwalk_20_3.0.png
16
+ - text: catwalk
17
+ output:
18
+ url: images/catwalk_21_3.0.png
19
+ - text: catwalk
20
+ output:
21
+ url: images/catwalk_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: "catwalk"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - catwalk (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/catwalk_17_-3.0.png" width=256 height=256 /> | <img src="images/catwalk_17_0.0.png" width=256 height=256 /> | <img src="images/catwalk_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/catwalk_19_-3.0.png" width=256 height=256 /> | <img src="images/catwalk_19_0.0.png" width=256 height=256 /> | <img src="images/catwalk_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/catwalk_20_-3.0.png" width=256 height=256 /> | <img src="images/catwalk_20_0.0.png" width=256 height=256 /> | <img src="images/catwalk_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
+ catwalk
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.catwalk', weight_name='catwalk.safetensors', adapter_name="catwalk")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["catwalk"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, catwalk"
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 220+ 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
catwalk.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86388beaa35207dc510e7260623cf686887809ff187edcef5600a4d0b4acf840
3
+ size 8789076
images/catwalk_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 0914f714dea7b064f872c86f1b640179fa5594e63efdd8128b7944f1639998df
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/catwalk_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 175ad3f230cca574eab0fa94c9492a4953f149703be71de5c7e8520666d1a41a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/catwalk_17_0.0.png ADDED

Git LFS Details

  • SHA256: 39e51ce7736d8590fc0c0127bd1f1590812ab59592959867c2004440303566c3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/catwalk_17_1.5.png ADDED

Git LFS Details

  • SHA256: 9a6a6d005b717bd6c7b71a4903287692a672d3b7d2d9c57b34a740f3029e2fca
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/catwalk_17_3.0.png ADDED

Git LFS Details

  • SHA256: 2fd2bb443b38ef2416e66ce9d439e5beb027c66579fd8c0578f408dfb10cd214
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/catwalk_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 7eb1babe2aca8839de39be8fdf777a3e005a07208b0a38caf8dd83c9ef527b7b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.22 MB
images/catwalk_19_-3.0.png ADDED

Git LFS Details

  • SHA256: ed8e6467e143f3bd9dd028e1208f49abdf5b16109ae293d6a7f7b705f9f65be0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/catwalk_19_0.0.png ADDED

Git LFS Details

  • SHA256: 1d5ac79b4ac88caea62f21c9abd7af635886331baaa79048ea7234153f972991
  • Pointer size: 132 Bytes
  • Size of remote file: 1.2 MB
images/catwalk_19_1.5.png ADDED

Git LFS Details

  • SHA256: ece2d371e7d92ae1b1769c228eb5b24c926bc3aa39b5ddbdcfe3bbda92dc9182
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
images/catwalk_19_3.0.png ADDED

Git LFS Details

  • SHA256: dce978ac96197374526eba0bfaa9f38ca7ef96dd71dfb992cd5c9812b1bb4a6e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
images/catwalk_20_-1.5.png ADDED

Git LFS Details

  • SHA256: e73595bc9deea3e73e6beee1fe483e6ee8a55985e28c2f10e552af361eab912f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/catwalk_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 421a7b157de9376193e42cd6a9076589f7434a22af91d1c024fc727d5ec97619
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/catwalk_20_0.0.png ADDED

Git LFS Details

  • SHA256: af48b43ece0eecdaacb7c8d3635e8057d71407a61cd5c8bca0f319e0615c4817
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/catwalk_20_1.5.png ADDED

Git LFS Details

  • SHA256: d19c235be8be6d69bbb7230b1c8b36ca61049574adebcec8dfd36a7b0c63eb7b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/catwalk_20_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 95a2d182f426df16cb94e1267d4422695b0f411d691844e3d90e121373e0e643
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/catwalk_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 133c2303fee7635e6cab2e5c0dcb38f14b80e688a4be258135936dce3436257e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/catwalk_21_0.0.png ADDED

Git LFS Details

  • SHA256: 29f240d36035deeecd27c43e910b38be07afa464803dd5ba3d9300148a64bfc2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/catwalk_21_1.5.png ADDED

Git LFS Details

  • SHA256: 9a678e9914228f138efee6c58bceb2829b83b01be23ad63985b32c1ee45886fb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/catwalk_21_3.0.png ADDED

Git LFS Details

  • SHA256: 10d2c379f89d6f8bd503309061db3ec8941d06248cf063d810fe6bcd13ba0250
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/catwalk_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 0a3c9d7c78417f47831835f78827b2282b53cbd40c24cd2d10467b1d91a79b7d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
images/catwalk_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 69b02e18885b7f1b1d17770415cde63338c03a4b8c9b7e23b33d054bac357b4a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/catwalk_22_0.0.png ADDED

Git LFS Details

  • SHA256: 71745ca4419745987d2edfeae341a9179c18eee43e10b5a49c8521f83eea5707
  • Pointer size: 132 Bytes
  • Size of remote file: 1.21 MB
images/catwalk_22_1.5.png ADDED

Git LFS Details

  • SHA256: ddb43037ec45c449234e0748c2d7117cdd2c2b78b20b88dd0e71e2352503baf3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.22 MB
images/catwalk_22_3.0.png ADDED

Git LFS Details

  • SHA256: d6552cd1f296ecaedfe968b91c78d6445e28f3608fa4e4c086be3218e547d4cd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.21 MB