-
Notifications
You must be signed in to change notification settings - Fork 432
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
Support tf ResizeArea op. #2241
Conversation
Signed-off-by: Jay Zhang <jiz@microsoft.com>
Signed-off-by: Jay Zhang <jiz@microsoft.com>
Thank you very much. So, does the current version on the PyPI support the ResizeArea after this commit got merged? or do I expect to see the area method support in the next release? |
This commit has been merged and will be available in next release which is not in a plan yet. If you want this function, you can install from source for your local usage. |
I successfully converted my model to onnx using the new version, but when using onnxruntime for inference, the prediction result is way off compared to the result from the regular keras model.predict. I guess I will have to wait for onnx or onnxruntime to have the ResizeArea method in Resize operation as well. Look forward to the next release. Really appreciate your time. |
* Support ResizeArea op. Signed-off-by: Jay Zhang <jiz@microsoft.com> --------- Signed-off-by: Jay Zhang <jiz@microsoft.com> Signed-off-by: Me <me@example.com>
* Support ResizeArea op. Signed-off-by: Jay Zhang <jiz@microsoft.com> --------- Signed-off-by: Jay Zhang <jiz@microsoft.com> Signed-off-by: Me <me@example.com>
* Support ResizeArea op. Signed-off-by: Jay Zhang <jiz@microsoft.com> --------- Signed-off-by: Jay Zhang <jiz@microsoft.com> Signed-off-by: Me <me@example.com>
* Support ResizeArea op. Signed-off-by: Jay Zhang <jiz@microsoft.com> --------- Signed-off-by: Jay Zhang <jiz@microsoft.com> Signed-off-by: Me <me@example.com>
Add support for ResizeArea op, and add tests.
Fix #2239