ntc-ai commited on
Commit
1c83757
1 Parent(s): 89313d8

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/Studio Ghibli style.../Studio Ghibli style_17_3.0.png"
6
+ widget:
7
+ - text: Studio Ghibli style
8
+ output:
9
+ url: images/Studio Ghibli style_17_3.0.png
10
+ - text: Studio Ghibli style
11
+ output:
12
+ url: images/Studio Ghibli style_19_3.0.png
13
+ - text: Studio Ghibli style
14
+ output:
15
+ url: images/Studio Ghibli style_20_3.0.png
16
+ - text: Studio Ghibli style
17
+ output:
18
+ url: images/Studio Ghibli style_21_3.0.png
19
+ - text: Studio Ghibli style
20
+ output:
21
+ url: images/Studio Ghibli style_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: "Studio Ghibli style"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - Studio Ghibli style (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/Studio Ghibli style_17_-3.0.png" width=256 height=256 /> | <img src="images/Studio Ghibli style_17_0.0.png" width=256 height=256 /> | <img src="images/Studio Ghibli style_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/Studio Ghibli style_19_-3.0.png" width=256 height=256 /> | <img src="images/Studio Ghibli style_19_0.0.png" width=256 height=256 /> | <img src="images/Studio Ghibli style_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/Studio Ghibli style_20_-3.0.png" width=256 height=256 /> | <img src="images/Studio Ghibli style_20_0.0.png" width=256 height=256 /> | <img src="images/Studio Ghibli style_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
+ Studio Ghibli style
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.Studio-Ghibli-style', weight_name='Studio Ghibli style.safetensors', adapter_name="Studio Ghibli style")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["Studio Ghibli style"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, Studio Ghibli style"
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 390+ 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
Studio Ghibli style.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:728c44e79ce4acc2feb5e14002332b12eb1c5005923a55c1b5b9c24db1031fbd
3
+ size 8789076
images/Studio Ghibli style_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 4caa63999994835a09c96391ba7017ac17409994c89225f7db996ad0ae13e8a1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/Studio Ghibli style_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 6295aef3706fa0f3ecf0f16c6468013c196f9752830f500bdd9174951ee0b993
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/Studio Ghibli style_17_0.0.png ADDED

Git LFS Details

  • SHA256: a9a2ce5022bf19854d4ab28cd458864b2f559b7ba5bf16a9c278cbd90e2271db
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/Studio Ghibli style_17_1.5.png ADDED

Git LFS Details

  • SHA256: cc562c7d6eb610aa1928209b84634976a27b1c7dec5cb7ec87616f771b22bf39
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/Studio Ghibli style_17_3.0.png ADDED

Git LFS Details

  • SHA256: a838b957f899f8b43c0195117936829d869a5c4d53ace24a36d85773ff8427a8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.39 MB
images/Studio Ghibli style_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 9d4737431367e13f31505797353a150cf62f8933dd908e49279233a958a47f6a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/Studio Ghibli style_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 6f7abce53f63d7bbb89e34c0c5edf1d31cdd9ab0c1472c36f3a4f16f2ee69711
  • Pointer size: 132 Bytes
  • Size of remote file: 1.77 MB
images/Studio Ghibli style_19_0.0.png ADDED

Git LFS Details

  • SHA256: ec97f8e2cbc200ca2ae9a96a112427b71e2ed64d8b7f3d0032b7b2c8d2448183
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/Studio Ghibli style_19_1.5.png ADDED

Git LFS Details

  • SHA256: a97598679bc1805a1e6a96c70e2795cb55450e217ad2eb486b4c8e583cbe77e6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images/Studio Ghibli style_19_3.0.png ADDED

Git LFS Details

  • SHA256: 02d8db69ecfef874d988bd01d2820e8e6c9da452587289056f4a11f6cb9bf4da
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB
images/Studio Ghibli style_20_-1.5.png ADDED

Git LFS Details

  • SHA256: cf6942c45554f0ca0016137515b14a1ab8a1f519791a8cda859c90625808257e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.84 MB
images/Studio Ghibli style_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 2ce45d57a8fa74c2ac06198276d669501721769f6c1b6cca2e3bccb2a82a416f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.87 MB
images/Studio Ghibli style_20_0.0.png ADDED

Git LFS Details

  • SHA256: ba1538efd523e876cc1c5e98029b29b389e6f5361876d3cf713b1e8e65a86354
  • Pointer size: 132 Bytes
  • Size of remote file: 1.75 MB
images/Studio Ghibli style_20_1.5.png ADDED

Git LFS Details

  • SHA256: 6e923b3f672636359e97ff63df078ef6fdd814ccc609c5f4cd57ed0ff0ea10a8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/Studio Ghibli style_20_3.0.png ADDED

Git LFS Details

  • SHA256: 5c2144a75fa182ca64dcb04f195d52adfd8adb668e6603c24c98785b26e0d82f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/Studio Ghibli style_21_-1.5.png ADDED

Git LFS Details

  • SHA256: b52f1b88027f4cbd5198b38e38a34ae345929682ea6d114d2b2723b0e4c11a7a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images/Studio Ghibli style_21_-3.0.png ADDED

Git LFS Details

  • SHA256: c0b12691466b4631d38f5f76ef9acc34126c94ee22ab1da09ff8e85ddb39be4c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/Studio Ghibli style_21_0.0.png ADDED

Git LFS Details

  • SHA256: 13b72e94688aa5a24b5c29555918c31697b70bd0f8450f8702baf1fd8f5169f8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/Studio Ghibli style_21_1.5.png ADDED

Git LFS Details

  • SHA256: b89796aee461c1f18b8cdd76037389f5383343b735e86aa08668fc729217fc2a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/Studio Ghibli style_21_3.0.png ADDED

Git LFS Details

  • SHA256: 421fddf6fc89595bd39adb4d415241b3362f09dfe7c548316a0274c0486486ab
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/Studio Ghibli style_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 158d475b0e363e2b83f5315451a8297b961ab237d3b73d1f21243c0c4ab7fc64
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/Studio Ghibli style_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 087e4319797b7a6470f568a1521879c81516951d17435cfc997b19449aba5331
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/Studio Ghibli style_22_0.0.png ADDED

Git LFS Details

  • SHA256: cf813b77582d7530e5d551137b5e54107050c085bd4f48a52f8f72f9c9075a38
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/Studio Ghibli style_22_1.5.png ADDED

Git LFS Details

  • SHA256: 1472159a9e3bce7c0815bc5846feec31b1b5edd78996df2b68d7c1e567c7a7af
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/Studio Ghibli style_22_3.0.png ADDED

Git LFS Details

  • SHA256: eb1e316bfe70841381292698094e8892335c7b29eb37ba679b6c685ccfc7c75a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB