Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,7 @@ from churn_analysis import predict
|
|
3 |
from translator import text_translator_ui
|
4 |
from sentiment import create_sentiment_tab
|
5 |
from financial_analyst import create_financial_tab
|
|
|
6 |
|
7 |
with gr.Blocks() as app:
|
8 |
with gr.Tab("Text Translator"):
|
@@ -14,6 +15,9 @@ with gr.Blocks() as app:
|
|
14 |
with gr.Tab("Financial Analyst"):
|
15 |
create_financial_tab()
|
16 |
|
|
|
|
|
|
|
17 |
with gr.Tab("Churn Analysis"):
|
18 |
gr.Markdown("Customer Churn Prediction")
|
19 |
|
|
|
3 |
from translator import text_translator_ui
|
4 |
from sentiment import create_sentiment_tab
|
5 |
from financial_analyst import create_financial_tab
|
6 |
+
from personal_info_identifier import create_personal_info_tab
|
7 |
|
8 |
with gr.Blocks() as app:
|
9 |
with gr.Tab("Text Translator"):
|
|
|
15 |
with gr.Tab("Financial Analyst"):
|
16 |
create_financial_tab()
|
17 |
|
18 |
+
with gr.Tab("Personal Info Identifier"):
|
19 |
+
create_personal_info_tab()
|
20 |
+
|
21 |
with gr.Tab("Churn Analysis"):
|
22 |
gr.Markdown("Customer Churn Prediction")
|
23 |
|