rishabh5752 commited on
Commit
4940ea7
·
1 Parent(s): 17ca5e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -19
app.py CHANGED
@@ -24,23 +24,21 @@ def predict(image):
24
 
25
  examples = [["benign.jpg"], ["malignant.jpg"]]
26
 
27
- # Customized layout and style for improved UI
28
- interface_layout = [
29
- gr.Interface(
30
- fn=predict,
31
- inputs=gr.inputs.Image(shape=(150, 150)),
32
- outputs=gr.outputs.Label(),
33
- examples=examples,
34
- title="Skin Cancer Classification",
35
- description="Predicts whether a skin image is cancerous or not.",
36
- theme="default", # Choose a theme: "default", "compact", "huggingface"
37
- layout="vertical", # Choose a layout: "vertical", "horizontal", "double"
38
- live=False # Set to True for live updates without clicking "Submit"
39
- )
40
- ]
41
 
42
- gr.Interface(
43
- layout="colab", # Choose a layout: "colab", "colab-sandbox", "textbox"
44
- layout_options={"fullscreen": True},
45
- interfaces=interface_layout
46
- ).launch()
 
 
 
 
 
 
 
 
 
 
24
 
25
  examples = [["benign.jpg"], ["malignant.jpg"]]
26
 
27
+ # Define input and output components
28
+ image_input = gr.inputs.Image(shape=(150, 150))
29
+ label_output = gr.outputs.Label()
 
 
 
 
 
 
 
 
 
 
 
30
 
31
+ # Define a Gradio interface for user interaction
32
+ iface = gr.Interface(
33
+ fn=predict,
34
+ inputs=image_input,
35
+ outputs=label_output,
36
+ examples=examples,
37
+ title="Skin Cancer Classification",
38
+ description="Predicts whether a skin image is cancerous or not.",
39
+ theme="default", # Choose a theme: "default", "compact", "huggingface"
40
+ layout="vertical", # Choose a layout: "vertical", "horizontal", "double"
41
+ live=False # Set to True for live updates without clicking "Submit"
42
+ )
43
+
44
+ iface.launch()