Add badges
Browse files- gradio_app.py +13 -1
gradio_app.py
CHANGED
@@ -178,7 +178,19 @@ with gr.Blocks(css=css) as demo:
|
|
178 |
with gr.Column(elem_id="col-container"):
|
179 |
gr.Markdown("# Allegro Video Generation")
|
180 |
gr.Markdown("Generate a video based on a text prompt using the Allegro pipeline.")
|
181 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
user_prompt=gr.Textbox(label="User Prompt")
|
183 |
with gr.Row():
|
184 |
guidance_scale=gr.Slider(minimum=0, maximum=20, step=0.1, label="Guidance Scale", value=7.5)
|
|
|
178 |
with gr.Column(elem_id="col-container"):
|
179 |
gr.Markdown("# Allegro Video Generation")
|
180 |
gr.Markdown("Generate a video based on a text prompt using the Allegro pipeline.")
|
181 |
+
gr.HTML("""
|
182 |
+
<div style="display:flex;column-gap:4px;">
|
183 |
+
<a href='https://huggingface.co/rhymes-ai/Allegro'>
|
184 |
+
<img src='https://img.shields.io/badge/HuggingFace-Model-orange'>
|
185 |
+
</a>
|
186 |
+
<a href='https://github.com/rhymes-ai/Allegro/tree/main'>
|
187 |
+
<img src='https://img.shields.io/badge/GitHub-Repo-blue'>
|
188 |
+
</a>
|
189 |
+
<a href='https://arxiv.org/abs/2410.15458'>
|
190 |
+
<img src='https://img.shields.io/badge/ArXivPaper-red'>
|
191 |
+
</a>
|
192 |
+
</div>
|
193 |
+
""")
|
194 |
user_prompt=gr.Textbox(label="User Prompt")
|
195 |
with gr.Row():
|
196 |
guidance_scale=gr.Slider(minimum=0, maximum=20, step=0.1, label="Guidance Scale", value=7.5)
|