Monius
commited on
Commit
·
9ac8bcb
1
Parent(s):
a9acbe4
fix path
Browse files
run.py
CHANGED
|
@@ -10,9 +10,9 @@ T3D = gr.Interface(
|
|
| 10 |
inputs=gr.File(label="3D Mesh File"),
|
| 11 |
outputs=gr.Model3D(clear_color=[0.0, 0.0, 0.0, 0.0], label="3D Model"),
|
| 12 |
examples=[
|
| 13 |
-
[os.path.join(os.path.dirname(
|
| 14 |
-
[os.path.join(os.path.dirname(
|
| 15 |
-
[os.path.join(os.path.dirname(
|
| 16 |
],
|
| 17 |
cache_examples=True,
|
| 18 |
)
|
|
|
|
| 10 |
inputs=gr.File(label="3D Mesh File"),
|
| 11 |
outputs=gr.Model3D(clear_color=[0.0, 0.0, 0.0, 0.0], label="3D Model"),
|
| 12 |
examples=[
|
| 13 |
+
[os.path.join(os.path.dirname(__file__), "dataset/1/output_0.stl")],
|
| 14 |
+
[os.path.join(os.path.dirname(__file__), "dataset/2/output_0.stl")],
|
| 15 |
+
[os.path.join(os.path.dirname(__file__), "dataset/3/output_0.stl")],
|
| 16 |
],
|
| 17 |
cache_examples=True,
|
| 18 |
)
|