Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -42,7 +42,7 @@ if __name__ == "__main__":
|
|
| 42 |
with gr.Row():
|
| 43 |
with gr.Column():
|
| 44 |
input_img = gr.Image(label="input image")
|
| 45 |
-
examples_data = [[f"examples/{x:02d}.jpg"] for x in range(1,
|
| 46 |
examples = gr.Dataset(components=[input_img], samples=examples_data)
|
| 47 |
run_btn = gr.Button(variant="primary")
|
| 48 |
output_mask = gr.Image(label="mask")
|
|
|
|
| 42 |
with gr.Row():
|
| 43 |
with gr.Column():
|
| 44 |
input_img = gr.Image(label="input image")
|
| 45 |
+
examples_data = [[f"examples/{x:02d}.jpg"] for x in range(1, 2)]
|
| 46 |
examples = gr.Dataset(components=[input_img], samples=examples_data)
|
| 47 |
run_btn = gr.Button(variant="primary")
|
| 48 |
output_mask = gr.Image(label="mask")
|