Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -14,8 +14,8 @@ def infer(video_frames, masks_frames):
|
|
14 |
|
15 |
# Create the "results" folder if it doesn't exist
|
16 |
output_folder = "results"
|
17 |
-
if not os.path.exists(
|
18 |
-
os.makedirs(
|
19 |
|
20 |
command = [
|
21 |
f"python",
|
|
|
14 |
|
15 |
# Create the "results" folder if it doesn't exist
|
16 |
output_folder = "results"
|
17 |
+
if not os.path.exists(output_folder):
|
18 |
+
os.makedirs(output_folder)
|
19 |
|
20 |
command = [
|
21 |
f"python",
|