Skip to content

Commit

Permalink
Update mtcnn.py
Browse files Browse the repository at this point in the history
typo bug fixed
  • Loading branch information
TreB1eN authored Mar 5, 2019
1 parent 07dc082 commit 350ff7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mtcnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __init__(self):
self.pnet = PNet().to(device)
self.rnet = RNet().to(device)
self.onet = ONet().to(device)
self.onet.eval()
self.pnet.eval()
self.rnet.eval()
self.onet.eval()
self.refrence = get_reference_facial_points(default_square= True)
Expand Down

0 comments on commit 350ff7a

Please sign in to comment.