PierreHanna commited on
Commit
f4f5f6a
1 Parent(s): a0f11fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -87,10 +87,12 @@ with gr.Blocks() as demo:
87
  analyze_btn = gr.Button('Analyze File')
88
 
89
  with gr.Row():
90
- dict_moods=gr.Label(label="Moods", show_label=False)
91
- themes=gr.Label(label="Themes")
92
- genres = gr.Label(label="Genres")
93
- instruments = gr.Label(label="Instruments")
 
 
94
 
95
  #vocalinstru = gr.Textbox(label="Vocal/Instrumental"),
96
 
 
87
  analyze_btn = gr.Button('Analyze File')
88
 
89
  with gr.Row():
90
+ with gr.Column():
91
+ dict_moods=gr.Label(label="Moods", show_label=False)
92
+ gr.Textbox("Hello", label="music desc")
93
+ themes=gr.Label(label="Themes", show_label=False)
94
+ genres = gr.Label(label="Genres", show_label=False)
95
+ instruments = gr.Label(label="Instruments", show_label=False)
96
 
97
  #vocalinstru = gr.Textbox(label="Vocal/Instrumental"),
98