PierreHanna commited on
Commit
456a03f
1 Parent(s): 4d0049a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -8
app.py CHANGED
@@ -92,21 +92,13 @@ with gr.Blocks() as demo:
92
  dict_moods=gr.Label(label="Moods", show_label=False)
93
  #gr.Textbox("Hello")
94
 
95
- with gr.Column():
96
- gr.HTML("<h3>Themes</h3>")
97
- themes=gr.Label(label="Themes", show_label=False)
98
-
99
  with gr.Column():
100
  gr.HTML("<h3>Genres</h3>")
101
  genres = gr.Label(label="Genres", show_label=False)
102
 
103
-
104
  with gr.Column():
105
  gr.HTML("<h3>Instruments</h3>")
106
  instruments = gr.Label(label="Instruments", show_label=False)
107
-
108
-
109
- with gr.Row():
110
 
111
  with gr.Column():
112
  gr.HTML("<h3> Descriptors</h3>")
@@ -114,6 +106,11 @@ with gr.Blocks() as demo:
114
  dict_desc = gr.Textbox(label="music desc")
115
  vocalinstru = gr.Textbox(label="Vocal/Instrumental")
116
 
 
 
 
 
 
117
 
118
  '''
119
  themes = gr.Dataset(components=[gr.Textbox(visible=False)],
 
92
  dict_moods=gr.Label(label="Moods", show_label=False)
93
  #gr.Textbox("Hello")
94
 
 
 
 
 
95
  with gr.Column():
96
  gr.HTML("<h3>Genres</h3>")
97
  genres = gr.Label(label="Genres", show_label=False)
98
 
 
99
  with gr.Column():
100
  gr.HTML("<h3>Instruments</h3>")
101
  instruments = gr.Label(label="Instruments", show_label=False)
 
 
 
102
 
103
  with gr.Column():
104
  gr.HTML("<h3> Descriptors</h3>")
 
106
  dict_desc = gr.Textbox(label="music desc")
107
  vocalinstru = gr.Textbox(label="Vocal/Instrumental")
108
 
109
+ with gr.Row():
110
+
111
+ with gr.Column():
112
+ gr.HTML("<h3>Themes</h3>")
113
+ themes=gr.Label(label="Themes", show_label=False)
114
 
115
  '''
116
  themes = gr.Dataset(components=[gr.Textbox(visible=False)],