mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-23 13:34:23 +08:00

Co-authored-by: Yash Khurana <ykhurana6@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Swamita Gupta <swamita2001@gmail.com> Co-authored-by: Ayush Chaurasia <ayush.chaurarsia@gmail.com> Co-authored-by: Laughing-q <1185102784@qq.com> Co-authored-by: Laughing <61612323+Laughing-q@users.noreply.github.com> Co-authored-by: Laughing-q <1182102784@qq.com>
8 lines
193 B
Python
8 lines
193 B
Python
# Ultralytics YOLO 🚀, AGPL-3.0 license
|
|
|
|
from .predict import OBBPredictor
|
|
from .train import OBBTrainer
|
|
from .val import OBBValidator
|
|
|
|
__all__ = 'OBBPredictor', 'OBBTrainer', 'OBBValidator'
|