├── LICENSE ├── README.md ├── deep_dream.py ├── images ├── dog.jpg └── supermarket.jpg ├── outputs ├── output_dog.jpg └── output_supermarket.jpg └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriklindernoren/PyTorch-Deep-Dream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriklindernoren/PyTorch-Deep-Dream/HEAD/README.md -------------------------------------------------------------------------------- /deep_dream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriklindernoren/PyTorch-Deep-Dream/HEAD/deep_dream.py -------------------------------------------------------------------------------- /images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriklindernoren/PyTorch-Deep-Dream/HEAD/images/dog.jpg -------------------------------------------------------------------------------- /images/supermarket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriklindernoren/PyTorch-Deep-Dream/HEAD/images/supermarket.jpg -------------------------------------------------------------------------------- /outputs/output_dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriklindernoren/PyTorch-Deep-Dream/HEAD/outputs/output_dog.jpg -------------------------------------------------------------------------------- /outputs/output_supermarket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriklindernoren/PyTorch-Deep-Dream/HEAD/outputs/output_supermarket.jpg -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriklindernoren/PyTorch-Deep-Dream/HEAD/utils.py --------------------------------------------------------------------------------