Spaces:
Paused
Paused
fix
Browse files
app.py
CHANGED
|
@@ -172,18 +172,19 @@ init_app()
|
|
| 172 |
|
| 173 |
with gr.Blocks(title="BitDance Demo") as demo:
|
| 174 |
gr.Markdown(
|
| 175 |
-
|
| 176 |
-
|
| 177 |
|
| 178 |
-
|
| 179 |
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
)
|
| 186 |
|
|
|
|
| 187 |
with gr.Row():
|
| 188 |
with gr.Column(scale=1):
|
| 189 |
prompt_input = gr.Textbox(label="Prompt", lines=3, placeholder="Enter your prompt here...")
|
|
|
|
| 172 |
|
| 173 |
with gr.Blocks(title="BitDance Demo") as demo:
|
| 174 |
gr.Markdown(
|
| 175 |
+
"""
|
| 176 |
+
<div align="center">
|
| 177 |
|
| 178 |
+
### BitDance: Scaling Autoregressive Generative Models with Binary Tokens
|
| 179 |
|
| 180 |
+
[🕸️ Project Page](TBD) • [📄 Paper](TBD) • [💻 Code](https://github.com/shallowdream204/BitDance) • [📦 Model](https://huggingface.co/collections/shallowdream204/bitdance)
|
| 181 |
+
|
| 182 |
+
</div>
|
| 183 |
+
""",
|
| 184 |
+
elem_id="title",
|
| 185 |
)
|
| 186 |
|
| 187 |
+
|
| 188 |
with gr.Row():
|
| 189 |
with gr.Column(scale=1):
|
| 190 |
prompt_input = gr.Textbox(label="Prompt", lines=3, placeholder="Enter your prompt here...")
|