anyuanay commited on
Commit
0eddaee
·
verified ·
1 Parent(s): 56e6969

Update app.py

Browse files

random classification

Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -1,8 +1,15 @@
 
1
  import gradio as gr
2
 
3
  def voice_classification(audio):
4
 
5
- result = "engaging"
 
 
 
 
 
 
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