bharat-raghunathan commited on
Commit
e496a57
1 Parent(s): 8242a56

Update app v1.0b1

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -22,9 +22,9 @@ description = "With lyrics, find the top 5 genres this song belongs to! (Powered
22
 
23
  iface = gr.Interface(fn=lyrics_categories,
24
  inputs=gr.inputs.Textbox(lines=20, placeholder="Enter song lyrics here...", label="Song Lyrics"),
25
- outputs=gr.outputs.Label(num_top_classes=5, label="Categories/Genres"),
26
  examples=[stairway, numb, puppets, firework, yellow],
27
  article=description,
28
- title="Song Lyrics Classifier")
29
- )
30
  iface.launch()
22
 
23
  iface = gr.Interface(fn=lyrics_categories,
24
  inputs=gr.inputs.Textbox(lines=20, placeholder="Enter song lyrics here...", label="Song Lyrics"),
25
+ outputs=gr.outputs.Label(num_top_classes=5, label="Genres/Categories"),
26
  examples=[stairway, numb, puppets, firework, yellow],
27
  article=description,
28
+ title="Song Genre Predictor",
29
+ )
30
  iface.launch()