Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -5,7 +5,7 @@ import json
|
|
| 5 |
from os.path import dirname, realpath, join
|
| 6 |
|
| 7 |
current_dir = dirname(realpath(__file__))
|
| 8 |
-
with open(join(current_dir
|
| 9 |
labels=json.load(labels_file)
|
| 10 |
|
| 11 |
mobile_net = tf.keras.applications.MobileNetV2()
|
|
|
|
| 5 |
from os.path import dirname, realpath, join
|
| 6 |
|
| 7 |
current_dir = dirname(realpath(__file__))
|
| 8 |
+
with open(join(current_dir, 'image_labels.json')) as labels_file:
|
| 9 |
labels=json.load(labels_file)
|
| 10 |
|
| 11 |
mobile_net = tf.keras.applications.MobileNetV2()
|