ntc-ai commited on
Commit
a5fa574
1 Parent(s): b5ba8f6

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/concerned.../concerned_17_3.0.png"
6
+ widget:
7
+ - text: concerned
8
+ output:
9
+ url: images/concerned_17_3.0.png
10
+ - text: concerned
11
+ output:
12
+ url: images/concerned_19_3.0.png
13
+ - text: concerned
14
+ output:
15
+ url: images/concerned_20_3.0.png
16
+ - text: concerned
17
+ output:
18
+ url: images/concerned_21_3.0.png
19
+ - text: concerned
20
+ output:
21
+ url: images/concerned_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: "concerned"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - concerned (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/concerned_17_-3.0.png" width=256 height=256 /> | <img src="images/concerned_17_0.0.png" width=256 height=256 /> | <img src="images/concerned_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/concerned_19_-3.0.png" width=256 height=256 /> | <img src="images/concerned_19_0.0.png" width=256 height=256 /> | <img src="images/concerned_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/concerned_20_-3.0.png" width=256 height=256 /> | <img src="images/concerned_20_0.0.png" width=256 height=256 /> | <img src="images/concerned_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
+ concerned
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.concerned', weight_name='concerned.safetensors', adapter_name="concerned")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["concerned"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, concerned"
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 600+ 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
concerned.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfc3ff656fc1a55e0c561ce7826ed72d7f6bc7d0db9ebf77c12031488ba73d7d
3
+ size 8789076
images/concerned_17_-1.5.png ADDED

Git LFS Details

  • SHA256: a8e83f0ec48a8a53ed250934e834f024b00423c7b7c350b6c2028621e0ea673a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.21 MB
images/concerned_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 6c960958a505f98c437fbee6afa7bde85f602d06d3e9adb43f25e35234d9fc43
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/concerned_17_0.0.png ADDED

Git LFS Details

  • SHA256: 75d99aeb492cf9dc35bf93d6f120a25e84e1d2f8cc1b1d2cec1cddbf8a42e082
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/concerned_17_1.5.png ADDED

Git LFS Details

  • SHA256: 58121e504cdc7d6e97fa48343adb406b76291594e0617673d9722381352594b1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/concerned_17_3.0.png ADDED

Git LFS Details

  • SHA256: 9b94b5897c811407bf0488265c6cacf128359a8752fca9e7dfb557bc32bd7b4a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/concerned_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 89f69ccdef5cc5d0696ef57863d4ec13f94f7925b506d4544d5dead4f3c8f379
  • Pointer size: 132 Bytes
  • Size of remote file: 1.7 MB
images/concerned_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 8838c6c926b692d80fbec3af41fdab90a664bcbdb597751fb26cc98c078a3281
  • Pointer size: 132 Bytes
  • Size of remote file: 1.72 MB
images/concerned_19_0.0.png ADDED

Git LFS Details

  • SHA256: c290045fc01e241ba942f391eebcc7dabcdd479cda4d68755945b91dfaeee836
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/concerned_19_1.5.png ADDED

Git LFS Details

  • SHA256: a084c7dea4eed6593e320120595fbed621a19f7e49e8aaed5276ac13a497a1e9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/concerned_19_3.0.png ADDED

Git LFS Details

  • SHA256: 5ccfcada95733a67f3c1b48ab90fcb7d946615f263c030749348429a1b3d6263
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/concerned_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 01c6be4f2a7383388482cf358864f976acb27f2caaffb56014750ca8f9a6a70d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/concerned_20_-3.0.png ADDED

Git LFS Details

  • SHA256: fa399e296ae5cc5f7e357089bcd365aca9eb2f1f6a35f486be0cb9e4d71b1c41
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/concerned_20_0.0.png ADDED

Git LFS Details

  • SHA256: 91b44e8acc2676b5066a1b8b4fded5b7cac6bd2e6c3037c6e71ef0fb6a1a470b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/concerned_20_1.5.png ADDED

Git LFS Details

  • SHA256: 2d9da042bef501cad51c83cb65df03cdc4f313dac84742ec7ce9a754d32d8bce
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/concerned_20_3.0.png ADDED

Git LFS Details

  • SHA256: 71062e0a3e4ecdc3a91f90581afdc79c98e9073bcb887abcf2a58c343bfa8c35
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/concerned_21_-1.5.png ADDED

Git LFS Details

  • SHA256: e3529905b3c964319aa2433ab123d97811fd8670aeaa895bf2a72eefe18cea3d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.26 MB
images/concerned_21_-3.0.png ADDED

Git LFS Details

  • SHA256: aac5e12acf38acd3f3a1a57fb5a4ef43259b382bc58b690d29d3a5e320b87d62
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
images/concerned_21_0.0.png ADDED

Git LFS Details

  • SHA256: f35f4e23e4fd39ed956af6dc059cfc44537f563df55956e57683e44d85dde94a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/concerned_21_1.5.png ADDED

Git LFS Details

  • SHA256: 2c6d5184421481f044930728a54dc88b7cf9164e2d73d16dceb4712bc057e301
  • Pointer size: 132 Bytes
  • Size of remote file: 1.21 MB
images/concerned_21_3.0.png ADDED

Git LFS Details

  • SHA256: 2a257a00246e790f0b54ca8da49fa838bdbfa97f9220366ba671c7803e9c95a3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.24 MB
images/concerned_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 8cd0fb2a041f648d820447b391c751b0dfdef1eee81670316d34169ecc349bea
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/concerned_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 3868ba155dc55c0adf0fcaeb4ccf1973c0d5e5b8af5ea13bd11ac29673ca39b4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/concerned_22_0.0.png ADDED

Git LFS Details

  • SHA256: 9fc34de0fbf80cfda01b44b3c39c2165988e4839fbd2584fca64570ab76b9dfa
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/concerned_22_1.5.png ADDED

Git LFS Details

  • SHA256: 9bfe984dfc852097622f593f379a8858893abcef3216d7fe11ac10212eb67a6a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/concerned_22_3.0.png ADDED

Git LFS Details

  • SHA256: 15f252eeb402ebf703feb048a2729999776acafd419239b5f245c0a042b44280
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB