File size: 7,903 Bytes
a9f9438
3f08e80
ddaad99
3f08e80
ddaad99
 
3f08e80
 
 
 
ddaad99
a9f9438
b022f95
ddaad99
 
 
 
 
 
 
 
 
 
 
737f863
 
ddaad99
737f863
 
ddaad99
 
 
 
163fad9
ddaad99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b022f95
 
 
 
 
 
 
 
ddaad99
 
 
 
 
b022f95
ddaad99
 
 
b022f95
 
 
 
 
 
 
 
ddaad99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8c03ee7
ddaad99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
737f863
ddaad99
 
 
 
 
b022f95
c0f7ca8
ddaad99
 
c0f7ca8
 
ddaad99
 
 
 
c0f7ca8
 
ddaad99
 
c0f7ca8
 
ddaad99
 
 
c0f7ca8
 
ddaad99
 
c0f7ca8
 
ddaad99
 
 
 
 
3f08e80
ddaad99
3f08e80
ddaad99
3f08e80
 
ddaad99
3f08e80
 
 
 
 
 
ddaad99
 
 
 
3f08e80
ddaad99
3f08e80
ddaad99
 
3f08e80
ddaad99
 
 
 
 
 
3f08e80
ddaad99
 
 
 
 
3f08e80
 
ddaad99
 
3f08e80
ddaad99
 
 
 
3f08e80
 
 
 
 
 
 
 
 
ddaad99
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
---
license: bigscience-openrail-m
language:
- en
pipeline_tag: text-to-image
tags:
- art
- anime
- stable-diffusion
- SDXL
library_name: safetensors
---

