# Pretrained models for Pytorch (Work in progress)
The goal of this repo is:
- to help to reproduce research papers results (transfer learning setups for instance),
- to access pretrained ConvNets with a unique interface/API inspired by torchvision.
<a href="https://travis-ci.org/Cadene/pretrained-models.pytorch"><img src="https://api.travis-ci.org/Cadene/pretrained-models.pytorch.svg?branch=master"/></a>
News:
- 27/10/2018: Fix compatibility issues, Add tests, Add travis
- 04/06/2018: [PolyNet](https://github.com/CUHK-MMLAB/polynet) and [PNASNet-5-Large](https://arxiv.org/abs/1712.00559) thanks to [Alex Parinov](https://github.com/creafz)
- 16/04/2018: [SE-ResNet* and SE-ResNeXt*](https://github.com/hujie-frank/SENet) thanks to [Alex Parinov](https://github.com/creafz)
- 09/04/2018: [SENet154](https://github.com/hujie-frank/SENet) thanks to [Alex Parinov](https://github.com/creafz)
- 22/03/2018: CaffeResNet101 (good for localization with FasterRCNN)
- 21/03/2018: NASNet Mobile thanks to [Veronika Yurchuk](https://github.com/veronikayurchuk) and [Anastasiia](https://github.com/DagnyT)
- 25/01/2018: DualPathNetworks thanks to [Ross Wightman](https://github.com/rwightman/pytorch-dpn-pretrained), Xception thanks to [T Standley](https://github.com/tstandley/Xception-PyTorch), improved TransformImage API
- 13/01/2018: `pip install pretrainedmodels`, `pretrainedmodels.model_names`, `pretrainedmodels.pretrained_settings`
- 12/01/2018: `python setup.py install`
- 08/12/2017: update data url (/!\ `git pull` is needed)
- 30/11/2017: improve API (`model.features(input)`, `model.logits(features)`, `model.forward(input)`, `model.last_linear`)
- 16/11/2017: nasnet-a-large pretrained model ported by T. Durand and R. Cadene
- 22/07/2017: torchvision pretrained models
- 22/07/2017: momentum in inceptionv4 and inceptionresnetv2 to 0.1
- 17/07/2017: model.input_range attribut
- 17/07/2017: BNInception pretrained on Imagenet
## Summary
- [Installation](https://github.com/Cadene/pretrained-models.pytorch#installation)
- [Quick examples](https://github.com/Cadene/pretrained-models.pytorch#quick-examples)
- [Few use cases](https://github.com/Cadene/pretrained-models.pytorch#few-use-cases)
- [Compute imagenet logits](https://github.com/Cadene/pretrained-models.pytorch#compute-imagenet-logits)
- [Compute imagenet validation metrics](https://github.com/Cadene/pretrained-models.pytorch#compute-imagenet-validation-metrics)
- [Evaluation on ImageNet](https://github.com/Cadene/pretrained-models.pytorch#evaluation-on-imagenet)
- [Accuracy on valset](https://github.com/Cadene/pretrained-models.pytorch#accuracy-on-validation-set)
- [Reproducing results](https://github.com/Cadene/pretrained-models.pytorch#reproducing-results)
- [Documentation](https://github.com/Cadene/pretrained-models.pytorch#documentation)
- [Available models](https://github.com/Cadene/pretrained-models.pytorch#available-models)
- [AlexNet](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [BNInception](https://github.com/Cadene/pretrained-models.pytorch#bninception)
- [CaffeResNet101](https://github.com/Cadene/pretrained-models.pytorch#caffe-resnet)
- [DenseNet121](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [DenseNet161](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [DenseNet169](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [DenseNet201](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [DenseNet201](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [DualPathNet68](https://github.com/Cadene/pretrained-models.pytorch#dualpathnetworks)
- [DualPathNet92](https://github.com/Cadene/pretrained-models.pytorch#dualpathnetworks)
- [DualPathNet98](https://github.com/Cadene/pretrained-models.pytorch#dualpathnetworks)
- [DualPathNet107](https://github.com/Cadene/pretrained-models.pytorch#dualpathnetworks)
- [DualPathNet113](https://github.com/Cadene/pretrained-models.pytorch#dualpathnetworks)
- [FBResNet152](https://github.com/Cadene/pretrained-models.pytorch#facebook-resnet)
- [InceptionResNetV2](https://github.com/Cadene/pretrained-models.pytorch#inception)
- [InceptionV3](https://github.com/Cadene/pretrained-models.pytorch#inception)
- [InceptionV4](https://github.com/Cadene/pretrained-models.pytorch#inception)
- [NASNet-A-Large](https://github.com/Cadene/pretrained-models.pytorch#nasnet)
- [NASNet-A-Mobile](https://github.com/Cadene/pretrained-models.pytorch#nasnet)
- [PNASNet-5-Large](https://github.com/Cadene/pretrained-models.pytorch#pnasnet)
- [PolyNet](https://github.com/Cadene/pretrained-models.pytorch#polynet)
- [ResNeXt101_32x4d](https://github.com/Cadene/pretrained-models.pytorch#resnext)
- [ResNeXt101_64x4d](https://github.com/Cadene/pretrained-models.pytorch#resnext)
- [ResNet101](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [ResNet152](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [ResNet18](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [ResNet34](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [ResNet50](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [SENet154](https://github.com/Cadene/pretrained-models.pytorch#senet)
- [SE-ResNet50](https://github.com/Cadene/pretrained-models.pytorch#senet)
- [SE-ResNet101](https://github.com/Cadene/pretrained-models.pytorch#senet)
- [SE-ResNet152](https://github.com/Cadene/pretrained-models.pytorch#senet)
- [SE-ResNeXt50_32x4d](https://github.com/Cadene/pretrained-models.pytorch#senet)
- [SE-ResNeXt101_32x4d](https://github.com/Cadene/pretrained-models.pytorch#senet)
- [SqueezeNet1_0](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [SqueezeNet1_1](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [VGG11](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [VGG13](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [VGG16](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [VGG19](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [VGG11_BN](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [VGG13_BN](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [VGG16_BN](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [VGG19_BN](https://github.com/Cadene/pretrained-models.pytorch#torchvision)
- [Xception](https://github.com/Cadene/pretrained-models.pytorch#xception)
- [Model API](https://github.com/Cadene/pretrained-models.pytorch#model-api)
- [model.input_size](https://github.com/Cadene/pretrained-models.pytorch#modelinput_size)
- [model.input_space](https://github.com/Cadene/pretrained-models.pytorch#modelinput_space)
- [model.input_range](https://github.com/Cadene/pretrained-models.pytorch#modelinput_range)
- [model.mean](https://github.com/Cadene/pretrained-models.pytorch#modelmean)
- [model.std](https://github.com/Cadene/pretrained-models.pytorch#modelstd)
- [model.features](https://github.com/Cadene/pretrained-models.pytorch#modelfeatures)
- [model.logits](https://github.com/Cadene/pretrained-models.pytorch#modellogits)
- [model.forward](https://github.com/Cadene/pretrained-models.pytorch#modelforward)
- [Reproducing porting](https://github.com/Cadene/pretrained-models.pytorch#reproducing)
- [ResNet*](https://github.com/Cadene/pretrained-models.pytorch#hand-porting-of-resnet152)
- [ResNeXt*](https://github.com/Cadene/pretrained-models.pytorch#automatic-porti
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
Pretrained_ConvNets_for_pytorch_NASNet,_ResNeXt,__pretrained-models.pytorch.zip (47个子文件)
DataXujing-pretrained-models.pytorch-021d978
.travis.yml 4KB
setup.py 6KB
LICENSE.txt 1KB
data
imagenet_synsets.txt 55KB
imagenet_classes.txt 10KB
cat_224.jpg 26KB
croco.jpg 18KB
cat.jpg 79KB
tests
test_pm_imagenet.py 2KB
test_torch_save.py 730B
examples
imagenet_eval.py 11KB
voc2007_extract.py 8KB
visu_arch.py 9KB
imagenet_logits.py 2KB
pretrainedmodels
utils.py 3KB
__init__.py 2KB
version.py 87B
datasets
utils.py 7KB
__init__.py 103B
voc.py 9KB
models
utils.py 2KB
__init__.py 2KB
nasnet_mobile.py 30KB
fbresnet
resnet152_dump.lua 1KB
resnet152_load.py 9KB
dpn.py 18KB
fbresnet.py 7KB
cafferesnet.py 5KB
resnext.py 4KB
nasnet.py 30KB
xception.py 7KB
vggm.py 4KB
wideresnet.py 3KB
inceptionv4.py 11KB
senet.py 16KB
polynet.py 17KB
bninception.py 42KB
resnext_features
__init__.py 194B
resnext101_64x4d_features.py 28KB
resnext101_32x4d_features.py 27KB
pnasnet.py 18KB
torchvision_models.py 20KB
inceptionresnetv2.py 12KB
requirements.txt 35B
.gitignore 1KB
setup.cfg 39B
README.md 29KB
共 47 条
- 1
资源评论
好家伙VCC
- 粉丝: 1964
- 资源: 9137
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功