removed variant from pitch analyzer
Browse files
app.py
CHANGED
@@ -289,7 +289,7 @@ with gr.Blocks(theme='sudeepshouche/minimalist', title="Global Dataset Maker") a
|
|
289 |
gr.Markdown("Upload a wav file here, and this will determine the average pitch.")
|
290 |
gr.HTML("<h1> Zip files and MP3 files are not supported as of now.")
|
291 |
with gr.Row():
|
292 |
-
with gr.Column(
|
293 |
with gr.Row():
|
294 |
upload = gr.File(file_count='single', file_types=[".wav"], label="WAV file")
|
295 |
analyze = gr.Button("Analyze", variant='primary')
|
|
|
289 |
gr.Markdown("Upload a wav file here, and this will determine the average pitch.")
|
290 |
gr.HTML("<h1> Zip files and MP3 files are not supported as of now.")
|
291 |
with gr.Row():
|
292 |
+
with gr.Column():
|
293 |
with gr.Row():
|
294 |
upload = gr.File(file_count='single', file_types=[".wav"], label="WAV file")
|
295 |
analyze = gr.Button("Analyze", variant='primary')
|