Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
|
|
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)
|