Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
c13880f
1
Parent(s):
e4d9247
update
Browse files
app.py
CHANGED
@@ -87,12 +87,14 @@ def on_generate_click(prompt, seed, steps, pipe, pruned_pipe):
|
|
87 |
|
88 |
header = """
|
89 |
# 🌱 Text-to-Image Generation with EcoDiff Pruned Models
|
|
|
90 |
<div style="text-align: center; display: flex; justify-content: left; gap: 5px;">
|
91 |
<a href="https://arxiv.org/abs/2412.02852"><img src="https://img.shields.io/badge/ariXv-Paper-A42C25.svg" alt="arXiv"></a>
|
92 |
<a href="https://huggingface.co/zhangyang-0123/EcoDiffPrunedModels"><img src="https://img.shields.io/badge/🤗-Model-ffbd45.svg" alt="HuggingFace"></a>
|
93 |
<a href="https://github.com/YaNgZhAnG-V5/EcoDiff"><img src="https://img.shields.io/badge/GitHub-Code-blue.svg?logo=github&" alt="GitHub"></a>
|
94 |
</div>
|
95 |
-
|
|
|
96 |
<div style="text-align: center; display: flex; justify-content: left; gap: 5px;">
|
97 |
For ⚡ <b>faster</b> ⚡ DEMO on one model only, please visit
|
98 |
<a href="https://huggingface.co/spaces/zhangyang-0123/EcoDiff-SD-XL"><img alt="Static Badge" src="https://img.shields.io/badge/SDXL-fedcba.svg"></a>
|
@@ -104,6 +106,7 @@ For ⚡ <b>faster</b> ⚡ DEMO on one model only, please visit
|
|
104 |
def create_demo():
|
105 |
with gr.Blocks() as demo:
|
106 |
gr.Markdown(header)
|
|
|
107 |
with gr.Row():
|
108 |
gr.Markdown(
|
109 |
"""
|
|
|
87 |
|
88 |
header = """
|
89 |
# 🌱 Text-to-Image Generation with EcoDiff Pruned Models
|
90 |
+
|
91 |
<div style="text-align: center; display: flex; justify-content: left; gap: 5px;">
|
92 |
<a href="https://arxiv.org/abs/2412.02852"><img src="https://img.shields.io/badge/ariXv-Paper-A42C25.svg" alt="arXiv"></a>
|
93 |
<a href="https://huggingface.co/zhangyang-0123/EcoDiffPrunedModels"><img src="https://img.shields.io/badge/🤗-Model-ffbd45.svg" alt="HuggingFace"></a>
|
94 |
<a href="https://github.com/YaNgZhAnG-V5/EcoDiff"><img src="https://img.shields.io/badge/GitHub-Code-blue.svg?logo=github&" alt="GitHub"></a>
|
95 |
</div>
|
96 |
+
"""
|
97 |
+
header_2 = """
|
98 |
<div style="text-align: center; display: flex; justify-content: left; gap: 5px;">
|
99 |
For ⚡ <b>faster</b> ⚡ DEMO on one model only, please visit
|
100 |
<a href="https://huggingface.co/spaces/zhangyang-0123/EcoDiff-SD-XL"><img alt="Static Badge" src="https://img.shields.io/badge/SDXL-fedcba.svg"></a>
|
|
|
106 |
def create_demo():
|
107 |
with gr.Blocks() as demo:
|
108 |
gr.Markdown(header)
|
109 |
+
gr.Markdown(header_2)
|
110 |
with gr.Row():
|
111 |
gr.Markdown(
|
112 |
"""
|