ntc-ai commited on
Commit
8345a94
1 Parent(s): 9e162ba

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
In Midgaard.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0320a4d967e743ff142e166f2c40077d62d71aa697c4c09f180d15c642cbcbd7
3
+ size 8789076
README.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ language:
4
+ - en
5
+ thumbnail: "images/evaluate/In Midgaard.../In Midgaard_17_3.0.png"
6
+ widget:
7
+ - text: In Midgaard
8
+ output:
9
+ url: images/In Midgaard_17_3.0.png
10
+ - text: In Midgaard
11
+ output:
12
+ url: images/In Midgaard_19_3.0.png
13
+ - text: In Midgaard
14
+ output:
15
+ url: images/In Midgaard_20_3.0.png
16
+ - text: In Midgaard
17
+ output:
18
+ url: images/In Midgaard_21_3.0.png
19
+ - text: In Midgaard
20
+ output:
21
+ url: images/In Midgaard_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: "In Midgaard"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - In Midgaard (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/In Midgaard_17_-3.0.png" width=256 height=256 /> | <img src="images/In Midgaard_17_0.0.png" width=256 height=256 /> | <img src="images/In Midgaard_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/In Midgaard_19_-3.0.png" width=256 height=256 /> | <img src="images/In Midgaard_19_0.0.png" width=256 height=256 /> | <img src="images/In Midgaard_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/In Midgaard_20_-3.0.png" width=256 height=256 /> | <img src="images/In Midgaard_20_0.0.png" width=256 height=256 /> | <img src="images/In Midgaard_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
+ In Midgaard
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.In-Midgaard', weight_name='In Midgaard.safetensors', adapter_name="In Midgaard")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["In Midgaard"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, In Midgaard"
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 790+ 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
images/In Midgaard_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 6f61d2dbc57d08c1990f43b6677ee319316bc297c3e725c12a8be5cff3fe65ad
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/In Midgaard_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 877246323065df58cac930632aa0358c4d41f3b8c22604ab8c05bd5f6fc70940
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/In Midgaard_17_0.0.png ADDED

Git LFS Details

  • SHA256: 5b60477c2c5e2259620e1ce16128f93721f94f0a6eeeb0db97a82dff058959c2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
images/In Midgaard_17_1.5.png ADDED

Git LFS Details

  • SHA256: 293b312d0b5b0c2a6cc1bf1682ff6d9710cc6cf04c9d95fa52e45808408912d7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
images/In Midgaard_17_3.0.png ADDED

Git LFS Details

  • SHA256: 7693431541230a10624709d2d441eb029d1f13e2df80c47f065bc47786166be0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/In Midgaard_19_-1.5.png ADDED

Git LFS Details

  • SHA256: ab24488556b7041fc33fcb5e10c176fc5500684128d52a04b520d769057c6840
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/In Midgaard_19_-3.0.png ADDED

Git LFS Details

  • SHA256: bc0925d079d3155abadcd6ba041e14446af3ea04716059e04be4282850354ae6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/In Midgaard_19_0.0.png ADDED

Git LFS Details

  • SHA256: 33dfb8c86463a401faddf2ec0fbe6e096289126c1a7f506e8627ba1c907346bd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/In Midgaard_19_1.5.png ADDED

Git LFS Details

  • SHA256: 9449b469253ee3d3fbd130c6b38a2d86ae4e8f3634c0f18186228561b47bb8e8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/In Midgaard_19_3.0.png ADDED

Git LFS Details

  • SHA256: 5383d9ec1ba0f9174d998692dfa5d8229e1259ee523ff8712277cba3f81b1359
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/In Midgaard_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 2f612642458d6257d979369e6bbaf9fe16ac38de5bf4aa789189fceda3b46d93
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images/In Midgaard_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 3a9db155dbc27f50f6c8208a06e913a79ce07033065e47a8ba586f7a2d3c9d4c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/In Midgaard_20_0.0.png ADDED

Git LFS Details

  • SHA256: 9aa5d78c74059625f0a201597de4ffa5bfdec3579bf02a8123d2d1aa673b8101
  • Pointer size: 132 Bytes
  • Size of remote file: 1.55 MB
images/In Midgaard_20_1.5.png ADDED

Git LFS Details

  • SHA256: 5f425351b61eccd5ad3a1ad3ca4ea85c7036c023f4ee930bb72418caeb15212a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/In Midgaard_20_3.0.png ADDED

Git LFS Details

  • SHA256: 3b5d582b88268bb0e6cc36590ca99c96caf640893f5c490abb9a848b75620877
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/In Midgaard_21_-1.5.png ADDED

Git LFS Details

  • SHA256: 614657a45f8313ad59c0f6f05b38f7a836cbfc3de43cc72915db19575d922bdd
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/In Midgaard_21_-3.0.png ADDED

Git LFS Details

  • SHA256: 9314501700207f5d9da328528cc514dc4ee183fa5b1ddf78dbb67ccf37d19c1f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/In Midgaard_21_0.0.png ADDED

Git LFS Details

  • SHA256: 9973e756dbeed38ff20ae4795a32827bf7892252ff883de3ea9167a4886cd38f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/In Midgaard_21_1.5.png ADDED

Git LFS Details

  • SHA256: f44da4ff1714a277d1f416438ad829fd4901717d739692aff0ed567c2a45a070
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/In Midgaard_21_3.0.png ADDED

Git LFS Details

  • SHA256: 7b972d13b6e29c0a5bbe1a6783c66009ab5b3bef8129598c0b88b34d2494cc54
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/In Midgaard_22_-1.5.png ADDED

Git LFS Details

  • SHA256: 6c5bccab0b2ca19133d1edbfd25e2688a151f062f42379c63df3a9616d031aeb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/In Midgaard_22_-3.0.png ADDED

Git LFS Details

  • SHA256: f65303762fa1e9b0b06db9a006c388f49c8a0c1bad6e50a036ad18dcdb571be5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/In Midgaard_22_0.0.png ADDED

Git LFS Details

  • SHA256: 994704d144f514f7bcfa1a93d6442e7f1aac7740b938eca208477d38f3fc324f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images/In Midgaard_22_1.5.png ADDED

Git LFS Details

  • SHA256: 20e27e21c02319f0558f6d5881c52bc76701169b16c98af66b3662e3d53237c7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.48 MB
images/In Midgaard_22_3.0.png ADDED

Git LFS Details

  • SHA256: 96be5ad4125cd30648ee0a7f5571cfe1f2d902efea104fec688919c42ccacdcf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB