Update app.py
Browse files
app.py
CHANGED
|
@@ -11,7 +11,7 @@ import os
|
|
| 11 |
app = Flask(__name__)
|
| 12 |
|
| 13 |
# Load the model for disease detection
|
| 14 |
-
MODEL_PATH = os.path.join(os.path.dirname(__file__), "
|
| 15 |
model = load_model(MODEL_PATH, compile=False)
|
| 16 |
|
| 17 |
# Load the labels for disease detection
|
|
|
|
| 11 |
app = Flask(__name__)
|
| 12 |
|
| 13 |
# Load the model for disease detection
|
| 14 |
+
MODEL_PATH = os.path.join(os.path.dirname(__file__), "s3", "keras_model.h5")
|
| 15 |
model = load_model(MODEL_PATH, compile=False)
|
| 16 |
|
| 17 |
# Load the labels for disease detection
|