fix input shape size

This commit is contained in:
Rodrigo Andrade 2022-05-08 21:35:25 -03:00
parent 1d18013978
commit 3c0d84e34b

View File

@ -10,7 +10,7 @@ _url = "https://github.com/opencv/opencv_zoo/raw/master/models/face_recognition_
class _Layer:
input_shape = (None, 112, 122, 3)
input_shape = (None, 112, 112, 3)
class SFace: