Ron0420 commited on
Commit
760f875
1 Parent(s): 9a445a2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -29,12 +29,11 @@ detector = MTCNN()
29
 
30
  def deepfakespredict(input_img ):
31
 
32
- model = []
33
  labels = ['real', 'fake']
34
  pred = [0, 0]
35
-
36
  text =""
37
  text2 =""
 
38
  face = detector.detect_faces(input_img)
39
 
40
  if len(face) > 0:
 
29
 
30
  def deepfakespredict(input_img ):
31
 
 
32
  labels = ['real', 'fake']
33
  pred = [0, 0]
 
34
  text =""
35
  text2 =""
36
+
37
  face = detector.detect_faces(input_img)
38
 
39
  if len(face) > 0: