Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -401,15 +401,15 @@ with demo:
|
|
| 401 |
render_run.click(run_render, inputs=[dust3r_state, feat2gs_state, cam_traj], outputs=[output_video])
|
| 402 |
|
| 403 |
|
| 404 |
-
|
| 405 |
-
|
| 406 |
-
|
| 407 |
-
|
| 408 |
-
|
| 409 |
-
|
| 410 |
-
|
| 411 |
-
|
| 412 |
-
|
| 413 |
-
|
| 414 |
|
| 415 |
demo.launch(server_name="0.0.0.0", share=False)
|
|
|
|
| 401 |
render_run.click(run_render, inputs=[dust3r_state, feat2gs_state, cam_traj], outputs=[output_video])
|
| 402 |
|
| 403 |
|
| 404 |
+
gr.Examples(
|
| 405 |
+
examples=[
|
| 406 |
+
"plushies",
|
| 407 |
+
],
|
| 408 |
+
inputs=[input_path],
|
| 409 |
+
outputs=[dust3r_model, feat_image, output_model, output_video],
|
| 410 |
+
fn=lambda x: process_example(inputfiles=None, input_path=x),
|
| 411 |
+
cache_examples=True,
|
| 412 |
+
label='Examples'
|
| 413 |
+
)
|
| 414 |
|
| 415 |
demo.launch(server_name="0.0.0.0", share=False)
|