ntc-ai commited on
Commit
c318dd1
·
1 Parent(s): f397caf

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/ferocious dragon...sleeping dragon/ferocious dragon_17_3.0.png"
6
+ widget:
7
+ - text: ferocious dragon
8
+ output:
9
+ url: images/ferocious dragon_17_3.0.png
10
+ - text: ferocious dragon
11
+ output:
12
+ url: images/ferocious dragon_19_3.0.png
13
+ - text: ferocious dragon
14
+ output:
15
+ url: images/ferocious dragon_20_3.0.png
16
+ - text: ferocious dragon
17
+ output:
18
+ url: images/ferocious dragon_21_3.0.png
19
+ - text: ferocious dragon
20
+ output:
21
+ url: images/ferocious dragon_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: "ferocious dragon"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - ferocious dragon (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/ferocious dragon_17_-3.0.png" width=256 height=256 /> | <img src="images/ferocious dragon_17_0.0.png" width=256 height=256 /> | <img src="images/ferocious dragon_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/ferocious dragon_19_-3.0.png" width=256 height=256 /> | <img src="images/ferocious dragon_19_0.0.png" width=256 height=256 /> | <img src="images/ferocious dragon_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/ferocious dragon_20_-3.0.png" width=256 height=256 /> | <img src="images/ferocious dragon_20_0.0.png" width=256 height=256 /> | <img src="images/ferocious dragon_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
+ ferocious dragon
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.ferocious-dragon', weight_name='ferocious dragon.safetensors', adapter_name="ferocious dragon")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["ferocious dragon"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, ferocious dragon"
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 290+ 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
ferocious dragon.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:826c0723704666c03546b5ead143d08ef979028eb400d8259136878ba23e8fbd
3
+ size 8789076
images/ferocious dragon_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 5f01d5f8516b54a5c66af8c0736cc553896938f4815e212523d2af8c6fb53368
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/ferocious dragon_17_-3.0.png ADDED

Git LFS Details

  • SHA256: ee2aac20ed5a6094f53e34c15c1f9b69f3408e66a3c2ab847e7e64de5ff85e41
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/ferocious dragon_17_0.0.png ADDED

Git LFS Details

  • SHA256: bcc1f5d0dc578d5add24e94af8a0d88f8f13a84a6c8ccbab9cf10ca73ad618c2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/ferocious dragon_17_1.5.png ADDED

Git LFS Details

  • SHA256: abbd7333f980e106de9d7715fe386b7608ce7ebd315eedb41fb58ce39053cbcf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/ferocious dragon_17_3.0.png ADDED

Git LFS Details

  • SHA256: 9faf40d457714c3de9e25cc61c58cee6d70fcff5cf97606ae6fa221f0c71f325
  • Pointer size: 132 Bytes
  • Size of remote file: 1.71 MB
images/ferocious dragon_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 016dfac59219830dca11bbf1483fc5409bad66c809a92471192e72fbd7112f85
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/ferocious dragon_19_-3.0.png ADDED

Git LFS Details

  • SHA256: d5e6bf7ba7fcaba6486b45fe8b47bbaca51667f9c78886a264d0c1a4b300316b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/ferocious dragon_19_0.0.png ADDED

Git LFS Details

  • SHA256: e13f88442cbedf1bad94ed4bd38c05534cf566134055a7f990b30e3070046f06
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/ferocious dragon_19_1.5.png ADDED

Git LFS Details

  • SHA256: 2703ce30d468f10e09fa919cd37c5e81967a612c8897257c155d6c46b3f02ae5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/ferocious dragon_19_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: e1a0ce215fe7fdb2bfaf5dd182c9d81f011f1556789076ee8c10e264acdd8f89
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/ferocious dragon_20_-3.0.png ADDED

Git LFS Details

  • SHA256: c99386a447a574dbe05a26a8ed88fd014ab6184a4f2e3beb6130a2dcd2e7914e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/ferocious dragon_20_0.0.png ADDED

Git LFS Details

  • SHA256: 305890e7d7d482426b8a98305bd2d8130781eafe6a829568d5de20d54dc138fd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/ferocious dragon_20_1.5.png ADDED

Git LFS Details

  • SHA256: 44fa190a08be59a4f2f5e384311a108a75521494c7d110086de9dc3339c24158
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/ferocious dragon_20_3.0.png ADDED

Git LFS Details

  • SHA256: 2ac314f87021bca4a05e6684cefcee7e68a3861a1ecba47b7b3eb98dc3f3665e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/ferocious dragon_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 8b9a75cd216d2c0be8d071803fe2e552d506a3bbbbe089f7c182968d0a47ab40
  • Pointer size: 132 Bytes
  • Size of remote file: 1.25 MB
images/ferocious dragon_21_-3.0.png ADDED

Git LFS Details

  • SHA256: c331f21fc53e9d69885cec76c40ee4dec4227ad982902f6d96ca930f17c64d4a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.22 MB
images/ferocious dragon_21_0.0.png ADDED

Git LFS Details

  • SHA256: aa5a8a8961504252319efd2a2889c99fe7fd65cefa3ec712beed5753a9bcfa1c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/ferocious dragon_21_1.5.png ADDED

Git LFS Details

  • SHA256: fcd6d162d265a49a784e49126bccb7139b2f8ebcf2de16ed67807dfd81b99333
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/ferocious dragon_21_3.0.png ADDED

Git LFS Details

  • SHA256: 42be820d0e3c428a6227da206efaa26cd9330ed54dce903b7bf8e299b818c98c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
images/ferocious dragon_22_-1.5.png ADDED

Git LFS Details

  • SHA256: b624b4f8fdb2e260fd22d2559f95dc39aa28dcbdb7ed57e228d1e942d0f8a707
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/ferocious dragon_22_-3.0.png ADDED

Git LFS Details

  • SHA256: e2f92a1d907af2945680d9e606c0c4238b7fa1d31e2502347c345bc0dfbdfce6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/ferocious dragon_22_0.0.png ADDED

Git LFS Details

  • SHA256: dbd3dfeabf89a2fac2e8fb909ea68ec117bd0e20df3c284c4457b6fb8bbb7935
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/ferocious dragon_22_1.5.png ADDED

Git LFS Details

  • SHA256: 076c10f80f1524bfc38be9e7ef47a5d8aa927c289949fd57d89e59b9649b96f5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/ferocious dragon_22_3.0.png ADDED

Git LFS Details

  • SHA256: 0c851fc7f1c588b421fcacd0e78107bdaf88e074a914c05b28a0d6444d96efd7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB