upload images
Browse files- app.py +1 -1
- assets/Explorer.jpg +0 -0
- assets/Flying_V.jpg +0 -0
- assets/Les_Paul.jpg +0 -0
- assets/SG.jpg +0 -0
- assets/Stratocaster.jpg +0 -0
- assets/Telecaster.jpg +0 -0
- requirements.txt +2 -0
app.py
CHANGED
|
@@ -11,7 +11,7 @@ def predict(img):
|
|
| 11 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
| 12 |
|
| 13 |
title = "Guitar Classifier"
|
| 14 |
-
examples = ['
|
| 15 |
interpretation='default'
|
| 16 |
enable_queue=True
|
| 17 |
|
|
|
|
| 11 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
| 12 |
|
| 13 |
title = "Guitar Classifier"
|
| 14 |
+
examples = ['assets/Telecaster.jpg', 'assets/Les_Paul.jpg', 'assets/Stratocaster.jpg', 'assets/SG.jpg', 'assets/Flying_V.jpg', 'assets/Explorer.jpg']
|
| 15 |
interpretation='default'
|
| 16 |
enable_queue=True
|
| 17 |
|
assets/Explorer.jpg
ADDED
|
assets/Flying_V.jpg
ADDED
|
assets/Les_Paul.jpg
ADDED
|
assets/SG.jpg
ADDED
|
assets/Stratocaster.jpg
ADDED
|
assets/Telecaster.jpg
ADDED
|
requirements.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
fastai
|
| 2 |
+
scikit-image
|