Skip to content

Commit

Permalink
Merge pull request #91 from bit-guber/master
Browse files Browse the repository at this point in the history
  • Loading branch information
serengil authored Mar 11, 2024
2 parents e02bc41 + 34a1d18 commit 29d593f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion retinaface/model/retinaface_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def build_model() -> Model:

pooling0_pad = ZeroPadding2D(padding=tuple([1, 1]))(relu0)

pooling0 = MaxPool2D((3, 3), (2, 2), padding="VALID", name="pooling0")(pooling0_pad)
pooling0 = MaxPool2D((3, 3), (2, 2), padding="valid", name="pooling0")(pooling0_pad)

stage1_unit1_bn1 = BatchNormalization(
epsilon=1.9999999494757503e-05, name="stage1_unit1_bn1", trainable=False
Expand Down

0 comments on commit 29d593f

Please sign in to comment.