Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ description = """
|
|
43 |
This is the demo of the finetuned classification model that we just trained on the [GTZAN](https://huggingface.co/datasets/marsyas/gtzan). You can upload your own audio file or used the ones already provided below.
|
44 |
"""
|
45 |
|
46 |
-
filenames = [
|
47 |
filenames = [[f"./{f}"] for f in filenames]
|
48 |
demo = gr.Interface(
|
49 |
fn=classify_audio,
|
|
|
43 |
This is the demo of the finetuned classification model that we just trained on the [GTZAN](https://huggingface.co/datasets/marsyas/gtzan). You can upload your own audio file or used the ones already provided below.
|
44 |
"""
|
45 |
|
46 |
+
filenames = ["audiobook.mp3"]
|
47 |
filenames = [[f"./{f}"] for f in filenames]
|
48 |
demo = gr.Interface(
|
49 |
fn=classify_audio,
|