Res2Net / Res2Net-PretrainedModels

(ImageNet pretrained models) The official pytorch implemention of the TPAMI paper "Res2Net: A New Multi-scale Backbone Architecture"
https://mmcheng.net/res2net/
1.07k stars 215 forks source link

Transforming Res2net #54

Closed Dhyey-Savaliya closed 3 years ago

Dhyey-Savaliya commented 3 years ago

How can I change input shape to predict class for one dimensional images??

gasvn commented 3 years ago

transform N,C,H,W to N,C, HW. And then change conv2d, bn2d to conv1d and bn1d. And you cannot load the imagenet pretrain when using 1d version of res2net.