idlebg commited on
Commit
b8e6adb
1 Parent(s): ab19735

modelcards-html-var

Browse files
Files changed (1) hide show
  1. modelcards.html +465 -0
modelcards.html ADDED
@@ -0,0 +1,465 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="utf-8"/>
6
+ <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
7
+ <title>Model Showcase</title>
8
+
9
+ [
10
+
11
+
12
+
13
+ <style>.container .row {
14
+ column-count: 5;
15
+ column-gap: 10px;
16
+ }
17
+
18
+ .model-card {
19
+ position: relative;
20
+ display: inline-block;
21
+ width: 100%;
22
+ margin-bottom: 20px;
23
+ overflow: hidden;
24
+ border-radius: 10px;
25
+ break-inside: avoid;
26
+ }
27
+
28
+ .model-card img {
29
+ width: 100%;
30
+ display: block;
31
+ border-radius: 10px;
32
+ transition: transform 0.3s ease;
33
+ }
34
+
35
+ .model-title,
36
+ .model-description,
37
+ .download-section {
38
+ display: none;
39
+ }
40
+
41
+ .hover-content {
42
+ position: absolute;
43
+ top: 0;
44
+ left: 0;
45
+ width: 100%;
46
+ height: 100%;
47
+ background: rgba(255, 255, 255, 0.1);
48
+ backdrop-filter: blur(10px);
49
+ border-radius: 10px;
50
+ display: flex;
51
+ flex-direction: column;
52
+ justify-content: center;
53
+ align-items: center;
54
+ opacity: 0;
55
+ transition: opacity 0.3s ease;
56
+ text-align: center;
57
+ font-family: 'Arial', sans-serif;
58
+ font-weight: 600;
59
+ color: #FFFFFF;
60
+ }
61
+
62
+ .model-link {
63
+ display: flex;
64
+ flex-direction: column;
65
+ align-items: center;
66
+ justify-content: center;
67
+ width: 90%;
68
+ margin: 0 auto;
69
+ background: rgba(255, 255, 255, 0.3);
70
+ padding: 10px;
71
+ border-radius: 5px;
72
+ font-size: 14px;
73
+ font-weight: 700;
74
+ text-align: center;
75
+ margin-bottom: 10px;
76
+ text-decoration: none; /* Remove underline */
77
+ color: #FFFFFF; /* FF pink/purple color */
78
+ }
79
+
80
+ .model-link:visited {
81
+ color: #b300b3; /* FF pink/purple color for visited link */
82
+ }
83
+
84
+ .from-section {
85
+ display: block;
86
+ width: 100%;
87
+ background: rgba(255, 255, 255, 0.3);
88
+ backdrop-filter: blur(5px);
89
+ padding: 8px;
90
+ text-align: center;
91
+ font-size: 12px;
92
+ }
93
+
94
+ .model-link img {
95
+ width: 24px;
96
+ height: 24px;
97
+ margin-bottom: 8px;
98
+ }
99
+
100
+ .model-card:hover .hover-content {
101
+ opacity: 1;
102
+ }
103
+ svg {
104
+ width: 100%;
105
+ height: 100%;
106
+ visibility: hidden;
107
+ }
108
+
109
+ .ell, #ai {
110
+ fill: none;
111
+ }
112
+ </style>
113
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
114
+ <script>
115
+ gsap.config({ trialWarn: false });
116
+ let select = s => document.querySelector(s),
117
+ allEll = gsap.utils.toArray('.ell'),
118
+ mainSVG = select('#mainSVG'),
119
+ colorArr = ['#00ffff', '#ff00ff', '#EF476F', '#ffff00'],
120
+ colorInterp = gsap.utils.interpolate(colorArr);
121
+
122
+ // Ellipses Animation
123
+ gsap.set(mainSVG, { visibility: 'visible' });
124
+
125
+ allEll.forEach((c, i) => {
126
+ function animate(el, count) {
127
+ let tl = gsap.timeline({
128
+ defaults: { ease: 'rough.inOut' },
129
+ repeat: -1
130
+ });
131
+ gsap.set(el, {
132
+ opacity: 1 - count / (allEll.length),
133
+ stroke: colorInterp(count / (allEll.length))
134
+ });
135
+
136
+ tl.to(el, {
137
+ attr: {
138
+ ry: `-=${count * 2.3}`,
139
+ rx: `+=${count * 1.4}`
140
+ },
141
+ ease: 'sine.in'
142
+ })
143
+ .to(el, {
144
+ attr: {
145
+ ry: `+=${count * 2.3}`,
146
+ rx: `-=${count * 1.4}`
147
+ },
148
+ ease: 'sine'
149
+ })
150
+ .to(el, {
151
+ duration: 1,
152
+ rotation: 190,
153
+ transformOrigin: '50% 50%'
154
+ }, 0).timeScale(0.5);
155
+ }
156
+
157
+ gsap.delayedCall(i / (allEll.length - 1), animate, [c, i + 1]);
158
+ });
159
+
160
+ // Gradient Animation
161
+ gsap.to('#aiGrad', {
162
+ duration: 3.5,
163
+ delay: 0.75,
164
+ attr: { x1: '-=300', x2: '-=300' },
165
+ scale: 1.2,
166
+ transformOrigin: '10% 50%',
167
+ repeat: -1,
168
+ ease: 'sine.inOut',
169
+ });
170
+
171
+ // AI Logo Animation (Blur + Pulsate)
172
+ gsap.to('#ai', {
173
+ duration: 2,
174
+ scale: 1,
175
+ repeat: -1,
176
+ yoyo: false,
177
+ ease: 'back.out(1.7)',
178
+ filter: 'blur(2px)' // Blur effect
179
+ });
180
+
181
+ // AI Logo Animation (Blur + Pulsate)
182
+ gsap.to('#idle', {
183
+ duration: 3,
184
+ scale: 1.2,
185
+ repeat: -1,
186
+
187
+ ease: 'sine.inOut',
188
+ filter: 'blur(0px)' // Blur effect
189
+ });
190
+
191
+ // AI Clone Animation (Crystal Clear and Expand)
192
+ let aiClone = select('#aiClone'); // Cloned logo
193
+ gsap.set(aiClone, { scale: 1, filter: 'blur(0px)', opacity: 0 }); // Initially hidden
194
+
195
+ gsap.timeline({ repeat: -1 })
196
+ .to(aiClone, {
197
+ duration: 1,
198
+ scale: 1.2,
199
+ ease: 'power2.in',
200
+ opacity: 1
201
+ })
202
+ .to(aiClone, {
203
+ duration: 2, // Stay visible for 2 seconds
204
+ ease: 'power2.out',
205
+ })
206
+ .to(aiClone, {
207
+ duration: 1,
208
+ scale: 1.6, // Expand
209
+ ease: 'power2.in',
210
+ opacity: 0
211
+ });
212
+ </script>
213
+ <div class="container">
214
+ <div class="logo-container" style="text-align: center; max-height: 512px;">
215
+
216
+ <svg id="mainSVG" xmlns="http://www.w3.org/2000/svg"preserveAspectRatio="xMidYMid" viewBox="0 0 800 600">
217
+
218
+
219
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
220
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
221
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
222
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
223
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
224
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
225
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
226
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
227
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
228
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
229
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
230
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
231
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
232
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
233
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
234
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
235
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
236
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
237
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
238
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
239
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
240
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
241
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
242
+ <ellipse class="ell" cx="400" cy="300" rx="69" ry="69" />
243
+
244
+ <linearGradient id="aiGrad" x1="513.98" y1="290" x2="479.72" y2="320" gradientUnits="userSpaceOnUse" >
245
+ <stop offset="0" stop-color="#FFFFFF" stop-opacity="0" />
246
+ <stop offset=".15" stop-color="#EF476F" />
247
+ <stop offset=".4" stop-color="#359eee" />
248
+ <stop offset=".6" stop-color="#03cea4" />
249
+ <stop offset=".78" stop-color="#FFC43D" />
250
+ <stop offset="1" stop-color="#FFFFFF" stop-opacity="0" />
251
+ </linearGradient>
252
+
253
+
254
+
255
+ <g transform="translate(362.90899348258972, 320.99999618530273)">
256
+ <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"
257
+ fill="url(#aiGrad)" stroke-linecap="round" stroke-miterlimit="10" stroke="url(#aiGrad)" stroke-width="1" opacity="0.99"></path>
258
+ </g>
259
+ <g transform="translate(362.90899348258972, 320.99999618530273)">
260
+ <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>
261
+ </g>
262
+
263
+ <g transform="translate(362.90899348258972, 320.99999618530273)">
264
+ <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"
265
+ fill="url(#aiGrad)" stroke-linecap="round" stroke-miterlimit="10" stroke="url(#aiGrad)" stroke-width="1"></path>
266
+
267
+ </svg>
268
+
269
+
270
+
271
+
272
+
273
+ </div>
274
+ <div class="row">
275
+ <!-- Card 1 -->
276
+ <div class="model-card">
277
+ <img alt="FFusion/FFusionXL-BASE · Hugging Face - Cover Image" src="FFusion00.jpeg"/>
278
+ <div class="model-title">FFusionXL-BASE · Hugging Face</div>
279
+ <div class="model-description">We’re on a journey to advance and democratize artificial intelligence through open source and open science.</div>
280
+ <div class="download-section">Download:</div>
281
+ <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>
282
+ <div class="from-section">Download from: (huggingface.co)</div></div>
283
+ </div>
284
+ <!-- Card 2 -->
285
+ <div class="model-card">
286
+ <img alt="FFusion/FFusionXL-LoRa-SDXL-Potion-Art-Engine · Hugging Face - Cover Image" src="FFusion02.jpeg"/>
287
+ <div class="model-title">FFusionXL-LoRa-SDXL-Potion-Art-Engine · Hugging Face</div>
288
+ <div class="model-description">We’re on a journey to advance and democratize artificial intelligence through open source and open science.</div>
289
+ <div class="download-section">Download:</div>
290
+ <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>
291
+ <div class="from-section">Download from: (huggingface.co)</div></div>
292
+ </div>
293
+
294
+ <!-- Card 3 -->
295
+ <div class="model-card">
296
+ <img alt="FFusion/FFusion-BaSE · Hugging Face - Cover Image" src="FFusion23.jpeg"/>
297
+ <div class="model-title">FFusion-BaSE · Hugging Face</div>
298
+ <div class="model-description">We’re on a journey to advance and democratize artificial intelligence through open source and open science.</div>
299
+ <div class="download-section">Download:</div>
300
+ <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>
301
+ <div class="from-section">Download from: (huggingface.co)</div></div>
302
+ </div>
303
+ <!-- Card 4 -->
304
+ <div class="model-card">
305
+ <img alt="FFusion/di.ffusion.ai.Beta512 · Hugging Face - Cover Image" src="FFusion04.jpeg"/>
306
+ <div class="model-title">di.ffusion.ai.Beta512 · Hugging Face</div>
307
+ <div class="model-description">We’re on a journey to advance and democratize artificial intelligence through open source and open science.</div>
308
+ <div class="download-section">Download:</div>
309
+ <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>
310
+ <div class="from-section">Download from: (huggingface.co)</div></div>
311
+ </div>
312
+ <!-- Card 5 -->
313
+ <div class="model-card">
314
+ <img alt="FFusion/FFusion-BaSE-Alpha · Hugging Face - Cover Image" src="FFusion26.jpeg"/>
315
+ <div class="model-title">FFusion/FFusion-BaSE ALPHA 768 · Hugging Face</div>
316
+ <div class="model-description"></div>
317
+ <div class="download-section">Download:</div>
318
+ <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>
319
+ <div class="from-section">Download from: (huggingface.co)</div></div>
320
+ </div>
321
+ <!-- Card 6 -->
322
+ <div class="model-card">
323
+ <img alt="FFusion/FFusionXL-BASE · Hugging Face - Cover Image" src="FFusion24.jpeg"/>
324
+ <div class="model-title">FFusionXL-0.9 · Hugging Face</div>
325
+ <div class="model-description"></div>
326
+ <div class="download-section">Download:</div>
327
+ <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>
328
+ <div class="from-section">Download from: (huggingface.co)</div></div>
329
+ </div>
330
+
331
+
332
+ <div class="model-card">
333
+ <img alt="GAG - RPG Potions | LoRa 2.1 - v 0.1 | Stable Diffusion LoRA | Civitai - Cover Image" src="FFusion06.jpeg"/>
334
+ <div class="model-title">GAG - RPG Potions | LoRa 2.1 - v 0.1 | Stable Diffusion LoRA | Civitai</div>
335
+ <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>
336
+ <div class="download-section">Download:</div>
337
+ <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>
338
+ <div class="from-section">Download from: (civitai.com)</div></div>
339
+ </div>
340
+ <div class="model-card">
341
+ <img alt="Potion Art Engine (SDXL, FFXL) - v0.1 | Stable Diffusion LyCORIS | Civitai - Cover Image" src="FFusion07.jpeg"/>
342
+ <div class="model-title">Potion Art Engine (SDXL, FFXL) - v0.1 | Stable Diffusion LyCORIS | Civitai</div>
343
+ <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>
344
+ <div class="download-section">Download:</div>
345
+ <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>
346
+ <div class="from-section">Download from: (civitai.com)</div></div>
347
+ </div>
348
+ <div class="model-card">
349
+ <img alt="Color Fusion - ver 1.o | Stable Diffusion Checkpoint | Civitai - Cover Image" src="FFusion08.jpeg"/>
350
+ <div class="model-title">Color Fusion - ver 1.o | Stable Diffusion Checkpoint | Civitai</div>
351
+ <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>
352
+ <div class="download-section">Download:</div>
353
+ <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>
354
+ <div class="from-section">Download from: (civitai.com)</div></div>
355
+ </div>
356
+
357
+ <div class="model-card">
358
+ <img alt="di.FFUSION.ai Text Encoder - SD 2.1 LyCORIS - FXAA v1.0 | Stable Diffusion LyCORIS | Civitai - Cover Image" src="FFusion19.jpeg"/>
359
+ <div class="model-title">di.FFUSION.ai Text Encoder - SD 2.1 LyCORIS - FXAA v1.0 | Stable Diffusion LyCORIS | Civitai</div>
360
+ <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>
361
+ <div class="download-section">Download:</div>
362
+ <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>
363
+ <div class="from-section">Download from: (civitai.com)</div></div>
364
+ </div>
365
+ <div class="model-card">
366
+ <img alt="Stage 1 - SD 2.1 - LoRa FFusion - v1.0 | Stable Diffusion LoRA | Civitai - Cover Image" src="FFusion10.jpeg"/>
367
+ <div class="model-title">Stage 1 - SD 2.1 - LoRa FFusion - v1.0 | Stable Diffusion LoRA | Civitai</div>
368
+ <div class="model-description">LoRa &amp; 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>
369
+ <div class="download-section">Download:</div>
370
+ <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>
371
+ <div class="from-section">Download from: (civitai.com)</div></div>
372
+ </div>
373
+ <div class="model-card">
374
+ <img alt="FFUSION AI - SD 2.1 - BaSE - v1.0.0 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="FFusion14.jpeg"/>
375
+ <div class="model-title">FFUSION AI - SD 2.1 - BaSE - v1.0.0 | Stable Diffusion Checkpoint | Civitai</div>
376
+ <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>
377
+ <div class="download-section">Download:</div>
378
+ <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>
379
+ <div class="from-section">Download from: (civitai.com)</div></div>
380
+ </div>
381
+ <div class="model-card">
382
+ <img alt="Egg Fusion - LoRa Merge - v1.0 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="FFusion15.jpeg"/>
383
+ <div class="model-title">Egg Fusion - LoRa Merge - v1.0 | Stable Diffusion Checkpoint | Civitai</div>
384
+ <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>
385
+ <div class="download-section">Download:</div>
386
+ <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>
387
+ <div class="from-section">Download from: (civitai.com)</div></div>
388
+ </div>
389
+ <div class="model-card">
390
+ <img alt="Fruit Fusion - ver. 1.o FR2 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="FFusion11.jpeg"/>
391
+ <div class="model-title">Fruit Fusion - ver. 1.o FR2 | Stable Diffusion Checkpoint | Civitai</div>
392
+ <div class="model-description">Fruit Fusion - Art, Surreal &amp; Stock Diffusion The current version can generate: Stock Photos of Fruits / Fruit art/ digital/surreal/background/...</div>
393
+ <div class="download-section">Download:</div>
394
+ <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>
395
+ <div class="from-section">Download from: (civitai.com)</div></div>
396
+ </div>
397
+ <div class="model-card">
398
+ <img alt="Latex Fusion - UnCLIP - v.00002 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="FFusion12.jpeg"/>
399
+ <div class="model-title">Latex Fusion - UnCLIP - v.00002 | Stable Diffusion Checkpoint | Civitai</div>
400
+ <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>
401
+ <div class="download-section">Download:</div>
402
+ <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>
403
+ <div class="from-section">Download from: (civitai.com)</div></div>
404
+ </div>
405
+ <div class="model-card">
406
+ <img alt="LoRa EGG/Easter Fusion - v2 | Stable Diffusion LoRA | Civitai - Cover Image" src="FFusion13.jpeg"/>
407
+ <div class="model-title">LoRa EGG/Easter Fusion - v2 | Stable Diffusion LoRA | Civitai</div>
408
+ <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>
409
+ <div class="download-section">Download:</div>
410
+ <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>
411
+ <div class="from-section">Download from: (civitai.com)</div></div>
412
+ </div>
413
+ <div class="model-card">
414
+ <img alt="FFusionXL 0.9 SDXL model + Diffusers - v0.9 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="FFusion05.jpeg"/>
415
+ <div class="model-title">FFusionXL 0.9 SDXL model + Diffusers - v0.9 | Stable Diffusion Checkpoint | Civitai</div>
416
+ <div class="model-description">FusionXL SDXL model + Diffusers from diffusers import DiffusionPipeline import torch pipe = DiffusionPipeline.from_pretrained("FFusion/FFusionXL-09...</div>
417
+ <div class="download-section">Download:</div>
418
+ <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>
419
+ <div class="from-section">Download from: (civitai.com)</div></div>
420
+ </div>
421
+ <div class="model-card">
422
+ <img alt="Island Generator (SDXL, FFXL) - v.0.3 | Stable Diffusion LyCORIS | Civitai - Cover Image" src="FFusion09.jpeg"/>
423
+ <div class="model-title">Island Generator (SDXL, FFXL) - v.0.3 | Stable Diffusion LyCORIS | Civitai</div>
424
+ <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>
425
+ <div class="download-section">Download:</div>
426
+ <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>
427
+ <div class="from-section">Download from: (civitai.com)</div></div>
428
+ </div>
429
+ <div class="model-card">
430
+ <img alt="Latex.ID - LoRa Latex Generator - LoCon v0.2 | Stable Diffusion LoRA | Civitai - Cover Image" src="FFusion16.jpeg"/>
431
+ <div class="model-title">Latex.ID - LoRa Latex Generator - LoCon v0.2 | Stable Diffusion LoRA | Civitai</div>
432
+ <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>
433
+ <div class="download-section">Download:</div>
434
+ <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>
435
+ <div class="from-section">Download from: (civitai.com)</div></div>
436
+ </div>
437
+ <div class="model-card">
438
+ <img alt="LLaMA Generator - SD-2.1 LyCORIS - v1.0 768DIM | Stable Diffusion LyCORIS | Civitai - Cover Image" src="FFusion17.jpeg"/>
439
+ <div class="model-title">LLaMA Generator - SD-2.1 LyCORIS - v1.0 768DIM | Stable Diffusion LyCORIS | Civitai</div>
440
+ <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>
441
+ <div class="download-section">Download:</div>
442
+ <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>
443
+ <div class="from-section">Download from: (civitai.com)</div></div>
444
+ </div>
445
+ <div class="model-card">
446
+ <img alt="Latex.ID - Leather &amp; Latex Leggings - v. 0.3 | Stable Diffusion LoRA | Civitai - Cover Image" src="FFusion18.jpeg"/>
447
+ <div class="model-title">Latex.ID - Leather &amp; Latex Leggings - v. 0.3 | Stable Diffusion LoRA | Civitai</div>
448
+ <div class="model-description">Base initial version trained on 120 latex and leather leggings. 1500 version is next.</div>
449
+ <div class="download-section">Download:</div>
450
+ <div class="hover-content"><a class="model-link" href="https://civitai.com/models/19093/latexid-leather-and-latex-leggings">Latex.ID - Leather &amp; Latex Leggings - v. 0.3 | Stable Diffusion LoRA | Civitai <img alt="Favicon" src="civitai.com_favicon.ico"/></a>
451
+ <div class="from-section">Download from: (civitai.com)</div></div>
452
+ </div>
453
+
454
+ <div class="model-card">
455
+ <img alt="LATEX Generator - 1.5 | by Latex.ID - v0.9 | Stable Diffusion Checkpoint | Civitai - Cover Image" src="FFusion20.jpeg"/>
456
+ <div class="model-title">LATEX Generator - 1.5 | by Latex.ID - v0.9 | Stable Diffusion Checkpoint | Civitai</div>
457
+ <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>
458
+ <div class="download-section">Download:</div>
459
+ <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>
460
+ <div class="from-section">Download from: (civitai.com)</div></div>
461
+ </div>
462
+ </div>
463
+ </div>
464
+ </body>
465
+ </html>