fuhsiao418 commited on
Commit
76f1e3b
·
1 Parent(s): 7831cfa
Files changed (1) hide show
  1. app.py +19 -18
app.py CHANGED
@@ -34,21 +34,22 @@ def main(file, ext_threshold, article_type):
34
  return result
35
 
36
 
37
-
38
- # 定義Gradio介面
39
- iface = gr.Interface(
40
- fn=main,
41
- inputs=[
42
- gr.inputs.File(),
43
- gr.inputs.Slider(minimum=0.5, maximum=1, default=0.5, step=0.01, label="Extractive - Threshold"),
44
- gr.inputs.Dropdown(["non-specialized field", "biomedical field"],default="non-specialized field", label="Abstractive - Field")
45
- ],
46
- outputs=gr.outputs.Textbox(label="Output - Structured Abstract"),
47
- title="Ext-Abs-StructuredSum",
48
- description="please upload a .txt file formatted in the form of the example.",
49
- # examples=[['text.txt']],
50
- allow_flagging='never'
51
- )
52
-
53
- # 啟動Gradio介面
54
- iface.launch(share=False) # share=False 用於停用分享模式
 
 
34
  return result
35
 
36
 
37
+ if __name__ == '__main__':
38
+
39
+ # 定義Gradio介面
40
+ iface = gr.Interface(
41
+ fn=main,
42
+ inputs=[
43
+ gr.inputs.File(),
44
+ gr.inputs.Slider(minimum=0.5, maximum=1, default=0.5, step=0.01, label="Extractive - Threshold"),
45
+ gr.inputs.Dropdown(["non-specialized field", "biomedical field"],default="non-specialized field", label="Abstractive - Field")
46
+ ],
47
+ outputs=gr.outputs.Textbox(label="Output - Structured Abstract"),
48
+ title="Ext-Abs-StructuredSum",
49
+ description="please upload a .txt file formatted in the form of the example.",
50
+ # examples=[['text.txt']],
51
+ allow_flagging='never'
52
+ )
53
+
54
+ # 啟動Gradio介面
55
+ iface.launch(share=False) # share=False 用於停用分享模式