├── .github ├── CONTRIBUTING.md └── LICENSE ├── .gitignore ├── README.md ├── kerasmodelzoo ├── __init__.py ├── data │ ├── __init__.py │ ├── c3d_mean.npy │ └── vgg_mean.npy ├── models │ ├── __init__.py │ ├── c3d.py │ └── vgg │ │ ├── __init__.py │ │ ├── vgg16.py │ │ └── vgg19.py └── utils │ ├── __init__.py │ └── data.py ├── scripts └── download │ ├── download_c3d_weights.sh │ ├── download_vgg-16_weights.sh │ └── download_vgg-19_weights.sh ├── setup.cfg └── setup.py /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/.github/LICENSE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/README.md -------------------------------------------------------------------------------- /kerasmodelzoo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kerasmodelzoo/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kerasmodelzoo/data/c3d_mean.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/kerasmodelzoo/data/c3d_mean.npy -------------------------------------------------------------------------------- /kerasmodelzoo/data/vgg_mean.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/kerasmodelzoo/data/vgg_mean.npy -------------------------------------------------------------------------------- /kerasmodelzoo/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kerasmodelzoo/models/c3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/kerasmodelzoo/models/c3d.py -------------------------------------------------------------------------------- /kerasmodelzoo/models/vgg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kerasmodelzoo/models/vgg/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/kerasmodelzoo/models/vgg/vgg16.py -------------------------------------------------------------------------------- /kerasmodelzoo/models/vgg/vgg19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/kerasmodelzoo/models/vgg/vgg19.py -------------------------------------------------------------------------------- /kerasmodelzoo/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kerasmodelzoo/utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/kerasmodelzoo/utils/data.py -------------------------------------------------------------------------------- /scripts/download/download_c3d_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/scripts/download/download_c3d_weights.sh -------------------------------------------------------------------------------- /scripts/download/download_vgg-16_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/scripts/download/download_vgg-16_weights.sh -------------------------------------------------------------------------------- /scripts/download/download_vgg-19_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/scripts/download/download_vgg-19_weights.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertomontesg/keras-model-zoo/HEAD/setup.py --------------------------------------------------------------------------------