Spaces:
Runtime error
Runtime error
add more image sample
Browse files- .ipynb_checkpoints/app-checkpoint.py +2 -0
- app.py +2 -0
.ipynb_checkpoints/app-checkpoint.py
CHANGED
|
@@ -12,6 +12,8 @@ def predict(img):
|
|
| 12 |
|
| 13 |
import os
|
| 14 |
for root, dirs, files in os.walk(r'sample_image/'):
|
|
|
|
|
|
|
| 15 |
|
| 16 |
title = "Pet Breed Classifier"
|
| 17 |
description = "A pet breed classifier trained on the Oxford Pets dataset"
|
|
|
|
| 12 |
|
| 13 |
import os
|
| 14 |
for root, dirs, files in os.walk(r'sample_image/'):
|
| 15 |
+
for filename in files:
|
| 16 |
+
print(filename)
|
| 17 |
|
| 18 |
title = "Pet Breed Classifier"
|
| 19 |
description = "A pet breed classifier trained on the Oxford Pets dataset"
|
app.py
CHANGED
|
@@ -12,6 +12,8 @@ def predict(img):
|
|
| 12 |
|
| 13 |
import os
|
| 14 |
for root, dirs, files in os.walk(r'sample_image/'):
|
|
|
|
|
|
|
| 15 |
|
| 16 |
title = "Pet Breed Classifier"
|
| 17 |
description = "A pet breed classifier trained on the Oxford Pets dataset"
|
|
|
|
| 12 |
|
| 13 |
import os
|
| 14 |
for root, dirs, files in os.walk(r'sample_image/'):
|
| 15 |
+
for filename in files:
|
| 16 |
+
print(filename)
|
| 17 |
|
| 18 |
title = "Pet Breed Classifier"
|
| 19 |
description = "A pet breed classifier trained on the Oxford Pets dataset"
|