Spaces:
Sleeping
Sleeping
fix: gradio 5.12 + python 3.11 + server_name fix
Browse files
app.py
CHANGED
|
@@ -240,7 +240,7 @@ CSS = """
|
|
| 240 |
footer { display: none !important; }
|
| 241 |
"""
|
| 242 |
|
| 243 |
-
with gr.Blocks(css=CSS, title="RoboGate VLA Leaderboard"
|
| 244 |
gr.Markdown(HEADER_MD)
|
| 245 |
|
| 246 |
with gr.Tabs():
|
|
@@ -267,4 +267,4 @@ with gr.Blocks(css=CSS, title="RoboGate VLA Leaderboard", theme=gr.themes.Base()
|
|
| 267 |
gr.Markdown(CITATION_MD)
|
| 268 |
|
| 269 |
if __name__ == "__main__":
|
| 270 |
-
demo.launch()
|
|
|
|
| 240 |
footer { display: none !important; }
|
| 241 |
"""
|
| 242 |
|
| 243 |
+
with gr.Blocks(css=CSS, title="RoboGate VLA Leaderboard") as demo:
|
| 244 |
gr.Markdown(HEADER_MD)
|
| 245 |
|
| 246 |
with gr.Tabs():
|
|
|
|
| 267 |
gr.Markdown(CITATION_MD)
|
| 268 |
|
| 269 |
if __name__ == "__main__":
|
| 270 |
+
demo.launch(server_name="0.0.0.0")
|