ntc-ai commited on
Commit
5dc0b82
·
1 Parent(s): 51f05cc

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/psychedelic trip...boring/psychedelic trip_17_3.0.png"
6
+ widget:
7
+ - text: psychedelic trip
8
+ output:
9
+ url: images/psychedelic trip_17_3.0.png
10
+ - text: psychedelic trip
11
+ output:
12
+ url: images/psychedelic trip_19_3.0.png
13
+ - text: psychedelic trip
14
+ output:
15
+ url: images/psychedelic trip_20_3.0.png
16
+ - text: psychedelic trip
17
+ output:
18
+ url: images/psychedelic trip_21_3.0.png
19
+ - text: psychedelic trip
20
+ output:
21
+ url: images/psychedelic trip_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: "psychedelic trip"
35
+ base_model: "stabilityai/stable-diffusion-xl-base-1.0"
36
+ ---
37
+ # ntcai.xyz slider - psychedelic trip (SDXL LoRA)
38
+
39
+ | Strength: -3 | Strength: 0 | Strength: 3 |
40
+ | --- | --- | --- |
41
+ | <img src="images/psychedelic trip_17_-3.0.png" width=256 height=256 /> | <img src="images/psychedelic trip_17_0.0.png" width=256 height=256 /> | <img src="images/psychedelic trip_17_3.0.png" width=256 height=256 /> |
42
+ | <img src="images/psychedelic trip_19_-3.0.png" width=256 height=256 /> | <img src="images/psychedelic trip_19_0.0.png" width=256 height=256 /> | <img src="images/psychedelic trip_19_3.0.png" width=256 height=256 /> |
43
+ | <img src="images/psychedelic trip_20_-3.0.png" width=256 height=256 /> | <img src="images/psychedelic trip_20_0.0.png" width=256 height=256 /> | <img src="images/psychedelic trip_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
+ psychedelic trip
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.psychedelic-trip', weight_name='psychedelic trip.safetensors', adapter_name="psychedelic trip")
71
+
72
+ # Activate the LoRA
73
+ pipe.set_adapters(["psychedelic trip"], adapter_weights=[2.0])
74
+
75
+ prompt = "medieval rich kingpin sitting in a tavern, psychedelic trip"
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 200+ 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/psychedelic trip_17_-1.5.png ADDED

Git LFS Details

  • SHA256: 297379c1802329a2a5852d7bca09cec63d836150156d7ad9f5747e045506829f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/psychedelic trip_17_-3.0.png ADDED

Git LFS Details

  • SHA256: 2348eac124cd8af6369b69e03c0e61851904b9c922f446bbf45c7a1156894f35
  • Pointer size: 132 Bytes
  • Size of remote file: 1.45 MB
images/psychedelic trip_17_0.0.png ADDED

Git LFS Details

  • SHA256: d40685406867a338f0d0b5b19b985b06883b30641f9f1cd2990b42a64150a5de
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
images/psychedelic trip_17_1.5.png ADDED

Git LFS Details

  • SHA256: 3edad50fb33daecde6992c67b8386322e6213297049f75ecfc1b69027dbfda66
  • Pointer size: 132 Bytes
  • Size of remote file: 1.7 MB
images/psychedelic trip_17_3.0.png ADDED

Git LFS Details

  • SHA256: ce72855661f1f4d48352d8ebb7456c77f778e822262c5de07040922cc080a953
  • Pointer size: 132 Bytes
  • Size of remote file: 1.82 MB
images/psychedelic trip_19_-1.5.png ADDED

Git LFS Details

  • SHA256: 7cdf0cf5ea933eb8c96920bf708f14a8631be97d5936d7a0a5f6a84a74844ae3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.44 MB
images/psychedelic trip_19_-3.0.png ADDED

Git LFS Details

  • SHA256: 02ebf813ddcb42b2081e46a372e5c796d9997eb07d397e78fc6f26edee1c013c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
images/psychedelic trip_19_0.0.png ADDED

Git LFS Details

  • SHA256: 013aa15e7a9c732e9a08d42d734435c9824785441539147294741c363dd6d771
  • Pointer size: 132 Bytes
  • Size of remote file: 1.52 MB
images/psychedelic trip_19_1.5.png ADDED

