Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ from keras.models import load_model
|
|
8 |
# Caching the model loading function to optimize performance
|
9 |
@st.cache_resource
|
10 |
def load_model():
|
11 |
-
model_path =
|
12 |
return tf.keras.models.load_model(model_path)
|
13 |
|
14 |
# Load the model
|
|
|
8 |
# Caching the model loading function to optimize performance
|
9 |
@st.cache_resource
|
10 |
def load_model():
|
11 |
+
model_path = "captcha.keras" # Update with the actual model path
|
12 |
return tf.keras.models.load_model(model_path)
|
13 |
|
14 |
# Load the model
|