Skip to content
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

MobileNet-v2 SSD Model #216

Open
jacky4323 opened this issue Jul 5, 2018 · 6 comments
Open

MobileNet-v2 SSD Model #216

jacky4323 opened this issue Jul 5, 2018 · 6 comments

Comments

@jacky4323
Copy link

Hi,

Did you have training MobileNet-v2 SSD Model?
Are there some pretrained model I can use?

Thanks.

@zhreshold
Copy link
Owner

Please follow up GluonCV for the pre-trained models. Mobilenet v2 SSD is missing, but you can expect more models coming.

@jacky4323
Copy link
Author

Hi,,
I only see some of the parameter and Jason file
Dose it have some file like symbol which can see the model connection and filter numbers more clearly?

Many Thanks!

@zhreshold
Copy link
Owner

given a gluon net, you can convert it to symbol very quickly:

import gluoncv as gcv
import mxnet as mx
net = gcv.model_zoo.get_model('ssd_512_mobilenet1.0_voc', pretrained=True)
sym = net(mx.sym.var('data'))
# visualize it like usual

@jacky4323
Copy link
Author

Hi,
I follow your steps, and visualize the model network,
mx.viz.plot_network(symbol=sym) to plot the network ,thanks.
I think symbol/mobilenet.py is more clear than visualize the network (similar to caffe prototext)
Is there any plan to attach some symbol? also , it can claims that the model is the same as the paper
thanks!

image

@zhreshold
Copy link
Owner

You can send a feature request to GluonCV, we can take it into consideration in the roadmap!

@jacky4323
Copy link
Author

Hi,

OK,
GluonCV is a good work, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants