-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix exporting TensorRT engine and inferencing * Fix register_nms in YOLOv5GraphSurgeon * Fixing docstrings * Fix preprocessing and postprocessing in PredictorTRT * Fix pylint * Fix detect and plugins register * Fix importer in test_yolo_trt_module
- Loading branch information
Showing
8 changed files
with
84 additions
and
94 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
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,6 +1,6 @@ | ||
# Copyright (c) 2021, yolort team. All Rights Reserved. | ||
from .y_onnxruntime import PredictorORT | ||
from .y_tensorrt import PredictorTRT | ||
from .yolo_tensorrt_model import YOLOTRTModule | ||
from .yolo_graphsurgeon import YOLOGraphSurgeon | ||
|
||
__all__ = ["PredictorORT", "YOLOTRTModule", "PredictorTRT"] | ||
__all__ = ["PredictorORT", "PredictorTRT", "YOLOGraphSurgeon"] |
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
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
Oops, something went wrong.