-
-
Notifications
You must be signed in to change notification settings - Fork 208
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
port face detection to TVM #5
Comments
@kaishijeng BTW, welcome to pull requests to share your TVM model for arm to this repo. :) |
Try to use gluon to downdload yolo3_mobilenet1.0_voc below: It has an error: of Pretrained model for yolo3_mobilenet1_0_voc is not available as below: Traceback (most recent call last): |
@kaishijeng It's an official bug. I have opened an issue to fix it. |
It works with your link. However, it has only *.param and TVM needs network definition in *.json so it can do the conversion Thanks, |
@kaishijeng |
Thanks fo r the export_network.py. Same error with yolo3_mobile1.0_voc in tvm as below; |
@kaishijeng Good luck and look forward to feedback. :) |
port the model to ncnn is ok |
@aa12356jm |
ok,i will do it tomorrow |
Can you confirm what is the image size for 20ms/50 FPS metric calculation ? |
Resize the image short edge to 256. |
I attempted to port your trained model to TVM which is a good framework to speed up on arm device (like RK3399). Unfortunately, there are some operators in your model seem not supported in TVM.
"infer_range" and "_arange" are not supported in TVM.
NotImplementedError: Operator: _arange is not supported in nnvm.
Can these 2 operators replaced by other operators?
Thanks.,
The text was updated successfully, but these errors were encountered: