ntc-ai commited on
Commit
90dc46f
1 Parent(s): edbdf2c

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/color grading.../color grading_17_3.0.png"
6
+ widget:
7
+ - text: color grading
8
+ output:
9
+ url: images/color grading_17_3.0.png
10
+ - text: color grading
11
+ output:
12
+ url: images/color grading_19_3.0.png
13
+ - text: color grading
14
+ output:
15
+ url: images/color grading_20_3.0.png
16
+ - text: color grading
17
+ output:
18
+ url: images/color grading_21_3.0.png
19
+ - text: color grading
20
+ output:
21
+ url: images/color grading_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: "color grading"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - color grading (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/color grading_17_-3.0.png" width=256 height=256 /> | <img src="images/color grading_17_0.0.png" width=256 height=256 /> | <img src="images/color grading_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/color grading_19_-3.0.png" width=256 height=256 /> | <img src="images/color grading_19_0.0.png" width=256 height=256 /> | <img src="images/color grading_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/color grading_20_-3.0.png" width=256 height=256 /> | <img src="images/color grading_20_0.0.png" width=256 height=256 /> | <img src="images/color grading_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
+ color grading
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.color-grading', weight_name='color grading.safetensors', adapter_name="color grading")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["color grading"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, color grading"
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 1130+ 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
color grading.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce2e29173bdd4663ba722fae3df678c5526483a411b40f7ccd584ad0d80a5fa1
3
+ size 8789076
images/color grading_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 9bf3924c02d911b0283e6904cc0dcdfcd3ffdc5c67b9b9706217b4b51352b39b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.76 MB
images/color grading_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 58de77671b6fcc89573fa39444a73d8670bd8ab95e4e611c1acc3d1b49c236c2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.81 MB
images/color grading_17_0.0.png ADDED

Git LFS Details

  • SHA256: 515321065f047b26a9153c26e6be8dc0f5e54443b28892bb7d7462f44f2ed212
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/color grading_17_1.5.png ADDED

Git LFS Details

  • SHA256: 16bf63ecf2fdd3fbf7e0cca5046aa8213d532312eb12cd83e7e363e5a69e945a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/color grading_17_3.0.png ADDED

Git LFS Details

  • SHA256: d18fe9009e7f22781590674a18b2466d20f2900c02b7263aebbe0ec61e4b026b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/color grading_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 50b206e79dc17421ce0471bdcc4c77c45e6893b31641f58da64cdcce7674ed56
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/color grading_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 870e0d4bf52dfdf7b6da2990a71da13643c05dca606b603ef7753837eb4ea3f5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/color grading_19_0.0.png ADDED

Git LFS Details

  • SHA256: 058732ed6cf677f2daf7b36b91afc0f09cba96a93959f0b1e7812e62475ea935
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/color grading_19_1.5.png ADDED

Git LFS Details

  • SHA256: b63b5eccbf8fe68b8f3855809bdd144924280a4ce42256da3b453c91d3510708
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/color grading_19_3.0.png ADDED

Git LFS Details

  • SHA256: 4040475de6bfe2f189da28ee0e76f6aa1ab94c313700fbc625214ed5201a3f69
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/color grading_20_-1.5.png ADDED

Git LFS Details

  • SHA256: e838f3aee7ac978145250841725a97eb4735955e93a546ea80dd6752072facb7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/color grading_20_-3.0.png ADDED

Git LFS Details

  • SHA256: f7b19dd01b68ae061834b38769c52ea9b45f9fc7dad19a9527a75a9efd6a6ec4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/color grading_20_0.0.png ADDED

Git LFS Details

  • SHA256: bda6a2c124b4cad1c987ed7767d9749d2c0713160f8606affd23fc700824aa73
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/color grading_20_1.5.png ADDED

Git LFS Details

  • SHA256: 513f21cb87c1bcbbd650ac554bbbdb40515076b6a6ad0d5052e0ee140381a310
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/color grading_20_3.0.png ADDED

Git LFS Details

  • SHA256: 569f2d2f850955ece29092897a60df2849ebd7964b1bb17287de2df13604c0e6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/color grading_21_-1.5.png ADDED

Git LFS Details

  • SHA256: ec717f8f5cc16d914265f0da613b0cf304ae5d07d0798edbe2c1b07fa85ddc0f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/color grading_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 0c6e3cdafcf744ed1ffaeab0d1c7f55d04319d23f1854630cbeeed1f23360e10
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/color grading_21_0.0.png ADDED

Git LFS Details

  • SHA256: e3e2c090e7e0fd2346fdf1be61aa4b219cbdf27d8a4320f5d2c03f60d38185cf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/color grading_21_1.5.png ADDED

Git LFS Details

  • SHA256: dd6f6ac916c9bfe671c4929c41baaefdfc5ae5688eac4b6eabd4629a282f322b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/color grading_21_3.0.png ADDED

Git LFS Details

  • SHA256: 24f4a31be2262afa5380f0953621a4a10b027bbcac419d17a190dba8964772c3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/color grading_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 230c698b23673a02c07250d31d7e56e449098a2a5c440658451dae20336719b4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.74 MB
images/color grading_22_-3.0.png ADDED

Git LFS Details

  • SHA256: e9b7eeb786e2d4bf99d8d6a923b9c5af9b935476be5827356c858fa272d74b39
  • Pointer size: 132 Bytes
  • Size of remote file: 1.75 MB
images/color grading_22_0.0.png ADDED

Git LFS Details

  • SHA256: c868213189992eb96e7d91b145039656551a743b862c97ef81f4240a327e5104
  • Pointer size: 132 Bytes
  • Size of remote file: 1.78 MB
images/color grading_22_1.5.png ADDED

Git LFS Details

  • SHA256: 34ce9ff1dec2ecee7513b3e208899a019d4a4e1a03f19e44d391d9e91e5f7f8a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.83 MB
images/color grading_22_3.0.png ADDED

Git LFS Details

  • SHA256: accd82bf9b598f5315fd1227fe44384b3d3519e4c1bddb089e31b11e57fd7c03
  • Pointer size: 132 Bytes
  • Size of remote file: 1.81 MB