Update app.py
Browse files
app.py
CHANGED
@@ -5,8 +5,8 @@ from PIL import Image
|
|
5 |
import numpy as np
|
6 |
|
7 |
# load the models
|
8 |
-
model1 = load_model('
|
9 |
-
model2 = load_model('
|
10 |
|
11 |
# define a function to predict using model 1
|
12 |
def predict_model1(image):
|
|
|
5 |
import numpy as np
|
6 |
|
7 |
# load the models
|
8 |
+
model1 = load_model('Model_From_VGG16.h5')
|
9 |
+
model2 = load_model('Model_Basic_From_Scratch.h5')
|
10 |
|
11 |
# define a function to predict using model 1
|
12 |
def predict_model1(image):
|