Spaces:
Running
Running
markdown-file (#1)
Browse files- 加Demo 的 markdown (8c98a8548a70ed27a8445ec4f1bdea61ef490b3f)
- 程式讀DEMO.md (b6bbe2663b8a6aba98dd331b5fe573d92222215b)
Co-authored-by: Sih Sîng-hông <Sing-hong@users.noreply.huggingface.co>
DEMO.md
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# 族語AI語音辨識系統
|
2 |
+
|
3 |
+
ILRDF Automatic-Speech-Recognition System
|
4 |
+
|
5 |
+
## 研發團隊
|
6 |
+
|
7 |
+
- [李鴻欣 Hung-Shin Lee](mailto:hungshinlee@gmail.com)
|
8 |
+
- [陳力瑋 Li-Wei Chen](mailto:wayne900619@gmail.com)
|
9 |
+
- [意傳科技](https://ithuan.tw/)
|
10 |
+
- [原住民族語言研究發展基金會](https://www.ilrdf.org.tw/)
|
11 |
+
|
12 |
+
感謝[聯和科創](https://www.104.com.tw/company/1a2x6bmu75)、[Pipalofasaran to Sowal no Pangcah/'Amis 台灣阿美族語言永續發展學會/原民會阿美族語言推動組織](https://www.facebook.com/groups/ypspt/about)、[台灣太魯閣族語言發展學會](https://qkktt.com/)、[台灣原住民族賽德克族語言文化學會](https://www.facebook.com/3S3TBL/)及族語老師們大力協助!
|
app.py
CHANGED
@@ -85,17 +85,9 @@ with demo:
|
|
85 |
outputs=[dialect_drop_down],
|
86 |
)
|
87 |
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
### Formosan Automatic-Speech-Recognition System
|
92 |
-
### 研發團隊
|
93 |
-
- **[李鴻欣 Hung-Shin Lee](mailto:hungshinlee@gmail.com)([聯和科創](https://www.104.com.tw/company/1a2x6bmu75))**
|
94 |
-
- **[陳力瑋 Li-Wei Chen](mailto:wayne900619@gmail.com)([聯和科創](https://www.104.com.tw/company/1a2x6bmu75))**
|
95 |
-
### 合作單位
|
96 |
-
- **[意傳科技](https://ithuan.tw/)、[原住民族語言研究發展基金會](https://www.ilrdf.org.tw/)**
|
97 |
-
"""
|
98 |
-
)
|
99 |
gr.Interface(
|
100 |
automatic_speech_recognition,
|
101 |
inputs=[
|
|
|
85 |
outputs=[dialect_drop_down],
|
86 |
)
|
87 |
|
88 |
+
with open("DEMO.md") as tong:
|
89 |
+
gr.Markdown(tong.read())
|
90 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
gr.Interface(
|
92 |
automatic_speech_recognition,
|
93 |
inputs=[
|