Git LFS Details

  • SHA256: a227d5903a26066d3785d84e698704c4adc8672f1477fec5a44dd0a81ddd6964
  • Pointer size: 132 Bytes
  • Size of remote file: 1.6 MB
images/psychedelic trip_19_3.0.png ADDED

Git LFS Details

  • SHA256: a807bff617d985bcb7eb8562e678e40fb0e2fc1c7f386870c33c7114aff87b89
  • Pointer size: 132 Bytes
  • Size of remote file: 1.84 MB
images/psychedelic trip_20_-1.5.png ADDED

Git LFS Details

  • SHA256: aa1e0b346f1834948185e253df3d3d6b78d9d2a987b2669c7b41b24fa7828dd3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
images/psychedelic trip_20_-3.0.png ADDED

Git LFS Details

  • SHA256: 4b8c8452d25c1a9600456d284722f56411082140844041a67f0e8e4f328ab2e7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
images/psychedelic trip_20_0.0.png ADDED

Git LFS Details

  • SHA256: 2d27ba4ec07f6d299cc507bd59a21467adb52879cb64a66c0c0c2b92000b3dea
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
images/psychedelic trip_20_1.5.png ADDED

Git LFS Details

  • SHA256: e090bec6597350b0fc8ecfa8c18f7f8a4be223b6d1e1a0174d6a7038fc3bd0a2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.47 MB
images/psychedelic trip_20_3.0.png ADDED

Git LFS Details

  • SHA256: 43bf8cdef57c11ab168f8e56b60d3089a96b336a75c5f878ff0be57d82b70455
  • Pointer size: 132 Bytes
  • Size of remote file: 1.71 MB
images/psychedelic trip_21_-1.5.png ADDED

Git LFS Details

  • SHA256: b6d2acee938c60333ddd6ffeb3449590e811c9b9f632ab86b7d662f903a98a77
  • Pointer size: 132 Bytes
  • Size of remote file: 1.54 MB
images/psychedelic trip_21_-3.0.png ADDED

Git LFS Details

  • SHA256: a823f753632d4de9d645510384b2c2ecdf98c198e6453ce552d84e391648bea7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB
images/psychedelic trip_21_0.0.png ADDED

Git LFS Details

  • SHA256: da80ab99d364bec2734329978ce67e44665ba8b7c9412c782e3da111dacfe09b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.71 MB
images/psychedelic trip_21_1.5.png ADDED

Git LFS Details

  • SHA256: cefc38db49af6874d6d6c3e37ce64fe2ae8fe6169269da9e0ef6a50db7356ddf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.8 MB
images/psychedelic trip_21_3.0.png ADDED

Git LFS Details

  • SHA256: de21d0af4322d2e3478c03eac6900ed7f20e7fc91dcf42ddbaf9ed6dda070c49
  • Pointer size: 132 Bytes
  • Size of remote file: 1.93 MB
images/psychedelic trip_22_-1.5.png ADDED

Git LFS Details

  • SHA256: af139c4e13f0e5a0b948b6a8723b40fe83e8fce0bcd2c63f562458187658b241
  • Pointer size: 132 Bytes
  • Size of remote file: 1.27 MB
images/psychedelic trip_22_-3.0.png ADDED

Git LFS Details

  • SHA256: bf2d2de0dbd86f75140ee9c9b19de46c5f28c4a797a3719fa7f85153f2a85fa4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.24 MB
images/psychedelic trip_22_0.0.png ADDED

Git LFS Details

  • SHA256: c5c7c5e8921c45c5098d87a2780a94e5a20d617168401b18739c04af662b907f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
images/psychedelic trip_22_1.5.png ADDED

Git LFS Details

  • SHA256: d81a0b4a6d7f33f5610fb6da51a17dfb709ef13d675bedac86210b8818629c9f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.58 MB
images/psychedelic trip_22_3.0.png ADDED

Git LFS Details

  • SHA256: fea0401998cbd90570baa292852acccd3fe8fbbef98a80be87f95ada9b629950
  • Pointer size: 132 Bytes
  • Size of remote file: 1.9 MB
psychedelic trip.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:173f02ebd5f8edad3708c59f6149bbb6cf3a5e52e48a233fcfe26e61ce983b89
3
+ size 8789076