mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-23 13:34:23 +08:00
9 lines
319 B
Python
9 lines
319 B
Python
# Ultralytics YOLO 🚀, AGPL-3.0 license
|
|
|
|
from .predict import SegmentationPredictor
|
|
from .train import SegmentationTrainer
|
|
from .val import SegmentationValidator
|
|
from .pgt_train import PGTSegmentationTrainer
|
|
|
|
__all__ = "SegmentationPredictor", "SegmentationTrainer", "SegmentationValidator", "PGTSegmentationTrainer"
|