1 Star 0 Fork 0

yanghan/OpenIBL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hubconf.py 513 Bytes
一键复制 编辑 原始数据 按行查看 历史
yxgeee 提交于 2020-08-25 10:27 . fix load
dependencies = ['torch']
import torch
from ibl import models
def vgg16_netvlad(pretrained=False):
base_model = models.create('vgg16', pretrained=False)
pool_layer = models.create('netvlad', dim=base_model.feature_dim)
model = models.create('embednetpca', base_model, pool_layer)
if pretrained:
model.load_state_dict(torch.hub.load_state_dict_from_url('https://github.com/yxgeee/OpenIBL/releases/download/v0.1.0-beta/vgg16_netvlad.pth', map_location=torch.device('cpu')))
return model
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/John_123/OpenIBL.git
git@gitee.com:John_123/OpenIBL.git
John_123
OpenIBL
OpenIBL
master

搜索帮助