yangswei commited on
Commit
c8d523b
·
verified ·
1 Parent(s): ff8d3d0

Update song-insight-app.py

Browse files
Files changed (1) hide show
  1. song-insight-app.py +1 -1
song-insight-app.py CHANGED
@@ -66,7 +66,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
66
  output_song_meaning = gr.Textbox(label="Meaning")
67
  output_song_theme = gr.Label(num_top_classes=6, label="Theme")
68
  gr.Interface(fn=song_insight, inputs=[song, artist], outputs=[output_song_meaning, output_song_theme])
69
- example = gr.Examples([['Maroon', 'Taylor Swift'], ['Devil In Her Heart', 'The Beatles'],
70
  ['Bedtime Stories', 'Jay Chou'], ['Loser', 'BIGBANG']], [song, artist])
71
 
72
  demo.launch()
 
66
  output_song_meaning = gr.Textbox(label="Meaning")
67
  output_song_theme = gr.Label(num_top_classes=6, label="Theme")
68
  gr.Interface(fn=song_insight, inputs=[song, artist], outputs=[output_song_meaning, output_song_theme])
69
+ example = gr.Examples([['Life Goes On', 'BTS'], ['Here Comes The Sun', 'The Beatles'],
70
  ['Bedtime Stories', 'Jay Chou'], ['Loser', 'BIGBANG']], [song, artist])
71
 
72
  demo.launch()