Enferlain commited on
Commit
ddaad99
β€’
1 Parent(s): a9f9438

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +218 -0
README.md CHANGED
@@ -1,3 +1,221 @@
1
  ---
2
  license: creativeml-openrail-m
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: creativeml-openrail-m
3
+ language:
4
+ - en
5
+ pipeline_tag: text-to-image
6
+ tags:
7
+ - art
8
+ - anime
9
+ - stable-diffusion
10
+ library_name: safetensors
11
  ---
12
+ placeholder, ty lyn for the style (it won't look like this when I'm done no copystrike pls ty)
13
+
14
+ <style>
15
+ .title-container {
16
+ display: flex;
17
+ justify-content: center;
18
+ align-items: center;
19
+ height: 100vh; /* Adjust this value to position the title vertically */
20
+ }
21
+
22
+ .title {
23
+ font-size: 2.5em;
24
+ text-align: center;
25
+ color: #333;
26
+ font-family: 'Helvetica Neue', sans-serif;
27
+ text-transform: uppercase;
28
+ letter-spacing: 0.1em;
29
+ padding: 0.5em 0;
30
+ background: transparent;
31
+ }
32
+
33
+ .title span {
34
+ background: -webkit-linear-gradient(45deg, #7ed56f, #28b485);
35
+ -webkit-background-clip: text;
36
+ -webkit-text-fill-color: transparent;
37
+ }
38
+
39
+ .custom-table {
40
+ table-layout: fixed;
41
+ width: 100%;
42
+ border-collapse: collapse;
43
+ margin-top: 2em;
44
+ }
45
+
46
+ .custom-table td {
47
+ width: 50%;
48
+ vertical-align: top;
49
+ padding: 10px;
50
+ box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
51
+ }
52
+
53
+ .custom-image-container {
54
+ position: relative;
55
+ width: 100%;
56
+ margin-bottom: 0em;
57
+ overflow: hidden;
58
+ border-radius: 10px;
59
+ transition: transform .7s;
60
+ /* Smooth transition for the container */
61
+ }
62
+
63
+ .custom-image-container:hover {
64
+ transform: scale(1.05);
65
+ /* Scale the container on hover */
66
+ }
67
+
68
+ .custom-image {
69
+ width: 100%;
70
+ height: auto;
71
+ object-fit: cover;
72
+ border-radius: 10px;
73
+ transition: transform .7s;
74
+ margin-bottom: 0em;
75
+ }
76
+
77
+ .nsfw-filter {
78
+ filter: blur(8px); /* Apply a blur effect */
79
+ transition: filter 0.3s ease; /* Smooth transition for the blur effect */
80
+ }
81
+
82
+ .custom-image-container:hover .nsfw-filter {
83
+ filter: none; /* Remove the blur effect on hover */
84
+ }
85
+
86
+ .overlay {
87
+ position: absolute;
88
+ bottom: 0;
89
+ left: 0;
90
+ right: 0;
91
+ color: white;
92
+ width: 100%;
93
+ height: 40%;
94
+ display: flex;
95
+ flex-direction: column;
96
+ justify-content: center;
97
+ align-items: center;
98
+ font-size: 1vw;
99
+ font-style: bold;
100
+ text-align: center;
101
+ opacity: 0;
102
+ /* Keep the text fully opaque */
103
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
104
+ transition: opacity .5s;
105
+ }
106
+ .custom-image-container:hover .overlay {
107
+ opacity: 1;
108
+ /* Make the overlay always visible */
109
+ }
110
+ .overlay-text {
111
+ background: linear-gradient(45deg, #7ed56f, #28b485);
112
+ -webkit-background-clip: text;
113
+ color: transparent;
114
+ /* Fallback for browsers that do not support this effect */
115
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
116
+ /* Enhanced text shadow for better legibility */
117
+
118
+ .overlay-subtext {
119
+ font-size: 0.75em;
120
+ margin-top: 0.5em;
121
+ font-style: italic;
122
+ }
123
+
124
+ .overlay,
125
+ .overlay-subtext {
126
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
127
+ }
128
+
129
+ </style>
130
+
131
+ <h1 class="title">
132
+ </h1>
133
+ <table class="custom-table">
134
+ <tr>
135
+ <td>
136
+ <div class="custom-image-container">
137
+ <img class="custom-image" src="aaa" alt="sample1">
138
+ </div>
139
+ <div class="custom-image-container">
140
+ <img class="custom-image" src="aaa" alt="sample4">
141
+ </div>
142
+ </td>
143
+ <td>
144
+ <div class="custom-image-container">
145
+ <img class="custom-image" src="aaa" alt="sample2">
146
+ </div>
147
+ <div class="custom-image-container">
148
+ <img class="custom-image" src="aaa" alt="sample3">
149
+ </td>
150
+ <td>
151
+ <div class="custom-image-container">
152
+ <img class="custom-image" src="aaa" alt="sample1">
153
+ </div>
154
+ <div class="custom-image-container">
155
+ <img class="custom-image" src="aaa" alt="sample4">
156
+ </div>
157
+ </td>
158
+ </tr>
159
+ </table>
160
+
161
+ <p align="center", style="font-size: 3.6rem; font-weight: bold"> ∞ 218xl ∞ </p>
162
+
163
+ # ∞ 218 -- 6 months later
164
+
165
+ Continuation of what I loved about the first model, with updated ingredients and method of merging, that is Bayesian merging with manual scoring with samples generated with my LoRA.
166
+
167
+ In addition, I added one of [Aha's](https://huggingface.co/AshtakaOOf/Amedira) models into the mix, specifically cV, because I really enjoyed the Counterfeit aesthetics.
168
+
169
+ And so, this is what I got. I have been using it as my main 1.5 model.
170
+
171
+ <hr>
172
+
173
+ <details id="Dropdown">
174
+ <summary style="font-size: 1.10em"><strong>πŸ“œ Changelogs </strong> (click to open the dropdown)</summary>
175
+
176
+ ### 11 26 2023
177
+ - Yoinked layout
178
+ - Added images
179
+ - Uploaded 218v2
180
+
181
+ </details>
182
+ <hr>
183
+
184
+ # ∞ Usage
185
+
186
+ Amedira cV rules should apply here, so you can make use of "sle" and "mksks style" in the prompt, although I never rigorously tested whether or not they function properly.
187
+
188
+ I use clip skip 2 and DPM++2M Karras, steps 20
189
+
190
+ But ultimately whatever you want. I've used 7+ negative embeds, but it's all preference. 0 works just as well.
191
+
192
+ Yoinked links from Amedira:
193
+
194
+ #### Embeddings Downloads
195
+
196
+ - [**fcNeg-neg**](https://civitai.com/models/81575), [Direct download](https://civitai.com/api/download/models/97691?type=Negative&format=Other)
197
+ - [**an10**](https://civitai.com/models/58726), [Direct download](https://civitai.com/api/download/models/144998?type=Model&format=PickleTensor)
198
+ - [**negative_hand-neg**](https://civitai.com/models/56519), [Direct download](https://civitai.com/api/download/models/60938?type=Negative&format=Other)
199
+ - [**etone**](https://cdn.discordapp.com/attachments/1019446913268973689/1126669053105287279/etone.safetensors) by closertodeath
200
+
201
+ #### VAE
202
+ - [**WD 1.4 Blessed09**](https://huggingface.co/NoCrypt/resources/resolve/main/VAE/wd-blessed09.vae.safetensors) (kl-f8-anime2 but blessed down)
203
+ - [**WD 1.4**](https://huggingface.co/NoCrypt/resources/blob/main/VAE_FP16/wd-fp16.vae.safetensors) (kl-f8-anime2)
204
+
205
+ # ∞ Credits
206
+
207
+ - Checkpoints
208
+ - [**CetusMix WhaleFall v2**](https://civitai.com/models/6755/cetus-mix)
209
+ - [**OrangeMixs AOM2h**](https://huggingface.co/WarriorMama777/OrangeMixs#abyssorangemix2_hard-aom2h)
210
+ - [**OrangeMixs AOM3A3**](https://huggingface.co/WarriorMama777/OrangeMixs#aom3a3)
211
+ - [**Amedira cV**](https://huggingface.co/AshtakaOOf/Amedira/blob/main/Amedira-cV.safetensors)
212
+
213
+ - Tools
214
+ - [**Bayesian merger by s1dlx**](https://github.com/s1dlx/sd-webui-bayesian-merger/)
215
+
216
+ ## ∞ Legal deez
217
+ ```
218
+ You are free to use this model locally but
219
+ 1. You aren't allowed to redistribute on another platform. (like CivitAI or Tensor.Art)
220
+ 2. I am not responsible for how this model is used to generate images.
221
+ ```