ntc-ai commited on
Commit
a47bb9e
1 Parent(s): 9a43e60

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/puffed out cheeks.../puffed out cheeks_17_3.0.png"
6
+ widget:
7
+ - text: puffed out cheeks
8
+ output:
9
+ url: images/puffed out cheeks_17_3.0.png
10
+ - text: puffed out cheeks
11
+ output:
12
+ url: images/puffed out cheeks_19_3.0.png
13
+ - text: puffed out cheeks
14
+ output:
15
+ url: images/puffed out cheeks_20_3.0.png
16
+ - text: puffed out cheeks
17
+ output:
18
+ url: images/puffed out cheeks_21_3.0.png
19
+ - text: puffed out cheeks
20
+ output:
21
+ url: images/puffed out cheeks_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: "puffed out cheeks"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - puffed out cheeks (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/puffed out cheeks_17_-3.0.png" width=256 height=256 /> | <img src="images/puffed out cheeks_17_0.0.png" width=256 height=256 /> | <img src="images/puffed out cheeks_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/puffed out cheeks_19_-3.0.png" width=256 height=256 /> | <img src="images/puffed out cheeks_19_0.0.png" width=256 height=256 /> | <img src="images/puffed out cheeks_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/puffed out cheeks_20_-3.0.png" width=256 height=256 /> | <img src="images/puffed out cheeks_20_0.0.png" width=256 height=256 /> | <img src="images/puffed out cheeks_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
+ puffed out cheeks
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.puffed-out-cheeks', weight_name='puffed out cheeks.safetensors', adapter_name="puffed out cheeks")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["puffed out cheeks"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, puffed out cheeks"
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 550+ 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/puffed out cheeks_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 3ebf7cfb6807a19fdfa7b4b6b276e64f4a264113cf73291a8ec64d4a84956802
  • Pointer size: 132 Bytes
  • Size of remote file: 1.26 MB
images/puffed out cheeks_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 36c1d98b63fe18cc3138d45d9e44d8c50fc9cbf5b68c4efaf989ebe275fbd144
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/puffed out cheeks_17_0.0.png ADDED

Git LFS Details

  • SHA256: f63a4da53b68d6ce883b3c9c6f51c00564afe5e5b5254518f619dd883cabae43
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/puffed out cheeks_17_1.5.png ADDED

Git LFS Details

  • SHA256: 75fd087b5ba8a1aad2526284a7a18eba195cbaecebb1dc73de420fdae54a50f5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/puffed out cheeks_17_3.0.png ADDED

Git LFS Details

  • SHA256: 0a1af8faaf136cd14855a9f87b41fbc2ef7dad8ddbaa648a6ea6de45c11244bb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/puffed out cheeks_19_-1.5.png ADDED

Git LFS Details

  • SHA256: b8581c1ceb34f8961ecbf2218d7300c0e5885ae9cd2b82ca1015f421a43d7db2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/puffed out cheeks_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 0ea4597d6af351480380d7a5a701f72260a37e67641f06eb1edde27ecf21129d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/puffed out cheeks_19_0.0.png ADDED

Git LFS Details

  • SHA256: 0d63c847be8da2c57c2cabb82b5dafecbed92da5895df6bd7d042b54a2f13fe6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/puffed out cheeks_19_1.5.png ADDED

Git LFS Details

  • SHA256: 2510244540439c7d275523a1e17bcf4d5be88a7ae4d984b8f61c9927fb53ab0a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/puffed out cheeks_19_3.0.png ADDED

Git LFS Details

  • SHA256: 7c0ce76d9142ba134fe557aeea0c1f82df889f8da3363dc1af25a9d9c9619c83
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/puffed out cheeks_20_-1.5.png ADDED

Git LFS Details

  • SHA256: d587a0d75ad081b1e674358017fd49054ffed9ed0a7f3c51e593f41bd22cfa00
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/puffed out cheeks_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 17799db790dda67cdf50450ae1ee5a62407bf89545d1be06e6c84a07b4a3bcc7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.73 MB
images/puffed out cheeks_20_0.0.png ADDED

Git LFS Details

  • SHA256: 5ad8d69255a778b3d83ec06679f030a80a800c1f37dec3c472a9a2cf5b6be8de
  • Pointer size: 132 Bytes
  • Size of remote file: 1.62 MB
images/puffed out cheeks_20_1.5.png ADDED

Git LFS Details

  • SHA256: 49d799fb1361263a98c052d6a7dda874053dba41828a635a56e33a0d5b5aaa97
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/puffed out cheeks_20_3.0.png ADDED

Git LFS Details

  • SHA256: 25d0da1a011058ad567eab49392a307951f729a7413b8da485e58d13a12c69de
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/puffed out cheeks_21_-1.5.png ADDED

Git LFS Details

  • SHA256: de3da5abd4869ce2d0ec9e45907958a290cb23e0f076ce1a5bacda864fe6cf01
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/puffed out cheeks_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 7c2fbc6df50538c3e371fa4b7d6c85dd9ffc5d477bc18fcc73546d691c77d4c3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/puffed out cheeks_21_0.0.png ADDED

Git LFS Details

  • SHA256: 0fb44d6749dfa38ef1258cdabc2b8873a69223e0f584307e7fc91725c6f410ef
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/puffed out cheeks_21_1.5.png ADDED

Git LFS Details

  • SHA256: f119a25cac061adf310bf36da090f9fc743341fd631ff4034081531a916dc2bb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/puffed out cheeks_21_3.0.png ADDED

Git LFS Details

  • SHA256: aa0c3fc83c0df685529a6930b7012a9ff39e22f0a8b38fa07b07b82f0713dec5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/puffed out cheeks_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 1d828c344d477f336149cd743045c74da4ebb9fc83d9e1363bbc4313f2c7c35d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/puffed out cheeks_22_-3.0.png ADDED

Git LFS Details

  • SHA256: d861744fcf89462cea0c147b857dd2db72af3e5116a7a1c21693d2c4039ee8ff
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/puffed out cheeks_22_0.0.png ADDED

Git LFS Details

  • SHA256: 09f0594e743384ecafa2bb466c6a0c3a5d20464c2dd0d5deff7bfac206b30deb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/puffed out cheeks_22_1.5.png ADDED

Git LFS Details

  • SHA256: 43871b510c5da5b5c75157d5b8748e8bab699de70f507ab3678a440e794cc6b5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/puffed out cheeks_22_3.0.png ADDED

Git LFS Details

  • SHA256: 1f1e5be996b29a76a842e8dcc550a9206f8a3cc484a240e4322b20015110ac30
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
puffed out cheeks.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f1e8c63d08060f5480553117711af788710883e9253c92591240aaec3e097d7
3
+ size 8789076