sensei-ml commited on
Commit
106c722
1 Parent(s): 7877459

Update app.py

Browse files

Change the description and the title.

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -10,6 +10,6 @@ demo = gr.Interface(
10
  fn=classify_image,
11
  inputs=gr.Image(),
12
  outputs=gr.Label(num_top_classes=4),
13
- title="Image Classifier",
14
- description="Upload an image and get the top 4 predicted labels with probabilities.",)
15
  demo.launch()
 
10
  fn=classify_image,
11
  inputs=gr.Image(),
12
  outputs=gr.Label(num_top_classes=4),
13
+ title="Brain tumor image MRI classification",
14
+ description="CNN Keras model to classify brain MRI images in 4 categories: Glioma, Meningioma, Pituitary and No tumor. AI model and interface made by Eng. Michael Leonardo Aguas",)
15
  demo.launch()