From 19d93fe454efb27af4f82e6028f57213eca3f3f6 Mon Sep 17 00:00:00 2001 From: Ross Wightman Date: Tue, 31 Dec 2019 16:49:04 -0800 Subject: [PATCH] Add selecsls60 weights --- sotabench.py | 2 ++ timm/models/selecsls.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/sotabench.py b/sotabench.py index a9399f6..245fc87 100644 --- a/sotabench.py +++ b/sotabench.py @@ -321,6 +321,8 @@ model_list = [ ## SelecSLS official impl weights _entry('selecsls42b', 'SelecSLS-42_B', '1907.00837', model_desc='Originally from https://github.com/mehtadushy/SelecSLS-Pytorch'), + _entry('selecsls60', 'SelecSLS-60', '1907.00837', + model_desc='Originally from https://github.com/mehtadushy/SelecSLS-Pytorch'), _entry('selecsls60b', 'SelecSLS-60_B', '1907.00837', model_desc='Originally from https://github.com/mehtadushy/SelecSLS-Pytorch'), ] diff --git a/timm/models/selecsls.py b/timm/models/selecsls.py index b2a38e3..1779670 100644 --- a/timm/models/selecsls.py +++ b/timm/models/selecsls.py @@ -42,7 +42,7 @@ default_cfgs = { url='https://github.com/rwightman/pytorch-image-models/releases/download/v0.1-selecsls/selecsls42b-8af30141.pth', interpolation='bicubic'), 'selecsls60': _cfg( - url='', + url='https://github.com/rwightman/pytorch-image-models/releases/download/v0.1-selecsls/selecsls60-bbf87526.pth', interpolation='bicubic'), 'selecsls60b': _cfg( url='https://github.com/rwightman/pytorch-image-models/releases/download/v0.1-selecsls/selecsls60b-94e619b5.pth', -- GitLab