-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhance auto model configuration and improve utility functions
- Added 'ultralytics' to the model type mapping in `auto_model.py`. - Reordered import statements in `__init__.py` for clarity. - Integrated `click` for improved console output in `utils.py`. - Enhanced failure messages and provided formatting instructions in `validate_and_exit` function. These changes improve the organization of model imports and enhance user feedback during script execution.
- Loading branch information
Showing
3 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from . import base, detectron2, huggingface, mmdet, torchvision, yolov5, yolov8onnx, ultralytics | ||
from . import base, detectron2, huggingface, mmdet, torchvision, ultralytics, yolov5, yolov8onnx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters