Update app.py
Browse files
app.py
CHANGED
|
@@ -50,7 +50,7 @@ with gr.Blocks(title="AI Background Remover", theme="soft") as demo:
|
|
| 50 |
|
| 51 |
# Handle examples if they exist
|
| 52 |
example_files = []
|
| 53 |
-
for i in range(1,
|
| 54 |
example_path = f"example_{i:02d}.jpg"
|
| 55 |
if os.path.exists(example_path):
|
| 56 |
example_files.append([example_path])
|
|
|
|
| 50 |
|
| 51 |
# Handle examples if they exist
|
| 52 |
example_files = []
|
| 53 |
+
for i in range(1, 6):
|
| 54 |
example_path = f"example_{i:02d}.jpg"
|
| 55 |
if os.path.exists(example_path):
|
| 56 |
example_files.append([example_path])
|