init commit

This commit is contained in:
2025-11-08 19:15:39 +01:00
parent ecffcb08e8
commit c7adacf53b
470 changed files with 73751 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
# Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
from .tasks import (
BaseModel,
ClassificationModel,
DetectionModel,
SegmentationModel,
guess_model_scale,
guess_model_task,
load_checkpoint,
parse_model,
torch_safe_load,
yaml_model_load,
)
__all__ = (
"load_checkpoint",
"parse_model",
"yaml_model_load",
"guess_model_task",
"guess_model_scale",
"torch_safe_load",
"DetectionModel",
"SegmentationModel",
"ClassificationModel",
"BaseModel",
)