Skip to content

Commit

Permalink
Fix weight url in resnest (#609)
Browse files Browse the repository at this point in the history
Co-authored-by: wsqshiqing <[email protected]>
  • Loading branch information
L1aoXingyu and wsqshiqing authored Dec 26, 2021
1 parent fb1027d commit 31d99b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastreid/modeling/backbones/resnest.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -14,7 +14,7 @@
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'),
Expand Down

0 comments on commit 31d99b7

Please sign in to comment.