Update app.py
Browse files
app.py
CHANGED
@@ -43,9 +43,7 @@ def classify_lyrics(lyric):
|
|
43 |
return sorted_texts_match_ratios[0], result[0], result[1]
|
44 |
|
45 |
demo = gr.Interface(
|
46 |
-
gr.Markdown("
|
47 |
-
gr.Markdown("<h1 style='text-align: center; margin-bottom: 1rem'>Search and explore 5865 select Karaoke MIDI titles</h1>"),
|
48 |
-
gr.Markdown("\n\n"),
|
49 |
fn=classify_lyrics,
|
50 |
inputs=[gr.Textbox(label="Enter any lyrics here", value="So close, no matter how far\nCouldn't be much more from the heart\nForever trusting who we are\nAnd nothing else matters")],
|
51 |
outputs=[gr.Label(label="Match score"),
|
|
|
43 |
return sorted_texts_match_ratios[0], result[0], result[1]
|
44 |
|
45 |
demo = gr.Interface(
|
46 |
+
gr.Markdown("\n\n"),
|
|
|
|
|
47 |
fn=classify_lyrics,
|
48 |
inputs=[gr.Textbox(label="Enter any lyrics here", value="So close, no matter how far\nCouldn't be much more from the heart\nForever trusting who we are\nAnd nothing else matters")],
|
49 |
outputs=[gr.Label(label="Match score"),
|