Spaces:
Sleeping
Sleeping
File size: 277 Bytes
bf0b5b3 |
1 2 3 4 5 6 7 8 |
# Ultralytics YOLO π, AGPL-3.0 license
from .predict import DetectionPredictor, predict
from .train import DetectionTrainer, train
from .val import DetectionValidator, val
__all__ = 'DetectionPredictor', 'predict', 'DetectionTrainer', 'train', 'DetectionValidator', 'val'
|