Spaces:
Sleeping
Sleeping
Commit
·
e6d8a88
1
Parent(s):
82b3c73
Update app.py
Browse files
app.py
CHANGED
|
@@ -24,6 +24,7 @@ def main():
|
|
| 24 |
|
| 25 |
# Make predictions
|
| 26 |
predictions = model.predict(image_batch)
|
|
|
|
| 27 |
predicted_class_index = np.argmax(predictions)
|
| 28 |
predicted_class_label = class_labels[predicted_class_index]
|
| 29 |
|
|
|
|
| 24 |
|
| 25 |
# Make predictions
|
| 26 |
predictions = model.predict(image_batch)
|
| 27 |
+
st.write(predictions)
|
| 28 |
predicted_class_index = np.argmax(predictions)
|
| 29 |
predicted_class_label = class_labels[predicted_class_index]
|
| 30 |
|