ntc-ai commited on
Commit
f34b3b8
1 Parent(s): cf20f4d

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/striking a confident pose.../striking a confident pose_17_3.0.png"
6
+ widget:
7
+ - text: striking a confident pose
8
+ output:
9
+ url: images/striking a confident pose_17_3.0.png
10
+ - text: striking a confident pose
11
+ output:
12
+ url: images/striking a confident pose_19_3.0.png
13
+ - text: striking a confident pose
14
+ output:
15
+ url: images/striking a confident pose_20_3.0.png
16
+ - text: striking a confident pose
17
+ output:
18
+ url: images/striking a confident pose_21_3.0.png
19
+ - text: striking a confident pose
20
+ output:
21
+ url: images/striking a confident pose_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: "striking a confident pose"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - striking a confident pose (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/striking a confident pose_17_-3.0.png" width=256 height=256 /> | <img src="images/striking a confident pose_17_0.0.png" width=256 height=256 /> | <img src="images/striking a confident pose_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/striking a confident pose_19_-3.0.png" width=256 height=256 /> | <img src="images/striking a confident pose_19_0.0.png" width=256 height=256 /> | <img src="images/striking a confident pose_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/striking a confident pose_20_-3.0.png" width=256 height=256 /> | <img src="images/striking a confident pose_20_0.0.png" width=256 height=256 /> | <img src="images/striking a confident pose_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
+ striking a confident pose
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.striking-a-confident-pose', weight_name='striking a confident pose.safetensors', adapter_name="striking a confident pose")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["striking a confident pose"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, striking a confident pose"
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/striking a confident pose_17_-1.5.png ADDED

Git LFS Details

  • SHA256: d44187aae13a8db5ea64d4b6977052c981a4d435bb5feae70ceaa5b661d168a3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/striking a confident pose_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 7c569022e650f69bfa8dc6bcaf7df34e79b5650b16d41b0280a2ad67979ac0a3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/striking a confident pose_17_0.0.png ADDED

Git LFS Details

  • SHA256: cb02534b8cb1cf84f1328a3e455420aabf0e773dfb471329977af9d6c1a4fc0d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.24 MB
images/striking a confident pose_17_1.5.png ADDED

Git LFS Details

  • SHA256: fb4a31ef9afc838515385ee92c26e6004f91b4c2f8751224ab6a78533fee6479
  • Pointer size: 132 Bytes
  • Size of remote file: 1.17 MB
images/striking a confident pose_17_3.0.png ADDED

Git LFS Details

  • SHA256: 369598b8a53c092d5d91521318401f5a9c2e88c6a2bc47874ed3c50300efb4b1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.16 MB
images/striking a confident pose_19_-1.5.png ADDED

Git LFS Details

  • SHA256: f9f260e049dd2047144cd99997c305feb9f7d5909717d7b7faa5128588443f8e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/striking a confident pose_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 4fa6ab3e58b10abcb80874fa3a87432d31576c2d7c8b62fc5d07953649884d3d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/striking a confident pose_19_0.0.png ADDED

Git LFS Details

  • SHA256: 706add0b618e01cb786a6f4d546ed828989a7d549fdbb4495fa4074afd33e8cb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/striking a confident pose_19_1.5.png ADDED

Git LFS Details

  • SHA256: 2a5cecbaf735f8fc6e8747c4f4d95ceb16ae9c641d1b894e5c871107c9cce102
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/striking a confident pose_19_3.0.png ADDED

Git LFS Details

  • SHA256: 06a7b877afe83b2bcce076aecc049376890ba8b8880192af3d866e94784f6e5d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/striking a confident pose_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 02b326dea5e0d6c7dca7075030d0eb4f92125caf9ab7cb48fdc1820815a9dd4e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/striking a confident pose_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 4af50a5a33b80b75b64edfd8d752a25de59e67d32c35461f66116a839a793219
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/striking a confident pose_20_0.0.png ADDED

Git LFS Details

  • SHA256: 2e156c97faf7154f413cd3aed92f652b855fd6734bc24dd5c168360552a252b7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/striking a confident pose_20_1.5.png ADDED

Git LFS Details

  • SHA256: be9704972d4e6193da56c444fee42e4b14c6433e8df7aed5b53f902384302785
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/striking a confident pose_20_3.0.png ADDED

Git LFS Details

  • SHA256: fdf7d4687545a243d2d4b8a093a414de4445952ba502ea3c452fd3a939c44ed4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/striking a confident pose_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 9bc75464fe80e5f4158e11859a15c6ffb2c9ca04af94e96d351fc21f799e3532
  • Pointer size: 132 Bytes
  • Size of remote file: 1.26 MB
images/striking a confident pose_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 0b73ad35496538f1eb697718dc35c4fc4ff2669d8fd14ede8de1e6a52eee55fd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.23 MB
images/striking a confident pose_21_0.0.png ADDED

Git LFS Details

  • SHA256: 7bc7b47952310e192052dc867f9960d19d083845db1297662dd8757bc61d2593
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/striking a confident pose_21_1.5.png ADDED

Git LFS Details

  • SHA256: 64d216a1f2d641d9bec967a1c4b51c367e045978aa09f18b7a4d8e14d4bbac54
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/striking a confident pose_21_3.0.png ADDED

Git LFS Details

  • SHA256: fbc3be0b8376e0e0f81354bfbc86040e2bce23f6741b23d1ba1fe24265760cc0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/striking a confident pose_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 631352def5ab19eeb25656e2704521cb88e3e06c3b3124bc0b324bdd432f9b94
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/striking a confident pose_22_-3.0.png ADDED

Git LFS Details

  • SHA256: e9c35802bb0f034f8eed2a79d1bd18765e7b9119cf9d1a362c2a3dc795d25bbf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/striking a confident pose_22_0.0.png ADDED

Git LFS Details

  • SHA256: 65aad9f894de1ac0ae9030b389fa16dc26a0cd88beed08eca9e32c7206aa56c5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/striking a confident pose_22_1.5.png ADDED

Git LFS Details

  • SHA256: 1d9e9cabfc90ba3bf836ddcfbedb28d1f5091ffe5b5c4fc88a77137639700176
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/striking a confident pose_22_3.0.png ADDED

Git LFS Details

  • SHA256: 1c505873fa767029e9caf11336015cc6125552fafb9189658b56374f786f72ef
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
striking a confident pose.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d678f85b45e38125ba53dcfa3a2440bbd12bcff18258fe9b476849921d4a99d5
3
+ size 8789076