init commit
This commit is contained in:
22
ultralytics/models/yolo/yoloe/__init__.py
Normal file
22
ultralytics/models/yolo/yoloe/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
|
||||
|
||||
from .predict import YOLOEVPDetectPredictor, YOLOEVPSegPredictor
|
||||
from .train import YOLOEPEFreeTrainer, YOLOEPETrainer, YOLOETrainer, YOLOETrainerFromScratch, YOLOEVPTrainer
|
||||
from .train_seg import YOLOEPESegTrainer, YOLOESegTrainer, YOLOESegTrainerFromScratch, YOLOESegVPTrainer
|
||||
from .val import YOLOEDetectValidator, YOLOESegValidator
|
||||
|
||||
__all__ = [
|
||||
"YOLOETrainer",
|
||||
"YOLOEPETrainer",
|
||||
"YOLOESegTrainer",
|
||||
"YOLOEDetectValidator",
|
||||
"YOLOESegValidator",
|
||||
"YOLOEPESegTrainer",
|
||||
"YOLOESegTrainerFromScratch",
|
||||
"YOLOESegVPTrainer",
|
||||
"YOLOEVPTrainer",
|
||||
"YOLOEPEFreeTrainer",
|
||||
"YOLOEVPDetectPredictor",
|
||||
"YOLOEVPSegPredictor",
|
||||
"YOLOETrainerFromScratch",
|
||||
]
|
||||
Reference in New Issue
Block a user