ResNeSt icon indicating copy to clipboard operation
ResNeSt copied to clipboard

Can you give me a ResNeSt-26 in pytorch? Thanks!

Open Kingtin opened this issue 2 years ago • 2 comments

Kingtin avatar Jan 17 '22 13:01 Kingtin

The model definition can be found at https://github.com/zhanghang1989/ResNeSt/pull/29

There is no pytorch pretrained weights, but there is a mxnet version https://cv.gluon.ai/model_zoo/classification.html#resnest

zhanghang1989 avatar Jan 17 '22 18:01 zhanghang1989

@Kingtin the model is now available as part of timm. You can create a pre-trained version of the model with something like this.

import timm

model = timm.create_model('resnest26d.gluon_in1k', pretrained=True)

See more info on HuggingFace here.

brendanartley avatar Jul 25 '23 18:07 brendanartley