ceefax commited on
Commit
b7c3c02
·
1 Parent(s): 932dbf3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,7 +9,7 @@ model_id = "ceefax/distilhubert-finetuned-gtzan"
9
  pipe = pipeline("audio-classification", model=model_id)
10
  title = "Genre Classifier"
11
  description = "Genre classifier trained on GTZAN"
12
- # examples = ['/content/Trumpet_to_ambient_music.wav']
13
  interpretation='default'
14
  enable_queue=True
15
 
@@ -22,6 +22,6 @@ def classify_audio(filepath):
22
 
23
  demo = gr.Interface(
24
  fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs=gr.outputs.Label(), title=title,description=description
25
- # ,examples=examples
26
  ,interpretation=interpretation,enable_queue=enable_queue
27
  ).launch()
 
9
  pipe = pipeline("audio-classification", model=model_id)
10
  title = "Genre Classifier"
11
  description = "Genre classifier trained on GTZAN"
12
+ examples = ['smoke-143172.mp3']
13
  interpretation='default'
14
  enable_queue=True
15
 
 
22
 
23
  demo = gr.Interface(
24
  fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs=gr.outputs.Label(), title=title,description=description
25
+ ,examples=examples
26
  ,interpretation=interpretation,enable_queue=enable_queue
27
  ).launch()