ntc-ai commited on
Commit
bae75df
1 Parent(s): bc6ae39

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/fantasy.../fantasy_17_3.0.png"
6
+ widget:
7
+ - text: fantasy
8
+ output:
9
+ url: images/fantasy_17_3.0.png
10
+ - text: fantasy
11
+ output:
12
+ url: images/fantasy_19_3.0.png
13
+ - text: fantasy
14
+ output:
15
+ url: images/fantasy_20_3.0.png
16
+ - text: fantasy
17
+ output:
18
+ url: images/fantasy_21_3.0.png
19
+ - text: fantasy
20
+ output:
21
+ url: images/fantasy_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: "fantasy"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - fantasy (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/fantasy_17_-3.0.png" width=256 height=256 /> | <img src="images/fantasy_17_0.0.png" width=256 height=256 /> | <img src="images/fantasy_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/fantasy_19_-3.0.png" width=256 height=256 /> | <img src="images/fantasy_19_0.0.png" width=256 height=256 /> | <img src="images/fantasy_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/fantasy_20_-3.0.png" width=256 height=256 /> | <img src="images/fantasy_20_0.0.png" width=256 height=256 /> | <img src="images/fantasy_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
+ fantasy
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.fantasy', weight_name='fantasy.safetensors', adapter_name="fantasy")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["fantasy"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, fantasy"
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 670+ 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
fantasy.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe18ba6fb8c53ffc169171bb89059ab8cf5c94f374f378d0c649b8e7702fdb70
3
+ size 8789076
images/fantasy_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 8cd45be59a48b7f8844d9dabb2d74aff67d1025ca92916af1dcc6142230a0298
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
images/fantasy_17_-3.0.png ADDED

Git LFS Details

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

Git LFS Details

  • SHA256: 57dea434235529728d05b918a9fb171980f78227907a3182e685e6f5b9e6c7e3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/fantasy_17_1.5.png ADDED

Git LFS Details

  • SHA256: d471cf7a23e01ed5f1ebb8707dc68f171971b9fdc54bed958cde4ce9730389db
  • Pointer size: 132 Bytes
  • Size of remote file: 1.46 MB
images/fantasy_17_3.0.png ADDED

Git LFS Details

  • SHA256: 6f3627c49a18a316fdd1e82f8b9a0133af6d8b02bcb090259f6f6077a58e2da6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/fantasy_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 1298388762b61cb2877935d237caa8b127f193239652c3423740076649a9bcee
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/fantasy_19_-3.0.png ADDED

Git LFS Details

  • SHA256: ac711b6160db4904a7728f47bd0b0b9db51fc0e8137eddeb5d8b8844bbc95260
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB
images/fantasy_19_0.0.png ADDED

Git LFS Details

  • SHA256: b3dde24788cfe456b4407cd647cd78bd1dc7b40282270b09cd457a5b9fce2740
  • Pointer size: 132 Bytes
  • Size of remote file: 1.68 MB
images/fantasy_19_1.5.png ADDED

Git LFS Details

  • SHA256: db690bf20cc193107266d83c253e0e2ef32b3885670e990c5f1a503730ae1823
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/fantasy_19_3.0.png ADDED

Git LFS Details

  • SHA256: 549f48dd49dfe2b03c1b11f8d5cf8f429bf985b0cf41a55ceeae8babddb5fcf2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/fantasy_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 866ad31d2b19a871932c06b48fa5d353fba2847b279bd5cdd6ddb51322e236c4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/fantasy_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 8d54c52ad63a9a522d7273e1a9e28f755eb73ba7d8dab79043cb205c6ef65de7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images/fantasy_20_0.0.png ADDED

Git LFS Details

  • SHA256: 69ad26d839d3c6923abc9c4f20e1ac14fad496404e6b16bc13cf83a97ef84943
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/fantasy_20_1.5.png ADDED

Git LFS Details

  • SHA256: 23fa7ccaa34d9bdc01d02387b1d6a79d0d450c4e0442ea2a65503c58ce348068
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
images/fantasy_20_3.0.png ADDED

Git LFS Details

  • SHA256: 9bba09d88e49ac98d614e2389c0897cf616bcb3a1f571db31e2716e04b24b921
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/fantasy_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 8bcad33009324a5a35244dcbbab9de9fcccf2deec14fed886992a2751ac1aef4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/fantasy_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 1879d3843ba9a7c3a860a2a322870893bdcc70e8d426122e8246cccd10c67075
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/fantasy_21_0.0.png ADDED

Git LFS Details

  • SHA256: a27ab8198704c2ade06394f3c6a7c37f2cda0cffd273b4c9bc4d735edf070038
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/fantasy_21_1.5.png ADDED

Git LFS Details

  • SHA256: dcfa83b563354e5ca53162027950578fb1caa78be5f3edf69946d8080f23ae5a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/fantasy_21_3.0.png ADDED

Git LFS Details

  • SHA256: ed8389a3fcecfc494dbf1e303b755292c6e21687d533a74ef6d6dc69f3a7c79a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/fantasy_22_-1.5.png ADDED

Git LFS Details

  • SHA256: e92e660e7a7c87c03689a8c76638c121a5eaf497132d08239dcfb4be6bd08431
  • Pointer size: 132 Bytes
  • Size of remote file: 1.71 MB
images/fantasy_22_-3.0.png ADDED

Git LFS Details

  • SHA256: 01d9329eff20b76a2e44dd0c57d56f42d2cb919b68803d5354ba3b51a7891287
  • Pointer size: 132 Bytes
  • Size of remote file: 1.75 MB
images/fantasy_22_0.0.png ADDED

Git LFS Details

  • SHA256: c10c321d142c230545e54d018c0ec6686a977d00ba4d166d60ebc52a6bd8ab6d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
images/fantasy_22_1.5.png ADDED

Git LFS Details

  • SHA256: 291b3288cb108217ea2186c23abb699112ad8c75e9e442e6abbc7890521f861e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/fantasy_22_3.0.png ADDED

Git LFS Details

  • SHA256: 5e3a02e68b828b6098adda12df619370c87afb5cbbe92233881be20f2f2ba8e7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.71 MB