Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ description = """
|
|
43 |
This demo shows the application of the [distil-wav2vec2](https://huggingface.co/OthmaneJ/distil-wav2vec2) model fine tuned to the [gigaspeech](https://huggingface.co/datasets/speechcolab/gigaspeech) dataset. It will classify the audio provided to the domain of the content in it.
|
44 |
"""
|
45 |
|
46 |
-
filenames = ["audiobook.
|
47 |
filenames = [[f"./{f}"] for f in filenames]
|
48 |
demo = gr.Interface(
|
49 |
fn=classify_audio,
|
|
|
43 |
This demo shows the application of the [distil-wav2vec2](https://huggingface.co/OthmaneJ/distil-wav2vec2) model fine tuned to the [gigaspeech](https://huggingface.co/datasets/speechcolab/gigaspeech) dataset. It will classify the audio provided to the domain of the content in it.
|
44 |
"""
|
45 |
|
46 |
+
filenames = ["audiobook.wav", "arts.wav", "news.wav"]
|
47 |
filenames = [[f"./{f}"] for f in filenames]
|
48 |
demo = gr.Interface(
|
49 |
fn=classify_audio,
|