Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -15,23 +15,23 @@ st.set_page_config(
|
|
| 15 |
|
| 16 |
# Dictionary mapping menu items to their corresponding functions
|
| 17 |
pages = {
|
| 18 |
-
'Dashboard'
|
| 19 |
-
'ASR-English'
|
| 20 |
-
'ASR-Mandarin'
|
| 21 |
-
'ASR-Singlish'
|
| 22 |
-
'Speech Translation'
|
| 23 |
-
'SQA-English'
|
| 24 |
-
'SQA-Singlish'
|
| 25 |
-
'SDS-Singlish'
|
| 26 |
-
'Speech Instruction'
|
| 27 |
-
'Audio Captioning'
|
| 28 |
-
'Audio-Scene QA'
|
| 29 |
-
'Accent Recognition'
|
| 30 |
-
'Gender Recognition'
|
| 31 |
-
'Emotion Recognition': emotion_recognition,
|
| 32 |
-
'Music Understanding': music_understanding,
|
| 33 |
-
|
| 34 |
-
'* Under Development *': under_development,
|
| 35 |
}
|
| 36 |
|
| 37 |
# Initialize session state for menu selection
|
|
|
|
| 15 |
|
| 16 |
# Dictionary mapping menu items to their corresponding functions
|
| 17 |
pages = {
|
| 18 |
+
'Dashboard' : dashboard,
|
| 19 |
+
'ASR-English' : asr_english,
|
| 20 |
+
'ASR-Mandarin' : asr_mandarin,
|
| 21 |
+
'ASR-Singlish' : asr_singlish,
|
| 22 |
+
'Speech Translation' : speech_translation,
|
| 23 |
+
'SQA-English' : speech_question_answering_english,
|
| 24 |
+
'SQA-Singlish' : speech_question_answering_singlish,
|
| 25 |
+
'SDS-Singlish' : spoken_dialogue_summarization_singlish,
|
| 26 |
+
'Speech Instruction' : speech_instruction,
|
| 27 |
+
'Audio Captioning' : audio_captioning,
|
| 28 |
+
'Audio-Scene QA' : audio_scene_question_answering,
|
| 29 |
+
'Accent Recognition' : accent_recognition,
|
| 30 |
+
'Gender Recognition' : gender_recognition,
|
| 31 |
+
'Emotion Recognition' : emotion_recognition,
|
| 32 |
+
'Music Understanding' : music_understanding,
|
| 33 |
+
'MMAU-Audio Understanding': mmau_evaluation,
|
| 34 |
+
'* Under Development *' : under_development,
|
| 35 |
}
|
| 36 |
|
| 37 |
# Initialize session state for menu selection
|