├── .gitignore ├── Dockerfile ├── README.md ├── append_bashrc ├── download_data.sh ├── download_models.sh ├── install_torch.sh └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | StackGAN/ 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brangerbriz/docker-StackGAN/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brangerbriz/docker-StackGAN/HEAD/README.md -------------------------------------------------------------------------------- /append_bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brangerbriz/docker-StackGAN/HEAD/append_bashrc -------------------------------------------------------------------------------- /download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brangerbriz/docker-StackGAN/HEAD/download_data.sh -------------------------------------------------------------------------------- /download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brangerbriz/docker-StackGAN/HEAD/download_models.sh -------------------------------------------------------------------------------- /install_torch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brangerbriz/docker-StackGAN/HEAD/install_torch.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brangerbriz/docker-StackGAN/HEAD/run.sh --------------------------------------------------------------------------------