Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -83,11 +83,12 @@ def classify_audio(filepath):
|
|
83 |
|
84 |
title = "Language Classification Model"
|
85 |
description = """
|
86 |
-
"This model has been fine-tuned on a dataset containing various languages
|
87 |
-
including Arabic, Basque, Catalan, Chinese, English, French, German, Japanese, Russian, and more
|
88 |
-
It is designed for audio classification, allowing it to predict the language spoken in a given audio clip
|
89 |
-
Try it out by uploading an audio sample and see how accurately it can identify the language being spoken
|
90 |
-
For more info
|
|
|
91 |
"""
|
92 |
filenames = ['EN_0049.wav', "FR_0098.wav", "JP_0222.wav",]
|
93 |
filenames = [[f"./{f}"] for f in filenames]
|
|
|
83 |
|
84 |
title = "Language Classification Model"
|
85 |
description = """
|
86 |
+
"This model has been fine-tuned on a dataset containing various languages\n"
|
87 |
+
"including Arabic, Basque, Catalan, Chinese, English, French, German, Japanese, Russian, and more.\n"
|
88 |
+
"It is designed for audio classification, allowing it to predict the language spoken in a given audio clip.\n"
|
89 |
+
"Try it out by uploading an audio sample and see how accurately it can identify the language being spoken!\n"
|
90 |
+
"For more info, check out [GITHUB](https://github.com/AEscF)"
|
91 |
+
|
92 |
"""
|
93 |
filenames = ['EN_0049.wav', "FR_0098.wav", "JP_0222.wav",]
|
94 |
filenames = [[f"./{f}"] for f in filenames]
|