Update app.py
Browse files
app.py
CHANGED
@@ -81,8 +81,8 @@ transcribe.__annotations__ = {
|
|
81 |
|
82 |
# 🎯 你提供的 description 內容(已轉為 HTML)
|
83 |
description_html = """
|
84 |
-
<h1 align='center'><a href='https://www.twman.org/AI/ASR/SpeechEnhancement' target='_blank'
|
85 |
-
<p align='center'><b>上傳一段音檔 (支援
|
86 |
<div align='center'>
|
87 |
<a href='https://www.twman.org' target='_blank'>TonTon Huang Ph.D.</a> |
|
88 |
<a href='https://www.twman.org/AI' target='_blank'> AI </a> |
|
@@ -92,7 +92,7 @@ description_html = """
|
|
92 |
<a href='https://www.youtube.com/c/DeepLearning101' target='_blank'>YouTube</a>
|
93 |
</div>
|
94 |
<br>
|
95 |
-
|
96 |
<ul>
|
97 |
<li><a href='https://blog.twman.org/2025/03/AIAgent.html' target='_blank'>避開 AI Agent 開發陷阱:常見問題、挑戰與解決方案 (那些 AI Agent 實戰踩過的坑)</a>:探討多種 AI Agent 工具的應用經驗與挑戰</li>
|
98 |
<li><a href='https://blog.twman.org/2024/08/LLM.html' target='_blank'>白話文手把手帶你科普 GenAI</a>:淺顯介紹生成式人工智慧核心概念</li>
|
@@ -122,7 +122,6 @@ demo = gr.Interface(
|
|
122 |
],
|
123 |
live=True,
|
124 |
allow_flagging="never",
|
125 |
-
title="<h1>語音質檢/噪音去除 (語音增強)</h1>",
|
126 |
description=description_html
|
127 |
)
|
128 |
|
|
|
81 |
|
82 |
# 🎯 你提供的 description 內容(已轉為 HTML)
|
83 |
description_html = """
|
84 |
+
<h1 align='center'><a href='https://www.twman.org/AI/ASR/SpeechEnhancement' target='_blank'>中文語音質檢/噪音去除 (語音增強)</a></h1>
|
85 |
+
<p align='center'><b>上傳一段音檔 (支援 .mp3, .wav),為了提升語音識別的效果,可以在識別前先進行噪音去除</b></p>
|
86 |
<div align='center'>
|
87 |
<a href='https://www.twman.org' target='_blank'>TonTon Huang Ph.D.</a> |
|
88 |
<a href='https://www.twman.org/AI' target='_blank'> AI </a> |
|
|
|
92 |
<a href='https://www.youtube.com/c/DeepLearning101' target='_blank'>YouTube</a>
|
93 |
</div>
|
94 |
<br>
|
95 |
+
📘 相關技術文章:
|
96 |
<ul>
|
97 |
<li><a href='https://blog.twman.org/2025/03/AIAgent.html' target='_blank'>避開 AI Agent 開發陷阱:常見問題、挑戰與解決方案 (那些 AI Agent 實戰踩過的坑)</a>:探討多種 AI Agent 工具的應用經驗與挑戰</li>
|
98 |
<li><a href='https://blog.twman.org/2024/08/LLM.html' target='_blank'>白話文手把手帶你科普 GenAI</a>:淺顯介紹生成式人工智慧核心概念</li>
|
|
|
122 |
],
|
123 |
live=True,
|
124 |
allow_flagging="never",
|
|
|
125 |
description=description_html
|
126 |
)
|
127 |
|