-
Notifications
You must be signed in to change notification settings - Fork 24
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 Faster R-CNN #128
Comments
Two stage networks do not work well with current ONNX-chainer. ONNX-chainer depends on Chainer's graph for backprop, but graphs are disconnected between the two stages. Here is the code the graph is disconnected by We are working on this issue these days, so hopefully the situation better in near future. That said, I think you'll need to somehow fill the gap between two stages. I'm doing some experimental work to export a two stage network (FPN) so I could share my experience if you can tell me your usecase scenario. My hacky code is |
Thank you for your comments. I would like to compile Chainer models by tvm. |
To export Faster RCNN model, such as FasterRCNNVGG16, we nee to resolve some points.
How to resolve
|
__call__
method of Faster R-CNN returns (Variable, Variable, array, array). srcThis causes the following exception.
Is it possible for onnx-chainer to support Faster R-CNN ?
The text was updated successfully, but these errors were encountered: