thuyngch / Human-Segmentation-PyTorch

Human segmentation models, training/inference code, and trained weights, implemented in PyTorch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About the "ResNet" backbones weights

liminn opened this issue · comments

Thanks for you work!
I have two questions:

  • Where to get the "ResNet" backbones pretrained weights?
  •  def resnet50(pretrained=None, **kwargs):
      model = ResNet(Bottleneck, [3, 4, 6, 3], **kwargs)
      if pretrained is not None:
      	model._load_pretrained_model(pretrained)
      return model
    where is the definition of function _load_pretrained_model?

Hi @liminn, did you find out how to get the backbones?