Spaces:
Running
on
Zero
Running
on
Zero
markdown-file
#1
by
Sing-hong
- opened
DEMO.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 族語AI語音辨識系統
|
| 2 |
+
|
| 3 |
+
ILRDF Automatic-Speech-Recognition System
|
| 4 |
+
|
| 5 |
+
## 研發團隊
|
| 6 |
+
|
| 7 |
+
- [李鴻欣 Hung-Shin Lee](mailto:[email protected])
|
| 8 |
+
- [陳力瑋 Li-Wei Chen](mailto:[email protected])
|
| 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:[email protected])([聯和科創](https://www.104.com.tw/company/1a2x6bmu75))**
|
| 94 |
-
- **[陳力瑋 Li-Wei Chen](mailto:[email protected])([聯和科創](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=[
|