dvieri commited on
Commit
2165675
·
verified ·
1 Parent(s): cbb6100

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -58,7 +58,7 @@ def verify(img1, img2, model_type):
58
  face1 = get_face(img1p)
59
  face2 = get_face(img2p)
60
 
61
- if face1.size > 0 and face2.size > 0
62
 
63
  st.image([face1, face2], caption=["Image 1", "Image 2"], width=200)
64
 
 
58
  face1 = get_face(img1p)
59
  face2 = get_face(img2p)
60
 
61
+ if face1.size > 0 and face2.size > 0:
62
 
63
  st.image([face1, face2], caption=["Image 1", "Image 2"], width=200)
64