ntc-ai commited on
Commit
5f04e2c
1 Parent(s): 8559793

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/glowing eyes.../glowing eyes_17_3.0.png"
6
+ widget:
7
+ - text: glowing eyes
8
+ output:
9
+ url: images/glowing eyes_17_3.0.png
10
+ - text: glowing eyes
11
+ output:
12
+ url: images/glowing eyes_19_3.0.png
13
+ - text: glowing eyes
14
+ output:
15
+ url: images/glowing eyes_20_3.0.png
16
+ - text: glowing eyes
17
+ output:
18
+ url: images/glowing eyes_21_3.0.png
19
+ - text: glowing eyes
20
+ output:
21
+ url: images/glowing eyes_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: "glowing eyes"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - glowing eyes (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/glowing eyes_17_-3.0.png" width=256 height=256 /> | <img src="images/glowing eyes_17_0.0.png" width=256 height=256 /> | <img src="images/glowing eyes_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/glowing eyes_19_-3.0.png" width=256 height=256 /> | <img src="images/glowing eyes_19_0.0.png" width=256 height=256 /> | <img src="images/glowing eyes_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/glowing eyes_20_-3.0.png" width=256 height=256 /> | <img src="images/glowing eyes_20_0.0.png" width=256 height=256 /> | <img src="images/glowing eyes_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
+ glowing eyes
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.glowing-eyes', weight_name='glowing eyes.safetensors', adapter_name="glowing eyes")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["glowing eyes"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, glowing eyes"
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 630+ 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
glowing eyes.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac01461ffc5d6c94a3c99942cd9b2228dcddf9e9d0039bdf6508e3539f57ffcb
3
+ size 8789076
images/glowing eyes_17_-1.5.png ADDED

Git LFS Details

  • SHA256: abbe8650c8f516b524ec88f4922b4311bd1d694ed84ee2a387f2234bdca3849e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/glowing eyes_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 1d67aef0aea189487f8c249c76db48e6aad04899b2311fced0d3de8c9c9277f8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/glowing eyes_17_0.0.png ADDED

Git LFS Details

  • SHA256: e98599ece1f0c5a87eec2b56dc1ae6fa0d546868a5066db75e9abc5d6f5f9402
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/glowing eyes_17_1.5.png ADDED

Git LFS Details

  • SHA256: a9ddece830fe5d83ffcdf77620cfc9a3fa02be87fc9a070301b0702e018821c6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/glowing eyes_17_3.0.png ADDED

Git LFS Details

  • SHA256: cc7b4b63492d3904cb663888e59a980bd3d298a5c1f8a43e576959ac226b7717
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/glowing eyes_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 6818969079c690487aa79930aa063cb2f6d1d71e9c692d980d8450197c25188f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/glowing eyes_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 30f1713f308a1ae0a61df6af4a1fdd2449423e1aa6b2a5e285caf3d2fa2a06e3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/glowing eyes_19_0.0.png ADDED

Git LFS Details

  • SHA256: c9a824f060bcc06331664fcefbb52e8207723e12f66f81f130f430313044d593
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/glowing eyes_19_1.5.png ADDED

Git LFS Details

  • SHA256: 702bb55e270ac097c80123f5502e936d1c1bc59950f8648a83eac639266720ee
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/glowing eyes_19_3.0.png ADDED

Git LFS Details

  • SHA256: 6b6723ddad9d4f2750553595650a887cb6c27680b6366221e4e98fee17545dd0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/glowing eyes_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 45ed1e60a03b89e61103f3bb4d83df3fc38b79fc26e06206ebbb66830fca97b1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/glowing eyes_20_-3.0.png ADDED

Git LFS Details

  • SHA256: f67ba5189bbf9598625697c294a6fff5907dcb9767f821fb981315ca14142da4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/glowing eyes_20_0.0.png ADDED

Git LFS Details

  • SHA256: 0fe6105b87c16ed23b895daf5b56bc54d1bc0970b2e8b1819ea4ad85a7c45a11
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/glowing eyes_20_1.5.png ADDED

Git LFS Details

  • SHA256: 6ea655d1ce645ca4ec1e4acef18a2d3a899d3e0ad8e5348abb7a079e7767469f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/glowing eyes_20_3.0.png ADDED

Git LFS Details

  • SHA256: 972b138116c2137aae0985c751ac486fb604a6364289e4992c8ee95c64be2a72
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/glowing eyes_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 281ae0de75c59906587372e9adff61d790b19e9be68e749ee972ff02498a4d00
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/glowing eyes_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 0bf43e6ce11bbadf06e9559739f6f7c71755b0670051230028925fb74ee5a506
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/glowing eyes_21_0.0.png ADDED

Git LFS Details

  • SHA256: 055147228baeabc8207c687c69880e6a828fb70cc9406faf8415e743c0462c1e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/glowing eyes_21_1.5.png ADDED

Git LFS Details

  • SHA256: 848a6f306623ec13c525a98e8e0d61f9f33d5106f05a438588ec05bfd6735ea5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/glowing eyes_21_3.0.png ADDED

Git LFS Details

  • SHA256: 22f2f2b1729b29f0c113d4a6284607ec16940342410efbc9d40f4217f7c1a6a7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/glowing eyes_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 59d4cced8efe798593b5d5cbfb64e6975efb093f972c90c104a61a8c89054a31
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/glowing eyes_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 9683a09d565528b2e8e9b584b85980eea58a173a193ebbc413642beb6aad97e2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.7 MB
images/glowing eyes_22_0.0.png ADDED

Git LFS Details

  • SHA256: a4e2087e9f2ef60d0ee11eefebdeb00e527458298129a72c0ecee07aab987a49
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/glowing eyes_22_1.5.png ADDED

Git LFS Details

  • SHA256: defd15d4d5e7e957b1b253f1ed4903a18eb79cff5fd0b3710b30aaa0bfac4388
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/glowing eyes_22_3.0.png ADDED

Git LFS Details

  • SHA256: 622e2f705f41859a9802ba324924993339ceaedf514c1205a99a0907409dd6b5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB