rishabh5752 commited on
Commit
66a2215
·
1 Parent(s): 99234ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -9
app.py CHANGED
@@ -14,25 +14,22 @@ def predict(image):
14
  # Make a prediction using the model
15
  prediction = model.predict(image)
16
 
 
 
 
17
  # Get the predicted class label
18
  if prediction[0][0] < 0.5:
19
  label = 'Benign'
20
- confidence = 1 - prediction[0][0] # Confidence for benign
21
  else:
22
  label = 'Malignant'
23
- confidence = prediction[0][0] # Confidence for malignant
24
 
25
- return label, confidence
26
-
27
- # Custom component to display label with confidence
28
- def label_with_confidence(label, confidence):
29
- return f"{label} ({confidence * 100:.2f}%)"
30
 
31
  examples = [["benign.jpg"], ["malignant.jpg"]]
32
 
33
- # Define input and custom output components
34
  image_input = gr.inputs.Image(shape=(150, 150))
35
- label_output = gr.outputs.Component(label_with_confidence, inputs=["label", "confidence"])
36
 
37
  # Define a Gradio interface for user interaction
38
  iface = gr.Interface(
 
14
  # Make a prediction using the model
15
  prediction = model.predict(image)
16
 
17
+ # Get the sigmoid percentage
18
+ sigmoid_percentage = prediction[0][0] * 100
19
+
20
  # Get the predicted class label
21
  if prediction[0][0] < 0.5:
22
  label = 'Benign'
 
23
  else:
24
  label = 'Malignant'
 
25
 
26
+ return f"{label} ({sigmoid_percentage:.2f}%)"
 
 
 
 
27
 
28
  examples = [["benign.jpg"], ["malignant.jpg"]]
29
 
30
+ # Define input and output components
31
  image_input = gr.inputs.Image(shape=(150, 150))
32
+ label_output = gr.outputs.Label()
33
 
34
  # Define a Gradio interface for user interaction
35
  iface = gr.Interface(