ntc-ai commited on
Commit
7f82647
·
1 Parent(s): f8ab3a4

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/dark-skinned...light-skinned/dark-skinned_17_3.0.png"
6
+ widget:
7
+ - text: dark-skinned
8
+ output:
9
+ url: images/dark-skinned_17_3.0.png
10
+ - text: dark-skinned
11
+ output:
12
+ url: images/dark-skinned_19_3.0.png
13
+ - text: dark-skinned
14
+ output:
15
+ url: images/dark-skinned_20_3.0.png
16
+ - text: dark-skinned
17
+ output:
18
+ url: images/dark-skinned_21_3.0.png
19
+ - text: dark-skinned
20
+ output:
21
+ url: images/dark-skinned_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: "dark-skinned"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - dark-skinned (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/dark-skinned_17_-3.0.png" width=256 height=256 /> | <img src="images/dark-skinned_17_0.0.png" width=256 height=256 /> | <img src="images/dark-skinned_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/dark-skinned_19_-3.0.png" width=256 height=256 /> | <img src="images/dark-skinned_19_0.0.png" width=256 height=256 /> | <img src="images/dark-skinned_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/dark-skinned_20_-3.0.png" width=256 height=256 /> | <img src="images/dark-skinned_20_0.0.png" width=256 height=256 /> | <img src="images/dark-skinned_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
+ dark-skinned
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.dark-skinned', weight_name='dark-skinned.safetensors', adapter_name="dark-skinned")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["dark-skinned"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, dark-skinned"
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 250+ 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
dark-skinned.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4dec04d89f489e257d478ddf629c55c21177b48e9ca91289547564ca45a4be6
3
+ size 8789076
images/dark-skinned_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 78a2812b07c3ae7ebcdda0702f246cd8d1d87e6a510494c243ae75d71407b642
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/dark-skinned_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 285a0ae5f6dd8c447ca4890a95a3667e5f1ee1d11ef804aa2faf1d4f5f4d7ba8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/dark-skinned_17_0.0.png ADDED

Git LFS Details

  • SHA256: 459e6c5ac23154bdff31fd1e280e6028f8d381938d86699c7c356a42a61587bd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/dark-skinned_17_1.5.png ADDED

Git LFS Details

  • SHA256: 780096eaf392af6ad2198f43058d2815dff3a9a13397c32738146f0d9ecacd9b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/dark-skinned_17_3.0.png ADDED

Git LFS Details

  • SHA256: ca8d3d27fe8309ed3fee961a225ea98c025e2216d977b792a887dd1aedf1c820
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/dark-skinned_19_-1.5.png ADDED

Git LFS Details

  • SHA256: ddcac5b8576018b979a753acaf02a5b472a9b687f513dfe45088a27db075da78
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/dark-skinned_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 8db03685ca69c613631fb430bc9407bd5dc88a51d1b93e3a48647bf911b1c075
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/dark-skinned_19_0.0.png ADDED

Git LFS Details

  • SHA256: e64aa31b59da5698eeecb284f65b090972c8f07443d0cd7918a9f683be9f55e5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/dark-skinned_19_1.5.png ADDED

Git LFS Details

  • SHA256: de5dfebf281a948805db86c1987e24c112d8a77c51af4b23e130b6399f4b9824
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/dark-skinned_19_3.0.png ADDED

Git LFS Details

  • SHA256: 768eabe02580d8bfc61ce22f77b457dd554481cf4d6e48bd206cd57f20b96bec
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/dark-skinned_20_-1.5.png ADDED

Git LFS Details

  • SHA256: e9efbaf034c28d0c565b82232feec6966ced9c66e7267938e9ce987f25731a6a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/dark-skinned_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 5553ab7304357cb7a9b018fbf7544696c0e260ac8e14af8b16d75091bfdb3242
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/dark-skinned_20_0.0.png ADDED

Git LFS Details

  • SHA256: 8df33db0c25c0d36d5ba1913f8bca69a9705e5593885e5d94fb8e19870c3b63a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/dark-skinned_20_1.5.png ADDED

Git LFS Details

  • SHA256: 100845cf611e9107a0848b3dd89a3c40c64ddd60b5a6d813bd13532fc7926118
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/dark-skinned_20_3.0.png ADDED

Git LFS Details

  • SHA256: 23a27787e057b453f28f5e65ae291c6282990904374dcf0c73fcfdd605fc9c45
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/dark-skinned_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 3d95d3e72de34f39e8aca88970a345c464160392dcbd9478276ba369acbc8041
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/dark-skinned_21_-3.0.png ADDED

Git LFS Details

  • SHA256: a5c0600099cfe8a6b9134f48c52107e63f446ffe9e65dcad6328cac709d00af1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/dark-skinned_21_0.0.png ADDED

Git LFS Details

  • SHA256: 7524a382a41c07dd7cee32c5d5d88f2d5ba55b2b7fff8e7c3d537f7c13b066fd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/dark-skinned_21_1.5.png ADDED

Git LFS Details

  • SHA256: 31adf747f997e738ff61f42385f801aa90499032b4fe13206f8007e1116f05fd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/dark-skinned_21_3.0.png ADDED

Git LFS Details

  • SHA256: 4cba36bd56aeca6c7fe102ad16dc7faaaf3e471465eb84ca67dbb7d15f8e0c25
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/dark-skinned_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 9ac7c2f3318295cacad13fa1d80f55e8be385db46a256aadf7efdf3d5bbf7dd2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/dark-skinned_22_-3.0.png ADDED

Git LFS Details

  • SHA256: be6a2eb7d55c3c1ae9b62e6d89283a77843e6e0fe0cff42d68e0f08f06fd7282
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/dark-skinned_22_0.0.png ADDED

Git LFS Details

  • SHA256: dc68437eba022a7e190ee6dd13b8aef40f2c21ced0f0b116f58095623bae197c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.75 MB
images/dark-skinned_22_1.5.png ADDED

Git LFS Details

  • SHA256: 3a46aeef5aadc93788de4a3334df4a9f2733d1cec44ed79db20a05fa98007960
  • Pointer size: 132 Bytes
  • Size of remote file: 1.8 MB
images/dark-skinned_22_3.0.png ADDED

Git LFS Details

  • SHA256: 0fe2b6e4d13e3fa423fa70bb434a6bff547fd06c11c7fb61c6b077fc00e929e1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.85 MB