-
Notifications
You must be signed in to change notification settings - Fork 14
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
[Yolact][ONNX Frontend][Paritioning Issue] Yolact - Instance segmentation model compilation issue #86
Comments
@abdulazizm , I put a fix for the yolact model in https://github.com/Xilinx/pyxir/tree/fix-yolact and used following script. Could you verify whether this works for you? The performance isn't great yet as the the bilinear upsample layers are prohibiting a large part of the model to be offloaded to the DPU. I am verifying whether these could be offloaded to the DPU as well.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Related to #85
Exported Yolact model to ONNX and tried compiling with ONNX frontend
With
mod = relay.transform.DynamicToStatic()(mod)
just beforemod = partition_for_vitis_ai(mod, params, dpu=target)
,FYI:
Without
mod = relay.transform.DynamicToStatic()(mod)
beforemod = partition_for_vitis_ai(mod, params, dpu=target)
With pytorch frontend, compilation goes up to 3rd step, but with ONNX frontend struck in 1st step
The text was updated successfully, but these errors were encountered: