ntc-ai commited on
Commit
21bda2a
·
1 Parent(s): 6e988a5

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/ps1 graphics...realistic/ps1 graphics_17_3.0.png"
6
+ widget:
7
+ - text: ps1 graphics
8
+ output:
9
+ url: images/ps1 graphics_17_3.0.png
10
+ - text: ps1 graphics
11
+ output:
12
+ url: images/ps1 graphics_19_3.0.png
13
+ - text: ps1 graphics
14
+ output:
15
+ url: images/ps1 graphics_20_3.0.png
16
+ - text: ps1 graphics
17
+ output:
18
+ url: images/ps1 graphics_21_3.0.png
19
+ - text: ps1 graphics
20
+ output:
21
+ url: images/ps1 graphics_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: "ps1 graphics"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - ps1 graphics (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/ps1 graphics_17_-3.0.png" width=256 height=256 /> | <img src="images/ps1 graphics_17_0.0.png" width=256 height=256 /> | <img src="images/ps1 graphics_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/ps1 graphics_19_-3.0.png" width=256 height=256 /> | <img src="images/ps1 graphics_19_0.0.png" width=256 height=256 /> | <img src="images/ps1 graphics_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/ps1 graphics_20_-3.0.png" width=256 height=256 /> | <img src="images/ps1 graphics_20_0.0.png" width=256 height=256 /> | <img src="images/ps1 graphics_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
+ ps1 graphics
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.ps1-graphics', weight_name='ps1 graphics.safetensors', adapter_name="ps1 graphics")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["ps1 graphics"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, ps1 graphics"
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 260+ 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/ps1 graphics_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 3e96f5940a7ee1da52be2107c27c294f2888536f9e2e767137f6dc09f1296e22
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
images/ps1 graphics_17_-3.0.png ADDED

Git LFS Details

  • SHA256: dfd96bfda012ba0468ae79b6cd47eecdaa5af42d74ca4815394593eefb8da48c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/ps1 graphics_17_0.0.png ADDED

Git LFS Details

  • SHA256: 982e43185c63c0a2e9106b2c7fdbc82efb736b76d03a4b6831e759387c7c6550
  • Pointer size: 132 Bytes
  • Size of remote file: 1.26 MB
images/ps1 graphics_17_1.5.png ADDED

Git LFS Details

  • SHA256: bfb25d2c7ceab3ad1b16b914b0a18a366fe8dca3a5d80ac662f9d58eba0e2953
  • Pointer size: 132 Bytes
  • Size of remote file: 1.22 MB
images/ps1 graphics_17_3.0.png ADDED

Git LFS Details

  • SHA256: aee0449250ceb1b36cf478586ee4e6425f20a2e169660def201977e90f011c05
  • Pointer size: 132 Bytes
  • Size of remote file: 1.19 MB
images/ps1 graphics_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 405cd8ec312e76b9bb7dd6ffe92a381c0d911f40db79bb556dec088af43aae1b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/ps1 graphics_19_-3.0.png ADDED

Git LFS Details

  • SHA256: a26cfdfd629d3dd7c7daf0d53168e027726aa4a9e13800810a14847a38e007c9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/ps1 graphics_19_0.0.png ADDED

Git LFS Details

  • SHA256: 1d08a3575fe2e75cbe9d0dfd608bed36f12fcf9f37c8cddffa0f0ac5d2de7e61
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/ps1 graphics_19_1.5.png ADDED

Git LFS Details

  • SHA256: c84d720f38ba573e91c6f15e3ce92222e53e25223ca029edf8a9a9568e6b9fe6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/ps1 graphics_19_3.0.png ADDED

Git LFS Details

  • SHA256: 3fac46a2fcdd46fbd821be2b31c31c3abb00ff04ca0213e156c3da75250d643a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/ps1 graphics_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 8ce25533e49107ef85c78438ab643e13e90798539312b43ae643ac563871d82e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/ps1 graphics_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 7f87859d230709494feb13b2e4da3de3cdcd46f08a01192456061a32a7a964bd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/ps1 graphics_20_0.0.png ADDED

Git LFS Details

  • SHA256: 4221b051e05693b44700a2ee5d93ca2c04abbf595295ce545d02c76af448b61a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/ps1 graphics_20_1.5.png ADDED

Git LFS Details

  • SHA256: e6558ae05df7c094dc060cf95577d89c5969d7ea8e14a95e587b49b49fe3e906
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/ps1 graphics_20_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 28bfc92f8aca3608d8771f70db0b1861a766add767199350dac92582b9e60ff7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/ps1 graphics_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 078d6ae0546175a2c46a5ea0315e0677d0114b0ab6ef8ab6a46fc2077d27e834
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/ps1 graphics_21_0.0.png ADDED

Git LFS Details

  • SHA256: 672c827dcdb0f8c6f33f5c98fedc051a55a2c446fc358aa0f5c1ecd6900b1d3b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/ps1 graphics_21_1.5.png ADDED

Git LFS Details

  • SHA256: d0dff6b71d1bbd0346bc79124b0b0b405975a7c74baad5a61b022a72b69f8c22
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/ps1 graphics_21_3.0.png ADDED

Git LFS Details

  • SHA256: 0cb3670874150942f34dfa869b33e4239198ddca6de1faaed05e3a51998e6ea6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/ps1 graphics_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 0e0a72fc2e8efc1dc5e333b6255085f3e88223421bcb7aecd8ac3ca585853a46
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/ps1 graphics_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 0e6a0924da0042d1ee213d64a69f13977760cb223222f475d03ef5b3cfe976ed
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/ps1 graphics_22_0.0.png ADDED

Git LFS Details

  • SHA256: 56bdf898f0590cbc0948d5b350f13c1f6aaf28b4ee8fa7f2e7b8c382b4b60758
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/ps1 graphics_22_1.5.png ADDED

Git LFS Details

  • SHA256: fd7872e8914472e811b512ce91bb0f58013eb4319cbbaa0c4047297c78bb2d91
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/ps1 graphics_22_3.0.png ADDED

Git LFS Details

  • SHA256: a1a7233b89d9a448183db7f0d5eefed6a06fa5523fa21414100f47e1b11d829d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
ps1 graphics.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03088af7fe5fc7ebecf85a1c2ff58a5f7d85b2213bf2fc154234b770ad3e2037
3
+ size 8789076