modify automl threshold params and add gpu optimizations in object detection ml-wrappers #144
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.
modify automl threshold params and add gpu optimizations in object detection ml-wrappers
1.) fix _get_device to be able to handle colons with device number
2.) add transforms to PytorchDRiseWrapper for AutoML support via extracting underlying model as an optimization for running AutoML models on GPU
3.) add threshold params for iou_thresh and score_thresh to predict method and also allow them to be specified on constructor
4.) rename score_thresh and iou_thresh to full name score_threshold and iou_threshold, since we have many cases where these seem to be inconsistent in the codebase - note it looks like these are not used elsewhere in our codebases so it should not affect other projects, but it is a breaking change in case other external users are calling these APIs directly
5.) add tests for the new changes