[Feature] add onnxruntime test tool#498
Merged
xvjiarui merged 10 commits intoopen-mmlab:masterfrom Apr 29, 2021
Merged
Conversation
Codecov Report
@@ Coverage Diff @@
## master #498 +/- ##
==========================================
+ Coverage 86.48% 86.60% +0.11%
==========================================
Files 97 99 +2
Lines 4974 5160 +186
Branches 807 834 +27
==========================================
+ Hits 4302 4469 +167
- Misses 519 533 +14
- Partials 153 158 +5
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
RunningLeon
reviewed
Apr 22, 2021
Collaborator
|
LGTM. Ping @RunningLeon if there is any comments. |
RunningLeon
reviewed
Apr 28, 2021
RunningLeon
reviewed
Apr 28, 2021
xvjiarui
approved these changes
Apr 29, 2021
bowenroom
pushed a commit
to bowenroom/mmsegmentation
that referenced
this pull request
Feb 25, 2022
* add onnxruntime test tool, update pytorch2onnx to support slice export * onnx convert with custom output shape, update test code * update pytorch2onnx, add rescale_shape support, add document * update doc for lint error fixing * remove cpu flag in ort_test.py * change class name, fix cuda error * remote comment * fix bug of torch2onnx * mIOU to mIoU
aravind-h-v
pushed a commit
to aravind-h-v/mmsegmentation
that referenced
this pull request
Mar 27, 2023
Fix `disable_attention_slicing` in pipelines.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi
This PR adds an ONNXRuntime test tool to align results between PyTorch and ONNXRuntime.
Pytorch2onnx is also updated to support rescale output shape (a large output shape might cause OOM).
TODO