LBLong commited on
Commit
f0d0b62
·
verified ·
1 Parent(s): 4deb28b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -10,7 +10,6 @@ model_path = hf_hub_download(repo_id="arnabdhar/YOLOv8-Face-Detection", filename
10
  model = YOLO(model_path)
11
 
12
  def detect_faces(image):
13
-
14
  output = model(image)
15
  results = Detections.from_ultralytics(output[0])
16
 
 
10
  model = YOLO(model_path)
11
 
12
  def detect_faces(image):
 
13
  output = model(image)
14
  results = Detections.from_ultralytics(output[0])
15