Spaces:
Running
Running
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
@@ -17,6 +17,7 @@ st.markdown('<style>' + open('./style/sidebar_style.css').read() + '</style>', u
|
|
17 |
with st.sidebar:
|
18 |
tabs = on_hover_tabs(tabName=['== INTRODUCTION ==',
|
19 |
'ASR - English',
|
|
|
20 |
'ASR - Mandarin',
|
21 |
'Speech Translation',
|
22 |
'Speech Question Answering',
|
@@ -50,6 +51,9 @@ if tabs =='== INTRODUCTION ==':
|
|
50 |
elif tabs == 'ASR - English':
|
51 |
asr()
|
52 |
|
|
|
|
|
|
|
53 |
elif tabs == 'ASR - Mandarin':
|
54 |
cnasr()
|
55 |
|
|
|
17 |
with st.sidebar:
|
18 |
tabs = on_hover_tabs(tabName=['== INTRODUCTION ==',
|
19 |
'ASR - English',
|
20 |
+
'ASR - Singlish',
|
21 |
'ASR - Mandarin',
|
22 |
'Speech Translation',
|
23 |
'Speech Question Answering',
|
|
|
51 |
elif tabs == 'ASR - English':
|
52 |
asr()
|
53 |
|
54 |
+
elif tabs == 'ASR - Singlish':
|
55 |
+
singlish_asr()
|
56 |
+
|
57 |
elif tabs == 'ASR - Mandarin':
|
58 |
cnasr()
|
59 |
|