conciomith commited on
Commit
aa7cca8
1 Parent(s): 8cba427

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,7 +1,8 @@
1
  import gradio as gr
2
  import RetinaFace
3
 
4
- gr.Interface(fn=RetinaFace, inputs=gr.inputs.Image(shape=(800, 600), source="upload", type='file'), outputs="plot", title ="RetinaFace", allow_flagging = "never").launch(inbrowser= True)
 
5
 
6
  def RetinaFace(img):
7
  faces = RetinaFace.extract_faces(img, align = True)
 
1
  import gradio as gr
2
  import RetinaFace
3
 
4
+ inputs = gr.inputs.Image(shape=(800, 600), source="upload", type='file')
5
+ gr.Interface(fn=RetinaFace, inputs=inputs, outputs="plot", title ="RetinaFace", allow_flagging = "never").launch(inbrowser= True)
6
 
7
  def RetinaFace(img):
8
  faces = RetinaFace.extract_faces(img, align = True)