mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-23 21:44:22 +08:00
10 lines
363 B
Python
10 lines
363 B
Python
# Ultralytics YOLO 🚀, AGPL-3.0 license
|
|
|
|
from .predict import DetectionPredictor
|
|
from .pgt_train import PGTDetectionTrainer
|
|
from .train import DetectionTrainer
|
|
from .val import DetectionValidator
|
|
from .pgt_val import PGTDetectionValidator
|
|
|
|
__all__ = "DetectionPredictor", "DetectionTrainer", "DetectionValidator", "PGTDetectionTrainer", "PGTDetectionValidator"
|