ntc-ai commited on
Commit
38996b5
·
1 Parent(s): 1ff67e4

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/dark elf,drow...light elf/dark elf,drow_17_3.0.png"
6
+ widget:
7
+ - text: dark elf,drow
8
+ output:
9
+ url: images/dark elf,drow_17_3.0.png
10
+ - text: dark elf,drow
11
+ output:
12
+ url: images/dark elf,drow_19_3.0.png
13
+ - text: dark elf,drow
14
+ output:
15
+ url: images/dark elf,drow_20_3.0.png
16
+ - text: dark elf,drow
17
+ output:
18
+ url: images/dark elf,drow_21_3.0.png
19
+ - text: dark elf,drow
20
+ output:
21
+ url: images/dark elf,drow_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: "dark elf,drow"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - dark elf,drow (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/dark elf,drow_17_-3.0.png" width=256 height=256 /> | <img src="images/dark elf,drow_17_0.0.png" width=256 height=256 /> | <img src="images/dark elf,drow_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/dark elf,drow_19_-3.0.png" width=256 height=256 /> | <img src="images/dark elf,drow_19_0.0.png" width=256 height=256 /> | <img src="images/dark elf,drow_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/dark elf,drow_20_-3.0.png" width=256 height=256 /> | <img src="images/dark elf,drow_20_0.0.png" width=256 height=256 /> | <img src="images/dark elf,drow_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
+ dark elf,drow
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.dark-elfdrow', weight_name='dark elf,drow.safetensors', adapter_name="dark elf,drow")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["dark elf,drow"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, dark elf,drow"
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 520+ 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
dark elf,drow.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3776f5b4a99e264920064cb5ada5b9a8a03e3a93dd0206d2de6324044cbdf65e
3
+ size 8789076
images/dark elf,drow_17_-1.5.png ADDED

Git LFS Details

  • SHA256: f2225ce97cc289ca2011894403600bcfce11ccf60abddb6ef614e36acad8343d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/dark elf,drow_17_-3.0.png ADDED

Git LFS Details

  • SHA256: d5a2993f24c3129edb8c004aca164a1d40fedf8271b2f92101eb8ea549dcf7ed
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/dark elf,drow_17_0.0.png ADDED

Git LFS Details

  • SHA256: 71011e4f1d6b1c6f33eb5888baef1c4da706f0aaeb53cf045629f22fe24872c0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/dark elf,drow_17_1.5.png ADDED

Git LFS Details

  • SHA256: 57dc9622e4ed7022e48c9a24a649559ee986b6968f16d0a71b7e6a1a464bb62d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/dark elf,drow_17_3.0.png ADDED

Git LFS Details

  • SHA256: 8011e160e893e49a535b9287919ee94c351f032adc0930ca147c1f7df6b97b8c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/dark elf,drow_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 0ded67df20ad7b5b8d290df06c61ab93571379525447eebcee4317a59b4dc8d6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/dark elf,drow_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 36591ea2c40e5f17e805a0522551185805bb347beddf0efbb6b2de43771ffd27
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/dark elf,drow_19_0.0.png ADDED

Git LFS Details

  • SHA256: d07487251c06fcb57032d96f10e6f8f7576a4f17b27b2cd3d39229309d0a6fbd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/dark elf,drow_19_1.5.png ADDED

Git LFS Details

  • SHA256: 6a114f77afa484d1245e6fff606d32526bbe3e8c3b0654215907242fc533e34f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/dark elf,drow_19_3.0.png ADDED

Git LFS Details

  • SHA256: a3b07ec0e6e4aef5370cad41bf7125ce0249b6a33f8ecb8c55f02bf7dcd33c5c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/dark elf,drow_20_-1.5.png ADDED

Git LFS Details

  • SHA256: bbde6531cc5f9949e3f41c12f4e340440702957a90f44c0f448731292d339be6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/dark elf,drow_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 0193e82bffae01d7f3de2872c17c89d5705d6b6381ce37b6e7e71b6f367e73df
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/dark elf,drow_20_0.0.png ADDED

Git LFS Details

  • SHA256: c783cf112967fc898d0b6ddc3654653f94d27cdf18f0a5a45c237df0debd1a2b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/dark elf,drow_20_1.5.png ADDED

Git LFS Details

  • SHA256: 2e0169bcf0fe834fb705c94f454dce09eb2c0c164b898e4d461d8e9447b89d7f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/dark elf,drow_20_3.0.png ADDED

Git LFS Details

  • SHA256: beac638fde0bede1a14cee21be01c540d9012106436f5c7dda48c0b1e700a92a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/dark elf,drow_21_-1.5.png ADDED

Git LFS Details

  • SHA256: f94616315defe580a20ee33d73ca1b7b4cc3fc45ecb750d0bc9f230e1f630208
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/dark elf,drow_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 9c63e3c70a295503ce0493ab4c442f043054309ee949862cb30ba1bfbaf61872
  • Pointer size: 132 Bytes
  • Size of remote file: 1.23 MB
images/dark elf,drow_21_0.0.png ADDED

Git LFS Details

  • SHA256: 629a636c44ba06ead5a93fdb1ce0911093e7d183cc22d869fd32c29d44e8f71f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/dark elf,drow_21_1.5.png ADDED

Git LFS Details

  • SHA256: 1e64033951b15ba88ce60c8f71d3ec34de15e1b5bdaa33e70eca49953fdd9d6f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/dark elf,drow_21_3.0.png ADDED

Git LFS Details

  • SHA256: 96f20b40455a280786377f68c4efcdf3cb0c92c8c7dbac6d019bfe08bfdcd750
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/dark elf,drow_22_-1.5.png ADDED

Git LFS Details

  • SHA256: ed64b5108680fca34c74fcdbdd3079907d42545d368bf03dc514d8af289b75dc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/dark elf,drow_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 033ccbe229ec0fbaef182e94adf04fba0e65da4000d198f9eb052a24ffe6ef8c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/dark elf,drow_22_0.0.png ADDED

Git LFS Details

  • SHA256: 5416522f46f94d1f20ef6c6b445e822b058b7d0792e8816ea2793fe20211a07c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/dark elf,drow_22_1.5.png ADDED

Git LFS Details

  • SHA256: 7b23fd3f865f68dedfa080fa6a375f8bdc9814acefe5c980d85ba79318935718
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/dark elf,drow_22_3.0.png ADDED

Git LFS Details

  • SHA256: cfe8310edaa1988191d62d6371e72d63f55f7c64ca93b1908c4a0b269065dc77
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB