ntc-ai commited on
Commit
efbe9f4
1 Parent(s): a273053

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/emotional.../emotional_17_3.0.png"
6
+ widget:
7
+ - text: emotional
8
+ output:
9
+ url: images/emotional_17_3.0.png
10
+ - text: emotional
11
+ output:
12
+ url: images/emotional_19_3.0.png
13
+ - text: emotional
14
+ output:
15
+ url: images/emotional_20_3.0.png
16
+ - text: emotional
17
+ output:
18
+ url: images/emotional_21_3.0.png
19
+ - text: emotional
20
+ output:
21
+ url: images/emotional_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: "emotional"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - emotional (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/emotional_17_-3.0.png" width=256 height=256 /> | <img src="images/emotional_17_0.0.png" width=256 height=256 /> | <img src="images/emotional_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/emotional_19_-3.0.png" width=256 height=256 /> | <img src="images/emotional_19_0.0.png" width=256 height=256 /> | <img src="images/emotional_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/emotional_20_-3.0.png" width=256 height=256 /> | <img src="images/emotional_20_0.0.png" width=256 height=256 /> | <img src="images/emotional_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
+ emotional
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.emotional', weight_name='emotional.safetensors', adapter_name="emotional")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["emotional"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, emotional"
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 680+ 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
emotional.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a55e4d0d3fcedb1d968a97bbb46c09ae79aedddd7139d73c98795a79da3896c7
3
+ size 8789076
images/emotional_17_-1.5.png ADDED

Git LFS Details

  • SHA256: a1fcaf2ea05b779958a3170cfa26175795f72a9f531bdeaa4266f8b4b98035af
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/emotional_17_-3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: ffec83d9123a76939f45b17eb95de22f9af9c131f6ddbd8cbda7bde5df770745
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/emotional_17_1.5.png ADDED

Git LFS Details

  • SHA256: e66956265642bb4e6de78063660719d5117616504832da95cf4eee90dc0d8dee
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/emotional_17_3.0.png ADDED

Git LFS Details

  • SHA256: ca3dc7ae253910edb57f2a8d18f537fe028a69527523a4c94e7f77a78a17303b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/emotional_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 85a7722f6bcb8712c4552f223c0532441e65f6743573ec2fe2d2dd9db13d34d7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/emotional_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 9dcb4ee0b0e3fb6e49c49e5a718ce040afb92220cc22b85424bccb0f2931385a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/emotional_19_0.0.png ADDED

Git LFS Details

  • SHA256: 5734f4b96e7c21574ace30d9b150ffd26a345a88f6a17831100276719d6b6d12
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/emotional_19_1.5.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 4b2b3572bb8e9a79d3de1eba8ed141e5cef3ab7ef1e91d85548c0baa5ac12927
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/emotional_20_-1.5.png ADDED

Git LFS Details

  • SHA256: a9639a95632dc5ad79cfde446a2b069a13631215563258fd483feae02fb26e17
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/emotional_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 5aff8e9beafa5f4abc0d566d635d3da8b69c09ea1fafa8cf6198f4bc6c47242f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.24 MB
images/emotional_20_0.0.png ADDED

Git LFS Details

  • SHA256: 41446eb58ac120c4ac4cc961bc4efa1c81b539468a4d886c5fe53a14e9713f93
  • Pointer size: 132 Bytes
  • Size of remote file: 1.19 MB
images/emotional_20_1.5.png ADDED

Git LFS Details

  • SHA256: 0b88d448e5999bdfac5116887d928fd3058d542ce548bc1e99b68fda96881dae
  • Pointer size: 132 Bytes
  • Size of remote file: 1.14 MB
images/emotional_20_3.0.png ADDED

Git LFS Details

  • SHA256: f2e7d9134cd35c6bfadcc5742c7794a3eaca738889c3c09daab3e8c1220d16b6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.15 MB
images/emotional_21_-1.5.png ADDED

Git LFS Details

  • SHA256: e741f12503184d50b8474407dd9c8450fee900e4285c6e98b2e6924501e81606
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/emotional_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 3c3a9ea023359f95503b4c925581f5a3d8c610c61a11f825eb265e1d144046b7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/emotional_21_0.0.png ADDED

Git LFS Details

  • SHA256: 73c87d362f99dbe4506ebfb2ab7555b8821950de77f9ab4ca1f5542da349dd9c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/emotional_21_1.5.png ADDED

Git LFS Details

  • SHA256: 94622ba723495d305ad0fc5aeccfefa741c30ab07c6da7383a51e9415e98b330
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/emotional_21_3.0.png ADDED

Git LFS Details

  • SHA256: d8ebe735e07e838d77a0d102c2ac9a18a0036dbdfcd04b5e11716f5998cdb65b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.26 MB
images/emotional_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 20cfcc9f1fee5d4f2b10028d74c48c4df1119704924d27aa94f5313736159ff7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/emotional_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 0fdde17f08228f1c69ce19b809cafb6e559f3d7ee78fe9d1080d995e64247b88
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/emotional_22_0.0.png ADDED

Git LFS Details

  • SHA256: 1841e3a46c69f9557f1e90d867d7111d4aae867bbaee4bbe03c0572ef5fec992
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
images/emotional_22_1.5.png ADDED

Git LFS Details

  • SHA256: 17df8b78302d883a8189e3622f951e582ffb8386e2a2eda4b8a758d72f1de8ab
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/emotional_22_3.0.png ADDED

Git LFS Details

  • SHA256: cca205281ed5e8684d6ff494c94c8bfe1dab31051e25ad3dd6f7d7cbb8cdd850
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB