You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Platform (like ubuntu 16.04/win10):
Debian
Python version:
3.7
Source framework with version (like Tensorflow 1.4.1 with GPU):
MXNET
Destination framework with version (like CNTK 2.3 with GPU):
Pytorch
Pre-trained model path (webpath or webdisk path): https://www.dropbox.com/s/53ftnlarhyrpkg2/retinaface-R50.zip?dl=0
Running scripts:
I have the resultant model, but when I run the input through it, it gives me a radically different output shape on the pytorch model, which makes no sense :(
Platform (like ubuntu 16.04/win10):
Debian
Python version:
3.7
Source framework with version (like Tensorflow 1.4.1 with GPU):
MXNET
Destination framework with version (like CNTK 2.3 with GPU):
Pytorch
Pre-trained model path (webpath or webdisk path):
https://www.dropbox.com/s/53ftnlarhyrpkg2/retinaface-R50.zip?dl=0
Running scripts:
I have tried to convert a maxnet model from https://www.dropbox.com/s/53ftnlarhyrpkg2/retinaface-R50.zip?dl=0 to pytorch via the command (the mxnet model is based on resnet50):
I have the resultant model, but when I run the input through it, it gives me a radically different output shape on the pytorch model, which makes no sense :(
When you see the original mxnet inference code (see example here: http://insightface.ai/build/examples_face_detection/demo_retinaface.html) and when you exec this:
bbox, landmark = model.detect(img, threshold=0.5, scale=1.0)
bbox has a dim of
(6, 5)
and landmarks has s shape of(6, 5, 2)
.however, when I use the converted pytorch model and run a forwrad on it, I get bbox shape:
(256, 28, 28)
andlandmarks
shape (256, 28, 28).I am not able to pinpoint exactly where this could be going wrong :(
The text was updated successfully, but these errors were encountered: