Spaces:
Running
Running
Commit
·
12f8faa
1
Parent(s):
7d4e93a
Add application files
Browse files
app.py
CHANGED
@@ -100,6 +100,10 @@ input_boxes = [
|
|
100 |
# iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
|
101 |
iface = gr.Interface(fn=greet, inputs=input_boxes, outputs=gr.outputs.HTML(label="Output Table"))
|
102 |
|
|
|
|
|
|
|
|
|
103 |
|
104 |
iface.launch()
|
105 |
|
|
|
100 |
# iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
|
101 |
iface = gr.Interface(fn=greet, inputs=input_boxes, outputs=gr.outputs.HTML(label="Output Table"))
|
102 |
|
103 |
+
# Set the title and description
|
104 |
+
iface.title = "CancerOntoGPT"
|
105 |
+
iface.description = "Enter example cancer patient report and get the ontology result."
|
106 |
+
iface.output_label = "Output"
|
107 |
|
108 |
iface.launch()
|
109 |
|