ntc-ai commited on
Commit
d727f00
1 Parent(s): 8aec512

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/absolutely terrified.../absolutely terrified_17_3.0.png"
6
+ widget:
7
+ - text: absolutely terrified
8
+ output:
9
+ url: images/absolutely terrified_17_3.0.png
10
+ - text: absolutely terrified
11
+ output:
12
+ url: images/absolutely terrified_19_3.0.png
13
+ - text: absolutely terrified
14
+ output:
15
+ url: images/absolutely terrified_20_3.0.png
16
+ - text: absolutely terrified
17
+ output:
18
+ url: images/absolutely terrified_21_3.0.png
19
+ - text: absolutely terrified
20
+ output:
21
+ url: images/absolutely terrified_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: "absolutely terrified"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - absolutely terrified (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/absolutely terrified_17_-3.0.png" width=256 height=256 /> | <img src="images/absolutely terrified_17_0.0.png" width=256 height=256 /> | <img src="images/absolutely terrified_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/absolutely terrified_19_-3.0.png" width=256 height=256 /> | <img src="images/absolutely terrified_19_0.0.png" width=256 height=256 /> | <img src="images/absolutely terrified_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/absolutely terrified_20_-3.0.png" width=256 height=256 /> | <img src="images/absolutely terrified_20_0.0.png" width=256 height=256 /> | <img src="images/absolutely terrified_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
+ absolutely terrified
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.absolutely-terrified', weight_name='absolutely terrified.safetensors', adapter_name="absolutely terrified")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["absolutely terrified"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, absolutely terrified"
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 840+ 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
absolutely terrified.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8a491ff7f974c61379cfc4598c6291c82930e201a9e9d0f84bee6fddb3423c9
3
+ size 8789076
images/absolutely terrified_17_-1.5.png ADDED

Git LFS Details

  • SHA256: b58cdee7a34c7eef6e5ad8c7835ba0a7cb49ca2ac0e4eef4c6bff4fe354d7c9e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/absolutely terrified_17_-3.0.png ADDED

Git LFS Details

  • SHA256: f2122e1f6ce367136a0acf2ea56f22887386e0f5b3958732974413e4a5b04494
  • Pointer size: 132 Bytes
  • Size of remote file: 1.26 MB
images/absolutely terrified_17_0.0.png ADDED

Git LFS Details

  • SHA256: aa0607612b20c90cbe0c9691dae9705a200dc4ea0c3ee0f7a431110cb7becb62
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/absolutely terrified_17_1.5.png ADDED

Git LFS Details

  • SHA256: ee87f0b97d74403bad4356ce18b7a6792e45ba4a4121c5f90aeb1a6fb385e0e1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/absolutely terrified_17_3.0.png ADDED

Git LFS Details

  • SHA256: f19b37035e1c43fe8543b0877d3037d40c83f18b0a25b30d0e476ff5b3e1f603
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/absolutely terrified_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 7b1427df32f22c75bfa22587a0d580c2e24bf2da990e1d29b2626c4dec471472
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/absolutely terrified_19_-3.0.png ADDED

Git LFS Details

  • SHA256: ed1c1992b34d6a46be0670013a0b2e831b86ed265d8701482a786139645184ce
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/absolutely terrified_19_0.0.png ADDED

Git LFS Details

  • SHA256: 9631af122c36426782718d53206dfbf9d221ca0a2fef2b11c28dc015d6812d0c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/absolutely terrified_19_1.5.png ADDED

Git LFS Details

  • SHA256: 3f2f86f0ba61ef10daff7ccc251f41d82a827ab62e15673e738f028e6fdca18b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/absolutely terrified_19_3.0.png ADDED

Git LFS Details

  • SHA256: fbee08e1b11aefb3d9ef54b62c4a84cfd40ce4dbc8ae9433b5a436ab15c03560
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/absolutely terrified_20_-1.5.png ADDED

Git LFS Details

  • SHA256: b2c4605562059bf9d46c647fcd1d813a479704cb3a40ea2ca2b164b5ed4ff805
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/absolutely terrified_20_-3.0.png ADDED

Git LFS Details

  • SHA256: f133a917baace743f465097760d3d7b9393aef984c73077d3196e253828faf99
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/absolutely terrified_20_0.0.png ADDED

Git LFS Details

  • SHA256: c497033ffb6717457bc17113d182c899e8bc238ee81af7eaebdd61fec38afe12
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/absolutely terrified_20_1.5.png ADDED

Git LFS Details

  • SHA256: e9dbb277ef9d5cc5df5e82aea68ba92a9d2d324d677c6b649d1bc5b6b1bb51be
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/absolutely terrified_20_3.0.png ADDED

Git LFS Details

  • SHA256: 0bded3cad5603e01066ea78f57a9c1a3fff19325337ca753235c7545fe2377c5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/absolutely terrified_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 3de15dd6779a44b542146b5586724c7f06f4f294513634d22accf5afc69bb412
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/absolutely terrified_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 26ea76569c636c7f1b9cab94cbb063bae495e420d6c269944ce1e2e872bd9ae3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/absolutely terrified_21_0.0.png ADDED

Git LFS Details

  • SHA256: 8c9e90bd232e6d7fed2fe188409b6fe45350644e4bfa0febd82664163beda0d5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/absolutely terrified_21_1.5.png ADDED

Git LFS Details

  • SHA256: f223dbf2b07e6e79be44a95f6fed40bd34218510ec7b79f52055fbca9861d7af
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/absolutely terrified_21_3.0.png ADDED

Git LFS Details

  • SHA256: 2fb09b22526eafc13f1ccb0562e1c7b55b00ed2990ed935a57833f4a2cde29f2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/absolutely terrified_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 83b3d37ad3c5fe6928f7a56f5b0631d43921bda9ba5ddafcef904b51471f5990
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/absolutely terrified_22_-3.0.png ADDED

Git LFS Details

  • SHA256: d6661ef2119e1df4210c88f1feac58f033640ce1a9e73804b1c8a0905d9c05c4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/absolutely terrified_22_0.0.png ADDED

Git LFS Details

  • SHA256: 9cf4965e471b8ba2da7cf9a5c04a7440b33f0bfe3ebb4265070f76e2a2f7a09a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/absolutely terrified_22_1.5.png ADDED

Git LFS Details

  • SHA256: f3d1cd72f3a3d8e5d9ff794755107e89ef5b669d5a77f4dc584cd5ed2c74fa05
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/absolutely terrified_22_3.0.png ADDED

Git LFS Details

  • SHA256: 642b9229bafb192e5d37b504f8e12c2bcbb5ea0c3784df4bc471dcb9c9334296
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB