forked from timesler/facenet-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ee5326
commit b4d446c
Showing
10 changed files
with
391 additions
and
359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
from .models.inception_resnet_v1 import InceptionResnetV1 | ||
from .models.mtcnn import MTCNN, PNet, RNet, ONet, prewhiten, fixed_image_standardization | ||
from .models.mtcnn import ( | ||
MTCNN, | ||
PNet, | ||
RNet, | ||
ONet, | ||
prewhiten, | ||
fixed_image_standardization, | ||
) | ||
from .models.utils.detect_face import extract_face | ||
from .models.utils import training | ||
|
||
import warnings | ||
|
||
warnings.filterwarnings( | ||
action="ignore", | ||
message="This overload of nonzero is deprecated:\n\tnonzero()", | ||
category=UserWarning | ||
) | ||
action="ignore", | ||
message="This overload of nonzero is deprecated:\n\tnonzero()", | ||
category=UserWarning, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.