ntc-ai commited on
Commit
53161a1
1 Parent(s): 78337fe

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/cinematic lighting.../cinematic lighting_17_3.0.png"
6
+ widget:
7
+ - text: cinematic lighting
8
+ output:
9
+ url: images/cinematic lighting_17_3.0.png
10
+ - text: cinematic lighting
11
+ output:
12
+ url: images/cinematic lighting_19_3.0.png
13
+ - text: cinematic lighting
14
+ output:
15
+ url: images/cinematic lighting_20_3.0.png
16
+ - text: cinematic lighting
17
+ output:
18
+ url: images/cinematic lighting_21_3.0.png
19
+ - text: cinematic lighting
20
+ output:
21
+ url: images/cinematic lighting_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: "cinematic lighting"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - cinematic lighting (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/cinematic lighting_17_-3.0.png" width=256 height=256 /> | <img src="images/cinematic lighting_17_0.0.png" width=256 height=256 /> | <img src="images/cinematic lighting_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/cinematic lighting_19_-3.0.png" width=256 height=256 /> | <img src="images/cinematic lighting_19_0.0.png" width=256 height=256 /> | <img src="images/cinematic lighting_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/cinematic lighting_20_-3.0.png" width=256 height=256 /> | <img src="images/cinematic lighting_20_0.0.png" width=256 height=256 /> | <img src="images/cinematic lighting_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
+ cinematic lighting
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.cinematic-lighting', weight_name='cinematic lighting.safetensors', adapter_name="cinematic lighting")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["cinematic lighting"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, cinematic lighting"
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 1140+ 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
cinematic lighting.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:529daf6ffd2d73bf54a1a923cac66b6c2a3e4e80998d05498d48208266bfda6c
3
+ size 8789076
images/cinematic lighting_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 130c9a66d7e64a0cb4007c1eeed410c8e0b135fdb650faaea8f4003d342b4017
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/cinematic lighting_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 584f7825a81cc2fc8689f75c88ced70a020eb1d1deb67f1e1983c7686102aced
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/cinematic lighting_17_0.0.png ADDED

Git LFS Details

  • SHA256: b0d4cafd6dd8267a242127894c96cbbc2830f1ea53658258fd22f96c1cdc6851
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/cinematic lighting_17_1.5.png ADDED

Git LFS Details

  • SHA256: 8e08461e161da76067848b0cf6be78de8787c31b505a05d9ad7ef99223b3b045
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
images/cinematic lighting_17_3.0.png ADDED

Git LFS Details

  • SHA256: 156d7b872dd8d273e713811c4b8c268244ebc74edf12cb16f07cc0caed071dc8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.2 MB
images/cinematic lighting_19_-1.5.png ADDED

Git LFS Details

  • SHA256: bfc26d17fb91997b8951940177e7a51f27e13cd80ee9f7d7db822534581e3ccf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/cinematic lighting_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 98baab8ebcfac4a413ae257590613c68ceab7dec41d7c4d86db49f96f67d8cc8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/cinematic lighting_19_0.0.png ADDED

Git LFS Details

  • SHA256: cf74113150aa41aba680d23ca8c63dc61f1100f27dfdd24a1a22c2f3b4c222e5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/cinematic lighting_19_1.5.png ADDED

Git LFS Details

  • SHA256: a247e7a60f28cdabdfa3fa1ce4fcca603a8c8807344376c0f35ebe6c9c23cc18
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/cinematic lighting_19_3.0.png ADDED

Git LFS Details

  • SHA256: 3203141e3fe186de24550df0f26d83738a97f3ceee9c895898d0a08aee2bd185
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
images/cinematic lighting_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 3979cc3b3a8d1f564adb749bc60a9e7bd884a6e480885f20ae7b6e6643f250d2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/cinematic lighting_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 6887545b1ec8508fb4f928e71ae599ea9bb8267669036c4b08f3aa1db1033dfa
  • Pointer size: 132 Bytes
  • Size of remote file: 1.72 MB
images/cinematic lighting_20_0.0.png ADDED

Git LFS Details

  • SHA256: 42906dd18b1afc8f4ca06080fa9f15285ad1290374cd23cff7b6df0a3fec55b2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/cinematic lighting_20_1.5.png ADDED

Git LFS Details

  • SHA256: ca1dabb5e1ba0711484dc2f93c576b258d48ed3928c63500b1d84412401e46cd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/cinematic lighting_20_3.0.png ADDED

Git LFS Details

  • SHA256: 6912add9173f0867382a9453709b68ec63e2df1dd9f607d471f0cdae651d6300
  • Pointer size: 132 Bytes
  • Size of remote file: 1.23 MB
images/cinematic lighting_21_-1.5.png ADDED

Git LFS Details

  • SHA256: c5eaf8ef60d676c621ccea2e13428e61ef2be4833805a6d3e488e6acea563316
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/cinematic lighting_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 33f634be596593f6fbe60d96ee7eca101bc1834d5dd06c2bd5161c4623f3a515
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/cinematic lighting_21_0.0.png ADDED

Git LFS Details

  • SHA256: 71969e7b6cbd9c5a81c4fac0b9cb4db2383beccfbabfbfaea6220ae596bbe5eb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/cinematic lighting_21_1.5.png ADDED

Git LFS Details

  • SHA256: 9ebeae1b0ee3297c75db7a0b8f6de43183643eb5b830e06301f74b536b3cb48d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/cinematic lighting_21_3.0.png ADDED

Git LFS Details

  • SHA256: 01ba3c7c4d484947e54a3e983d6bdaa79d5d8eddd73fe27d40c9e305ae19a286
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/cinematic lighting_22_-1.5.png ADDED

Git LFS Details

  • SHA256: a9f17f10b4ce729b015791abd58858568e1a1e83c99058f8692e8e2e35af6d3d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/cinematic lighting_22_-3.0.png ADDED

Git LFS Details

  • SHA256: e0e658010800add2662e266972aa74613d0ae74076ba6179c28c19949e06345e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/cinematic lighting_22_0.0.png ADDED

Git LFS Details

  • SHA256: 191fbe098fb1aaac9eb219c9ac079c0f9b62863da1ea1f25e4b9ff21c2a1a3fd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/cinematic lighting_22_1.5.png ADDED

Git LFS Details

  • SHA256: ff729373e19014f003e6d0d7a5f901fab0cc8ee18d6af753c987cff87cfd9a0d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/cinematic lighting_22_3.0.png ADDED

Git LFS Details

  • SHA256: acc1f9792c2406f989513305def4280223b52e093c74c07ce613a035a8515a89
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB