forked from facebookresearch/vicreg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
hubconf.py
44 lines (34 loc) · 1.28 KB
/
hubconf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
import torch
import resnet
dependencies = ["torch", "torchvision"]
def resnet50(pretrained=True, **kwargs):
model, _ = resnet.resnet50(**kwargs)
if pretrained:
state_dict = torch.hub.load_state_dict_from_url(
url="https://dl.fbaipublicfiles.com/vicreg/resnet50.pth",
map_location="cpu",
)
model.load_state_dict(state_dict, strict=True)
return model
def resnet50w2(pretrained=True, **kwargs):
model, _ = resnet.resnet50x2(**kwargs)
if pretrained:
state_dict = torch.hub.load_state_dict_from_url(
url="https://dl.fbaipublicfiles.com/vicreg/resnet50x2.pth",
map_location="cpu",
)
model.load_state_dict(state_dict, strict=True)
return model
def resnet200w2(pretrained=True, **kwargs):
model, _ = resnet.resnet200x2(**kwargs)
if pretrained:
state_dict = torch.hub.load_state_dict_from_url(
url="https://dl.fbaipublicfiles.com/vicreg/resnet200x2.pth",
map_location="cpu",
)
model.load_state_dict(state_dict, strict=True)
return model