File size: 27,543 Bytes
b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb 8cec73c b8e6adb |
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 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>FFusionAI - Model Showcase</title>
<style>.container .row {
column-count: 5;
column-gap: 10px;
}
.model-card {
position: relative;
display: inline-block;
width: 100%;
margin-bottom: 20px;
overflow: hidden;
border-radius: 10px;
break-inside: avoid;
}
.model-card img {
width: 100%;
display: block;
border-radius: 10px;
transition: transform 0.3s ease;
}
.model-title,
.model-description,
.download-section {
display: none;
}
.hover-content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s ease;
text-align: center;
font-family: 'Arial', sans-serif;
font-weight: 600;
color: #FFFFFF;
}
.model-link {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 90%;
margin: 0 auto;
background: rgba(255, 255, 255, 0.3);
padding: 10px;
border-radius: 5px;
font-size: 14px;
font-weight: 700;
text-align: center;
margin-bottom: 10px;
text-decoration: none; /* Remove underline */
color: #FFFFFF; /* FF pink/purple color */
}
.model-link:visited {
color: #b300b3; /* FF pink/purple color for visited link */
}
.from-section {
display: block;
width: 100%;
background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(5px);
padding: 8px;
text-align: center;
font-size: 12px;
}
.model-link img {
width: 24px;
height: 24px;
margin-bottom: 8px;
}
.model-card:hover .hover-content {
opacity: 1;
}
svg {
width: 100%;
height: 100%;
visibility: hidden;
}
.ell, #ai {
fill: none;
}
#domainsContainer {
position: absolute;
right: 20px;
top: 20px;
color: #359eee;
font-family: 'Courier New', monospace;
}
#domainsList li {
transform: translateY(20px);
opacity: 0;
}
#mainSVG {
max-width: 100%;
height: auto;
}
#domainsContainer {
font-size: 12px;
padding: 5px;
margin-top: 10px;
max-height: 400px;
}
#domainsList li {
margin-bottom: 5px;
}
#dateContainer {
text-align: center;
margin: 10px 0;
}
</style>
<body>
<svg id="mainSVG" xmlns="http://www.w3.org/2000/svg"preserveAspectRatio="xMidYMid" viewBox="0 0 800 600">
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
<linearGradient id="aiGrad" x1="513.98" y1="290" x2="479.72" y2="320" gradientUnits="userSpaceOnUse" >
<stop offset="0" stop-color="#FFFFFF" stop-opacity="0" />
<stop offset=".15" stop-color="#EF476F" />
<stop offset=".4" stop-color="#359eee" />
<stop offset=".6" stop-color="#03cea4" />
<stop offset=".78" stop-color="#FFC43D" />
<stop offset="1" stop-color="#FFFFFF" stop-opacity="0" />
</linearGradient>
<text fill="black" font-family="Arial" font-size="12" id="dateText" text-anchor="middle" x="400" y="450">
FF >= 09/06/2023
</text>
<g transform="translate(362.90899348258972, 320.99999618530273)">
<path id="aiGrad" d="m30.21-33.92q-5.19 0-8.96-1.73l-2.05 10.37h12.35q0 3.39-1.69 5.54-1.7 2.14-4.77 2.14-3.33 0-6.4-1.22-0.64-0.25-0.71-0.32l-3.64 19.14h-13.96l8.13-42.24h28.55q0 3.9-1.83 6.11-1.82 2.21-5.02 2.21zm34.37 0q-5.19 0-8.96-1.73l-2.05 10.37h12.35q0 3.39-1.7 5.54-1.69 2.14-4.76 2.14-3.33 0-6.4-1.22-0.64-0.25-0.71-0.32l-3.65 19.14h-13.95l8.13-42.24h28.54q0 3.9-1.82 6.11t-5.02 2.21z"
fill="url(#aiGrad)" stroke-linecap="round" stroke-miterlimit="10" stroke="url(#aiGrad)" stroke-width="1" opacity="0.99"></path>
</g>
<g transform="translate(362.90899348258972, 320.99999618530273)">
<path id="ai" d="m30.21-33.92q-5.19 0-8.96-1.73l-2.05 10.37h12.35q0 3.39-1.69 5.54-1.7 2.14-4.77 2.14-3.33 0-6.4-1.22-0.64-0.25-0.71-0.32l-3.65 19.14h-13.95l8.13-42.24h28.54q0 3.9-1.82 6.11t-5.02 2.21z" fill="url(#aiGrad)" stroke-linecap="round" stroke-miterlimit="10" stroke="url(#aiGrad)" stroke-width="3" opacity="1"></path>
</g>
<g transform="translate(362.90899348258972, 320.99999618530273)">
<path id="aiClone d="m30.21-33.92q-5.19 0-8.96-1.73l-2.05 10.37h12.35q0 3.39-1.69 5.54-1.7 2.14-4.77 2.14-3.33 0-6.4-1.22-0.64-0.25-0.71-0.32l-3.64 19.14h-13.96l8.13-42.24h28.55q0 3.9-1.83 6.11-1.82 2.21-5.02 2.21zm34.37 0q-5.19 0-8.96-1.73l-2.05 10.37h12.35q0 3.39-1.7 5.54-1.69 2.14-4.76 2.14-3.33 0-6.4-1.22-0.64-0.25-0.71-0.32l-3.65 19.14h-13.95l8.13-42.24h28.54q0 3.9-1.82 6.11t-5.02 2.21z"
fill="url(#aiGrad)" stroke-linecap="round" stroke-miterlimit="10" stroke="url(#aiGrad)" stroke-width="1"></path>
</svg>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script>
gsap.config({ trialWarn: false });
let select = s => document.querySelector(s),
allEll = gsap.utils.toArray('.ell'),
mainSVG = select('#mainSVG'),
colorArr = ['#00ffff', '#ff00ff', '#EF476F', '#ffff00'],
colorInterp = gsap.utils.interpolate(colorArr);
// Ellipses Animation
gsap.set(mainSVG, { visibility: 'visible' });
allEll.forEach((c, i) => {
function animate(el, count) {
let tl = gsap.timeline({
defaults: { ease: 'rough.inOut' },
repeat: -1
});
gsap.set(el, {
opacity: 1 - count / (allEll.length),
stroke: colorInterp(count / (allEll.length))
});
tl.to(el, {
attr: {
ry: `-=${count * 2.3}`,
rx: `+=${count * 1.4}`
},
ease: 'sine.in'
})
.to(el, {
attr: {
ry: `+=${count * 2.3}`,
rx: `-=${count * 1.4}`
},
ease: 'sine'
})
.to(el, {
duration: 1,
rotation: 190,
transformOrigin: '50% 50%'
}, 0).timeScale(0.5);
}
gsap.delayedCall(i / (allEll.length - 1), animate, [c, i + 1]);
});
// Gradient Animation
gsap.to('#aiGrad', {
duration: 3.5,
delay: 0.75,
attr: { x1: '-=300', x2: '-=300' },
scale: 1.2,
transformOrigin: '10% 50%',
repeat: -1,
ease: 'sine.inOut',
});
// AI Logo Animation (Blur + Pulsate)
gsap.to('#ai', {
duration: 2,
scale: 1,
repeat: -1,
yoyo: false,
ease: 'back.out(1.7)',
filter: 'blur(2px)' // Blur effect
});
// AI Logo Animation (Blur + Pulsate)
gsap.to('#idle', {
duration: 3,
scale: 1.2,
repeat: -1,
ease: 'sine.inOut',
filter: 'blur(0px)' // Blur effect
});
// AI Clone Animation (Crystal Clear and Expand)
let aiClone = select('#aiClone'); // Cloned logo
gsap.set(aiClone, { scale: 1, filter: 'blur(0px)', opacity: 0 }); // Initially hidden
gsap.timeline({ repeat: -1 })
.to(aiClone, {
duration: 1,
scale: 1.2,
ease: 'power2.in',
opacity: 1
})
.to(aiClone, {
duration: 2, // Stay visible for 2 seconds
ease: 'power2.out',
})
.to(aiClone, {
duration: 1,
scale: 1.6, // Expand
ease: 'power2.in',
opacity: 0
});
</script>
<div id="domainsContainer">
<h3>Projects in Development:</h3>
<ul id="domainsList"></ul>
</div>
<script>
// Loading Bar Animation
gsap.to('#progressFill', {
duration: 2,
attr: { x2: '600' },
repeat: -1,
ease: 'linear'
});
// Domains Animation
const domains = [
"ffusion.ai", "di.ffusion.art", "AIstation.eu", "1e-1.com",
"1e-2.com", "1e-3.com", "1e-5.com", "AIstation.design",
"AIstation.gallery", "AIstation.media", "AIstation.network",
"AIstation.photography", "AIstation.photos", "AIstation.pro",
"AIstation.store", "DIFFUS.ONline", "ffusion.art", "ffusion.org",
"ffusion.shop", "fusion.photos", "latex.pics", "latex.studio", "latex.id"
];
const domainsList = document.getElementById('domainsList');
domains.forEach((domain, index) => {
const li = document.createElement('li');
li.textContent = domain;
domainsList.appendChild(li);
gsap.to(li, {
duration: 2,
delay: index * 0.5,
y: 0,
opacity: 1,
repeat: -1,
yoyo: true,
ease: 'sine.inOut'
});
});
</script>
<div class="container">
<div class="row">
<!-- Card 1 -->
<div class="model-card">
<img alt="FFusion/FFusionXL-BASE · Hugging Face - Cover Image" src="https://ffusion-readme.hf.space/FFusion00.jpeg"/>
<div class="model-title">FFusionXL-BASE · Hugging Face</div>
<div class="model-description">We’re on a journey to advance and democratize artificial intelligence through open source and open science.</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://huggingface.co/FFusion/FFusionXL-BASE">FFusion/FFusionXL-BASE · Hugging Face <img alt="Favicon" src="huggingface.co_favicon.ico"/></a>
<div class="from-section">Download from: (huggingface.co)</div></div>
</div>
<!-- Card 2 -->
<div class="model-card">
<img alt="FFusion/FFusionXL-LoRa-SDXL-Potion-Art-Engine · Hugging Face - Cover Image" src="https://ffusion-readme.hf.space/FFusion02.jpeg"/>
<div class="model-title">FFusionXL-LoRa-SDXL-Potion-Art-Engine · Hugging Face</div>
<div class="model-description">We’re on a journey to advance and democratize artificial intelligence through open source and open science.</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://huggingface.co/FFusion/FFusionXL-LoRa-SDXL-Potion-Art-Engine">FFusion/FFusionXL-LoRa-SDXL-Potion-Art-Engine · Hugging Face <img alt="Favicon" src="huggingface.co_favicon.ico"/></a>
<div class="from-section">Download from: (huggingface.co)</div></div>
</div>
<!-- Card 3 -->
<div class="model-card">
<img alt="FFusion/FFusion-BaSE · Hugging Face - Cover Image" src="https://ffusion-readme.hf.space/FFusion23.jpeg"/>
<div class="model-title">FFusion-BaSE · Hugging Face</div>
<div class="model-description">We’re on a journey to advance and democratize artificial intelligence through open source and open science.</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://huggingface.co/FFusion/FFusion-BaSE">FFusion/FFusion-BaSE · Hugging Face <img alt="Favicon" src="huggingface.co_favicon.ico"/></a>
<div class="from-section">Download from: (huggingface.co)</div></div>
</div>
<!-- Card 4 -->
<div class="model-card">
<img alt="FFusion/di.ffusion.ai.Beta512 · Hugging Face - Cover Image" src="https://ffusion-readme.hf.space/FFusion04.jpeg"/>
<div class="model-title">di.ffusion.ai.Beta512 · Hugging Face</div>
<div class="model-description">We’re on a journey to advance and democratize artificial intelligence through open source and open science.</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://huggingface.co/FFusion/di.ffusion.ai.Beta512">FFusion/di.ffusion.ai.Beta512 · Hugging Face <img alt="Favicon" src="huggingface.co_favicon.ico"/></a>
<div class="from-section">Download from: (huggingface.co)</div></div>
</div>
<!-- Card 5 -->
<div class="model-card">
<img alt="FFusion/FFusion-BaSE-Alpha · Hugging Face - Cover Image" src="https://ffusion-readme.hf.space/FFusion26.jpeg"/>
<div class="model-title">FFusion/FFusion-BaSE ALPHA 768 · Hugging Face</div>
<div class="model-description"></div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://huggingface.co/FFusion/di.FFUSION.ai-v2.1-768-BaSE-alpha">FFusion-BaSE 2.1 - 768· Hugging Face <img alt="Favicon" src="huggingface.co_favicon.ico"/></a>
<div class="from-section">Download from: (huggingface.co)</div></div>
</div>
<!-- Card 6 -->
<div class="model-card">
<img alt="FFusion/FFusionXL-BASE · Hugging Face - Cover Image" src="https://ffusion-readme.hf.space/FFusion24.jpeg"/>
<div class="model-title">FFusionXL-0.9 · Hugging Face</div>
<div class="model-description"></div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://huggingface.co/FFusion/FFusionXL-09-SDXL">FFusion/FFusionXL-0.9 · Hugging Face <img alt="Favicon" src="huggingface.co_favicon.ico"/></a>
<div class="from-section">Download from: (huggingface.co)</div></div>
</div>
<div class="model-card">
<img alt="GAG - RPG Potions | LoRa 2.1 - v 0.1 | Stable Diffusion LoRA | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion06.jpeg"/>
<div class="model-title">GAG - RPG Potions | LoRa 2.1 - v 0.1 | Stable Diffusion LoRA | Civitai</div>
<div class="model-description">GAG = Game Asset Generator Starting my GAG Serries 🤟 🥃 This one is a Potion LORA for 2.1 SD models. Depending on the model you will get quite diffe...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/22591/gag-rpg-potions-or-lora-21">GAG - RPG Potions | LoRa 2.1 - v 0.1 | Stable Diffusion LoRA | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="Potion Art Engine (SDXL, FFXL) - v0.1 | Stable Diffusion LyCORIS | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion07.jpeg"/>
<div class="model-title">Potion Art Engine (SDXL, FFXL) - v0.1 | Stable Diffusion LyCORIS | Civitai</div>
<div class="model-description">Potion Art Engine (SDXL, FFXL) experimental ver Specifications LoRA Type: LyCORIS/LoKr, Prodigy Trained Resolution: 1024 x 1024 pixels Tested Resol...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/113184/potion-art-engine-sdxl-ffxl">Potion Art Engine (SDXL, FFXL) - v0.1 | Stable Diffusion LyCORIS | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="Color Fusion - ver 1.o | Stable Diffusion Checkpoint | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion08.jpeg"/>
<div class="model-title">Color Fusion - ver 1.o | Stable Diffusion Checkpoint | Civitai</div>
<div class="model-description">/// wrong previews uploaded prior /// Expanding Fruit Fusion with a few :D NOT fruit sets 🤟 🥃 Better text encoder coming up in next ver Sample Prom...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/20617/color-fusion">Color Fusion - ver 1.o | Stable Diffusion Checkpoint | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="di.FFUSION.ai Text Encoder - SD 2.1 LyCORIS - FXAA v1.0 | Stable Diffusion LyCORIS | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion19.jpeg"/>
<div class="model-title">di.FFUSION.ai Text Encoder - SD 2.1 LyCORIS - FXAA v1.0 | Stable Diffusion LyCORIS | Civitai</div>
<div class="model-description">di.FFUSION.ai -tXe-FXAA Trained on "121361" images. Enhance your model's quality and sharpness using your own pre-trained Unet. The text encoder (w...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/83622/diffusionai-text-encoder-sd-21-lycoris">di.FFUSION.ai Text Encoder - SD 2.1 LyCORIS - FXAA v1.0 | Stable Diffusion LyCORIS | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="Stage 1 - SD 2.1 - LoRa FFusion - v1.0 | Stable Diffusion LoRA | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion10.jpeg"/>
<div class="model-title">Stage 1 - SD 2.1 - LoRa FFusion - v1.0 | Stable Diffusion LoRA | Civitai</div>
<div class="model-description">LoRa & LyCORIS Fusion Trained on ~ 217 650 MJ Images LyCoris trained on 211 924 MJ Images LoRa trained on 217 650 MJ Images Merged in di.FFUSIO...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/83597/stage-1-sd-21-lora-ffusion">Stage 1 - SD 2.1 - LoRa FFusion - v1.0 | Stable Diffusion LoRA | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="FFUSION AI - SD 2.1 - BaSE - v1.0.0 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion14.jpeg"/>
<div class="model-title">FFUSION AI - SD 2.1 - BaSE - v1.0.0 | Stable Diffusion Checkpoint | Civitai</div>
<div class="model-description">📣 FFUSION AI SD2.1- 768 BaSE Public 1.0.0Release is Here! Diffusers available at https://huggingface.co/FFusion STABLE DIFFUSION 2.1 768+ MODEL bef...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/82039/ffusion-ai-sd-21">FFUSION AI - SD 2.1 - BaSE - v1.0.0 | Stable Diffusion Checkpoint | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="Egg Fusion - LoRa Merge - v1.0 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion15.jpeg"/>
<div class="model-title">Egg Fusion - LoRa Merge - v1.0 | Stable Diffusion Checkpoint | Civitai</div>
<div class="model-description">A fully revamped checkpoint based on the 512dim lora and chilloutmix_NiPrunedFp32Fix + deliberate_v2. Training data: 512 DIM LORA https://civitai.c...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/43863/egg-fusion-lora-merge">Egg Fusion - LoRa Merge - v1.0 | Stable Diffusion Checkpoint | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="Fruit Fusion - ver. 1.o FR2 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion11.jpeg"/>
<div class="model-title">Fruit Fusion - ver. 1.o FR2 | Stable Diffusion Checkpoint | Civitai</div>
<div class="model-description">Fruit Fusion - Art, Surreal & Stock Diffusion The current version can generate: Stock Photos of Fruits / Fruit art/ digital/surreal/background/...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/18742/fruit-fusion">Fruit Fusion - ver. 1.o FR2 | Stable Diffusion Checkpoint | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="Latex Fusion - UnCLIP - v.00002 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion12.jpeg"/>
<div class="model-title">Latex Fusion - UnCLIP - v.00002 | Stable Diffusion Checkpoint | Civitai</div>
<div class="model-description">A real UnCLIP with working img2img clear prompt / add image and click generate ;) 60% of the Time, It Works Every Time Compatanble with ComfyUI htt...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/25688/latex-fusion-unclip">Latex Fusion - UnCLIP - v.00002 | Stable Diffusion Checkpoint | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="LoRa EGG/Easter Fusion - v2 | Stable Diffusion LoRA | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion13.jpeg"/>
<div class="model-title">LoRa EGG/Easter Fusion - v2 | Stable Diffusion LoRA | Civitai</div>
<div class="model-description">v2 14k more steps. based on 1,5 normal for bigger compatibility with other mothers: Data available in lora file ss_mixed_precision: "bf16",ss_netwo...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/41893/lora-eggeaster-fusion">LoRa EGG/Easter Fusion - v2 | Stable Diffusion LoRA | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="FFusionXL 0.9 SDXL model + Diffusers - v0.9 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion05.jpeg"/>
<div class="model-title">FFusionXL 0.9 SDXL model + Diffusers - v0.9 | Stable Diffusion Checkpoint | Civitai</div>
<div class="model-description">FusionXL SDXL model + Diffusers from diffusers import DiffusionPipeline import torch pipe = DiffusionPipeline.from_pretrained("FFusion/FFusionXL-09...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/116786/ffusionxl-09-sdxl-model-diffusers">FFusionXL 0.9 SDXL model + Diffusers - v0.9 | Stable Diffusion Checkpoint | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="Island Generator (SDXL, FFXL) - v.0.3 | Stable Diffusion LyCORIS | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion09.jpeg"/>
<div class="model-title">Island Generator (SDXL, FFXL) - v.0.3 | Stable Diffusion LyCORIS | Civitai</div>
<div class="model-description">generating game assets like islands and objects in low polygonal landscapes, pixelated, 3D, and isometric styles. Specifications: LoRA Type : LyCOR...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/110688/island-generator-sdxl-ffxl">Island Generator (SDXL, FFXL) - v.0.3 | Stable Diffusion LyCORIS | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="Latex.ID - LoRa Latex Generator - LoCon v0.2 | Stable Diffusion LoRA | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion16.jpeg"/>
<div class="model-title">Latex.ID - LoRa Latex Generator - LoCon v0.2 | Stable Diffusion LoRA | Civitai</div>
<div class="model-description">Our LoRa Add-On Empowers Your Imagination Beyond Latex Generation :) LATEX Generator - CMYK edition by Latex.ID https://civitai.com/models/14503 Du...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/17447/latexid-lora-latex-generator">Latex.ID - LoRa Latex Generator - LoCon v0.2 | Stable Diffusion LoRA | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="LLaMA Generator - SD-2.1 LyCORIS - v1.0 768DIM | Stable Diffusion LyCORIS | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion17.jpeg"/>
<div class="model-title">LLaMA Generator - SD-2.1 LyCORIS - v1.0 768DIM | Stable Diffusion LyCORIS | Civitai</div>
<div class="model-description">Nothing more nothing less.. just your everyday LLaMA generator ¯\_(ツ)_/¯ 🤟 🥃 PS: The second file: Training Data (201.28 MB) is a zipped version of ...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/85348/llama-generator-sd-21-lycoris">LLaMA Generator - SD-2.1 LyCORIS - v1.0 768DIM | Stable Diffusion LyCORIS | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="Latex.ID - Leather & Latex Leggings - v. 0.3 | Stable Diffusion LoRA | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion18.jpeg"/>
<div class="model-title">Latex.ID - Leather & Latex Leggings - v. 0.3 | Stable Diffusion LoRA | Civitai</div>
<div class="model-description">Base initial version trained on 120 latex and leather leggings. 1500 version is next.</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/19093/latexid-leather-and-latex-leggings">Latex.ID - Leather & Latex Leggings - v. 0.3 | Stable Diffusion LoRA | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
<div class="model-card">
<img alt="LATEX Generator - 1.5 | by Latex.ID - v0.9 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="https://ffusion-readme.hf.space/FFusion20.jpeg"/>
<div class="model-title">LATEX Generator - 1.5 | by Latex.ID - v0.9 | Stable Diffusion Checkpoint | Civitai</div>
<div class="model-description">A new build and training method for the SD 1.5 model. This is a limited training preview of the upcoming 1.0 (in a few days 🤟 🥃) Some prompts can g...</div>
<div class="download-section">Download:</div>
<div class="hover-content"><a class="model-link" href="https://civitai.com/models/14503/latex-generator-15-or-by-latexid">LATEX Generator - 1.5 | by Latex.ID - v0.9 | Stable Diffusion Checkpoint | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
<div class="from-section">Download from: (civitai.com)</div></div>
</div>
</div>
</div>
</body>
</html> |