Update app.py
Browse files
app.py
CHANGED
@@ -34,7 +34,7 @@ def infer(input_image):
|
|
34 |
image_tensor.set_shape([None, None, 3])
|
35 |
image_tensor = tf.image.resize(image_tensor, (IMG_SIZE, IMG_SIZE))
|
36 |
print(image_tensor.shape)
|
37 |
-
predictions =
|
38 |
print(predictions)
|
39 |
predictions = np.squeeze(predictions)
|
40 |
print(predictions)
|
|
|
34 |
image_tensor.set_shape([None, None, 3])
|
35 |
image_tensor = tf.image.resize(image_tensor, (IMG_SIZE, IMG_SIZE))
|
36 |
print(image_tensor.shape)
|
37 |
+
predictions = student_model.predict(np.expand_dims((image_tensor), axis=0))
|
38 |
print(predictions)
|
39 |
predictions = np.squeeze(predictions)
|
40 |
print(predictions)
|