liuzhuang13 / DenseNet

Densely Connected Convolutional Networks, In CVPR 2017 (Best Paper Award).
BSD 3-Clause "New" or "Revised" License
4.69k stars 1.06k forks source link

Is there a pretrained CIFAR 100 or CIFAR 10 model? #61

Closed Yijun88 closed 5 years ago

Yijun88 commented 5 years ago

Hi @liuzhuang13,

I'm trying to extend a regression model based on denseNet. Since my inputs size are expected to be very small, a pre-trained denseNet-BC (l=100, k12) is preferred. I'm wondering would you be able to provide any pre-trained model on CIFAR 100?

liuzhuang13 commented 5 years ago

Sorry we don't have one on this repo. But many other repos do provide such models, for example, this one, https://github.com/bearpaw/pytorch-classification

Yijun88 commented 5 years ago

Thanks for the info!