gitextract_mxx490a2/ ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── data/ │ ├── imagenet_classes.txt │ └── imagenet_synsets.txt ├── examples/ │ ├── imagenet_eval.py │ ├── imagenet_logits.py │ ├── visu_arch.py │ └── voc2007_extract.py ├── pretrainedmodels/ │ ├── __init__.py │ ├── datasets/ │ │ ├── __init__.py │ │ ├── utils.py │ │ └── voc.py │ ├── models/ │ │ ├── __init__.py │ │ ├── bninception.py │ │ ├── cafferesnet.py │ │ ├── dpn.py │ │ ├── fbresnet/ │ │ │ ├── resnet152_dump.lua │ │ │ └── resnet152_load.py │ │ ├── fbresnet.py │ │ ├── inceptionresnetv2.py │ │ ├── inceptionv4.py │ │ ├── nasnet.py │ │ ├── nasnet_mobile.py │ │ ├── pnasnet.py │ │ ├── polynet.py │ │ ├── resnext.py │ │ ├── resnext_features/ │ │ │ ├── __init__.py │ │ │ ├── resnext101_32x4d_features.py │ │ │ └── resnext101_64x4d_features.py │ │ ├── senet.py │ │ ├── torchvision_models.py │ │ ├── utils.py │ │ ├── vggm.py │ │ ├── wideresnet.py │ │ └── xception.py │ ├── utils.py │ └── version.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests/ ├── test_pm_imagenet.py └── test_torch_save.py