docs/docker.md
We provide both Dockerfile and pre-built Docker container that can run this code repo.
docker pull taesungp/pytorch-cyclegan-and-pix2pix
-p 8097:8097 option is needed if you want to run visdom server on the Docker container.nvidia-docker run -it -p 8097:8097 taesungp/pytorch-cyclegan-and-pix2pix
cd /workspace/pytorch-CycleGAN-and-pix2pix
bash datasets/download_pix2pix_dataset.sh facades
python -m visdom.server &
bash scripts/train_pix2pix.sh
We also posted the Dockerfile. To generate the pre-built file, download the Dockerfile in this directory and run
docker build -t [target_tag] .
in the directory that contains the Dockerfile.