Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -190,7 +190,7 @@ def stitch_rgbd_videos(
|
|
| 190 |
return stitched_video_path
|
| 191 |
|
| 192 |
def construct_demo():
|
| 193 |
-
with gr.Blocks(analytics_enabled=False
|
| 194 |
gr.Markdown(title)
|
| 195 |
gr.Markdown(description)
|
| 196 |
gr.Markdown("### If you find this work useful, please help ⭐ the [Github Repo](https://github.com/DepthAnything/Video-Depth-Anything). Thanks for your attention!")
|
|
@@ -231,4 +231,4 @@ def construct_demo():
|
|
| 231 |
|
| 232 |
if __name__ == "__main__":
|
| 233 |
demo = construct_demo()
|
| 234 |
-
demo.queue(max_size=4).launch()
|
|
|
|
| 190 |
return stitched_video_path
|
| 191 |
|
| 192 |
def construct_demo():
|
| 193 |
+
with gr.Blocks(analytics_enabled=False) as demo:
|
| 194 |
gr.Markdown(title)
|
| 195 |
gr.Markdown(description)
|
| 196 |
gr.Markdown("### If you find this work useful, please help ⭐ the [Github Repo](https://github.com/DepthAnything/Video-Depth-Anything). Thanks for your attention!")
|
|
|
|
| 231 |
|
| 232 |
if __name__ == "__main__":
|
| 233 |
demo = construct_demo()
|
| 234 |
+
demo.queue(max_size=4).launch(show_api=False)
|