Spaces:
Runtime error
Runtime error
jaleesahmed
commited on
Commit
·
7062a89
1
Parent(s):
5eac2bb
app
Browse files
app.py
CHANGED
@@ -34,7 +34,13 @@ inputs = [
|
|
34 |
|
35 |
outputs = gr.Plot()
|
36 |
|
37 |
-
demo = gr.Interface(
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
|
40 |
if __name__ == "__main__":
|
|
|
34 |
|
35 |
outputs = gr.Plot()
|
36 |
|
37 |
+
demo = gr.Interface(
|
38 |
+
fn = outbreak,
|
39 |
+
inputs = inputs,
|
40 |
+
outputs = outputs,
|
41 |
+
title="Employee-Experience: Data Correlation and Pattern Visualization",
|
42 |
+
allow_flagging=False
|
43 |
+
)
|
44 |
|
45 |
|
46 |
if __name__ == "__main__":
|