Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,9 @@ if os.path.exists(image_dir) and os.path.isdir(image_dir) and os.listdir(image_d
|
|
11 |
else:
|
12 |
examples = [os.path.join(os.path.dirname(__file__), example) for example in Model4DGS().example_inputs()]
|
13 |
|
|
|
|
|
|
|
14 |
with gr.Blocks() as demo:
|
15 |
with gr.Row():
|
16 |
Model4DGS(value=examples, label="4D Model")
|
|
|
11 |
else:
|
12 |
examples = [os.path.join(os.path.dirname(__file__), example) for example in Model4DGS().example_inputs()]
|
13 |
|
14 |
+
print("examples:")
|
15 |
+
print(examples)
|
16 |
+
|
17 |
with gr.Blocks() as demo:
|
18 |
with gr.Row():
|
19 |
Model4DGS(value=examples, label="4D Model")
|