ntc-ai commited on
Commit
799ae1f
·
1 Parent(s): ab98cab

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/aggressive...passive/aggressive_17_3.0.png"
6
+ widget:
7
+ - text: aggressive
8
+ output:
9
+ url: images/aggressive_17_3.0.png
10
+ - text: aggressive
11
+ output:
12
+ url: images/aggressive_19_3.0.png
13
+ - text: aggressive
14
+ output:
15
+ url: images/aggressive_20_3.0.png
16
+ - text: aggressive
17
+ output:
18
+ url: images/aggressive_21_3.0.png
19
+ - text: aggressive
20
+ output:
21
+ url: images/aggressive_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: "aggressive"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - aggressive (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/aggressive_17_-3.0.png" width=256 height=256 /> | <img src="images/aggressive_17_0.0.png" width=256 height=256 /> | <img src="images/aggressive_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/aggressive_19_-3.0.png" width=256 height=256 /> | <img src="images/aggressive_19_0.0.png" width=256 height=256 /> | <img src="images/aggressive_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/aggressive_20_-3.0.png" width=256 height=256 /> | <img src="images/aggressive_20_0.0.png" width=256 height=256 /> | <img src="images/aggressive_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
+ aggressive
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.aggressive', weight_name='aggressive.safetensors', adapter_name="aggressive")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["aggressive"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, aggressive"
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 1050+ 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
aggressive.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34b68be9a6ad700ec3cf6c45c8e525db3353e981a73ef3984d7d2eaa4722195a
3
+ size 8789076
images/aggressive_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 730d415fb33c60709639c8efd77807a4f8306b0b591326fe2dd041b2b84e35ca
  • Pointer size: 132 Bytes
  • Size of remote file: 1.74 MB
images/aggressive_17_-3.0.png ADDED

Git LFS Details

  • SHA256: a9f28232c670b0c86841faa497be4f71c0ca6d487413b9fdf25de8eca1e0f00d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.74 MB
images/aggressive_17_0.0.png ADDED

Git LFS Details

  • SHA256: 2a67a3026e9f52844f073c2fd3df47180ace35ca74920c5f8f1d30cb381716f7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.75 MB
images/aggressive_17_1.5.png ADDED

Git LFS Details

  • SHA256: 378fb938557203ad70a0b478904a16a67c0849712da99b70d103afb77a04c79a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.76 MB
images/aggressive_17_3.0.png ADDED

Git LFS Details

  • SHA256: 0f3bd92f302b39672f03fd6368daa43a4ee77043a89ed6d1d1e8f575c4c59d84
  • Pointer size: 132 Bytes
  • Size of remote file: 1.77 MB
images/aggressive_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 6b19496f76c26c8a094dd962305d983dc0c1170122657380a8ebe620dedefdc8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/aggressive_19_-3.0.png ADDED

Git LFS Details

  • SHA256: ca1e7f512424922691e4f3a4837ee6eeed5d6ff91239e96e645e410dd8a43282
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/aggressive_19_0.0.png ADDED

Git LFS Details

  • SHA256: fcc3400e2db7d5180d0d9f5444129978510650d46c3ecd79fc026dc55573ef3a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/aggressive_19_1.5.png ADDED

Git LFS Details

  • SHA256: f8502cebe7cebdf1edc73b649757f9e742192cc1545c0acb3f6fa314185a8e7c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/aggressive_19_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 648686a90aa1600e6e5f580093985b5108072ba305dd6fb7c9492b6d8c040692
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/aggressive_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 09436ac91a9e10c763daf774f418dbe07a4a4ee346da3483994aa40c6f925f96
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/aggressive_20_0.0.png ADDED

Git LFS Details

  • SHA256: e9c7278dbe963a4117ffa1c7886a13504f96f2096c6201f71c6dab14e49043f3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
images/aggressive_20_1.5.png ADDED

Git LFS Details

  • SHA256: c0c0d1da20ea4e01ab17361bab4cd091f876e84cde76a9c54c8df2063e021032
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/aggressive_20_3.0.png ADDED

Git LFS Details

  • SHA256: 59935afc0ae704b691182cd8c96392b85e0a70cc1880c10dd6d38a8f0015c818
  • Pointer size: 132 Bytes
  • Size of remote file: 1.24 MB
images/aggressive_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 1159a48e47c6028d824a1ca4d61af05d5760925f8e9d424d85b5994b4ffebf7a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/aggressive_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 3d004e5c7472545781437a824bfe21f577100e241d68da578120736797f3a8e5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/aggressive_21_0.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 509535b7168e80acb1b3eafacc1269900158e4cb56c75e8bb2004f888436179f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/aggressive_21_3.0.png ADDED

Git LFS Details

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

Git LFS Details

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

Git LFS Details

  • SHA256: 12b554ede8ddf95aeb795328bfba83af3e0ef7fcba61d69d14e541a8c99a91e1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/aggressive_22_0.0.png ADDED

Git LFS Details

  • SHA256: 989245e62eeb6a73f43ab048edfbd08780f55d113aed72b0e9da305e6d33f3d0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/aggressive_22_1.5.png ADDED

Git LFS Details

  • SHA256: 054bb1a9d16411198d8e255672c6ad147c27a1281f57cdbe2a4394b55afe5ad7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/aggressive_22_3.0.png ADDED

Git LFS Details

  • SHA256: c9a4c4e856e9cc55a845dbbf8046b1f408105665b8fc9baf2120f282fb67c1bd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB