ntc-ai commited on
Commit
6d5a9fa
·
1 Parent(s): 269695e

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/expensive.../expensive_17_3.0.png"
6
+ widget:
7
+ - text: expensive
8
+ output:
9
+ url: images/expensive_17_3.0.png
10
+ - text: expensive
11
+ output:
12
+ url: images/expensive_19_3.0.png
13
+ - text: expensive
14
+ output:
15
+ url: images/expensive_20_3.0.png
16
+ - text: expensive
17
+ output:
18
+ url: images/expensive_21_3.0.png
19
+ - text: expensive
20
+ output:
21
+ url: images/expensive_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: "expensive"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - expensive (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/expensive_17_-3.0.png" width=256 height=256 /> | <img src="images/expensive_17_0.0.png" width=256 height=256 /> | <img src="images/expensive_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/expensive_19_-3.0.png" width=256 height=256 /> | <img src="images/expensive_19_0.0.png" width=256 height=256 /> | <img src="images/expensive_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/expensive_20_-3.0.png" width=256 height=256 /> | <img src="images/expensive_20_0.0.png" width=256 height=256 /> | <img src="images/expensive_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
+ expensive
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.expensive', weight_name='expensive.safetensors', adapter_name="expensive")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["expensive"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, expensive"
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 940+ 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
expensive.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40c61d0cdd2cc158eec7b81b760e0fe1626c77980700633e32f371605f379d6a
3
+ size 8789076
images/expensive_17_-1.5.png ADDED

Git LFS Details

  • SHA256: cc872547b72e570c81af8729b016ea690840eab8caeef3a81d8a4de60c8c23cf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/expensive_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 2ddb873d11087942d4199f9b295c87e5179cd21d196cd07fdbce076363f70e6e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/expensive_17_0.0.png ADDED

Git LFS Details

  • SHA256: c6cf48966b1a81a942f212e355333f1ec75ca07373fedc2625f0de6aa1e981e9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/expensive_17_1.5.png ADDED

Git LFS Details

  • SHA256: e77102b220f00a30ce7807d7e67a5be9a70185f560ef0a3e79933893c27914e1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/expensive_17_3.0.png ADDED

Git LFS Details

  • SHA256: 1d397178e9b05035b8fc89dc5dd6789d8b1a23b9edaf83da3ee2b37e0e74f517
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/expensive_19_-1.5.png ADDED

Git LFS Details

  • SHA256: fc6feb244096c76e0529638aac24714d1feb473568f41a6e40c85aaf67add225
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/expensive_19_-3.0.png ADDED

Git LFS Details

  • SHA256: f97873b9ab20f15b66ed29bf352b2f1eeca2872eae6bc234ab8015fc38c62d1f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/expensive_19_0.0.png ADDED

Git LFS Details

  • SHA256: e11fbd3f1f98a579c935559f7de8fab419cae37fcaee971da0d88c303ae79a10
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/expensive_19_1.5.png ADDED

Git LFS Details

  • SHA256: 52e2371199722b77d3fd9b36d885489e9407096aadb8b300346e4521163a8d30
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/expensive_19_3.0.png ADDED

Git LFS Details

  • SHA256: a23ca3f4a70369f95d3e83c1a574229f2579133f509c8d745cc274823709ad58
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/expensive_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 0fbe49a565d8e66d2cb2d55775c7fd62c9e923eebb734be0a29469a55464b98b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/expensive_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 2915de7b39ba214cabf456800b57debc7b42f7f945b3ef7e6cf8db2cc9e4452a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/expensive_20_0.0.png ADDED

Git LFS Details

  • SHA256: 69e79f554b8fb8b75a2be373c9a9988ec5315496a0cc232cd4fa443630847a2c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/expensive_20_1.5.png ADDED

Git LFS Details

  • SHA256: be43ca4a0a9cd45fae84cd31c1ec0f08595739397c4fa177b0d5872fd3b34fee
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/expensive_20_3.0.png ADDED

Git LFS Details

  • SHA256: a8603512d34c3e5e2b6e2a89533351d8e61f0500809ed6b58c66b258a3dd5050
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/expensive_21_-1.5.png ADDED

Git LFS Details

  • SHA256: eccbb4dbc1840e1cc938d4f781a3f5d9c387b7e4740956fcb965a1275fd7bcf1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/expensive_21_-3.0.png ADDED

Git LFS Details

  • SHA256: cd75c456fb117fc40c1c82cea3bf560cc94b7761f42ad4d2b787ffe5988a90e7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/expensive_21_0.0.png ADDED

Git LFS Details

  • SHA256: 7d7e02bc13ed6b554aed8efc23e26355de259f2d637168577d1343cc769444d8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/expensive_21_1.5.png ADDED

Git LFS Details

  • SHA256: 48d1c77fb5f148b0451d29329120312b9b9c794af0b72c343a8137cd4af5a429
  • Pointer size: 132 Bytes
  • Size of remote file: 1.22 MB
images/expensive_21_3.0.png ADDED

Git LFS Details

  • SHA256: 7e02db4a26d2615edf09d3f7df13f225bd010067be0e5ba1ee2560aafc6cad00
  • Pointer size: 132 Bytes
  • Size of remote file: 1.19 MB
images/expensive_22_-1.5.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 30f5bbbbafbff304e2f248e36a5e70f7dc62b921aac686d10a358b043781d7fe
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/expensive_22_0.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 2bce51f71a9ceba7f34d216f602848cca7d9ee2d070b25cb12af232a945ff5f3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/expensive_22_3.0.png ADDED

Git LFS Details

  • SHA256: ca5cf7b100c5e43f9dd6472c13ba3f9c4392a6f4f73b551db2ea8c0c84a25f51
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB