Spaces:
Runtime error
Runtime error
Commit ·
a30aa07
1
Parent(s): 387a541
Update app.py
Browse files
app.py
CHANGED
|
@@ -88,7 +88,7 @@ with gr.Blocks() as demo:
|
|
| 88 |
|
| 89 |
with gr.Row():
|
| 90 |
dict_moods=gr.Label(label="Moods")
|
| 91 |
-
|
| 92 |
genres = gr.Label(label="Genres")
|
| 93 |
instruments = gr.Label(label="Instruments")
|
| 94 |
dict_desc = gr.Textbox(label="music desc")
|
|
@@ -104,7 +104,7 @@ with gr.Blocks() as demo:
|
|
| 104 |
],
|
| 105 |
)
|
| 106 |
'''
|
| 107 |
-
themes = gr.Dataset(components=[gr.Textbox(visible=False)],label="type de tags")
|
| 108 |
|
| 109 |
|
| 110 |
analyze_btn.click(process, inputs=[audio_input], outputs=[dict_moods, dict_desc, genres, instruments, themes])
|
|
|
|
| 88 |
|
| 89 |
with gr.Row():
|
| 90 |
dict_moods=gr.Label(label="Moods")
|
| 91 |
+
themes=gr.Label(label="Themes")
|
| 92 |
genres = gr.Label(label="Genres")
|
| 93 |
instruments = gr.Label(label="Instruments")
|
| 94 |
dict_desc = gr.Textbox(label="music desc")
|
|
|
|
| 104 |
],
|
| 105 |
)
|
| 106 |
'''
|
| 107 |
+
#themes = gr.Dataset(components=[gr.Textbox(visible=False)],label="type de tags")
|
| 108 |
|
| 109 |
|
| 110 |
analyze_btn.click(process, inputs=[audio_input], outputs=[dict_moods, dict_desc, genres, instruments, themes])
|