ntc-ai commited on
Commit
72a0435
1 Parent(s): 38b1015

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/symmetrical.../symmetrical_17_3.0.png"
6
+ widget:
7
+ - text: symmetrical
8
+ output:
9
+ url: images/symmetrical_17_3.0.png
10
+ - text: symmetrical
11
+ output:
12
+ url: images/symmetrical_19_3.0.png
13
+ - text: symmetrical
14
+ output:
15
+ url: images/symmetrical_20_3.0.png
16
+ - text: symmetrical
17
+ output:
18
+ url: images/symmetrical_21_3.0.png
19
+ - text: symmetrical
20
+ output:
21
+ url: images/symmetrical_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: "symmetrical"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - symmetrical (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/symmetrical_17_-3.0.png" width=256 height=256 /> | <img src="images/symmetrical_17_0.0.png" width=256 height=256 /> | <img src="images/symmetrical_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/symmetrical_19_-3.0.png" width=256 height=256 /> | <img src="images/symmetrical_19_0.0.png" width=256 height=256 /> | <img src="images/symmetrical_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/symmetrical_20_-3.0.png" width=256 height=256 /> | <img src="images/symmetrical_20_0.0.png" width=256 height=256 /> | <img src="images/symmetrical_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
+ symmetrical
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.symmetrical', weight_name='symmetrical.safetensors', adapter_name="symmetrical")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["symmetrical"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, symmetrical"
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 880+ 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
images/symmetrical_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 84e10c433cced6e0b8a6cd0ec9403288ff26f8c2e6e736c1f70c0f6bbc80f9a1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/symmetrical_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 527f10d1d0ce2894d31573ffc8b853a020da30441d0ddce8110f037c569c0155
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/symmetrical_17_0.0.png ADDED

Git LFS Details

  • SHA256: 58e7b67a9cf4da9f37f95613d0e8d4b77dbf386a7ee6068d3a93a178ef46bbe1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/symmetrical_17_1.5.png ADDED

Git LFS Details

  • SHA256: 5d47cd8c79ec1752388e1dfa9cd03289ec20db051f74494ef159ac8a0913c95f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/symmetrical_17_3.0.png ADDED

Git LFS Details

  • SHA256: 060c536c60bc10b43380413ee186c0e16f7b4e5bdd819ab34ba5946a6d7cfaa3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/symmetrical_19_-1.5.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: c385483ba1d79e59caafa014ab06f4ee5681fb99156ea8c5620b360eb7b3593f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/symmetrical_19_0.0.png ADDED

Git LFS Details

  • SHA256: f3bca4d88c11f1981e8cbae86c3fb6a00b913481f33099e9472adae3d589ae86
  • Pointer size: 132 Bytes
  • Size of remote file: 1.75 MB
images/symmetrical_19_1.5.png ADDED

Git LFS Details

  • SHA256: d2039c5adb97741199063f612b7c0d075063565d534ee778c9bee52e6662bf5f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.83 MB
images/symmetrical_19_3.0.png ADDED

Git LFS Details

  • SHA256: a227167846dadb94fb603c72d8665da025bdfa9f1fc845e9807345a4212a7a3e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.94 MB
images/symmetrical_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 998108bb522c6b4c0efdad011779c7582d40fcccc7e27d94d83b6b8fa2742cc9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/symmetrical_20_-3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 9b62b7b3ca5793115d2d7dc93fd2852c2eaca5418b1706241541352b84423749
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/symmetrical_20_1.5.png ADDED

Git LFS Details

  • SHA256: 2145cb91891abfdfea7b1699bbe4197ff08ed9db894bc11d2628f383d3973394
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/symmetrical_20_3.0.png ADDED

Git LFS Details

  • SHA256: c2a3533a5eea763a227564162f84b73e6184091314e040d14345bf33cada6de8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/symmetrical_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 9fb1cebfc21207bf4b63671edf1a7c55013adde76ef1d584093ef374244e58e9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/symmetrical_21_-3.0.png ADDED

Git LFS Details

  • SHA256: a6b4ba076bf89f7e6aee29879f481134ade794a2d18ffda1057e5f061b46f7b5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/symmetrical_21_0.0.png ADDED

Git LFS Details

  • SHA256: faa988db1a5a88a86e6ab3b35d2b14bea2ccfd0eecc00374f4a206d42d135635
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/symmetrical_21_1.5.png ADDED

Git LFS Details

  • SHA256: 048b82839948c24975a6df17a3587c6a55d14d26c7144b0039356326ce739846
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/symmetrical_21_3.0.png ADDED

Git LFS Details

  • SHA256: c0115d3af4e914b6640613f160993fde0c6e64b32c64e7e3128967db5d85d551
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/symmetrical_22_-1.5.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: f5b3456b04bc5bfe1bb400a7b4193d96f1a5ccfc522847658d7651358b4af32a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/symmetrical_22_0.0.png ADDED

Git LFS Details

  • SHA256: b29c4f6a9aca00979431ddac28795b636d61b716a5b623a2b97022157fc9a3e0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/symmetrical_22_1.5.png ADDED

Git LFS Details

  • SHA256: 78eb67175406a60a452bf77a82cce3c85d60e607d7f0fee982603075388070fa
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/symmetrical_22_3.0.png ADDED

Git LFS Details

  • SHA256: 55d22481c8f2c7231b27abf5b8fec0e8f9228dcf0ef03e6a65350fa6e68dd49f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.71 MB
symmetrical.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8a2df90ffdf426f30e6a3785785768ad7f0e30c7f27569cde898629ca7d4fae
3
+ size 8789076