Spaces:
Sleeping
Sleeping
TuanScientist
commited on
Commit
•
bd64970
1
Parent(s):
8c6f784
Update app.py
Browse files
app.py
CHANGED
@@ -153,24 +153,19 @@ def generate_excel_file(df):
|
|
153 |
|
154 |
return excel_file_path
|
155 |
|
156 |
-
|
157 |
-
|
158 |
-
|
|
|
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=
|
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
|
|
|
153 |
|
154 |
return excel_file_path
|
155 |
|
156 |
+
inputs = [
|
157 |
+
gr.Textbox(label="Nhập Văn Bản bằng Tiếng Việt để trải nghiệm ngay"),
|
158 |
+
gr.File(label="Chọn Tệp File Word(docx) Bạn Muốn Phân Tích")
|
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=analyze_text,
|
168 |
+
inputs=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
|