ntc-ai commited on
Commit
b6a958e
1 Parent(s): 461edb7

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

Git LFS Details

  • SHA256: 9b5a7ce09d953816d41823aa2fb807c0a3f8fb28205976d907a80bed3626f3cf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/eyes_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 3b748810db613469b7821a4ecd1b6cc313057bb5dae39512f424807d781ba6cf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/eyes_17_0.0.png ADDED

Git LFS Details

  • SHA256: c2a313b00788547f2b47f26e538ae2e1a95316da702ac74b2451f17e6c99411b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/eyes_17_1.5.png ADDED

Git LFS Details

  • SHA256: b12198b61e37f65b9996c761e9136555a52cf0c7f9462bc44f3d6785436bf331
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/eyes_17_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 4f67a46648741b4848d7c7a91315864ab8e9258d17e846a04da925979ba0ef8d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/eyes_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 99958a24469426cc469a855a7f24e74548ed886421980a0c62fbfc62ecc91a36
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/eyes_19_0.0.png ADDED

Git LFS Details

  • SHA256: 8074614b05c1fc1424f8e5aace89379403548d663d8952f117d24e9f1ad26834
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/eyes_19_1.5.png ADDED

Git LFS Details

  • SHA256: b80cc10bcee484c4add31190faef7b7aa9503011d18d71b34132f24adadca919
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/eyes_19_3.0.png ADDED

Git LFS Details

  • SHA256: 7f992636058309f509688cb8b9e237f1dca3f18a578d22f6d06b2d6d583a5039
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/eyes_20_-1.5.png ADDED

Git LFS Details

  • SHA256: d38085d9436175f4d94f8fefebdd34e2bf7ad6293d2c5d71ed063b8cfc451bb5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/eyes_20_-3.0.png ADDED

Git LFS Details

  • SHA256: ecc15ea601c4eb04a96a98b3fb8748de8c441a62e7665fbf4be862b17a0cbfc0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/eyes_20_0.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 1583759be6c5a5f827d42d7fd48ad99dbaafc18a17c891a421eebcb8bd063e56
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/eyes_20_3.0.png ADDED

Git LFS Details

  • SHA256: f064489007cebdf633c7321920cc48a3351c79527258478cd6c3b44e1de9f44f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/eyes_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 0b03dc5fe19edcf0b453e37c091af222f41f647d2899a7d9285d442bf184c9db
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/eyes_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 90be9ca9af4a8c123d85a3fb84171af155280db1094de8ddf1ebbea2d6d694c0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/eyes_21_0.0.png ADDED

Git LFS Details

  • SHA256: 820ba4695d14874e3823db81c317ef8ff436dc9acd91615d674f37f2ae0b5f0d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/eyes_21_1.5.png ADDED

Git LFS Details

  • SHA256: 84995d3c4d0139eef292f7152eac1fbefb808022e531a7b05309eaaedf7975e8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/eyes_21_3.0.png ADDED

Git LFS Details

  • SHA256: 7ac1266547adbe7ccec564cab76583b52a96a9421bf83886ea73cb723f0d55c6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/eyes_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 47e67a52ecceff5b0b475a7be77c8dfb1c34ec6bdd4e1c62f272d01777411dd4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/eyes_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 85b1ae958b6495af4b007f4ae622d80c955d2bb4b59a6c86f1a480c0b5ee113f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/eyes_22_0.0.png ADDED

Git LFS Details

  • SHA256: 9ea006a6072d90aded412df4fa0bf9b9ca38d544c2590fe26a2b86e8fc009ecf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/eyes_22_1.5.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: b90609c128eafbc9e5bb561fb6dd6396b46bde61a477184e8ff7511c8e9e9f89
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB