ntc-ai commited on
Commit
bb7c94e
1 Parent(s): 4b91689

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/wide angle.../wide angle_17_3.0.png"
6
+ widget:
7
+ - text: wide angle
8
+ output:
9
+ url: images/wide angle_17_3.0.png
10
+ - text: wide angle
11
+ output:
12
+ url: images/wide angle_19_3.0.png
13
+ - text: wide angle
14
+ output:
15
+ url: images/wide angle_20_3.0.png
16
+ - text: wide angle
17
+ output:
18
+ url: images/wide angle_21_3.0.png
19
+ - text: wide angle
20
+ output:
21
+ url: images/wide angle_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: "wide angle"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - wide angle (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/wide angle_17_-3.0.png" width=256 height=256 /> | <img src="images/wide angle_17_0.0.png" width=256 height=256 /> | <img src="images/wide angle_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/wide angle_19_-3.0.png" width=256 height=256 /> | <img src="images/wide angle_19_0.0.png" width=256 height=256 /> | <img src="images/wide angle_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/wide angle_20_-3.0.png" width=256 height=256 /> | <img src="images/wide angle_20_0.0.png" width=256 height=256 /> | <img src="images/wide angle_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
+ wide angle
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.wide-angle', weight_name='wide angle.safetensors', adapter_name="wide angle")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["wide angle"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, wide angle"
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 650+ 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/wide angle_17_-1.5.png ADDED

Git LFS Details

  • SHA256: b1c8d9c3643419a70e58140a05d4bbb5a5d24ed177eba5bd88a9c5508367b5b8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/wide angle_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 2c460f4a04b99d9adfb4d3c53e331538316f1d550852a9fee3f5fad167953068
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/wide angle_17_0.0.png ADDED

Git LFS Details

  • SHA256: 8d115e0f3728861866978c021a1670febba65c63b77c7ab294405510d73b780e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/wide angle_17_1.5.png ADDED

Git LFS Details

  • SHA256: a103b8e71aa3af8c6351c3a99ad2a2bde6a08519181be0f6254647a50e182697
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/wide angle_17_3.0.png ADDED

Git LFS Details

  • SHA256: 508f608bc6af5a0b6a1ceb2b890c6410378d81c1478d55d24cd92c7a9cde8ef9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/wide angle_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 316f6b5ab515a22dce8a6bbae55a5bb39d12be0e375d5867f5fbf4e32bdce80d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/wide angle_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 051f605853c5c58e36d1fed4e715eefc4d982e44a4af708955447d13d044e5ce
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/wide angle_19_0.0.png ADDED

Git LFS Details

  • SHA256: 9957384b8ceb8ac86077765b60e22dc97f06515d1691144d00229f3c810b354d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/wide angle_19_1.5.png ADDED

Git LFS Details

  • SHA256: ba096bb4b5d20f797aa8092a08c983d0f347b8468d34b038deba64b60050fc85
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/wide angle_19_3.0.png ADDED

Git LFS Details

  • SHA256: 542b911fb87270096502bcbb0033abf8c3bd26090599fd1548a50426b172ccdc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/wide angle_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 8eb496082a511b86dff96779c3a2ab4fb34f58028a9a6a35cbb6e0540a9dc4ca
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/wide angle_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 181620d3ab079818b7aeb749b6782ecf1279f6d0adc364af0ad3cdffe1c08176
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/wide angle_20_0.0.png ADDED

Git LFS Details

  • SHA256: c28a9742e05cf17edc36f82ef8d6f4654af01d71a79c946e108cc548c9b33d08
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/wide angle_20_1.5.png ADDED

Git LFS Details

  • SHA256: aabcad99409d957a76aba37d2702c9d1680770f476e77ed353d2c6c048d7f808
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/wide angle_20_3.0.png ADDED

Git LFS Details

  • SHA256: 5cd47798c75d89caeda9f9d4340cb6d70057e5500d114decf3aac0cef356a997
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/wide angle_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 87cadb06800d7dc6ad3e03784f77339695f562ef50b1260ddce60a12cac3bd88
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/wide angle_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 5329e3f3728ba4cf352069a42eb70cd7b4d26febf14ed2d732dad62e3cbbafa8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/wide angle_21_0.0.png ADDED

Git LFS Details

  • SHA256: c44b8734d60dd82a59bc209507607c32268dc3b68797ede60d2afa1d9b92c1ea
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/wide angle_21_1.5.png ADDED

Git LFS Details

  • SHA256: e9d6ddd69efa184f3d6c48dcb3055c72257a88aa6ca5abc8f247cf9bc1dfdd27
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/wide angle_21_3.0.png ADDED

Git LFS Details

  • SHA256: fdd1d524c7ed58dee2d12ca3cda845ef37ebdb7c8c89fd40adb502230ed250b1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/wide angle_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 2d21543994a1eec8ab70615bf25caef8a88ccffaa01461eee91d9bd322f9c309
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/wide angle_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 5ffdd5c05025786e0359629396202a0a082aca5398dafa96b4da6a1be2b79016
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/wide angle_22_0.0.png ADDED

Git LFS Details

  • SHA256: a6cc427f2cca3e0bbf43abb0cb3cd1a6daa07d4ee4e6e223396f351a9a586bcf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/wide angle_22_1.5.png ADDED

Git LFS Details

  • SHA256: 59f9c5f160bad5af42144a3e28470a2726fe301b63be616a427e59a1cbfe0c4c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/wide angle_22_3.0.png ADDED

Git LFS Details

  • SHA256: 4232cef1c7ee1502030897e1709beb07680ad30c53e747fadbc71cd5d3cecfd3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
wide angle.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a78d587ebd27161997240c5a3d1adfe866bb9941219536e1c94c70c29de179e9
3
+ size 8789076