ntc-ai commited on
Commit
a760872
1 Parent(s): 3040b55

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/curly hair...straight hair/curly hair_17_3.0.png"
6
+ widget:
7
+ - text: curly hair
8
+ output:
9
+ url: images/curly hair_17_3.0.png
10
+ - text: curly hair
11
+ output:
12
+ url: images/curly hair_19_3.0.png
13
+ - text: curly hair
14
+ output:
15
+ url: images/curly hair_20_3.0.png
16
+ - text: curly hair
17
+ output:
18
+ url: images/curly hair_21_3.0.png
19
+ - text: curly hair
20
+ output:
21
+ url: images/curly hair_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: "curly hair"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - curly hair (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/curly hair_17_-3.0.png" width=256 height=256 /> | <img src="images/curly hair_17_0.0.png" width=256 height=256 /> | <img src="images/curly hair_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/curly hair_19_-3.0.png" width=256 height=256 /> | <img src="images/curly hair_19_0.0.png" width=256 height=256 /> | <img src="images/curly hair_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/curly hair_20_-3.0.png" width=256 height=256 /> | <img src="images/curly hair_20_0.0.png" width=256 height=256 /> | <img src="images/curly hair_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
+ curly hair
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.curly-hair', weight_name='curly hair.safetensors', adapter_name="curly hair")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["curly hair"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, curly hair"
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 380+ 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
curly hair.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b986d187ee334bd702c9a56e34ada2c8c6770d742b40b6ea98a2c22827d8e19
3
+ size 8789076
images/curly hair_17_-1.5.png ADDED

Git LFS Details

  • SHA256: b1b7aa5ef5b56ef8487b4f3be61217cf071618a528ddc171c0df139f1b3bcde7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/curly hair_17_-3.0.png ADDED

Git LFS Details

  • SHA256: a37d6b6ddf64c49d219f2b4526f55ddab8ce894da2c7f4329f2e6f4b4265ef36
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/curly hair_17_0.0.png ADDED

Git LFS Details

  • SHA256: fc2609276fa0073426a92731ee964393c354bf817bb9f3242f995c10f157bf3f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/curly hair_17_1.5.png ADDED

Git LFS Details

  • SHA256: f53b7aa52e5f79e3905a58caa29e5b9c45094d245bd4ac38c3362c84c82ac169
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/curly hair_17_3.0.png ADDED

Git LFS Details

  • SHA256: 2157e9b31bb8a66e5b94674af3e4b42c4b8533b851e83da3bd778a6757cec7be
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/curly hair_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 1d8e63620871233c4b7fbd25720b1db12fa62c94ac3c7b06910032b2f58494cf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/curly hair_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 6498b163be01682147d1d23e5530f30eacc3777f9b4603c54c4194b5234bbe26
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/curly hair_19_0.0.png ADDED

Git LFS Details

  • SHA256: 00571182d87ab2cf50558028181854d8306ff8a94ccb1558d92bb0a4b3343a50
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/curly hair_19_1.5.png ADDED

Git LFS Details

  • SHA256: 4b11d2ea11c0659d348a228249a856ed00a64982457a7b5e6e07cb695f1600d0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/curly hair_19_3.0.png ADDED

Git LFS Details

  • SHA256: 9002700c3ae3be9d992a661b8b4c4ffbad7c1ab2061f8cb1595ebe4e2eee00c5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/curly hair_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 5ab4292cb268306a88831cab174c0d2e00cc3203d99b7d9c47b4f8a44fdb4c29
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/curly hair_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 716e3008935d6bc1f69b21ec3ef63a5e6dbf80e8246f2a8c0d86d70591e48cc3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/curly hair_20_0.0.png ADDED

Git LFS Details

  • SHA256: 1d4e123496e4a803b41c15151cbff650100c0d680233541a036bb2b925dc05bc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/curly hair_20_1.5.png ADDED

Git LFS Details

  • SHA256: f835a38e6e0dddecc0b191741a1ce6d4e7417937bb8d0a6c19f8a5840c4dec6e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/curly hair_20_3.0.png ADDED

Git LFS Details

  • SHA256: 805d6ae464a3f185deaa19cea6be7b62305d5a78a18e254e2a74b3ba9aea3062
  • Pointer size: 132 Bytes
  • Size of remote file: 1.7 MB
images/curly hair_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 4fccdd8fb83b932d71bea5e45f08b7214a03befff69d2a43afa50484fe01e5d0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/curly hair_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 8a2014d5e2ccf229161a7c739a648d065b0ad3664f2677b797acd516d9f0ec58
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/curly hair_21_0.0.png ADDED

Git LFS Details

  • SHA256: f5b3894ccb88df40c44197bf0091000ee414ae0edace32985dd3aa01b0ca25c8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/curly hair_21_1.5.png ADDED

Git LFS Details

  • SHA256: a4448cf69bcd95a8fb01e7cb50bcea49ff1cc3960481fb931062874ef42085bd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/curly hair_21_3.0.png ADDED

Git LFS Details

  • SHA256: f0ec90d76b1a4952393b4bf38573c6e7f5c84c54ba4da7f1962f0df6bbaeb0fd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/curly hair_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 1a7f6aff9265455a8aeddce65c8dd68c81d9a0a300682bbc59cb24fec957f358
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/curly hair_22_-3.0.png ADDED

Git LFS Details

  • SHA256: c2955cfdd589db94f4188a1a0af3091f2ce55972209a8ef4cb858d2c1994d246
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/curly hair_22_0.0.png ADDED

Git LFS Details

  • SHA256: 7e7499f44a796a3f0490c7794c04ba4ea6ae10de8afe7c3f0b87dc24b805eab1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/curly hair_22_1.5.png ADDED

Git LFS Details

  • SHA256: ffb10b3c5ab3bbe2c135d3bc06bc5ff6e6a83283cb7a74b4288c2e2008f6faeb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/curly hair_22_3.0.png ADDED

Git LFS Details

  • SHA256: de61a76d319717cabc1765dbb91c27e9493b4537348efb2405be940a067c075f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB