ntc-ai commited on
Commit
7c6f1f9
1 Parent(s): 4ad702c

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/courage...fear/courage_17_3.0.png"
6
+ widget:
7
+ - text: courage
8
+ output:
9
+ url: images/courage_17_3.0.png
10
+ - text: courage
11
+ output:
12
+ url: images/courage_19_3.0.png
13
+ - text: courage
14
+ output:
15
+ url: images/courage_20_3.0.png
16
+ - text: courage
17
+ output:
18
+ url: images/courage_21_3.0.png
19
+ - text: courage
20
+ output:
21
+ url: images/courage_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: "courage"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - courage (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/courage_17_-3.0.png" width=256 height=256 /> | <img src="images/courage_17_0.0.png" width=256 height=256 /> | <img src="images/courage_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/courage_19_-3.0.png" width=256 height=256 /> | <img src="images/courage_19_0.0.png" width=256 height=256 /> | <img src="images/courage_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/courage_20_-3.0.png" width=256 height=256 /> | <img src="images/courage_20_0.0.png" width=256 height=256 /> | <img src="images/courage_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
+ courage
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.courage', weight_name='courage.safetensors', adapter_name="courage")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["courage"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, courage"
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 230+ 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
courage.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efb79a866233602e6e3835bbd0b3c2d78e5ab48458fe195abed7c5ea67725b99
3
+ size 8789076
images/courage_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 4a60d68a9e71964691d6bc6146288e12bde459e8cede88c87f630111e7d55e7e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/courage_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 346465182eec9ed17692d6e53410c84d5b0f5b7e03523be50521709ba33eae3f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/courage_17_0.0.png ADDED

Git LFS Details

  • SHA256: 1d37a518d0229a4646cf0ddda579a9b21fa188dbe4669add0e40e73af5711ef4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/courage_17_1.5.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 71038eb54e01475740fad21d93c475b92de045884412f26c28544d03f1504642
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/courage_19_-1.5.png ADDED

Git LFS Details

  • SHA256: feae8f0422a5c901382aaaf2c55ed7b4829cfd82b53f6af041671dd13bed103e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/courage_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 94c7f38e35221094bfca8e27bc735ce4ea98a9156fcb3fb7003657d45bd50675
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/courage_19_0.0.png ADDED

Git LFS Details

  • SHA256: 22018038764538662f6434e8bf4f886f9c96e0174b0972ab6c4216560d498984
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/courage_19_1.5.png ADDED

Git LFS Details

  • SHA256: ca8bad8e48f8af0665fdec00dcbdb783151c0cf1ee93281b8e656027a586a1f9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/courage_19_3.0.png ADDED

Git LFS Details

  • SHA256: bab32d9ff2911355ff23ace31258bdbb38974e99e8b006971f2a43369ce6e31e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/courage_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 8b9812749d5faf3c35f9b7b7c9897929ff6c6f6c276092528d25199defc7c249
  • Pointer size: 132 Bytes
  • Size of remote file: 1.22 MB
images/courage_20_-3.0.png ADDED

Git LFS Details

  • SHA256: c9eff35fea1e9f50f749101b9047249300e1c3b89fd278b226753d60de70d051
  • Pointer size: 132 Bytes
  • Size of remote file: 1.22 MB
images/courage_20_0.0.png ADDED

Git LFS Details

  • SHA256: 15d469bcb5c72e7fe4ca0bd12a141e975e71461430be180d36f69d73e0be6631
  • Pointer size: 132 Bytes
  • Size of remote file: 1.22 MB
images/courage_20_1.5.png ADDED

Git LFS Details

  • SHA256: 9eb0a0045657ba6c249a3b8fde18541cad93f337b77660d10e52eeaa8f8833e9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.21 MB
images/courage_20_3.0.png ADDED

Git LFS Details

  • SHA256: 8eb2feb1e8fe209e2eadfce675fef92e0bf0929c1b140558e97e94716d2f7514
  • Pointer size: 132 Bytes
  • Size of remote file: 1.22 MB
images/courage_21_-1.5.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: d3e2d72aa86fd08adc24f39a8c91aea3c01874b25f4184a4bd7c6880384dd818
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/courage_21_0.0.png ADDED

Git LFS Details

  • SHA256: 7d48cf277b7e816cf27a5f4a27a941df2ad4b7b80a804428d24241706e24d3cb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/courage_21_1.5.png ADDED

Git LFS Details

  • SHA256: fe7b0c32743c634ad852835d132635b00e3250cd7d537dd9a2f770f5c6ad4805
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/courage_21_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 4853ac5e72f7dfd109f3c23aea1c7a36c7f9d77b9ca325118cdafc7838518fab
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/courage_22_-3.0.png ADDED

Git LFS Details

  • SHA256: a090880b2a42df934480367774c38039824d5cec014815c5d15d360011938581
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/courage_22_0.0.png ADDED

Git LFS Details

  • SHA256: 304a5909f7c86a42541fafa3ee10125f85b7d185ef5b194a1acba01e7dd3532d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/courage_22_1.5.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 5125ec17abd6ce072728e275b926656ef1a41b1c76a57ccf37a2d30c0cbb2ad3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB