Spaces:
Build error
Build error
Wenzheng Chang
commited on
Commit
·
a186246
1
Parent(s):
85c6af9
update warning pos
Browse files
app.py
CHANGED
|
@@ -1377,6 +1377,20 @@ with gr.Blocks(
|
|
| 1377 |
|
| 1378 |
with gr.Row(elem_classes=["main-interface"]):
|
| 1379 |
with gr.Column(elem_classes=["input-column"]):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1380 |
with gr.Group(elem_classes=["task-selector"]):
|
| 1381 |
task = gr.Radio(
|
| 1382 |
["reconstruction", "prediction", "planning"],
|
|
@@ -1384,21 +1398,6 @@ with gr.Blocks(
|
|
| 1384 |
value="reconstruction",
|
| 1385 |
info="Choose the task you want to perform",
|
| 1386 |
)
|
| 1387 |
-
gpu_time_warning = gr.Markdown(
|
| 1388 |
-
"""
|
| 1389 |
-
<div class="warning-box">
|
| 1390 |
-
<strong>⚠️ Warning:</strong><br>
|
| 1391 |
-
Due to HuggingFace Spaces ZERO GPU quota limitations, only short video reconstruction tasks (less than 100 frames) can be completed online.
|
| 1392 |
-
|
| 1393 |
-
<strong>💻 Recommendation:</strong><br>
|
| 1394 |
-
We strongly encourage you to deploy Aether locally for:
|
| 1395 |
-
• Processing longer video reconstruction tasks
|
| 1396 |
-
• Better performance and full access to prediction and planning tasks
|
| 1397 |
-
Visit our <a href="https://github.com/OpenRobotLab/Aether" target="_blank">GitHub repository</a> for local deployment instructions.
|
| 1398 |
-
</div>
|
| 1399 |
-
""",
|
| 1400 |
-
visible=True,
|
| 1401 |
-
)
|
| 1402 |
|
| 1403 |
with gr.Group(elem_classes=["input-section"]):
|
| 1404 |
gr.Markdown("## 📥 Input", elem_classes=["task-header"])
|
|
|
|
| 1377 |
|
| 1378 |
with gr.Row(elem_classes=["main-interface"]):
|
| 1379 |
with gr.Column(elem_classes=["input-column"]):
|
| 1380 |
+
gpu_time_warning = gr.Markdown(
|
| 1381 |
+
"""
|
| 1382 |
+
<div class="warning-box">
|
| 1383 |
+
<strong>⚠️ Warning:</strong><br>
|
| 1384 |
+
Due to HuggingFace Spaces ZERO GPU quota limitations, only short video reconstruction tasks (less than 100 frames) can be completed online.
|
| 1385 |
+
|
| 1386 |
+
<strong>💻 Recommendation:</strong><br>
|
| 1387 |
+
We strongly encourage you to deploy Aether locally for:
|
| 1388 |
+
• Processing longer video reconstruction tasks
|
| 1389 |
+
• Better performance and full access to prediction and planning tasks
|
| 1390 |
+
Visit our <a href="https://github.com/OpenRobotLab/Aether" target="_blank">GitHub repository</a> for local deployment instructions.
|
| 1391 |
+
</div>
|
| 1392 |
+
""",
|
| 1393 |
+
)
|
| 1394 |
with gr.Group(elem_classes=["task-selector"]):
|
| 1395 |
task = gr.Radio(
|
| 1396 |
["reconstruction", "prediction", "planning"],
|
|
|
|
| 1398 |
value="reconstruction",
|
| 1399 |
info="Choose the task you want to perform",
|
| 1400 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1401 |
|
| 1402 |
with gr.Group(elem_classes=["input-section"]):
|
| 1403 |
gr.Markdown("## 📥 Input", elem_classes=["task-header"])
|