ntc-ai commited on
Commit
3e0bb14
1 Parent(s): c5a9392

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

Git LFS Details

  • SHA256: f06b843e70ec97a8645517765cb10a36c413caa78942f73df4a70e4e2674e606
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/evocative_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 6e482ae7d188af234c17969469cf87ff04273f2e0870721a861c13d6989c7e31
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/evocative_17_0.0.png ADDED

Git LFS Details

  • SHA256: c0d757e12fa6afffe2638fa7ba9348b8533a22164d9f63e62c506accff8041ae
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/evocative_17_1.5.png ADDED

Git LFS Details

  • SHA256: 2ed18c67c899efb2432ff78319a13d9e23e4e40a03440d75cf7fc88a758c2367
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/evocative_17_3.0.png ADDED

Git LFS Details

  • SHA256: b9e43c8cef2dd8a85d623bd5914ed9e16f1b1558d9d5f97edc4e07c8f34bdfe4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/evocative_19_-1.5.png ADDED

Git LFS Details

  • SHA256: a790b6a4a5abfd576561864643dc15a860604808550343db898deaa05ac03df6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/evocative_19_-3.0.png ADDED

Git LFS Details

  • SHA256: fe61be07970796a333d390eeaa0d59f11c2cce908f0224a331e1a01ee1a35155
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/evocative_19_0.0.png ADDED

Git LFS Details

  • SHA256: 16bd612ef8bcabedd840f02c7f72b76554c8bd6b1469570abe6ab292adda974d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/evocative_19_1.5.png ADDED

Git LFS Details

  • SHA256: 34c64cd4fa18b5fa005e9e712766f1472bd0ea75ef95e6de1e8088d6734ca142
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/evocative_19_3.0.png ADDED

Git LFS Details

  • SHA256: 96237b66a009c71d83b84f7b0552ac7e4199ebf3e8b38eaab7ae94f8d5505a8f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/evocative_20_-1.5.png ADDED

Git LFS Details

  • SHA256: be8c49283ed96350f2dfe6929a35e2fe951fcf858b6158141abfe361bb3d3fa5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/evocative_20_-3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: abc45f7a970442578e997957925466844433695962b10cbf25188ccf937f2507
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/evocative_20_1.5.png ADDED

Git LFS Details

  • SHA256: 9345a4d64a2a7f5314890c9fd35cfb40916dde721081916cca0c41b094b07379
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/evocative_20_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 687145f24ab5b1f1c51fba9e71c917c8363b429ef15db87b2fa6954e796036b9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/evocative_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 9933eeda8f4bfd0a73016260595ab56254bd53243876e5ccb650a65b2c361050
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/evocative_21_0.0.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: 0e6bddc0ec8d84e7e9ec841b351c4af4e3c2d22ae527048e6d56aa1fe1602e27
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/evocative_22_-1.5.png ADDED

Git LFS Details

  • SHA256: e25ee12d47df5d7aba2a83979add01cfb0895cc552697bba9f3af27c38d4dc48
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/evocative_22_-3.0.png ADDED

Git LFS Details

  • SHA256: a754057dd98cc797d903f6a4dabf2239aa0ede8558cad1a5c5df21427d844de9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/evocative_22_0.0.png ADDED

Git LFS Details

  • SHA256: a4a9c71493665ae75f4f5f94c7e8c82991cfe28c6005b937be7b3dc895a95481
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/evocative_22_1.5.png ADDED

Git LFS Details

  • SHA256: d3453cd9ced51657ecca1df6f58b5befa3b20d7d60b8e8a356654eed0c0d9ac0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/evocative_22_3.0.png ADDED

Git LFS Details

  • SHA256: 076f9dc4e8facb293936a141908cf660183905e0cf3fc9dc944263a7d4190e9f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB