ntc-ai commited on
Commit
7009cdf
1 Parent(s): 58e4e58

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/wearing a spiderman costume.../wearing a spiderman costume_17_3.0.png"
6
+ widget:
7
+ - text: wearing a spiderman costume
8
+ output:
9
+ url: images/wearing a spiderman costume_17_3.0.png
10
+ - text: wearing a spiderman costume
11
+ output:
12
+ url: images/wearing a spiderman costume_19_3.0.png
13
+ - text: wearing a spiderman costume
14
+ output:
15
+ url: images/wearing a spiderman costume_20_3.0.png
16
+ - text: wearing a spiderman costume
17
+ output:
18
+ url: images/wearing a spiderman costume_21_3.0.png
19
+ - text: wearing a spiderman costume
20
+ output:
21
+ url: images/wearing a spiderman costume_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: "wearing a spiderman costume"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - wearing a spiderman costume (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/wearing a spiderman costume_17_-3.0.png" width=256 height=256 /> | <img src="images/wearing a spiderman costume_17_0.0.png" width=256 height=256 /> | <img src="images/wearing a spiderman costume_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/wearing a spiderman costume_19_-3.0.png" width=256 height=256 /> | <img src="images/wearing a spiderman costume_19_0.0.png" width=256 height=256 /> | <img src="images/wearing a spiderman costume_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/wearing a spiderman costume_20_-3.0.png" width=256 height=256 /> | <img src="images/wearing a spiderman costume_20_0.0.png" width=256 height=256 /> | <img src="images/wearing a spiderman costume_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
+ wearing a spiderman costume
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.wearing-a-spiderman-costume', weight_name='wearing a spiderman costume.safetensors', adapter_name="wearing a spiderman costume")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["wearing a spiderman costume"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, wearing a spiderman costume"
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 1140+ 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
images/wearing a spiderman costume_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 3cd22da501c4f557d59a3d07fd57b5e4c7f4c274e335e439e66c98df398ee4cd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/wearing a spiderman costume_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 6e608ed50245d602bd6e641c7df04b353f53d9b09e279ca4c2660bcc6f93af42
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/wearing a spiderman costume_17_0.0.png ADDED

Git LFS Details

  • SHA256: 999bf85bed86ce5638210cb14a7a994f22f94c38e817cb18e84706cfefee63e3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/wearing a spiderman costume_17_1.5.png ADDED

Git LFS Details

  • SHA256: 1e92250438fbbf71b1a81a6eab195388896b276a899a5ccb26d02851a326cf4a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/wearing a spiderman costume_17_3.0.png ADDED

Git LFS Details

  • SHA256: f4c5e55b07da72b6cccb7d1c1e3e6e74ff67d069730e858bbd90d36a321cc0f5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/wearing a spiderman costume_19_-1.5.png ADDED

Git LFS Details

  • SHA256: f9aea40be3731afd500145c6b3e7273534946b5b529239074ff93f6e622295c7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/wearing a spiderman costume_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 5e8c27c511956384ad02fa430926685c300cf8b59f0689a14a9354f51ebac23b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/wearing a spiderman costume_19_0.0.png ADDED

Git LFS Details

  • SHA256: 863f4d9eeba68e32010cc14a1254a1210a1fb0347fd8ba7ec38a93772f1f5d75
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/wearing a spiderman costume_19_1.5.png ADDED

Git LFS Details

  • SHA256: 7fb2233dc3d10b6bc03163d47cf712faa78ceec8daaf3369aaef9608aea4fa3e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/wearing a spiderman costume_19_3.0.png ADDED

Git LFS Details

  • SHA256: 5c03a643a7062468995d9099e8d2f4033c6ff0c3ddd095c08a8fdd425aa71d8e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/wearing a spiderman costume_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 49128a27ad3414a8a185ff127920769ed6eb715be3de569d0907ee4051f4e9f4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/wearing a spiderman costume_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 9bfef96d95f6d4de92d8d9b4613af81936679d21a007388ef37a85cef67e4756
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/wearing a spiderman costume_20_0.0.png ADDED

Git LFS Details

  • SHA256: 0b22bf4ad9c0dc30851925dfb723fca4643fc60c4990ed6dccb7a1d7276e5b6c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/wearing a spiderman costume_20_1.5.png ADDED

Git LFS Details

  • SHA256: e8e85face94247d5fba210e6d0ba652802eed8392482c7c9c14433d0c9f64003
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/wearing a spiderman costume_20_3.0.png ADDED

Git LFS Details

  • SHA256: bbc74bd9c117e7c4d78386f370fffce23b48711971c7ad742db385d86fbe2008
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/wearing a spiderman costume_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 4b4abc371b4742fc68a472b99ead662827edc96ef5730b256a32c62a419be409
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/wearing a spiderman costume_21_-3.0.png ADDED

Git LFS Details

  • SHA256: c60ce45b6340a1691891874b8e5ea136d5e22c1a522fb477c73500ce5f4e991d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/wearing a spiderman costume_21_0.0.png ADDED

Git LFS Details

  • SHA256: 80bbdf0b2549305c4625016aed5e86254fb8e7936a2a44bf356740b0e026fdfc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/wearing a spiderman costume_21_1.5.png ADDED

Git LFS Details

  • SHA256: 260a48a37d2c51b05f64165b38e5a0a641a68597607f1f5528e3b194018f6a9f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/wearing a spiderman costume_21_3.0.png ADDED

Git LFS Details

  • SHA256: 8b40c5497700031032b1762174305460bce35ea7f443b7822a2075f998290fdb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/wearing a spiderman costume_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 8b4d9fcdf2c4f6a656afce907f117d49223b9f508456d1733bb0c3cf590a736d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/wearing a spiderman costume_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 740ec640e4fce3925b964d9b0ee743e7c492a43a1c25c5c22dcb07e6bc37bd7c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/wearing a spiderman costume_22_0.0.png ADDED

Git LFS Details

  • SHA256: 8af536f3686fd92e158430fa7a31e4291587d35c3ab70bcdcfc5c97fce47fd42
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/wearing a spiderman costume_22_1.5.png ADDED

Git LFS Details

  • SHA256: 874c6df4f15fde1a48bb7e736152427ddfff984d982509681c24d8dfa867e25a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/wearing a spiderman costume_22_3.0.png ADDED

Git LFS Details

  • SHA256: 8094fefa32765300b7479f95c01952641925ad78e3fd67f0ded2d287c5a3e619
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
wearing a spiderman costume.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aba7701143249da6863c19513c904d86eeec28f732e046d511f3654001e3959c
3
+ size 8789076