ntc-ai commited on
Commit
a024cfa
1 Parent(s): 9b1370b

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/glamour shot.../glamour shot_17_3.0.png"
6
+ widget:
7
+ - text: glamour shot
8
+ output:
9
+ url: images/glamour shot_17_3.0.png
10
+ - text: glamour shot
11
+ output:
12
+ url: images/glamour shot_19_3.0.png
13
+ - text: glamour shot
14
+ output:
15
+ url: images/glamour shot_20_3.0.png
16
+ - text: glamour shot
17
+ output:
18
+ url: images/glamour shot_21_3.0.png
19
+ - text: glamour shot
20
+ output:
21
+ url: images/glamour shot_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: "glamour shot"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - glamour shot (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/glamour shot_17_-3.0.png" width=256 height=256 /> | <img src="images/glamour shot_17_0.0.png" width=256 height=256 /> | <img src="images/glamour shot_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/glamour shot_19_-3.0.png" width=256 height=256 /> | <img src="images/glamour shot_19_0.0.png" width=256 height=256 /> | <img src="images/glamour shot_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/glamour shot_20_-3.0.png" width=256 height=256 /> | <img src="images/glamour shot_20_0.0.png" width=256 height=256 /> | <img src="images/glamour shot_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
+ glamour shot
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.glamour-shot', weight_name='glamour shot.safetensors', adapter_name="glamour shot")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["glamour shot"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, glamour shot"
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
glamour shot.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81d08d89d5790b34685671f264e2f19d6fcf9ba92542a01a3acc680bdce4162a
3
+ size 8789076
images/glamour shot_17_-1.5.png ADDED

Git LFS Details

  • SHA256: f22c3a0d9c1be0d02c38545a40555f0f2d0beba56657e622ce9b69501884ec1b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/glamour shot_17_-3.0.png ADDED

Git LFS Details

  • SHA256: bfd496eaeef1557e0157d9b8adb2c443755aaada8e98bfa8500516110fe57c88
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/glamour shot_17_0.0.png ADDED

Git LFS Details

  • SHA256: f5c709748d58eac08287b55e6f7f38c00659f3659f9ec06822942064930e188d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/glamour shot_17_1.5.png ADDED

Git LFS Details

  • SHA256: 2a7b3c06ac54a3c5329dd4882f73383120d458b58847188ee4ad552732f4584f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/glamour shot_17_3.0.png ADDED

Git LFS Details

  • SHA256: c7e99f866bf9660039e7a19b542790c063694d0f5f0183d90b84d178b647adb9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/glamour shot_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 042d66129897da3fa2ee00a91aa099467d384ad7396197a5e92a1e336f862039
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/glamour shot_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 80263272a20177836a0a653b4d907267a7155bb3387ec66ff0f6ca1e17ed50d9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/glamour shot_19_0.0.png ADDED

Git LFS Details

  • SHA256: c70023f45825f32317b3b600c7efabc8fa139dd48be908851730914778ce1623
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/glamour shot_19_1.5.png ADDED

Git LFS Details

  • SHA256: beedfd724d000cae45636c31a68591e75e9e4880b44f75fea63f2d36e6a66718
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/glamour shot_19_3.0.png ADDED

Git LFS Details

  • SHA256: 60f905a6212ef17f5c8fca4535b7728b760304f0a1815ee1dacb364ac68e77ef
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/glamour shot_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 383a59d0f8ab4c5fcf8a993d0f00f33d6b6540f9dbc240d4d92ad77e6efcee9f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/glamour shot_20_-3.0.png ADDED

Git LFS Details

  • SHA256: e46fd29a0ebbc3fafc9275f61fc8b66a4a9b9eb2aa2d40b0246d896ce722049d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/glamour shot_20_0.0.png ADDED

Git LFS Details

  • SHA256: 6b5f6402a70a6d787c55e0f132b8c50a46077bce0d01ae32991766c6f2854662
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/glamour shot_20_1.5.png ADDED

Git LFS Details

  • SHA256: d52a57f76c2ee5717197964cf2d096ab8a1637b346c43f78bf8a9f08a185262a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/glamour shot_20_3.0.png ADDED

Git LFS Details

  • SHA256: 869ae43d1f8d984612e72df656a72ef4b78c9d3e6fc4c1edb6de2108fe461308
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/glamour shot_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 4df5c57dfb46f0e620c1efb274283a072783c0c9d58447f42423401e462d5099
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/glamour shot_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 8c149b5cd1bce1950d7882c18166e380ec08664d4ff26e40bec365aeb8ef5599
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/glamour shot_21_0.0.png ADDED

Git LFS Details

  • SHA256: d4e827a947a3395fa90a4734ecac1ba304f42182ce76c083f875bed9dcd76f6a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/glamour shot_21_1.5.png ADDED

Git LFS Details

  • SHA256: e88cec23e07601a30127e96977b77d222936e6462019bc9cb260461c45cbf0d4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/glamour shot_21_3.0.png ADDED

Git LFS Details

  • SHA256: e16d18faf1083b23086576321b82068b2bf1803d63970388c3f30823aff08f49
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/glamour shot_22_-1.5.png ADDED

Git LFS Details

  • SHA256: d2d3e7456850dd79e75b9638adaaf69fe0066fa7410374fa452b19c5c0a29569
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/glamour shot_22_-3.0.png ADDED

Git LFS Details

  • SHA256: db8a1b9fd8ec4c6dadbb50779505ebeaa115ca8bdcf681cab410fbea7423f7e2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/glamour shot_22_0.0.png ADDED

Git LFS Details

  • SHA256: 929e30a3ac218aa991e32db51ad4eb595c61ee6d0220eba45f8405ab0b8c6d75
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/glamour shot_22_1.5.png ADDED

Git LFS Details

  • SHA256: 5ccf24fb5c90bbb76ec38240321f6d05465a2a9e0a18d91caafeb9f73429c4fd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/glamour shot_22_3.0.png ADDED

Git LFS Details

  • SHA256: 844ea1995660625539900eaade8429ad648f66f129b38e4e9313b1a6f1ce8327
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB