├── .gitignore ├── LICENSE ├── README.md ├── artistic style transfer ├── content.jpg ├── model.py ├── output │ ├── .gitkeep │ └── output-5000.png ├── style.jpg ├── test.py └── train.py ├── datasets ├── .gitkeep └── Readme.md ├── dcgan ├── Readme.md ├── model.py ├── sampled.png ├── test.py └── train.py ├── extra ├── charnn │ ├── LICENSE │ ├── README.md │ ├── holmes.txt │ ├── model.py │ ├── test.py │ └── train.py └── style transfer │ ├── LICENSE │ ├── README.md │ ├── content.jpg │ ├── floyd_requirements.txt │ ├── out.gif │ ├── style transfer.ipynb │ └── style.jpg ├── resnet ├── model.py ├── test.py └── train.py └── trained ├── .gitkeep └── Readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/README.md -------------------------------------------------------------------------------- /artistic style transfer/content.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/artistic style transfer/content.jpg -------------------------------------------------------------------------------- /artistic style transfer/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/artistic style transfer/model.py -------------------------------------------------------------------------------- /artistic style transfer/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artistic style transfer/output/output-5000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/artistic style transfer/output/output-5000.png -------------------------------------------------------------------------------- /artistic style transfer/style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/artistic style transfer/style.jpg -------------------------------------------------------------------------------- /artistic style transfer/test.py: -------------------------------------------------------------------------------- 1 | # Sorry I broke the project structure :P -------------------------------------------------------------------------------- /artistic style transfer/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/artistic style transfer/train.py -------------------------------------------------------------------------------- /datasets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasets/Readme.md: -------------------------------------------------------------------------------- 1 | A folder for the downloaded datasets 2 | -------------------------------------------------------------------------------- /dcgan/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/dcgan/Readme.md -------------------------------------------------------------------------------- /dcgan/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/dcgan/model.py -------------------------------------------------------------------------------- /dcgan/sampled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/dcgan/sampled.png -------------------------------------------------------------------------------- /dcgan/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/dcgan/test.py -------------------------------------------------------------------------------- /dcgan/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/dcgan/train.py -------------------------------------------------------------------------------- /extra/charnn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/charnn/LICENSE -------------------------------------------------------------------------------- /extra/charnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/charnn/README.md -------------------------------------------------------------------------------- /extra/charnn/holmes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/charnn/holmes.txt -------------------------------------------------------------------------------- /extra/charnn/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/charnn/model.py -------------------------------------------------------------------------------- /extra/charnn/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/charnn/test.py -------------------------------------------------------------------------------- /extra/charnn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/charnn/train.py -------------------------------------------------------------------------------- /extra/style transfer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/style transfer/LICENSE -------------------------------------------------------------------------------- /extra/style transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/style transfer/README.md -------------------------------------------------------------------------------- /extra/style transfer/content.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/style transfer/content.jpg -------------------------------------------------------------------------------- /extra/style transfer/floyd_requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm 2 | -------------------------------------------------------------------------------- /extra/style transfer/out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/style transfer/out.gif -------------------------------------------------------------------------------- /extra/style transfer/style transfer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/style transfer/style transfer.ipynb -------------------------------------------------------------------------------- /extra/style transfer/style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/extra/style transfer/style.jpg -------------------------------------------------------------------------------- /resnet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/resnet/model.py -------------------------------------------------------------------------------- /resnet/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/resnet/test.py -------------------------------------------------------------------------------- /resnet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonesud/Pytorch-Model-Zoo/HEAD/resnet/train.py -------------------------------------------------------------------------------- /trained/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trained/Readme.md: -------------------------------------------------------------------------------- 1 | You can download the trained models from [here](https://drive.google.com/open?id=0B24n6xHwJ0h0TW5mdWk2QTZIN0k) 2 | --------------------------------------------------------------------------------