ntc-ai commited on
Commit
ec893c6
1 Parent(s): 5a209c5

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/dreadlocks...straight hair/dreadlocks_17_3.0.png"
6
+ widget:
7
+ - text: dreadlocks
8
+ output:
9
+ url: images/dreadlocks_17_3.0.png
10
+ - text: dreadlocks
11
+ output:
12
+ url: images/dreadlocks_19_3.0.png
13
+ - text: dreadlocks
14
+ output:
15
+ url: images/dreadlocks_20_3.0.png
16
+ - text: dreadlocks
17
+ output:
18
+ url: images/dreadlocks_21_3.0.png
19
+ - text: dreadlocks
20
+ output:
21
+ url: images/dreadlocks_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: "dreadlocks"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - dreadlocks (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/dreadlocks_17_-3.0.png" width=256 height=256 /> | <img src="images/dreadlocks_17_0.0.png" width=256 height=256 /> | <img src="images/dreadlocks_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/dreadlocks_19_-3.0.png" width=256 height=256 /> | <img src="images/dreadlocks_19_0.0.png" width=256 height=256 /> | <img src="images/dreadlocks_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/dreadlocks_20_-3.0.png" width=256 height=256 /> | <img src="images/dreadlocks_20_0.0.png" width=256 height=256 /> | <img src="images/dreadlocks_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
+ dreadlocks
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.dreadlocks', weight_name='dreadlocks.safetensors', adapter_name="dreadlocks")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["dreadlocks"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, dreadlocks"
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 370+ 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
dreadlocks.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfbfb8c11ae372bf8785f5389a7cd03750f3355c05eccd4032210fa6bdeec94d
3
+ size 8789076
images/dreadlocks_17_-1.5.png ADDED

Git LFS Details

  • SHA256: a0724527d18b84c5c9f124212ed1c49aa65e6e271b2fede990436661b8e12484
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/dreadlocks_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 9b98a7cb6dc8f04f1b17603d1a5caf6af6ae1c7ccdb8157e888e963927e90b45
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/dreadlocks_17_0.0.png ADDED

Git LFS Details

  • SHA256: 8bffecf49fd0914caf068ed87bf7e290d2c38872b3f106e4c2072f25f318b03d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/dreadlocks_17_1.5.png ADDED

Git LFS Details

  • SHA256: fd47edaa6b92469cd8f616d4c855aaec271e07095c5c0b7090f2d4e73f94662e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/dreadlocks_17_3.0.png ADDED

Git LFS Details

  • SHA256: eb4424d8cf071560f5e59d36547921cfacff16e246ca09eab6f594541a743e50
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/dreadlocks_19_-1.5.png ADDED

Git LFS Details

  • SHA256: ee44767b22a8cddbb513b494f09b9a82548748819884cdf5a32404093462a098
  • Pointer size: 132 Bytes
  • Size of remote file: 1.72 MB
images/dreadlocks_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 96abd02d3b1ab67acfb0603afb79d0858c9e371ecaa9d3ad9682dc091fe6f038
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/dreadlocks_19_0.0.png ADDED

Git LFS Details

  • SHA256: fe12e6ff4e02bbe9eb8b958bc5e0eeff9b2a4bf3732f062ba09ef9a35d2b27c4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/dreadlocks_19_1.5.png ADDED

Git LFS Details

  • SHA256: 4fe20202f94b4ef5e92323f54384d9b0e92125ea5086c83bded61c302a75a979
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/dreadlocks_19_3.0.png ADDED

Git LFS Details

  • SHA256: 149b308cd5c92e02d21df67110ab106f0d71e4d154d910de33a27c7c4b2c52a6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.71 MB
images/dreadlocks_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 49e7d585a3fbce24e95de33bacfdd4da2651586df797b7321ce6d68205856754
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/dreadlocks_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 5f03f5e3c0a1b813d745c3470cd0fe14084d072566960bf79551ce1510bb8705
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/dreadlocks_20_0.0.png ADDED

Git LFS Details

  • SHA256: 6babe1103c73168c403024b34f9f74fa37ffb30c9644edac6d937b528dbb0391
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/dreadlocks_20_1.5.png ADDED

Git LFS Details

  • SHA256: 88de3a4f6c30774d63d49d8b43db249e406284ed65f4bd62cdc3f06f5d2411dc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/dreadlocks_20_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 33b69a23db6f786f7e7273edd0eb696e009b8a34a23c90e2dd6938c1c074c40b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.2 MB
images/dreadlocks_21_-3.0.png ADDED

Git LFS Details

  • SHA256: ae11d4e8f5956ac6330d59cd677f0addcefeabb3a7bd7158f055366a4d808d2e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.18 MB
images/dreadlocks_21_0.0.png ADDED

Git LFS Details

  • SHA256: c20d27531ab2a96a8134966bd83145fe742a3667fd6e616460b7a9e796b827b8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.26 MB
images/dreadlocks_21_1.5.png ADDED

Git LFS Details

  • SHA256: 7a07be42b9b8d3e4ee77842962c03fff5f61d3b6f431ac7ce8046e18656c08d4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/dreadlocks_21_3.0.png ADDED

Git LFS Details

  • SHA256: b33be8da61c4ea25d13ab7406b7f56cf16f6b1b98485dec8c057f44fb0a00a88
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/dreadlocks_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 1c0eede23f94c39a251ea866bfdd7ffd51616676ec344a800b7d138d813528cc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/dreadlocks_22_-3.0.png ADDED

Git LFS Details

  • SHA256: e2618ad74ccd9696f4dc201fd976f3b7a25c069519dc38069295fd108a2581ab
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/dreadlocks_22_0.0.png ADDED

Git LFS Details

  • SHA256: cbcf19e6f1de0cdf54dfb78ffb6daec7f75c5e8fa4142da3164bc529da0a20cf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/dreadlocks_22_1.5.png ADDED

Git LFS Details

  • SHA256: b8335b55b2600b593ecf084c51f16213a0556d281bc5f7d49de866bca3052544
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/dreadlocks_22_3.0.png ADDED

Git LFS Details

  • SHA256: 4b650d7a9c692234a5bb2213d5fc8efe56e2e99681353348de217c2a1bf052dc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB