ntc-ai commited on
Commit
f96c0e1
1 Parent(s): 859f815

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/the doge from dogecoin.../the doge from dogecoin_17_3.0.png"
6
+ widget:
7
+ - text: the doge from dogecoin
8
+ output:
9
+ url: images/the doge from dogecoin_17_3.0.png
10
+ - text: the doge from dogecoin
11
+ output:
12
+ url: images/the doge from dogecoin_19_3.0.png
13
+ - text: the doge from dogecoin
14
+ output:
15
+ url: images/the doge from dogecoin_20_3.0.png
16
+ - text: the doge from dogecoin
17
+ output:
18
+ url: images/the doge from dogecoin_21_3.0.png
19
+ - text: the doge from dogecoin
20
+ output:
21
+ url: images/the doge from dogecoin_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: "the doge from dogecoin"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - the doge from dogecoin (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/the doge from dogecoin_17_-3.0.png" width=256 height=256 /> | <img src="images/the doge from dogecoin_17_0.0.png" width=256 height=256 /> | <img src="images/the doge from dogecoin_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/the doge from dogecoin_19_-3.0.png" width=256 height=256 /> | <img src="images/the doge from dogecoin_19_0.0.png" width=256 height=256 /> | <img src="images/the doge from dogecoin_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/the doge from dogecoin_20_-3.0.png" width=256 height=256 /> | <img src="images/the doge from dogecoin_20_0.0.png" width=256 height=256 /> | <img src="images/the doge from dogecoin_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
+ the doge from dogecoin
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.the-doge-from-dogecoin', weight_name='the doge from dogecoin.safetensors', adapter_name="the doge from dogecoin")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["the doge from dogecoin"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, the doge from dogecoin"
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 340+ 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/the doge from dogecoin_17_-1.5.png ADDED

Git LFS Details

  • SHA256: dff512b56ced2f61975b557cbd9e78f1392c83f99fedcfea698f14396b1a9171
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/the doge from dogecoin_17_-3.0.png ADDED

Git LFS Details

  • SHA256: bf1036381c6b4b224858623c65556a2e223387dc775640a2f04c1f0e9d935220
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/the doge from dogecoin_17_0.0.png ADDED

Git LFS Details

  • SHA256: 296d7369c79dd8829ef354d6cbfc37ec5e4bd242d6a97515aef3804ee7035db7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/the doge from dogecoin_17_1.5.png ADDED

Git LFS Details

  • SHA256: 18c2c25049f6cbeed234f3b62f0926f5139bd6f78b7408cb26a91e6c501c99b6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/the doge from dogecoin_17_3.0.png ADDED

Git LFS Details

  • SHA256: 3f94fce10bed8cbc921adab13ffbba1dadc3f02ee5692f1893b64feb8d930214
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/the doge from dogecoin_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 37aadb8c01ba4f6da551225c0e80137af654bac85484fe960719c2247f1214d4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/the doge from dogecoin_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 9d954c1ec2089ba83f3d50f97f31c28c8469c3ad1e5d51a71458ba31ae3c27b0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/the doge from dogecoin_19_0.0.png ADDED

Git LFS Details

  • SHA256: 28f5516c1c7e3d501fbcde4c4dfc6e5331ed7f304434d99dd9af603c2f998380
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/the doge from dogecoin_19_1.5.png ADDED

Git LFS Details

  • SHA256: db982073486fb69098756c02f4c5a2a82da8e1636edc4541d1741468df691f08
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/the doge from dogecoin_19_3.0.png ADDED

Git LFS Details

  • SHA256: 0164843b9d8fd62105d6787bfd0b1fa2d7e672dfc5c0363ed6731d29198eb4e1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/the doge from dogecoin_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 65608e593d2427108f84a011e7e4904d6765238a24df7c781b6813ee8dd6cf31
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/the doge from dogecoin_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 8bded86735dabeda045e9e519b7b0b5b10365d8eba3a305cfb7bcd198473b10d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/the doge from dogecoin_20_0.0.png ADDED

Git LFS Details

  • SHA256: 689ea5d1e9a0629879bfe635343f6b8cfa9d3551bba17c40ca9407d6f5aa2775
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/the doge from dogecoin_20_1.5.png ADDED

Git LFS Details

  • SHA256: 884b77bceb15c54f4d8dc825d4776fbb2ef561a204a957812a5ab16e41d553cc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/the doge from dogecoin_20_3.0.png ADDED

Git LFS Details

  • SHA256: a71ef1c3627070f0342496771d5871cf5e36a8712f5556785cef59134421d1ee
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/the doge from dogecoin_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 76b78240da79d34890d818636409f3895567a04f3319c06d777c342b89b2dc9d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/the doge from dogecoin_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 5492928369d4cc0e8660d433c5331f772cccc4d25e8a4eb7ee1b0b636de2f303
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/the doge from dogecoin_21_0.0.png ADDED

Git LFS Details

  • SHA256: 252a7e71ad0363007ff06852532828347692aaf1ba91b720ea78238a8d27362a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
images/the doge from dogecoin_21_1.5.png ADDED

Git LFS Details

  • SHA256: 77227be7c57abca308846afca0ad9b1a344a498a09b4f69f24a9647c7568f51a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/the doge from dogecoin_21_3.0.png ADDED

Git LFS Details

  • SHA256: 87416478bf06ad0192c615fa765e0ff1af9e4ddc9b0ead02bc92e65200801263
  • Pointer size: 132 Bytes
  • Size of remote file: 1.24 MB
images/the doge from dogecoin_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 9239a655bfbdf831fe8b737b9938c0bb610bf0262e93976ad9a671d5687a2fd6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/the doge from dogecoin_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 1de7789891ffcd922bd73fa822748906f819447583b9572c5d43790d9c32470b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/the doge from dogecoin_22_0.0.png ADDED

Git LFS Details

  • SHA256: a1fb3f1b8a40c295e7cb3d7afc89d1989be2c13981ff558c19998b4d27336cf3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/the doge from dogecoin_22_1.5.png ADDED

Git LFS Details

  • SHA256: a84a0f0ca277e8de5846320c23a92572dc6073580d4469b97db80a0e074d1dc2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/the doge from dogecoin_22_3.0.png ADDED

Git LFS Details

  • SHA256: 2796e8b94d3fe0b54c487bf9375f0cd7d08c6d330cdf325e14dc95318054dc43
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
the doge from dogecoin.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa4fee10842dcf153b4dd20441f91da4900dfbbc274361bf1e4ad6a04dec2217
3
+ size 8789076