Spaces:
Runtime error
Runtime error
Upload app.py
Browse files
app.py
CHANGED
@@ -133,7 +133,7 @@ with gr.Blocks() as demo:
|
|
133 |
visible = False
|
134 |
)
|
135 |
|
136 |
-
desired_shape3d = gr.Dataframe(value = [[2,2,
|
137 |
headers = ["Rows", "Columns", "Depth/Channels"],
|
138 |
row_count=(1, 'fixed'),
|
139 |
col_count=(3, "fixed"),
|
@@ -143,7 +143,7 @@ with gr.Blocks() as demo:
|
|
143 |
visible = True
|
144 |
)
|
145 |
|
146 |
-
desired_shape4d = gr.Dataframe(value = [[2,2,2,
|
147 |
headers = ["Rows", "Columns", "Depth", "Channels"],
|
148 |
row_count=(1, 'fixed'),
|
149 |
col_count=(4, "fixed"),
|
|
|
133 |
visible = False
|
134 |
)
|
135 |
|
136 |
+
desired_shape3d = gr.Dataframe(value = [[2,2,2]],
|
137 |
headers = ["Rows", "Columns", "Depth/Channels"],
|
138 |
row_count=(1, 'fixed'),
|
139 |
col_count=(3, "fixed"),
|
|
|
143 |
visible = True
|
144 |
)
|
145 |
|
146 |
+
desired_shape4d = gr.Dataframe(value = [[2,2,2,2]],
|
147 |
headers = ["Rows", "Columns", "Depth", "Channels"],
|
148 |
row_count=(1, 'fixed'),
|
149 |
col_count=(4, "fixed"),
|