Qifan Zhang
commited on
Commit
·
a4780a0
1
Parent(s):
dd2409d
feat: add title
Browse files
app.py
CHANGED
@@ -83,6 +83,7 @@ app = gr.Interface(
|
|
83 |
fn=process,
|
84 |
inputs=[task_name_dropdown, model_name_dropdown, pooling_dropdown, text_input, file_input],
|
85 |
outputs=[text_output, dataframe_output, file_output],
|
86 |
-
description=open('data/description.txt', 'r').read()
|
|
|
87 |
)
|
88 |
app.launch()
|
|
|
83 |
fn=process,
|
84 |
inputs=[task_name_dropdown, model_name_dropdown, pooling_dropdown, text_input, file_input],
|
85 |
outputs=[text_output, dataframe_output, file_output],
|
86 |
+
description=open('data/description.txt', 'r').read(),
|
87 |
+
title='TransDis-CreativityAutoAssessment',
|
88 |
)
|
89 |
app.launch()
|