diff --git a/deepface/models/Detector.py b/deepface/models/Detector.py index 55ff3a7..be1130f 100644 --- a/deepface/models/Detector.py +++ b/deepface/models/Detector.py @@ -1,7 +1,7 @@ from typing import List, Tuple, Optional from abc import ABC, abstractmethod -import numpy as np from dataclasses import dataclass +import numpy as np # Notice that all facial detector models must be inherited from this class