<style>
  .title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust this value to position the title vertically */
  }
  
  .title {
    font-size: 2.5em;
    text-align: center;
    color: #d6767f;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    padding: 0.218em 0;
    background: transparent;
  }
  
  .title span {
    background: -webkit-linear-gradient(69deg, #130c28, #2a4aee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .custom-table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    margin-top: 2em;
  }
  
  .custom-table td {
    width: 50%;
    vertical-align: top;
    padding: 10px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
  }

  .custom-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 0em;
    overflow: hidden;
    border-radius: 10px;
    transition: transform .7s;
    /* Smooth transition for the container */
  }

  .custom-image-container:hover {
    transform: scale(1.05);
    /* Scale the container on hover */
  }

  .custom-image-container:hover .custom-image {
    opacity: 0
  }
  .custom-image-container:hover 
  .hover-image {
    opacity: 1;
  }

  .custom-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .7s, opacity .5s;
    margin-bottom: 0em;
  }

  .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .5s;
  }
  
  .nsfw-filter {
    filter: blur(8px); /* Apply a blur effect */
    transition: filter 0.3s ease; /* Smooth transition for the blur effect */
  }

  .custom-image-container:hover .nsfw-filter {
    filter: none; /* Remove the blur effect on hover */
  }
  
  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1vw;
    font-style: bold;
    text-align: center;
    opacity: 0;
    /* Keep the text fully opaque */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
    transition: opacity .5s;
  }
  .custom-image-container:hover .overlay {
    opacity: 1;
    /* Make the overlay always visible */
  }
  .overlay-text {
    background: linear-gradient(45deg, #130c28, #ca76e2);
    -webkit-background-clip: text;
    color: transparent;
    /* Fallback for browsers that do not support this effect */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* Enhanced text shadow for better legibility */
    
  .overlay-subtext {
    font-size: 0.75em;
    margin-top: 0.5em;
    font-style: italic;
  }
    
  .overlay,
  .overlay-subtext {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
    
</style>

<h1 class="title">
  <span>∞ 218xl ∞</span>
</h1>
<table class="custom-table">
  <tr>
    <td>
      <div class="custom-image-container">
        <img class="custom-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xlb1.png" alt="sample1">
        <img class="hover-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xl1.png" alt="sampleb1">
      </div>
      <div class="custom-image-container">
        <img class="custom-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xlb2.png" alt="sample2">
        <img class="hover-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xll6.png" alt="sampleb2">
      </div>
    </td>
    <td>
      <div class="custom-image-container">
        <img class="custom-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xlb3.png" alt="sample3">
        <img class="hover-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xll5.png" alt="sampleb3">
      </div>
      <div class="custom-image-container">
        <img class="custom-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xlb4.png" alt="sample4">
        <img class="hover-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xl27.png" alt="sampleb4">
    </td>
    <td>
      <div class="custom-image-container">
        <img class="custom-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xlb5.png" alt="sample5">
        <img class="hover-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xl37.png" alt="sampleb5">
      </div>
      <div class="custom-image-container">
        <img class="custom-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xlb6.png" alt="sample6">
        <img class="hover-image" src="https://huggingface.co/Enferlain/218xl/resolve/main/images/218xll2.png" alt="sampleb6">
      </div>
    </td>
  </tr>
</table>

# ∞ 218 SDXL aka 'counterproductive illustration' omE

I only recently started dabbling in SDXL models, but I already put a lot of testing into it. Mostly comparisons, testing loras, trying to fix some shortcomings in models I liked.

I decided on a model called ReproductionXL because it looked the best to me. After that I merged CounterfeitXL because Counterfeit aesthetics are still one of if not the best.
Then I merged that result with Anime Illust Diffusion XL as I found the idea of being able to use different artstyles with tags fun -- and it is a lot of fun.

This took around 2 days of manual scoring and guidance through a Bayesian process, usually 500 samples per merge, which I did about 7 times total to arrive here.

And so there you have it, that's the current point in time.

Onwards I'm looking to see how I can use Lynn's Animagine XL 2 and upgrade the main igredients with their latest updates. 
I'm looking to add multiple characters (animagine should help with that) and more styles that aren't currently present within the model.

<hr>

<details id="Dropdown">
 <summary style="font-size: 1.10em"><strong> Changelogs </strong> (click to open the dropdown)</summary>

### 11 29 2023
- Yoinked layout
- Added images
- Uploaded 218xl

</details>
<hr>

# ∞ Usage

There is a wildcard in the repo that contains all the tags that call for their respective artstyles, try that.

Yoinked links from Amedira:

#### Embeddings Downloads

- [**aidxlv05_neg**](https://civitai.com/models/144327/negative-embedding-for-sdxl-based-anime-models), [Direct download](https://civitai.com/api/download/models/195614)
- [**unaestheticXL_Sky3.1**](https://civitai.com/models/119032?modelVersionId=175819), [Direct download](https://civitai.com/api/download/models/175819?type=Model&format=SafeTensor)

#### VAE
- [**sdxl_vae**](https://huggingface.co/stabilityai/sdxl-vae/blob/main/sdxl_vae.safetensors) (official sdxl vae)

# ∞ Credits

- Checkpoints
  - [**ReproductionXL v8.7**](https://civitai.com/models/118729?modelVersionId=199943)
  - [**CounterfeitXL v1.0**](https://civitai.com/models/118406?modelVersionId=146761)
  - [**Anime Illust Diffusion v0.52**](https://civitai.com/models/124189/anime-illust-diffusion-xl?modelVersionId=238771)

- Lynn for layout and future juice
  - [**Animeagine XL 2**](https://huggingface.co/Linaqruf/animagine-xl-2.0)

- Ashtaka Aha Oof for taking my spam on discord EZ Clap
  - [**Ahnn**](https://huggingface.co/AshtakaOOf/Ahnn)
 
- Tools
  - [**Bayesian merger by s1dlx**](https://github.com/s1dlx/sd-webui-bayesian-merger/)

## ∞ Legal deez
```
You are free to use this model locally but
1. You aren't allowed to redistribute on another platform. (like CivitAI or Tensor.Art)
2. I am not responsible for how this model is used to generate images.
```