Update app.py
Browse files
app.py
CHANGED
@@ -173,19 +173,18 @@ def norm(result: dict) -> str:
|
|
173 |
|
174 |
|
175 |
with gr.Blocks() as demo:
|
176 |
-
gr.
|
177 |
-
|
178 |
-
text_input = gr.Textbox(label="Input sentence (ex: Sếp tốt, bảo hiểm đóng full lương bảo hiểm cho nhân viên. Hàng năm tăng lương ổn OT không trả thêm tiền, chỉ cho ngày nghỉ và hỗ trợ ăn tối.):", placeholder="input here...")
|
179 |
text_output = gr.Textbox(label="Result:")
|
180 |
text_button = gr.Button("Predict")
|
181 |
-
with gr.Tab("
|
182 |
with gr.Column():
|
183 |
-
file_input = gr.File(label="Upload pdf", file_types=[".pdf"])
|
184 |
with gr.Column():
|
185 |
-
cv_output = gr.Textbox(label="Information fields")
|
186 |
resume_button = gr.Button("Extract")
|
187 |
with gr.Column():
|
188 |
-
normalize_output = gr.Textbox(label="
|
189 |
normalize_button = gr.Button("Normailze")
|
190 |
|
191 |
# with gr.Accordion("Open for More!"):
|
|
|
173 |
|
174 |
|
175 |
with gr.Blocks() as demo:
|
176 |
+
with gr.Tab("REVIEW ANALYSIS"):
|
177 |
+
text_input = gr.Textbox(label="Input company review sentence (ex: Sếp tốt, bảo hiểm đóng full lương bảo hiểm cho nhân viên. Hàng năm tăng lương ổn OT không trả thêm tiền, chỉ cho ngày nghỉ và hỗ trợ ăn tối.):", placeholder="input here...")
|
|
|
178 |
text_output = gr.Textbox(label="Result:")
|
179 |
text_button = gr.Button("Predict")
|
180 |
+
with gr.Tab("RESUME PARSER"):
|
181 |
with gr.Column():
|
182 |
+
file_input = gr.File(label="Upload .pdf file", file_types=[".pdf"])
|
183 |
with gr.Column():
|
184 |
+
cv_output = gr.Textbox(label="Information fields found:")
|
185 |
resume_button = gr.Button("Extract")
|
186 |
with gr.Column():
|
187 |
+
normalize_output = gr.Textbox(label="Normalized by rule-based:")
|
188 |
normalize_button = gr.Button("Normailze")
|
189 |
|
190 |
# with gr.Accordion("Open for More!"):
|