From b50a9506e7ccf36b0b5ed1bebe834fbddedd2819 Mon Sep 17 00:00:00 2001 From: haoyuying <18844182690@163.com> Date: Mon, 12 Oct 2020 11:22:23 +0800 Subject: [PATCH] revise download address --- .../image/classification/mobilenet_v2_imagenet_ssld/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub_module/modules/image/classification/mobilenet_v2_imagenet_ssld/module.py b/hub_module/modules/image/classification/mobilenet_v2_imagenet_ssld/module.py index 1dfba4cf..45393492 100644 --- a/hub_module/modules/image/classification/mobilenet_v2_imagenet_ssld/module.py +++ b/hub_module/modules/image/classification/mobilenet_v2_imagenet_ssld/module.py @@ -192,7 +192,7 @@ class MobileNet(nn.Layer): checkpoint = os.path.join(self.directory, 'MobileNetV2_ssld_pretrained.pdparams') if not os.path.exists(checkpoint): os.system( - 'wget https://bj.bcebos.com/paddlehub/model/image/object_detection/yolov3_70000.pdparams -O ' + + 'wget https://paddlehub.bj.bcebos.com/dygraph/image_classification/mobilenet_v2_ssld.pdparams -O ' + checkpoint) model_dict = paddle.load(checkpoint)[0] self.set_dict(model_dict) -- GitLab