Spaces:
Running
Running
Commit
·
fd133b0
1
Parent(s):
3fab9fb
Update app.py
Browse files
app.py
CHANGED
@@ -114,11 +114,11 @@ def inference_dataset(input):
|
|
114 |
output2 = output3 = output4 = output5 = "This option was not selected."
|
115 |
if "emotion frequencies" in input[input_checks]:
|
116 |
output2 = "This option was selected."
|
117 |
-
if "emotion distribution over time" in
|
118 |
output3 = "This option was selected."
|
119 |
-
if "peaks" in
|
120 |
output4 = "This option was selected."
|
121 |
-
if "topics" in
|
122 |
output5 = "This option was selected."
|
123 |
return output1,output2,output3,output4,output5
|
124 |
|
|
|
114 |
output2 = output3 = output4 = output5 = "This option was not selected."
|
115 |
if "emotion frequencies" in input[input_checks]:
|
116 |
output2 = "This option was selected."
|
117 |
+
if "emotion distribution over time" in input[input_checks]:
|
118 |
output3 = "This option was selected."
|
119 |
+
if "peaks" in input[input_checks]:
|
120 |
output4 = "This option was selected."
|
121 |
+
if "topics" in input[input_checks]:
|
122 |
output5 = "This option was selected."
|
123 |
return output1,output2,output3,output4,output5
|
124 |
|