Skip to content

Commit 31d99b7

Browse files
L1aoXingyuwsqshiqing
andauthored
Fix weight url in resnest (JDAI-CV#609)
Co-authored-by: wsqshiqing <[email protected]>
1 parent fb1027d commit 31d99b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastreid/modeling/backbones/resnest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# encoding: utf-8
22
# based on:
3-
# https://github.com/zhanghang1989/ResNeSt/blob/master/resnest/torch/resnest.py
3+
# https://github.com/zhanghang1989/ResNeSt/blob/master/resnest/torch/models/resnest.py
44
"""ResNeSt models"""
55

66
import logging
@@ -14,7 +14,7 @@
1414
from .build import BACKBONE_REGISTRY
1515

1616
logger = logging.getLogger(__name__)
17-
_url_format = 'https://s3.us-west-1.wasabisys.com/resnest/torch/{}-{}.pth'
17+
_url_format = 'https://github.com/zhanghang1989/ResNeSt/releases/download/weights_step1/{}-{}.pth'
1818

1919
_model_sha256 = {name: checksum for checksum, name in [
2020
('528c19ca', 'resnest50'),

0 commit comments

Comments
 (0)