Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ from tensorflow.keras.preprocessing.image import img_to_array
|
|
5 |
from tensorflow.keras.models import load_model
|
6 |
|
7 |
# Load your trained model
|
8 |
-
model = load_model('
|
9 |
IMG_SIZE = 224 # Resize the image to the input size of your model (e.g., 224x224)
|
10 |
|
11 |
# Streamlit App Title
|
|
|
5 |
from tensorflow.keras.models import load_model
|
6 |
|
7 |
# Load your trained model
|
8 |
+
model = load_model('eye_detection.h5')
|
9 |
IMG_SIZE = 224 # Resize the image to the input size of your model (e.g., 224x224)
|
10 |
|
11 |
# Streamlit App Title
|