Spaces:
Running
Running
TuanScientist
commited on
Commit
•
8c6f784
1
Parent(s):
57949d9
Update app.py
Browse files
app.py
CHANGED
@@ -153,19 +153,24 @@ def generate_excel_file(df):
|
|
153 |
|
154 |
return excel_file_path
|
155 |
|
156 |
-
inputs
|
157 |
-
|
158 |
-
|
159 |
-
]
|
160 |
|
161 |
outputs = [
|
162 |
gr.File(label="Kết Quả Phân Tích Excel"),
|
163 |
gr.Image(type="filepath", label="Biểu đồ")
|
164 |
]
|
165 |
|
|
|
166 |
interface = gr.Interface(
|
167 |
-
fn=
|
168 |
-
inputs=
|
|
|
|
|
|
|
|
|
|
|
169 |
outputs=outputs,
|
170 |
title="Phân Tích Cảm xúc thông qua Hội Thoại bằng Tiếng Việt",
|
171 |
allow_flagging="never" # Disable flag button
|
|
|
153 |
|
154 |
return excel_file_path
|
155 |
|
156 |
+
# Define the inputs and outputs
|
157 |
+
text_input = gr.Textbox(label="Nhập Văn Bản bằng Tiếng Việt để trải nghiệm ngay")
|
158 |
+
file_input = gr.File(label="Chọn Tệp File Word(docx) Bạn Muốn Phân Tích")
|
|
|
159 |
|
160 |
outputs = [
|
161 |
gr.File(label="Kết Quả Phân Tích Excel"),
|
162 |
gr.Image(type="filepath", label="Biểu đồ")
|
163 |
]
|
164 |
|
165 |
+
# Create the interface with tabs
|
166 |
interface = gr.Interface(
|
167 |
+
fn=[analyze_from_text, analyze_from_file],
|
168 |
+
inputs=[
|
169 |
+
gr.Tab(
|
170 |
+
gr.Interface(fn=analyze_from_text, inputs=text_input, outputs=outputs, live=False, title="Nhập Văn Bản"),
|
171 |
+
gr.Interface(fn=analyze_from_file, inputs=file_input, outputs=outputs, live=False, title="Nhập File")
|
172 |
+
)
|
173 |
+
],
|
174 |
outputs=outputs,
|
175 |
title="Phân Tích Cảm xúc thông qua Hội Thoại bằng Tiếng Việt",
|
176 |
allow_flagging="never" # Disable flag button
|