Spaces:
Running on Zero
Running on Zero
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -72,7 +72,7 @@ CSS = """
|
|
| 72 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 73 |
"""
|
| 74 |
|
| 75 |
-
with gr.Blocks(
|
| 76 |
gr.Markdown(
|
| 77 |
"""
|
| 78 |
# YOLOv26n VisDrone Object Detection
|
|
@@ -118,4 +118,4 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=CSS, title="YOLOv26n VisDrone Detec
|
|
| 118 |
cache_mode="lazy",
|
| 119 |
)
|
| 120 |
|
| 121 |
-
demo.launch(mcp_server=True)
|
|
|
|
| 72 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 73 |
"""
|
| 74 |
|
| 75 |
+
with gr.Blocks(title="YOLOv26n VisDrone Detection") as demo:
|
| 76 |
gr.Markdown(
|
| 77 |
"""
|
| 78 |
# YOLOv26n VisDrone Object Detection
|
|
|
|
| 118 |
cache_mode="lazy",
|
| 119 |
)
|
| 120 |
|
| 121 |
+
demo.launch(mcp_server=True, theme=gr.themes.Citrus(), css=CSS)
|