ntc-ai commited on
Commit
d41f58f
1 Parent(s): 6487311

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

Git LFS Details

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

Git LFS Details

  • SHA256: 6cc78a06e18ddff1613593a0b2112304873efac17a81861a638804ce4fa2f14f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/glowing white eyes_17_0.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 776546368b13bab4d26fbe2671a442967f32d94f4e9d7659f1b075c64878cee4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/glowing white eyes_17_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: b452ace6fca93d809587cb2fc1128acdf1adc032705e5a76c7fddfa4d4a7d30d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/glowing white eyes_19_-3.0.png ADDED

Git LFS Details

  • SHA256: c7160b3d700ff27e3f810b76aca957c0ab02cb93e374b3849adb4d7f974e1feb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/glowing white eyes_19_0.0.png ADDED

Git LFS Details

  • SHA256: 2fea72044f4b2d1b2fb2ea971761f852cf73f3baec43acab833e774fc5cca399
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/glowing white eyes_19_1.5.png ADDED

Git LFS Details

  • SHA256: 3502efd3d989e046e5810b43aa4e5cdcdd1850249ab9ec151bae408528f48dd1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/glowing white eyes_19_3.0.png ADDED

Git LFS Details

  • SHA256: 74bffc8a029dd8d415cf7d6ea3b2a6b9a6b9bf06e0ea3d4f20f97364fea93d1d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/glowing white eyes_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 1f8082003d8b42a3e055538db06645122df71ddbe643152490274a46cfbcb258
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/glowing white eyes_20_-3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 84b2e1e94c71c297c964848d59e469ddfd6ef9daf4c17da16a3a0a98f943bded
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/glowing white eyes_20_1.5.png ADDED

Git LFS Details

  • SHA256: 9d42cdb6bde830b18699c1f26ff97ab22d760d196cb0333d863534e9dc30374f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/glowing white eyes_20_3.0.png ADDED

Git LFS Details

  • SHA256: f1b1ac9453fd8097eab8e3489588643e38dd47b11439f741c4cb80bd5e6babd8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/glowing white eyes_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 8dc23737d090bbd3de6eeaab0269166671b003a51f4b1ac27c5adc892f1ad018
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/glowing white eyes_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 5199ab5d640b4b2a59fc2d1690abd7c933b2c4bc95d9c0b40570719b2d8352f9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/glowing white eyes_21_0.0.png ADDED

Git LFS Details

  • SHA256: 0cc430cfcd562970fcccfc385deb9304b6d969fcd2719c73a16bf0a895a05f33
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/glowing white eyes_21_1.5.png ADDED

Git LFS Details

  • SHA256: 052a511e630f37cd73cca3d1b64fd63ae1de4b7010f194735dd49e00c88ae852
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/glowing white eyes_21_3.0.png ADDED

Git LFS Details

  • SHA256: dad3296abbfa78a1bd330f0b5bbc2ff3dbe7efe119ef1979e8e3270839867bdd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/glowing white eyes_22_-1.5.png ADDED

Git LFS Details

  • SHA256: ecf4bf5daeab4f46f27c7a0d41787084a1a2d0fbb535c43f549ce3aa87f65063
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/glowing white eyes_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 2fe0d00d9cd62863038196ca6e358bee6bdeb02879f92668ba5b900abf0ced7d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/glowing white eyes_22_0.0.png ADDED

Git LFS Details

  • SHA256: 50a610d22a9aa895aef9af8a6cc56ee7b62da64c54f264d4fceb89fe71e6ba3d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/glowing white eyes_22_1.5.png ADDED

Git LFS Details

  • SHA256: 7fcebc848551403569bcd6755fe0707bf990f0bf517d3e56a78a9b07d78ccefe
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/glowing white eyes_22_3.0.png ADDED

Git LFS Details

  • SHA256: 1df1e65fb1495112b3b77b31b34bb2edcd0fbae0a5eef9d50b842f6dfd447e71
  • Pointer size: 132 Bytes
  • Size of remote file: 1.26 MB