File size: 8,000 Bytes
661c85a
 
 
 
a80fbf9
 
 
 
 
 
 
1c4d230
661c85a
794c79c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4027c1c
 
8b67900
4027c1c
 
 
0f2677c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a80fbf9
 
 
 
 
 
0f2677c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a80fbf9
 
 
6069c99
a80fbf9
4027c1c
a80fbf9
1c4d230
a80fbf9
 
 
 
 
1c4d230
a80fbf9
 
 
 
 
1c4d230
a80fbf9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e1bf83f
55ef0b6
e1bf83f
55ef0b6
e1bf83f
2e0e0ff
 
 
 
 
 
 
a80fbf9
 
1c4d230
efe5012
1c4d230
a80fbf9
2e0e0ff
 
 
 
 
 
a80fbf9
 
 
e1bf83f
a80fbf9
 
 
 
efe5012
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
247
248
249
250
251
252
253
254
255
256
---
license: other
license_name: faipl-1.0-sd
license_link: https://freedevproject.org/faipl-1.0-sd/
language:
- en
tags:
- text-to-image
- stable-diffusion
- safetensors
- stable-diffusion-xl
base_model: cagliostrolab/animagine-xl-3.1
---
<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: #333;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5em 0;
    background: transparent;
  }

  .title span {
    background: -webkit-linear-gradient(45deg, #ff7a52, #a5cff0);
    -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; 
 }

 .custom-image-container:hover {
   transform: scale(1.05); 
 }

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

 .nsfw-filter {
   filter: blur(8px); 
   transition: filter 0.3s ease; 
 }

 .custom-image-container:hover .nsfw-filter {
   filter: none; 
 }
 
 .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; 
   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; 
 }

 .overlay-text {
   background: linear-gradient(45deg, #7ed56f, #28b485);
   -webkit-background-clip: text;
   color: transparent; 
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
 }

 .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>Raemu XL</span>
</h1>

<table class="custom-table">
 <tr>
   <td>
     <div class="custom-image-container">
       <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/obp1kCabBf94rBIC9acHE.png" alt="Sample Image 1">
       <div class="overlay">
         <div class="overlay-text">Sample Image</div>
       </div>
     </div>
   </td>
   <td>
     <div class="custom-image-container">
       <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/1Bt9u5eTutKoq7IcYW6hr.png" alt="Sample Image 2">
       <div class="overlay">
         <div class="overlay-text">Sample Image</div>
       </div>
     </div>
   </td>
   <td>
     <div class="custom-image-container">
       <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/axIYI4IfGIUibEY7Uk9EC.png" alt="Sample Image 3">
       <div class="overlay">
         <div class="overlay-text">Sample Image</div>
       </div>
     </div>
   </td>
 </tr>
 <tr>
   <td>
     <div class="custom-image-container">
       <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/1JbzlFalbYu6Bsp25N9N5.png" alt="Sample Image 4">
       <div class="overlay">
         <div class="overlay-text">Sample Image</div>
       </div>
     </div>
   </td>
   <td>
     <div class="custom-image-container">
       <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/MTweqSnjw0wIpFaaNI6_U.png" alt="Sample Image 5">
       <div class="overlay">
         <div class="overlay-text">Sample Image</div>
       </div>
     </div>
   </td>
   <td>
     <div class="custom-image-container">
       <img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/Os-_lyzIgB4n5M5WyawLT.jpeg" alt="Sample Image 6">
       <div class="overlay">
         <div class="overlay-text">Sample Image</div>
       </div>
     </div>
   </td>
 </tr>
</table>

**Raemu XL** is a merged model that focused in 2.5D Anime

## Model Details
- **Developed by**: [Raelina](https://civitai.com/user/Raelina)
- **Model type**: Diffusion-based text-to-image generative model
- **Model Description**: Generate high-quality anime images from textual prompts
- **License**: [Fair AI Public License 1.0-SD](https://freedevproject.org/faipl-1.0-sd/)
- **Merged from model**: [Animagine XL 3.1](https://huggingface.co/cagliostrolab/animagine-xl-3.1)

## Recommended settings

To guide the model towards generating high-aesthetic images, use negative prompts like:
```
(worst quality, low quality, very displeasing, lowres), (interlocked fingers, badly drawn hands and fingers, anatomically incorrect hands), blurry, watermark,
```

For higher quality outcomes, prepend prompts with:

```
(masterpiece, best quality, very aesthetic, ultra detailed), intricate details,
```

### Multi Aspect Resolution

This model supports generating images at the following dimensions:
| Dimensions        | Aspect Ratio    |
|-------------------|-----------------|
| `1024 x 1024`     | 1:1 Square      |
| `1152 x 896`      | 9:7             |
| `896 x 1152`      | 7:9             |
| `1216 x 832`      | 19:13           |
| `832 x 1216`      | 13:19           |
| `1344 x 768`      | 7:4 Horizontal  |
| `768 x 1344`      | 4:7 Vertical    |
| `1536 x 640`      | 12:5 Horizontal |
| `640 x 1536`      | 5:12 Vertical   |

## Hires.fix Setting
- Upscaler : [4x_NMKD-YandereNeoXL](https://nmkd.de/?esrgan)
- Hires step : 10-20
- Denoising : 0.1-0.4 or 0.55 for latent upscaler

## Lightning Settings
- Sampler : Euler a
- Sampling steps : 8-10
- CFG: 2-2.5
- Hires step : 4-6
- Denoising : 0.1-0.3
- 
## Merge parameters

1. Animagine XL 3.1 merged to [RealCartoonXL V6](https://civitai.com/models/125907/realcartoon-xl) to get 2.5D body using MBW (0.0,1.0,0.8,0.5,0.25,0.0,0.0,0.0,0.0,0.0,0.0,0.3,0.5,0.71,1.0,0.56,0.71,1.0,0.83,0.1,0)
2. (1) merged with [Blue Pencil XL v3.1.0](https://civitai.com/models/119012/bluepencil-xl) to get final touch with anime using MBW (0.0,0.11,0.22,0.33,0.44,0.55,0.44,0.33,0.22,0.11,0.0,0.11,0.22,0.33,0.44,0.55,0.44,0.33,0.22,0.11,0)
3. RaemuXLv3

## Lightning Parameter

1. RaemuXLv3 merged to lora Lightning 4 step with ratio 0.8
2. (1) Finetuning with 860 High Quality Images
3. RaemuXLv3.5_Lightning

## License

Raemu XL now uses the [Fair AI Public License 1.0-SD](https://freedevproject.org/faipl-1.0-sd/) inherited from Animagine XL 3.0, compatible with Stable Diffusion models. Key points:
1. **Modification Sharing:** If you modify RaemuXL, you must share both your changes and the original license.
2. **Source Code Accessibility:** If your modified version is network-accessible, provide a way (like a download link) for others to get the source code. This applies to derived models too.
3. **Distribution Terms:** Any distribution must be under this license or another with similar rules.
4. **Compliance:** Non-compliance must be fixed within 30 days to avoid license termination, emphasizing transparency and adherence to open-source values.

The choice of this license aims to keep Raemu XL open and modifiable, aligning with open source community spirit. It protects contributors and users, encouraging a collaborative, ethical open-source community. This ensures the model not only benefits from communal input but also respects open-source development freedoms.