Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ num_classes = 200
|
|
6 |
IMG_HEIGHT = 256
|
7 |
IMG_WIDTH = 256
|
8 |
|
9 |
-
with open(
|
10 |
CLASS_LABEL = [x.strip() for x in file.readlines()]
|
11 |
|
12 |
def normalize_image(img):
|
|
|
6 |
IMG_HEIGHT = 256
|
7 |
IMG_WIDTH = 256
|
8 |
|
9 |
+
with open("classlabel.txt", 'r') as file:
|
10 |
CLASS_LABEL = [x.strip() for x in file.readlines()]
|
11 |
|
12 |
def normalize_image(img):
|