wli3221134 commited on
Commit
e9c3646
·
verified ·
1 Parent(s): efcd998

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -170,6 +170,14 @@ def gradio_ui():
170
  outputs=gr.JSON(label="检测结果 / Detection Results"),
171
  title="音频伪造检测系统 / Audio Deepfake Detection System",
172
  description="上传一个测试音频以检测该音频是否为AI生成。/ Upload a test audio to detect whether the audio is AI-generated.",
 
 
 
 
 
 
 
 
173
  )
174
  return interface
175
 
 
170
  outputs=gr.JSON(label="检测结果 / Detection Results"),
171
  title="音频伪造检测系统 / Audio Deepfake Detection System",
172
  description="上传一个测试音频以检测该音频是否为AI生成。/ Upload a test audio to detect whether the audio is AI-generated.",
173
+ article=(
174
+ "由香港中文大学(深圳)武执政教授团队开发。"
175
+ "Developed by a team led by Prof Zhizheng Wu from the Chinese University of Hong Kong, Shenzhen."
176
+ "\n\n"
177
+ "本系统用于检测音频是否为AI生成,适用于研究和教育目的。"
178
+ "This system is designed to detect whether an audio is AI-generated, "
179
+ "and is intended for research and educational purposes."
180
+ )
181
  )
182
  return interface
183