Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ import numpy as np
|
|
6 |
st.title("Skin Cancer Image Classification")
|
7 |
st.write("Upload an image and let the model guess whether it is a cancer or not.")
|
8 |
|
9 |
-
model = load_model("
|
10 |
|
11 |
def process_image(img):
|
12 |
img = img.resize((170,170)) # set the size as 170 x 170 pixel
|
|
|
6 |
st.title("Skin Cancer Image Classification")
|
7 |
st.write("Upload an image and let the model guess whether it is a cancer or not.")
|
8 |
|
9 |
+
model = load_model("densenet_imagenet_model.keras")
|
10 |
|
11 |
def process_image(img):
|
12 |
img = img.resize((170,170)) # set the size as 170 x 170 pixel
|