Spaces:
Sleeping
Sleeping
Update app.py
Browse filesrandom classification
app.py
CHANGED
@@ -1,8 +1,15 @@
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
def voice_classification(audio):
|
4 |
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
return result
|
8 |
|
|
|
1 |
+
import numpy as np
|
2 |
import gradio as gr
|
3 |
|
4 |
def voice_classification(audio):
|
5 |
|
6 |
+
# generate a random number between 0 and 1
|
7 |
+
# if 1 for engaging, 0 for boring
|
8 |
+
random_number = np.random.rand()
|
9 |
+
if random_number > 0.5:
|
10 |
+
result = "boring"
|
11 |
+
else:
|
12 |
+
result = "engaging"
|
13 |
|
14 |
return result
|
15 |
|