├── .gitignore ├── LICENSE ├── README.md ├── caffemodel_to_t7.lua ├── t7_to_state_dict.py └── test_model.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.pth 3 | *.t7 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcjohnson/pytorch-vgg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcjohnson/pytorch-vgg/HEAD/README.md -------------------------------------------------------------------------------- /caffemodel_to_t7.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcjohnson/pytorch-vgg/HEAD/caffemodel_to_t7.lua -------------------------------------------------------------------------------- /t7_to_state_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcjohnson/pytorch-vgg/HEAD/t7_to_state_dict.py -------------------------------------------------------------------------------- /test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcjohnson/pytorch-vgg/HEAD/test_model.py --------------------------------------------------------------------------------