ntc-ai commited on
Commit
a0cca5c
1 Parent(s): 8c4254e

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/photobombing...serious/photobombing_17_3.0.png"
6
+ widget:
7
+ - text: photobombing
8
+ output:
9
+ url: images/photobombing_17_3.0.png
10
+ - text: photobombing
11
+ output:
12
+ url: images/photobombing_19_3.0.png
13
+ - text: photobombing
14
+ output:
15
+ url: images/photobombing_20_3.0.png
16
+ - text: photobombing
17
+ output:
18
+ url: images/photobombing_21_3.0.png
19
+ - text: photobombing
20
+ output:
21
+ url: images/photobombing_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: "photobombing"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - photobombing (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/photobombing_17_-3.0.png" width=256 height=256 /> | <img src="images/photobombing_17_0.0.png" width=256 height=256 /> | <img src="images/photobombing_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/photobombing_19_-3.0.png" width=256 height=256 /> | <img src="images/photobombing_19_0.0.png" width=256 height=256 /> | <img src="images/photobombing_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/photobombing_20_-3.0.png" width=256 height=256 /> | <img src="images/photobombing_20_0.0.png" width=256 height=256 /> | <img src="images/photobombing_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
+ photobombing
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.photobombing', weight_name='photobombing.safetensors', adapter_name="photobombing")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["photobombing"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, photobombing"
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 220+ 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/photobombing_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 1c216b1288a03dd1fd0d65c7d9ab9ec4ff1a759d41e5d956687d63904186deee
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/photobombing_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 3a69de1df2f1e43033665e29069c76eb5e296e7720a4ad3ff95402c483f2c552
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/photobombing_17_0.0.png ADDED

Git LFS Details

  • SHA256: 615ae36da10f63dbe570ca4315c6b49ded38380a828a8152c3827f25b4f88db9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/photobombing_17_1.5.png ADDED

Git LFS Details

  • SHA256: 17c87567fba14fbd5f1629a237cbe271f5f381b922470fb6f91ca1ebca4c142a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/photobombing_17_3.0.png ADDED

Git LFS Details

  • SHA256: c13f50b18033b3dce1c1ce6f8fbdda3900cde92afeb97a32f9f57d171af5527a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/photobombing_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 9a19f8bb42b2e8c236acf74bc74cde9ff75bc081156bda3e175f226ea07637ff
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/photobombing_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 8507fefe10071e6108a5b8c64a361df3007da129bd2a52ea847320b825a73428
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/photobombing_19_0.0.png ADDED

Git LFS Details

  • SHA256: 02940bc3a6c094f01759c0c57ed3ed5ee78eff72ea58c4ad7514c8837e1e3176
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/photobombing_19_1.5.png ADDED

Git LFS Details

  • SHA256: f8ff3e42962e3faee49c373f987da1d87114c2cc3b62f62352ff5371f42e8b7d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/photobombing_19_3.0.png ADDED

Git LFS Details

  • SHA256: 5fe83117855341ac06038fa1f55f4b02501615652b6f96e5584e23075d7bc51b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/photobombing_20_-1.5.png ADDED

Git LFS Details

  • SHA256: b08296db91383e6b96502636e912c812ae9932c8d7d6c19f8fc932897c2bb988
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/photobombing_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 617cd6e7e160dca5ddf84ad337a704f67b53bacddad85865df3eea0932831877
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/photobombing_20_0.0.png ADDED

Git LFS Details

  • SHA256: 0d394aa0536e1c9729efb9b9cd3cbfbf044a1c09cc8a3c05c5c3038a43401229
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/photobombing_20_1.5.png ADDED

Git LFS Details

  • SHA256: 5e5c5b6cb2c6a857c39549421cafe476fe9d3f99bd40ccbc2932966054f8323f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/photobombing_20_3.0.png ADDED

Git LFS Details

  • SHA256: ef91602b5ec99f51351311be12cfcc04c09457fa1d53df91829a11904007137b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/photobombing_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 9fee30998db9f80652ca13ed9af1cdaffdacc181fcd1061d641314a67c825cbb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/photobombing_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 5d96236c99fb46256237b028c4a8889de9adaee54869cd11543ba4664cafac87
  • Pointer size: 132 Bytes
  • Size of remote file: 1.12 MB
images/photobombing_21_0.0.png ADDED

Git LFS Details

  • SHA256: a0b37dbd5640582250b9a22b8f57e539c038d18aab31557cfc01f8e2f3d48b95
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/photobombing_21_1.5.png ADDED

Git LFS Details

  • SHA256: fafbb55e905ce08d8d0cfabd7e3fc5697a4b9b8d7a554f817226cd26502bca1e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/photobombing_21_3.0.png ADDED

Git LFS Details

  • SHA256: d20d7535467db1e336ff7f8db8c13de5d08bc71647a0a398fb60bf5bc8002896
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/photobombing_22_-1.5.png ADDED

Git LFS Details

  • SHA256: c1116fdbdfda6d0a5aef43fa5e0c166638c33a2d1a70096a4b44eed2e3b9ea73
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/photobombing_22_-3.0.png ADDED

Git LFS Details

  • SHA256: d22f2e6cf4f5e091ca3c6c1cd06c792b11d5c3bf99698aba82b451b959410295
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/photobombing_22_0.0.png ADDED

Git LFS Details

  • SHA256: 5ac88d98f8e6a1ba7b9ee60d2b07079f71bd06af7cd643cb72c53979c63a6369
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/photobombing_22_1.5.png ADDED

Git LFS Details

  • SHA256: 7dd311850ee04646bbcf70492362f77ab0b6f14307048eec8fefdd50e2c94e48
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/photobombing_22_3.0.png ADDED

Git LFS Details

  • SHA256: 74f7352aaafd5adf5d559d7f9dafc440cfe67b1d0136aca4f886575f53c32367
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
photobombing.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:505c1062a1611758b8e3b58fab724dd687acc8a2064979b9008f2dcfd09e0b31
3
+ size 8789076