sayedM commited on
Commit
dca0c85
·
1 Parent(s): f1c4926

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -101,7 +101,8 @@ description_html = """
101
  </body>
102
  </html>
103
  """
 
104
 
105
 
106
  # Launch the Gradio interface with the description below it
107
- gr.Interface(fn=get_results, inputs=[image_input, text_input], outputs=outputs, description=description_html, layout="horizontal").launch(share=False)
 
101
  </body>
102
  </html>
103
  """
104
+ title = "Brain Tumor Demo"
105
 
106
 
107
  # Launch the Gradio interface with the description below it
108
+ gr.Interface(fn=get_results, inputs=[image_input, text_input], outputs=outputs,title=title, description=description_html).launch(share=False)