ntc-ai commited on
Commit
1c8f483
1 Parent(s): 84d7e12

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/person wearing headphones...person/person wearing headphones_17_3.0.png"
6
+ widget:
7
+ - text: person wearing headphones
8
+ output:
9
+ url: images/person wearing headphones_17_3.0.png
10
+ - text: person wearing headphones
11
+ output:
12
+ url: images/person wearing headphones_19_3.0.png
13
+ - text: person wearing headphones
14
+ output:
15
+ url: images/person wearing headphones_20_3.0.png
16
+ - text: person wearing headphones
17
+ output:
18
+ url: images/person wearing headphones_21_3.0.png
19
+ - text: person wearing headphones
20
+ output:
21
+ url: images/person wearing headphones_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: "person wearing headphones"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - person wearing headphones (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/person wearing headphones_17_-3.0.png" width=256 height=256 /> | <img src="images/person wearing headphones_17_0.0.png" width=256 height=256 /> | <img src="images/person wearing headphones_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/person wearing headphones_19_-3.0.png" width=256 height=256 /> | <img src="images/person wearing headphones_19_0.0.png" width=256 height=256 /> | <img src="images/person wearing headphones_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/person wearing headphones_20_-3.0.png" width=256 height=256 /> | <img src="images/person wearing headphones_20_0.0.png" width=256 height=256 /> | <img src="images/person wearing headphones_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
+ person wearing headphones
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.person-wearing-headphones', weight_name='person wearing headphones.safetensors', adapter_name="person wearing headphones")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["person wearing headphones"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, person wearing headphones"
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 240+ 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/person wearing headphones_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 25beaf8b76c8b5ebe0030efb2c696ff8451e316989f70994acc8bf16dc8aba65
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/person wearing headphones_17_-3.0.png ADDED

Git LFS Details

  • SHA256: ec2b525fb8e5a6e8f71210d0e9898cd1c8f262bd56b37eba1cafa6d0903fa4bc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/person wearing headphones_17_0.0.png ADDED

Git LFS Details

  • SHA256: 78824214164ae05e9358864497716ce013601a5493e6adb00ec6ba66bc91ffa5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/person wearing headphones_17_1.5.png ADDED

Git LFS Details

  • SHA256: fc5ae1c48554ea52fe66f15e90bd22a8ccb764fdb64cf3ff9d06b9bcf28fc8b7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/person wearing headphones_17_3.0.png ADDED

Git LFS Details

  • SHA256: e0f6503895994039ea88f583c853e0479eab3208342444e55ad2bd9bbf9b6afb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/person wearing headphones_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 4580f932b6218cff57f7409209215a61aea155b115c68d7d33c87d0b425a68ab
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/person wearing headphones_19_-3.0.png ADDED

Git LFS Details

  • SHA256: e8fd827c1c9223c8803f013d8084ada71417e897eb421743e5c829eb6354d3ab
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/person wearing headphones_19_0.0.png ADDED

Git LFS Details

  • SHA256: c9bf6292bf26965505ab892d26f8599df119309a7f3ff18143bb23b4cca54748
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
images/person wearing headphones_19_1.5.png ADDED

Git LFS Details

  • SHA256: f4f6a351c31d94914ba112937431248ace35d3eedde1f94115751515c8f514ae
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
images/person wearing headphones_19_3.0.png ADDED

Git LFS Details

  • SHA256: f23c94bab53110d4d73ecad515e7ef477e6d7221cfae8f5e7a73944aecce54d0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
images/person wearing headphones_20_-1.5.png ADDED

Git LFS Details

  • SHA256: eb6a431931cef59566d4d956d0c08b4b21b1272658f49575fa37138d4bd5c26f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/person wearing headphones_20_-3.0.png ADDED

Git LFS Details

  • SHA256: e151112a060aa6ecf06e9b628e93766cfca0552faacc6b9d6d1f61f659500ac5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/person wearing headphones_20_0.0.png ADDED

Git LFS Details

  • SHA256: 8509ca97c2de09d47243467687f10291dc8f8ebc90a97c878d995b3a49785df7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/person wearing headphones_20_1.5.png ADDED

Git LFS Details

  • SHA256: e79e11bc3618ea28f1bbf6cffdb84e8214e02cfe18588efde20aa18c9da08518
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/person wearing headphones_20_3.0.png ADDED

Git LFS Details

  • SHA256: 22bfe30d72394257484dd3b2bcf1092da3abdcada513ab2479142ceb145b9191
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/person wearing headphones_21_-1.5.png ADDED

Git LFS Details

  • SHA256: f3b0ffbe9c8956bad5a2462f6823848457ca40e9b93de13ec23bff56a7df3665
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/person wearing headphones_21_-3.0.png ADDED

Git LFS Details

  • SHA256: a95d3a81ce4e407842dffa65fe5f6b50d7c7f785c50967f4cf01c4184be87262
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/person wearing headphones_21_0.0.png ADDED

Git LFS Details

  • SHA256: 3b99c1223531aaf808bc7e43062d050b2df8621829657b77e8d2e4966c77153c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/person wearing headphones_21_1.5.png ADDED

Git LFS Details

  • SHA256: 4aa7ab31a55133ccd4fe46b54db91c0e4cd17fdd822f2a55666bf752cbf063ec
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/person wearing headphones_21_3.0.png ADDED

Git LFS Details

  • SHA256: 15d02e294818481193f224926d66b4ace7852e3e7f8129b5db182957f14ea113
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/person wearing headphones_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 40d0d9e96bd443182c78cfa64c8e12d1f15a0a21f903e1f910286a8854d2ba04
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/person wearing headphones_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 24866b2c7294c14778863a17b1a81d0c3bd41cf1c635fca7502ef705f9701a3e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/person wearing headphones_22_0.0.png ADDED

Git LFS Details

  • SHA256: e0f734368121f795c988b4cc207422f191a587c5f08e4a58e958ce258bc00868
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/person wearing headphones_22_1.5.png ADDED

Git LFS Details

  • SHA256: a7b96ef651bddfa35f692c6b025e1172afa461aa51ea2b02a63691539c708a41
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/person wearing headphones_22_3.0.png ADDED

Git LFS Details

  • SHA256: b9d7d074b225f5ded0eb3e8d39808a596a8107eac46aede8af3a2c1f1989fd36
  • Pointer size: 132 Bytes
  • Size of remote file: 1.26 MB
person wearing headphones.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a491c5d79c6af39c32a49db1513317e4d59e93cd124196d3f4f9b607294265b
3
+ size 8789076