ntc-ai commited on
Commit
9ce29a2
1 Parent(s): 7759cf3

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/WTF reaction.../WTF reaction_17_3.0.png"
6
+ widget:
7
+ - text: WTF reaction
8
+ output:
9
+ url: images/WTF reaction_17_3.0.png
10
+ - text: WTF reaction
11
+ output:
12
+ url: images/WTF reaction_19_3.0.png
13
+ - text: WTF reaction
14
+ output:
15
+ url: images/WTF reaction_20_3.0.png
16
+ - text: WTF reaction
17
+ output:
18
+ url: images/WTF reaction_21_3.0.png
19
+ - text: WTF reaction
20
+ output:
21
+ url: images/WTF reaction_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: "WTF reaction"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - WTF reaction (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/WTF reaction_17_-3.0.png" width=256 height=256 /> | <img src="images/WTF reaction_17_0.0.png" width=256 height=256 /> | <img src="images/WTF reaction_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/WTF reaction_19_-3.0.png" width=256 height=256 /> | <img src="images/WTF reaction_19_0.0.png" width=256 height=256 /> | <img src="images/WTF reaction_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/WTF reaction_20_-3.0.png" width=256 height=256 /> | <img src="images/WTF reaction_20_0.0.png" width=256 height=256 /> | <img src="images/WTF reaction_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
+ WTF reaction
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.WTF-reaction', weight_name='WTF reaction.safetensors', adapter_name="WTF reaction")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["WTF reaction"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, WTF reaction"
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
WTF reaction.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e58f6c1be6d68b26c514b50c20d1d0f1da7eb0022cba2f4c3ece56ed73484b75
3
+ size 8789076
images/WTF reaction_17_-1.5.png ADDED

Git LFS Details

  • SHA256: bc27c9d528e382704496865f7a0401fad7ad1b64ef183a25bfdea266cbb29588
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/WTF reaction_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 257932f7652f0d7b555ffb876543b316a754b49b4b62b060695f0a78eef30b97
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/WTF reaction_17_0.0.png ADDED

Git LFS Details

  • SHA256: e112e2fcbe761a67df4f014bba160dd27a4386f7886d44867098eb6c40a08368
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/WTF reaction_17_1.5.png ADDED

Git LFS Details

  • SHA256: abf5d8a30430126def2547a8d9be99222d7d63ef9f560d2f0898405da0724829
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/WTF reaction_17_3.0.png ADDED

Git LFS Details

  • SHA256: 9625668f9e1f6d74bc56a5411ad09bc2db89516b80c69348715e30aa3e2321dc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/WTF reaction_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 2e45f037b6f224b4bd1bb9269f64e1fe997a0a4f6798bc01cfaa1bed9f677916
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/WTF reaction_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 281fc1bce137a7516af6dff8355f89d86c17ed61b935ac3836d1b8c9f88e038e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/WTF reaction_19_0.0.png ADDED

Git LFS Details

  • SHA256: 43eb361c909adf1b42d6fb985967d6cddb37d75419a86c382dfae4236160dd07
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/WTF reaction_19_1.5.png ADDED

Git LFS Details

  • SHA256: d02e9b4d7e9419383b0823c4c564e44aeb25dbd2148f52e683462f75b0cfec74
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/WTF reaction_19_3.0.png ADDED

Git LFS Details

  • SHA256: d863bf932cd1578c027686cf13867754ad83bf3d2e75d275f805b29dbc0b4f9d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/WTF reaction_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 248caf921a081f9d01a3b9b47c44a8fe5d617d3eafd98094251484d6e301f90d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/WTF reaction_20_-3.0.png ADDED

Git LFS Details

  • SHA256: fa2e87a99dfb23a44996a2671ae303b67721e406f11049f813166c2cebbd1757
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/WTF reaction_20_0.0.png ADDED

Git LFS Details

  • SHA256: db176eb7f9a993cab3f48004d5148b0efd65bf506f04838a9f6f6024387bcc90
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/WTF reaction_20_1.5.png ADDED

Git LFS Details

  • SHA256: 8737b385351c5331094480869df42164191c1905ac1f91a8059c91de571ad43e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/WTF reaction_20_3.0.png ADDED

Git LFS Details

  • SHA256: fb206a464ad1e4359317635406846ab3b6defe22f12ca94b095b0c68410cb25c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/WTF reaction_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 5daa6af85fa297fe0044f020c8f8a9135e0bf7dd711c06a944d1bc1c63277204
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/WTF reaction_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 0dac924007fca3ae11bc79ee96ad1874179254f9352ac31c0401ddad7d83616e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/WTF reaction_21_0.0.png ADDED

Git LFS Details

  • SHA256: 7e814374f7d7e4b8362b8fdb822a4d05a2c59da3e7ebd42ccf0de9221f8fefb1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/WTF reaction_21_1.5.png ADDED

Git LFS Details

  • SHA256: 9a19696c8bf2e18a540e01e2966098ab7656648370e0f1b74b2d8bedd2fdfd6e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/WTF reaction_21_3.0.png ADDED

Git LFS Details

  • SHA256: 3a5627cdaf06f1314738efbe6de294e0ff534428c4784c7e983a7e8f3a1d5ee2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/WTF reaction_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 5218379bd052988ac4be8fbf78d22164fdeab62d8b1b6211e9384a77136abfec
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/WTF reaction_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 01e4b1ebe74ff73430f986b3f52c742993ca080bda770556fbf16231bf4e0cc8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/WTF reaction_22_0.0.png ADDED

Git LFS Details

  • SHA256: 77af3b08466f2427f61e92e5dae4bdd58115273aa061181d542b15d3e544f44e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/WTF reaction_22_1.5.png ADDED

Git LFS Details

  • SHA256: a7acbc052178a002ddbffd01f38eb76732263d015bda70e45fe4ec132ba2c23b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/WTF reaction_22_3.0.png ADDED

Git LFS Details

  • SHA256: d8d61264cba2e2c5c707bdaab5e43ca5bcf637ca57b8bb892ca1b75d6ff710ce
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB