├── .gitignore ├── LICENSE ├── README.md ├── commons.py ├── config.py ├── data └── c3d_mean.npy ├── feature_extractor.py ├── main.py ├── nets ├── __init__.py ├── alexnet.py ├── densenet.py ├── googlenet.py ├── inception.py ├── inceptionv4.py ├── mobilenet.py ├── resnet.py ├── shufflenetv2.py ├── squeezenet.py ├── utils.py └── vgg.py ├── requirements.txt └── scripts ├── alexnet.sh ├── densenet201.sh ├── googlenet.sh ├── inception_v3.sh ├── inception_v4.sh ├── resnext101.sh ├── shufflenetv2.sh └── vgg19_bn.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/README.md -------------------------------------------------------------------------------- /commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/commons.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/config.py -------------------------------------------------------------------------------- /data/c3d_mean.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/data/c3d_mean.npy -------------------------------------------------------------------------------- /feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/feature_extractor.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/main.py -------------------------------------------------------------------------------- /nets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/__init__.py -------------------------------------------------------------------------------- /nets/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/alexnet.py -------------------------------------------------------------------------------- /nets/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/densenet.py -------------------------------------------------------------------------------- /nets/googlenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/googlenet.py -------------------------------------------------------------------------------- /nets/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/inception.py -------------------------------------------------------------------------------- /nets/inceptionv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/inceptionv4.py -------------------------------------------------------------------------------- /nets/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/mobilenet.py -------------------------------------------------------------------------------- /nets/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/resnet.py -------------------------------------------------------------------------------- /nets/shufflenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/shufflenetv2.py -------------------------------------------------------------------------------- /nets/squeezenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/squeezenet.py -------------------------------------------------------------------------------- /nets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/utils.py -------------------------------------------------------------------------------- /nets/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/nets/vgg.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/alexnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/scripts/alexnet.sh -------------------------------------------------------------------------------- /scripts/densenet201.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/scripts/densenet201.sh -------------------------------------------------------------------------------- /scripts/googlenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/scripts/googlenet.sh -------------------------------------------------------------------------------- /scripts/inception_v3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/scripts/inception_v3.sh -------------------------------------------------------------------------------- /scripts/inception_v4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/scripts/inception_v4.sh -------------------------------------------------------------------------------- /scripts/resnext101.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/scripts/resnext101.sh -------------------------------------------------------------------------------- /scripts/shufflenetv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/scripts/shufflenetv2.sh -------------------------------------------------------------------------------- /scripts/vgg19_bn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobincar/pytorch-video-feature-extractor/HEAD/scripts/vgg19_bn.sh --------------------------------------------------------------------------------