DeepLearning101 commited on
Commit
e86bd31
1 Parent(s): 9988a0a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -27,12 +27,17 @@ def transcribe(file_upload, microphone):
27
  demo = gr.Interface(
28
  fn=transcribe,
29
  inputs=[
30
- gr.Audio(type="filepath", label="語音質檢麥克風實時錄音"),
31
  gr.Audio(type="filepath", label="語音質檢原始音檔"),
32
  ],
33
  outputs=gr.Audio(type="filepath", label="Output"),
34
- title="<p style='text-align: center'><a href='https://www.twman.org/AI' target='_blank'>語音質檢噪音去除 (語音增強):Meta Denoiser</a>",
35
- description="為了提升語音識別的效果,可以在識別前先進行噪音去除",
 
 
 
 
 
 
36
  allow_flagging="never",
37
  examples=[
38
  ["exampleAudio/15s_2020-03-27_sep1.wav"],
 
27
  demo = gr.Interface(
28
  fn=transcribe,
29
  inputs=[
 
30
  gr.Audio(type="filepath", label="語音質檢原始音檔"),
31
  ],
32
  outputs=gr.Audio(type="filepath", label="Output"),
33
+ title="語音質檢/噪音去除 (語音增強)",
34
+ description="""<a href='https://www.twman.org' target='_blank'>TonTon Huang Ph.D. @ 2024/04 </a><br>
35
+ 為了提升語音識別的效果,可以在識別前先進行噪音去除<br>
36
+ <a href='https://blog.twman.org/2021/04/ASR.html' target='_blank'>那些語音處理 (Speech Processing) 踩的坑</a> | <a href='https://blog.twman.org/2021/04/NLP.html' target='_blank'>那些自然語言處理 (Natural Language Processing, NLP) 踩的坑</a><br>
37
+ <a href='https://blog.twman.org/2024/02/asr-tts.html' target='_blank'>那些ASR和TTS可能會踩的坑</a> | <a href='https://blog.twman.org/2024/02/LLM.html' target='_blank'>那些大模型開發會踩的坑</a><br>
38
+ <a href='https://blog.twman.org/2023/04/GPT.html' target='_blank'>什麼是大語言模型,它是什麼?想要嗎?</a><br>
39
+ <a href='https://blog.twman.org/2023/07/wsl.html' target='_blank'>用PaddleOCR的PPOCRLabel來微調醫療診斷書和收據</a> | <a href='https://blog.twman.org/2023/07/HugIE.html' target='_blank'>基於機器閱讀理解和指令微調的統一信息抽取框架之診斷書醫囑資訊擷取分析</a><br>
40
+ 基於<a href='https://github.com/facebookresearch/denoiser' target='_blank'> Real Time Speech Enhancement in the Waveform Domain (Interspeech 2020)</a>""",
41
  allow_flagging="never",
42
  examples=[
43
  ["exampleAudio/15s_2020-03-27_sep1.wav"],