-
-
Notifications
You must be signed in to change notification settings - Fork 16.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TensorRT SegmentationModel fix #9465
Conversation
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
…gment # Conflicts: # export.py
for more information, see https://pre-commit.ci
@AyushExel @Laughing-q this PR adds SegmentationModel TensorRT inference support. I updated CoreML and Paddle inference yesterday to support SegmentationModels. The only SegmentationModel exports not running inference correctly still are the TF formats. You can see Segmentation benchmark results as part of the daily CI: |
Signed-off-by: Glenn Jocher <[email protected]>
Signed-off-by: Glenn Jocher <[email protected]>
🛠️ PR Summary
Made with ❤️ by Ultralytics Actions
🌟 Summary
Enhancements in exporting models with added support for Segmentation and Detection in ONNX and TensorRT formats.
📊 Key Changes
DetectionModel
andSegmentationModel
classes added to the list of imports from themodels.yolo
module.SegmentationModel
to ONNX with appropriate output names and dynamic axes configuration.SegmentationModel
andDetectionModel
instances differently when exporting to ONNX.🎯 Purpose & Impact