ntc-ai commited on
Commit
dc8b697
·
1 Parent(s): 3a94c11

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/cross-eyed...prolonged gaze/cross-eyed_17_3.0.png"
6
+ widget:
7
+ - text: cross-eyed
8
+ output:
9
+ url: images/cross-eyed_17_3.0.png
10
+ - text: cross-eyed
11
+ output:
12
+ url: images/cross-eyed_19_3.0.png
13
+ - text: cross-eyed
14
+ output:
15
+ url: images/cross-eyed_20_3.0.png
16
+ - text: cross-eyed
17
+ output:
18
+ url: images/cross-eyed_21_3.0.png
19
+ - text: cross-eyed
20
+ output:
21
+ url: images/cross-eyed_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: "cross-eyed"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - cross-eyed (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/cross-eyed_17_-3.0.png" width=256 height=256 /> | <img src="images/cross-eyed_17_0.0.png" width=256 height=256 /> | <img src="images/cross-eyed_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/cross-eyed_19_-3.0.png" width=256 height=256 /> | <img src="images/cross-eyed_19_0.0.png" width=256 height=256 /> | <img src="images/cross-eyed_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/cross-eyed_20_-3.0.png" width=256 height=256 /> | <img src="images/cross-eyed_20_0.0.png" width=256 height=256 /> | <img src="images/cross-eyed_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
+ cross-eyed
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.cross-eyed', weight_name='cross-eyed.safetensors', adapter_name="cross-eyed")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["cross-eyed"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, cross-eyed"
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 440+ 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
cross-eyed.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7efa50b49ab0264b6c141cba72d3daede1b40462189b3dc2febd76cab13d23b
3
+ size 8789076
images/cross-eyed_17_-1.5.png ADDED

Git LFS Details

  • SHA256: bf49776ab7a0863d4e42ad90f722a95fd12b6bbc7bd819d7d1013d0bf3b08514
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/cross-eyed_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 883f17129d3a56a71ab8d2d73e69a83656b12929177a08dca35c412f2d262b10
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/cross-eyed_17_0.0.png ADDED

Git LFS Details

  • SHA256: 260a50f375a323e69ddc7fbabc03aff7a8479712cf7485c9c893547ec0936002
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/cross-eyed_17_1.5.png ADDED

Git LFS Details

  • SHA256: 4f990cd2520986f1b0340a2c586c7c8c008d780a010e0bc2a430bcf5740436f6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/cross-eyed_17_3.0.png ADDED

Git LFS Details

  • SHA256: d80952e1baa4e01b2b169c30ad662dc01ff74f2decbaa014c7de0ba531bc8351
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/cross-eyed_19_-1.5.png ADDED

Git LFS Details

  • SHA256: ddc2e75f005467eca5b45ca49d30031a9c4112f05f7b8f35922acdb84bebabce
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/cross-eyed_19_-3.0.png ADDED

Git LFS Details

  • SHA256: e08f4248063fb7033b8bf99fcbd59d2aa233a6d555e174a4e787f8f8296c50f1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/cross-eyed_19_0.0.png ADDED

Git LFS Details

  • SHA256: fca362b837f86bdd89f31f19d993a8f9ab575dc77e944ca9a4f4a9d244086023
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/cross-eyed_19_1.5.png ADDED

Git LFS Details

  • SHA256: 4715f8efebf39f1be3ead65b87b0a6e004aaec00516a7e0e8912c7945a385dd1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/cross-eyed_19_3.0.png ADDED

Git LFS Details

  • SHA256: 807afb626551844aac3fd56bd8b2f4d07757f3e8788dda674e8b30c9ab1a22ad
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/cross-eyed_20_-1.5.png ADDED

Git LFS Details

  • SHA256: bdd8a627c28e468af86d72b7ec1afff050b0ecc8c6b742336798d987a46b4b68
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/cross-eyed_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 66dbc9f52bbf27324d9934455bdae6de7c7a483b1788958c126b2c82aff4fd68
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/cross-eyed_20_0.0.png ADDED

Git LFS Details

  • SHA256: eb1b8f0aa4fe81bab21f4ce6e2520c4595bd0d944e874acb560eeddede651c12
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/cross-eyed_20_1.5.png ADDED

Git LFS Details

  • SHA256: 8a511a9c018d64fa6f6ab7fa777df61ba140527759fa91744dd90a5154799f1a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/cross-eyed_20_3.0.png ADDED

Git LFS Details

  • SHA256: d87cfd692e48c3216bfc82bc5db8add24631d822fcbc50f99571b24d389e9b6f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/cross-eyed_21_-1.5.png ADDED

Git LFS Details

  • SHA256: f51c8519a484bf03b0007eed21381dd19f56f2b1cd3af16bd3004d6b16f4ab81
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/cross-eyed_21_-3.0.png ADDED

Git LFS Details

  • SHA256: a084d0addffe29ca3f5e44ce0be6e7f46672ca45c9340d44e9d08efafe18fa75
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/cross-eyed_21_0.0.png ADDED

Git LFS Details

  • SHA256: 25796f8b5a240b2c8376f0ea4ff7abb851af7f88ddea94a4bac666fa7b4afb3b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/cross-eyed_21_1.5.png ADDED

Git LFS Details

  • SHA256: cefe73f9457b5f088de230ef71717a77f6e974dcf621a21c97994c138cfedd11
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/cross-eyed_21_3.0.png ADDED

Git LFS Details

  • SHA256: e09ce8f2a0f8046d4964beef929a979e17a78d379ab607c2edf01f6582ec246a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/cross-eyed_22_-1.5.png ADDED

Git LFS Details

  • SHA256: d85e984779a4262f580bf65de478a44cd534fa7511d140afa937b453ceeb5b69
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/cross-eyed_22_-3.0.png ADDED

Git LFS Details

  • SHA256: b79dcea1ae8d0cdd8a0752a295ae359212b02fa159d2d138255d3f9840e288ef
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/cross-eyed_22_0.0.png ADDED

Git LFS Details

  • SHA256: 99eb01cd373bd79132f94e2ae3ea2db68a9bc35a734c0f84baffc6221dc25b08
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/cross-eyed_22_1.5.png ADDED

Git LFS Details

  • SHA256: 53163150c647c25bb1fa309d6debecaf6d3c84049a1510e1a8e85959b1bcfacf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/cross-eyed_22_3.0.png ADDED

Git LFS Details

  • SHA256: 464c6508e4e5fbb238c9b5a5611e12c05c1a170274c41dfcd4043f51a053f1ee
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB