ntc-ai commited on
Commit
0f3d17f
1 Parent(s): 8eae888

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

Git LFS Details

  • SHA256: f5d289b8fc0dc4bfd344bc91abe2b57b400b7c126ec4cd9ada2f729f97ee424b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.85 MB
images/apocalyptic_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 58e8fd75e7121daa627889ba0924702660e108c5bc0805e3eb53a32660688983
  • Pointer size: 132 Bytes
  • Size of remote file: 1.89 MB
images/apocalyptic_17_0.0.png ADDED

Git LFS Details

  • SHA256: 50b30ae726799bfb8ba34a9d9497e2b35048bdbaf27ab359d7d83f83fea3cff3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.79 MB
images/apocalyptic_17_1.5.png ADDED

Git LFS Details

  • SHA256: 9579ff7de267f0d8c3fd4c1c2e1ff4566efb0fa2d2ab5db52556ba466c5b2611
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/apocalyptic_17_3.0.png ADDED

Git LFS Details

  • SHA256: 0a043cd10276126ed193894a5a7cd1608cb0652989648243297e9462f3b9dc95
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/apocalyptic_19_-1.5.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 3f034c9b681c214bebfd70923cc6b93dcd40635b5aa7e09416823d2f4a62d38d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/apocalyptic_19_0.0.png ADDED

Git LFS Details

  • SHA256: b7a80c55e3ca58281879a9fa8f6d26306ae3b1c74bbc1b58df587bd2d2f0ae24
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/apocalyptic_19_1.5.png ADDED

Git LFS Details

  • SHA256: c151651a08276253b6d3429904053340867e78424201d74366ee1aa931aead42
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/apocalyptic_19_3.0.png ADDED

Git LFS Details

  • SHA256: 8a39cf5c86ba8ea8b9ebdabc33992c56e6ea2a1112b24328472094b5cb9c5d36
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/apocalyptic_20_-1.5.png ADDED

Git LFS Details

  • SHA256: fe8fcc5218277fc3b0bb90c48e6df8d3ec13454747710d3063fc861891a5193d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/apocalyptic_20_-3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 31118179f830103883f8023a1ff4669d5927104800e5cc74f446f27bb69382dd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/apocalyptic_20_1.5.png ADDED

Git LFS Details

  • SHA256: 38d6399ce18802898110a984d8510f8e74cd7be62d4b2c82f5174ff962bd1955
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/apocalyptic_20_3.0.png ADDED

Git LFS Details

  • SHA256: 144807434e67be4e064c416d748ce367fe68b82f012c9c589274e81fdf53dd5f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/apocalyptic_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 6f6fd45c057589f642a3c0f48d59f46bb3a6fd754e9713cbce118c2493c0aedf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/apocalyptic_21_-3.0.png ADDED

Git LFS Details

  • SHA256: a7e200946249d6dfb05d6173c6a35e50670dd106381d0a1bae146cb5216b2e41
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/apocalyptic_21_0.0.png ADDED

Git LFS Details

  • SHA256: fc2bf90abea1fcbbb11c8aac0ac2f6c6e0d6e26760669330ee45be33cefba1b5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/apocalyptic_21_1.5.png ADDED

Git LFS Details

  • SHA256: cfebdca2adc8b6519d720fd605a45edacabc883c32a44068b07c50564b02ad26
  • Pointer size: 132 Bytes
  • Size of remote file: 1.71 MB
images/apocalyptic_21_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 23a7c91f46949efcec7c1a20c66c4fad209382f18938b890ea5b6156caa52fc6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/apocalyptic_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 20ec40f99ecf3415738192e125bb206444db94df891f3349a9a1370a3b25cdde
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/apocalyptic_22_0.0.png ADDED

Git LFS Details

  • SHA256: 3cdf7ac5dd59395a0c13062dfe8de86557738af0d773b54b6796aed64176155c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/apocalyptic_22_1.5.png ADDED

Git LFS Details

  • SHA256: 1b0ecbd72787cef4eb1f0f7860ed3d9db5c4b31e30aaf39ff81d5204bff0d883
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/apocalyptic_22_3.0.png ADDED

Git LFS Details

  • SHA256: ce7c689b8a5d0e964ad53689a5ab1f5cc1c2a58c22ee588f4413c2a132a0ab60
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB