Update README.md
Browse files
README.md
CHANGED
@@ -9,28 +9,7 @@ license: creativeml-openrail-m
|
|
9 |
thumbnail: >-
|
10 |
https://huggingface.co/spaces/FFusion/README/resolve/main/FFusionAI-Huggingface.jpg
|
11 |
---
|
12 |
-
|
13 |
-
[![400GB FFusion Lora XL 1](https://huggingface.co/FFusion/400GB-LoraXL/resolve/main/images/image0.jpg)](https://huggingface.co/FFusion/400GB-LoraXL/)
|
14 |
-
# FFusion LoRA XL Extracted Models for Hugging Face & Civitai π
|
15 |
-
<div style="display: flex; flex-wrap: wrap; gap: 2px;">
|
16 |
-
<a href="https://huggingface.co/FFusion/400GB-LoraXL/" target="_blank" rel="noopener noreferrer">
|
17 |
-
<img src="https://img.shields.io/badge/-Hugging%20Face%20Repo-brightgreen?style=for-the-badge&logo=appveyor" alt="FFusion LoraXL Repo">
|
18 |
-
</a>
|
19 |
-
<a href="https://huggingface.co/FFusion/400GB-LoraXL" target="_blank" rel="noopener noreferrer">
|
20 |
-
<img src="https://img.shields.io/badge/-CivitAIL%20REPO%20SOON%20TBA-brightblue?style=for-the-badge&logo=appveyor" alt="FFusionXL Civitai Repo SDXL DEMO">
|
21 |
-
</a>
|
22 |
-
</div>
|
23 |
-
|
24 |
-
|
25 |
-
[![ffusionXL-1-sdxl-base1.png](https://cdn-uploads.huggingface.co/production/uploads/6380cf05f496d57325c12194/KwpZpMCx-T-JWNaRF8e6N.png)](https://huggingface.co/spaces/FFusion/FFusionXL-SDXL-DEMO)
|
26 |
-
<div style="display: flex; flex-wrap: wrap; gap: 2px;">
|
27 |
-
<a href="https://huggingface.co/FFusion/FFusionXL-BASE/blob/main/FFusionXL-BASE-v1.safetensors" target="_blank" rel="noopener noreferrer">
|
28 |
-
<img src="https://img.shields.io/badge/-Download%20Model-brightgreen?style=for-the-badge&logo=appveyor" alt="Download Model">
|
29 |
-
</a>
|
30 |
-
<a href="https://huggingface.co/spaces/FFusion/FFusionXL-SDXL-DEMO" target="_blank" rel="noopener noreferrer">
|
31 |
-
<img src="https://img.shields.io/badge/-FFusionXL%20DEMO-brightpurple?style=for-the-badge&logo=appveyor" alt="FFusionXL BASE SDXL DEMO">
|
32 |
-
</a>
|
33 |
-
</div>
|
34 |
|
35 |
<style>
|
36 |
body {
|
@@ -98,6 +77,63 @@ thumbnail: >-
|
|
98 |
color: #777;
|
99 |
}
|
100 |
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
<div class="container">
|
102 |
<!-- Card 1 -->
|
103 |
<div class="model-card">
|
@@ -281,4 +317,5 @@ thumbnail: >-
|
|
281 |
<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="https://ffusion-readme.hf.space/civitai.com_favicon.ico"/></a>
|
282 |
<div class="from-section">Download from: (civitai.com)</div></div>
|
283 |
</div>
|
|
|
284 |
</div>
|
|
|
9 |
thumbnail: >-
|
10 |
https://huggingface.co/spaces/FFusion/README/resolve/main/FFusionAI-Huggingface.jpg
|
11 |
---
|
12 |
+
[![FFusionAI](https://huggingface.co/spaces/FFusion/README/resolve/main/FFusionAI-Huggingface.jpg)](https://huggingface.co/FFusion)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
<style>
|
15 |
body {
|
|
|
77 |
color: #777;
|
78 |
}
|
79 |
</style>
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
<button onclick="toggleVisibility()">Expand FFusion</button>
|
84 |
+
|
85 |
+
<script>
|
86 |
+
function toggleVisibility() {
|
87 |
+
var x = document.getElementById("toggleContent");
|
88 |
+
if (x.style.display === "none") {
|
89 |
+
x.style.display = "block";
|
90 |
+
} else {
|
91 |
+
x.style.display = "none";
|
92 |
+
}
|
93 |
+
}
|
94 |
+
</script>
|
95 |
+
<style>
|
96 |
+
button {
|
97 |
+
background-color: #d100f6; /* FFusionAI theme color */
|
98 |
+
color: white;
|
99 |
+
padding: 14px 20px;
|
100 |
+
border: none;
|
101 |
+
border-radius: 4px;
|
102 |
+
cursor: pointer;
|
103 |
+
transition-duration: 0.4s;
|
104 |
+
}
|
105 |
+
|
106 |
+
button:hover {
|
107 |
+
background-color: #711bff;
|
108 |
+
}
|
109 |
+
</style>
|
110 |
+
|
111 |
+
<div id="toggleContent" style="display:none;">
|
112 |
+
[![400GB FFusion Lora XL 1](https://huggingface.co/FFusion/400GB-LoraXL/resolve/main/images/image0.jpg)](https://huggingface.co/FFusion/400GB-LoraXL/)
|
113 |
+
# FFusion LoRA XL Extracted Models for Hugging Face & Civitai π
|
114 |
+
<div style="display: flex; flex-wrap: wrap; gap: 2px;">
|
115 |
+
<a href="https://huggingface.co/FFusion/400GB-LoraXL/" target="_blank" rel="noopener noreferrer">
|
116 |
+
<img src="https://img.shields.io/badge/-Hugging%20Face%20Repo-brightgreen?style=for-the-badge&logo=appveyor" alt="FFusion LoraXL Repo">
|
117 |
+
</a>
|
118 |
+
<a href="https://huggingface.co/FFusion/400GB-LoraXL" target="_blank" rel="noopener noreferrer">
|
119 |
+
<img src="https://img.shields.io/badge/-CivitAIL%20REPO%20SOON%20TBA-brightblue?style=for-the-badge&logo=appveyor" alt="FFusionXL Civitai Repo SDXL DEMO">
|
120 |
+
</a>
|
121 |
+
</div>
|
122 |
+
|
123 |
+
|
124 |
+
[![ffusionXL-1-sdxl-base1.png](https://cdn-uploads.huggingface.co/production/uploads/6380cf05f496d57325c12194/KwpZpMCx-T-JWNaRF8e6N.png)](https://huggingface.co/spaces/FFusion/FFusionXL-SDXL-DEMO)
|
125 |
+
<div style="display: flex; flex-wrap: wrap; gap: 2px;">
|
126 |
+
<a href="https://huggingface.co/FFusion/FFusionXL-BASE/blob/main/FFusionXL-BASE-v1.safetensors" target="_blank" rel="noopener noreferrer">
|
127 |
+
<img src="https://img.shields.io/badge/-Download%20Model-brightgreen?style=for-the-badge&logo=appveyor" alt="Download Model">
|
128 |
+
</a>
|
129 |
+
<a href="https://huggingface.co/spaces/FFusion/FFusionXL-SDXL-DEMO" target="_blank" rel="noopener noreferrer">
|
130 |
+
<img src="https://img.shields.io/badge/-FFusionXL%20DEMO-brightpurple?style=for-the-badge&logo=appveyor" alt="FFusionXL BASE SDXL DEMO">
|
131 |
+
</a>
|
132 |
+
</div>
|
133 |
+
|
134 |
+
|
135 |
+
|
136 |
+
|
137 |
<div class="container">
|
138 |
<!-- Card 1 -->
|
139 |
<div class="model-card">
|
|
|
317 |
<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="https://ffusion-readme.hf.space/civitai.com_favicon.ico"/></a>
|
318 |
<div class="from-section">Download from: (civitai.com)</div></div>
|
319 |
</div>
|
320 |
+
</div>
|
321 |
</div>
|