PierreHanna commited on
Commit
ba15b51
1 Parent(s): 4d45a40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -6
app.py CHANGED
@@ -88,14 +88,23 @@ with gr.Blocks() as demo:
88
 
89
  with gr.Row():
90
  with gr.Column():
 
91
  dict_moods=gr.Label(label="Moods", show_label=False)
92
- gr.Textbox("Hello")
93
- gr.HTML("<h3>Thorax</h3>")
94
- themes=gr.Label(label="Themes", show_label=False)
95
- genres = gr.Label(label="Genres", show_label=False)
96
- instruments = gr.Label(label="Instruments", show_label=False)
 
 
 
 
 
 
 
 
 
97
 
98
- #vocalinstru = gr.Textbox(label="Vocal/Instrumental"),
99
 
100
  '''
101
  themes = gr.Dataset(components=[gr.Textbox(visible=False)],
@@ -111,6 +120,8 @@ with gr.Blocks() as demo:
111
  #themes = gr.Dataset(components=[gr.Textbox(visible=False)],label="type de tags")
112
 
113
  with gr.Column():
 
 
114
  dict_desc = gr.Textbox(label="music desc")
115
  vocalinstru = gr.Textbox(label="Vocal/Instrumental")
116
 
 
88
 
89
  with gr.Row():
90
  with gr.Column():
91
+ gr.HTML("<h3>Moods</h3>")
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
  '''
110
  themes = gr.Dataset(components=[gr.Textbox(visible=False)],
 
120
  #themes = gr.Dataset(components=[gr.Textbox(visible=False)],label="type de tags")
121
 
122
  with gr.Column():
123
+ gr.HTML("<h3> Descriptors</h3>")
124
+ gr.HTML("<h2> Vocal/Instrumental</h2>")
125
  dict_desc = gr.Textbox(label="music desc")
126
  vocalinstru = gr.Textbox(label="Vocal/Instrumental")
127