sammyblues commited on
Commit
060169b
·
verified ·
1 Parent(s): 4469b57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -29,7 +29,7 @@ def predict_image(img):
29
 
30
  description_html = """
31
 
32
- <p>Upload a face image or pick from the samples below to test model accuracy</p>
33
  """
34
 
35
  # Define example images and their true labels for users to choose from
@@ -42,7 +42,7 @@ gr.Interface(
42
  fn=predict_image,
43
  inputs='image',
44
  outputs='text',
45
- title="Deepfake Image Detection(CNN)",
46
  description=description_html,
47
  allow_flagging='never'
48
  ).launch()
 
29
 
30
  description_html = """
31
 
32
+ <p>Upload a face image to check if it's real or morphed with deepfake</p>
33
  """
34
 
35
  # Define example images and their true labels for users to choose from
 
42
  fn=predict_image,
43
  inputs='image',
44
  outputs='text',
45
+ title="Deepfake Image Detection",
46
  description=description_html,
47
  allow_flagging='never'
48
  ).launch()