XavierJiezou commited on
Commit
f14b4f0
·
verified ·
1 Parent(s): 6bcadb0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -212,12 +212,12 @@ real_examples, fake_examples = collect_examples_grouped()
212
 
213
  # ------- 2) UI -------
214
  with gr.Blocks() as demo:
215
- gr.Markdown("## Real-vs-Fake Image Detector")
216
 
217
  with gr.Row():
218
  # —— 左列:图片 + 按钮 ——
219
  with gr.Column(scale=1):
220
- img_input = gr.Image(label="img", type="pil")
221
 
222
  # ✨ 示例图片组件
223
 
 
212
 
213
  # ------- 2) UI -------
214
  with gr.Blocks() as demo:
215
+ gr.Markdown("<h1 style='text-align: center;'>Face Forgery Detection</h1>")
216
 
217
  with gr.Row():
218
  # —— 左列:图片 + 按钮 ——
219
  with gr.Column(scale=1):
220
+ img_input = gr.Image(label="Input", type="pil")
221
 
222
  # ✨ 示例图片组件
223