archietram commited on
Commit
b37f678
1 Parent(s): 39e5c71

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ image = gr.inputs.Image(shape=(192,192))
15
  label = gr.outputs.Label()
16
  examples = ['mri.jpg','ct.jpg','ultrasound.jpg', 'xray.jpg']
17
  title = 'Medical Image Classifier'
18
- description = 'You need to know whether you are dealing with an MRI , X-Ray, CT, or Ultrasound image, and you need an answer fast? Then you have come to the right place. Upload the potentially (probably not) life-saving pic to classify it.'
19
  article = "Author: <a href=\"https://huggingface.co/archietram\">Archie Tram</a>. "
20
 
21
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title=title, description=description, article=article)
 
15
  label = gr.outputs.Label()
16
  examples = ['mri.jpg','ct.jpg','ultrasound.jpg', 'xray.jpg']
17
  title = 'Medical Image Classifier'
18
+ description = 'You need to know whether you are dealing with an MRI , X-Ray, CT, or Ultrasound image, and you need an answer fast? Then you have come to the right place. Upload the picture to classify it.'
19
  article = "Author: <a href=\"https://huggingface.co/archietram\">Archie Tram</a>. "
20
 
21
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title=title, description=description, article=article)