Update app.py
Browse files
app.py
CHANGED
@@ -51,15 +51,17 @@ with gr.Blocks() as demo:
|
|
51 |
|
52 |
with gr.TabItem("Performance Tracking"):
|
53 |
gr.Markdown("## Performance Tracking")
|
54 |
-
|
55 |
-
|
56 |
-
|
|
|
57 |
|
58 |
with gr.TabItem("Engagement and Sentiment Analysis"):
|
59 |
gr.Markdown("## Engagement and Sentiment Analysis")
|
60 |
-
|
61 |
-
|
62 |
-
|
|
|
63 |
|
64 |
with gr.TabItem("Learning and Development"):
|
65 |
gr.Markdown("## Learning and Development")
|
@@ -67,10 +69,14 @@ with gr.Blocks() as demo:
|
|
67 |
gr.Markdown("- Alice Smith: Advanced Python Course")
|
68 |
gr.Markdown("- Bob Johnson: Leadership Training")
|
69 |
gr.Markdown("- Charlie Davis: Machine Learning Workshop")
|
|
|
|
|
70 |
|
71 |
with gr.TabItem("Admin and Compliance"):
|
72 |
gr.Markdown("## Admin and Compliance")
|
73 |
gr.Markdown("### Recent Activities")
|
74 |
gr.Markdown("No recent activities.")
|
|
|
|
|
75 |
|
76 |
-
demo.launch()
|
|
|
51 |
|
52 |
with gr.TabItem("Performance Tracking"):
|
53 |
gr.Markdown("## Performance Tracking")
|
54 |
+
gr.Markdown("### Performance Metrics")
|
55 |
+
gr.DataFrame(value=employee_df[['Name', 'Performance Score']], label="Performance Data")
|
56 |
+
gr.Markdown("### Performance Planning")
|
57 |
+
gr.Markdown("- Setting SMART goals and regular performance reviews​``【oaicite:8】``​.")
|
58 |
|
59 |
with gr.TabItem("Engagement and Sentiment Analysis"):
|
60 |
gr.Markdown("## Engagement and Sentiment Analysis")
|
61 |
+
gr.Markdown("### Engagement Scores")
|
62 |
+
gr.DataFrame(value=employee_df[['Name', 'Engagement Score']], label="Engagement Data")
|
63 |
+
gr.Markdown("### Sentiment Analysis")
|
64 |
+
gr.Markdown("Analyze employee feedback to identify trends​``【oaicite:7】``​.")
|
65 |
|
66 |
with gr.TabItem("Learning and Development"):
|
67 |
gr.Markdown("## Learning and Development")
|
|
|
69 |
gr.Markdown("- Alice Smith: Advanced Python Course")
|
70 |
gr.Markdown("- Bob Johnson: Leadership Training")
|
71 |
gr.Markdown("- Charlie Davis: Machine Learning Workshop")
|
72 |
+
gr.Markdown("### Skill Gap Analysis")
|
73 |
+
gr.Markdown("Identify and address skill gaps within the workforce.")
|
74 |
|
75 |
with gr.TabItem("Admin and Compliance"):
|
76 |
gr.Markdown("## Admin and Compliance")
|
77 |
gr.Markdown("### Recent Activities")
|
78 |
gr.Markdown("No recent activities.")
|
79 |
+
gr.Markdown("### Compliance Checklist")
|
80 |
+
gr.Markdown("- Adherence to employment standards, health and safety regulations, and human rights laws​``【oaicite:6】``​.")
|
81 |
|
82 |
+
demo.launch()
|