ntc-ai commited on
Commit
45b5414
1 Parent(s): d3a306a

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/cartoon...sitcom/cartoon_17_3.0.png"
6
+ widget:
7
+ - text: cartoon
8
+ output:
9
+ url: images/cartoon_17_3.0.png
10
+ - text: cartoon
11
+ output:
12
+ url: images/cartoon_19_3.0.png
13
+ - text: cartoon
14
+ output:
15
+ url: images/cartoon_20_3.0.png
16
+ - text: cartoon
17
+ output:
18
+ url: images/cartoon_21_3.0.png
19
+ - text: cartoon
20
+ output:
21
+ url: images/cartoon_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: "cartoon"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - cartoon (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/cartoon_17_-3.0.png" width=256 height=256 /> | <img src="images/cartoon_17_0.0.png" width=256 height=256 /> | <img src="images/cartoon_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/cartoon_19_-3.0.png" width=256 height=256 /> | <img src="images/cartoon_19_0.0.png" width=256 height=256 /> | <img src="images/cartoon_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/cartoon_20_-3.0.png" width=256 height=256 /> | <img src="images/cartoon_20_0.0.png" width=256 height=256 /> | <img src="images/cartoon_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
+ cartoon
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.cartoon', weight_name='cartoon.safetensors', adapter_name="cartoon")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["cartoon"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, cartoon"
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 430+ 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
cartoon.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be0c1f56dcd30cfa9aa1f5ccbbd120daba8793b594b1c712b08c6bd0c0d6a110
3
+ size 8789076
images/cartoon_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 1bd904cfe7b216cf21d3ba444264cd4e2aa6201a783f2f21040b5f2358151c17
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/cartoon_17_-3.0.png ADDED

Git LFS Details

  • SHA256: f11bb935996ef214ca4dcd4f394b99428af44ee3b94c45e54fc036e547e05345
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/cartoon_17_0.0.png ADDED

Git LFS Details

  • SHA256: 8590edd2e684929dcdd34dbf4c01f370a142d92fafbe7efb93d1307eb4aeec77
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/cartoon_17_1.5.png ADDED

Git LFS Details

  • SHA256: 165f9a589f2e898bd39e9a343b4ac5f14252551ea10bc4403e39ccdd7396bcbd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/cartoon_17_3.0.png ADDED

Git LFS Details

  • SHA256: df3f856d668c634d7b2ba2e78f5a2381187225188e83d9a484fc032947b5ad43
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/cartoon_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 2ce08488fc8d7502e75e60c28b2ad396408147a292fe585d73d61f31a258edd8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/cartoon_19_-3.0.png ADDED

Git LFS Details

  • SHA256: e8f4cdc7aa681ab4870713f4b17da11f82b0fa52456ea2cfe847951baece9963
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/cartoon_19_0.0.png ADDED

Git LFS Details

  • SHA256: d97bd03f940936ffa0bf3a1c4e9ae20d8318aa71534c537360907097498e99b5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/cartoon_19_1.5.png ADDED

Git LFS Details

  • SHA256: 3d472302a4826b75630e62317d21034fb45be045bc3b19f5c8e3e947cb3bb86a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/cartoon_19_3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 0a86a58ec76b1a288b01f20e5cae97750290d56cce2633342228accaca78b2a2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/cartoon_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 769d87937066545a57217c6c5c1463165dab962c7f8ea44bfbb8a1391d334d61
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/cartoon_20_0.0.png ADDED

Git LFS Details

  • SHA256: 72058c1a8206f598a5ca96549a61d1cce8a5f37f168b089b9a16daf7cb885075
  • Pointer size: 132 Bytes
  • Size of remote file: 1.42 MB
images/cartoon_20_1.5.png ADDED

Git LFS Details

  • SHA256: c952c95abd98001dd43dfe29665e98cd391ff30f6ca5237618232992dbddf615
  • Pointer size: 132 Bytes
  • Size of remote file: 1.4 MB
images/cartoon_20_3.0.png ADDED

Git LFS Details

  • SHA256: 025b43aeac83f40c5c01c008a483e67e2b6f70e8849237f2d2871fc566204045
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/cartoon_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 8c6e0172ee20d4fd7e77e87baadc6faef869458cfb76b8011ba9279a5f645c00
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/cartoon_21_-3.0.png ADDED

Git LFS Details

  • SHA256: f2bd13bd5f35b642cc2c363297553cc11d54d3a4d32bb400aaeed255f5739953
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/cartoon_21_0.0.png ADDED

Git LFS Details

  • SHA256: 8a17f1bfde34da0d00986ab4d3dd2c9113b1fe061e4e4e8d0a7bac6b20d99c88
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/cartoon_21_1.5.png ADDED

Git LFS Details

  • SHA256: 8668d99dd66af7697117aa238b96e4588eb80d2213ca8ba54726525e390a5f7e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/cartoon_21_3.0.png ADDED

Git LFS Details

  • SHA256: bc8b9378a16cf0927449f562b7a00b51211bbabb6a699b44a5c5255fdac16732
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/cartoon_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 750c379e0d0aca7bd57d62008fb8676256749f74ebffb435ea2f139d3a0d0ee2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/cartoon_22_-3.0.png ADDED

Git LFS Details

  • SHA256: f66770955ecbcfc340de43083c93bbeab1db04b39039ee0cd60afd4be725df28
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/cartoon_22_0.0.png ADDED

Git LFS Details

  • SHA256: 8097e9526e354768129682066c7c2fbf276a24f33174a9c7fbc88dd100fb5d08
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/cartoon_22_1.5.png ADDED

Git LFS Details

  • SHA256: 96b24a21909546998d05be48a5a937a74d465b86ace4a5595e9f9061ca1a6c65
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/cartoon_22_3.0.png ADDED

Git LFS Details

  • SHA256: 3cb491dd1d88b192cbb7e6dcab2ae4518e1379e64d67e2c1b490b0d8ce1627e6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB