dmlc / gluon-cv

Gluon CV Toolkit
http://gluon-cv.mxnet.io
Apache License 2.0
5.82k stars 1.21k forks source link

Image Segmentation: gluoncv.model_zoo.resnet50_v1b(pretrained=True) not available #168

Closed ThomasDelteil closed 6 years ago

ThomasDelteil commented 6 years ago

pretrained_net = gluoncv.model_zoo.resnet50_v1b(pretrained=True)

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-10-4bcb8b012a53> in <module>()
----> 1 pretrained_net = gluoncv.model_zoo.resnet50_v1b(pretrained=True)

AttributeError: module 'gluoncv.model_zoo' has no attribute 'resnet50_v1b'

Does the tutorial needs to be updated?

hetong007 commented 6 years ago

Please wait for (or try) this PR: https://github.com/dmlc/gluon-cv/pull/161

zhanghang1989 commented 6 years ago

I guess your gluoncv version is far behind the master branch. Please install from source and try again.

ThomasDelteil commented 6 years ago

@hetong007 ok thanks edit: @zhanghang1989 you are correct, it does load with latest build.