shpotes commited on
Commit
7cacc39
Β·
1 Parent(s): c364ab8

polish some details

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +2 -2
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  title: Your personal TA via MedCLIP
3
- emoji: πŸ‘©β€βš•οΈ
4
  colorFrom: blue
5
  colorTo: indigo
6
  sdk: gradio
 
1
  ---
2
  title: Your personal TA via MedCLIP
3
+ emoji: πŸ‘©β€πŸ«
4
  colorFrom: blue
5
  colorTo: indigo
6
  sdk: gradio
app.py CHANGED
@@ -64,9 +64,9 @@ def score_image_caption_pair(uploaded_file, text_input):
64
  image = gr.inputs.Image(shape=(299, 299))
65
  iface = gr.Interface(
66
  fn=score_image_caption_pair, inputs=[image, "text"], outputs=["label"], allow_flagging=False,
67
- title="Your personal TA",
68
  description="""
69
- The purpose of this demo is to help medical students measure their diagnostic capabilities in purely academic settings.
70
  Under no circumstances should it be used to make a self-diagnosis or confront a real doctor.
71
  """
72
  )
 
64
  image = gr.inputs.Image(shape=(299, 299))
65
  iface = gr.Interface(
66
  fn=score_image_caption_pair, inputs=[image, "text"], outputs=["label"], allow_flagging=False,
67
+ title="Your personal TA πŸ‘©β€βš•οΈ",
68
  description="""
69
+ The purpose of this demo is to help medical students measure their diagnostic capabilities in purely academic settings. <br>
70
  Under no circumstances should it be used to make a self-diagnosis or confront a real doctor.
71
  """
72
  )