SondosMB commited on
Commit
6fea8e2
·
1 Parent(s): e89b1d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -8,7 +8,7 @@ from tensorflow.keras.models import load_model
8
  import os
9
 
10
  os.system('wget -O model.h5 "https://drive.google.com/u/0/uc?id=1UqXYR2e3c0VW8Ax4nYLvef7Vmlx3AEGi&export=download"')
11
- os.system('wget -O model2.pkl "https://drive.google.com/u/0/uc?id=16FuBwWEhG7oHH2YGm8EkEDTbv6GSUbyg&export=download"')
12
 
13
  # Load the RGB to hyperspectral conversion model
14
  #converion_model = load_model('/kaggle/input/convmo/Conversion_model.h5')
@@ -35,10 +35,10 @@ def classify(rgb_image):
35
  imgplot = hyperspectral_image.numpy().astype(np.float32)
36
  imgplot= imgplot.reshape(-1, 272*512*16)
37
  prediction = cancer_model.predict(imgplot)
38
- if np.argmax(prediction) == 0:
39
- x= "cancer"
40
  else:
41
- x="not a cancer"
42
  return x
43
 
44
  # Define the Gradio interface
 
8
  import os
9
 
10
  os.system('wget -O model.h5 "https://drive.google.com/u/0/uc?id=1UqXYR2e3c0VW8Ax4nYLvef7Vmlx3AEGi&export=download"')
11
+ os.system('wget -O model2.pkl "https://drive.google.com/u/0/uc?id=1avoaq0fNGrLb4JatN0C-3rL8VnX2x4Ch&export=download"')
12
 
13
  # Load the RGB to hyperspectral conversion model
14
  #converion_model = load_model('/kaggle/input/convmo/Conversion_model.h5')
 
35
  imgplot = hyperspectral_image.numpy().astype(np.float32)
36
  imgplot= imgplot.reshape(-1, 272*512*16)
37
  prediction = cancer_model.predict(imgplot)
38
+ if prediction == 0:
39
+ x= "High Risk of being a Cancerous Mole"
40
  else:
41
+ x="Normal mole"
42
  return x
43
 
44
  # Define the Gradio interface