We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb1027d commit 31d99b7Copy full SHA for 31d99b7
fastreid/modeling/backbones/resnest.py
@@ -1,6 +1,6 @@
1
# encoding: utf-8
2
# based on:
3
-# https://github.com/zhanghang1989/ResNeSt/blob/master/resnest/torch/resnest.py
+# https://github.com/zhanghang1989/ResNeSt/blob/master/resnest/torch/models/resnest.py
4
"""ResNeSt models"""
5
6
import logging
@@ -14,7 +14,7 @@
14
from .build import BACKBONE_REGISTRY
15
16
logger = logging.getLogger(__name__)
17
-_url_format = 'https://s3.us-west-1.wasabisys.com/resnest/torch/{}-{}.pth'
+_url_format = 'https://github.com/zhanghang1989/ResNeSt/releases/download/weights_step1/{}-{}.pth'
18
19
_model_sha256 = {name: checksum for checksum, name in [
20
('528c19ca', 'resnest50'),
0 commit comments