From 58e81c18e92aa4410723d82def071a15d48c4b2d Mon Sep 17 00:00:00 2001 From: shuhei-yokoo Date: Fri, 25 Nov 2022 18:41:56 +0900 Subject: [PATCH] bump the version --- isc_feature_extractor/model.py | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/isc_feature_extractor/model.py b/isc_feature_extractor/model.py index e5b33cd..9785e25 100644 --- a/isc_feature_extractor/model.py +++ b/isc_feature_extractor/model.py @@ -7,8 +7,8 @@ from torchvision import transforms AVAILABLE_MODELS = { - "isc_selfsup_v98": "https://github.com/lyakaap/ISC21-Descriptor-Track-1st/releases/download/v1.0.0/isc_selfsup_v98.pth.tar", - "isc_ft_v107": "https://github.com/lyakaap/ISC21-Descriptor-Track-1st/releases/download/v1.0.0/isc_ft_v107.pth.tar", + "isc_selfsup_v98": "https://github.com/lyakaap/ISC21-Descriptor-Track-1st/releases/download/v1.0.1/isc_selfsup_v98.pth.tar", + "isc_ft_v107": "https://github.com/lyakaap/ISC21-Descriptor-Track-1st/releases/download/v1.0.1/isc_ft_v107.pth.tar", } DEFAULT_CKPT_PATH = torch.hub.get_dir() diff --git a/setup.py b/setup.py index ccb1ac8..15b9cb4 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ def _requires_from_file(filename): setup( name="isc-feature-extractor", - version="1.0.0", + version="1.0.1", url="https://github.com/lyakaap/ISC21-Descriptor-Track-1st", author="lyakaap", packages=find_packages(exclude=["exp", "scripts"]),