ntc-ai commited on
Commit
2e08b52
1 Parent(s): c4da58c

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/dancing...standing/dancing_17_3.0.png"
6
+ widget:
7
+ - text: dancing
8
+ output:
9
+ url: images/dancing_17_3.0.png
10
+ - text: dancing
11
+ output:
12
+ url: images/dancing_19_3.0.png
13
+ - text: dancing
14
+ output:
15
+ url: images/dancing_20_3.0.png
16
+ - text: dancing
17
+ output:
18
+ url: images/dancing_21_3.0.png
19
+ - text: dancing
20
+ output:
21
+ url: images/dancing_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: "dancing"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - dancing (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/dancing_17_-3.0.png" width=256 height=256 /> | <img src="images/dancing_17_0.0.png" width=256 height=256 /> | <img src="images/dancing_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/dancing_19_-3.0.png" width=256 height=256 /> | <img src="images/dancing_19_0.0.png" width=256 height=256 /> | <img src="images/dancing_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/dancing_20_-3.0.png" width=256 height=256 /> | <img src="images/dancing_20_0.0.png" width=256 height=256 /> | <img src="images/dancing_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
+ dancing
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.dancing', weight_name='dancing.safetensors', adapter_name="dancing")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["dancing"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, dancing"
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 240+ 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
dancing.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0aff7f7d992e4fd2da65ef559400ebace12367204fc7d853d413cd345307daa6
3
+ size 8789076
images/dancing_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 89bd041fbe0f89f06138ab6fc1328f1374c2f603d350cc7243e74fcc286d3366
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/dancing_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 7c5a2bc264496aa39bd32d190c8e29aea353b628ae91238a861c567836a9ad7f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/dancing_17_0.0.png ADDED

Git LFS Details

  • SHA256: f4d10c10067843f27f1d12aab0e69083c268bac29ffba2c2f34a30224a1bdd88
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/dancing_17_1.5.png ADDED

Git LFS Details

  • SHA256: 1a6e17252cac09479269b933d92ee74ca3e73cfb27f35a88abb11368e0a27d4f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/dancing_17_3.0.png ADDED

Git LFS Details

  • SHA256: 76214b90aa1ebe33b08e399c59c679ceedf0bd9df5943ace22969d7c79f90f24
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/dancing_19_-1.5.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 3bb72e8bd5b34624e3efa22e5a3bc20313cadbfbf65305ae5cd596af26a9aa50
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/dancing_19_0.0.png ADDED

Git LFS Details

  • SHA256: 2f22ffebf964359b0c17b425d20754977f0f9a209679bfb2896e1a8079c80cdd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/dancing_19_1.5.png ADDED

Git LFS Details

  • SHA256: 5f6ebdacee3a20b9e0cb71abc10c13c2b4fffda3e4debcb806bbf264ffa59b07
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/dancing_19_3.0.png ADDED

Git LFS Details

  • SHA256: 341f649f9b3a1edf59e06b03251d3f3e249a10af4295c3917d37e205d2679b8d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/dancing_20_-1.5.png ADDED

Git LFS Details

  • SHA256: feef6f70b5791b878db48ea7c5f6873419b781b58253a86a21bfd294cf3dca81
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/dancing_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 3e163838883e6d7f75055800d0b57eaa5b258e84f67275685605ba4e0c74c754
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/dancing_20_0.0.png ADDED

Git LFS Details

  • SHA256: e2b8a8c4ae925cb1ebbda32cec399ce93baa2e206e779d28000e95caa389d548
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/dancing_20_1.5.png ADDED

Git LFS Details

  • SHA256: 659da90add5bdf29a74d58f4c618ae914768a073874e718f94ab3f6d4bec389f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/dancing_20_3.0.png ADDED

Git LFS Details

  • SHA256: 8d1e5ca5101cdae1f1d4881ef5e00a3ccd222b3373df585fb099781a1e232dee
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/dancing_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 99efde4fa5a1bfc1816a7e694a5b02c385a8ceb0eaac8783231162cfe993495a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/dancing_21_-3.0.png ADDED

Git LFS Details

  • SHA256: ce88a95853e6a010787081e1be112968bf6defc7e0b54f9ba77e15414c4dc925
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/dancing_21_0.0.png ADDED

Git LFS Details

  • SHA256: 71e694768166605869c00ff8ea14eaa46f7cb498c7c774072ef818b6b9c0002d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/dancing_21_1.5.png ADDED

Git LFS Details

  • SHA256: 911f65676cf981d1644044534ad02b4692bdcea86394b84afee107c806d62bb6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/dancing_21_3.0.png ADDED

Git LFS Details

  • SHA256: e6bb1be67b181423c4975f54e06afb922b3380a27881c617e951acfb30139018
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/dancing_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 06f8a7f9cdb345c0a22ed2193dc52f2e26387d47856f853098bd1e96b224ed94
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/dancing_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 8d84a31ab2fa7dcb553d06a8e0b98c9b9913841c67eaf8606c8aedaed8c1674c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/dancing_22_0.0.png ADDED

Git LFS Details

  • SHA256: 04f06d58fa03da9beca1cfe8c683a09ac7a8ecbd2a8237fdfffdea2d16335f09
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/dancing_22_1.5.png ADDED

Git LFS Details

  • SHA256: 202fdfd60570b934471ac4988c2c4e436b9e32a179e235002784e582d2c49575
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/dancing_22_3.0.png ADDED

Git LFS Details

  • SHA256: c67317aeed190453afd3c70d09b28ab20ce8fe95b16d201307715b3425afe223
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB