Added preivew images
Browse files
README.md
CHANGED
|
@@ -35,13 +35,154 @@ base_model: cagliostrolab/animagine-xl-3.1
|
|
| 35 |
-webkit-background-clip: text;
|
| 36 |
-webkit-text-fill-color: transparent;
|
| 37 |
}
|
| 38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
</style>
|
| 40 |
|
| 41 |
<h1 class="title">
|
| 42 |
<span>Raemu XL</span>
|
| 43 |
</h1>
|
| 44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
**Raemu XL** is a merged model that focused in 2.5D Anime
|
| 46 |
|
| 47 |
## Model Details
|
|
|
|
| 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 |
+
}
|
| 61 |
+
|
| 62 |
+
.custom-image-container:hover {
|
| 63 |
+
transform: scale(1.05);
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
.custom-image {
|
| 67 |
+
width: 100%;
|
| 68 |
+
height: auto;
|
| 69 |
+
object-fit: cover;
|
| 70 |
+
border-radius: 10px;
|
| 71 |
+
transition: transform .7s;
|
| 72 |
+
margin-bottom: 0em;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.nsfw-filter {
|
| 76 |
+
filter: blur(8px);
|
| 77 |
+
transition: filter 0.3s ease;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
.custom-image-container:hover .nsfw-filter {
|
| 81 |
+
filter: none;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
.overlay {
|
| 85 |
+
position: absolute;
|
| 86 |
+
bottom: 0;
|
| 87 |
+
left: 0;
|
| 88 |
+
right: 0;
|
| 89 |
+
color: white;
|
| 90 |
+
width: 100%;
|
| 91 |
+
height: 40%;
|
| 92 |
+
display: flex;
|
| 93 |
+
flex-direction: column;
|
| 94 |
+
justify-content: center;
|
| 95 |
+
align-items: center;
|
| 96 |
+
font-size: 1vw;
|
| 97 |
+
font-style: bold;
|
| 98 |
+
text-align: center;
|
| 99 |
+
opacity: 0;
|
| 100 |
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
|
| 101 |
+
transition: opacity .5s;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
.custom-image-container:hover .overlay {
|
| 105 |
+
opacity: 1;
|
| 106 |
+
}
|
| 107 |
+
|
| 108 |
+
.overlay-text {
|
| 109 |
+
background: linear-gradient(45deg, #7ed56f, #28b485);
|
| 110 |
+
-webkit-background-clip: text;
|
| 111 |
+
color: transparent;
|
| 112 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
|
| 113 |
+
}
|
| 114 |
+
|
| 115 |
+
.overlay-subtext {
|
| 116 |
+
font-size: 0.75em;
|
| 117 |
+
margin-top: 0.5em;
|
| 118 |
+
font-style: italic;
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
.overlay,
|
| 122 |
+
.overlay-subtext {
|
| 123 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
| 124 |
+
}
|
| 125 |
</style>
|
| 126 |
|
| 127 |
<h1 class="title">
|
| 128 |
<span>Raemu XL</span>
|
| 129 |
</h1>
|
| 130 |
|
| 131 |
+
<table class="custom-table">
|
| 132 |
+
<tr>
|
| 133 |
+
<td>
|
| 134 |
+
<div class="custom-image-container">
|
| 135 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/obp1kCabBf94rBIC9acHE.png" alt="Sample Image 1">
|
| 136 |
+
<div class="overlay">
|
| 137 |
+
<div class="overlay-text">Sample Image</div>
|
| 138 |
+
</div>
|
| 139 |
+
</div>
|
| 140 |
+
</td>
|
| 141 |
+
<td>
|
| 142 |
+
<div class="custom-image-container">
|
| 143 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/1Bt9u5eTutKoq7IcYW6hr.png" alt="Sample Image 2">
|
| 144 |
+
<div class="overlay">
|
| 145 |
+
<div class="overlay-text">Sample Image</div>
|
| 146 |
+
</div>
|
| 147 |
+
</div>
|
| 148 |
+
</td>
|
| 149 |
+
<td>
|
| 150 |
+
<div class="custom-image-container">
|
| 151 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/axIYI4IfGIUibEY7Uk9EC.png" alt="Sample Image 3">
|
| 152 |
+
<div class="overlay">
|
| 153 |
+
<div class="overlay-text">Sample Image</div>
|
| 154 |
+
</div>
|
| 155 |
+
</div>
|
| 156 |
+
</td>
|
| 157 |
+
</tr>
|
| 158 |
+
<tr>
|
| 159 |
+
<td>
|
| 160 |
+
<div class="custom-image-container">
|
| 161 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/1JbzlFalbYu6Bsp25N9N5.png" alt="Sample Image 4">
|
| 162 |
+
<div class="overlay">
|
| 163 |
+
<div class="overlay-text">Sample Image</div>
|
| 164 |
+
</div>
|
| 165 |
+
</div>
|
| 166 |
+
</td>
|
| 167 |
+
<td>
|
| 168 |
+
<div class="custom-image-container">
|
| 169 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/MTweqSnjw0wIpFaaNI6_U.png" alt="Sample Image 5">
|
| 170 |
+
<div class="overlay">
|
| 171 |
+
<div class="overlay-text">Sample Image</div>
|
| 172 |
+
</div>
|
| 173 |
+
</div>
|
| 174 |
+
</td>
|
| 175 |
+
<td>
|
| 176 |
+
<div class="custom-image-container">
|
| 177 |
+
<img class="custom-image" src="https://cdn-uploads.huggingface.co/production/uploads/64b24543eec33e27dc9a6eca/Os-_lyzIgB4n5M5WyawLT.jpeg" alt="Sample Image 6">
|
| 178 |
+
<div class="overlay">
|
| 179 |
+
<div class="overlay-text">Sample Image</div>
|
| 180 |
+
</div>
|
| 181 |
+
</div>
|
| 182 |
+
</td>
|
| 183 |
+
</tr>
|
| 184 |
+
</table>
|
| 185 |
+
|
| 186 |
**Raemu XL** is a merged model that focused in 2.5D Anime
|
| 187 |
|
| 188 |
## Model Details
|