From 78798df666519b675ad516d5a5574ce5a7442225 Mon Sep 17 00:00:00 2001 From: "zuchen.wang" Date: Thu, 9 Dec 2021 14:12:31 +0800 Subject: [PATCH] fix weight url in resnest --- fastreid/modeling/backbones/resnest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastreid/modeling/backbones/resnest.py b/fastreid/modeling/backbones/resnest.py index b971212..ff946c3 100644 --- a/fastreid/modeling/backbones/resnest.py +++ b/fastreid/modeling/backbones/resnest.py @@ -1,6 +1,6 @@ # encoding: utf-8 # based on: -# https://github.com/zhanghang1989/ResNeSt/blob/master/resnest/torch/resnest.py +# https://github.com/zhanghang1989/ResNeSt/blob/master/resnest/torch/models/resnest.py """ResNeSt models""" import logging @@ -14,7 +14,7 @@ from fastreid.utils.checkpoint import get_unexpected_parameters_message, get_mis from .build import BACKBONE_REGISTRY logger = logging.getLogger(__name__) -_url_format = 'https://s3.us-west-1.wasabisys.com/resnest/torch/{}-{}.pth' +_url_format = 'https://github.com/zhanghang1989/ResNeSt/releases/download/weights_step1/{}-{}.pth' _model_sha256 = {name: checksum for checksum, name in [ ('528c19ca', 'resnest50'),