DeepLearning101 commited on
Commit
7d047c4
1 Parent(s): 0924a9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +28 -1
app.py CHANGED
@@ -89,6 +89,17 @@ mf_transcribe = gr.Interface(
89
  "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
90
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
91
  " of arbitrary length."
 
 
 
 
 
 
 
 
 
 
 
92
  ),
93
  allow_flagging="never",
94
  )
@@ -105,6 +116,17 @@ file_transcribe = gr.Interface(
105
  "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
106
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
107
  " of arbitrary length."
 
 
 
 
 
 
 
 
 
 
 
108
  ),
109
  allow_flagging="never",
110
  )
@@ -121,12 +143,17 @@ yt_transcribe = gr.Interface(
121
  "Transcribe long-form YouTube videos with the click of a button! Demo uses the checkpoint"
122
  f" [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe video files of"
123
  " arbitrary length."
 
124
  "[TonTon Huang Ph.D. @ 2024/04](https://www.twman.org)"
 
125
  "[那些語音處理 (Speech Processing) 踩的坑](https://blog.twman.org/2021/04/ASR.html) | [那些自然語言處理 (Natural Language Processing, NLP) 踩的坑](https://blog.twman.org/2021/04/NLP.html)"
 
126
  "[那些ASR和TTS可能會踩的坑](https://blog.twman.org/2024/02/asr-tts.html) | [那些大模型開發會踩的坑](https://blog.twman.org/2024/02/LLM.html)"
 
127
  "[什麼是大語言模型,它是什麼?想要嗎?](https://blog.twman.org/2023/04/GPT.html)"
 
128
  "[用PaddleOCR的PPOCRLabel來微調醫療診斷書和收據](https://blog.twman.org/2023/07/wsl.html) | [基於機器閱讀理解和指令微調的統一信息抽取框架之診斷書醫囑資訊擷取分析](https://blog.twman.org/2023/07/HugIE.html)"
129
- "[Masked Language Model (MLM) as correction BERT](https://github.com/shibing624/pycorrector)"
130
  ),
131
  allow_flagging="never",
132
  )
 
89
  "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
90
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
91
  " of arbitrary length."
92
+
93
+ "[TonTon Huang Ph.D. @ 2024/04](https://www.twman.org)"
94
+
95
+ "[那些語音處理 (Speech Processing) 踩的坑](https://blog.twman.org/2021/04/ASR.html) | [那些自然語言處理 (Natural Language Processing, NLP) 踩的坑](https://blog.twman.org/2021/04/NLP.html)"
96
+
97
+ "[那些ASR和TTS可能會踩的坑](https://blog.twman.org/2024/02/asr-tts.html) | [那些大模型開發會踩的坑](https://blog.twman.org/2024/02/LLM.html)"
98
+
99
+ "[什麼是大語言模型,它是什麼?想要嗎?](https://blog.twman.org/2023/04/GPT.html)"
100
+
101
+ "[用PaddleOCR的PPOCRLabel來微調醫療診斷書和收據](https://blog.twman.org/2023/07/wsl.html) | [基於機器閱讀理解和指令微調的統一信息抽取框架之診斷書醫囑資訊擷取分析](https://blog.twman.org/2023/07/HugIE.html)"
102
+
103
  ),
104
  allow_flagging="never",
105
  )
 
116
  "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
117
  f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
118
  " of arbitrary length."
119
+
120
+ "[TonTon Huang Ph.D. @ 2024/04](https://www.twman.org)"
121
+
122
+ "[那些語音處理 (Speech Processing) 踩的坑](https://blog.twman.org/2021/04/ASR.html) | [那些自然語言處理 (Natural Language Processing, NLP) 踩的坑](https://blog.twman.org/2021/04/NLP.html)"
123
+
124
+ "[那些ASR和TTS可能會踩的坑](https://blog.twman.org/2024/02/asr-tts.html) | [那些大模型開發會踩的坑](https://blog.twman.org/2024/02/LLM.html)"
125
+
126
+ "[什麼是大語言模型,它是什麼?想要嗎?](https://blog.twman.org/2023/04/GPT.html)"
127
+
128
+ "[用PaddleOCR的PPOCRLabel來微調醫療診斷書和收據](https://blog.twman.org/2023/07/wsl.html) | [基於機器閱讀理解和指令微調的統一信息抽取框架之診斷書醫囑資訊擷取分析](https://blog.twman.org/2023/07/HugIE.html)"
129
+
130
  ),
131
  allow_flagging="never",
132
  )
 
143
  "Transcribe long-form YouTube videos with the click of a button! Demo uses the checkpoint"
144
  f" [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe video files of"
145
  " arbitrary length."
146
+
147
  "[TonTon Huang Ph.D. @ 2024/04](https://www.twman.org)"
148
+
149
  "[那些語音處理 (Speech Processing) 踩的坑](https://blog.twman.org/2021/04/ASR.html) | [那些自然語言處理 (Natural Language Processing, NLP) 踩的坑](https://blog.twman.org/2021/04/NLP.html)"
150
+
151
  "[那些ASR和TTS可能會踩的坑](https://blog.twman.org/2024/02/asr-tts.html) | [那些大模型開發會踩的坑](https://blog.twman.org/2024/02/LLM.html)"
152
+
153
  "[什麼是大語言模型,它是什麼?想要嗎?](https://blog.twman.org/2023/04/GPT.html)"
154
+
155
  "[用PaddleOCR的PPOCRLabel來微調醫療診斷書和收據](https://blog.twman.org/2023/07/wsl.html) | [基於機器閱讀理解和指令微調的統一信息抽取框架之診斷書醫囑資訊擷取分析](https://blog.twman.org/2023/07/HugIE.html)"
156
+
157
  ),
158
  allow_flagging="never",
159
  )