ntc-ai commited on
Commit
2b53e5b
1 Parent(s): 6a04e79

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/trending on artstation.../trending on artstation_17_3.0.png"
6
+ widget:
7
+ - text: trending on artstation
8
+ output:
9
+ url: images/trending on artstation_17_3.0.png
10
+ - text: trending on artstation
11
+ output:
12
+ url: images/trending on artstation_19_3.0.png
13
+ - text: trending on artstation
14
+ output:
15
+ url: images/trending on artstation_20_3.0.png
16
+ - text: trending on artstation
17
+ output:
18
+ url: images/trending on artstation_21_3.0.png
19
+ - text: trending on artstation
20
+ output:
21
+ url: images/trending on artstation_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: "trending on artstation"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - trending on artstation (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/trending on artstation_17_-3.0.png" width=256 height=256 /> | <img src="images/trending on artstation_17_0.0.png" width=256 height=256 /> | <img src="images/trending on artstation_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/trending on artstation_19_-3.0.png" width=256 height=256 /> | <img src="images/trending on artstation_19_0.0.png" width=256 height=256 /> | <img src="images/trending on artstation_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/trending on artstation_20_-3.0.png" width=256 height=256 /> | <img src="images/trending on artstation_20_0.0.png" width=256 height=256 /> | <img src="images/trending on artstation_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
+ trending on artstation
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.trending-on-artstation', weight_name='trending on artstation.safetensors', adapter_name="trending on artstation")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["trending on artstation"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, trending on artstation"
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 320+ 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
images/trending on artstation_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 108aa170131053d5f6a808211536046e76dd91c6e9ee1b0fecdda4b27969383e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/trending on artstation_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 632886faa5425ea8057918073f8a7141fd4d9d5c3402c095f5fbbbc5d382bfe4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/trending on artstation_17_0.0.png ADDED

Git LFS Details

  • SHA256: 9fc49d522b0df38b1df6b6faf53b1823efe94fd005f4b4212c1bfb3e05e9d31b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/trending on artstation_17_1.5.png ADDED

Git LFS Details

  • SHA256: 3f9d8e5f787684fb6ce9660ac153e89a07333f13340c9783755aad21f4ff6442
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/trending on artstation_17_3.0.png ADDED

Git LFS Details

  • SHA256: 54ac83f1f4a64f63db063232b12fc84d63fa26f1687eefabb9568b8621da9d6c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/trending on artstation_19_-1.5.png ADDED

Git LFS Details

  • SHA256: ea93775f5fad59aa7da05cb77bd7067fd1c32823b5516a2a7625e3576ecaa78d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.82 MB
images/trending on artstation_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 93c598a60c9fd4b7663d7ba77ab579011e92fb9ed0d7bbcdd2d583d479942d0e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.83 MB
images/trending on artstation_19_0.0.png ADDED

Git LFS Details

  • SHA256: d9d63af3210c5c018e63ccf0dc6fc30b8ac37c786fc0201a8232ee005d822ca2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.79 MB
images/trending on artstation_19_1.5.png ADDED

Git LFS Details

  • SHA256: a3e945589a744ca6f488804b8176f26abe1470a8b17386f27b2676a7282d1953
  • Pointer size: 132 Bytes
  • Size of remote file: 1.72 MB
images/trending on artstation_19_3.0.png ADDED

Git LFS Details

  • SHA256: 5f7aa2245fe3a079b449cc544fa5ac23fe1a417513c22611aa9da17796f8884b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/trending on artstation_20_-1.5.png ADDED

Git LFS Details

  • SHA256: b6432cec406f6cfd857f14a9a2357887b186ba1a9b69c4722e4a61c57dbc119d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/trending on artstation_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 4588fe55fb5a2d78b29ecb0cb94d894519468ae845ea8061e619b211c81fa1f9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/trending on artstation_20_0.0.png ADDED

Git LFS Details

  • SHA256: 7f040ad4d0923878b38057883d673d5f699316f56b1aa7aa8665dc950adc4818
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/trending on artstation_20_1.5.png ADDED

Git LFS Details

  • SHA256: 41f34e54939eb43cd02c5113e35ee64f3f723141599266bbb719ba967bf2412e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/trending on artstation_20_3.0.png ADDED

Git LFS Details

  • SHA256: e63b1962320f6c0f548a82ebed740d312979d796f488b6203ff7e330fa1c67ac
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/trending on artstation_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 6da6153c45495a757804519470aa7a971b6682ea0925f48d4aac46faff0eafdf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.78 MB
images/trending on artstation_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 5d30f94e28346e3f9ffc94de02795b6836aaa793f745d62ed04433e2ccbc47eb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.86 MB
images/trending on artstation_21_0.0.png ADDED

Git LFS Details

  • SHA256: ebf695f63b0cbdee0a8b8274acd0a34a3f3478a065cefde868c66f2826fbb552
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/trending on artstation_21_1.5.png ADDED

Git LFS Details

  • SHA256: efc77a6bee573718f88f168481d7f56395e7c721a5e329e09bd4d7f4f1039a83
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/trending on artstation_21_3.0.png ADDED

Git LFS Details

  • SHA256: 15e6353e2305ffd91986507336c2cbff1eff02ce09530ad7b7c7c6f890c9db30
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/trending on artstation_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 91d732dbc014cb1001f16a656742d11ba19a7ef113e3b3af405eae300efa4b24
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/trending on artstation_22_-3.0.png ADDED

Git LFS Details

  • SHA256: c8e172dec75758d444a215b95250c976d2b49891dc0985db52d79afabae4f0a9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/trending on artstation_22_0.0.png ADDED

Git LFS Details

  • SHA256: 786eae115b56760b31d537846beeafbb487594f595a778c5126175b774ed3bfb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/trending on artstation_22_1.5.png ADDED

Git LFS Details

  • SHA256: c5e33ae6a077c0bf5b4c1c0e3352710ab8e893a64d7fddafc96c350d657a8b5d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/trending on artstation_22_3.0.png ADDED

Git LFS Details

  • SHA256: 208ce7b515e0dd202db4605d8f0238711f65bb205e7e1d9c56f41b72f256d28e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
trending on artstation.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fb06d43dbd9322e019c7f3f44f25489eae5abd2c315f5d9f9629b56f81d304e
3
+ size 8789076