Spaces:
Runtime error
Runtime error
Commit
·
90f2a58
1
Parent(s):
ce2a170
app
Browse files
app.py
CHANGED
@@ -2,6 +2,13 @@ import gradio as gr
|
|
2 |
|
3 |
title = "Employee Experience"
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
data_corr = gr.Interface.load(
|
6 |
"spaces/jaleesahmed/correlation-and-visualization",
|
7 |
title=None,
|
@@ -9,7 +16,7 @@ data_corr = gr.Interface.load(
|
|
9 |
description="Data correlation and pattern visualization!",
|
10 |
)
|
11 |
|
12 |
-
demo = gr.TabbedInterface([data_corr], ["Data-Correlation"])
|
13 |
|
14 |
if __name__ == "__main__":
|
15 |
demo.launch()
|
|
|
2 |
|
3 |
title = "Employee Experience"
|
4 |
|
5 |
+
data_desc = gr.Interface.load(
|
6 |
+
"spaces/jaleesahmed/data-description",
|
7 |
+
title=None,
|
8 |
+
examples=[],
|
9 |
+
description="Data Description!",
|
10 |
+
)
|
11 |
+
|
12 |
data_corr = gr.Interface.load(
|
13 |
"spaces/jaleesahmed/correlation-and-visualization",
|
14 |
title=None,
|
|
|
16 |
description="Data correlation and pattern visualization!",
|
17 |
)
|
18 |
|
19 |
+
demo = gr.TabbedInterface([data_desc, data_corr], ["Data Description", "Data-Correlation"])
|
20 |
|
21 |
if __name__ == "__main__":
|
22 |
demo.launch()
|