ntc-ai commited on
Commit
0a1b1e1
1 Parent(s): 8e4fe13

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/excited...mellow/excited_17_3.0.png"
6
+ widget:
7
+ - text: excited
8
+ output:
9
+ url: images/excited_17_3.0.png
10
+ - text: excited
11
+ output:
12
+ url: images/excited_19_3.0.png
13
+ - text: excited
14
+ output:
15
+ url: images/excited_20_3.0.png
16
+ - text: excited
17
+ output:
18
+ url: images/excited_21_3.0.png
19
+ - text: excited
20
+ output:
21
+ url: images/excited_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: "excited"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - excited (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/excited_17_-3.0.png" width=256 height=256 /> | <img src="images/excited_17_0.0.png" width=256 height=256 /> | <img src="images/excited_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/excited_19_-3.0.png" width=256 height=256 /> | <img src="images/excited_19_0.0.png" width=256 height=256 /> | <img src="images/excited_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/excited_20_-3.0.png" width=256 height=256 /> | <img src="images/excited_20_0.0.png" width=256 height=256 /> | <img src="images/excited_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
+ excited
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.excited', weight_name='excited.safetensors', adapter_name="excited")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["excited"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, excited"
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 210+ 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
excited.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0972494c1928f92fa6ccd7798eb5693f26422a0762fd31980307c8f1074ed2f8
3
+ size 8789076
images/excited_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 8ad169a717e79847333104c7223678de3a74e2f0f1bdeea135bdb4020e06fe12
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/excited_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 102fb815289ab50eea3e7db8c0159ca9fb2bad6be927fb833f18ca4c38d7e76c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/excited_17_0.0.png ADDED

Git LFS Details

  • SHA256: 4aa5ba380c8b511c924c38032b539123bf60a24233f3193104a733cf31e23be6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/excited_17_1.5.png ADDED

Git LFS Details

  • SHA256: 2b4e6346b9db0f65157b0ab2cc6f0b0f2c4b120e9be610a5aa8c2d7227c94a86
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/excited_17_3.0.png ADDED

Git LFS Details

  • SHA256: 09012207ba358336b159f87591f9538e3502961c7956a5d7f88e969eb65e046a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/excited_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 31b8beabe89c518b2124207ef288d904eb4c72515ef72a1b26c86d8f042f1817
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/excited_19_-3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: a931aaf6ab406554d744c8bda6871fd0cdb41d3752f1df2e33ceb6d59cb0ab00
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/excited_19_1.5.png ADDED

Git LFS Details

  • SHA256: c8a4ccd8c7abbb02e9f32bd48b67eaeea75879d74bad3b2b002a052ace67e7ad
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/excited_19_3.0.png ADDED

Git LFS Details

  • SHA256: 6fa4f3bcaffa275b205e219374ad5ad53460171dfce6402d7036280ef5dab05c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/excited_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 97b96d144e3fc750fb80832fe6a3d4133c923a6ff708df14aca84c5afec08d5e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/excited_20_-3.0.png ADDED

Git LFS Details

  • SHA256: d7bc33db041b67b9a0ebde45214e345af90fcebd933eae09df4d472ef8307cef
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/excited_20_0.0.png ADDED

Git LFS Details

  • SHA256: 3172203c846f48c66598baaed76287723ae1678335d9d204507af48b72cb253f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/excited_20_1.5.png ADDED

Git LFS Details

  • SHA256: 67fa52ca2181f9fbae965e8dbfb130c36cfa1df6ea33ce28f9a846c816975ec9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/excited_20_3.0.png ADDED

Git LFS Details

  • SHA256: 01ff42af9018722add0c45aa44e458d07be109c5fb1d7f510bf6c64f52a0c39b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/excited_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 7e1c51ef1143113b73c4ac7e4e1baab84b5ed35a95bfe195ff06d77f772fd2a8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/excited_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 894b59d0c5c5f239d441bd4df2a7568e41c6d31ddfdff1643ebfb057aad36ac7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/excited_21_0.0.png ADDED

Git LFS Details

  • SHA256: 76d2bf4c87310ae6af589f97e670e128832c82ec6e7c861ec2ac9f5f1d5a0767
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/excited_21_1.5.png ADDED

Git LFS Details

  • SHA256: 2d41c33eedc45d62b3719e0295f73a8155109b652024348e2ce3d524f8873dd3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/excited_21_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 9e65c2c628669a218ed5ef877294ddf0e8a79a57ba922a67412c4e8ca2b2d889
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/excited_22_-3.0.png ADDED

Git LFS Details

  • SHA256: c3fdd84c98179aa737eecedc993c2cf84177a379208e24cd5a640a6801f511df
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/excited_22_0.0.png ADDED

Git LFS Details

  • SHA256: a7d20937367eb73a9452c7006deab1043babbf82245b531130eea243cd97bb8d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/excited_22_1.5.png ADDED

Git LFS Details

  • SHA256: 8357c92eaa33696391946bdda2eb861761b8e559f2bca489376b68b9cd5890b6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/excited_22_3.0.png ADDED

Git LFS Details

  • SHA256: 09d8f1ec68d645102a3385b3bfd1f06a14081a32d7b73293550d3b6e3900e89d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB