ntc-ai commited on
Commit
a812ba8
1 Parent(s): 4156a3b

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
Chiaroscuro.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf456f95eacfccdd5f938251ecd72255b5b7069ad15acd95d3172717aa6581ea
3
+ size 8789076
README.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ language:
4
+ - en
5
+ thumbnail: "images/evaluate/Chiaroscuro.../Chiaroscuro_17_3.0.png"
6
+ widget:
7
+ - text: Chiaroscuro
8
+ output:
9
+ url: images/Chiaroscuro_17_3.0.png
10
+ - text: Chiaroscuro
11
+ output:
12
+ url: images/Chiaroscuro_19_3.0.png
13
+ - text: Chiaroscuro
14
+ output:
15
+ url: images/Chiaroscuro_20_3.0.png
16
+ - text: Chiaroscuro
17
+ output:
18
+ url: images/Chiaroscuro_21_3.0.png
19
+ - text: Chiaroscuro
20
+ output:
21
+ url: images/Chiaroscuro_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: "Chiaroscuro"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - Chiaroscuro (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/Chiaroscuro_17_-3.0.png" width=256 height=256 /> | <img src="images/Chiaroscuro_17_0.0.png" width=256 height=256 /> | <img src="images/Chiaroscuro_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/Chiaroscuro_19_-3.0.png" width=256 height=256 /> | <img src="images/Chiaroscuro_19_0.0.png" width=256 height=256 /> | <img src="images/Chiaroscuro_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/Chiaroscuro_20_-3.0.png" width=256 height=256 /> | <img src="images/Chiaroscuro_20_0.0.png" width=256 height=256 /> | <img src="images/Chiaroscuro_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
+ Chiaroscuro
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.Chiaroscuro', weight_name='Chiaroscuro.safetensors', adapter_name="Chiaroscuro")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["Chiaroscuro"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, Chiaroscuro"
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/Chiaroscuro_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 51b4e51b4b4808560872eac51a2f3f15842648ef27519cd13c7a4cfec7201a56
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/Chiaroscuro_17_-3.0.png ADDED

Git LFS Details

  • SHA256: a062a2f351032b4660ac01b5f63348983eaf67bdd6ef3795fdb3198e8dec56bd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/Chiaroscuro_17_0.0.png ADDED

Git LFS Details

  • SHA256: 807383f08a8cc823d4ba0fb865718eb7275e3cf12284157c842dac73f6c6fcd1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/Chiaroscuro_17_1.5.png ADDED

Git LFS Details

  • SHA256: f740d1f883a2e3052b2e6ab764aeb8a563a173a664d3abe7c980515709fec849
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/Chiaroscuro_17_3.0.png ADDED

Git LFS Details

  • SHA256: 809d534ede4045abf61d14c35bf34b750c0523778a360bbdd5fbc79e4d18726e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/Chiaroscuro_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 3e3aef1974355ba4929c76967c125a218e0e008de26fe62d00c26eb79557ee27
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/Chiaroscuro_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 4a17a1d6f6a6d5df1de96d28c1253c3964121c98fe9540fc11eb566584ef74e4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/Chiaroscuro_19_0.0.png ADDED

Git LFS Details

  • SHA256: 1e06ed7fc2c6d53a5a05d6ed3dfdfef461eeec7029e086bd3fdb81d3d1df5b9f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.16 MB
images/Chiaroscuro_19_1.5.png ADDED

Git LFS Details

  • SHA256: 73269d15ed5ed463f2daee3b89e94a528b62a7f88d65da687bed0fab129cfede
  • Pointer size: 132 Bytes
  • Size of remote file: 1.09 MB
images/Chiaroscuro_19_3.0.png ADDED

Git LFS Details

  • SHA256: 83e3c8513084b73615bf3299f795aab637fafaec3d44dd446d73b569b53da748
  • Pointer size: 132 Bytes
  • Size of remote file: 1.09 MB
images/Chiaroscuro_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 48600647944e43b1f485e853be449e0f7335a09b19541f71f284798f0b4652be
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/Chiaroscuro_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 894a20ae500253bde7cb19cd680a5009fa6d94c0fc3bd7cdba647f96b9e6ab4a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/Chiaroscuro_20_0.0.png ADDED

Git LFS Details

  • SHA256: 3820d2f3e189601465376497d2d87adbb441e5f1f295aa0104e465b8c0b78eea
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/Chiaroscuro_20_1.5.png ADDED

Git LFS Details

  • SHA256: 2abfa7f680a3186bf0cb7c5bb8a25401438e3342cdf47c9b2e830c7bb11e6454
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/Chiaroscuro_20_3.0.png ADDED

Git LFS Details

  • SHA256: f389e309a686d5aee4dc05a1c889614b45ab18a1a71e1f9da4a84272eb11b1d2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/Chiaroscuro_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 2ee57a84a491e70a4134bb46eeca60eae8097dd7a54cdd0863b98d4aa1c2044f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/Chiaroscuro_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 80f937c88b52c92e626ba7f76c143cdd587dc9ba69d98e1222c5f9e36d516fa0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/Chiaroscuro_21_0.0.png ADDED

Git LFS Details

  • SHA256: 095d11637f0224c2c9a7d9780cf8666bf2918acadbde8d35cfa4851664651c71
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/Chiaroscuro_21_1.5.png ADDED

Git LFS Details

  • SHA256: 92aa7669eaf4489bc7cf67d18bd0bb9be75229dc3564954f6d574428259daf89
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/Chiaroscuro_21_3.0.png ADDED

Git LFS Details

  • SHA256: 950fbd88ccead0921cccce3992fc354cd3a5e2a2805cc079c7e47622d4d80a6d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/Chiaroscuro_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 5bbcc239be63aba5d1fd1c93b2e3b83e7d22e072204ffece5aca1d73d8aa79fe
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/Chiaroscuro_22_-3.0.png ADDED

Git LFS Details

  • SHA256: ed3bf9ab7771f4a2c5e3680075b2a6b2732c3bfbc0b992289b64dcac31c11ec8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/Chiaroscuro_22_0.0.png ADDED

Git LFS Details

  • SHA256: ae26a9ae05afe211cffddf0f50c4bd7d2ce366f5c5c51dd933802849007279a1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/Chiaroscuro_22_1.5.png ADDED

Git LFS Details

  • SHA256: 5a8bb21b4caea13e44fef65b7bf11f99e93cd3076f1cf4a17c260e66fb522684
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/Chiaroscuro_22_3.0.png ADDED

Git LFS Details

  • SHA256: ee43ec5d525f251926278a433671ecf73c0185e8d4ed5cd22bdb03e864998771
  • Pointer size: 132 Bytes
  • Size of remote file: 1.23 MB