ntc-ai commited on
Commit
b50a4e2
1 Parent(s): cc00e89

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
90s anime.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a85da6e48b707f260616437670da90703b5a8ec73cb8c0878640eb2132f3bcf3
3
+ size 8789076
README.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ language:
4
+ - en
5
+ thumbnail: "images/evaluate/90s anime...90s photo/90s anime_17_3.0.png"
6
+ widget:
7
+ - text: 90s anime
8
+ output:
9
+ url: images/90s anime_17_3.0.png
10
+ - text: 90s anime
11
+ output:
12
+ url: images/90s anime_19_3.0.png
13
+ - text: 90s anime
14
+ output:
15
+ url: images/90s anime_20_3.0.png
16
+ - text: 90s anime
17
+ output:
18
+ url: images/90s anime_21_3.0.png
19
+ - text: 90s anime
20
+ output:
21
+ url: images/90s anime_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: "90s anime"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - 90s anime (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/90s anime_17_-3.0.png" width=256 height=256 /> | <img src="images/90s anime_17_0.0.png" width=256 height=256 /> | <img src="images/90s anime_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/90s anime_19_-3.0.png" width=256 height=256 /> | <img src="images/90s anime_19_0.0.png" width=256 height=256 /> | <img src="images/90s anime_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/90s anime_20_-3.0.png" width=256 height=256 /> | <img src="images/90s anime_20_0.0.png" width=256 height=256 /> | <img src="images/90s anime_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
+ 90s anime
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.90s-anime', weight_name='90s anime.safetensors', adapter_name="90s anime")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["90s anime"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, 90s anime"
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 230+ 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/90s anime_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 0b34b7fb8da1bd5bc26ba65e0e0754bef699bbb5453196e220426b09701cd6f5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.64 MB
images/90s anime_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 2dc4bce33288fc59c1b6419ea21389893943d714d0f8341e7f38f95e1fce2ad1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.66 MB
images/90s anime_17_0.0.png ADDED

Git LFS Details

  • SHA256: f33d3d4147b978feab0c6da4f2d4af189ec17557172a66fa782053ffd2d2cb61
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/90s anime_17_1.5.png ADDED

Git LFS Details

  • SHA256: 3f923e99d5f47cb710e4a070b3a15038e2cb6ee3ca65b5e94754411752d38a6e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/90s anime_17_3.0.png ADDED

Git LFS Details

  • SHA256: 69166c163fe4ca33faad693d29f58f623eff5627cd2ca80c3e28eaea2de113da
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/90s anime_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 7247f78f7a060d6a312c9f738b550dba5334a2e2c9f7bdf3af0dbd73d00505ed
  • Pointer size: 132 Bytes
  • Size of remote file: 1.85 MB
images/90s anime_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 5b2f914a2a5f586959b99a5650a53a3c0845082a696beb440030a13132bced3b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.88 MB
images/90s anime_19_0.0.png ADDED

Git LFS Details

  • SHA256: 6cea1b6c93746e128caeb021e3718e5abc36397183239a91254e16e0092edd7f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.77 MB
images/90s anime_19_1.5.png ADDED

Git LFS Details

  • SHA256: 9835a467604eced016c64f9147a653e11fed4283eda40e9ad1f19a06c30310bc
  • Pointer size: 132 Bytes
  • Size of remote file: 1.76 MB
images/90s anime_19_3.0.png ADDED

Git LFS Details

  • SHA256: 58a094bd408ed4844c8a878595231109c287b9c7befcdaeab34498bd5f3cde7c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.78 MB
images/90s anime_20_-1.5.png ADDED

Git LFS Details

  • SHA256: 5b8b879f66e39ef37de50eebad491ca4fdfdcdceb1c78d19bc92e315dbf2dc77
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/90s anime_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 24fb2b026ee5041c3c967aec2dfb1ee5dd08802e2674b9b444bee3f901725fec
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
images/90s anime_20_0.0.png ADDED

Git LFS Details

  • SHA256: f44d075a2f48255a41045111acd66dc7b7c59f99364d3eed6be78080b37d5017
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
images/90s anime_20_1.5.png ADDED

Git LFS Details

  • SHA256: 485123f4be01bdcef264e4db5f047e8625fab0eaaee7fe207faca131b19e8cb0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images/90s anime_20_3.0.png ADDED

Git LFS Details

  • SHA256: ba87028ec1c3625436399f81dec6e0690d81a5bd8bc4360f78f9ef85d5466f6c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/90s anime_21_-1.5.png ADDED

Git LFS Details

  • SHA256: d3bb80e7fef6f89bf34240ea9ef7c2e07d890372418e30c99c9e682bb7349fe5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/90s anime_21_-3.0.png ADDED

Git LFS Details

  • SHA256: e764b6e23869aaefe2b7e3a258fcbeab0ed28946a12b47ede31a5546b64680ba
  • Pointer size: 132 Bytes
  • Size of remote file: 1.56 MB
images/90s anime_21_0.0.png ADDED

Git LFS Details

  • SHA256: 0048357cfefca3a93754901e18d501d942910772d4f3830a43d94a4e4a5aff86
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/90s anime_21_1.5.png ADDED

Git LFS Details

  • SHA256: bec8285eae2043f2d8018eb86dc1b6943dc0bf481b6c128ef36ba899ebf0aca0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.59 MB
images/90s anime_21_3.0.png ADDED

Git LFS Details

  • SHA256: 5ff790adfef7e48268f4e5bcba963eb886f229c231f177529e15db6ec0a8801a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.61 MB
images/90s anime_22_-1.5.png ADDED

Git LFS Details

  • SHA256: e78702220b8b8084ccf80c1f3b057086a1145ad993c9f03421417ed62cf03ff0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.41 MB
images/90s anime_22_-3.0.png ADDED

Git LFS Details

  • SHA256: a513c3e53ca079a52c331def1a2037d058b7df5c1ec40ae9b1668a88b575cf60
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/90s anime_22_0.0.png ADDED

Git LFS Details

  • SHA256: 2ffa465eeb612c5be18d10b0da35ac4e5d2c496b8fd9b4c9e42b09ae5773d2ae
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/90s anime_22_1.5.png ADDED

Git LFS Details

  • SHA256: 45a76e44f77b3a864e892d1b1eb2e1ec96501d17c8f30de1a02fec0d08763c31
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images/90s anime_22_3.0.png ADDED

Git LFS Details

  • SHA256: e7cd501fea18cf9171321381ed1eacf13a29fc0b4ed10427ee4c86b9bbc0cdd3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.57 MB