IDD-AsOne / asone /detectors /__init__.py
Bhaskar Saranga
Added AsOne
59c3a37
raw
history blame
458 Bytes
from asone.detectors.yolov5 import YOLOv5Detector
from asone.detectors.yolov6 import YOLOv6Detector
from asone.detectors.yolov7 import YOLOv7Detector
from asone.detectors.yolor import YOLOrDetector
from asone.detectors.yolox import YOLOxDetector
from asone.detectors.detector import Detector
__all__ = ['Detector'
'YOLOv5Detector',
'YOLOv6Detector',
'YOLOv7Detector',
'YOLOrDetector',
'YOLOxDetector']