Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -200,23 +200,14 @@ css = """
|
|
200 |
|
201 |
with gr.Blocks(css=css) as demo:
|
202 |
|
203 |
-
gr.HTML(
|
204 |
-
"""
|
205 |
-
<div style="text-align: center;">
|
206 |
-
<h1>Chain-of-Zoom</h1>
|
207 |
-
<p style="font-size:16px;">Extreme Super-Resolution via Scale Autoregression and Preference Alignment</p>
|
208 |
-
</div>
|
209 |
-
<br>
|
210 |
-
<div style="display: flex; justify-content: center; align-items: center; text-align: center;">
|
211 |
-
<a href="https://github.com/bryanswkim/Chain-of-Zoom">
|
212 |
-
<img src='https://img.shields.io/badge/GitHub-Repo-blue'>
|
213 |
-
</a>
|
214 |
-
</div>
|
215 |
-
"""
|
216 |
-
)
|
217 |
-
|
218 |
with gr.Column(elem_id="col-container"):
|
219 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
with gr.Row():
|
221 |
with gr.Column():
|
222 |
# 1) Image upload component
|
|
|
200 |
|
201 |
with gr.Blocks(css=css) as demo:
|
202 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
with gr.Column(elem_id="col-container"):
|
204 |
+
|
205 |
+
gr.Markdown(
|
206 |
+
""" # Chain-of-Zoom - – Extreme Super-Resolution via Scale Autoregression and Preference Alignment
|
207 |
+
|
208 |
+
• Source: [Github](https://github.com/bryanswkim/Chain-of-Zoom)
|
209 |
+
• Gradio App by : [@alexandernasa](https://twitter.com/alexandernasa/) """
|
210 |
+
)
|
211 |
with gr.Row():
|
212 |
with gr.Column():
|
213 |
# 1) Image upload component
|