DeepLearning101 commited on
Commit
977e41f
·
verified ·
1 Parent(s): 01e5779

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -7
app.py CHANGED
@@ -56,12 +56,6 @@ description_html = """
56
  📢 *本模型基於 PyTorch + Hugging Face Hub 私有模型部署*
57
  """
58
 
59
- # 📋 你提供的 examples(可替換成你自己的測試音檔)
60
- examples = [
61
- ["examples/sample1.wav"], # 替換成你的音檔路徑
62
- ["examples/sample2.mp3"],
63
- ]
64
-
65
  if __name__ == "__main__":
66
  interface = gr.Interface(
67
  fn=separate_audio,
@@ -72,7 +66,6 @@ if __name__ == "__main__":
72
  ],
73
  title="🎙️ 語音分離 Demo - Deep Learning 101",
74
  description=description_html,
75
- examples=examples,
76
  allow_flagging="never"
77
  )
78
 
 
56
  📢 *本模型基於 PyTorch + Hugging Face Hub 私有模型部署*
57
  """
58
 
 
 
 
 
 
 
59
  if __name__ == "__main__":
60
  interface = gr.Interface(
61
  fn=separate_audio,
 
66
  ],
67
  title="🎙️ 語音分離 Demo - Deep Learning 101",
68
  description=description_html,
 
69
  allow_flagging="never"
70
  )
71