mirror of
https://github.com/serengil/deepface.git
synced 2025-06-07 03:55:21 +00:00
fix: yolo input_shape
This commit is contained in:
parent
d3a3f2b65f
commit
c25f14af10
@ -37,7 +37,7 @@ class YoloFacialRecognitionClient(FacialRecognition):
|
|||||||
def __init__(self, model: YoloModel):
|
def __init__(self, model: YoloModel):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.model_name = "Yolo"
|
self.model_name = "Yolo"
|
||||||
self.input_shape = (224, 224)
|
self.input_shape = (640, 640)
|
||||||
self.output_shape = 512
|
self.output_shape = 512
|
||||||
self.model = self.build_model(model)
|
self.model = self.build_model(model)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user